[
  {
    "bookSourceComment": "2026.9.5日更新：\n修复七猫小说段评问题\nSVG气泡示例(颜色：$color 段评数量：$displayText)：\n<svg width=\"1000\" height=\"909\" xmlns=\"http://www.w3.org/2000/svg\">\n    <path d=\"M80,80 h840 a60,60 0 0 1 60,60 v580 a60,60 0 0 1 -60,60 h-620 l-140,90 v-90 h-80 a60,60 0 0 1 -60,-60 v-580 a60,60 0 0 1 60,-60 z\" fill=\"none\" stroke=\"$color\" stroke-width=\"16\" stroke-linejoin=\"round\"/>\n    <text x=\"500\" y=\"450\" font-family=\"Arial, sans-serif\" text-anchor=\"middle\" font-size=\"360\" fill=\"$color\" dy=\"0.3em\">$displayText</text>\n</svg>\n❤️‍🔥登录必看❤️‍🔥\n1.输入邮箱密码后必须点✓保存生效，\n否则读取不到输入的账号密码\n2.跳转卡顿在设置→其他设置中清除WebView缓存\n🔔适配兼容\niOS 适配:源阅,栖阅,轻悦时光,用心读书\n📖获取书源请访问书山发布页\n     https://fb.shushan.vip\n阅读软件多平台聚合下载站\nhttps://legado.vossc.com\n🔥注：阅读请使用最新测试版\n1.所有源站每20秒最多12章，把预下载调到0-3之间使用\n💯[打赏VIP无请求限制,专属书源]\n2.自定义源站示例：番茄小说,七猫  多个源站用英文,号分隔\n源站名参考 登录URL //书源配置列表 v参数\n3.源站带有❇️图标表示只能指定或@搜索\n4.搜索模式：\n书名@来源 多个来源用英文,号分隔\n示例： \n系统@番茄小说，多个源站使用英文,号分隔\n书名@类型 返回对应类型所有源站数据，可直接使用@方式搜索或者点击登陆切换模式\n示例： \n系统@小说  听书  漫画  短剧等\n默认书名排序\n指定作者优先：\n作者名@作者   作者名@作者,源站",
    "bookSourceGroup": "🎉 优选",
    "bookSourceName": "📚书山聚合",
    "bookSourceType": 0,
    "bookSourceUrl": "书山聚合",
    "bookUrlPattern": "https?:\\/\\/.*\\/details.*",
    "customButton": true,
    "customOrder": -5,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": true,
    "exploreUrl": "<js>\nlet config = getConfig.call(this);\nif (!config.host || !config.gender) {\n    config = { gender: \"boy\", host: getServerHost() };\n    setConfigs.call(this, config);\n    java.toast(\"配置初始化完成\");\n}\nlet obj = (title, url, type) => ({\n  title: title,\n  url: url,\n  style: { layout_flexGrow: 1, layout_flexBasisPercent: type }\n});\nlet sort = [];\nlet controls = [];\nlet allSourceOptions = [{label:'☁️聚合搜索', value:''}];\nlet sourceNameToType = {};\nlet sourceTypeToNames = {};\ntry {\n    let apiResponse = JSON.parse(java.ajax(getServerHost() + \"/api/get_config\"));\n    if (apiResponse && Array.isArray(apiResponse)) {\n        apiResponse.forEach(item => {\n            if (item.name && item.key) {\n                allSourceOptions.push({\n                    label: item.name,\n                    value: item.name\n                });\n                if (item.type) {\n                    sourceNameToType[item.name] = item.type;\n                    if (!sourceTypeToNames[item.type]) {\n                        sourceTypeToNames[item.type] = [];\n                    }\n                    sourceTypeToNames[item.type].push(item.name);\n                }\n            }\n        });\n    }\n} catch(e) {\n    java.toast(\"获取源站列表失败，请尝试切换服务器后刷新\");\n}\nlet modeOptions = [\"📖小说\", \"🎧听书\", \"🌈漫画\", \"▶️视频\"];\nlet modeDisplayToName = {'📖小说':'小说','🎧听书':'听书','🌈漫画':'漫画','▶️视频':'视频'};\nlet modeNameToDisplay = {'小说':'📖小说','听书':'🎧听书','漫画':'🌈漫画','视频':'▶️视频'};\nlet modeTypeMap = {'小说':'novel','听书':'audio','漫画':'comic','视频':'video'};\nlet defaultMode = \"📖小说\";\nlet currentModeName = \"\";\nif (config.source) {\n    if (modeNameToDisplay[config.source]) {\n        defaultMode = modeNameToDisplay[config.source];\n        currentModeName = config.source;\n    } else if (sourceNameToType[config.source]) {\n        let type = sourceNameToType[config.source];\n        let typeToMode = {'novel':'📖小说','audio':'🎧听书','comic':'🌈漫画','video':'▶️视频'};\n        defaultMode = typeToMode[type] || \"📖小说\";\n        currentModeName = modeDisplayToName[defaultMode] || \"小说\";\n    }\n} else {\n    currentModeName = \"小说\";\n}\nfunction getSourceOptionsByMode(modeName) {\n    let type = modeTypeMap[modeName] || 'novel';\n    let options = [{label:'☁️聚合搜索', value:''}];\n    if (sourceTypeToNames[type]) {\n        sourceTypeToNames[type].forEach(name => {\n            options.push({label: name, value: name});\n        });\n    }\n    return options;\n}\nlet currentSourceOptions = getSourceOptionsByMode(currentModeName);\nlet sourceLabels = currentSourceOptions.map(item => item.label);\nlet currentSource = config.source || '';\nlet defaultSourceLabel = '☁️聚合搜索';\nlet modeNames = ['小说','听书','漫画','视频'];\nif (!modeNames.includes(currentSource)) {\n    for (let i = 0; i < currentSourceOptions.length; i++) {\n        if (currentSourceOptions[i].value == currentSource) {\n            defaultSourceLabel = currentSourceOptions[i].label;\n            break;\n        }\n    }\n}\nlet mapObj = {};\ncurrentSourceOptions.forEach(item => { mapObj[item.label] = item.value; });\nlet mapStr = JSON.stringify(mapObj).replace(/\\\\/g,'\\\\\\\\').replace(/\"/g,'\\\\\"');\ncontrols.push({\n    title: \"☃关键词💭：书名/作者\",\n    type: \"text\",\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.6 }\n});\ncontrols.push({\n    title: \"🔍搜索\",\n    type: \"button\",\n    action: \"java.searchBook(infoMap['☃关键词💭：书名/作者'] || '', source.bookSourceName + '::' + source.getKey())\",\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: -1, layout_alignSelf: \"baseline\" }\n});\ncontrols.push({\n    title: \"🔄刷新\",\n    type: \"button\",\n    action: \"java.refreshExplore()\",\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.4, layout_alignSelf: \"baseline\" }\n});\ncontrols.push({\n    title: \"⚙登录\",\n    type: \"button\",\n    action: \"java.open('login','http',null)\",\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.4, layout_alignSelf: \"baseline\" }\n});\ncontrols.push({\n    title: \"性别\",\n    type: \"select\",\n    chars: [\"♂️男频\", \"♀️女频\"],\n    default: config.gender == \"boy\" ? \"♂️男频\" : \"♀️女频\",\n    action: \"(function(){ var raw=infoMap['性别']||''; var v=(raw.indexOf('男')>=0)?'boy':'girl'; setConfigs.call(this,{gender:v}); java.refreshExplore(); })()\",\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.4 }\n});\nlet modeMapStr = JSON.stringify(modeDisplayToName).replace(/\\\\/g,'\\\\\\\\').replace(/\"/g,'\\\\\"');\ncontrols.push({\n    title: \"模式\",\n    type: \"select\",\n    chars: modeOptions,\n    default: defaultMode,\n    action: \"(function(){ var raw=infoMap['模式']||''; var modeMap=JSON.parse('\" + modeMapStr + \"'); var modeName=modeMap[raw]||'小说'; setConfigs.call(this,{source:modeName}); java.refreshExplore(); })()\",\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.4 }\n});\nlet currentStyle = cache.get(\"imgstyle\") ?? \"TEXT\";\nlet currentSizeLabel = currentStyle == \"TEXT\" ? \"🔵大号\" : \"🟢小号\";\ncontrols.push({\n    title: \"段评图标\",\n    type: \"select\",\n    chars: [\"🟢小号\", \"🔵大号\"],\n    default: currentSizeLabel,\n    action: \"(function(){ var raw=infoMap['SVG大小']||''; var v='TEXT'; if(raw.indexOf('小号')>=0){ v='text'; } else if(raw.indexOf('大号')>=0){ v='TEXT'; } cache.put('imgstyle', v); var msg = v=='TEXT'?'大号':'小号'; java.toast('\\\\n🥽段评气泡-'+msg+'样式'); java.refreshExplore(); })()\",\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.4 }\n});\nlet sourceOptionsStr = JSON.stringify(currentSourceOptions).replace(/\\\\/g,'\\\\\\\\').replace(/\"/g,'\\\\\"');\ncontrols.push({\n    title: \"源站\",\n    type: \"select\",\n    chars: sourceLabels,\n    default: defaultSourceLabel,\n    action: \"(function(){ var raw=infoMap['源站']||''; var options=JSON.parse('\" + sourceOptionsStr + \"'); var map={}; options.forEach(function(item){ map[item.label]=item.value; }); setConfigs.call(this,{source:map[raw]||''}); java.refreshExplore(); })()\",\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.4 }\n});\ncontrols.push({\n    title: \"━━━━━━━━━━━━━━━━━━━━\",\n    type: \"title\",\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: 1 }\n});\nlet currentType = config.gender || \"\";\nlet currentSource2 = config.source || \"\";\nconst getGenderDisplayName = (gender) => {\n  if (gender == \"boy\") return \"男频\";\n  if (gender == \"girl\") return \"女频\";\n  return \"\";\n};\nconst genderDisplay = getGenderDisplayName(currentType);\nconst excludedSources = [\"小说\", \"听书\", \"漫画\", \"视频\", \"短剧\", \"音频\",\"番茄小说\"];\nif (currentSource2 && !excludedSources.includes(currentSource2)) {\n  try {\n    let apiUrl = `${getServerHost()}/type_api?source=${currentSource2}`;\n    if (currentType) {\n      apiUrl += `&gender=${currentType}`;\n    }\n    let response = JSON.parse(java.ajax(apiUrl));\n    if (response.data.found) {\n      response.data.found.forEach(item => {\n        let finalUrl = \"\";\n        if (item.url) {\n          if (item.url.includes('jj_signin') || item.url.includes('jjbookshelf')) {\n            finalUrl = item.url;\n          } else {\n            finalUrl = `${getServerHost()}/type_api?source=${currentSource2}&page={{page}}&url=${item.url}`;\n            if (currentType) {\n              finalUrl += `&gender=${currentType}`;\n            }\n          }\n        }\n        sort.push({\n          title: item.title,\n          url: finalUrl,\n          style: item.style || { layout_flexGrow: 1, layout_flexBasisPercent: 0.29 }\n        });\n      });\n    } else {\n      sort.push({\n        title: `【${currentSource2}】${genderDisplay ? `【${genderDisplay}】` : ''}暂无数据`,\n        url: \"\",\n        style: { layout_flexGrow: 1, layout_flexBasisPercent: 1 }\n      });\n    }\n  } catch(e) {\n    sort.push({\n      title: `【${currentSource2}】${genderDisplay ? `【${genderDisplay}】` : ''}暂无数据`,\n      url: \"\",\n      style: { layout_flexGrow: 1, layout_flexBasisPercent: 1 }\n    });\n  }\n  sort = controls.concat(sort);\n  JSON.stringify(sort);\n} else {\n  let recommendUrl = getServerHost() + \"/read_recommend?session=\" + getSessionId();\n  sort.push({\n    title: '个性推荐',\n    url: recommendUrl,\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.45 }\n  });\n  sort.push({\n    title: '猜你喜欢',\n    url: 'https://fanqienovel.com/tab/cai',\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.45 }\n  });\n  sort.push({\n    title: '巅峰榜单',\n    url: 'https://fanqienovel.com/api/author/misc/top_book_list/v1/?limit=100&offset={{(page-1)*100}}',\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.29 }\n  });\n  sort.push({\n    title: '出版榜单',\n    url: 'https://fanqienovel.com/api/node/publication/list?page_index={{(page-1)*100}}&page_count=100',\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.29 }\n  });\n  sort.push({\n    title: '爆更榜单',\n    url: 'https://api-lf.fanqiesdk.com/api/novel/channel/homepage/rank/rank_list/v2/?aid=13&limit=50&offset={{(page-1)*100}}&side_type=15&type=1',\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.29 }\n  });\n  sort.push({\n    title: '黑马榜单',\n    url: 'https://api-lf.fanqiesdk.com/api/novel/channel/homepage/rank/rank_list/v2/?aid=13&limit=50&offset={{(page-1)*100}}&side_type=13&type=1',\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.29 }\n  });\n  sort.push({\n    title: '热搜榜单',\n    url: 'https://api-lf.fanqiesdk.com/api/novel/channel/homepage/rank/rank_list/v2/?aid=13&limit=50&offset={{(page-1)*100}}&side_type=12&type=1',\n    style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.29 }\n  });\n  let showCategories = currentType == \"girl\" ? [0] : [1];\n  showCategories.forEach(genderCode => {\n    let isMale = genderCode == 1;\n    let genderLabel = isMale ? \"男频\" : \"女频\";\n    let categories = isMale ? [\n      {id: 1141, name: \"西方奇幻\"},\n      {id: 1140, name: \"东方仙侠\"},\n      {id: 8, name: \"科幻末世\"},\n      {id: 261, name: \"都市日常\"},\n      {id: 124, name: \"都市修真\"},\n      {id: 1014, name: \"都市高武\"},\n      {id: 273, name: \"历史古代\"},\n      {id: 27, name: \"战神赘婿\"},\n      {id: 263, name: \"都市种田\"},\n      {id: 258, name: \"传统玄幻\"},\n      {id: 272, name: \"历史脑洞\"},\n      {id: 262, name: \"都市脑洞\"},\n      {id: 257, name: \"玄幻脑洞\"},\n      {id: 751, name: \"悬疑灵异\"},\n      {id: 504, name: \"抗战谍战\"},\n      {id: 746, name: \"游戏体育\"},\n      {id: 718, name: \"动漫衍生\"},\n      {id: 1016, name: \"男频衍生\"}\n    ] : [\n      {id: 1139, name: \"古风世情\"},\n      {id: 8, name: \"科幻末世\"},\n      {id: 746, name: \"游戏体育\"},\n      {id: 1015, name: \"女频衍生\"},\n      {id: 248, name: \"玄幻言情\"},\n      {id: 23, name: \"种田\"},\n      {id: 79, name: \"年代\"},\n      {id: 267, name: \"现言脑洞\"},\n      {id: 246, name: \"宫斗宅斗\"},\n      {id: 539, name: \"悬疑脑洞\"},\n      {id: 253, name: \"古言脑洞\"},\n      {id: 24, name: \"快穿\"},\n      {id: 749, name: \"青春甜宠\"},\n      {id: 745, name: \"星光璀璨\"},\n      {id: 747, name: \"女频悬疑\"},\n      {id: 750, name: \"职场婚恋\"},\n      {id: 748, name: \"豪门总裁\"},\n      {id: 1017, name: \"民国言情\"}\n    ];\n    sort.push({\n      title: `❤️${genderLabel}阅读榜❤️`,\n      url: \"\",\n      style: { layout_flexGrow: 1, layout_flexBasisPercent: 1 }\n    });\n    categories.forEach(cat => {\n      sort.push({\n        title: cat.name,\n        url: `${getServerHost()}/style_top?rank_list_type=3&offset={{(page-1)*10}}&limit=10&category_id=${cat.id}&gender=${genderCode}&rankMold=2`,\n        style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.29 }\n      });\n    });\n    sort.push({\n      title: `❤️${genderLabel}新书榜❤️`,\n      url: \"\",\n      style: { layout_flexGrow: 1, layout_flexBasisPercent: 1 }\n    });\n    categories.forEach(cat => {\n      sort.push({\n        title: cat.name,\n        url: `${getServerHost()}/style_top?rank_list_type=3&offset={{(page-1)*10}}&limit=10&category_id=${cat.id}&gender=${genderCode}&rankMold=1`,\n        style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.29 }\n      });\n    });\n  });\n  let fqCategoryArr = [];\n  showCategories = currentType == \"girl\" ? [0] : [1];\n  showCategories.forEach(i => {\n    try {\n      let response = JSON.parse(java.ajax(`${getServerHost()}/type_style?new_category_tab=${i}`));\n      let categoryGroups = response.data;\n      categoryGroups.forEach(group => {\n        fqCategoryArr.push(obj(`❤️${group.name}❤️`, null, 1));\n        group.data.forEach(category => {\n          let gender, genre_type;\n          if (i == 0) {\n            gender = 0;\n            genre_type = 0;\n          } else if (i == 1) {\n            gender = 1;\n            genre_type = 0;\n          } else {\n            gender = 1;\n            genre_type = 0;\n          }\n          fqCategoryArr.push({\n            title: category.name,\n            url: `${getServerHost()}/type_style?category_id=${category.category_id}&genre_type=${genre_type}&gender=${gender}&offset={{(page-1)*100}}&selected_items=`,\n            style: {\n              layout_flexGrow: 1,\n              layout_flexBasisPercent: 0.29\n            }\n          });\n        });\n      });\n    } catch (e) {\n      fqCategoryArr.push(obj(\"分类加载失败，请重试\", null, 1));\n    }\n  });\n  fqCategoryArr.forEach(item => {\n    if (item.style && item.style.layout_flexBasisPercent) {\n      sort.push({\n        title: item.title,\n        url: item.url,\n        style: item.style\n      });\n    } else {\n      sort.push({\n        title: item.title,\n        url: item.url,\n        style: {\n          layout_flexGrow: 1,\n          layout_flexBasisPercent: 0.29\n        }\n      });\n    }\n  });\n  let hasValidSession = false;\n  let username = \"\";\n  try {\n    let uinfo = java.ajax(getServerHost() + \"/book_user?session=\" + getSessionId());\n    uinfo = JSON.parse(uinfo);\n    if (uinfo.data.name) {\n      username = uinfo.data.name;\n      hasValidSession = true;\n    }\n  } catch (e) {\n  }\n  if (!hasValidSession) {\n    java.toast(\"番茄登录已过期，请重新登录\");\n  }\n  let gro = [];\n  let pushGro = (title, url, type) => gro.push(obj(title, url, type));\n  let sArr = [];\n  if (hasValidSession) {\n    try {\n      let book_shelf_info = JSON.parse(java.ajax(getServerHost() + \"/book_shelf?session=\" + getSessionId()));\n      if (book_shelf_info.code == 0) {\n        let groups_bookids = { \"未分组\": [] };\n        book_shelf_info.data.book_shelf_info.forEach(i => {\n          if (!groups_bookids[i.group_name ? i.group_name : \"未分组\"]) \n            groups_bookids[i.group_name] = [];\n          groups_bookids[i.group_name ? i.group_name : \"未分组\"].push(i.book_id);\n        });\n        Object.keys(groups_bookids).forEach(k => {\n          pushGro(k, \"https://fanqienovel.com/fqbookshelf/groupName/\" + k, 0.4);\n        });\n        if (Object.keys(groups_bookids).length % 2 != 0) pushGro(\"占位\", \"\", 0.4);\n        sArr.push(obj(username + '的个人中心', '', 1));\n        sArr.push(obj(\"我的书架\", \"https://fanqienovel.com/fqbookshelf\", 1));\n        sArr = sArr.concat(gro);\n        sArr.push(obj(\"阅读历史\", getServerHost() + \"/read_history?session=\" + getSessionId() + \"&page={{page}}\", 1));\n      } else {\n        java.toast(\"获取书架信息失败，登录可能已过期\");\n      }\n    } catch (e) {\n      java.toast(\"番茄登录过期，已隐藏个人中心\");\n    }\n  } else {\n    java.toast(\"您还未登录番茄账号，无法同步数据\");\n  }\n  sort = sArr.concat(sort);\n  sort = controls.concat(sort);\n  JSON.stringify(sort);\n}\n</js>",
    "header": "@js:\nJSON.stringify({\n\t\"User-Agent\":java.getWebViewUA(),\n\t\"X-Api-Key\": getSecretKey(),\n\t\"X-Novel-Token\": \"SHUSAN_READ_2025\"\n\t})",
    "jsLib": "var hosts = [\n    \"https://v1.vossc.com\",\n    \"https://v2.vossc.com\",\n    \"https://v3.vossc.com\",\n    \"https://v4.vossc.com\",\n    \"http://1.94.248.5:7001\"\n];\n\nfunction getHosts() {\n    return hosts;\n}\n\nfunction getServerHost() {\n    let { source } = this;\n    try {\n        const config = JSON.parse(source.getVariable());\n        return config?.[0]?.host || getHosts()[0];\n    } catch (e) {\n        return getHosts()[0];\n    }\n}\n\nfunction getParagraphApiUrl() {\n    let host = getServerHost.call(this);\n    return host + '/para';\n}\n\nfunction deviceType() {\n    let { java } = this;\n    try {\n        var id = java.androidId();\n        if (id && id !== '') {\n            return false;\n        }\n    } catch (e) {}\n    \n    try {\n        var id = java.deviceID();\n        if (id && id !== '') {\n            return true;\n        }\n    } catch (e) {}\n    \n    return false;\n}\n\nfunction checkEnv() {\n    let { java, source } = this;\n    let isModified = false;\n    try {\n        new Packages.io.legato.kazusa.utils.TimeoutCancellationException('');\n        isModified = true;\n    } catch (e) {\n        isModified = typeof source.loginUi == 'function' ? false : true;\n    }\n\n    return isModified;\n}\n\nfunction isQRead() {\n    let { java } = this;\n    try {\n        return java.qread && java.qread() == \"1\";\n    } catch (e) {\n        return false;\n    }\n}\n\nfunction getSecretKey() {\n    let { java, source, cookie } = this;\n    try {\n        var headerValue = source.getLoginHeader();\n        if (headerValue) {\n            var headerStr = String(headerValue);\n            if (headerStr && headerStr.length >= 10) {\n                return java.base64Encode(headerStr);\n            }\n        }\n        \n        var cookieHeader = cookie.getCookie(getServerHost.call(this)) || '';\n        var tokenMatch = cookieHeader.match(/X-Novel-Token=([^;]+)/);\n        if (tokenMatch) {\n            return tokenMatch[1];\n        }\n        \n        java.toast(\"❌ 未登录，请先登录\");\n        return \"\";\n    } catch (e) {\n        java.toast(\"❌ 获取登陆状态失败\");\n        return \"\";\n    }\n}\n\nfunction getConfig() {\n    let { source } = this;\n    try {\n        let configStr = source.getVariable();\n        if (!configStr || configStr.trim() === \"\") {\n            return { host: getServerHost.call(this) };\n        }\n        let config = JSON.parse(configStr);\n        if (!config || !Array.isArray(config) || config.length === 0) {\n            return { host: getServerHost.call(this) };\n        }\n        return config[0] || { host: getServerHost.call(this) };\n    } catch (e) {\n        return { host: getServerHost.call(this) };\n    }\n}\n\nfunction setConfig(key, value) {\n    let { source } = this;\n    try {\n        let config = getConfig.call(this);\n        config[key] = value;\n        source.setVariable(JSON.stringify([config]));\n        return true;\n    } catch (e) {\n        return false;\n    }\n}\n\nfunction setConfigs(obj) {\n    let { source } = this;\n    try {\n        let config = getConfig.call(this);\n        for (let k in obj) {\n            if (obj.hasOwnProperty(k)) {\n                config[k] = obj[k];\n            }\n        }\n        source.setVariable(JSON.stringify([config]));\n        return true;\n    } catch (e) {\n        return false;\n    }\n}\n\nfunction getSessionId() {\n    const { cookie, source } = this;\n    try {\n        let cookieHeader = String(cookie.getCookie('fanqienovel.com'));\n        let sessionId = cookieHeader.match(/sessionid=([^;]+)/)?.[1] || null;\n        if (sessionId) {\n            return sessionId;\n        }\n    } catch (e) {}\n    try {\n        let loginInfo = source.getLoginInfoMap() || {};\n        return loginInfo['番茄登录Token'] || \"\";\n    } catch (e) {\n        return \"\";\n    }\n}\n\nfunction splitArray(input, size) {\n    let output = []\n    for (let i = 0; i < input.length; i += size) {\n        output.push(input.slice(i, i + size))\n    }\n    return output\n}\n\nfunction getCommentIconColor() {\n    let {\n        source\n    } = this;\n    let color = \"#666666\";\n    let loginInfo = source.getLoginInfoMap() || \"\";\n    if (loginInfo['段评图标颜色'] && loginInfo['段评图标颜色'].startsWith('#')) {\n        color = loginInfo['段评图标颜色'];\n    }\n    return color;\n}\n\nfunction wrapContentForIOS(content) {\n    if (content == null || content == undefined) {\n        return '';\n    }\n    if (typeof content !== 'string') {\n        try {\n            content = String(content);\n        } catch (e) {\n            return '';\n        }\n    }\n    const pureContent = content.trim();\n    if (deviceType.call(this)) {\n        return pureContent;\n    }\n    let lines = pureContent.split('\\n').map(line => {\n        if (line && line.trim()) {\n            const trimLine = line.trim().replace(/\\s+/g, ' ');\n            return `<div rs-native>${trimLine}</div>`;\n        }\n        return line || '';\n    });\n    return lines.join('\\n');\n}\n\nfunction createCommentHtmlTag(displayText, url, sourceName) {\n    const encodedUrl = url.replace(/'/g, \"\\\\'\");\n    return '<comment count=\"' + String(displayText) + '\" onPress=\"java.' +\n        (isQRead.call(this) ? 'startBrowserDp' : 'startBrowser') +\n        '(\\'' + encodedUrl + '\\',\\'' + sourceName + '段评\\')\" />';\n}\n\nfunction buildCommentUrl(sourceType, bid, cid, para) {\n    let host = getServerHost.call(this);\n\n    switch (sourceType) {\n        case 'jj':\n            return host + '/jj_comment?bid=' + bid + '&cid=' + cid + '&para=' + para;\n        case 'qm':\n            return host + '/qm_comment?item_id=' + cid + '&book_id=' + bid + '&paragraph_id=' + para;\n        case 'qq':\n            return host + '/qq_comment?bid=' + bid + '&cid=' + cid + '&para=' + para;\n        case 'qd':\n            return host + '/qd_comment?bid=' + bid + '&cid=' + cid + '&para=' + para;\n        case 'fq':\n        default:\n            return host + '/idea_comment?item_id=' + cid + '&book_id=' + bid + '&para=' + para + '&sessionid=' + getSessionId.call(this);\n    }\n}\n\nfunction getCommentSourceName(sourceType) {\n    switch (sourceType) {\n        case 'jj':\n            return '晋江';\n        case 'qm':\n            return '七猫';\n        case 'qq':\n            return '企鹅';\n        case 'qd':\n            return '起点';\n        case 'fq':\n        default:\n            return '番茄';\n    }\n}\n\nfunction startCommentBrowser(url, title) {\n    let { java, source } = this;\n    \n    let userHeight = source.getLoginInfoMap().get(\"📐段评高度%\");\n    let heightPercentage = 0.75; // 默认\n    if (userHeight) {\n        let h = parseFloat(userHeight);\n        if (!isNaN(h)) {\n            if (h > 1) h = h / 100;\n            heightPercentage = Math.min(1, Math.max(0, h));\n        }\n    }\n    \n    let userRadius = source.getLoginInfoMap().get(\"📐段评圆角，填0-50之间\");\n    let cornerRadius = 20; // 默认20\n    if (userRadius) {\n        let r = parseInt(userRadius);\n        if (!isNaN(r)) {\n            cornerRadius = Math.min(50, Math.max(0, r)); // 限制在0-50之间\n        }\n    }\n    \n    if (isQRead.call(this)) {\n        java.startBrowserDp(url, title);\n    } else {\n        let isModifiedVersion = checkEnv.call(this);\n        if (isModifiedVersion) {\n            try {\n                let htmlContent = java.ajax(url);\n                java.showBrowser(\n                    url,\n                    htmlContent,\n                    `window.java=java;`,\n                    JSON.stringify({\n                        \"expandedCornersRadius\": cornerRadius,\n                        \"dismissOnTouchOutside\": true,\n                        \"isDraggable\": true,\n                        \"shouldDimBackground\": true,\n                        \"backgroundDimAmount\": 0.5,\n                        \"hardwareAccelerated\": true,\n                        \"isNestedScrollingEnabled\": true,\n                        \"isGestureInsetBottomIgnored\": true,\n                        \"setFitToContents\": false,\n                        \"heightPercentage\": heightPercentage,\n                        \"isHideable\": true\n                    })\n                );\n            } catch (e) {\n                java.showBrowser(\n                    url,\n                    null,\n                    `window.java=java;`,\n                    JSON.stringify({\n                        \"expandedCornersRadius\": cornerRadius,\n                        \"dismissOnTouchOutside\": true,\n                        \"hardwareAccelerated\": true,\n                        \"isNestedScrollingEnabled\": true,\n                        \"isGestureInsetBottomIgnored\": true,\n                        \"heightPercentage\": heightPercentage,\n                        \"isHideable\": true\n                    })\n                );\n            }\n        } else {\n            java.startBrowser(url, title);\n        }\n    }\n}\n\nfunction createSvg(number, color, bid, cid, para, sourceType = 'fq') {\n    let { java, source, cache } = this;\n    var displayText = number > 99 ? \"99+\" : number;\n    var date = String(Date.now()).match(/(\\d{6}$)/)[1];\n\n    let isIOS = deviceType.call(this);\n    if (isIOS) {\n        let commentUrl = buildCommentUrl.call(this, sourceType, bid, cid, para);\n        let sourceName = getCommentSourceName(sourceType);\n        return createCommentHtmlTag.call(this, displayText, commentUrl, sourceName);\n    }\n\n    let isQingRead = isQRead.call(this);\n    let isModifiedVersion = checkEnv.call(this);\n    \n    let customSvgRaw = source.getLoginInfoMap().get(\"自定义气泡SVG\");\n    \n    let customSvg = \"\";\n    if (customSvgRaw) {\n        if (typeof customSvgRaw == 'function') {\n            try { customSvg = customSvgRaw(); } catch (e) {}\n        } else if (typeof customSvgRaw == 'string') {\n            customSvg = customSvgRaw;\n        } else {\n            customSvg = String(customSvgRaw);\n        }\n    }\n    \n    const isValidSvg = customSvg && customSvg.trim().startsWith('<svg') && customSvg.trim().endsWith('</svg>');\n    \n    let imageStyle = cache.get(\"imgstyle\") ?? \"TEXT\";\n    \n    var svg;\n    if (isQingRead || isModifiedVersion) {\n        if (isValidSvg) {\n            svg = customSvg.replace(/\\$color/g, color).replace(/\\$displayText/g, displayText);\n        } else {\n            svg = `<svg width=\"160\" height=\"120\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M 55 10 L 120 10 Q 150 10 150 40 L 150 80 Q 150 110 120 110 L 55 110 Q 25 110 25 80 L 25 75 L 3 60 L 25 45 L 25 40 Q 25 10 55 10 Z\" fill=\"none\" stroke=\"${color}\" stroke-width=\"5\" stroke-linejoin=\"round\"/><text x=\"87\" y=\"77\" font-family=\"Arial, sans-serif\" text-anchor=\"middle\" dominant-baseline=\"middle\" font-size=\"50\" font-weight=\"bold\" fill=\"${color}\">${displayText}</text></svg>`;\n        }\n    } else {\n        svg = isValidSvg ? customSvg : `<svg width=\"1000\" height=\"909\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M80,80 h840 a60,60 0 0 1 60,60 v580 a60,60 0 0 1 -60,60 h-620 l-140,90 v-90 h-80 a60,60 0 0 1 -60,-60 v-580 a60,60 0 0 1 60,-60 z\" fill=\"none\" stroke=\"${color}\" stroke-width=\"16\" stroke-linejoin=\"round\"/><text x=\"500\" y=\"450\" font-family=\"Arial, sans-serif\" text-anchor=\"middle\" font-size=\"360\" fill=\"${color}\" dy=\"0.3em\">${displayText}</text></svg>`;\n    }\n\n    var encodedSvg = java.base64Encode(svg);\n\n    const jsFunction = {\n        'jj': 'showJJCmt',\n        'qm': 'showQmCmt',\n        'qq': 'showQQCmt',\n        'qd': 'showQDCmt',\n        'snm': 'showSnmCmt',\n        'fq': 'showCmt'\n    }[sourceType] || 'showCmt';\n\n    const baseData = `data:image/svg+xml;base64,${encodedSvg},{'${isModifiedVersion ? 'click' : 'js'}':'${jsFunction}(\"${bid}\",\"${cid}\",\"${para}\",\"${date}\")','style':'${imageStyle}'}`;\n\n    if (sourceType == 'qq' && para == 0) return baseData;\n    return deviceType.call(this) ? baseData : `<img src=\"${baseData}\">`;\n}\n\nfunction createGodReviewSvg(reviews, bid, cid, paraId) {\n    let { java, source, cache } = this;\n    \n    if (!reviews || reviews.length == 0) return '';\n    \n    let review = reviews[0];\n    let content = review.content || '';\n    \n    content = content.replace(/https?:\\/\\/[^\\s]+/g, \"\")\n                     .replace(/qdd\\.gg\\/[^\\s]+/g, \"\")\n                     .replace(/\\[fn=\\d+\\]/g, \"\");\n    \n    let displayText = content.trim();\n    let maxChars = 21;\n    \n    if (displayText.length > maxChars) {\n        displayText = displayText.substring(0, maxChars) + '…';\n    }\n    \n    if (!displayText) return '';\n    \n    let isModifiedVersion = checkEnv.call(this);\n    \n    let tagColor = \"#FF4444\";\n    \n    let textColor = \"#FF4444\";\n    try {\n        let loginInfo = source.getLoginInfoMap() || \"\";\n        if (loginInfo['神评文字颜色'] && loginInfo['神评文字颜色'].startsWith('#')) {\n            textColor = loginInfo['神评文字颜色'];\n        }\n    } catch(e) {}\n    \n    let borderColor = \"#CCCCCC\";\n    try {\n        let loginInfo = source.getLoginInfoMap() || \"\";\n        if (loginInfo['神评边框颜色'] && loginInfo['神评边框颜色'].startsWith('#')) {\n            borderColor = loginInfo['神评边框颜色'];\n        }\n    } catch(e) {}\n    \n    displayText = displayText.replace(/&/g, '&amp;')\n                             .replace(/</g, '&lt;')\n                             .replace(/>/g, '&gt;')\n                             .replace(/\"/g, '&quot;')\n                             .replace(/'/g, '&apos;');\n\n    let svg = `<svg viewBox=\"0 0 600 60\" xmlns=\"http://www.w3.org/2000/svg\" style=\"display:block;margin-top:2px;width:100%;max-width:600px;height:auto;\">\n        <rect x=\"2\" y=\"2\" width=\"596\" height=\"56\" fill=\"rgba(255,255,255,0.10)\" rx=\"16\" stroke=\"${borderColor}\" stroke-width=\"0.8\"/>\n        <rect x=\"16\" y=\"14\" width=\"60\" height=\"32\" rx=\"10\" fill=\"${tagColor}\"/>\n        <text x=\"46\" y=\"36\" font-family=\"system-ui, -apple-system, sans-serif\" font-size=\"18\" text-anchor=\"middle\" font-weight=\"600\" fill=\"#FFFFFF\">神评论</text>\n        <text x=\"90\" y=\"40\" font-family=\"system-ui, -apple-system, sans-serif\" font-size=\"23\" font-weight=\"500\" fill=\"${textColor}\">${displayText}</text>\n    </svg>`;\n    \n    let encodedSvg = java.base64Encode(svg);\n    \n    let jsFunction = 'showQDCmt';\n    let date = String(Date.now()).match(/(\\d{6}$)/)[1];\n    \n    const baseData = `data:image/svg+xml;base64,${encodedSvg},{'${isModifiedVersion ? 'click' : 'js'}':'${jsFunction}(\"${bid}\",\"${cid}\",\"${paraId}\",\"${date}\")','style':'full'}`;\n    \n    return `<img src=\"${baseData}\">`;\n}\n\nfunction createChapterEndSvg(bid, cid, totalCount, authorName, authorExpectText, commentList) {\n    let { java, source, cache } = this;\n    \n    let color = getCommentIconColor.call(this);\n    let isModifiedVersion = checkEnv.call(this);\n    \n    let countText = totalCount > 999 ? \"999+\" : String(totalCount);\n    \n    var EMOJI = {\n        1:\"👏\",2:\"🌹\",3:\"🤝\",4:\"😁\",5:\"😄\",6:\"🥺\",7:\"🙂\",8:\"😏\",9:\"😙\",10:\"👆🏻🐽\",\n        11:\"🙄\",12:\"😭\",13:\"😵\",14:\"😥\",15:\"🖕🏻\",16:\"🥵\",17:\"😓\",18:\"🤫\",19:\"😂\",20:\"😢\",\n        21:\"😍\",22:\"🤕🔨\",23:\"😑\",24:\"😫\",25:\"🤗\",26:\"🤪\",27:\"🙏\",28:\"😣\",29:\"💪\",30:\"💀\",\n        31:\"😳\",32:\"😎\",33:\"🤭\",34:\"😄👏\",35:\"👍🏻\",36:\"🤓\",37:\"😡\",38:\"🙁\",39:\"😄❓\",40:\"😞\",\n        41:\"😧\",42:\"💋\",43:\"☺️\",44:\"🤬\",45:\"😴\",46:\"🤠🚬\",47:\"😱\",48:\"🐷\",49:\"😪\",50:\"🤐\",\n        51:\"🥴\",52:\"🌙\",53:\"❤️\",54:\"🔪\",55:\"🎁\",56:\"💔\",57:\"👊🏻\",58:\"😒\",59:\"✌🏻️\",60:\"😮\",\n        61:\"🤨\",62:\"😴\",63:\"👏🏻\",64:\"🐲\",65:\"⭐\",66:\"🌧️\",67:\"🍉\",68:\"🍵\",69:\"🔥\",70:\"💯\"\n    };\n    \n    function removeFnEmoji(s) {\n        return s ? s.replace(/\\[fn=\\d+\\]/g, '') : '';\n    }\n    \n    function replaceFnEmoji(s) {\n        return s ? s.replace(/\\[fn=(\\d+)\\]/g, function(match, id) {\n            return EMOJI[parseInt(id)] || '';\n        }) : '';\n    }\n    \n    let commentListArray = [];\n    if (commentList && typeof commentList == 'object' && commentList.length !== undefined) {\n        commentListArray = commentList;\n    } else if (Array.isArray(commentList)) {\n        commentListArray = commentList;\n    }\n    \n    let maxComments = 3;\n    let validComments = [];\n    for (let i = 0; i < commentListArray.length && validComments.length < maxComments; i++) {\n        let c = commentListArray[i] || {};\n        let content = c.Content || c.content || '';\n        if (content && content.trim()) {\n            let userName = c.UserName || c.userName || c.nickname || '匿名';\n            let likeCount = c.AgreeAmount || c.agreeAmount || c.likeCount || 0;\n            let formattedContent = replaceFnEmoji(content.trim());\n            validComments.push({\n                userName: userName.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/\"/g, '&quot;').replace(/'/g, '&apos;'),\n                content: formattedContent.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/\"/g, '&quot;').replace(/'/g, '&apos;'),\n                likeCount: likeCount\n            });\n        }\n    }\n    \n    if (validComments.length == 0) {\n        var emptyHeight = 150;\n        var svg = `<svg viewBox=\"0 0 700 ${emptyHeight}\" xmlns=\"http://www.w3.org/2000/svg\" style=\"display:block;margin-top:16px;width:100%;max-width:700px;height:auto;\">\n    <rect x=\"0\" y=\"0\" width=\"700\" height=\"${emptyHeight}\" rx=\"18\" fill=\"none\" stroke=\"${color}\" stroke-width=\"0.5\" opacity=\"0.6\"/>\n    <text x=\"32\" y=\"44\" font-family=\"system-ui, -apple-system, sans-serif\" font-size=\"24\" font-weight=\"700\" fill=\"${color}\" opacity=\"1\">💬 本章说</text>\n    <text x=\"668\" y=\"44\" text-anchor=\"end\" font-family=\"system-ui, -apple-system, sans-serif\" font-size=\"18\" font-weight=\"600\" fill=\"${color}\" opacity=\"0.9\">${countText}条评论 ›</text>\n    <line x1=\"28\" y1=\"58\" x2=\"672\" y2=\"58\" stroke=\"${color}\" stroke-width=\"0.3\" opacity=\"0.35\"/>\n    <text x=\"350\" y=\"110\" text-anchor=\"middle\" font-family=\"system-ui, -apple-system, sans-serif\" font-size=\"16\" fill=\"${color}\" opacity=\"0.55\">还没有评论，快来抢沙发吧~</text>\n</svg>`;\n        \n        var encodedSvg = java.base64Encode(svg);\n        var jsFunction = 'showQDCmt';\n        var date = String(Date.now()).match(/(\\d{6}$)/)[1];\n        var baseData = `data:image/svg+xml;base64,${encodedSvg},{'${isModifiedVersion ? 'click' : 'js'}':'${jsFunction}(\"${bid}\",\"${cid}\",\"benzhang\",\"${date}\")','style':'FULL'}`;\n        return '\\n' + `<img src=\"${baseData}\">`;\n    }\n    \n    let headerHeight = 100;\n    let cardHeight = 130;\n    let cardGap = 24;\n    let bottomPadding = -20;\n    let totalHeight = headerHeight + validComments.length * (cardHeight + cardGap) + bottomPadding;\n    \n    var svg = `<svg viewBox=\"0 0 700 ${totalHeight}\" xmlns=\"http://www.w3.org/2000/svg\" style=\"display:block;margin-top:16px;width:100%;max-width:700px;height:auto;\">\n    <rect x=\"0\" y=\"0\" width=\"700\" height=\"${totalHeight}\" rx=\"18\" fill=\"none\" stroke=\"${color}\" stroke-width=\"0.5\" opacity=\"0.6\"/>\n    <text x=\"32\" y=\"44\" font-family=\"system-ui, -apple-system, sans-serif\" font-size=\"24\" font-weight=\"700\" fill=\"${color}\" opacity=\"1\">💬 本章说</text>\n    <text x=\"668\" y=\"44\" text-anchor=\"end\" font-family=\"system-ui, -apple-system, sans-serif\" font-size=\"18\" font-weight=\"600\" fill=\"${color}\" opacity=\"0.9\">${countText}条评论 ›</text>\n    <line x1=\"28\" y1=\"58\" x2=\"672\" y2=\"58\" stroke=\"${color}\" stroke-width=\"0.3\" opacity=\"0.35\"/>`;\n    \n    validComments.forEach(function(c, idx) {\n        let yPos = 77 + idx * (cardHeight + cardGap);\n        let maxCharsPerLine = 23;\n        let contentDisplay = c.content;\n        \n        if (contentDisplay.length > maxCharsPerLine * 2) {\n            contentDisplay = contentDisplay.substring(0, maxCharsPerLine * 2) + '…';\n        }\n        \n        let hasTwoLines = contentDisplay.length > maxCharsPerLine;\n        let line1Text = hasTwoLines ? contentDisplay.substring(0, maxCharsPerLine) : contentDisplay;\n        let line2Text = hasTwoLines ? contentDisplay.substring(maxCharsPerLine) : '';\n        \n        let likeText = c.likeCount > 999 ? \"999+\" : String(c.likeCount);\n        let likeWidth = likeText.length * 13 + 50;\n        let likeX = 668 - likeWidth;\n        \n        let avatarColors = [\"#e07078\", \"#6090d0\", \"#50b878\", \"#d0a860\", \"#9060c8\"];\n        let avatarColor = avatarColors[idx % avatarColors.length];\n        let initial = c.userName.charAt(0);\n        \n        let cardBg = idx % 2 == 0 ? 'rgba(128,128,128,0.1)' : 'rgba(128,128,128,0.05)';\n        \n        svg += `\n    <rect x=\"14\" y=\"${yPos}\" width=\"672\" height=\"${cardHeight}\" rx=\"14\" fill=\"${cardBg}\"/>\n    <circle cx=\"50\" cy=\"${yPos + 34}\" r=\"19\" fill=\"${avatarColor}\" opacity=\"0.95\"/>\n    <text x=\"50\" y=\"${yPos + 40}\" text-anchor=\"middle\" font-family=\"system-ui, -apple-system, sans-serif\" font-size=\"16\" font-weight=\"700\" fill=\"#ffffff\">${initial}</text>\n    <text x=\"82\" y=\"${yPos + 28}\" font-family=\"system-ui, -apple-system, sans-serif\" font-size=\"21\" font-weight=\"700\" fill=\"${color}\" opacity=\"1\">${c.userName}</text>\n    <text x=\"82\" y=\"${yPos + 72}\" font-family=\"system-ui, -apple-system, sans-serif\" font-size=\"24\" font-weight=\"400\" fill=\"${color}\" opacity=\"1\">　　${line1Text}</text>`;\n        if (hasTwoLines) {\n            svg += `\n    <text x=\"82\" y=\"${yPos + 104}\" font-family=\"system-ui, -apple-system, sans-serif\" font-size=\"24\" font-weight=\"400\" fill=\"${color}\" opacity=\"1\">　　　${line2Text}</text>`;\n        }\n        svg += `\n    <g transform=\"translate(${likeX}, ${yPos + 6})\">\n        <rect x=\"0\" y=\"0\" width=\"${likeWidth}\" height=\"28\" rx=\"14\" fill=\"none\" stroke=\"${color}\" stroke-width=\"0.7\" opacity=\"0.7\"/>\n        <g transform=\"translate(9, 4)\">\n            <path d=\"M12 8V4a3 3 0 0 0-3-3L5 10v10h10.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM6 20H3a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2h3\" fill=\"none\" stroke=\"${color}\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" transform=\"scale(0.78)\" opacity=\"0.85\"/>\n        </g>\n        <text x=\"${likeWidth / 2 + 8}\" y=\"19\" text-anchor=\"middle\" font-family=\"system-ui, -apple-system, sans-serif\" font-size=\"14\" font-weight=\"600\" fill=\"${color}\" opacity=\"0.85\">${likeText}</text>\n    </g>`;\n    });\n    \n    svg += `\n</svg>`;\n    \n    var encodedSvg = java.base64Encode(svg);\n    var jsFunction = 'showQDCmt';\n    var date = String(Date.now()).match(/(\\d{6}$)/)[1];\n    var baseData = `data:image/svg+xml;base64,${encodedSvg},{'${isModifiedVersion ? 'click' : 'js'}':'${jsFunction}(\"${bid}\",\"${cid}\",\"benzhang\",\"${date}\")','style':'FULL'}`;\n    \n    return '\\n' + `<img src=\"${baseData}\">`;\n}\n\nfunction checkClickRateLimit(lastCallKey) {\n    let { cache } = this;\n    let lastCallTime = cache.getFromMemory(lastCallKey) || 0;\n    let currentTime = Date.now();\n    if (currentTime - lastCallTime < 1000) {\n        return false;\n    }\n    cache.putMemory(lastCallKey, currentTime);\n    return true;\n}\n\nfunction handleCommentClick(sourceType, bid, cid, para, date, cacheKey) {\n    let { cache } = this;\n    let isModifiedVersion = checkEnv.call(this);\n    let isQingRead = isQRead.call(this);\n\n    if (!isModifiedVersion && !isQingRead) {\n        let mname = cacheKey;\n        let load = (cache.getFromMemory(mname) ?? \"-\").split(\"-\");\n        if (load[0] != \"1\" || load[1] != date) {\n            cache.putMemory(mname, \"1-\" + date);\n            return;\n        }\n        let lastCallKey = `last_call_${sourceType}_${bid}_${cid}_${para}`;\n        if (!checkClickRateLimit.call(this, lastCallKey)) {\n            return;\n        }\n    }\n\n    let commentUrl = buildCommentUrl.call(this, sourceType, bid, cid, para);\n    let title = isModifiedVersion ? getCommentSourceName(sourceType) + \"段评\" : (cache.getFromMemory(cacheKey + \"-text\") ?? getCommentSourceName(sourceType) + \"段评\");\n    startCommentBrowser.call(this, commentUrl, title);\n}\n\nfunction getComments(content, bid, cid, sourceType = 'fq', contentMd5 = null, extraParams = {}) {\n    let { java, cache, source } = this;\n    \n    if (content == null || content == undefined) {\n        return '';\n    }\n    if (typeof content !== 'string') {\n        try {\n            content = String(content);\n        } catch (e) {\n            return '';\n        }\n    }\n    \n    let apiBase = getParagraphApiUrl.call(this);\n    \n    try {\n        let lines = content\n            .replace(new RegExp('(<img[^>]*?>)\\n', 'g'), \"$1\")\n            .split(\"\\n\")\n            .filter(line => line && line.trim());\n\n        if (lines.length == 0) {\n            return wrapContentForIOS.call(this, content);\n        }\n\n        let isModifiedVersion = checkEnv.call(this);\n        let isQingRead = isQRead.call(this);\n        let isIOS = deviceType.call(this);\n\n        let apiUrl = buildParagraphUrl.call(this, apiBase, sourceType, bid, cid, contentMd5, extraParams);\n        if (!apiUrl) {\n            return wrapContentForIOS.call(this, content);\n        }\n\n        let response;\n        try {\n            response = java.ajax(apiUrl);\n        } catch (e) {\n            return wrapContentForIOS.call(this, content);\n        }\n\n        if (!response || (typeof response == 'string' && response.trim() == '')) {\n            return wrapContentForIOS.call(this, content);\n        }\n\n        let result;\n        try {\n            result = JSON.parse(response);\n        } catch (e) {\n            return wrapContentForIOS.call(this, content);\n        }\n\n        if (!result || result.code !== 0 || !result.data || !result.data.list) {\n            let msg = (result && result.msg) ? result.msg : '请求失败';\n            //java.toast(msg);\n            return wrapContentForIOS.call(this, content);\n        }\n\n        let paragraphList = result.data.list;\n        if (!Array.isArray(paragraphList) || paragraphList.length == 0) {\n            return wrapContentForIOS.call(this, content);\n        }\n        \n        let reviews = [];\n        let chapterEndData = null;\n        \n        if (sourceType == 'qd') {\n            try {\n                if (result.data.reviews && Array.isArray(result.data.reviews)) {\n                    reviews = result.data.reviews;\n                }\n            } catch (e) {\n                reviews = [];\n            }\n            \n            try {\n                let host = getServerHost.call(this);\n                let authorUrl = host + '/qd_comment?action=comments&bid=' + bid + '&cid=' + cid + '&para=1&author=1';\n                let authorResponse;\n                try {\n                    authorResponse = java.ajax(authorUrl);\n                } catch (e) {\n                    authorResponse = null;\n                }\n                \n                if (authorResponse) {\n                    let authorData;\n                    try {\n                        authorData = JSON.parse(authorResponse);\n                    } catch (e) {\n                        authorData = null;\n                    }\n                    \n                    if (authorData) {\n                        const activity = authorData?.Data?.Getchapteractivity;\n                        \n                        if (activity && activity.AuthorName) {\n                            var authorName = activity.AuthorName || \"\";\n                            var authorSay = activity.AuthorComments || \"\";\n                            var authorExpect = activity.AskMonthTicket?.AuthorExpectText || \"\";\n                            var displayText = authorSay || authorExpect || \"\";\n                            \n                            if (authorName && displayText) {\n                                authorName = authorName.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;');\n                                displayText = displayText.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;');\n                                \n                                var textLines = [];\n                                var temp = displayText;\n                                var maxChars = 30;\n                                while (temp.length > maxChars) {\n                                    textLines.push(temp.substring(0, maxChars));\n                                    temp = temp.substring(maxChars);\n                                }\n                                if (temp.length > 0) textLines.push(temp);\n                                \n                                var textHeight = textLines.length * 30;\n                                var totalHeight = 60 + textHeight;\n                                var avatarChar = authorName.charAt(0);\n                                var avatarColor = \"#FF6B6B\";\n                                \n                                var svg = '<svg viewBox=\"0 0 700 ' + totalHeight + '\" xmlns=\"http://www.w3.org/2000/svg\" style=\"display:block;margin-bottom:8px;width:100%;max-width:700px;height:auto;\">\\n';\n                                svg += '<rect x=\"0\" y=\"0\" width=\"700\" height=\"' + totalHeight + '\" fill=\"rgba(255,68,68,0.04)\" rx=\"12\" stroke=\"#FF4444\" stroke-width=\"0.3\"/>\\n';\n                                svg += '<circle cx=\"50\" cy=\"38\" r=\"22\" fill=\"' + avatarColor + '\"/>\\n';\n                                svg += '<text x=\"50\" y=\"44\" font-size=\"20\" text-anchor=\"middle\" font-weight=\"700\" fill=\"#FFFFFF\">' + avatarChar + '</text>\\n';\n                                svg += '<text x=\"86\" y=\"30\" font-size=\"17\" font-weight=\"700\" fill=\"#333333\">' + authorName + '</text>\\n';\n                                svg += '<text x=\"' + (86 + authorName.length * 17 + 6) + '\" y=\"30\" font-size=\"14\" font-weight=\"500\" fill=\"#FF4444\">作家的话</text>\\n';\n                                \n                                textLines.forEach(function(line, idx) {\n                                    svg += '<text x=\"86\" y=\"' + (60 + idx * 30) + '\" font-size=\"18\" font-weight=\"400\" fill=\"#666666\">' + line + '</text>\\n';\n                                });\n                                \n                                svg += '</svg>';\n                                \n                                var authorSvgBase64 = java.base64Encode(svg);\n                                var authorDataUrl = 'data:image/svg+xml;base64,' + authorSvgBase64 + ',{\"style\":\"FULL\"}';\n                                lines.push('<img src=\"' + authorDataUrl + '\" />');\n                            }\n                        }\n                    }\n                }\n            } catch (e) {}\n            \n            try {\n                let host = getServerHost.call(this);\n                let chapterEndUrl = host + '/paras/proxy_paragraph?bid=' + bid + '&cid=' + cid;\n                let chapterEndResponse;\n                try {\n                    chapterEndResponse = java.ajax(chapterEndUrl);\n                } catch (e) {\n                    chapterEndResponse = null;\n                }\n                \n                if (chapterEndResponse) {\n                    let chapterEndResult;\n                    try {\n                        chapterEndResult = JSON.parse(chapterEndResponse);\n                    } catch (e) {\n                        chapterEndResult = null;\n                    }\n                    \n                    if (chapterEndResult) {\n                        const endActivity = chapterEndResult?.Data?.Getchapteractivity;\n                        const endComments = chapterEndResult?.Data?.Getchapterendcomments;\n                        if (endActivity && endComments) {\n                            chapterEndData = {\n                                totalCount: endComments.TotalCount || 0,\n                                authorName: endActivity.AuthorName || '',\n                                authorExpectText: endActivity.AskMonthTicket?.AuthorExpectText || '',\n                                commentList: endComments.DataList || []\n                            };\n                        }\n                    }\n                }\n            } catch (e) {}\n        }\n        \n        let reviewsByParagraph = {};\n        try {\n            reviews.forEach(review => {\n                let paraId = review.paragraph_id;\n                if (!reviewsByParagraph[paraId]) {\n                    reviewsByParagraph[paraId] = [];\n                }\n                reviewsByParagraph[paraId].push(review);\n            });\n        } catch (e) {}\n        \n        lines = lines.map(line => {\n            if (typeof line !== 'string') {\n                try {\n                    return String(line);\n                } catch (e) {\n                    return '';\n                }\n            }\n            return line;\n        });\n        \n        let hasTitleComment = false;\n        let titleCommentData = null;\n\n        paragraphList.forEach((item, index) => {\n            let paraId = item.paragraph_id || item.paragraphId;\n            let count = item.comment_count || item.textCount || 0;\n            let hot = (item.hot == 1 || item.is_hot_comment == 1 || item.isHotComment == true);\n            if (count <= 0) return;\n\n            let lineIndex;\n            if (sourceType == 'qq') {\n                if (paraId == 0) {\n                    hasTitleComment = true;\n                    titleCommentData = item;\n                    return;\n                }\n                lineIndex = parseInt(paraId) - 1;\n            } else if (sourceType == 'qd') {\n                if (paraId == -1) {\n                    hasTitleComment = true;\n                    titleCommentData = item;\n                    return;\n                }\n                lineIndex = parseInt(paraId) - 1;\n            } else if (sourceType == 'qm') {\n                lineIndex = index;\n            } else {\n                lineIndex = sourceType == 'jj' ? parseInt(paraId) - 1 : parseInt(paraId);\n            }\n\n            if (lineIndex < 0 || lineIndex >= lines.length) return;\n            \n            if (typeof lines[lineIndex] !== 'string') return;\n            \n            if (/<img[^>]*>/i.test(lines[lineIndex])) {\n                return;\n            }\n\n            if (sourceType == 'fq') {\n                let textOnly = String(lines[lineIndex])\n                    .replace(new RegExp('<[^>]*>', 'g'), '')\n                    .replace(/&nbsp;/g, ' ')\n                    .trim();\n                if (!textOnly) {\n                    return;\n                }\n                if (!isModifiedVersion && !isQingRead) {\n                    cache.putMemory(`fq-${bid}-${cid}-${paraId}-text`, textOnly);\n                }\n            }\n\n            if (!isModifiedVersion && !isQingRead && sourceType != 'fq') {\n                let cacheKey = `${sourceType}-${bid}-${cid}-${paraId}-text`;\n                cache.putMemory(cacheKey, lines[lineIndex]);\n            }\n\n            let color = hot ? \"#f06060\" : getCommentIconColor.call(this);\n            let commentTag = createSvg.call(this, count, color, bid, cid, paraId, sourceType);\n            \n            let reviewTag = '';\n            if (sourceType == 'qd' && reviewsByParagraph[paraId]) {\n                reviewTag = createGodReviewSvg.call(this, reviewsByParagraph[paraId], bid, cid, paraId);\n            }\n            \n            if (isIOS) {\n                lines[lineIndex] += commentTag;\n                if (reviewTag) {\n                    lines[lineIndex] += '<br>' + reviewTag;\n                }\n            } else {\n                if (commentTag.startsWith('data:image')) {\n                    lines[lineIndex] += `<img src=\"${commentTag}\">`;\n                } else {\n                    lines[lineIndex] += commentTag;\n                }\n                if (reviewTag) {\n                    if (reviewTag.startsWith('data:image')) {\n                        lines[lineIndex] += '\\n' + `<img src=\"${reviewTag}\">`;\n                    } else {\n                        lines[lineIndex] += '\\n' + reviewTag;\n                    }\n                }\n            }\n        });\n\n        if (hasTitleComment && titleCommentData) {\n            let titleCount = titleCommentData.comment_count || titleCommentData.textCount || 0;\n            let titleHot = (titleCommentData.hot == 1 || titleCommentData.is_hot_comment == 1 || titleCommentData.isHotComment == true);\n            let color = titleHot ? \"#f06060\" : getCommentIconColor.call(this);\n            let titleBubble = createSvg.call(this, titleCount, color, bid, cid, 0, sourceType);\n            cache.put(bid + \"_\" + cid, titleBubble);\n        }\n\n        let resultContent = lines.join(\"\\n\");\n        if (sourceType == 'qd' && chapterEndData && chapterEndData.totalCount > 0) {\n            let chapterEndSvg = createChapterEndSvg.call(this, bid, cid, chapterEndData.totalCount, chapterEndData.authorName, chapterEndData.authorExpectText, chapterEndData.commentList);\n            resultContent += chapterEndSvg;\n        }\n\n        return wrapContentForIOS.call(this, resultContent);\n    } catch (e) {\n        return wrapContentForIOS.call(this, content);\n    }\n}\n\neval(function(p,a,c,k,e,r){e=function(c){return c.toString(36)};if('0'.replace(0,e)==0){while(c--)r[e(c)]=k[c];k=[function(e){return r[e]||e}];e=function(){return'[0-9a-n]'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\\\b'+e(c)+'\\\\b','g'),k[c]);return p}('function buildParagraphUrl(0,g,3,1,b,4){c secretKey=getSecretKey.h(i);switch(g){5\\'j\\':c 8=`${0}?6=j&9=${3}&7=${1}`;d(4.e&&4.f){8+=`&e=${4.e}&f=${4.f}`}c a=JJtoken.h(i);d(a)8+=`&a=${a}`;2 8;5\\'k\\':d(!b)2 null;2`${0}?6=k&9=${3}&7=${1}&content_md5=${b}`;5\\'l\\':2`${0}?6=l&9=${3}&7=${1}`;5\\'m\\':2`${0}?6=m&9=${3}&7=${1}`;5\\'n\\':default:2`${0}?6=n&7=${1}`}}',[],24,'apiBase|cid|return|bid|extraParams|case|source|chapter_id|jjUrl|book_id|token|contentMd5|let|if|bookid|chapterid|sourceType|call|this|jj|qm|qq|qd|fq'.split('|'),0,{}))\n\nfunction showJJCmt(bid, cid, para, date) {\n    handleCommentClick.call(this, 'jj', bid, cid, para, date, `jj-${bid}-${cid}-${para}`);\n}\n\nfunction showQDCmt(bid, cid, para, date) {\n    handleCommentClick.call(this, 'qd', bid, cid, para, date, `qd-${bid}-${cid}-${para}`);\n}\n\nfunction showCmt(bid, cid, para, date) {\n    handleCommentClick.call(this, 'fq', bid, cid, para, date, `fq-${bid}-${cid}-${para}`);\n}\n\nfunction showQmCmt(bid, cid, para, date) {\n    handleCommentClick.call(this, 'qm', bid, cid, para, date, `qm-${bid}-${cid}-${para}`);\n}\n\nfunction showQQCmt(bid, cid, para, date) {\n    handleCommentClick.call(this, 'qq', bid, cid, para, date, `qq-${bid}-${cid}-${para}`);\n}\n\nfunction JJtoken() {\n    let { java, source } = this;\n    const loginInfo = source.getLoginInfoMap();\n    const key = loginInfo['晋江登录Token'] || '';\n    if (!key) {\n        java.toast(\"无法阅读未共享的章节和订阅付费章节\");\n    }\n    return java.base64Encode(key);\n}\n\nfunction getSortKey() {\n    let { java } = this;\n    const sortKey = java.get(\"sortkey\") || '';\n    if (!sortKey) {\n        java.toast(\"请先设置排序参数\");\n    }\n    return sortKey;\n}\n\nfunction getTtsTone(sourceType) {\n    let config = getConfig.call(this);\n    if (sourceType == 'fanqie') {\n        return config.fanqie_tts_tone || \"1\";\n    } else if (sourceType == 'shuqi') {\n        return config.shuqi_tts_tone || \"yifei\";\n    }\n    return \"\";\n}\n\nfunction getBookData(bookId) {\n    let { java, source } = this;\n    let newUrl = getServerHost.call(this) + '/detail?book_id=' + bookId;\n    let response = java.ajax(newUrl);\n    let responseData = JSON.parse(response);\n    \n    if (Array.isArray(responseData.data)) {\n        return responseData.data[0];\n    } else if (responseData.data && typeof responseData.data == 'object') {\n        return responseData.data;\n    } else if (responseData.code == 0 && responseData.data) {\n        return responseData.data;\n    }\n    return null;\n}\n\nfunction syncReadingHistory(bookId) {\n    let { java, source } = this;\n    if (bookId) {\n        var sessionid = getSessionId.call(this);\n        if (sessionid && sessionid.trim() !== \"\") {\n            var syncUrl = getServerHost.call(this) + \"/update_history?book_id=\" + bookId + \"&sessionid=\" + sessionid;\n            java.ajax(syncUrl);\n        }\n    }\n}\n\nfunction buildChapterUrl(x, catalog) {\n    let { java } = this;\n    const isFanqieApp = ['番茄小说', '番茄短剧', '番茄听书', '番茄畅听'].includes(catalog.source);\n    \n    let chapterParams = {\n        cid: x.cid,\n        source: catalog.source\n    };\n    \n    if (catalog.source === '书旗听书') {\n        const itemIdMatch = x.url?.match(/[?&]?item_ids=(\\d+)/);\n        if (itemIdMatch) {\n            chapterParams.bookid = catalog.bookid;\n            chapterParams.item_ids = itemIdMatch[1];\n        }\n    }\n    \n    if (!isFanqieApp) {\n        chapterParams.url = catalog.url;\n    } else {\n        chapterParams.book_id = catalog.bookid;\n        chapterParams.item_id = x.url?.match(/item_id=(\\d+)/)?.[1] || null;\n    }\n    \n    if (['企鹅看书', 'QQ阅读', '起点'].includes(catalog.source) && x.url && typeof x.url == 'string') {\n        let cMatch = x.url.match(/chapterid=(\\d+)/);\n        if (cMatch) {\n            chapterParams.bookid = catalog.bookid;\n            chapterParams.chapterid = cMatch[1];\n        }\n    }\n    \n    if (catalog.source == '晋江') {\n        let chapterIdMatch = x.url?.match(/chapterId=(\\d+)/);\n        if (chapterIdMatch) {\n            chapterParams.novelId = catalog.bookid;\n            chapterParams.chapterId = chapterIdMatch[1];\n        }\n    }\n    \n    if (catalog.source == '半夏') {\n        let bjBidMatch = x.url?.match(/bookid=(\\d+)/);\n        let bjChapterIdMatch = x.url?.match(/chapterid=(\\d+)/);\n        let novelIdMatch = x.url?.match(/novelId=(\\d+)/);\n        let chapterIdMatch = x.url?.match(/chapterId=(\\d+)/);\n        if (bjBidMatch && bjChapterIdMatch) {\n            chapterParams.bookid = bjBidMatch[1];\n            chapterParams.chapterid = bjChapterIdMatch[1];\n        }\n        if (novelIdMatch && chapterIdMatch) {\n            chapterParams.novelId = novelIdMatch[1];\n            chapterParams.chapterId = chapterIdMatch[1];\n        }\n    }\n    \n    if (catalog.source == '七猫小说') {\n        chapterParams.qm_url = x.url;\n    }\n    \n    if (catalog.source == '七猫短剧') {\n        chapterParams.qm_id = catalog.bookid;\n    }\n    \n    if (catalog.source == '七猫听书') {\n        chapterParams.book_id = catalog.bookid;\n        let qmItemIdMatch = x.url?.match(/item_id=(\\d+)/);\n        if (qmItemIdMatch) {\n            chapterParams.item_id = qmItemIdMatch[1];\n        }\n    }\n    \n    if (catalog.source == '少年梦') {\n        let snmBidMatch = x.url?.match(/bid=(\\d+)/);\n        let snmCidMatch = x.url?.match(/cid=(\\d+)/);\n        if (snmBidMatch) chapterParams.bookid = snmBidMatch[1];\n        if (snmCidMatch) chapterParams.chapterid = snmCidMatch[1];\n    }\n    \n    let encodedParams = java.base64Encode(JSON.stringify(chapterParams));\n    \n    let commentPart = '{\"type\":\"qingci\"}';\n    \n    if (catalog.source == '七猫小说') {\n        const qmBookId = catalog.bookid;\n        const qmChapterId = x.url?.match(/item_id=(\\d+)/)?.[1] || null;\n        if (qmBookId && qmChapterId) {\n            const qmCommentUrl = `${getServerHost.call(this)}/qm_comment?book_id=${qmBookId}&item_id=${qmChapterId}&type=chapter`;\n            commentPart = `{\"type\":\"qingci\",\"js\":\"book ? result : '${qmCommentUrl}'\"}`;\n        }\n    } else if (catalog.source == '晋江' && chapterParams.novelId && chapterParams.chapterId) {\n        let jjCommentUrl = `${getServerHost.call(this)}/jj_comment?bid=${chapterParams.novelId}&cid=${chapterParams.chapterId}`;\n        commentPart = `{\"type\":\"qingci\",\"js\":\"book ? result : '${jjCommentUrl}'\"}`;\n    } else if (catalog.source == '半夏' && chapterParams.novelId && chapterParams.chapterId) {\n        let bjCommentUrl = `${getServerHost.call(this)}/jj_comment?bid=${chapterParams.novelId}&cid=${chapterParams.chapterId}`;\n        if (chapterParams.bookid && chapterParams.chapterid) {\n            bjCommentUrl += `&bookid=${chapterParams.bookid}&chapterid=${chapterParams.chapterid}`;\n        }\n        commentPart = `{\"type\":\"qingci\",\"js\":\"book ? result : '${bjCommentUrl}'\"}`;\n    } else if (isFanqieApp) {\n        const bookId = catalog.bookid;\n        const itemId = x.url?.match(/item_id=(\\d+)/)?.[1] || null;\n        if (bookId && itemId) {\n            const fanqieCommentUrl = `${getServerHost.call(this)}/idea_comment?book_id=${bookId}&item_id=${itemId}&sessionid=${getSessionId.call(this)}`;\n            commentPart = `{\"type\":\"qingci\",\"js\":\"book ? result : '${fanqieCommentUrl}'\"}`;\n        }\n    } else if (catalog.source == '起点' && chapterParams.bookid && chapterParams.chapterid) {\n        let qdCommentUrl = `${getServerHost.call(this)}/qd_comment?bid=${chapterParams.bookid}&cid=${chapterParams.chapterid}&para=benzhang`;\n        commentPart = `{\"type\":\"qingci\",\"js\":\"book ? result : '${qdCommentUrl}'\"}`;\n    }\n    \n    return `data:chapterUrl;base64,${encodedParams},${commentPart}`;\n}\n\nfunction showTabTips(catalog) {\n    var tabTips = {\n        audio: '听书',\n        video: '视频',\n        comic: '漫画'\n    };\n    if (tabTips[catalog.tab]) {\n        this.java.toast('当前为' + tabTips[catalog.tab] + '模式');\n    }\n}\n\nfunction buildSearchResult(key, sourceParam, host) {\n    let { java } = this;\n    if (key && key.length == 19 && !Number.isNaN(parseInt(key))) {\n        return handleFanqieSearch.call(this, key, host);\n    } else if (key && (key.length == 6 || key.length == 7 || key.length == 8) && !Number.isNaN(parseInt(key))) {\n        return handleJjwxcSearch.call(this, key, host);\n    } else {\n        return host + '/search?login=search&key={{key}}&page={{page}}' + sourceParam;\n    }\n}\n\nfunction handleFanqieSearch(key, host) {\n    let { java } = this;\n    var u = host + `/detail?book_id=${key}`;\n    var kdy = java.base64Encode(u);\n    var response = JSON.parse(java.ajax(u));\n    var nam = response.data.book_name || (response.data[0] && response.data[0].book_name) || '未知';\n    return host + `/details?url=${kdy}&source=番茄小说&name=${encodeURIComponent(nam)}`;\n}\n\nfunction handleJjwxcSearch(key, host) {\n    let { java } = this;\n    var jjApiUrl = `http://app-cdn.jjwxc.net/androidapi/novelbasicinfo?novelId=${key}`;\n    var jjResponse = java.ajax(jjApiUrl);\n    var jjData = JSON.parse(jjResponse);\n    var novelName = jjData.novelName || '未知';\n    var encodedUrl = java.base64Encode(jjApiUrl);\n    return host + `/details?url=${encodedUrl}&source=晋江&name=${encodeURIComponent(novelName)}`;\n}\n\nfunction encode(data) {\n    let { java } = this;\n    return java.createSymmetricCrypto(\"DES/CBC/PKCS5Padding\", String(\"KW8Dvm2N\"), String(\"1ae2c94b\")).encryptBase64(data)\n}\n\nfunction decode(data) {\n    let { java } = this;\n    try {\n        var encryptedBytes = java.base64DecodeToByteArray(data);\n        var key = \"G@tY3$jK7#mL2&pW8\";\n        var iv = \"C!eH4&sM6@wP9^zX1\";\n        var crypto = java.createSymmetricCrypto(\"AES/CBC/PKCS5Padding\", key, iv);\n        return crypto.decryptStr(encryptedBytes);\n    } catch (e) {\n        return data;\n    }\n}",
    "lastUpdateTime": 1788583765989,
    "loginUi": "[{\n        \"name\": \"邮箱\",\n        \"type\": \"text\",\n        \"action\": \"\"\n    },\n    {\n        \"name\": \"密码\",\n        \"type\": \"password\",\n        \"action\": \"\"\n    },\n    {\n        \"name\": \"⭕账号登录\",\n        \"type\": \"button\",\n        \"action\": \"login()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🔑注册书源\",\n        \"type\": \"button\",\n        \"action\": \"key()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🔘退出登录\",\n        \"type\": \"button\",\n        \"action\": \"user_logout()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🔐修改密码\",\n        \"type\": \"button\",\n        \"action\": \"password()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🔮信息查询\",\n        \"type\": \"button\",\n        \"action\": \"get_user()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"👤用户后台\",\n        \"type\": \"button\",\n        \"action\": \"user_center()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🔍聚合搜索\",\n        \"type\": \"button\",\n        \"action\": \"sou0()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🧭书源更新\",\n        \"type\": \"button\",\n        \"action\": \"version()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"☕打赏享福利\",\n        \"type\": \"button\",\n        \"action\": \"vip()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"📚书山发布页\",\n        \"type\": \"button\",\n        \"action\": \"fb()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"自定义源站\",\n        \"type\": \"text\"\n    },\n    {\n        \"name\": \"❤️段评开关\",\n        \"type\": \"button\",\n        \"action\": \"toggleParacomment('paras')\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🥽SVG大小\",\n        \"type\": \"button\",\n        \"action\": \"imagestyle()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n    \t\"name\": \"🎚服务器切换\",\n        \"type\": \"button\",\n        \"action\": \"sethost()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"♻️服务器检测\",\n        \"type\": \"button\",\n        \"action\": \"checkCurrentServer()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"👨‍🦱男 频\",\n        \"type\": \"button\",\n        \"action\": \"boy()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"👩‍🦰女 频\",\n        \"type\": \"button\",\n        \"action\": \"girl()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n                \"name\": \"🍅番茄登录\",\n        \"type\": \"button\",\n        \"action\": \"fq_login()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"❌番茄退出\",\n        \"type\": \"button\",\n        \"action\": \"logout()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🍅记录同步\",\n        \"type\": \"button\",\n        \"action\": \"toggleBookSync()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🍅发现排序\",\n        \"type\": \"button\",\n        \"action\": \"SortFilter()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🎧 TTS音色\",\n        \"type\": \"button\",\n        \"action\": \"TTSSelector()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n     {\n       \"name\": \"⚡TXT下载开关\",\n       \"type\": \"button\",\n       \"action\": \"toggleFqdown('fqdown')\",\n       \"style\": {\n           \"layout_flexGrow\": 1,\n           \"layout_flexBasisPercent\": 0.4\n        }\n    },\n   {\n        \"name\": \"↓   切换/查询当前模式   ↓\",\n        \"type\": \"button\",\n        \"action\": \"get_cx()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 1\n        }\n    },\n    {\n        \"name\": \"📖小说模式\",\n        \"type\": \"button\",\n        \"action\": \"type1()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🎧听书模式\",\n        \"type\": \"button\",\n        \"action\": \"type2()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🏞️漫画模式\",\n        \"type\": \"button\",\n        \"action\": \"type3()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"▶️视频模式\",\n        \"type\": \"button\",\n        \"action\": \"type4()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n\n        \"name\": \"↓   专  属VIP源   站   ↓\",\n        \"type\": \"button\",\n        \"action\": \"\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 1\n        }\n    },\n    {\n        \"name\": \"🐧QQ阅读\",\n        \"type\": \"button\",\n        \"action\": \"sou51()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🐧企鹅看书\",\n        \"type\": \"button\",\n        \"action\": \"sou8()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"📓晋江文学\",\n        \"type\": \"button\",\n        \"action\": \"sou55()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n       \"name\": \"♟️书旗文学\",\n        \"type\": \"button\",\n        \"action\": \"sou9()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🍻半夏中文❇️\",\n        \"type\": \"button\",\n        \"action\": \"sou11()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🌤️69书吧com\",\n        \"type\": \"button\",\n        \"action\": \"sou12()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"📖全本小说\",\n        \"type\": \"button\",\n        \"action\": \"sou42()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🪷书耽网\",\n        \"type\": \"button\",\n        \"action\": \"sou52()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🛸得奇小说\",\n        \"type\": \"button\",\n        \"action\": \"sou49()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🛟万相书城\",\n        \"type\": \"button\",\n        \"action\": \"sou48()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🏔台湾小说\",\n        \"type\": \"button\",\n        \"action\": \"sou50()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n    \t \"name\": \"🌧云图有声\",\n        \"type\": \"button\",\n        \"action\": \"sou53()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n\n        \"name\": \"📻书音FM\",\n        \"type\": \"button\",\n        \"action\": \"sou40()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🎧喜马拉雅\",\n        \"type\": \"button\",\n        \"action\": \"sou47()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"↓   免   费   源   站   ↓\",\n        \"type\": \"button\",\n        \"action\": \"\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 1\n        }\n    },\n    {\n        \"name\": \"🍅番茄小说\",\n        \"type\": \"button\",\n        \"action\": \"sou1()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🍅番茄听书[AI音色]\",\n        \"type\": \"button\",\n        \"action\": \"sou2()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🎧番茄畅听\",\n        \"type\": \"button\",\n        \"action\": \"sou3()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🍅番茄漫画\",\n        \"type\": \"button\",\n        \"action\": \"sou4()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🍅番茄短剧\",\n        \"type\": \"button\",\n        \"action\": \"sou5()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \t\"name\": \"🦉猫眼看书\",\n        \"type\": \"button\",\n        \"action\": \"sou21()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🐱七猫小说\",\n        \"type\": \"button\",\n        \"action\": \"sou6()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🐱七猫短剧\",\n        \"type\": \"button\",\n        \"action\": \"sou33()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"📆二三中文\",\n        \"type\": \"button\",\n        \"action\": \"sou7()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🍰淘小说\",\n        \"type\": \"button\",\n        \"action\": \"sou24()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🍒追书神器\",\n        \"type\": \"button\",\n        \"action\": \"sou19()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🍋得间小说\",\n        \"type\": \"button\",\n        \"action\": \"sou13()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🥨爱下电子书\",\n        \"type\": \"button\",\n        \"action\": \"sou16()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🌾小米阅读\",\n        \"type\": \"button\",\n        \"action\": \"sou20()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🍭米读小说\",\n        \"type\": \"button\",\n        \"action\": \"sou18()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🎊疯读小说\",\n        \"type\": \"button\",\n        \"action\": \"sou23()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"⚖️圣武书屋\",\n        \"type\": \"button\",\n        \"action\": \"sou22()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🍂知乎盐选\",\n        \"type\": \"button\",\n        \"action\": \"sou14()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🐾百度小说\",\n        \"type\": \"button\",\n        \"action\": \"sou36()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🌊酷我小说\",\n        \"type\": \"button\",\n        \"action\": \"sou37()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🐰思兔阅读\",\n        \"type\": \"button\",\n        \"action\": \"sou25()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🍥包子漫画\",\n        \"type\": \"button\",\n        \"action\": \"sou29()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"name\": \"🌝全面漫画\",\n        \"type\": \"button\",\n        \"action\": \"sou39()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n    \"name\": \"段评图标颜色\",\n    \"type\": \"text\"\n    },\n   {\n    \"name\": \"番茄登录Token\",\n    \"type\": \"text\"\n   }, \n  {\n    \"name\": \"晋江登录Token\",\n    \"type\": \"password\"\n   },\n   {\n    \"name\": \"🗑️清理缓存\",\n    \"type\": \"button\",\n    \"action\": \"cleanCache()\",\n    \"style\": {\n        \"layout_flexGrow\": 1,\n        \"layout_flexBasisPercent\": 0.45\n    }\n   }, \n   {\n    \"name\": \"🔄 强制刷新\",\n    \"type\": \"button\",\n    \"action\": \"ChapterRefresh()\",\n    \"style\": {\n        \"layout_flexGrow\": 1,\n        \"layout_flexBasisPercent\": 0.45\n    }\n   }, \n  {\n    \"name\": \"自定义气泡SVG\",\n    \"type\": \"text\",\n    \"style\": {\n        \"layout_flexGrow\": 1,\n        \"layout_flexBasisPercent\": 1\n    }\n   },  \n  {\n    \"name\": \"神评文字颜色\",\n    \"type\": \"text\",\n    \"style\": {\n        \"layout_flexGrow\": 1,\n        \"layout_flexBasisPercent\": 0.45\n    }\n}, {\n    \"name\": \"神评边框颜色\",\n    \"type\": \"text\",\n    \"style\": {\n        \"layout_flexGrow\": 1,\n        \"layout_flexBasisPercent\": 0.45\n    }\n}, {\n    \"name\": \"下面设置仅在阅读Sigma生效\",\n    \"type\": \"button\",\n    \"action\": \"\",\n    \"style\": {\n        \"layout_flexGrow\": 1,\n        \"layout_flexBasisPercent\": 1\n    }\n}, {\n    \"name\": \"📐段评高度%\",\n    \"type\": \"text\",\n    \"style\": {\n        \"layout_flexGrow\": 1,\n        \"layout_flexBasisPercent\": 1\n    }\n}, {\n    \"name\": \"📐段评圆角，填0-50之间\",\n    \"type\": \"text\",\n    \"style\": {\n        \"layout_flexGrow\": 1,\n        \"layout_flexBasisPercent\": 1\n    }\n}]",
    "loginUrl": "//请勿修改版本号\nconst localVersion = \"5.48\";\n\nvar sourceList = [\n    {n:\"sou0\",v:null,m:\"🔍聚合搜索\"},\n    {n:\"sou1\",v:\"番茄小说\",m:\"番茄小说\"},\n    {n:\"sou2\",v:\"番茄听书\",m:\"番茄听书\"},\n    {n:\"sou3\",v:\"番茄畅听\",m:\"番茄畅听\"},\n    {n:\"sou4\",v:\"番茄漫画\",m:\"番茄漫画\"},\n    {n:\"sou5\",v:\"番茄短剧\",m:\"番茄短剧\"},\n    {n:\"sou6\",v:\"七猫小说\",m:\"🐱七猫小说\"},\n    {n:\"sou7\",v:\"二三中文\",m:\"💫二三中文\"},\n    {n:\"sou8\",v:\"企鹅看书\",m:\"🐧企鹅看书\"},\n    {n:\"sou9\",v:\"书旗\",m:\"♟️书旗\"},\n    {n:\"sou10\",v:\"60看书\",m:\"60看书\"},\n    {n:\"sou11\",v:\"半夏\",m:\"半夏小说\"},\n    {n:\"sou12\",v:\"69书吧\",m:\"69书吧com\"},\n    {n:\"sou13\",v:\"得间\",m:\"得间\"},\n    {n:\"sou14\",v:\"知乎\",m:\"知乎盐选\"},\n    {n:\"sou15\",v:\"茶马\",m:\"茶马小说\"},\n    {n:\"sou16\",v:\"爱下电子书\",m:\"爱下电子书\"},\n    {n:\"sou17\",v:\"笔趣阁\",m:\"笔趣阁22\"},\n    {n:\"sou18\",v:\"米读\",m:\"米读\"},\n    {n:\"sou19\",v:\"追书神器\",m:\"追书神器\"},\n    {n:\"sou20\",v:\"小米阅读\",m:\"小米阅读\"},\n    {n:\"sou21\",v:\"猫眼看书\",m:\"猫眼看书\"},\n    {n:\"sou22\",v:\"圣武书屋\",g:\"girl\",m:\"圣武书屋\"},\n    {n:\"sou23\",v:\"疯读\",m:\"疯读小说\"},\n    {n:\"sou24\",v:\"淘小说\",m:\"淘小说\"},\n    {n:\"sou25\",v:\"思兔\",m:\"思兔阅读\"},\n    {n:\"sou26\",v:\"甜梦文库\",g:\"girl\",m:\"甜梦文库\"},\n    {n:\"sou27\",v:\"三七轻小说\",m:\"三七轻小说\"},\n    {n:\"sou28\",v:\"歪瑞古德\",m:\"歪瑞古德\"},\n    {n:\"sou29\",v:\"包子漫画\",m:\"包子漫画\"},\n    {n:\"sou30\",v:\"西瓜\",m:\"🍉西瓜小说\"},        \n    {n:\"sou31\",v:\"速读谷\",m:\"速读谷\"},\n    {n:\"sou32\",v:\"919\",m:\"919言情\"},\n    {n:\"sou33\",v:\"七猫短剧\",m:\"🐱七猫短剧\"},\n    {n:\"sou34\",v:\"69书吧co\",m:\"69书吧co\"},\n    {n:\"sou35\",v:\"笔下小说\",m:\"笔下小说\"},\n    {n:\"sou36\",v:\"百度\",m:\"百度小说\"},\n    {n:\"sou37\",v:\"酷我\",m:\"酷我小说\"},\n    {n:\"sou38\",v:\"笔趣阁78\",m:\"笔趣阁78\"},\n    {n:\"sou39\",v:\"全面漫画\",m:\"全面漫画\"},\n    {n:\"sou40\",v:\"书音\",m:\"书音FM\"},\n    {n:\"sou41\",v:\"云端\",m:\"云端书库\"},\n    {n:\"sou42\",v:\"全本\",m:\"全本小说\"},\n    {n:\"sou43\",v:\"红牛小说\",m:\"红牛小说\"},\n    {n:\"sou44\",v:\"3a中文\",m:\"3A中文\"},\n    {n:\"sou45\",v:\"萝卜\",m:\"萝卜小说\"},\n    {n:\"sou46\",v:\"精品\",m:\"精品文学\"},\n    {n:\"sou47\",v:\"喜马拉雅\",m:\"喜马拉雅\"},\n    {n:\"sou48\",v:\"万相书城\",m:\"万相书城\"},\n    {n:\"sou49\",v:\"得奇\",m:\"得奇小说\"},\n    {n:\"sou50\",v:\"台湾\",m:\"台湾小说\"},\n    {n:\"sou51\",v:\"QQ阅读\",m:\"🐧QQ阅读\"},\n    {n:\"sou52\",v:\"书耽网\",m:\"书耽网\"},\n    {n:\"sou53\",v:\"云图有声\",m:\"云图有声\"},\n    {n:\"sou54\",v:\"番薯小说\",m:\"番薯小说\"},\n    {n:\"sou55\",v:\"晋江\",m:\"晋江文学\"},\n    {n:\"type1\",v:\"小说\",m:\"小说模式\"},\n    {n:\"type2\",v:\"听书\",m:\"听书模式\"},\n    {n:\"type3\",v:\"漫画\",m:\"漫画模式\"},\n    {n:\"type4\",v:\"视频\",m:\"视频模式\"}\n];\n\nfunction login(flag) {\n    const host = getServerHost();\n    \n    if (flag == undefined) {\n        const loginInfo = source.getLoginInfoMap();\n        var email = loginInfo['邮箱'];\n        var password = loginInfo['密码'];\n    } else {\n        source.putLoginInfo(JSON.stringify(result));\n        var email = result['邮箱'];\n        var password = result['密码'];\n    }\n    \n    if (!email || !password) {\n        java.toast(\"\\n❌ 请先填写账号和密码并点击✓保存后登录\");\n        return;\n    }\n    \n    java.toast(\"正在登录...\");\n    const url = host + '/login';\n    const body = \"email=\" + encodeURIComponent(email) + \"&password=\" + encodeURIComponent(password);\n    \n    try {\n        const response = java.ajax(url + \",\" + JSON.stringify({\n            method: \"POST\",\n            body: body,\n            timeout: 10000\n        }));\n        \n        const data = JSON.parse(response);\n        \n        if (data.code == 200) {\n            const user = data.data.user;\n            const deviceInfo = data.data.device || {};\n            \n            source.putLoginHeader(user.api_key);\n            \n            const nickname = user.nickname || \"用户\";\n            const maskedEmail = email.includes('@') ? \n                email.substring(0, 3) + \"****\" + email.substring(email.indexOf('@')) : \n                email;\n            const memberStatus = (user.is_member || false) ? \"👑VIP会员\" : \"普通会员\";\n            const welcomeMsg = (user.is_member || false) ? \"欢迎回来，👑尊贵VIP会员\" : \"欢迎回来\";\n            \n            const onlineCount = deviceInfo.online_count || 0;\n            const deviceLimit = deviceInfo.device_limit || 1;\n            const totalCount = deviceInfo.total_count || 0;\n            \n            var deviceStatusText = \"\";\n            if (onlineCount >= deviceLimit && totalCount > 0) {\n                deviceStatusText = \"⚠️ 设备已满（\" + onlineCount + \"/\" + deviceLimit + \"）\\n新设备登录将挤掉旧设备\";\n            } else if (onlineCount > 0) {\n                deviceStatusText = \"📱 在线设备：\" + onlineCount + \"/\" + deviceLimit;\n            } else {\n                deviceStatusText = \"📱 当前无其他设备在线\";\n            }\n            \n            function maskDeviceId(deviceId) {\n                if (!deviceId || deviceId.length <= 8) return deviceId || '未知';\n                return deviceId.substring(0, 4) + \"****\" + deviceId.substring(deviceId.length - 4);\n            }\n            \n            function maskIp(ip) {\n                if (!ip) return '';\n                if (ip.indexOf('.') !== -1 && ip.indexOf(':') == -1) {\n                    var parts = ip.split('.');\n                    if (parts.length == 4) return parts[0] + '.' + parts[1] + '.*.*';\n                }\n                if (ip.indexOf(':') !== -1) {\n                    var parts = ip.split(':');\n                    var validParts = [];\n                    for (var i = 0; i < parts.length; i++) {\n                        if (parts[i] !== '') validParts.push(parts[i]);\n                    }\n                    if (validParts.length >= 4) return validParts.slice(0, 4).join(':') + ':*:*';\n                }\n                return ip;\n            }\n            \n            var deviceListText = \"\";\n            var deviceList = (deviceInfo && deviceInfo.list) ? deviceInfo.list : [];\n            if (deviceList && deviceList.length > 0) {\n                deviceListText = \"\\n── 设备列表 ──\";\n                for (var i = 0; i < deviceList.length; i++) {\n                    var dev = deviceList[i];\n                    var statusIcon = dev.is_online ? '🟢' : '⚫';\n                    var maskedId = maskDeviceId(dev.device_id);\n                    var maskedIp = maskIp(dev.ip_address);\n                    var ipText = maskedIp ? ' | ' + maskedIp : '';\n                    deviceListText += \"\\n\" + statusIcon + \" \" + maskedId + ipText;\n                }\n            }\n            \n            java.toast(\n                \"\\n───────────────\\n\" +\n                \"🌟 \" + welcomeMsg + \" 🌟\\n\" +\n                \"───────────────\\n\" +\n                \"昵称：\" + nickname + \"\\n\" +\n                \"邮箱：\" + maskedEmail + \"\\n\" +\n                \"状态：\" + memberStatus + \"\\n\" +\n                \"───────────────\\n\" +\n                deviceStatusText +\n                deviceListText + \"\\n\" +\n                \"───────────────\"\n            );\n        } else {\n            java.toast(\n                \"\\n───────────────\\n\" +\n                \"❌ 登录失败 ❌\\n\" +\n                \"───────────────\\n\" +\n                \"错误代码：\" + (data.code || \"未知\") + \"\\n\" +\n                \"错误信息：\" + (data.message || \"未知错误\") + \"\\n\" +\n                \"───────────────\"\n            );\n        }\n        \n    } catch (e) {\n        java.toast(\n            \"\\n───────────────\\n\" +\n            \"❌ 网络错误 ❌\\n\" +\n            \"───────────────\\n\" +\n            \"连接服务器失败\\n\" +\n            \"请检查网络连接\\n\" +\n            \"请切换服务器尝试\\n\" +\n            \"───────────────\"\n        );\n    }\n}\n\nfunction user_logout() {\n    let hadLogin = false;\n    \n    if (source.getLoginHeader() && String(source.getLoginHeader()).trim().length > 0) {\n        hadLogin = true;\n    }\n    \n    try {\n        var apiUrl = getServerHost() + '/api/logout';\n        var response = java.ajax(apiUrl + \",\" + JSON.stringify({\n            method: \"POST\",\n            headers: {\n                \"Content-Type\": \"application/json\"\n            },\n            timeout: 5000\n        }));\n    } catch (e) {}\n    \n    try {\n        cookie.removeCookie(getServerHost());\n    } catch (e) {}\n    \n    source.putLoginHeader(\"\");\n    \n    if (!source.getLoginHeader() || String(source.getLoginHeader()).trim().length == 0) {\n        java.toast(hadLogin ? \"\\n❗ 已成功退出登录\" : \"\\nℹ️ 当前未登录状态\");\n    }\n}\n\nfunction hasValidCustomSource() {\n    const value = (source.getLoginInfoMap())['自定义源站'];\n    return !(value == null || value == undefined || value == \"\" || String(value).trim() == \"\");\n}\n\nfunction showCustomSourceAlert() {\n    const customSource = (source.getLoginInfoMap())['自定义源站'];\n    java.toast(\n        \"\\n⚠️ 自定义源站配置提醒 ⚠️\\n\" +\n        \"──────────────────\\n\" +\n        \"检测到已设置自定义源站: \\n✨\" +\n        \"【\" + (customSource || \"\") + \"】✨\\n\" +\n        \"──────────────────\\n\" +\n        \"请前往「书源登录」清除配置\\n\" +\n        \"才能使指定源站切换生效\"\n    );\n}\n\nfunction updateConfig(key, value, message, gender) {\n    if (key == \"source\" && hasValidCustomSource()) {\n        showCustomSourceAlert();\n        return;\n    }\n    \n    if (gender !== undefined) {\n        setConfigs.call(this, {[key]: value, gender: gender});\n    } else {\n        setConfig.call(this, key, value);\n    }\n    java.toast(message || \"设置已更新\");\n}\n\nfunction get_user() {\n    try {\n        var apiKey = getSecretKey();\n        if (!apiKey) {\n            java.toast(\"❌ 未获取到密钥，请先登录\");\n            return;\n        }\n\n        var timestamp = Math.floor(Date.now() / 1000);\n        var apiUrl = getServerHost() + '/login';\n        \n        var postData = {\n            key: apiKey,\n            timestamp: timestamp\n        };\n        \n        var response = java.ajax(apiUrl + \",\" + JSON.stringify({\n            method: \"POST\",\n            body: JSON.stringify(postData),\n            headers: {\n                \"Content-Type\": \"application/json\"\n            },\n            timeout: 10000\n        }));\n        \n        var data = JSON.parse(response);\n        \n        if (data.data.user) {\n            var userInfo = data.data.user;\n            var deviceInfo = data.data.device || {};\n            \n            var statusDisplay = \"\";\n            switch(userInfo.status) {\n                case \"正常\":\n                    statusDisplay = \"✅ 正常\";\n                    break;\n                case \"会员\":\n                    statusDisplay = \"👑VIP会员\";\n                    break;\n                case \"封禁\":\n                    statusDisplay = \"🚫 封禁\";\n                    break;\n                default:\n                    statusDisplay = userInfo.status || \"正常\";\n            }\n            \n            var email = userInfo.email || \"未绑定\";\n            var maskedEmail = \"未绑定\";\n            if (email !== \"未绑定\" && email.includes(\"@\")) {\n                var parts = email.split(\"@\");\n                var username = parts[0];\n                var domain = parts[1];\n                if (username.length > 2) {\n                    maskedEmail = username.substring(0, 2) + \"****@\" + domain;\n                } else {\n                    maskedEmail = username + \"****@\" + domain;\n                }\n            }\n            \n            var nickname = userInfo.nickname || \"未设置\";\n            if (nickname == \"未设置\") {\n                nickname = \"👤 \" + nickname;\n            } else {\n                nickname = \"👤 \" + nickname;\n            }\n            \n            // 设备信息处理\n            var onlineCount = deviceInfo.online_count || 0;\n            var deviceLimit = deviceInfo.device_limit || 1;\n            var totalCount = deviceInfo.total_count || 0;\n            \n            var deviceStatusText = \"\";\n            if (onlineCount >= deviceLimit && totalCount > 0) {\n                deviceStatusText = \"⚠️ 设备已满（\" + onlineCount + \"/\" + deviceLimit + \"）\";\n            } else if (onlineCount > 0) {\n                deviceStatusText = \"📱 在线设备：\" + onlineCount + \"/\" + deviceLimit;\n            } else {\n                deviceStatusText = \"📱 当前无设备在线\";\n            }\n            \n            function maskDeviceId(deviceId) {\n                if (!deviceId || deviceId.length <= 8) return deviceId || '未知';\n                return deviceId.substring(0, 4) + \"****\" + deviceId.substring(deviceId.length - 4);\n            }\n            \n            function maskIp(ip) {\n                if (!ip) return '';\n                if (ip.indexOf('.') !== -1 && ip.indexOf(':') == -1) {\n                    var parts = ip.split('.');\n                    if (parts.length == 4) return parts[0] + '.' + parts[1] + '.*.*';\n                }\n                if (ip.indexOf(':') !== -1) {\n                    var parts = ip.split(':');\n                    var validParts = [];\n                    for (var i = 0; i < parts.length; i++) {\n                        if (parts[i] !== '') validParts.push(parts[i]);\n                    }\n                    if (validParts.length >= 4) return validParts.slice(0, 4).join(':') + ':*:*';\n                }\n                return ip;\n            }\n            \n            function formatTime(timeStr) {\n                if (!timeStr || timeStr == \"从未使用\") return \"未知\";\n                return timeStr;\n            }\n            \n            var deviceListText = \"\";\n            var deviceList = (deviceInfo && deviceInfo.list) ? deviceInfo.list : [];\n            if (deviceList && deviceList.length > 0) {\n                deviceListText = \"\\n── 设备列表 ──\";\n                for (var i = 0; i < deviceList.length; i++) {\n                    var dev = deviceList[i];\n                    var statusIcon = dev.is_online ? '🟢' : '⚫';\n                    var maskedId = maskDeviceId(dev.device_id);\n                    var maskedIp = maskIp(dev.ip_address);\n                    var deviceName = dev.device_name || '未知设备';\n                    var trustedIcon = dev.is_trusted ? ' 🔒' : '';\n                    var lastSeen = dev.last_seen || '未知';\n                    \n                    deviceListText += \"\\n\" + statusIcon + \" \" + maskedId + trustedIcon;\n                    deviceListText += \"\\n   📱 \" + deviceName + \" | \" + (maskedIp || '未知IP');\n                    deviceListText += \"\\n   ⏰ \" + lastSeen;\n                    if (i < deviceList.length - 1) {\n                        deviceListText += \"\\n\";\n                    }\n                }\n            } else {\n                deviceListText = \"\\n── 设备列表 ──\\n暂无设备记录\";\n            }\n            \n            var displayContent = \n                \"\\n────────────\\n\" +\n                \"📊 用 户 信 息 📊\\n\" +\n                \"────────────\\n\" +\n                nickname + \"\\n\" +\n                \"────────────\\n\" +\n                \"📧 绑定邮箱\\n\" + maskedEmail + \"\\n\" +\n                \"────────────\\n\" +\n                \"📊 累计阅读\\n\" + (userInfo.total_usage || 0) + \" 次\\n\" +\n                \"────────────\\n\" +\n                \"📈 今日阅读\\n\" + (userInfo.today_usage || 0) + \" 次\\n\" +\n                \"────────────\\n\" +\n                \"🔄 账户状态\\n\" + statusDisplay + \"\\n\" +\n                \"────────────\\n\" +\n                \"📅 注册时间\\n\" + (userInfo.created_at || \"未知\") + \"\\n\" +\n                \"────────────\\n\" +\n                \"🖥️ 设备管理\\n\" +\n                \"总数：\" + totalCount + \" | \" + deviceStatusText + \"\\n\" +\n                (deviceInfo.current_device_online ? \"🟢 当前设备在线\\n\" : \"\") +\n                (deviceInfo.is_kicked ? \"⚠️ 设备已被踢出：\" + deviceInfo.kicked_reason + \"\\n\" : \"\") +\n                deviceListText + \"\\n\";\n            \n            if (userInfo.is_banned) {\n                displayContent += \"────────────\\n\" +\n                                \"🚫 封禁信息\\n\" + (userInfo.banned_info || \"已封禁\") + \"\\n\";\n            }\n            \n            if (userInfo.last_used && userInfo.last_used !== \"从未使用\") {\n                displayContent += \"────────────\\n\" +\n                                \"⏰ 最后使用\\n\" + userInfo.last_used + \"\\n\";\n            }\n            \n            if (userInfo.is_member) {\n                displayContent += \"────────────\\n\" +\n                                \"💎 会员状态\\n👑 尊贵VIP会员\\n\";\n            }\n            \n            displayContent += \"────────────\\n\" +\n                            \"✨ 查询完成\";\n            \n            java.longToast(displayContent);\n            \n        } else {\n            var errorMsg = data.message || \"未知错误\";\n            java.longToast(\"❌ 查询失败：\" + errorMsg);\n        }\n        \n    } catch (e) {\n        java.longToast(\"❌ 网络连接异常，请稍后重试\");\n    }\n}\n\nfunction get_cx() {\n    try {\n        var currentConfig = getConfig.call(this);\n        var currentHost = currentConfig.host || hosts[0];\n        var currentSource = (!currentConfig.source || currentConfig.source == null) ? \n            \"☁️ 聚合搜索 ☁️\" : \n            (sourceList.find(item => item.v == currentConfig.source)?.m || currentConfig.source);\n        \n        var currentGender = currentConfig.gender == \"boy\" ? \" 男🧸频 \" : \n            (currentConfig.gender == \"girl\" ? \" 女🎀频 \" : \" 未设置 \");\n        \n        var currentTone = currentConfig.sz ? \"音色\" + data[parseInt(currentConfig.sz) || 1][0] : \"默认音色\";\n        \n        var customSource = (source.getLoginInfoMap())['自定义源站'] || \"未设置\"; \n        var customSourceStatus = hasValidCustomSource() ? \"🔗 \" + customSource : \"当前未设置，示例：米读,书旗\";\n        \n        var username = \"未登录\";\n        try {\n            var cookie_ = String(cookie.getKey(\"fanqienovel.com\", \"sessionid\")) || \n                         (source.getLoginInfoMap())['番茄登录Token'];\n            if (cookie_) {\n                var userInfo = JSON.parse(java.ajax(\"https://fanqienovel.com/api/user/info/v2,\" + JSON.stringify({\n                    method: \"GET\", \n                    headers: { \"Cookie\": \"sessionid=\" + cookie_ },\n                    timeout: 5000\n                })));\n                username = userInfo.data?.name || \"已登录(未获取到用户名)\";\n            }\n        } catch (e) {\n            username = \"登录状态检查失败\";\n        }\n\n        var message = \n            \"\\n───────────────\\n\" +\n            \"☑️  配  置  状  态 ☑️\\n\" +\n            \"───────────────\\n\" +\n            \"🔘 服  务  器 🔘\\n\" + currentHost + \"\\n\" +\n            \"───────────────\\n\" +\n            \"🌋 书  源 🌋\\n\" + currentSource + \"\\n\" +\n            \"───────────────\\n\" +\n            \"🏔️ 偏  好 🏔️\\n\" + currentGender + \"\\n\" +\n            \"───────────────\\n\" +\n            \"🎧 AI 音 色 🎧\\n\" + currentTone + \"\\n\" +\n            \"───────────────\\n\" +\n            \"❇️ 自 定 义 源 ❇️\\n\" + customSourceStatus + \"\\n\" +\n            \"───────────────\\n\" +\n            \"🍅 番 茄 账 号 🍅\\n\" + username + \"\\n\" +\n            \"───────────────\\n\" +\n            \"\\n✨ 提示：点击按钮切换配置\";\n            \n        java.longToast(message);\n    } catch(e) {\n        setConfig.call(this, 'host', getHosts[0]);\n        java.toast(\"⚠️ 配置初始化完成，请重试\");\n    }\n}\n\nthis.sethost = function() {\n    try {\n        var currentHost = getConfig.call(this).host || getHosts()[0];\n        var currentIndex = getHosts().indexOf(currentHost);\n        var newIndex = (currentIndex + 1) % getHosts().length;\n        var newHost = getHosts()[newIndex];\n        setConfig.call(this, 'host', newHost);\n        java.toast(\"\\n切换到：\\n\" + newHost + \"\");\n    } catch(e) {\n        setConfig.call(this, 'host', getHosts()[0]);\n        java.toast(\"\\n已初始化：\" + getHosts()[0]);\n    }\n};\n\nfor (var i = 0; i < sourceList.length; i++) {\n    (function() {\n        var s = sourceList[i];\n        this[s.n] = function() {\n            if (hasValidCustomSource()) {\n                showCustomSourceAlert();\n                return;\n            } if (s.g) {\n                updateConfig(\"source\", s.v, \"\\n已切换\" + (s.v ? '到❇️' : '') + s.m +\"❇️\\n刷新发现页生效\", s.g);\n            } else {\n                updateConfig(\"source\", s.v, \"\\n已切换\" + (s.v ? '到❇️' : '') + s.m +\"❇️\\n刷新发现页生效\");\n            }\n        };\n    }).call(this);\n}\n\nfunction Map(e) {\n    if (e == \"source\" && hasValidCustomSource()) {\n        showCustomSourceAlert();\n        return (source.getLoginInfoMap())['自定义源站'];\n    }\n    var infomap = source.getLoginInfoMap();\n    const value = infomap[e];\n    if (!value) {\n        java.longToast(\"请先登录❗\");\n    }\n    return value;\n}\n\nfunction checkCurrentServer() {\n    try {\n        var currentHost = getServerHost() +'/detection';\n        java.longToast(`\\n\\n♻️正在检测当前服务器：${currentHost}\\n请稍等~`);\n        let date1 = new Date().getTime();\n        let html = java.ajax(currentHost);\n        let date2 = new Date().getTime();\n        let t = date2 - date1;\n        let c = String(html).indexOf('书山聚合');\n        let time = t / 1000 + 's';\n        let logTime = '【' + currentHost + '】\\n┋┋\\n' + '解析时间：' + time;\n        \n        if (c == -1 || t > 5000) {\n            java.longToast('\\n💔【访问失败提示】\\n' + '┏┅━┅━┅━┅━┅┅━┅━┅┓\\n┋┋\\n' + logTime + '\\n┋┋\\n♣️当前接口无法访问(可能被墙)♣️\\n┋┋\\n请切换其他接口/切换网络环境\\n┋┋' + '\\n┗┅━┅━┅━┅━┅┅━┅━┅┛');\n        } else if (t < 1000) {\n            java.longToast('\\n💖【网络环境优良】\\n' + '┏┅━┅━┅━┅━┅┅━┅━┅┓\\n┋┋\\n' + logTime + '\\n┋┋\\n❤️延迟低，推荐使用此接口❤️\\n┋┋\\n网络环境优良，请继续保持状态\\n┋┋' + '\\n┗┅━┅━┅━┅━┅┅━┅━┅┛');\n        } else if (t >= 1000 && t < 2000) {\n            java.longToast('\\n💛【网络环境一般】\\n' + '┏┅━┅━┅━┅━┅┅━┅━┅┓\\n┋┋\\n' + logTime + '\\n┋┋\\n♦️延迟一般，勉强可使用♦️\\n┋┋\\n请切换其他接口或切换网络环境\\n┋┋' + '\\n┗┅━┅━┅━┅━┅┅━┅━┅┛');\n        } else if (t >= 2000 && t < 5000) {\n            java.longToast('\\n💔【网络环境堪忧】\\n' + '┏┅━┅━┅━┅━┅┅━┅━┅┓\\n┋┋\\n' + logTime + '\\n┋┋\\n♠延迟过高，不建议使用♠\\n┋┋\\n请切换其他接口或切换网络环境\\n┋┋' + '\\n┗┅━┅━┅━┅━┅┅━┅━┅┛');\n        }\n    } catch(e) {\n        java.longToast('\\n❌【服务器检测失败】\\n' + '┏┅━┅━┅━┅━┅┅━┅━┅┓\\n┋┋\\n检测过程中发生错误\\n┋┋\\n请检查网络连接或服务器状态\\n┋┋' + '\\n┗┅━┅━┅━┅━┅┅━┅━┅┛');\n    }\n}\n\nfunction fq_login() {\n    try { \tjava.startBrowserAwait(\"https://fanqienovel.com/main/writer/login\", \"登录\");\n    } catch (e) {\n        java.toast(e);\n    }\n    try {\n        cookie.removeCookie(\"snssdk.com\");\n    } catch (e) {}\n    \n    let cookieHeader = String(cookie.getCookie('fanqienovel.com'));\n    \n    const match = cookieHeader.match(/sessionid=([^;]+)/);\n    java.toast(match);\n    let sessionId = match ? match[1] : null;\n\n    let cookieString = sessionId ? \"sessionid=\" + sessionId : source.getLoginInfoMap()['番茄登录Token'] || \"\";\n    java.toast(cookieString);\n    let user;\n    try {\n        user = JSON.parse(java.ajax(\"https://fanqienovel.com/api/user/info/v2,\" + JSON.stringify({\n            method: \"GET\",\n            headers: { \"Cookie\": cookieString }\n        }))).data.name;\n    } catch (e) { \n        java.log(e); \n    }\n    \n    if (!cookieString || cookieString == \"sessionid=\" || !user) {\n        java.toast(\"未获取到登录凭据，登录失败\");\n        return false;\n    }\n    \n    java.toast(\"\\n\\n欢迎 \" + user + \"\\n登录成功！\");\n    return true;\n}\n\nfunction logout() {\n    cookie.removeCookie(\"fanqienovel.com\");\n    cookie.removeCookie(\"snssdk.com\");\n    const manualToken = (source.getLoginInfoMap())['番茄登录Token'];\n    \n    const hasValidToken = manualToken && String(manualToken).trim().length > 0;\n    \n    if (hasValidToken) {\n        java.toast(\"请手动移除填写的Token\");\n    } else {\n        java.toast(\"退出登录成功\");\n    }\n}\n\nfunction imagestyle() {\n    let style = cache.get(\"imgstyle\") ?? \"TEXT\";\n    if (style == \"TEXT\") {\n        cache.put(\"imgstyle\", \"text\");\n        java.toast(\"\\n🥽段评气泡-小号样式\");\n    } else if (style == \"text\") {\n        cache.put(\"imgstyle\", \"TEXT\");\n        java.toast(\"\\n🥽段评气泡-大号样式\");\n    }\n}\n\nfunction toggleParacomment() {\n    const key = \"yunpara\";\n    let status = java.get(key) ?? \"off\";\n    if (status == \"on\") {\n        java.put(key, \"off\");\n        java.toast(\"\\n🍅番茄，🌙晋江，🐱七猫，💮半夏，🐧QQ阅读，🐧企鹅看书，💫起点\\n❌段评已关闭\");\n    } else {\n        java.put(key, \"on\");\n        java.toast(\"\\n🍅番茄，🌙晋江，🐱七猫，💮半夏，🐧QQ阅读，🐧企鹅看书，💫起点\\n✅段评已开启，需要下载缓存时请关闭\");\n    }\n}\n\nfunction ChapterRefresh() {\n    const key = \"chapter_refresh_force\";\n    let status = java.get(key) ?? \"off\";\n    \n    if (status == \"on\") {\n        java.put(key, \"off\");\n        java.toast(\"\\n☁️ 已切换为正常阅读\");\n    } else {\n        java.put(key, \"on\");\n        java.toast(\"\\n🔄 绕过缓存强制刷新(建议只在某点和某江缺字时启用)\");\n    }\n}\n\nfunction toggleBookSync() {\n    let status = java.get(\"book_sync\") ?? \"off\";\n    if (status == \"off\") {\n        java.put(\"book_sync\", \"on\");\n        java.toast(\"\\n🍅番茄小说\\n✅已开启 - 将自动同步阅读记录\");\n    } else {\n        java.put(\"book_sync\", \"off\");\n        java.toast(\"\\n🍅番茄小说\\n❌已关闭 - 停止同步阅读记录\");\n    }\n}\n\nfunction toggleFqdown(a) {\n    let status = java.get(a) ?? \"off\";\n    if (status == \"off\") {\n        java.put(a, \"on\");\n        java.toast(\"\\n🍅番茄小说\\nTXT下载功能已开启，在线阅读或换源需要关闭该功能\");\n    } else {\n        java.put(a, \"off\");\n        java.toast(\"\\n🍅番茄小说\\nTXT全本下载功能已关闭\");\n    }\n}\n\nfunction cleanCache() {\n    try {\n        var cleanUrl = getServerHost() + '/cron/cache';\n        \n        java.toast(\"正在清理缓存...\");\n        \n        var response = java.ajax(cleanUrl + \",\" + JSON.stringify({\n            method: \"GET\",\n            timeout: 5000\n        }));\n        \n        var result = JSON.parse(response);\n        \n        if (result.isSuccess) {\n            java.toast(\"✅ 缓存清理成功\");\n        } else {\n            java.toast(\"❌ 清理失败：\" + (result.errorMsg || \"未知错误\"));\n        }\n        \n    } catch (e) {\n        java.toast(\"❌ 清理失败：\" + e);\n    }\n}\n\nfunction SortFilter() {\n    try {\n        var savedParams = java.get(\"sortkey\");\n        savedParams = savedParams ? savedParams : \"\";\n        \n        if (savedParams.startsWith('\">')) {\n            savedParams = savedParams.substring(2);\n        } else if (savedParams.startsWith('>')) {\n            savedParams = savedParams.substring(1);\n        }\n        \n        let html = `<!DOCTYPE html><html><head><meta charset=\"UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1.0\"><title>🍅标签排序筛选</title><style>\n            *{margin:0;padding:0;box-sizing:border-box}\n            body{font-family:'PingFang SC','Microsoft YaHei',sans-serif;background:#f8f9fa;color:#333;max-width:700px;margin:0 auto;padding:16px}\n            .container{background:white;border-radius:16px;box-shadow:0 4px 20px rgba(0,0,0,0.08);padding:24px}\n            .header{margin-bottom:24px;text-align:center}\n            h1{color:#ff6b35;font-size:24px;font-weight:600;margin-bottom:8px}\n            .subtitle{color:#666;font-size:14px;margin-bottom:16px}\n            .current-section{background:#f0f7ff;border-radius:12px;padding:16px;margin-bottom:24px;border:1px solid #e3f2fd;position:relative}\n            .current-label{color:#1976d2;font-size:14px;font-weight:500;margin-bottom:8px}\n            .current-value{color:#2c3e50;font-size:16px;font-weight:500;min-height:24px;word-break:break-all}\n            .section{margin-bottom:28px}\n            .section-title{display:flex;align-items:center;margin-bottom:16px;font-size:16px;font-weight:600;color:#2c3e50}\n            .section-icon{margin-right:8px;font-size:18px}\n            .tip{font-size:12px;color:#ff6b35;margin-left:8px;background:#fff0e6;padding:2px 8px;border-radius:4px}\n            .buttons-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(100px,1fr));gap:10px}\n            .filter-btn{padding:10px 0;font-size:14px;border:1px solid #e0e0e0;border-radius:8px;background:white;color:#555;cursor:pointer;transition:all 0.2s;font-weight:500;text-align:center}\n            .filter-btn:hover{transform:translateY(-2px);box-shadow:0 4px 8px rgba(0,0,0,0.1)}\n            .filter-btn.selected{background:#ff6b35;color:white;border-color:#ff6b35;box-shadow:0 2px 8px rgba(255,107,53,0.3)}\n            .filter-btn.selected:hover{background:#ff5a22;box-shadow:0 4px 12px rgba(255,107,53,0.4)}\n            .action-hint{text-align:center;color:#666;font-size:13px;margin-top:32px;padding:12px;background:#f8f9fa;border-radius:8px;border:1px dashed #ddd}\n            .action-hint strong{color:#ff6b35}\n            .clear-btn{width:100%;background:#f8f9fa;color:#666;border:1px solid #ddd;border-radius:8px;padding:12px;font-size:14px;cursor:pointer;transition:all 0.2s;margin-top:32px}\n            .clear-btn:hover{background:#ffefeb;color:#ff6b35;border-color:#ff6b35}\n            @media (max-width:480px){.buttons-grid{grid-template-columns:repeat(3,1fr)}}\n        </style></head><body><div class=\"container\">\n            <div class=\"header\">\n                <h1>🍅 标签排序筛选</h1>\n                <div class=\"subtitle\">选择筛选条件，右上角\"✓\"确认生效</div>\n            </div>\n            \n            <div class=\"current-section\">\n                <div class=\"current-label\">当前选择：</div>\n                <div id=\"result-output\">${savedParams ? savedParams : \"未选择\"}</div>\n            </div>\n            \n            <div class=\"section\">\n                <div class=\"section-title\">\n                    <span class=\"section-icon\">📏</span> 字数参数 <span class=\"tip\">单选</span>\n                </div>\n                <div class=\"buttons-grid\" id=\"length-btns\"></div>\n            </div>\n            \n            <div class=\"section\">\n                <div class=\"section-title\">\n                    <span class=\"section-icon\">📈</span> 状态参数 <span class=\"tip\">单选</span>\n                </div>\n                <div class=\"buttons-grid\" id=\"status-btns\"></div>\n            </div>\n            \n            <div class=\"section\">\n                <div class=\"section-title\">\n                    <span class=\"section-icon\">🔝</span> 排序参数 <span class=\"tip\">单选</span>\n                </div>\n                <div class=\"buttons-grid\" id=\"sort-btns\"></div>\n            </div>\n            \n            <button onclick=\"clearAll()\" class=\"clear-btn\">\n                🗑️ 清除所有选择\n            </button>\n            \n            <div class=\"action-hint\">\n                提示：选择完成后点击右上角 <strong>✓</strong> 按钮确认设置\n            </div>\n        </div><script>\nvar currentParams = document.getElementById('result-output').textContent.trim();\nvar selectedItems = [];\n\nif (currentParams && currentParams !== \"未选择\" && currentParams !== \"undefined\") {\n    selectedItems = currentParams.split(\", \");\n}\n\nvar config={\nlengths:[\"10万以下\",\"30万以下\",\"50万以下\",\"30万以上\",\"50万以上\",\"100万以上\",\"200万以上\",\"300万以上\",\"500万以上\"],\nstatuses:[\"完结\",\"连载\",\"半年完结\",\"3天更新\",\"7天更新\",\"1月更新\"],\nsorts:[\"热门\",\"新书\",\"评分\",\"字数\"]\n};\nvar categorySelection={\nlength:null,\nstatus:null,\nsort:null\n};\nfunction initCategorySelection(){\nif(selectedItems.length>0){\nfor(var i=0;i<selectedItems.length;i++){\nvar item=selectedItems[i];\nif(config.lengths.includes(item)){\ncategorySelection.length=item;\n}else if(config.statuses.includes(item)){\ncategorySelection.status=item;\n}else if(config.sorts.includes(item)){\ncategorySelection.sort=item;\n}}}}\ninitCategorySelection();\nfunction initButtons(containerId,items,category){\nvar container=document.getElementById(containerId);\nvar buttonsHTML='';\nfor(var i=0;i<items.length;i++){\nvar name=items[i];\nvar isSelected=categorySelection[category]==name;\nbuttonsHTML+='<button onclick=\"toggleSelection(\\\\''+name+'\\\\',\\\\''+category+'\\\\')\" class=\"filter-btn'+(isSelected?' selected':'')+'\">'+name+'</button>';\n}\ncontainer.innerHTML=buttonsHTML;\n}\nfunction toggleSelection(name,category){\nif(categorySelection[category]==name){\ncategorySelection[category]=null;\n}else{\ncategorySelection[category]=name;\n}\nupdateButtonStates();\nupdateOutput();\n}\nfunction updateButtonStates(){\nfor(var category in categorySelection){\nvar containerId=category+'-btns';\nvar container=document.getElementById(containerId);\nif(container){\nvar buttons=container.getElementsByTagName('button');\nfor(var i=0;i<buttons.length;i++){\nvar btn=buttons[i];\nvar btnName=btn.textContent;\nbtn.className='filter-btn'+(categorySelection[category]==btnName?' selected':'');\n}}}}\nfunction updateOutput(){\nvar allSelected=[];\nfor(var category in categorySelection){\nif(categorySelection[category]){\nallSelected.push(categorySelection[category]);}}\nvar resultText=allSelected.length>0?allSelected.join(\", \"):\"未选择\";\ndocument.getElementById('result-output').textContent=resultText;\n}\nfunction clearAll(){\ncategorySelection={length:null,status:null,sort:null};\nupdateButtonStates();\nupdateOutput();\n}\ninitButtons('length-btns',config.lengths,'length');\ninitButtons('status-btns',config.statuses,'status');\ninitButtons('sort-btns',config.sorts,'sort');\nupdateOutput();\n</script></body></html>`;\n        \n        let base64 = `data:text/html;base64,${java.base64Encode(html)}`;\n        let body = java.startBrowserAwait(base64,\"书籍筛选\",false).body();\n        \n        let resultDivStart = body.indexOf('<div id=\"result-output\">');\n        let selectedItems = \"\";\n        \n        if (resultDivStart > -1) {\n            let contentStart = body.indexOf('>', resultDivStart);\n            if (contentStart > -1) {\n                contentStart += 1;\n                let contentEnd = body.indexOf('</div>', contentStart);\n                if (contentEnd > contentStart) {\n                    selectedItems = body.substring(contentStart, contentEnd).trim();\n                    \n                    if (selectedItems == \"未选择\") {\n                        selectedItems = \"\";\n                    } else {\n                        if (selectedItems.startsWith('\">')) {\n                            selectedItems = selectedItems.substring(2);\n                        } else if (selectedItems.startsWith('>')) {\n                            selectedItems = selectedItems.substring(1);\n                        }\n                    }\n                }\n            }\n        }\n        \n        java.put(\"sortkey\", selectedItems);\n        \n        if (selectedItems == \"\") {\n            java.toast(\"已清除所有筛选条件\");\n        } else {\n            java.toast(\"设置成功，该设置仅🍅番茄小说发现页生效\");\n        }\n        \n    } catch(e) {\n        java.log(e);\n    }\n}\n\nfunction TTSSelector() {\n    try {\n        var config = getConfig.call(this);\n        var currentFanqieTone = config.fanqie_tts_tone || \"\";\n        var currentShuqiTone = config.shuqi_tts_tone || \"\";\n        var activeTab = config.tts_active_tab || \"fanqie\";\n        \n        var fanqieTones = [\n            { id: \"51\", name: \"多人对话\" },\n            { id: \"1\", name: \"甜美少女\" },\n            { id: \"2\", name: \"清亮青叔\" },\n            { id: \"4\", name: \"成熟大叔\" },\n            { id: \"5\", name: \"开朗青年\" },\n            { id: \"6\", name: \"温柔淑女\" },\n            { id: \"8\", name: \"风雅青叔\" },\n            { id: \"12\", name: \"清纯少女\" },\n            { id: \"17\", name: \"磁性青叔\" },\n            { id: \"29\", name: \"儒雅大叔\" },\n            { id: \"30\", name: \"优雅御姐\" },\n            { id: \"31\", name: \"斯文青叔\" },\n            { id: \"32\", name: \"知性主播\" },\n            { id: \"74\", name: \"成熟升级\" },\n            { id: \"80\", name: \"多人升级\" },\n            { id: \"100\", name: \"俏皮御姐\" },\n            { id: \"103\", name: \"双音灵动\" }\n        ];\n        \n        var shuqiTones = [\n            { id: \"multi_role\", name: \"多角色对话\" },\n            { id: \"double_role\", name: \"双角色对话\" },\n            { id: \"yifei\", name: \"甜美少女\" },\n            { id: \"mingge\", name: \"成熟男人\" },\n            { id: \"xiaohou\", name: \"阳光青年\" },\n            { id: \"qianxue\", name: \"知性主播\" },\n            { id: \"SQ_M03_PB_1218_01\", name: \"沉稳男士\" },\n            { id: \"F1029_PB_1128\", name: \"温婉淑女\" },\n            { id: \"zh-CN-YunxiNeural\", name: \"讲书博主小帅\" },\n            { id: \"zh-CN-XiaochenNeural\", name: \"讲书博主小美\" },\n            { id: \"SQ_iVc8TnhZXioTB52v\", name: \"清朗学长\" },\n            { id: \"SQ_5Oh4F5zWa8EZbWvr\", name: \"清冷校花\" },\n            { id: \"zh_male_quarkttsV1_novel_King196\", name: \"沉稳青叔\" }\n        ];\n        \n        function getToneName(id, source) {\n            var list = source == 'fanqie' ? fanqieTones : shuqiTones;\n            for (var i = 0; i < list.length; i++) {\n                if (list[i].id == id) {\n                    return list[i].name;\n                }\n            }\n            return id || \"未选择\";\n        }\n        \n        var fanqieDisplay = currentFanqieTone ? getToneName(currentFanqieTone, 'fanqie') : \"未选择\";\n        var shuqiDisplay = currentShuqiTone ? getToneName(currentShuqiTone, 'shuqi') : \"未选择\";\n        \n        var fanqieHtml = '';\n        for (var i = 0; i < fanqieTones.length; i++) {\n            var tone = fanqieTones[i];\n            var isSelected = (currentFanqieTone == tone.id);\n            fanqieHtml += '<button onclick=\"selectTone(\\'' + tone.id + '\\',\\'fanqie\\')\" data-id=\"' + tone.id + '\" class=\"tone-btn' + (isSelected ? ' selected' : '') + '\"><span class=\"tone-name\">' + tone.name + '</span></button>';\n        }\n        \n        var shuqiHtml = '';\n        for (var i = 0; i < shuqiTones.length; i++) {\n            var tone = shuqiTones[i];\n            var isSelected = (currentShuqiTone == tone.id);\n            shuqiHtml += '<button onclick=\"selectTone(\\'' + tone.id + '\\',\\'shuqi\\')\" data-id=\"' + tone.id + '\" class=\"tone-btn' + (isSelected ? ' selected' : '') + '\"><span class=\"tone-name\">' + tone.name + '</span></button>';\n        }\n        \n        var html = `<!DOCTYPE html>\n<html>\n<head>\n<meta charset=\"UTF-8\">\n<meta name=\"viewport\" content=\"width=device-width,initial-scale=1.0\">\n<title>🎧 TTS音色选择</title>\n<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css\">\n<style>\n*{margin:0;padding:0;box-sizing:border-box}\nbody{font-family:-apple-system,'PingFang SC','Microsoft YaHei',sans-serif;background:#f0f2f5;color:#333;padding:12px;max-width:720px;margin:0 auto}\n.container{background:#fff;border-radius:16px;box-shadow:0 4px 24px rgba(0,0,0,0.06);overflow:hidden}\n.header{background:linear-gradient(135deg,#ff6b35,#f7931e);padding:20px 24px;color:#fff}\n.header h1{font-size:22px;font-weight:700;display:flex;align-items:center;gap:10px}\n.header h1 i{font-size:24px}\n.header p{font-size:13px;opacity:0.9;margin-top:4px}\n.current-section{background:#f8f9fa;margin:16px 16px 0;padding:12px 16px;border-radius:10px;border:1px solid #e9ecef}\n.current-label{font-size:13px;color:#868e96;font-weight:500;margin-bottom:4px}\n.current-value{font-size:16px;font-weight:600;color:#212529;display:flex;justify-content:space-between;align-items:center}\n.current-value .source-tag{font-size:12px;font-weight:400;color:#868e96}\n.tabs{display:flex;border-bottom:2px solid #e9ecef;padding:0 16px;margin-top:12px;gap:0}\n.tab-btn{padding:12px 20px;border:none;background:transparent;font-size:14px;font-weight:600;color:#868e96;cursor:pointer;border-bottom:3px solid transparent;transition:all 0.2s;display:flex;align-items:center;gap:8px}\n.tab-btn i{font-size:16px}\n.tab-btn.active{color:#ff6b35;border-bottom-color:#ff6b35}\n.tab-btn:hover{color:#ff6b35}\n.tab-panel{display:none;padding:16px}\n.tab-panel.active{display:block}\n.tab-panel .panel-title{font-size:13px;color:#868e96;margin-bottom:12px;padding-left:4px}\n.tone-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}\n.tone-btn{padding:12px 8px;border:2px solid #e9ecef;border-radius:12px;background:#fff;cursor:pointer;transition:all 0.2s;text-align:center;font-size:13px;font-weight:500;color:#495057}\n.tone-btn:hover{border-color:#ff6b35;transform:translateY(-2px);box-shadow:0 4px 12px rgba(255,107,53,0.15)}\n.tone-btn.selected{background:#ff6b35;border-color:#ff6b35;color:#fff;box-shadow:0 4px 12px rgba(255,107,53,0.25)}\n.clear-area{padding:0 16px 16px}\n.clear-btn{width:100%;padding:12px;border:2px dashed #dee2e6;border-radius:12px;background:transparent;font-size:14px;color:#868e96;cursor:pointer;transition:all 0.2s;display:flex;align-items:center;justify-content:center;gap:8px}\n.clear-btn:hover{border-color:#ff6b35;color:#ff6b35;background:#fff5f0}\n.action-hint{text-align:center;font-size:12px;color:#adb5bd;padding:12px 16px 16px;border-top:1px solid #f1f3f5}\n.action-hint i{color:#ff6b35}\n@media (max-width:480px){.tone-grid{grid-template-columns:repeat(3,1fr)}.tab-btn{padding:10px 14px;font-size:13px}}\n</style>\n</head>\n<body>\n<div class=\"container\">\n<div class=\"header\">\n<h1><i class=\"fas fa-headphones\"></i> TTS音色选择</h1>\n<p>番茄和书旗音色独立设置，切换Tab分别选择</p>\n</div>\n<div class=\"current-section\">\n<div class=\"current-label\"><i class=\"fas fa-check-circle\" style=\"color:#40c057;margin-right:6px\"></i>当前音色</div>\n<div class=\"current-value\">\n<span id=\"fanqie-display\">🍅 <span id=\"fanqie-value\">` + fanqieDisplay + `</span></span>\n<span id=\"shuqi-display\">📚 <span id=\"shuqi-value\">` + shuqiDisplay + `</span></span>\n</div>\n</div>\n<div class=\"tabs\">\n<button class=\"tab-btn active\" data-tab=\"fanqie\" onclick=\"switchTab('fanqie')\"><i class=\"fas fa-tomato\"></i> 番茄</button>\n<button class=\"tab-btn\" data-tab=\"shuqi\" onclick=\"switchTab('shuqi')\"><i class=\"fas fa-book\"></i> 书旗</button>\n</div>\n<div id=\"panel-fanqie\" class=\"tab-panel active\">\n<div class=\"panel-title\"><i class=\"fas fa-list-ul\" style=\"color:#ff6b35\"></i> 番茄音色列表</div>\n<div class=\"tone-grid\">` + fanqieHtml + `</div>\n</div>\n<div id=\"panel-shuqi\" class=\"tab-panel\">\n<div class=\"panel-title\"><i class=\"fas fa-list-ul\" style=\"color:#1976d2\"></i> 书旗音色列表</div>\n<div class=\"tone-grid\">` + shuqiHtml + `</div>\n</div>\n<div class=\"clear-area\">\n<button onclick=\"clearAll()\" class=\"clear-btn\"><i class=\"fas fa-trash-alt\"></i> 清除所有音色</button>\n</div>\n<div class=\"action-hint\"><i class=\"fas fa-check-circle\"></i> 选择完成后点击右上角 <strong>✓</strong> 确认</div>\n</div>\n<script>\nvar fanqieTone = '` + currentFanqieTone + `';\nvar shuqiTone = '` + currentShuqiTone + `';\nvar activeTab = '` + activeTab + `';\nvar fanqieMap = {};\nvar shuqiMap = {};\nvar fanqieList = ` + JSON.stringify(fanqieTones) + `;\nvar shuqiList = ` + JSON.stringify(shuqiTones) + `;\nfor (var i = 0; i < fanqieList.length; i++) { fanqieMap[fanqieList[i].id] = fanqieList[i].name; }\nfor (var i = 0; i < shuqiList.length; i++) { shuqiMap[shuqiList[i].id] = shuqiList[i].name; }\n\nfunction switchTab(tab) {\n    activeTab = tab;\n    document.querySelectorAll('.tab-btn').forEach(function(b) { b.classList.remove('active'); });\n    document.querySelector('.tab-btn[data-tab=\"' + tab + '\"]').classList.add('active');\n    document.querySelectorAll('.tab-panel').forEach(function(p) { p.classList.remove('active'); });\n    document.getElementById('panel-' + tab).classList.add('active');\n}\n\nfunction selectTone(id, source) {\n    if (source == 'fanqie') {\n        fanqieTone = id;\n        document.querySelectorAll('#panel-fanqie .tone-btn').forEach(function(b) {\n            b.classList.remove('selected');\n            if (b.getAttribute('data-id') == id) { b.classList.add('selected'); }\n        });\n        document.getElementById('fanqie-value').textContent = fanqieMap[id] || id;\n    } else {\n        shuqiTone = id;\n        document.querySelectorAll('#panel-shuqi .tone-btn').forEach(function(b) {\n            b.classList.remove('selected');\n            if (b.getAttribute('data-id') == id) { b.classList.add('selected'); }\n        });\n        document.getElementById('shuqi-value').textContent = shuqiMap[id] || id;\n    }\n}\n\nfunction clearAll() {\n    fanqieTone = '';\n    shuqiTone = '';\n    document.querySelectorAll('.tone-btn').forEach(function(b) { b.classList.remove('selected'); });\n    document.getElementById('fanqie-value').textContent = '未选择';\n    document.getElementById('shuqi-value').textContent = '未选择';\n}\n</script>\n</body>\n</html>`;\n        \n        var base64 = `data:text/html;base64,${java.base64Encode(html)}`;\n        var body = java.startBrowserAwait(base64, \"TTS音色选择\", false).body();\n        \n        var newFanqieTone = '';\n        var newShuqiTone = '';\n        \n        var fanqieMatch = body.match(/<span id=\"fanqie-value\">([^<]*)<\\/span>/);\n        if (fanqieMatch && fanqieMatch[1] && fanqieMatch[1] != '未选择') {\n            for (var i = 0; i < fanqieTones.length; i++) {\n                if (fanqieTones[i].name == fanqieMatch[1]) {\n                    newFanqieTone = fanqieTones[i].id;\n                    break;\n                }\n            }\n        }\n        \n        var shuqiMatch = body.match(/<span id=\"shuqi-value\">([^<]*)<\\/span>/);\n        if (shuqiMatch && shuqiMatch[1] && shuqiMatch[1] != '未选择') {\n            for (var i = 0; i < shuqiTones.length; i++) {\n                if (shuqiTones[i].name == shuqiMatch[1]) {\n                    newShuqiTone = shuqiTones[i].id;\n                    break;\n                }\n            }\n        }\n        \n        setConfigs.call(this, {\n            fanqie_tts_tone: newFanqieTone,\n            shuqi_tts_tone: newShuqiTone\n        });\n        \n        var msg = '';\n        if (newFanqieTone && newShuqiTone) {\n            msg = '✅ 番茄: ' + getToneName(newFanqieTone, 'fanqie') + ' | 书旗: ' + getToneName(newShuqiTone, 'shuqi');\n        } else if (newFanqieTone) {\n            msg = '✅ 番茄音色: ' + getToneName(newFanqieTone, 'fanqie');\n        } else if (newShuqiTone) {\n            msg = '✅ 书旗音色: ' + getToneName(newShuqiTone, 'shuqi');\n        } else {\n            msg = '已清除所有TTS音色';\n        }\n        java.toast(msg);\n        \n    } catch(e) {\n        java.log(e);\n        java.toast(\"❌ 音色设置失败：\" + e);\n    }\n}\n\nfunction vip() { java.startBrowserAwait(getServerHost() + '/coffee', \"喝咖啡\"); }\nfunction fb() { java.startBrowserAwait('https://fb.shushan.vip', \"发布页\"); }\nfunction key() { java.startBrowserAwait(getServerHost() + '/user_login', \"登陆注册\"); }\nfunction user_center() { java.startBrowserAwait(getServerHost() + '/user_center', \"用户中心\"); }\nfunction version() { java.startBrowserAwait(getServerHost() + '/version?id=' + localVersion, \"版本检查\"); }\nfunction help() { java.startBrowserAwait(getServerHost() + '/help', \"使用帮助\"); }\nfunction password() { java.startBrowserAwait(getServerHost() + '/forgot_password', \"修改密码\"); }\nfunction boy() { updateConfig(\"gender\", \"boy\", \"\\n已设置为\\n🧸男频🧸\\n刷新发现页生效\"); }\nfunction girl() { updateConfig(\"gender\", \"girl\", \"\\n已设置为\\n🎀女频🎀\\n刷新发现页生效\"); }",
    "respondTime": 16062,
    "ruleBookInfo": {
      "author": "$.author",
      "canReName": "1",
      "coverUrl": "$.cover",
      "downloadUrls": "{{$.book_url##[|]}}\n@js:\nlet url = java.base64Decode(result);\nlet source = \"{{$.source}}\".toLowerCase();\n\nif (source == \"番茄小说\") {\n    let book_id = \"{{$.bookid}}\";\n    java.toast('\\n❗请等待正在下载变成下载完成后在导入');\n    \n    if (book_id) {\n        getServerHost() + `/down?key={{getSecretKey()}}&book_id=${book_id}`;\n    } else {\n        url;\n    }\n} else if (source == \"爱去\") {\n    let bookIdMatch = url.match(/txt-(\\d+)\\.htm/);\n    if (bookIdMatch && bookIdMatch[1]) {\n        let bookId = bookIdMatch[1];\n        let requestUrl = 'https://www.aiqu666.com/txt-xx/softdownfree.asp?softid=' + bookId + '&ckm=mianfei';\n        let html = java.ajax(requestUrl);\n        let downloadSection = html.match(/<img[^>]*icon_downloadserver[^>]*>([\\s\\S]*?)<span style=\"FONT-SIZE: 18px; COLOR: #0000ff\">下载帮助:/);\n        \n        if (downloadSection) {\n            let firstMatch = downloadSection[1].match(/第一下载地址[^<]*<a[^>]*href=\"([^\"]+\\.(txt|zip|rar|epub))\"/);\n            if (firstMatch && firstMatch[1]) {\n                firstMatch[1];\n            } else {\n                let allLinks = downloadSection[1].match(/href=\"([^\"]+\\.(txt|zip|rar|epub))\"/g);\n                allLinks && allLinks.length > 1 ? allLinks[1].replace('href=\"', '').replace('\"', '') : '';\n            }\n        } else {\n            '';\n        }\n    } else {\n        url;\n    }\n} else {\n    url;\n}",
      "init": "<js>\nif (String(baseUrl).startsWith(\"data:\")) {\n    let res = JSON.parse(java.hexDecodeToString(result));\n    \n    if (res.source == \"番茄小说\" && java.get(\"fqdown\") == \"on\") {\n        book.type = 128;\n        java.toast('\\n正在准备TXT，请等待后端缓存完毕后点击阅读导入…');\n    }\n\n    let request = getServerHost() + `/details,${JSON.stringify({\n        method: \"POST\",\n        body: res\n    })}`;\n    \n    result = java.ajax(request);\n    let response = JSON.parse(result);\n    if (response.data.tab == \"download\") {\n       book.type = 128;\n    }\n} \nresult;\n</js>\n$.data",
      "intro": "&nbsp;&nbsp;\n✨ 源站：{{$.source}}{{\"\\n\"+\"​\"}}\n{{$.desc}}\n<js>\nconst tomatoSources = [\"番茄小说\", \"番茄听书\", \"番茄畅听\"];\nconst jjwxcSources = [\"晋江\"];\n\nconst sourceName = \"{{$.source}}\";\nconst bookIdFromBackend = \"{{$.bookid}}\";\n\nlet finalResult = result;\n\nif (tomatoSources.includes(sourceName)) {\n    try {\n        let bookId = bookIdFromBackend;\n        if (bookId) {\n            let bookData = getBookData(bookId);\n            \n            if (bookData) {\n                let syncStatus = java.get(\"book_sync\") ?? \"off\";\n                if (syncStatus == \"on\") {\n                    syncReadingHistory(bookData.book_id);\n                }\n                \n                let bookName = bookData.original_book_name || bookData.book_name || \"\";\n                let aliasName = bookData.book_flight_alias_name || bookData.sub_title || \"\";\n                let createTime = bookData.create_time ? bookData.create_time.split('T')[0] : (bookData.first_online_time ? java.timeFormat(parseInt(Object.values(JSON.parse(bookData.first_online_time))[0])*1000).split(' ')[0] : \"\");\n                let updateTime = bookData.last_chapter_update_time ? java.timeFormat(parseInt(bookData.last_chapter_update_time)*1000) : \"\";\n                \n                let authorName = \"\";\n                if (bookData.original_authors) {\n                    try {\n                        let authorsParsed = JSON.parse(bookData.original_authors);\n                        authorName = Array.isArray(authorsParsed) ? authorsParsed.map(a => a.AuthorName || a.author_name || a).join(', ') : bookData.original_authors;\n                    } catch(e) {\n                        authorName = bookData.original_authors;\n                    }\n                } else {\n                    authorName = bookData.author || \"\";\n                }\n                \n                let roleName = \"\";\n                if (bookData.roles) {\n                    try {\n                        let rolesParsed = JSON.parse(bookData.roles);\n                        roleName = Array.isArray(rolesParsed) ? rolesParsed.join(', ') : bookData.roles;\n                    } catch(e) {\n                        roleName = bookData.roles;\n                    }\n                } else if (bookData.role) {\n                    roleName = bookData.role;\n                }\n                \n                let bookTagsData = bookData.pure_category_tags || bookData.tags || \"\";\n                let readCount = bookData.read_count || \"0\";\n                let bookStatus = bookData.book_search_visible == 'false' ? \"下架\" : \"正常\";\n                let abstract = bookData.book_abstract_v2 || bookData.abstract || \"\";\n                let copyrightInfo = bookData.copyright_info || \"\";\n                \n                let output = `&nbsp;&nbsp;\n✨ 源站：${sourceName}{{\"\\n\"+\"​\"}}\n📕 源名：${bookName}`;\n                \n                if (aliasName) output += `\\n📖 别名：${aliasName}`;\n                \n                output += `\\n✏️ 开坑：${createTime} \n🧭 更新：${updateTime}&lrm;\n👤 作者：${authorName}`;\n                \n                if (roleName) output += `\\n🎭 主角：${roleName}`;\n                \n                output += `\n🏷️ 标签：${bookTagsData}\n👁️ 在线：${readCount}人在读\n🔗 书籍状态：${bookStatus} `;\n                \n                output += `\\n🔄 阅读记录：${syncStatus == \"on\" ? \"✅已开启同步\" : \"❌已关闭同步\"}`;\n                \n                if (sourceName == \"番茄听书\") {\n                    try {\n                        let ttsUrl = `https://reading.snssdk.com/reading/bookapi/audio/toneinfo/?book_id=${bookId}&aid=1967`;\n                        let response = java.ajax(ttsUrl);\n                        let data = JSON.parse(response);\n                        let ttsData = data.data;\n                        let toneLines = [];\n                        \n                        if (ttsData.recommend_tone) {\n                            for (var i = 0; i < ttsData.tts_tones.length; i++) {\n                                if (ttsData.tts_tones[i].id == ttsData.recommend_tone) {\n                                    toneLines.push('🎤 推荐音色：' + ttsData.tts_tones[i].title + ' (音色ID: ' + ttsData.tts_tones[i].id + ')');\n                                    break;\n                                }\n                            }\n                        }\n                        \n                        if (ttsData.tts_tones && ttsData.tts_tones.length > 0) {\n                            var availableTones = '';\n                            for (var j = 0; j < ttsData.tts_tones.length; j++) {\n                                if (j > 0) availableTones += '、';\n                                availableTones += ttsData.tts_tones[j].title + '(音色ID: ' + ttsData.tts_tones[j].id + ')';\n                            }\n                            toneLines.push('🎧 可用音色：' + availableTones);\n                        }\n                        \n                        if (toneLines.length > 0) {\n                            output += '\\n' + toneLines.join('\\n');\n                        }\n                    } catch (e) {}\n                }\n                \n                output += `{{\"\\n\"+\"​\"}}\n📜 简介：${abstract}{{\"\\n\"+\"​\"}}`;\n                \n                if (copyrightInfo) {\n                    output += `\\n📍 ${copyrightInfo.split('，')[0]}。`;\n                }\n                \n                finalResult = output;\n            }\n        }\n    } catch (e) {\n    }\n} else if (jjwxcSources.some(source => sourceName.includes(source))) {\n    try {\n        let novelId = bookIdFromBackend;\n        \n        if (novelId) {\n            let currentVariable = book.getVariable(\"custom\") || \"\";\n            \n            if (!currentVariable.includes(\"开启段评\") && !currentVariable.includes(\"关闭段评\")) {\n                try {\n                    let checkUrl = `https://android.jjwxc.com/app.jjwxc/android/reading/authorNovelSetting/getSetting?versionCode=381&novelid=${novelId}&setting_type=author_paragraph_comment_switch`;\n                    \n                    let request = `${checkUrl},${JSON.stringify({\n                        headers: {\n                            \"versiontype\": \"reading\",\n                            \"versionCode\": \"381\"\n                        }\n                    })}`;\n                    \n                    let ajaxResult = java.ajax(request);\n                    let checkResponse = JSON.parse(ajaxResult);\n                    \n                    let paraEnabled = checkResponse.data?.paragraph_switch == \"1\";\n                    \n                    let newVariable = currentVariable + (paraEnabled ? \"开启段评\" : \"关闭段评\");\n                    book.putVariable(\"custom\", newVariable);\n                    \n                } catch(e) {\n                    let newVariable = currentVariable + \"关闭段评\";\n                    book.putVariable(\"custom\", newVariable);\n                }\n            }\n        }\n    } catch (e) {\n    }\n}\nfinalResult;\n</js>",
      "kind": "$.tags",
      "name": "$.title",
      "tocUrl": "<js>\nlet catalog = {\n    source: result.source,\n    url: result.book_url,\n    name: result.title,\n    tab: result.tab || \"novel\",\n    bookid: result.bookid || \"\"\n};\n\nvar tabTips = {audio: '听书', video: '视频', comic: '漫画'}; \nif (tabTips[catalog.tab]) {\n    java.toast('当前为' + tabTips[catalog.tab] + '模式');\n}\n\nyunurl = java.base64Encode(JSON.stringify(catalog));\nresult = `data:catalogUrl;base64,${yunurl},{\"type\":\"susan\"}`;\n</js>",
      "wordCount": "$.wordCount"
    },
    "ruleContent": {
      "callBackJs": "if (event == \"clickCustomButton\") {\n    let targetUrl = \"\";\n    \n    if (chapter && chapter.url) {\n        try {\n            let chUrl = String(chapter.url);\n            let jsMatch = chUrl.match(/\"js\":\"book \\? result : '([^']+)'\"/);\n            if (jsMatch && jsMatch[1]) {\n                targetUrl = jsMatch[1];\n            }\n        } catch (e) {}\n    } else if (book && book.tocUrl) {\n        try {\n            let tocUrl = String(book.tocUrl);\n            let base64Str = tocUrl.replace(/^data:catalogUrl;base64,/, '');\n            let idx = base64Str.indexOf(',');\n            if (idx >= 0) base64Str = base64Str.substring(0, idx);\n            let catalog = JSON.parse(java.base64Decode(base64Str));\n            let source = catalog.source || \"\";\n            let bookid = catalog.bookid || \"\";\n            \n            if (bookid) {\n                let urlMap = {\n                    \"晋江\": \"/jj_author?novelid=\" + bookid,\n                    \"起点\": \"/qd_role?bookid=\" + bookid,\n                    \"七猫小说\": \"/qm_comment?type=book&book_id=\" + bookid,\n                    \"番茄小说\": \"/fq_comment?book_id=\" + bookid,\n                    \"番茄听书\": \"/fq_comment?book_id=\" + bookid,\n                    \"菠萝包\": \"/sfacg_comment?bookid=\" + bookid\n                };\n                \n                if (urlMap[source]) {\n                    targetUrl = getServerHost() + urlMap[source];\n                }\n            }\n        } catch (e) {}\n    }\n\n    if (targetUrl) {\n        targetUrl += \"&key=\" + getSecretKey();\n        java.showBrowser(\n            targetUrl,\n            null,\n            \"window.java=java;\",\n            JSON.stringify({\n                \"expandedCornersRadius\": 20,\n                \"dismissOnTouchOutside\": true,\n                \"isDraggable\": true,\n                \"shouldDimBackground\": true,\n                \"backgroundDimAmount\": 0.5,\n                \"hardwareAccelerated\": true,\n                \"isNestedScrollingEnabled\": true,\n                \"isGestureInsetBottomIgnored\": true,\n                \"setFitToContents\": false,\n                \"heightPercentage\": 0.85,\n                \"isHideable\": true\n            })\n        );\n    } else {\n        java.toast(chapter ? \"当前来源不支持章评\" : \"当前来源不支持\");\n    }\n    true;\n}",
      "content": "<js>eval(function(p,a,c,k,e,r){e=function(c){return(c<62?'':e(parseInt(c/62)))+((c=c%62)>35?String.fromCharCode(c+29):c.toString(36))};if('0'.replace(0,e)==0){while(c--)r[e(c)]=k[c];k=[function(e){return r[e]||e}];e=function(){return'([3-8bcf-mo-rt-zB-UWYZ]|1\\\\w)'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\\\b'+e(c)+'\\\\b','g'),k[c]);return p}('5 3=u.y(6.hexDecodeToString(g));5 M=13()?\\'ios\\':\\'14\\';5 m=\\'\\';4(M==\\'14\\'){o{m=6.15()}p(e){o{m=6.16()}p(e2){m=\\'\\'}}}b{o{m=6.16()}p(e){o{m=6.15()}p(e2){m=\\'\\'}}}4(!13()){o{eval(String(f.loginUrl));5 N=getConfig.18(19);5 C=Date.C();5 1a=2*60*60*1000;4(!N.O||(C-N.O)>1a){setConfig.18(19,\\'O\\',C);5 c=u.y(6.D(v()+\"/j?vid=sy\"));4(c.j){4(c.1c&&c.1c.toString().toLowerCase()==\"1d\"&&c.j>z){6.P(j());6.k(\"请更新书源！下载页面已打开。\")}5 r=c.j>z?\"\\\\n✨发现新版本V\"+c.j+\" (当前V\"+z+\")\"+(c.r?\"\\\\n\"+c.r:\\'\\'):c.j<z?\"\\\\n⚠️版本异常\\\\n本地V\"+z+\" > 云端V\"+c.j+\"\\\\n请检查书源配置\":\\'\\';4(r)6.k(r)}b 4(c.r){6.k(c.r)}}}p(e){}}3.j=\"12\";4(6.1e(\"chapter_refresh_force\")==\"on\"){3.refresh=\\'1d\\'}4(3.f==\\'晋江\\'){3.token=JJtoken()||\"\"}4(3.f==\\'七猫小说\\'&&3.E){5 Q=3.E.R(/l=(\\\\d+)/);5 S=3.E.R(/t=(\\\\d+)/);5 T=3.E.R(/F=([a-f0-9]+)/);4(Q)3.l=Q[1];4(S)3.t=S[1];4(T)3.F=T[1]}4(3.f==\\'番茄听书\\'||3.f==\\'番茄畅听\\'){o{5 G=1g(\\'fanqie\\');5 H=v()+\\'/1h?1i=\\'+G+\\'&U=\\'+3.t;5 h=u.y(6.D(H));4(h.8&&h.8[0]&&h.8[0].I){g=h.8[0].I}b{6.k(\"当前音色不支持该章节，请切换其他音色尝试\");g=\"\"}}p(e){6.k(\"获取音频失败，请切换音色或重试\");g=\"\"}}b 4(3.f==\\'书旗听书\\'){o{5 W=3.q||\\'\\';5 Y=3.U||\\'\\';5 G=1g(\\'shuqi\\');4(W&&Y){5 H=v()+\\'/1h?q=\\'+W+\\'&U=\\'+Y+\\'&1i=\\'+G;5 h=u.y(6.D(H));4(h.8&&h.8[0]&&h.8[0].I){g=h.8[0].I}b{6.k(\"当前音色不支持该章节，请切换其他音色尝试\");g=\"\"}}}p(e){6.k(\"获取音频失败，请切换音色或重试\");g=\"\"}}b 4(3.f==\\'番茄短剧\\'||3.f==\\'七猫短剧\\'){5 B=\\'\\';4(3.f==\\'番茄短剧\\'&&3.l){B=v()+\\'/1j?l=\\'+3.l+\\'&1k=\\'+Z()}b 4(3.f==\\'七猫短剧\\'&&3.10){B=v()+\\'/1j?10=\\'+3.10+\\'&1k=\\'+Z()}4(B){4(11.1l==J.1m){6.P(B,J.1n||\\'视频播放\\');6.k(\\'视频加载中...\\');g=\"▶️刷新正文进入播放界面\"}b{g=\"▶️点击章节进入播放界面\"}}}b{5 1o=v()+`/1p,${u.stringify({method:\"POST\",headers:{\"Content-1q\":\"application/json\",\"X-Api-Key\":Z(),\"X-1r-1q\":M,\"X-1r-Id\":m},body:3})}`;5 i=u.y(6.D(1o));5 7=i.8.1p;5 1s=/^[A-Za-z0-9+/]*={0,2}$/.test(7);4(1s){o{7=decode(7)}p(e){7=6.base64Decode(7)}}4(i.8&&i.8.tab==\"video\"){4(11.1l==J.1m){6.P(7,J.1n||\\'视频播放\\');6.k(\\'视频加载中...\\');7=\"▶️刷新正文进入播放界面\"}b{7=\"▶️点击章节进入播放界面\"}}4((6.1e(\"yunpara\")||\"off\")==\"on\"){5 s=3.f;4(s==\\'番茄小说\\'&&3.l&&3.t){7=w(7,3.l,3.t,\\'fq\\')}b 4(s==\\'晋江\\'&&3.K&&3.L){5 1t=11.getVariable(\"custom\")||\"\";4(!1t.includes(\"关闭段评\")){7=w(7,3.K,3.L,\\'jj\\',1v,{})}}b 4(s==\\'半夏\\'&&3.K&&3.L){7=w(7,3.K,3.L,\\'jj\\',1v,{q:3.q,x:3.x})}b 4(s==\\'七猫小说\\'&&3.l&&3.t&&3.F){7=w(7,3.l,3.t,\\'qm\\',3.F)}b 4((s==\\'企鹅看书\\'||s==\\'QQ阅读\\')&&3.q&&3.x){7=w(7,3.q,3.x,\\'qq\\')}b 4(s==\\'起点\\'&&3.q&&3.x){7=w(7,3.q,3.x,\\'qd\\')}}4(i.8&&i.8.1w){7+=\"\\\\n\"+i.8.1w}4(i.8&&i.8.1x){7+=\"\\\\n【📢作者有话说】\\\\n\"+i.8.1x}g=7}',[],96,'|||chapterParams|if|let|java|finalResult|data|||else|versionData|||source|result|apiData|response|version|toast|book_id|deviceId||try|catch|bookid|msg||item_id|JSON|getServerHost|getComments|chapterid|parse|localVersion||videoUrl|now|ajax|qm_url|content_md5|toneId|apiUrl|main_url|chapter|novelId|chapterId|deviceTypeStr|config|lastUpdateCheck|startBrowser|bookIdMatch|match|itemIdMatch|contentMd5Match|item_ids||bookId||itemId|getSecretKey|qm_id|book||deviceType|android|androidId|deviceID||call|this|fourHours||force|true|get||getTtsTone|audio|tone_id|player|key|durChapterIndex|index|title|chapterUrl|content|Type|Device|isBase64|customVar||null|notice|sayBody'.split('|'),0,{}))</js>",
      "payAction": "//java.log(baseUrl);\nnid = baseUrl.match(/bid=(\\d+)/)[1];\ncid = baseUrl.match(/cid=(\\d+)/)[1];\ntoken = java.base64Decode(JJtoken());\nenbody = String(Date.now())+\":\"+token+\":\"+nid;\nsign = encode(enbody)\nbody = \"versionCode=444&novelId=\"+nid+\"&chapters=\"+cid+\"&orderType=15&isautoBuy=0&autosubscribeStatus=0&notUseBackpoint=&sign=\"+sign;\nurl = \"https://android.jjwxc.net/androidapi/buy,\"\npost = {\n\t\"method\":\"POST\",\n\t\"body\":String(body)\n\t}\n a = java.ajax(url+JSON.stringify(post));\n if(/购买成功/.test(JSON.parse(a).message)){\n \tjava.longToast(JSON.parse(a).message);\n \tresult  = true\n \t}else{\n \t\tmm = JSON.parse(a).message==\"\"?JSON.parse(a).popupdata.popupmessage+\"\\n❗️进晋江app进行一次验证后❗️才能在阅读app使用购买功能\":JSON.parse(a).message;\n \t\tjava.longToast(mm);\n}",
      "replaceRegex": "##\\(本章完\\)|\\(\\)|\\(第\\d+/\\d+页\\)|(?:.*(?:蟹蟹|扔了|感谢|投出|灌溉营养液|送的|谢谢).*?(?:手榴|月票|霸王票|小天使|火箭炮|深水鱼雷|浅水炸弹|地雷|营养液)([xX]\\d+)*.*|.*?瓶[；~]|\".*?\"(?:营养液|手榴弹|月票|霸王票|小天使|火箭炮|深水鱼雷|浅水炸弹|地雷)x\\d+|读者.*?(月石|营养液).*|地雷感谢：[\\s\\S]+)",
      "subContent": "@js:\nlet chapterParams = JSON.parse(java.hexDecodeToString(result));\nif(chapterParams.source == '番茄听书' || chapterParams.source == '番茄畅听'){\n    try{\n        let toneId = getTtsTone('fanqie');\n        let apiUrl = getServerHost() + '/audio_lrc?item_id=' + chapterParams.item_id + '&tone_id=' + toneId;\n        let lrcData = java.ajax(apiUrl);\n        result = decode(lrcData);\n    }catch(e){\n        result='';\n    }\n}else if(chapterParams.source == '七猫听书'){\n    try{\n        let bookId = chapterParams.book_id || '';\n        let itemId = chapterParams.item_id || '';\n        if(bookId && itemId){\n            let apiUrl = getServerHost() + '/audio_lrc?source=qm&book_id=' + bookId + '&item_id=' + itemId;\n            let lrcData = java.ajax(apiUrl);\n            result = decode(lrcData);\n        }else{\n            result='';\n        }\n    }catch(e){\n        result='';\n    }\n}else{\n    result='';\n}",
      "title": "@js:\nlet isAndroid = deviceType();\nlet title = chapter.title || \"\";\n\nif (isAndroid) {\n    let chapterParams = JSON.parse(java.hexDecodeToString(result));\n    \n    let bookid = chapterParams.bookid || null;\n    let chapterid = chapterParams.chapterid || null;\n    \n    let yunparaStatus = java.get(\"yunpara\") || \"off\";\n    \n    let isModifiedVersion = checkEnv();\n    let isQingRead = isQRead();\n    \n    let isQQSource = chapterParams.source == 'QQ阅读' || chapterParams.source == '企鹅看书';\n    let isQDSource = chapterParams.source == '起点';\n    \n    if ((isModifiedVersion || isQingRead) && yunparaStatus == \"on\" && bookid && chapterid) {\n        if (isQQSource || isQDSource) {\n            let Bubble = cache.get(bookid + \"_\" + chapterid) || \"\";\n            title = title + Bubble;\n        }\n    }\n}\ntitle;"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "<js>\nfunction getBookIdFull(url) {\n    const {java} = this;\n    let $ = JSON.parse(url).data;\n    let arr = [];\n    if ($.book_shelf_info && $.book_shelf_info.length > 0) {\n        arr = $.book_shelf_info.map(item => item.book_id);\n    } else if ($.data_list && $.data_list.length > 0) {\n        arr = $.data_list.map(item => item.book_id_str);\n    } else {\n        java.toast(\"获取 book_id 失败，你可能需要登录！\");\n    }\n    return arr;\n}\n\nlet session = getSessionId()\n\ngetShelf = () => {\n    let book_shelf_info = java.ajax(getServerHost() + \"/book_shelf?session=\" + session)\n    \n    bid = getBookIdFull(book_shelf_info)\n    \n    let id_list = splitArray(bid, 200)\n    let urls = []\n    id_list.forEach(i => {\n        urls.push(getServerHost() +\"/detail?book_id=\" + i.join(\",\"))\n    })\n    res = java.ajaxAll(urls)\n\n    let resp = {book_info: []}\n    res.forEach(r => {\n        resp.book_info = resp.book_info.concat(JSON.parse(r.body()).data)\n    })\n\n    return resp\n}\n\nfunction getByGroupName(name) {\n    let book_shelf_info = JSON.parse(java.ajax(getServerHost() +\"/book_shelf?session=\" + session))\n    \n    let group_bookids = {\n        \"未分组\": []\n    }\n    book_shelf_info.data.book_shelf_info.forEach(i => {\n        if (!group_bookids[i.group_name ? i.group_name : \"未分组\"]) group_bookids[i.group_name] = []\n        group_bookids[i.group_name ? i.group_name : \"未分组\"].push(i.book_id)\n    })\n    \n    if (!group_bookids[decodeURIComponent(name)]) return {data: []}\n    \n    let book_ids = splitArray(group_bookids[decodeURIComponent(name)], 200)\n    let urls = []\n\n    book_ids.forEach(i => { \turls.push(getServerHost() +\"/detail?book_id=\" + i.join(\",\"))\n    })\n    \n    res = java.ajaxAll(urls)\n\n    let resp = {book_info: []}\n    res.forEach(r => {\n        resp.book_info = resp.book_info.concat(JSON.parse(r.body()).data)\n    })\n\n    return resp\n}\n\nfunction getByTabIndex(index) {\n    let url = _mlsec.requestHeader(\n        \"bookmall/tab\",\n        \"version_name=5.8.9.32\",\n        null,\n        \"sessionid=\" + session\n    )\n    let all = JSON.parse(java.ajax(url))\n    let tab = all.data.tab_item[0].cell_data[index].cell_data\n    if (!tab) tab = []\n    let bookList = []\n    for (let i of tab) {\n        bookList = bookList.concat(i.book_data)\n    }\n    return { book_info: bookList }\n}\n\nfunction getGuessYouLike() {\n    let apiUrl = 'https://reading.snssdk.com/reading/bookapi/bookmall/tab/v/?version_name=5.8.9.32&device_id=1024&device_type=114514&iid=2048&aid=1967&channel=0&os_version=0&app_name=novelapp&version_code=58932&device_platform=android'\n    let response = java.ajax(apiUrl + ', ' + JSON.stringify({\n        headers: {\n            'Cookie': \"sessionid=\" + session\n        }\n    }))\n    let responseData = JSON.parse(response)\n    let finalResult = {\n        code: 0,\n        message: 'SUCCESS',\n        data: {\n            cell_view: {\n                book_data: []\n            }\n        }\n    }\n    if (responseData.data && responseData.data.tab_item && responseData.data.tab_item.length > 0 && responseData.data.tab_item[0].cell_data && responseData.data.tab_item[0].cell_data.length > 0 && responseData.data.tab_item[0].cell_data[0].cell_data && responseData.data.tab_item[0].cell_data[0].cell_data.length > 0 && responseData.data.tab_item[0].cell_data[0].cell_data[0].book_data) {\n        finalResult.data.cell_view.book_data = responseData.data.tab_item[0].cell_data[0].cell_data[0].book_data\n    }\n    return finalResult\n}\n\nfunction normalizeResponse(data) {\n    if (data.data && data.data.book_list && Array.isArray(data.data.book_list)) {\n        return data.data.book_list;\n    }\n    \n    if (data.book_info) return data.book_info;\n    if (data.data && data.data.book_info) return data.data.book_info;\n    if (data.data && Array.isArray(data.data)) return data.data;\n    if (data.list) return data.list;\n    if (data.book_list) return data.book_list;\n    if (data.data && data.data.publication_list) return data.data.publication_list;\n    if (data.result) return data.result;\n    if (data.data && data.data.result) return data.data.result;\n    if (data.data && data.data.cell_view && data.data.cell_view.book_data) {\n        return data.data.cell_view.book_data;\n    }\n    if (data.data && data.data.records) return data.data.records;\n    if (data.data && data.data.list) return data.data.list;\n    \n    return [];\n}\n\nif (baseUrl.includes(\"jj_signin\")) {\n    let decodedToken = java.base64Decode(JJtoken());\n    let timestamp = Date.now();\n    let enbody = timestamp + ':' + decodedToken;\n    let encodedEnbody = encode(enbody);\n    \n    let signUrl = \"https://app.jjwxc.org/androidapi/signin,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"versionCode=313&sign=\" + encodedEnbody + \"\\\"}\";\n    \n    let signinResult = java.ajax(signUrl);\n    \n    let result = JSON.parse(signinResult);\n    let message = result.message || \"签到请求完成\";\n    \n    let responseData = {\n        \"isSuccess\": result.code == \"200\",\n        \"errorMsg\": result.code == \"200\" ? \"success\" : \"fail\",\n        \"data\": [{\n            \"title\": message\n        }]\n    };\n    \n    JSON.stringify(responseData);\n} else if (baseUrl.includes(\"jjbookshelf\")) {\n    let token = JJtoken();\n    let jjUrl = baseUrl + token;\n    result = JSON.parse(java.ajax(jjUrl));\n    JSON.stringify(result);\n} else if (baseUrl.includes(\"type_style\")) {\n    let sortKey = getSortKey() || '';\n    let newUrl = baseUrl + sortKey;\n    result = JSON.parse(java.ajax(newUrl));\n    \n    let normalizedData = normalizeResponse(result);\n    JSON.stringify({data: normalizedData});\n} else if (baseUrl.endsWith(\"bookshelf\")) {\n    result = getShelf(\"bookshelf/info\")\n} else if(/read_history/.test(baseUrl)) {\n    let pageMatch = baseUrl.match(/page=(\\d+)/);\n    let page = pageMatch ? pageMatch[1] : '1';\n    \n    let history_response = java.ajax(getServerHost() + \"/read_history?session=\" + session + \"&page=\" + page)\n    let history_data = JSON.parse(history_response)\n    \n    if (history_data.data.data_list) {\n        let book_ids = history_data.data.data_list.map(item => item.book_id_str)\n        \n        let id_list = splitArray(book_ids, 200)\n        let urls = []\n        id_list.forEach(i => {\n          urls.push(getServerHost() +\"/detail?book_id=\" + i.join(\",\"))\n        })\n        \n        let resp = {book_info: []}\n        urls.forEach(url => {\n            let detailResponse = java.ajax(url)\n            let detailData = JSON.parse(detailResponse)\n            if (detailData.data) {\n                resp.book_info = resp.book_info.concat(detailData.data)\n            }\n        })\n        \n        result = resp\n    } else {\n        result = {book_info: []}\n    }\n} else if (baseUrl.includes(\"style_top\")) {\n    result = JSON.parse(result);\n} else if (baseUrl.includes(\"/tab/cai\")) {\n    result = getGuessYouLike();\n} else {\n    let w = baseUrl.split(\"/\")\n    if (baseUrl.includes(\"groupName\")) {\n        result = getByGroupName(w[w.length - 1])\n    } else if (baseUrl.includes(\"tab\")) {\n        result = getByTabIndex(parseInt(w[w.length - 1]))\n    } else {\n        result = JSON.parse(result)\n        if (result.data && result.data.data) {\n            result = {book_info: result.data.data}\n        }\n    }\n}\n\nif (!baseUrl.includes(\"jjbookshelf\") && !baseUrl.includes(\"type_style\") && !baseUrl.includes(\"jj_signin\")) {\n    let normalizedData = normalizeResponse(result);\n    JSON.stringify({data: normalizedData})\n}\n</js>\n$.data[*]",
      "bookUrl": "<js>\nlet source = result.source;\nlet book_url = result.book_url;\nlet title = result.title || result.book_name || result.bookName;\nlet book_id = result.book_id || result.series_id || result.bookId;\nlet cover = result.thumb_url || result.thumb_url || result.thumbUri || result.cover;\nlet desc = result.desc || result.abstract;\n\nlet detail = {\n    source: source,\n    url: book_url,\n    cover: cover,\n    desc: desc,\n    name: title\n};\n\nif (book_id && /^\\d{19}$/.test(book_id)) {\n    detail.cover = cover;\n    detail.desc = desc;\n    detail.url = java.base64Encode(`https://api5-normal-sinfonlineb.fqnovel.com/reading/bookapi/multi-detail/v/?aid=1967&iid=1&version_code=999&book_id=${book_id}`);\n    detail.source = \"番茄小说\";\n} else if (book_url) {\n    detail.url = java.base64Encode(book_url);\n}\n\nlet yunurl = java.base64Encode(JSON.stringify(detail));\n`data:detailsUrl;base64,${yunurl},{\"type\":\"susan\"}`;\n</js>",
      "coverUrl": "$.thumb_url||$.audio_thumb_uri||$.thumbUri||$.cover",
      "intro": "$.abstract||$.desc",
      "kind": "$.tags",
      "lastChapter": "$.lastChapterTitle||$.last_chapter_title||$.latestChapterTitle",
      "name": "$.book_name||$.bookName||$.original_book_name||$.title",
      "wordCount": "$.word_number||$.WordsCount"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.data",
      "bookUrl": "<js>\nlet source = String(result.source);\nlet book_url = result.book_url;\nlet title = result.title;\nlet cover = result.cover;\nlet desc = result.desc;\n\nlet detail = {\n    source: source,\n    url: book_url,\n    cover: cover,\n    desc: desc,\n    name: title\n};\n\nyunurl = java.base64Encode(JSON.stringify(detail));\n`data:detailsUrl;base64,${yunurl},{\"type\":\"susan\"}`;\n</js>",
      "checkKeyWord": "我在精神病院学斩神@番茄小说",
      "coverUrl": "$.cover",
      "intro": "$.desc",
      "kind": "$.tags",
      "lastChapter": "{{$.source}}·{{$.latestChapterTitle}}",
      "name": "$.title",
      "wordCount": "$.wordCount"
    },
    "ruleToc": {
      "chapterList": "<js>\nlet res = JSON.parse(java.hexDecodeToString(result));\nlet catalog = {source: res.source, url: res.url, name: res.name, bookid: res.bookid || \"\", tab: res.tab || \"novel\"};\n\nshowTabTips(catalog);\n\nlet op = {method: \"POST\", body: catalog};\n\nlet catalogUrl = getServerHost() + `/catalog,${JSON.stringify(op)}`;\nlet response = java.ajax(catalogUrl);\n//java.log(response);\n\nlet device = deviceType() ? 'ios' : 'android';\n\nif (device == 'android') {\n    var typeMap = {audio:32, comic:64};\n    book.type = catalog.tab in typeMap ? typeMap[catalog.tab] : 8;\n} else {\n    var typeMap = {audio:1, comic:2, video:3};\n    book.type = catalog.tab in typeMap ? typeMap[catalog.tab] : 0;\n}\n\nJSON.parse(response).data.map((x) => {\n    if (x.isVolume == true) {\n        x.url = \"\";\n        return x;\n    }\n    \n    x.url = buildChapterUrl(x, catalog);\n    return x;\n});\n</js>",
      "chapterName": "title",
      "chapterUrl": "url",
      "isPay": "isPay",
      "isVip": "isVip",
      "isVolume": "isVolume",
      "updateTime": "tag"
    },
    "searchUrl": "<js>\nlet config = getConfig.call(this);\nif (!config.host || !config.gender) {\n    config = { gender: \"boy\", host: getServerHost() };\n    setConfigs.call(this, config);\n    java.toast(\"配置初始化完成\");\n}\n\nvar sourceVal = '';\nvar customSource = '';\n\ntry {\n    customSource = (source.getLoginInfoMap())['自定义源站'];\n} catch(e) {\n    customSource = '';\n}\n\nif (customSource !== undefined && customSource !== null && String(customSource).trim() !== \"\") {\n    sourceVal = String(customSource).trim();\n} else if (config.source) {\n    sourceVal = config.source;\n}\n\nvar param = sourceVal ? '&source=' + encodeURIComponent(sourceVal) : '';\n\nresult = buildSearchResult(key, param, getServerHost());\n</js>",
    "weight": 0
  },
  {
    "bookSourceComment": "by二月无雪\n交流群：1097919737",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "米读小说（+++）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://api.midureader.com",
    "concurrentRate": "1000",
    "customButton": false,
    "customOrder": -4,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvar s = [];\nfunction p(t, u, w){ s.push({title:t, url:u, style:{layout_flexGrow:1, layout_flexBasisPercent:w}}); }\nfunction qs(k, u){ var m = (u || '').match(new RegExp('[?&]' + k + '=([^&]*)')); return m ? decodeURIComponent(m[1]) : ''; }\nvar config = {};\ntry { config = JSON.parse(source.getVariable() || '{}'); } catch(e) {}\nvar gender = config.gender || '男频';\ns.push({title:\"⚧ 频道\", type:\"select\", chars:[\"男频\",\"女频\"], default:gender,\n  action:\"(function(){var c={};try{c=JSON.parse(source.getVariable()||'{}');}catch(e){}c.gender=infoMap['⚧ 频道']||'男频';source.setVariable(JSON.stringify(c));java.refreshExplore();})()\",\n  style:{layout_flexGrow:1, layout_flexBasisPercent:1}});\ntry {\n  var sceneId = (gender === '女频') ? 282 : 281;\n  var catUrl = \"https://api.midureader.com/fiction/scene/getCategoryV4,\" + JSON.stringify({method:\"POST\", body:\"app=midu&id=\" + sceneId});\n  var catResp = String(java.ajax(catUrl) || '');\n  var catJson = JSON.parse(catResp);\n  var tags = (catJson && catJson.data && catJson.data.config && catJson.data.config.tagsV3) || [];\n  for (var i = 0; i < tags.length; i++) {\n    var t = tags[i] || {};\n    var name = String(t.name || '').trim();\n    var type = t.type;\n    if (!name || type === '2') continue;\n    var link = t.link || '';\n    var sc = qs('secondChannelId', link);\n    var tg = qs('tagId', link);\n    var url;\n    if (sc) {\n      // 主分类：分类书单接口（second_channel 过滤准确）\n      url = \"https://api.midureader.com/fiction/search/channel,\" + JSON.stringify({method:\"POST\", body:\"app=midu&second_channel=\" + sc + \"&status=&rank=&page={{page-1}}\"});\n    } else if (tg) {\n      // 流派/题材/风格/角色/热门 等标签：关键词搜索\n      url = \"https://api.midureader.com/fiction/search/search,\" + JSON.stringify({method:\"POST\", body:\"app=midu&keyword=\" + encodeURIComponent(name) + \"&page={{page-1}}\"});\n    } else {\n      continue;\n    }\n    p(name, url, 0.4);\n  }\n} catch(e) {}\nJSON.stringify(s);\n",
    "header": "{\"User-Agent\": \"okhttp/3.12.1\"}",
    "lastUpdateTime": 1787305336893,
    "loginUi": "@js:\nvar all = [];\nall.push({\"name\": \"💬 联系交流（点击跳转）\", \"type\": \"button\", \"action\": \"joinQQGroup()\", \"style\": {\"layout_flexGrow\": 1, \"layout_flexBasisPercent\": 1}});\nall.push({\"name\": \"🎨 联系制作（点击跳转）\", \"type\": \"button\", \"action\": \"contactMaker()\", \"style\": {\"layout_flexGrow\": 1, \"layout_flexBasisPercent\": 1}});\nresult = JSON.stringify(all);\n",
    "loginUrl": "var QQ_GROUP = \"1097919737\";\nvar MAKER_QQ = \"1820480783\";\nfunction login(){\n  try{ java.upLoginData(); }catch(e){}\n  java.toast(\"设置已保存\");\n}\nfunction joinQQGroup(){\n  var u = \"mqqapi://card/show_pslcard?src_type=internal&version=1&card_type=group&uin=\" + QQ_GROUP;\n  try{\n    java.openUrl(u);\n    java.toast(\"已尝试打开QQ，若未跳转请手动搜索群号 \" + QQ_GROUP);\n  }catch(e){ java.longToast(\"请手动在QQ中搜索群号 \" + QQ_GROUP); }\n}\nfunction contactMaker(){\n  var u = \"mqqapi://card/show_pslcard?src_type=internal&version=1&card_type=friend&uin=\" + MAKER_QQ;\n  try{\n    java.openUrl(u);\n    java.toast(\"已尝试打开QQ，若未跳转请手动添加 \" + MAKER_QQ);\n  }catch(e){ java.longToast(\"请手动在QQ中搜索 \" + MAKER_QQ); }\n}\n",
    "respondTime": 7281,
    "ruleBookInfo": {
      "author": "$.author||$..emAuthor",
      "coverUrl": "$..cover",
      "init": "$.data",
      "intro": "<useweb>\n<style>*{box-sizing:border-box;margin:0;padding:0}\nbody{background:transparent!important}\n.card{font-family:'Noto Sans CJK SC','Source Han Sans SC','PingFang SC','Microsoft YaHei',sans-serif;color:inherit;background:transparent!important;border-radius:18px;padding:18px;box-shadow:none}\n.card,.card *{color:inherit!important}\n.hero{display:flex;gap:16px;align-items:stretch}\n.cover{width:100px;height:138px;object-fit:cover;border-radius:12px;flex-shrink:0;border:1px solid rgba(127,127,127,.25)}\n.hero-main{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:center}\n.title{font-size:21px;font-weight:800;line-height:1.35;margin-bottom:8px;background:linear-gradient(90deg,#0f766e,#0ea5a4);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}\n.row{display:flex;align-items:baseline;gap:8px;margin-top:4px}\n.off{font-size:12px;font-weight:800;opacity:.6;letter-spacing:1px;flex-shrink:0}\n.hand{font-family:'Noto Serif CJK SC','Source Han Serif SC','SimSun','Songti SC','STSong',serif;font-size:14px;font-weight:700;line-height:1.9}\n.hand.cat{color:inherit!important;opacity:.85}\n.badges{display:flex;flex-wrap:wrap;gap:6px;margin-top:10px}\n.badge{font-size:11px;padding:3px 10px;border-radius:20px;background:rgba(127,127,127,.12);font-weight:700}\n.badge.hot{background:linear-gradient(90deg,#0f766e,#0ea5a4);color:#fff!important}\n.stats{display:flex;margin:16px 0 4px;background:rgba(127,127,127,.08);border-radius:14px;padding:12px 0;text-align:center}\n.stat{flex:1;position:relative}\n.stat+.stat::before{content:'';position:absolute;left:0;top:22%;height:56%;width:1px;background:rgba(127,127,127,.25)}\n.stat b{display:block;font-size:17px;font-weight:800}\n.stat span{font-size:11px;opacity:.6;font-weight:800}\n.section{margin-top:14px}\n.section h3{font-size:14px;font-weight:800;margin-bottom:7px;display:flex;align-items:center;gap:7px;letter-spacing:1px}\n.section h3::before{content:'';width:4px;height:14px;border-radius:2px;background:linear-gradient(180deg,#0f766e,#0ea5a4)}\n.tags{display:flex;flex-wrap:wrap;gap:6px}\n.tag{font-size:12px;padding:3px 11px;border-radius:8px;background:rgba(127,127,127,.10);font-weight:700}\n.rank{font-size:13px;padding:9px 12px;border-radius:10px;background:rgba(127,127,127,.06);border:1px solid rgba(127,127,127,.22)}\n.rank b{font-weight:800}\n.intro-text{font-size:14px;line-height:2;text-align:justify;text-indent:2em;font-family:'Noto Serif CJK SC','Source Han Serif SC','SimSun','Songti SC','STSong',serif}\n/* 关键信息：灰青突出（作者/评分粉丝值万字/标签/声明四字/二月无雪/24小时内删除） */\n.hand,.stat b,.tag,.notice .off,.notice b{color:#0f766e!important}\nhtml.dark .hand,html.dark .stat b,html.dark .tag,html.dark .notice .off,html.dark .notice b{color:#5eead4!important}\n.notice .off{opacity:1}\n/* 底栏（书源声明）：透明，跟随阅读主题 */\n.notice{margin-top:16px;padding:10px 14px;border:1px dashed rgba(127,127,127,.4);border-radius:12px;font-size:12px;text-align:center;line-height:1.8;background:transparent}\n.notice .hand{font-size:12.5px}</style>\n<div class=\"card\">\n  <div class=\"hero\">\n    <img class=\"cover\" src=\"{{$.cover}}\" onerror=\"this.style.display='none'\"/>\n    <div class=\"hero-main\">\n      <div class=\"title\">{{$.title}}</div>\n      <div class=\"row\"><span class=\"off\">作者</span><span class=\"hand\">{{$.author}}</span></div>\n      <div class=\"row\"><span class=\"off\">分类</span><span class=\"hand cat\">{{$.category}}</span></div>\n      <div class=\"badges\">\n        <span class=\"badge\">{{java.getString('$.end_status')=='1'?'完结':'连载'}}</span>\n        <span class=\"badge hot\">🔥 {{$.hot}}{{$.hotLabel}} 热度</span>\n      </div>\n    </div>\n  </div>\n  <div class=\"stats\">\n    <div class=\"stat\"><b>{{$.score}}</b><span>评分</span></div>\n    <div class=\"stat\"><b>{{$.commentHscore.hscore}}{{$.commentHscore.hscore_unit}}</b><span>粉丝值</span></div>\n    <div class=\"stat\"><b>{{Number(java.getString('$.word_count'))>10000?(Number(java.getString('$.word_count'))/10000).toFixed(1):java.getString('$.word_count')}}</b><span>万字</span></div>\n  </div>\n    {{(function(){var t=String(java.getString('$.tags[*].name')||'');var a=t.split(/\\n+/).filter(function(x){return x&&x!='null'&&x!='undefined'});return a.length?('<div class=\"section\"><h3>作品标签</h3><div class=\"tags\">'+a.map(function(x){return '<span class=\"tag\">'+x+'</span>'}).join('')+'</div></div>'):'';})()}}\n    {{(function(){var n=String(java.getString('$.rankInfo.name')||''),o=String(java.getString('$.rankInfo.order')||''),t=String(java.getString('$.rankInfo.timeDimension')||'');if(!n||n=='null'||!o||o=='null'||o=='0')return '';return '<div class=\"section\"><h3>上榜信息</h3><div class=\"rank\">🏅 <b>'+n+'</b> 第 <b>'+o+'</b> 名（'+t+'）</div></div>';})()}}\n  <div class=\"section\">\n    <h3>内容简介</h3>\n    <div class=\"intro-text\">{{$.description}}</div>\n  </div>\n  <div class=\"notice\"><span class=\"off\">书源声明</span>：<span class=\"hand\">此书源由<b>二月无雪</b>所制，仅供交流学习，禁止分享与二创，请在使用<b>24小时内删除</b>，谢谢配合！</span></div>\n</div>\n</useweb>",
      "kind": "{{java.getString('$.end_status')=='1'?'完结':'连载'}}\n{{$.category}}\n{{$.score}}分",
      "name": "$.title",
      "tocUrl": "@js:\ntry {\n  \"https://book.midureader.com/book/chapter_list/100/{{$.book_id}}.txt\"\n} catch(e) {\n  \"https://book-spare.midureader.com/book/chapter_list/100/{{$.book_id}}.txt\"\n}\n",
      "wordCount": "$.word_count"
    },
    "ruleContent": {
      "content": "$..content\n@js:\n   if(result!=\"\"){\tresult}\n      else{java.ajax(baseUrl)}"
    },
    "ruleExplore": {
      "author": "$.author||$..leftTags..text## · .*",
      "bookList": "$.data[*]",
      "bookUrl": "https://api.midureader.com/fiction/book/getDetail,{\n  \"method\": \"POST\",\n  \"body\": \"app=midu&book_id={{$..book_id}}\"\n}",
      "coverUrl": "$.cover",
      "intro": "$.description",
      "kind": "$..leftTags..text##.*? · (.*?) · .*##$1||$.category",
      "name": "$.title",
      "wordCount": "$..leftTags..text##.*·"
    },
    "ruleSearch": {
      "author": "$..author||$..emAuthor",
      "bookList": "$.data[*]",
      "bookUrl": "https://api.midureader.com/fiction/book/getDetail,{\n  \"method\": \"POST\",\n  \"body\": \"app=midu&book_id={{$..book_id}}\"\n}",
      "coverUrl": "$..cover",
      "intro": "$..description",
      "kind": "{{java.getString('$.end_status')=='1'?'完结':'连载'}}\n{{$.category}}",
      "name": "$..title",
      "wordCount": "$.word_count"
    },
    "ruleToc": {
      "chapterList": "$.[*]",
      "chapterName": "$.title",
      "chapterUrl": "@js:\ntry {\n  \"https://book.midureader.com/book/chapter/segment/master/{{$.bookId}}/{{$.chapterId}}/{{$.content_md5}}.txt\"\n} catch(e) {\n  \"https://book.midureader.com/book/chapter/master/{{$.bookId}}_{{$.chapterId}}.txt\"\n}\n"
    },
    "searchUrl": "@js:\n\"https://api.midureader.com/fiction/search/search,\" + JSON.stringify({\"method\":\"POST\",\"body\":\"app=midu&keyword={{key}}&page={{page-1}}\"})\n",
    "weight": 0
  },
  {
    "bookSourceComment": "24.12.4",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "QQ阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "https://ubook.reader.qq.com",
    "customButton": false,
    "customOrder": -3,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\n    \"title\":\"༺ˇ»`ʚ排行榜ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\n    \"title\":\"月票榜\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543063&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"畅销榜\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543064&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"潜力榜\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543065&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"完结榜\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543069&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"新书榜\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543072&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"比心榜\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543074&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"免费爆款\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543077&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"免费完结\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543395&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"免费飙升\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543085&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  \n  \n  \n{\n    \"title\":\"༺ˇ»`ʚ情节主题ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\"title\":\"穿越\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000722,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000722\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"东方玄幻\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000724,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000724\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"重生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000837,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000837\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"现代都市\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000728,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000728\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"修仙\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000817,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000817\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"权谋\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000774,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000774\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异能\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000823,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000823\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异界\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000822,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000822\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"娱乐圈\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000828,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000828\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"逆袭\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000775,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000775\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"修真\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000818,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000818\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"种田\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000838,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000838\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"爱情\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000748,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000748\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏异界\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000827,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000827\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"高武\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000739,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000739\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"魔法\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000772,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000772\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"神话\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000793,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000793\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"养成\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000777,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000777\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"诡秘\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000744,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000744\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科举\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000760,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000760\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"末世\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000773,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000773\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"修罗场\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000727,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000727\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"克苏鲁\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001075,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001075\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"鉴宝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000752,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000752\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"黑科技\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000746,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000746\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"抗战\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001010\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"LOL\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001069,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001069\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"电竞\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000723,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000723\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"寒门子弟\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001015\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001070,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001070\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"美食\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000769,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000769\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"朝堂江湖\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001002\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"萌宠\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000770,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000770\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"巫师流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001027,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001027\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"盛世\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001030,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001030\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"军工\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001011\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"蒸汽朋克\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001076,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001076\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"塔防\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001072,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001072\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"篮球\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000870,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000870\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"第四天灾\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001083,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001083\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"签到\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000875,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000875\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"荒野求生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001054,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001054\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"高龄\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001044,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001044\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"乡村\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001041,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001041\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"聊天群\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000767,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000767\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"战争\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000830,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000830\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"小兵\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001012\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"直播\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000834,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000834\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"气运流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001032,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001032\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"硬科幻\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000992,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000992\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"航空\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001220,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001220\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"赛博朋克\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000993,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000993\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"足球\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000871,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000871\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"探险\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000800,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000800\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"民俗\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000990,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000990\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"人间百态\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001046,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001046\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"军旅\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000756,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000756\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠幻想\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001001\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"DND\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001071,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001071\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"店主\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000989,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000989\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄学\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000819,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000819\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"夺舍\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000984,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000984\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿书\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000985,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000985\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"卡牌\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000757,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000757\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"侠客\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001004\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科技修真\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001078,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001078\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"机甲\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000742,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000742\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"中年\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001042,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001042\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"丧尸\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001029,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001029\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"山海经\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001040,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001040\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"生存挑战\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000988,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000988\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"考古\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001055,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001055\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"史诗奇幻\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000797,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000797\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宗门\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001003\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"主神创世\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001050,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001050\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"乱世\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001031,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001031\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"手足情深\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001045,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001045\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奇妙幻想\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000779,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000779\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"扶贫\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001043,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001043\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"传统武侠\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001000,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001000\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"吃鸡\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001073,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001073\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"家庭伦理\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001033,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001033\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"社会悬疑\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001048,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001048\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"短故事\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000905,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000905\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女性题材\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001047,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001047\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n  \n  \n  \n  {\n    \"title\":\"༺ˇ»`ʚ行文流派ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\"title\":\"天才流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000802,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000802\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"系统流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000814,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000814\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"无敌流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000809,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000809\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"经营流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000755,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000755\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"诸天流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000839,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000839\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"升级流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000795,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000795\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"无限流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000812,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000812\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"争霸\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000833,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000833\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"凡人流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000735,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000735\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"洪荒流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000747,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000747\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"进化流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000754,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000754\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"专业文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000999,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000999\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"富民\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001006\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"时空流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000796,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000796\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"开局流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000759,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000759\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"幕后流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000996,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000996\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"职业文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000835,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000835\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学院流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000821,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000821\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"召唤流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000832,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000832\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"神医\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000824,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000824\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"技术流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000750,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000750\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"随身流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000799,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000799\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"商战\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001085,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001085\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"废柴流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000737,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000737\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"极道流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000749,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000749\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"家族\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001084,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001084\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"开挂\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000758,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000758\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"悬疑流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000820,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000820\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"互联网\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000997,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000997\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"刑侦\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001079,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001079\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"侦探推理\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001080,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001080\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"御兽流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001082,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001082\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"赘婿流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000840,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000840\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"轮回者\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001049,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001049\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异兽流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000825,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000825\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"骑士流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000780,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000780\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"掌门流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000831,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000831\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学术\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001063,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001063\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"原始流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000829,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000829\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"基建流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001007\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"抽奖\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001013\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"祖宗流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001005\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"氪金\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001014\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"策略流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000998,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000998\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"儒道流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000790,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000790\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"国术\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000745,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000745\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"管理局\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001008\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n  \n  \n  {\n    \"title\":\"༺ˇ»`ʚ时空背景ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\"title\":\"架空\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000751,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000751\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"年代文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000776,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000776\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"明朝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001023,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001023\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"星际\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000816,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000816\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"未来\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000805,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000805\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"贞观\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001021,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001021\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"秦汉三国\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000782,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000782\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"美洲\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001019,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001019\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"秦汉\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001034,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001034\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"两晋隋唐\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000765,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000765\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宋朝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001022,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001022\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"元宇宙\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001077,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001077\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"清朝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001036,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001036\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"欧洲\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001018,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001018\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"非洲\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001020,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001020\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"外国历史\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001016,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001016\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"五代十国\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000808,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000808\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"上古先秦\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000792,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000792\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"清史民国\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000784,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000784\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"民间传说\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001017\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n  \n  \n  \n  {\n    \"title\":\"༺ˇ»`ʚ角色身份ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\"title\":\"至尊流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000863,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000863\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"明星\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000852,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000852\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"君王\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000851,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000851\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"谍战\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001058,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001058\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"太监\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001074,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001074\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女神\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000855,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000855\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"农民\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000842,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000842\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"法师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000844,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000844\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"道门\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001039,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001039\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"谍战特工\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001056,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001056\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玩家\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000858,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000858\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"NPC\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001064,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001064\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学霸\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000873,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000873\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"特种兵\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001061,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001061\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"门阀\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001026,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001026\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"盗贼\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001068,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001068\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"战士\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000877,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000877\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"写手\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000859,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000859\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"御宅族\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000861,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000861\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"和尚\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000879,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000879\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"保安\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000994,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000994\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"杀手\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001059,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001059\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"锦衣卫\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000849,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000849\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"大师兄\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000878,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000878\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙君\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000864,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000864\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"神奇生物\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001028,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001028\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"牧师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001065,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001065\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女尊\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000854,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000854\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"世家\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001025,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001025\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"弓箭手\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001066,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001066\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"保镖\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000995,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000995\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"兵王\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001057,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001057\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n  \n  \n  \n  \n  {\n    \"title\":\"༺ˇ»`ʚ角色性格ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\"title\":\"杀伐果断\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000847,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000847\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"成熟\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000843,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000843\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"思路清奇\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000845,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000845\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"腹黑\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000874,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000874\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"扮猪吃虎\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000719,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000719\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"自律\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000866,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000866\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"思想迪化\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001053,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001053\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"嘴炮\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000867,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000867\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"钢铁直男\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000846,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000846\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n  \n  \n  \n  {\n    \"title\":\"༺ˇ»`ʚ内容风格ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\"title\":\"轻松\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000785,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000785\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"热血\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000788,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000788\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"快节奏\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000762,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000762\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"搞笑\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000740,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000740\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"群像\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000787,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000787\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"正能量\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000862,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000862\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"无金手指\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000810,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000810\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"单女主\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000718,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000718\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"校园\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001035,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001035\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"无CP\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000807,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000807\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"反套路\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000736,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000736\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"红包流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001051,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001051\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"治愈\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000836,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000836\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"扮演流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001052,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001052\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"励志\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000764,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000764\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"青春\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000783,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000783\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"多女主\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000729,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000729\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n  \n  \n  \n  {\n    \"title\":\"༺ˇ»`ʚ衍生同人ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\"title\":\"同人衍生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000781,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000781\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"斗罗\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000732,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000732\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"斗破\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000731,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000731\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"综漫\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000841,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000841\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"红楼\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000726,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000726\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"二次元\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000730,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000730\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"三国\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000791,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000791\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"封神\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000738,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000738\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"水浒\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000987,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000987\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"西游\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000815,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000815\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠衍生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000811,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000811\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"聊斋\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000986,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000986\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"王者荣耀\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000804,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000804\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}\n  ]",
    "lastUpdateTime": 1769596987016,
    "respondTime": 3799,
    "ruleBookInfo": {
      "author": "$.introinfo.book.author",
      "coverUrl": "$.introinfo.book.coverUrl",
      "intro": "&nbsp;\n🕰  更新：{{$.chapinfo.lastChapterUpdateTime##\\s.*}}\n🌟  书架：{{$.introinfo..number##\\n.*}}\n🏷️  标签：{{$.bookTags..tagshortname##\\n##·}}\n📜  简介：\n{{$.introinfo.book.intro}}\n🍚  书评：\n👤：{{$..commentlist..content##\\n##<p>👤：}}##\\[emot.*\\]",
      "kind": "{{$.introinfo..scoretext}}\n{{java.getString('$.introinfo.book.finished')==1?'完结':'连载'}}\n{{$.cate2Info.cate2Name}}\n{{$.cate3Info.cate3Name}}\n{{$.chapinfo.lastChapterUpdateTime##\\s.*}}",
      "lastChapter": "{{$.introinfo.book.lastChapterName##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求含理更谢乐发推票盟补加字].*?[】）\\)]}}•{{$.chapinfo.lastChapterUpdateTime##\\s.*}}\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "name": "$.introinfo.book.title",
      "tocUrl": "https://ubook.reader.qq.com/api/book/chapter-list?bid={{$.introinfo.book.id}}",
      "wordCount": "$.introinfo.book.totalwords"
    },
    "ruleContent": {
      "content": "$.data.content"
    },
    "ruleExplore": {
      "author": "$..author",
      "bookList": "$..bookList[*]",
      "bookUrl": "https://detailadr.reader.qq.com/v7_8_7/nativepage/book/detail?bid={{$..bid}}",
      "coverUrl": "$..bid\n@js:\nvar s = result\nfunction gt(s){\n\tlet a = s.slice(-3)\n\tif(a<10){\n\t\t\tn = s.slice(-1)\n\t\t}\n\telse if(a<100){\n\t\t\tn = s.slice(-2)\n\t\t}\n\telse{\n\t\t\tn = a\n\t\t}\n\treturn n\n}\n\"http://wfqqreader-1252317822.image.myqcloud.com/cover/\"+gt(s)+\"/\"+s+\"/b_\"+s+\".jpg\"",
      "intro": "$..intro",
      "kind": "{{$..catScore}}\n{{java.getString('$.finished')==1?'完结':'连载'}}\n{{$..hotnum}}\n{{$..catel2name}}\n{{$..catel3name}}",
      "lastChapter": "$..lastChapterName##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求含理更谢乐发推票盟补加字].*?[】）\\)]\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "name": "$..title",
      "wordCount": "$..totalWords"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.data.books",
      "bookUrl": "https://detailadr.reader.qq.com/v7_8_7/nativepage/book/detail?bid={{$.id}}",
      "checkKeyWord": "我的模拟长生路",
      "coverUrl": "$.cover",
      "intro": "$.intro",
      "kind": "{{java.getString('$.finished')=='true'?'完结':'连载'}}\n{{$..shortName##小说}}",
      "name": "$.title",
      "wordCount": "$.totalWords"
    },
    "ruleToc": {
      "chapterList": "$.data.chapters",
      "chapterName": "title",
      "chapterUrl": "<js>\nvar bid = baseUrl.match(/\\d+/);\njava.put('bid', bid);\n'https://wxmini.reader.qq.com/api/chapter/content?bid='+bid+'&cid={{$.seq}}'\n</js>",
      "isVip": "{{java.getString('$.free')=='true'?'false':'true'}}",
      "updateTime": "$.publishTime##^##更新时间："
    },
    "searchUrl": "api/search?keywords={{key}}&pageIndex={{page}}&pageSize=20",
    "weight": 0
  },
  {
    "bookSourceComment": "书旗评论api密码加群或者tg拿，免费！\n纯本地书旗源，免费看全部，评论走服务器\n1045801523群号\n纯免费，盗版源\ntg:https://t.me/+SCsvr5O7YIc3NmIx",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "书旗小说（+++）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://ocean.shuqireader.com#1",
    "customButton": false,
    "customOrder": -2,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\n\t\n   \n\t\t\n\t\tfunction category(groupKey) {\t\t\t\t\t\t\t\n\t\t\t params = \"groupKey=\"+groupKey+\"&source=1\";\n    path = \"/api/bcsbizai/category/column/allitems\";\n    url = GetUrl(path, params);\t\t\t\n     return  JSON.parse(java.ajax(url)).data.items; \t\t\n\t\t}\n\n\nconst categorizedData = (i) => {\n  return category(i).reduce((acc, curr) => {\n    const { itemKey, itemSubType, itemName, itemId } = curr;    \n    const originalKey = itemSubType.includes(itemKey) ? itemKey : itemSubType;\n   iTag = itemKey == \"TAG\"?\"tagIds\":itemSubType.includes(\"SECOND\")?\"secondCategoryId\":\"firstCategoryId\";\n    \n    // 键名映射规则\n    const keyMap = {\n      \"CATEGORY\": \"分类\",\n      \"MAIN_LINE\": \"题材\",\n      \"PLOT\": \"情节\",\n      \"ROLE\": \"角色\",\n      \"STYLE\": \"风格\"\n    };\n    // 应用映射后的键名\n    const categoryKey = keyMap[originalKey] || originalKey;\n    \n    // 检查分类是否已经存在\n    let category = acc.find(item => item[0] === categoryKey);\n    // 如果分类不存在，创建新的分类项\n    if (category) {\n      category[1].push([itemName, itemId, iTag]);\n    } else {\n      acc.push([categoryKey, [[itemName, itemId, iTag]]]);\n    }\n    return acc;\n  }, []);\n};\n\t\t\n\t\tcategoryList = (i) =>{\n \t categoryList = categorizedData(i).map([title,list]=>{\t\t\t\n\t\t   push(title, null, 1, 1);\n\t\t   \n\t   list.map(([title,itemId, iTag],index)=>{\t\t\n\t   url = `@js:\n       params = \"curPage=\"+page+\"&pageSize=10&${iTag}=${itemId}\";\n       \n       path = \"/api/bcsbizai/xapi/categoryAndTag/books/h5\";\n       url = GetUrl(path, params);`;\n\t\t\t\tif(index +1<= list.length - list.length%3)\n\t\t\t {\tpush(title, url, 1, 0.25);}\n\t\t\t\telse{ push(title, url, 0, 0.29);}\n\t\t\t\t});\n\t});\n\treturn categoryList;\n} \t   \n\t\t\n\t\t\n\t\teval(String(source.loginUrl));\n\t\tlogin();\n  var v = source.getVariable();\n  var obj = JSON.parse(v)[0].fl[0];\n  var keys = Object.keys(obj);\n\t\tkeys.forEach(key => {\n\t\t\t\tname = key;\n\t\t  \ttype = obj[key]});\n\t push(name, null, 1, 1);\n   categoryList(type);\n\nJSON.stringify(sort);",
    "header": "{\n  \"accept\": \"application/json, text/plain, */*\",\n  \"user-agent\": \"Mozilla/5.0 (Linux; Android 9; Pixel 4 Build/PQ3A.190801.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/81.0.4044.117 Mobile Safari/537.36\",\n  \"content-type\": \"application/x-www-form-urlencoded\",\n  \"origin\": \"https://t.shuqi.com\",\n  \"x-requested-with\": \"mark.via.gp\",\n  \"sec-fetch-site\": \"cross-site\",\n  \"sec-fetch-mode\": \"cors\",\n  \"sec-fetch-dest\": \"empty\",\n  \"accept-language\": \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"\n}",
    "jsLib": "let timeoffset = 2 * 60 * 60 * 1000;\n\nfunction sortedStr(str, i) {\t\n \t  let obj = {};\n    let arr = String(str).split('&');\n    arr.forEach(item => {\n        let [key, value] = item.split('=');\n        obj[key] = value;\n      });\n     var result = Object.keys(obj).sort();\n    if(/platform=0/.test(str)){\n     result = result\n     .map(key=>key + \"=\" + obj[key]).join(\"&\");\n    }else{\n     \tresult = result\n     \t.map(key=> obj[key]).join(\"\");\n    }    \n      return result\n}\n\nfunction Token() {\t\n \t  const { java, source } = this;\n    let origin = \"https://t.shuqi.com\";  \t \n   \tvar token = java.get(origin,{}).cookies()\n    .toString().match(/shuqi_token=([^,]*)/)[1];\n    var head = {\n    \t\t\"authorization\": \"Bearer \"+token\n    \t}; \t\n    token = source.putLoginHeader(\n    \tJSON.stringify(head));\n      return token\n}\n\nfunction GetUrl(path, params, sourceUrl) {\n \t  const { java, source } = this;\n \t  let sourceUrl = sourceUrl || \"https://ocean.shuqireader.com\";\n    var v = source.getVariable();\n    try{\n    var userId = JSON.parse(v)[0].uid[0].userId;\n  }catch(e){\n  \t  var userId = '12345678';\n  \t}\n      \n    var t = Date.now();\n    var time = ~~(t / 1e3);\n         \n    var gateway = \"sq_h5_gateway\";\n    var params0 = \"sqSv=1.0\";\n   \t var params1 = `user_id=${userId}&timestamp=${time}`;\n   \t \n   \t \n   \t \n   \t if (/info/.test(path)) {\n   \t  var skey = \"37e81a9d8f02596e1b895d07c171d5c9\";\n   \t  var params = params1 + \"&\" + params;\t  \n   \t  var sign = java.md5Encode(sortedStr(params) + skey);    \n     var body = params + \"&platform=0&needFreeStack=1&sign=\" + sign;\n   \t  \n   \t}else{\n    \t\tvar skey = \"eefc4798f28ea41622487ad80ef7e81c\";\n    \t\tvar params = params0 + \"&\" + params1 + \"&platform=0&\" + params;\n   \t  var sign = java.md5Encode(sortedStr(params) + \"&skey=\" + skey );\n   \t var body = params + \"&key=\" + gateway + \"&sign=\" + sign;\n   \n   \t\t}\n     \n   if (source.getLoginHeaderMap() == null) {\n   \t    \tthis.Token();\n   }\n  \n   var url = sourceUrl + path + \",\" + JSON.stringify({\n  \"body\": body,\n  \"method\": \"POST\"\n});\n\n   return url;\n}\n\n// SQ_COMMENT_API_V1_BEGIN\nvar SQ_COMMENT_API_BASE = \"https://shuqi.aadcn.cn\";\nvar SQ_COMMENT_API_KEY = \"tongrenshuqi134679\";\nvar _sqRenderExtKey = \"\";\nvar _sqRenderExtValue = null;\nvar _sqMetaMapCache = null;\nvar _sqShortMapCache = null;\n\nfunction sqSource() {\n    try { if (this && this.source) return this.source; } catch(e) {}\n    try { if (typeof source !== \"undefined\") return source; } catch(e2) {}\n    return null;\n}\n\nfunction sqJava() {\n    try { if (this && this.java) return this.java; } catch(e) {}\n    try { if (typeof java !== \"undefined\") return java; } catch(e2) {}\n    return null;\n}\n\nfunction sqLoginValue(key, defaultValue) {\n    try {\n        var s = sqSource.call(this);\n        var map = s && s.getLoginInfoMap ? s.getLoginInfoMap() : null;\n        var value = map && (map.get ? map.get(key) : map[key]);\n        if (value !== null && value !== undefined && String(value).trim() !== \"\") return String(value);\n    } catch(e) {}\n    return defaultValue == null ? \"\" : String(defaultValue);\n}\n\nfunction sqToggle(key, defaultValue) {\n    var value = sqLoginValue.call(this, key, \"\");\n    if (!value) return !!defaultValue;\n    value = String(value).trim().toLowerCase();\n    return value === \"✅\" || value === \"1\" || value === \"true\" || value === \"开\" || value === \"开启\";\n}\n\nfunction sqCommentConfig() {\n    var style = sqLoginValue.call(this, \"◎ 模板\", \"起点\");\n    var templateKey = String(style).replace(\"样式\", \"◎ 气泡\");\n    return {\n        paragraph: sqToggle.call(this, \"段评开关\", false),\n        chapter: sqToggle.call(this, \"章评开关\", false),\n        color: sqLoginValue.call(this, \"段评气泡颜色\", \"#666666\"),\n        colorSplit: sqToggle.call(this, \"段评分色\", false),\n        splitColor: sqLoginValue.call(this, \"分色气泡颜色\", \"#e23b3b\"),\n        splitCount: Number(sqLoginValue.call(this, \"分色评论数\", \"45\")) || 45,\n        hotColor: sqLoginValue.call(this, \"热门气泡颜色\", \"#f06060\"),\n        theme: sqLoginValue.call(this, \"评论主题\", \"自动\"),\n        height: sqLoginValue.call(this, \"评论窗口高度\", \"80\"),\n        bubbleStyle: style,\n        bubbleSize: sqLoginValue.call(this, \"◎ 大小\", \"text\"),\n        bubbleTemplate: sqLoginValue.call(this, templateKey, \"\")\n    };\n}\n\nfunction sqApiKey() {\n    return sqLoginValue.call(this, \"书旗评论 API Key\", \"\") || SQ_COMMENT_API_KEY;\n}\n\nfunction sqPost(path, body) {\n    var j = sqJava.call(this);\n    if (!j) return { ok: false, error: \"java unavailable\" };\n    var payload = body || {};\n    payload.apiKey = sqApiKey.call(this);\n    var option = {\n        method: \"POST\",\n        body: JSON.stringify(payload),\n        headers: { \"Content-Type\": \"application/json\", \"Accept\": \"application/json\" }\n    };\n    try {\n        var raw = j.ajax(SQ_COMMENT_API_BASE + path + \",\" + JSON.stringify(option));\n        var text = String(raw || \"{}\").replace(/^\\uFEFF/, \"\").trim();\n        return JSON.parse(text || \"{}\");\n    } catch(e) {\n        try { j.log(\"书旗评论接口请求失败 \" + path + \": \" + e); } catch(_) {}\n        return { ok: false, error: String(e) };\n    }\n}\n\nfunction sqList(value) {\n    if (!value) return [];\n    if (Array.isArray(value)) return value;\n    if (value.size && value.get) {\n        var result = [];\n        for (var i = 0; i < value.size(); i++) result.push(value.get(i));\n        return result;\n    }\n    return [];\n}\n\nfunction sqRenderExt(bookId, chapterId) {\n    var key = String(bookId || \"\") + \":\" + String(chapterId || \"\");\n    if (key && key === _sqRenderExtKey && _sqRenderExtValue) return _sqRenderExtValue;\n    var response = sqPost.call(this, \"/v1/reader/render-ext\", {\n        bookId: String(bookId || \"\"),\n        chapterId: String(chapterId || \"\")\n    });\n    if (response && response.ok) {\n        _sqRenderExtKey = key;\n        _sqRenderExtValue = response;\n    }\n    return response || { ok: false };\n}\n\nfunction sqParagraphList(response) {\n    try {\n        var outer = response && response.data || {};\n        var data = outer.data || outer.Data || {};\n        var ext = data.bookChapterExtInfo || data.BookChapterExtInfo || {};\n        return sqList(ext.paragraphList || ext.ParagraphList);\n    } catch(e) {\n        return [];\n    }\n}\n\nfunction sqCommentList(response) {\n    try {\n        var outer = response && response.data || {};\n        var data = outer.data || outer.Data || {};\n        return sqList(data.commentList || data.CommentList);\n    } catch(e) {\n        return [];\n    }\n}\n\nfunction sqReadMap(key, cacheName) {\n    if (cacheName === \"meta\" && _sqMetaMapCache !== null) return _sqMetaMapCache;\n    if (cacheName === \"short\" && _sqShortMapCache !== null) return _sqShortMapCache;\n    var map = {};\n    try {\n        var j = sqJava.call(this);\n        var raw = j && j.get ? j.get(key) : \"\";\n        if (raw) map = JSON.parse(String(raw)) || {};\n    } catch(e) { map = {}; }\n    if (cacheName === \"meta\") _sqMetaMapCache = map;\n    if (cacheName === \"short\") _sqShortMapCache = map;\n    return map;\n}\n\nfunction sqLookupChapterMap(map, url) {\n    map = map || {};\n    var raw = String(url || \"\");\n    var optionAt = raw.lastIndexOf(\",{\");\n    if (optionAt > 0) raw = raw.substring(0, optionAt);\n    var candidates = [raw];\n    var queryAt = raw.indexOf(\"?\");\n    if (queryAt >= 0) candidates.push(raw.substring(queryAt));\n    var count = candidates.length;\n    for (var i = 0; i < count; i++) {\n        candidates.push(candidates[i].replace(/0$/, \"1\"));\n        candidates.push(candidates[i].replace(/1$/, \"0\"));\n    }\n    for (var j = 0; j < candidates.length; j++) {\n        if (Object.prototype.hasOwnProperty.call(map, candidates[j])) return map[candidates[j]];\n    }\n    return null;\n}\n\nfunction sqGetShortMap(ctx) {\n    return sqReadMap.call(ctx || this, \"sqShortMap\", \"short\");\n}\n\nfunction sqLookupMap(map, base) {\n    var value = sqLookupChapterMap(map, base);\n    return value == null ? \"\" : String(value);\n}\n\nfunction sqGetChapterMeta(url) {\n    var raw = String(url || \"\");\n    try {\n        var bidMatch = raw.match(/[#&?]sqBid=([^&#]+)/);\n        var cidMatch = raw.match(/[#&?]sqCid=([^&#]+)/);\n        if (bidMatch && cidMatch) {\n            return {\n                bookId: decodeURIComponent(bidMatch[1]),\n                chapterId: decodeURIComponent(cidMatch[1])\n            };\n        }\n    } catch(eHash) {}\n    var value = sqLookupChapterMap(sqReadMap.call(this, \"sqMetaMap\", \"meta\"), raw);\n    if (!value) return null;\n    if (typeof value === \"string\") {\n        try { value = JSON.parse(value); } catch(e) { return null; }\n    }\n    return value && value.bookId && value.chapterId ? value : null;\n}\n\nfunction sqGetChapterShortUrl(url) {\n    var value = sqLookupChapterMap(sqReadMap.call(this, \"sqShortMap\", \"short\"), url);\n    return value == null ? \"\" : String(value);\n}\n\nfunction sqSafeJs(value) {\n    return String(value == null ? \"\" : value)\n        .replace(/\\\\/g, \"\\\\\\\\\").replace(/'/g, \"\\\\'\").replace(/[\\r\\n]+/g, \"\");\n}\n\nfunction sqQuoteText(value) {\n    var text = String(value == null ? \"\" : value)\n        .replace(/<br\\s*\\/?>(?=.)/gi, \"\\n\")\n        .replace(/<img\\b[^>]*>/gi, \"\")\n        .replace(/<[^>]+>/g, \"\")\n        .replace(/&nbsp;/gi, \" \")\n        .replace(/&amp;/gi, \"&\")\n        .replace(/&quot;/gi, '\"')\n        .replace(/&#39;/gi, \"'\")\n        .replace(/&lt;/gi, \"<\")\n        .replace(/&gt;/gi, \">\")\n        .replace(/[\\s\\u00a0\\u3000]+/g, \" \")\n        .trim();\n    if (text.length > 160) text = text.slice(0, 160) + \"…\";\n    return text;\n}\nfunction sqBubbleData(count, bookId, chapterId, paragraphId, hot, kind, paraText) {\n    var j = sqJava.call(this);\n    var number = Number(count) || 0;\n    if (!j || !j.base64Encode || number <= 0) return \"\";\n    var cfg = sqCommentConfig.call(this);\n    var color = cfg.color;\n    if (cfg.colorSplit) {\n        if (hot) color = cfg.hotColor;\n        else if (number >= cfg.splitCount) color = cfg.splitColor;\n    }\n    if (!/^#[0-9a-fA-F]{6}$/.test(color)) color = \"#666666\";\n    var displayText = number > 999 ? \"999\" : String(number);\n    var font = \"Arial\";\n    var template = String(cfg.bubbleTemplate || \"\").trim();\n    var svg;\n    if (cfg.bubbleStyle !== \"起点\" && template.indexOf(\"<svg\") >= 0) {\n        svg = template\n            .replace(/\\$\\{qpyscolor\\}/g, color)\n            .replace(/\\$\\{qpwzcolor\\}/g, color)\n            .replace(/\\$\\{font\\}/g, font)\n            .replace(/\\$\\{displayText\\}/g, displayText);\n    } else {\n        svg = '<svg viewBox=\"5 14 45 36\" xmlns=\"http://www.w3.org/2000/svg\" width=\"180\" height=\"144\">' +\n            '<path d=\"M44 48 Q48 48 48 44 L48 20 Q48 16 44 16 L20 16 Q16 16 16 20 L16 24 S16 28 10 30 Q6 32 10 34 Q16 36 16 38 L16 44 Q16 48 20 48 Z\" fill=\"none\" stroke=\"' + color + '\" stroke-width=\"0.7\"/>' +\n            '<text x=\"32\" y=\"38\" text-anchor=\"middle\" font-family=\"' + font + '\" font-weight=\"600\" font-size=\"18\" fill=\"' + color + '\" dominant-baseline=\"middle\">' + displayText + '</text>' +\n            '</svg>';\n    }\n    var click;\n    if (kind === \"chapter\") {\n        click = \"showSqChapterComments('\" + sqSafeJs(bookId) + \"','\" + sqSafeJs(chapterId) + \"','\" + sqSafeJs(paragraphId) + \"','\" + sqSafeJs(sqQuoteText(paraText)) + \"')\";\n    } else {\n        click = \"showSqComments('\" + sqSafeJs(bookId) + \"','\" + sqSafeJs(chapterId) + \"','\" + sqSafeJs(paragraphId) + \"','\" + sqSafeJs(sqQuoteText(paraText)) + \"')\";\n    }\n    return \"data:image/svg+xml;base64,\" + j.base64Encode(svg) + \",\" + JSON.stringify({\n        style: cfg.bubbleSize === \"TEXT\" ? \"TEXT\" : \"text\",\n        type: \"sq\",\n        click: click\n    });\n}\n\nfunction sqBubbleImage(count, bookId, chapterId, paragraphId, hot, paraText) {\n    var data = sqBubbleData.call(this, count, bookId, chapterId, paragraphId, hot, \"paragraph\", paraText);\n    return data ? '<img src=\"' + data.replace(/\"/g, \"&quot;\") + '\">' : \"\";\n}\n\nfunction sqDecorateContent(content, bookId, chapterId, chapterTitle) {\n    var cfg = sqCommentConfig.call(this);\n    var sourceRef = sqSource.call(this);\n    var titleKey = \"sq_title_bubble_\" + String(chapterId || \"\");\n    function saveTitle(value) {\n        try { if (sourceRef && sourceRef.put && chapterId) sourceRef.put(titleKey, String(value || \"\")); } catch(e) {}\n    }\n    if ((!cfg.paragraph && !cfg.chapter) || !bookId || !chapterId) {\n        saveTitle(\"\");\n        return content;\n    }\n\n    var response = sqRenderExt.call(this, bookId, chapterId);\n    var paragraphs = sqParagraphList(response);\n    if (!paragraphs.length) {\n        saveTitle(\"\");\n        return content;\n    }\n\n    var titleItem = null;\n    var bodyItems = [];\n    for (var p = 0; p < paragraphs.length; p++) {\n        var item = paragraphs[p] || {};\n        var order = Number(item.orderId !== undefined ? item.orderId : item.OrderId);\n        var count = Number(item.commentCount || item.CommentCount || 0);\n        if (count <= 0) continue;\n        if (order === 0) titleItem = item;\n        else if (order > 0) bodyItems.push(item);\n    }\n\n    if (cfg.chapter && titleItem) {\n        var titleCount = Number(titleItem.commentCount || titleItem.CommentCount || 0);\n        var titlePid = titleItem.paragraphId || titleItem.ParagraphId || \"p000\";\n        var titleText = String(titleItem.text || titleItem.Text || titleItem.summaryText || titleItem.SummaryText || chapterTitle || \"\");\n        saveTitle(sqBubbleData.call(this, titleCount, bookId, chapterId, titlePid, !!(titleItem.isHotParagraph || titleItem.IsHotParagraph), \"chapter\", titleText));\n    } else {\n        saveTitle(\"\");\n    }\n    if (!cfg.paragraph) return content;\n\n    var pieces = String(content || \"\").split(/(<br\\s*\\/?>)/i);\n    var textIndexes = [];\n    for (var i = 0; i < pieces.length; i++) {\n        if (!/^<br\\s*\\/?>$/i.test(pieces[i]) && String(pieces[i]).trim()) textIndexes.push(i);\n    }\n    for (var b = 0; b < bodyItems.length; b++) {\n        var bodyItem = bodyItems[b] || {};\n        var bodyOrder = Number(bodyItem.orderId !== undefined ? bodyItem.orderId : bodyItem.OrderId);\n        var bodyCount = Number(bodyItem.commentCount || bodyItem.CommentCount || 0);\n        var bodyPid = bodyItem.paragraphId || bodyItem.ParagraphId || (\"p\" + String(bodyOrder));\n        var target = textIndexes[bodyOrder - 1];\n        if (target !== undefined) {\n            var bodyText = String(bodyItem.text || bodyItem.Text || bodyItem.summaryText || bodyItem.SummaryText || pieces[target] || \"\");\n            pieces[target] += sqBubbleImage.call(this, bodyCount, bookId, chapterId, bodyPid, !!(bodyItem.isHotParagraph || bodyItem.IsHotParagraph), bodyText);\n        }\n    }\n    return pieces.join(\"\");\n}\n\nfunction sqEscapeHtml(value) {\n    return String(value == null ? \"\" : value)\n        .replace(/&/g, \"&amp;\").replace(/</g, \"&lt;\").replace(/>/g, \"&gt;\")\n        .replace(/\"/g, \"&quot;\").replace(/'/g, \"&#39;\");\n}\n\nfunction sqRichText(comment) {\n    var raw = String(comment && (comment.richText || comment.text) || \"\");\n    var images = [];\n    raw = raw.replace(/<img\\b[^>]*>/gi, function(tag) {\n        var match = tag.match(/src=[\"'](data:image\\/(?:webp|png|gif);base64,[A-Za-z0-9+/=]+)[\"']/i);\n        if (!match) return \"\";\n        var token = \"__SQ_EMOJI_\" + images.length + \"__\";\n        images.push('<img class=\"emoji\" src=\"' + match[1] + '\" alt=\"\">');\n        return token;\n    });\n    raw = sqEscapeHtml(raw).replace(/\\r?\\n/g, \"<br>\");\n    for (var i = 0; i < images.length; i++) raw = raw.replace(\"__SQ_EMOJI_\" + i + \"__\", images[i]);\n    return raw;\n}\n\nfunction sqFormatTime(value) {\n    var time = Number(value || 0);\n    if (!time) return \"\";\n    try { return sqJava.call(this).timeFormatUTC(time, \"yyyy-MM-dd HH:mm\", 28800000); } catch(e) { return \"\"; }\n}\n\nfunction sqReplyHtml(reply) {\n    var name = sqEscapeHtml(reply && reply.nickname || \"书友\");\n    var target = reply && reply.repliedUserNickname ? \" 回复 \" + sqEscapeHtml(reply.repliedUserNickname) : \"\";\n    return '<div class=\"reply\"><b>' + name + '</b>' + target + '：' + sqRichText(reply) + '</div>';\n}\n\nvar _sqReplyDomSeq = 0;\nfunction sqCommentCard(comment) {\n    comment = comment || {};\n    var avatar = String(comment.userPhoto || \"\");\n    var replyData = comment.replies || {};\n    var replies = sqList(replyData.commentList);\n    var replyHtml = \"\";\n    for (var i = 0; i < replies.length; i++) replyHtml += sqReplyHtml(replies[i]);\n    var badges = comment.isAuthor ? '<span class=\"badge\">作者</span>' : \"\";\n    if (comment.fanCard && comment.fanCard.levelName) badges += '<span class=\"badge muted\">' + sqEscapeHtml(comment.fanCard.levelName) + '</span>';\n\n    var replyNum = Number(comment.replyNum || 0);\n    var nextIndex = replyData.nextItemIndex;\n    var hasMore = replyNum > replies.length && nextIndex !== null && nextIndex !== undefined && String(nextIndex) !== \"\";\n    var safeMid = String(comment.mid || \"comment\").replace(/[^A-Za-z0-9_-]/g, \"_\");\n    var replyTarget = \"sq_replies_\" + safeMid + \"_\" + (_sqReplyDomSeq++);\n    var moreButton = hasMore\n        ? '<button class=\"reply-more\" type=\"button\" data-target=\"' + replyTarget + '\" data-mid=\"' + sqEscapeHtml(comment.mid || \"\") + '\" data-cursor=\"' + sqEscapeHtml(nextIndex) + '\" data-author=\"' + sqEscapeHtml(comment.authorId || \"0\") + '\" onclick=\"sqLoadReplies(this)\">展开更多回复</button>'\n        : \"\";\n\n    return '<article class=\"comment\">' +\n        '<div class=\"author\">' + (avatar ? '<img class=\"avatar\" src=\"' + sqEscapeHtml(avatar) + '\">' : '<span class=\"avatar fallback\"></span>') +\n        '<div class=\"identity\"><div><b>' + sqEscapeHtml(comment.nickname || \"书友\") + '</b>' + badges + '</div><time>' + sqFormatTime.call(this, comment.pubTime) + '</time></div>' +\n        '<span class=\"likes\">赞 ' + Number(comment.likes || 0) + '</span></div>' +\n        '<div class=\"text\">' + sqRichText(comment) + '</div>' +\n        ((replyHtml || moreButton) ? '<div class=\"replies\"><div id=\"' + replyTarget + '\">' + replyHtml + '</div>' + moreButton + '</div>' : '') +\n        '</article>';\n}\n\nfunction sqCards(list) {\n    list = sqList(list);\n    if (!list.length) return '<div class=\"empty\">暂无评论</div>';\n    var html = \"\";\n    for (var i = 0; i < list.length; i++) html += sqCommentCard.call(this, list[i]);\n    return html;\n}\n\nfunction sqBrowserConfig() {\n    var cfg = sqCommentConfig.call(this);\n    var height = Number(cfg.height || 80);\n    if (height > 1) height = height / 100;\n    if (!(height > 0 && height <= 1)) height = 0.8;\n    return {\n        state: 4,\n        isHideable: true,\n        heightPercentage: height,\n        expandedCornersRadius: 16,\n        dismissOnTouchOutside: true,\n        widthPercentage: 1.0,\n        maxWidth: -1,\n        skipCollapsed: true,\n        hardwareAccelerated: true,\n        webViewInitialScale: 100\n    };\n}\n\nfunction sqReplyBrowserScript() {\n    return [\n        '<script>',\n        '(function(){',\n        'function replyNode(item){',\n        'var row=document.createElement(\"div\");row.className=\"reply dynamic-reply\";',\n        'var name=document.createElement(\"b\");name.textContent=String(item.nickname||\"书友\");row.appendChild(name);',\n        'var text=\"\";if(item.repliedUserNickname)text+=\" 回复 \"+item.repliedUserNickname;text+=\"：\"+String(item.text||\"\");',\n        'row.appendChild(document.createTextNode(text));return row;',\n        '}',\n        'window.sqLoadReplies=function(button){',\n        'if(!button||button.disabled)return;var cfg=window.sqReplyRequest||{};var box=document.getElementById(button.getAttribute(\"data-target\"));if(!box)return;',\n        'button.disabled=true;button.textContent=\"加载中...\";',\n        'try{',\n        'var body={apiKey:cfg.apiKey,bookId:String(cfg.bookId||\"\"),chapterId:String(cfg.chapterId||\"\"),mid:String(button.getAttribute(\"data-mid\")||\"\"),itemIndex:Number(button.getAttribute(\"data-cursor\")||0),size:20,authorId:String(button.getAttribute(\"data-author\")||\"0\")};',\n        'var option={method:\"POST\",body:JSON.stringify(body),headers:{\"Content-Type\":\"application/json\",\"Accept\":\"application/json\"}};',\n        'var raw=window.java.ajax(cfg.apiBase+\"/v1/comments/chapter-replies,\"+JSON.stringify(option));var response=JSON.parse(String(raw||\"{}\").replace(/^\\\\uFEFF/,\"\"));',\n        'if(!response.ok)throw new Error(response.error||\"回复加载失败\");var outer=response.data||{},data=outer.data||{},list=data.commentList||[];',\n        'for(var i=0;i<list.length;i++)box.appendChild(replyNode(list[i]));',\n        'var next=data.nextItemIndex;if(next===null||next===undefined)next=response.pagination&&response.pagination.nextItemIndex;',\n        'var more=data.hasMore;if(more===null||more===undefined)more=response.pagination&&response.pagination.hasMore;',\n        'if(more&&list.length&&next!==null&&next!==undefined){button.setAttribute(\"data-cursor\",String(next));button.disabled=false;button.textContent=\"展开更多回复\";}else{button.disabled=true;button.className=\"reply-more ended\";button.textContent=\"已展开全部回复\";}',\n        '}catch(error){button.disabled=false;button.textContent=\"加载失败，点击重试\";}',\n        '};',\n        '})();',\n        '</script>'\n    ].join(\"\\n\");\n}\n\nfunction sqBrowserPreload(bookId, chapterId, mode, paragraphId, quoteText) {\n    return \"window.sqPageInit=\" + JSON.stringify({\n        apiBase: SQ_COMMENT_API_BASE,\n        apiKey: sqApiKey.call(this),\n        bookId: String(bookId || \"\"),\n        chapterId: String(chapterId || \"\"),\n        paragraphId: String(paragraphId || \"\"),\n        mode: String(mode || \"paragraph\"),\n        quoteText: sqQuoteText(quoteText)\n    }).replace(/</g, \"\\\\u003c\") + \";try{window.java=java;}catch(e){}\";\n}\n\nfunction sqHtmlShell(title, subtitle, content, tabs) {\n    var theme = sqCommentConfig.call(this).theme;\n    var forced = theme === \"深色\" ? \"dark\" : (theme === \"浅色\" ? \"light\" : \"auto\");\n    var css = ':root{--bg:#f5f5f5;--panel:#fff;--text:#202124;--muted:#73777f;--line:#e6e7e9;--accent:#df3f32;--reply:#f7f7f8}' +\n        '@media(prefers-color-scheme:dark){:root{--bg:#111214;--panel:#1b1c1f;--text:#eceef1;--muted:#a3a7ae;--line:#303238;--accent:#ff7165;--reply:#24262b}}' +\n        'html.dark{--bg:#111214;--panel:#1b1c1f;--text:#eceef1;--muted:#a3a7ae;--line:#303238;--accent:#ff7165;--reply:#24262b}' +\n        'html.light{--bg:#f5f5f5;--panel:#fff;--text:#202124;--muted:#73777f;--line:#e6e7e9;--accent:#df3f32;--reply:#f7f7f8}' +\n        '*{box-sizing:border-box}body{margin:0;background:var(--bg);color:var(--text);font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",\"PingFang SC\",\"Microsoft YaHei\",sans-serif}' +\n        'header{position:sticky;top:0;z-index:3;background:var(--panel);border-bottom:1px solid var(--line);padding:15px 16px 12px}h1{font-size:18px;margin:0 0 4px}header p{font-size:12px;color:var(--muted);margin:0}' +\n        '.tabs{display:flex;gap:22px;margin-top:12px}.tab{border:0;background:none;color:var(--muted);font-size:14px;padding:6px 0;border-bottom:2px solid transparent}.tab.active{color:var(--accent);border-color:var(--accent);font-weight:600}' +\n        'main{max-width:760px;margin:0 auto;padding:10px}.comment,.section{background:var(--panel);border:1px solid var(--line);border-radius:8px;margin-bottom:8px;padding:14px}' +\n        '.author{display:flex;align-items:center;gap:10px}.avatar{width:38px;height:38px;border-radius:50%;object-fit:cover;background:var(--reply)}.identity{min-width:0;flex:1}.identity b{font-size:14px}.identity time{display:block;color:var(--muted);font-size:11px;margin-top:3px}.likes{color:var(--muted);font-size:12px}.text{font-size:15px;line-height:1.72;margin:11px 0 2px;word-break:break-word}.emoji{width:24px;height:24px;vertical-align:middle}' +\n        '.badge{font-size:10px;color:#fff;background:var(--accent);border-radius:3px;padding:1px 4px;margin-left:5px}.badge.muted{background:#767b85}.replies{background:var(--reply);border-radius:6px;padding:8px 10px;margin-top:10px}.reply{font-size:13px;line-height:1.65;margin:5px 0}.reply b{color:var(--accent)}.more,.empty{color:var(--muted);font-size:12px;margin-top:5px}.empty{text-align:center;padding:40px 10px}' +\n        '.reply-more{min-height:30px;margin-top:8px;padding:4px 13px;border:0;border-radius:15px;background:var(--panel);color:var(--accent);font-size:12px;font-weight:600}.reply-more:disabled{opacity:.7}.reply-more.ended{color:var(--muted)}' +\n        '.section h2{font-size:14px;margin:0 0 10px;color:var(--accent)}.section .comment{border:0;border-top:1px solid var(--line);border-radius:0;margin:0;padding-left:0;padding-right:0}.section .comment:first-of-type{border-top:0}' +\n        '.panel[hidden]{display:none}';\n    var tabScript = tabs ? '<script>function sqTab(name){var ps=document.querySelectorAll(\".panel\"),bs=document.querySelectorAll(\".tab\");for(var i=0;i<ps.length;i++)ps[i].hidden=ps[i].id!==name;for(var j=0;j<bs.length;j++)bs[j].className=\"tab\"+(bs[j].getAttribute(\"data-tab\")===name?\" active\":\"\")}</script>' : \"\";\n    return '<!doctype html><html class=\"' + forced + '\"><head><meta charset=\"utf-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><style>' + css + '</style></head><body>' +\n        '<header><h1>' + sqEscapeHtml(title) + '</h1><p>' + sqEscapeHtml(subtitle) + '</p>' + (tabs || \"\") + '</header><main>' + content + '</main>' + tabScript + sqReplyBrowserScript() + '</body></html>';\n}\n\nfunction sqLiveCommentHtml() {\n    return [\n        '<!doctype html><html><head><meta charset=\"utf-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">',\n        '<style>',\n        ':root{--bg:#f5f5f5;--panel:#fff;--text:#202124;--muted:#73777f;--line:#e6e7e9;--accent:#df3f32;--reply:#f7f7f8}@media(prefers-color-scheme:dark){:root{--bg:#111214;--panel:#1b1c1f;--text:#eceef1;--muted:#a3a7ae;--line:#303238;--accent:#ff7165;--reply:#24262b}}',\n        '*{box-sizing:border-box}body{margin:0;background:var(--bg);color:var(--text);font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",\"PingFang SC\",\"Microsoft YaHei\",sans-serif}header{position:sticky;top:0;z-index:3;background:var(--panel);border-bottom:1px solid var(--line);padding:14px 16px 10px}h1{font-size:18px;margin:0 0 4px}.quote{display:none;margin:8px 0 6px;padding:9px 12px 9px 14px;border-left:3px solid var(--accent);background:var(--reply);border-radius:0 6px 6px 0;color:var(--text);font-size:14px;line-height:1.65;white-space:pre-wrap;word-break:break-word}#subtitle{font-size:12px;color:var(--muted)}.tabs{display:flex;gap:22px;margin-top:10px}.tab{border:0;background:none;color:var(--muted);font-size:14px;padding:6px 0;border-bottom:2px solid transparent}.tab.active{color:var(--accent);border-color:var(--accent);font-weight:600}main{max-width:760px;margin:0 auto;padding:10px}',\n        '.comment,.section{background:var(--panel);border:1px solid var(--line);border-radius:8px;margin-bottom:8px;padding:14px}.author-row{display:flex;align-items:center;gap:10px}.avatar{width:38px;height:38px;border-radius:50%;object-fit:cover;background:var(--reply)}.identity{min-width:0;flex:1}.identity b{font-size:14px}.identity time{display:block;color:var(--muted);font-size:11px;margin-top:3px}.likes{color:var(--muted);font-size:12px}.text{font-size:15px;line-height:1.72;margin:11px 0 2px;word-break:break-word}.emoji{width:24px;height:24px;vertical-align:middle}.replies{background:var(--reply);border-radius:6px;padding:8px 10px;margin-top:10px}.reply{font-size:13px;line-height:1.65;margin:5px 0}.reply b{color:var(--accent)}.reply-more{min-height:30px;margin-top:8px;padding:4px 13px;border:0;border-radius:15px;background:var(--panel);color:var(--accent);font-size:12px;font-weight:600}.reply-more:disabled{opacity:.7}.section h2{font-size:14px;margin:0 0 10px;color:var(--accent)}.section .comment{border:0;border-top:1px solid var(--line);border-radius:0;margin:0;padding-left:0;padding-right:0}.empty,.loading,.error{text-align:center;color:var(--muted);padding:34px 10px}.error{color:#b42318}',\n        '.skeleton{height:112px;border-radius:8px;margin-bottom:8px;background:linear-gradient(90deg,var(--panel),var(--reply),var(--panel));background-size:200% 100%;animation:shine 1.2s infinite}@keyframes shine{to{background-position:-200% 0}}',\n        '</style></head><body>',\n        '<header><h1 id=\"title\">段评</h1><div id=\"quote\" class=\"quote\"></div><div id=\"subtitle\">加载中...</div><div id=\"tabs\" class=\"tabs\"><button class=\"tab active\" data-order=\"hot\">最热</button><button class=\"tab\" data-order=\"new\">最新</button></div></header>',\n        '<main id=\"list\"><div class=\"skeleton\"></div><div class=\"skeleton\"></div></main>',\n        '<script>',\n        '(function(){',\n        'var init=window.sqPageInit||{},API=String(init.apiBase||\"\"),KEY=String(init.apiKey||\"\"),BID=String(init.bookId||\"\"),CID=String(init.chapterId||\"\"),PID=String(init.paragraphId||\"\"),MODE=String(init.mode||\"paragraph\"),QUOTE=String(init.quoteText||\"\"),seq=0;',\n        'var list=document.getElementById(\"list\"),title=document.getElementById(\"title\"),quote=document.getElementById(\"quote\"),subtitle=document.getElementById(\"subtitle\"),tabs=document.getElementById(\"tabs\");if(QUOTE){quote.textContent=QUOTE;quote.style.display=\"block\";}',\n        'function esc(v){return String(v==null?\"\":v).replace(/&/g,\"&amp;\").replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\").replace(/\"/g,\"&quot;\");}',\n        'function rich(c){var r=String(c&&c.richText||\"\");if(r.indexOf(\"<img\")>=0)return r;return esc(c&&c.text||\"\");}',\n        'function api(path,body,done){body=body||{};body.apiKey=KEY;var payload=JSON.stringify(body),finished=false;function finish(err,value){if(finished)return;finished=true;done(err,value);}try{var xhr=new XMLHttpRequest();xhr.open(\"POST\",API+path,true);xhr.setRequestHeader(\"Content-Type\",\"application/json\");xhr.onload=function(){try{var root=JSON.parse(String(xhr.responseText||\"{}\").replace(/^\\\\uFEFF/,\"\"));if(!root.ok)throw new Error(root.error||\"接口错误\");finish(null,root);}catch(e){finish(e);}};xhr.onerror=function(){fallback();};xhr.send(payload);}catch(e){fallback();}function fallback(){try{var option={method:\"POST\",body:payload,headers:{\"Content-Type\":\"application/json\",\"Accept\":\"application/json\"}};var raw=window.java.ajax(API+path+\",\"+JSON.stringify(option));var root=JSON.parse(String(raw||\"{}\"));if(!root.ok)throw new Error(root.error||\"接口错误\");finish(null,root);}catch(e2){finish(e2);}}}',\n        'function replyHtml(r){return \"<div class=\\\\\"reply\\\\\"><b>\"+esc(r.nickname||\"书友\")+\"</b>\"+(r.repliedUserNickname?(\" 回复 \"+esc(r.repliedUserNickname)):\"\")+\"：\"+rich(r)+\"</div>\";}',\n        'function replyBox(c){var rd=c.replies||{},arr=rd.commentList||[],html=\"\",id=\"sq_reply_\"+(seq++),i;for(i=0;i<arr.length;i++)html+=replyHtml(arr[i]);var next=rd.nextItemIndex,total=Number(c.replyNum||0);var more=total>arr.length&&next!==null&&next!==undefined&&String(next)!==\"\";return (html||more)?(\"<div class=\\\\\"replies\\\\\"><div id=\\\\\"\"+id+\"\\\\\">\"+html+\"</div>\"+(more?(\"<button class=\\\\\"reply-more\\\\\" data-target=\\\\\"\"+id+\"\\\\\" data-mid=\\\\\"\"+esc(c.mid||\"\")+\"\\\\\" data-cursor=\\\\\"\"+esc(next)+\"\\\\\" data-author=\\\\\"\"+esc(c.authorId||0)+\"\\\\\">展开更多回复</button>\"):\"\")+\"</div>\"):\"\";}',\n        'function cardHtml(c){var av=String(c.userPhoto||\"\"),avatar=av?(\"<img class=\\\\\"avatar\\\\\" src=\\\\\"\"+esc(av)+\"\\\\\">\"):\"<span class=\\\\\"avatar\\\\\"></span>\";return \"<article class=\\\\\"comment\\\\\"><div class=\\\\\"author-row\\\\\">\"+avatar+\"<div class=\\\\\"identity\\\\\"><b>\"+esc(c.nickname||\"书友\")+\"</b><time>\"+esc(c.pubTime||\"\")+\"</time></div><span class=\\\\\"likes\\\\\">赞 \"+Number(c.likes||0)+\"</span></div><div class=\\\\\"text\\\\\">\"+rich(c)+\"</div>\"+replyBox(c)+\"</article>\";}',\n        'function wire(root){var buttons=root.querySelectorAll(\".reply-more\");for(var i=0;i<buttons.length;i++)buttons[i].onclick=function(){loadReplies(this);};}',\n        'function loadReplies(button){if(button.disabled)return;button.disabled=true;button.textContent=\"加载中...\";api(\"/v1/comments/chapter-replies\",{bookId:BID,chapterId:CID,mid:String(button.getAttribute(\"data-mid\")||\"\"),itemIndex:Number(button.getAttribute(\"data-cursor\")||0),size:20,authorId:String(button.getAttribute(\"data-author\")||0)},function(err,root){if(err){button.disabled=false;button.textContent=\"加载失败，点击重试\";return;}var outer=root.data||{},d=outer.data||{},arr=d.commentList||[],box=document.getElementById(button.getAttribute(\"data-target\"));for(var i=0;i<arr.length;i++){var holder=document.createElement(\"div\");holder.innerHTML=replyHtml(arr[i]);if(holder.firstChild)box.appendChild(holder.firstChild);}var next=d.nextItemIndex;if(next===null||next===undefined)next=root.pagination&&root.pagination.nextItemIndex;var more=d.hasMore;if(more===null||more===undefined)more=root.pagination&&root.pagination.hasMore;if(more&&arr.length&&next!==null&&next!==undefined){button.setAttribute(\"data-cursor\",String(next));button.disabled=false;button.textContent=\"展开更多回复\";}else{button.textContent=\"已展开全部回复\";}});}',\n        'function showError(err){list.innerHTML=\"<div class=\\\\\"error\\\\\">加载失败：\"+esc(err&&err.message||err)+\"</div>\";}',\n        \"function sqCommentPage(root) {\\n    var outer = root && root.data || {};\\n    var data = outer.data || outer.Data || {};\\n    var pagination = root && root.pagination || outer.pagination || data.pagination || {};\\n    var list = data.commentList || data.CommentList || [];\\n    var next = data.nextItemIndex;\\n    if (next === null || next === undefined) next = pagination.nextItemIndex;\\n    var more = data.hasMore;\\n    if (more === null || more === undefined) more = pagination.hasMore;\\n    if (typeof more === \\\"string\\\") more = more.toLowerCase() !== \\\"false\\\";\\n    return { list: Array.isArray(list) ? list : [], next: next, more: more };\\n}\\n\\nfunction sqCommentFooter(text, ended) {\\n    var node = document.getElementById(\\\"sq_comment_footer\\\");\\n    if (!node) {\\n        node = document.createElement(\\\"div\\\");\\n        node.id = \\\"sq_comment_footer\\\";\\n        node.className = \\\"empty\\\";\\n        list.appendChild(node);\\n    }\\n    node.textContent = text;\\n    node.className = ended ? \\\"empty\\\" : \\\"loading\\\";\\n    list.appendChild(node);\\n}\\n\\nvar sqPageOrder = \\\"\\\";\\nvar sqPageCursor = null;\\nvar sqPageLoading = false;\\nvar sqPageEnded = false;\\nvar sqPageLoaded = 0;\\nvar sqPageSize = 20;\\n\\nfunction sqMaybeLoadComments() {\\n    if (sqPageEnded || sqPageLoading || !sqPageOrder) return;\\n    if (window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 220) loadParagraph(sqPageOrder, false);\\n}\\n\\nwindow.addEventListener(\\\"scroll\\\", sqMaybeLoadComments);\\n\",\n        \"function loadParagraph(order, reset) {\\n    if (sqPageLoading) return;\\n    if (reset || sqPageOrder !== order) {\\n        sqPageOrder = order;\\n        sqPageCursor = null;\\n        sqPageEnded = false;\\n        sqPageLoaded = 0;\\n        list.innerHTML = '<div class=\\\"skeleton\\\"></div><div class=\\\"skeleton\\\"></div>';\\n    }\\n    if (sqPageEnded) return;\\n    sqPageLoading = true;\\n    var body = { bookId: BID, chapterId: CID, paragraphId: PID, order: order, size: sqPageSize };\\n    if (sqPageCursor !== null && sqPageCursor !== undefined && String(sqPageCursor) !== \\\"\\\") body.itemIndex = Number(sqPageCursor);\\n    api(\\\"/v1/comments/chapter-list\\\", body, function(err, root) {\\n        sqPageLoading = false;\\n        if (err) { showError(err); return; }\\n        var page = sqCommentPage(root);\\n        var arr = page.list;\\n        if (sqPageLoaded === 0) list.innerHTML = \\\"\\\";\\n        if (arr.length) {\\n            var html = \\\"\\\";\\n            for (var i = 0; i < arr.length; i++) html += cardHtml(arr[i]);\\n            list.insertAdjacentHTML(\\\"beforeend\\\", html);\\n            sqPageLoaded += arr.length;\\n            wire(list);\\n        }\\n        var next = page.next;\\n        var noNext = next === null || next === undefined || String(next) === \\\"\\\" || (sqPageCursor !== null && String(next) === String(sqPageCursor));\\n        sqPageEnded = !arr.length || page.more === false || noNext;\\n        if (sqPageEnded) {\\n            if (!sqPageLoaded) list.innerHTML = '<div class=\\\"empty\\\">暂无评论</div>';\\n            sqCommentFooter(\\\"已到底（共 \\\" + sqPageLoaded + \\\" 条）\\\", true);\\n        } else {\\n            sqPageCursor = next;\\n            sqCommentFooter(\\\"继续下滑加载\\\", false);\\n            setTimeout(sqMaybeLoadComments, 50);\\n        }\\n        subtitle.textContent = MODE === \\\"chapterTitle\\\" ? (\\\"章节标题 · \\\" + sqPageLoaded + \\\" 条已加载\\\") : (\\\"第 \\\" + Number(String(PID).replace(/\\\\D/g, \\\"\\\")) + \\\" 段 · \\\" + sqPageLoaded + \\\" 条已加载\\\");\\n    });\\n}\",\n        'function loadChapter(){title.textContent=\"章评\";tabs.style.display=\"none\";api(\"/v1/reader/render-ext\",{bookId:BID,chapterId:CID},function(err,root){if(err){showError(err);return;}var outer=root.data||{},d=outer.data||{},ext=d.bookChapterExtInfo||{},ps=(ext.paragraphList||[]).slice(0),total=0;for(var i=0;i<ps.length;i++)total+=Number(ps[i].commentCount||0);subtitle.textContent=\"本章共 \"+total+\" 条段评\";ps.sort(function(a,b){return Number(b.commentCount||0)-Number(a.commentCount||0);});ps=ps.slice(0,6);if(!ps.length){list.innerHTML=\"<div class=\\\\\"empty\\\\\">本章暂无评论</div>\";return;}list.innerHTML=\"\";for(var x=0;x<ps.length;x++)(function(item){var section=document.createElement(\"section\"),pid=String(item.paragraphId||(\"p\"+Number(item.orderId||0))),count=Number(item.commentCount||0);section.className=\"section\";section.innerHTML=\"<h2>第 \"+(Number(item.orderId||0)+1)+\" 段 · \"+count+\" 条</h2><div class=\\\\\"loading\\\\\">加载中...</div>\";list.appendChild(section);api(\"/v1/comments/chapter-list\",{bookId:BID,chapterId:CID,paragraphId:pid,order:\"hot\",size:5},function(e,res){if(e){section.innerHTML+=\"<div class=\\\\\"error\\\\\">加载失败</div>\";return;}var o=res.data||{},dd=o.data||{},arr=dd.commentList||[],html=section.querySelector(\"h2\").outerHTML;for(var z=0;z<arr.length;z++)html+=cardHtml(arr[z]);section.innerHTML=html;wire(section);});})(ps[x]);});}',\n        'var tabButtons=tabs.querySelectorAll(\".tab\");for(var i=0;i<tabButtons.length;i++)tabButtons[i].onclick=function(){for(var j=0;j<tabButtons.length;j++)tabButtons[j].className=\"tab\";this.className=\"tab active\";loadParagraph(this.getAttribute(\"data-order\"));};',\n        'if(MODE===\"chapter\")loadChapter();else{title.textContent=MODE===\"chapterTitle\"?\"章评\":\"段评\";loadParagraph(\"hot\");}',\n        '})();',\n        '</script></body></html>'\n    ].join(\"\\n\");\n}\n\nfunction showSqComments(bookId, chapterId, paragraphId, quoteText) {\n    var j = sqJava.call(this);\n    if (!j || !j.showBrowser) return;\n    j.showBrowser(SQ_COMMENT_API_BASE + \"/paragraph\", sqLiveCommentHtml(), sqBrowserPreload.call(this, bookId, chapterId, \"paragraph\", paragraphId, quoteText), JSON.stringify(sqBrowserConfig.call(this)));\n}\n\nfunction showSqChapterComments(bookId, chapterId, paragraphId, quoteText) {\n    var j = sqJava.call(this);\n    if (!j || !j.showBrowser) return;\n    j.showBrowser(SQ_COMMENT_API_BASE + \"/paragraph\", sqLiveCommentHtml(), sqBrowserPreload.call(this, bookId, chapterId, \"chapterTitle\", paragraphId || \"p000\", quoteText), JSON.stringify(sqBrowserConfig.call(this)));\n}\n\n// SQ_COMMENT_API_V1_END",
    "lastUpdateTime": 1786691485237,
    "loginCheckJs": "if (JSON.parse(result.body()).message == \"Api Gateway Auth ERROR\") {\n   \t\tToken();\n   }else{\n   \tresult;\n }",
    "loginUi": "@js:\nvar fullStyle = { layout_flexGrow: 1, layout_flexBasisPercent: 1 };\nvar halfStyle = { layout_flexGrow: 1, layout_flexBasisPercent: 0.4 };\nvar thirdStyle = { layout_flexGrow: 1, layout_flexBasisPercent: 0.3 };\nresult = JSON.stringify([\n  { name: \"      📛     当前分类      📛      \", type: \"button\", action: \"login()\", style: fullStyle },\n  { name: \"⭕男频\", type: \"button\", action: \"set(0)\", style: halfStyle },\n  { name: \"⭕女频\", type: \"button\", action: \"set(1)\", style: halfStyle },\n  { name: \"userId\", type: \"text\", default: \"12345678\", style: fullStyle },\n  { name: \"💬 评论设置\", type: \"button\", action: \"commentRefreshTip()\", style: fullStyle },\n  { name: \"段评开关\", type: \"toggle\", action: \"commentRefreshTip()\", chars: [\"🔳\", \"✅\"], default: \"🔳\", style: halfStyle },\n  { name: \"章评开关\", type: \"toggle\", action: \"commentRefreshTip()\", chars: [\"🔳\", \"✅\"], default: \"🔳\", style: halfStyle },\n  { name: \"段评分色\", type: \"toggle\", action: \"commentRefreshTip()\", chars: [\"🔳\", \"✅\"], default: \"🔳\", style: halfStyle },\n  { name: \"段评气泡颜色\", type: \"text\", action: \"saveCommentSetting('段评气泡颜色')\", default: \"#666666\", style: thirdStyle },\n  { name: \"分色气泡颜色\", type: \"text\", action: \"saveCommentSetting('分色气泡颜色')\", default: \"#e23b3b\", style: thirdStyle },\n  { name: \"热门气泡颜色\", type: \"text\", action: \"saveCommentSetting('热门气泡颜色')\", default: \"#f06060\", style: thirdStyle },\n  { name: \"分色评论数\", type: \"text\", action: \"saveCommentSetting('分色评论数')\", default: \"45\", style: thirdStyle },\n  { name: \"评论窗口高度\", type: \"text\", action: \"saveCommentSetting('评论窗口高度')\", default: \"80\", style: thirdStyle },\n  { name: \"评论主题\", type: \"select\", chars: [\"自动\", \"浅色\", \"深色\"], default: \"自动\", style: halfStyle },\n  { name: \"◎ 模板\", type: \"select\", chars: [\"起点\", \"样式一\", \"样式二\", \"样式三\"], default: \"起点\", style: halfStyle },\n  { name: \"◎ 大小\", type: \"select\", chars: [\"TEXT\", \"text\"], default: \"text\", style: halfStyle },\n  { name: \"🍋 自定义气泡 🍋\", type: \"button\", style: fullStyle },\n  { name: \"◎ 气泡一\", type: \"text\", action: \"saveCommentSetting('◎ 气泡一')\", style: fullStyle },\n  { name: \"◎ 气泡二\", type: \"password\", action: \"saveCommentSetting('◎ 气泡二')\", style: fullStyle },\n  { name: \"◎ 气泡三\", type: \"password\", action: \"saveCommentSetting('◎ 气泡三')\", style: fullStyle },\n  { name: \"书旗评论 API Key\", type: \"password\", action: \"saveCommentSetting('书旗评论 API Key')\", style: fullStyle }\n]);",
    "loginUrl": "genderList = [{\"男频\":\"male\"},{\"女频\":\"female\"}];\n\n//放置登入头\nfunction put(json){\n\t\treturn source.setVariable(\n\t\t\tJSON.stringify(json)\n\t\t);\n\t}\n\t\nfunction login() {    \t \t\n\t  \tvar userId = source.getLoginInfoMap() || {};\n\t  \t userId = userId[\"userId\"];\n\t\t\t userId = !/^\\d+/.test(userId) ? 12345678 : userId;   \n  var v = source.getVariable();\n  if(v == \"\"){ set(0); }\n    v = JSON.parse(source.getVariable());  \n    var uid = [{\"uid\":[{\"userId\":userId}]}];\n    var mergedObj = Object.assign({}, v[0], uid[0]);\n    var con = [mergedObj];\n    java.longToast(JSON.stringify(con));\n    return put(con);\n  }\n  \nfunction set(i){\n\t var gender = genderList[i];\n  var keys = Object.keys(gender);\n  keys.forEach(key => {\n     java.toast(\"设置成功！\"+ key);\n  });\n\treturn put([{\"fl\":[gender]}]);\n\t}\n\n// SQ_COMMENT_LOGIN_V1\nfunction commentRefreshTip() {\n  java.longToast(\"\\n评论设置已修改\\n请返回阅读页并刷新正文后生效\");\n}\n\nfunction saveCommentSetting(key) {\n  var value = String(result[key] || \"\").trim();\n  var map = new Packages.java.util.HashMap();\n  map.put(key, value);\n  java.upLoginData(map);\n  try { source.putLoginInfo(JSON.stringify(result)); } catch(e) {}\n  java.toast(key + \"已保存\");\n}",
    "respondTime": 3526,
    "ruleBookInfo": {
      "author": "authorName",
      "coverUrl": "imgUrl",
      "init": "$.data",
      "intro": "<br>\n🕰 更新：{{java.timeFormatUTC(java.getString(\"$.lastInsTime\")*1000,'yyyy-MM-dd HH:mm', timeoffset)}}\n&shy;\n🔖 标签：{{$.tag[*].tagName##\\n##,}}\n🔗 版权：{{$.cpName}}\n&shy;\n📂 简介：{{$.desc}}\n@js:result.replace(/.+：\\s/g,'')",
      "kind": "{{java.getString('$.freeStack')=='1'?'':'💲VIP'}}\n{{$.monthlyBuyTip}}\n{{$.className}}\n{{java.getString('$.state')=='1'?'连载':'完结'}}",
      "lastChapter": "lastChapter.chapterName",
      "name": "bookName",
      "tocUrl": "@js:\nbookId = \"{{$.bookId}}\";\nparams = `bookId=${bookId}`;\npath = \"/webapi/bcspub/openapi/book/chapterlist\";\nurl = GetUrl(path, params, 'https://ocean.shuqireader.com');",
      "wordCount": "{{$.wordCount}}万字"
    },
    "ruleContent": {
      "content": "@js:\n(function () {\n  var raw = String(src || \"\").trim();\n  if (!raw) return \"获取正文失败：响应为空\";\n  if (/^data:text\\/plain;base64,/i.test(raw)) {\n    try {\n      var dataMatch = raw.match(/^data:text\\/plain;base64,([^#,\\s]+)/i);\n      if (dataMatch && dataMatch[1]) raw = String(java.base64Decode(dataMatch[1]) || \"\").trim();\n    } catch (eDataUrl) { return \"获取正文失败：data URL 解码失败\"; }\n  }\n  var requestUrl = \"\";\n  var responseText = raw;\n  if (/^https?:\\/\\//i.test(raw)) {\n    requestUrl = raw;\n    try { responseText = String(java.ajax(requestUrl) || \"\"); }\n    catch (eRequest) { return \"获取正文失败：章节请求失败\"; }\n  }\n  var obj;\n  try { obj = JSON.parse(responseText || \"{}\"); }\n  catch (eParse) { return \"获取正文失败：响应格式错误\"; }\n  var enc = \"\";\n  if (obj.message == \"success\" && obj.ChapterContent) {\n    enc = obj.ChapterContent;\n  } else {\n    var shortUrl = \"\";\n    try {\n      var lookupUrl = requestUrl || String(baseUrl || \"\");\n      var optionAt = lookupUrl.lastIndexOf(\",{\");\n      if (optionAt > 0) lookupUrl = lookupUrl.substring(0, optionAt);\n      shortUrl = sqLookupMap(sqGetShortMap(this), lookupUrl);\n      if (!shortUrl && java && java.get) {\n        shortUrl = String(java.get(\"sqShort@\" + lookupUrl) || java.get(\"shortUrl\") || \"\");\n      }\n    } catch (eShortMap) {\n      try { shortUrl = String(java.get(\"shortUrl\") || \"\"); } catch (eLegacy) {}\n    }\n    if (!shortUrl) return \"付费章节地址缺失，请刷新目录\";\n    try {\n      var shortObj = JSON.parse(String(java.ajax(shortUrl) || \"{}\"));\n      enc = shortObj.ChapterContent || \"\";\n    } catch (eShort) { return \"付费章节加载失败\"; }\n  }\n  if (!enc) return \"章节内容为空\";\n  function p(e) {\n    return String(e || \"\").split(\"\").map(function (ch) {\n      return ch.match(/[A-Za-z]/)\n        ? ((c = Math.floor(ch.charCodeAt(0) / 97),\n           k = (ch.toLowerCase().charCodeAt(0) - 83) % 26 || 26,\n           String.fromCharCode(k + (0 == c ? 64 : 96))))\n        : ch;\n    }).join(\"\");\n  }\n  var text = java.base64Decode(p(enc));\n  var meta = sqGetChapterMeta.call(this, baseUrl);\n  if (!meta && requestUrl) meta = sqGetChapterMeta.call(this, requestUrl);\n  if (meta && meta.bookId && meta.chapterId) {\n    var chapterQuote = \"\";\n    try { if (typeof chapter !== \"undefined\" && chapter) chapterQuote = String(chapter.title || chapter.chapterName || \"\"); } catch (eChapterQuote) {}\n    text = sqDecorateContent.call(this, text, meta.bookId, meta.chapterId, chapterQuote);\n  }\n  return text;\n})();",
      "title": "@js:\nvar sqTitleText = String(title || result || \"\");\ntry { chapter.putImgUrl(null); } catch(eClearSqTitle) {}\nvar sqTitleBubble = \"\";\nvar sqCfg = sqCommentConfig.call(this);\nvar sqMeta = sqGetChapterMeta.call(this, baseUrl);\nif (sqCfg.chapter && sqMeta && sqMeta.chapterId) {\n  try {\n    var sqTitleSource = sqSource.call(this);\n    if (sqTitleSource && sqTitleSource.get) sqTitleBubble = String(sqTitleSource.get(\"sq_title_bubble_\" + String(sqMeta.chapterId)) || \"\");\n  } catch(eSqTitle) { sqTitleBubble = \"\"; }\n}\nsqTitleText + sqTitleBubble;"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.authorName||$.author",
      "bookList": ".[?(@.bookName)]||.[?(@.title)]",
      "bookUrl": "@js:\nbookId = \"{{$.bookId||$.bid}}\";\nparams = `bookId=${bookId}`;\npath = \"/webapi/bcspub/openapi/book/info\";\nurl = GetUrl(path, params);",
      "checkKeyWord": "御兽：只有我能看见隐藏进化路线",
      "coverUrl": "$.imgUrl||$.cover",
      "intro": "$.desc",
      "kind": "@js:\nc = \"{{$.className||$.category}}\";\ns1 = \"{{$.status}}\";\ns2 = \"{{$.state}}\";\nif(s1!=\"\"){\n\t   s = s1 == '0'?'连载':'完结';\n\t}else{\n\t\t  s = s2 == '1'?'连载':'完结';\n }\nresult = c + \",\" + s;",
      "lastChapter": "$.latest_chapter.cname",
      "name": "$.bookName||$.title",
      "wordCount": "$.wordCount||$.words"
    },
    "ruleToc": {
      "chapterList": "<js>\nlist = [];\ndata = JSON.parse(src).data;\nchargeContUrlPrefix = data.chargeContUrlPrefix;\nfreeContUrlPrefix = data.freeContUrlPrefix;\nshortContUrlPrefix = data.shortContUrlPrefix;\nchapterList = data.chapterList;\nvar sqMetaMap = {};\nvar sqShortMap = {};\nvar sqCatalogBookId = \"\";\ntry { sqCatalogBookId = String(bookId || \"\"); } catch(e) {}\nif (!sqCatalogBookId) {\n  var sqBookMatch = String(baseUrl || \"\").match(/bookId=(\\d+)/);\n  if (sqBookMatch) sqCatalogBookId = sqBookMatch[1];\n}\nfunction sqFmtCatalogTime(ts) {\n  var d = new Date(Number(ts || 0) * 1000);\n  if (!Number(ts || 0)) return \"\";\n  function pad(n) { return n < 10 ? \"0\" + n : String(n); }\n  return d.getFullYear() + \"-\" + pad(d.getMonth() + 1) + \"-\" + pad(d.getDate()) + \" \" + pad(d.getHours()) + \":\" + pad(d.getMinutes());\n}\nfor (i in chapterList) {\n  volumeName = chapterList[i].volumeName;\n  list.push({ chapterName: \"🏮〖\" + volumeName + \"〗🏮\", isVolume: true });\n  chapterList[i].volumeList.forEach($ => {\n    var suffix = String($.contUrlSuffix || \"\");\n    var realChapterUrl = ($.isFreeRead ? freeContUrlPrefix : chargeContUrlPrefix) + suffix;\n    realChapterUrl = String(realChapterUrl || \"\").replace(/0$/, \"1\");\n    var currentBookId = String(sqCatalogBookId || \"\");\n    var currentChapterId = String($.chapterId || \"\");\n    chapterUrl = realChapterUrl;\n    shortUrl = shortContUrlPrefix + String($.shortContUrlSuffix || \"\");\n    time = sqFmtCatalogTime($.chapterUpdateTime);\n    wordCount = $.wordCount + \"字\";\n    chapterPrice = $.chapterPrice != \"0\" && !$.isFreeRead ? $.chapterPrice + \"书豆\" : \"\";\n    if (suffix) {\n      sqMetaMap[suffix] = { bookId: currentBookId, chapterId: currentChapterId };\n      if (shortUrl) sqShortMap[suffix] = shortUrl;\n    }\n    list.push({\n      chapterName: $.chapterName,\n      chapterUrl: chapterUrl,\n      isVip: !$.isFreeRead,\n      isPay: $.isBuy,\n      chapterInfo: [volumeName, time, wordCount, chapterPrice].join(\"丨\").replace(/丨$/, \"\")\n    });\n  });\n}\ntry {\n  java.put(\"sqMetaMap\", JSON.stringify(sqMetaMap));\n  java.put(\"sqShortMap\", JSON.stringify(sqShortMap));\n  _sqMetaMapCache = null;\n  _sqShortMapCache = null;\n} catch(eMap) {}\nlist\n</js>",
      "chapterName": "chapterName",
      "chapterUrl": "chapterUrl",
      "isPay": "isPay",
      "isVip": "isVip",
      "isVolume": "isVolume",
      "updateTime": "chapterInfo"
    },
    "searchUrl": "https://read.xiaoshuo1-sm.com/novel/i.php?do=is_search&isNewBind=0&platform=3&&user_id=8000000&q={{key}}&page={{page}}&size=10&uid=8000000&filterMigu=1&ver=&p=3&timestamp={{~~(Date.now()/1e3)}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "趣悦免费",
    "bookSourceType": 0,
    "bookSourceUrl": "https://vreader.vivo.com.cn/",
    "customButton": false,
    "customOrder": -1,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"男生分类\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"主题\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"都市\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"都市\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"玄幻\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"武侠\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奇幻\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"奇幻\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"悬疑\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"悬疑\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"灵异\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"灵异\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙侠\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"仙侠\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"历史\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"科幻\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"游戏\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"同人\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"同人\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"出版\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"出版\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"情节\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"穿越\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"穿越\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"重生\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"重生\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"乡村\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"乡村\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"系统\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"系统\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"神豪\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"神豪\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"校园\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"校园\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"凡人流\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"凡人流\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"鉴宝\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"鉴宝\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"洪荒\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"洪荒\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"末世\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"末世\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"诸天流\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"诸天流\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"签到\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"签到\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"热血\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"热血\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"强者归来\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"强者归来\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异能\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"异能\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市生活\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"都市生活\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"外卖\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"外卖\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"直播\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"直播\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"聊天群\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"聊天群\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"灵气复苏\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"灵气复苏\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"无限流\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"无限流\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"美食\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"美食\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}},{\"title\":\"召唤流\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"召唤流\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}},{\"title\":\"角色\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"赘婿\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"赘婿\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学生\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"重生\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"兵王\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"兵王\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"天骄\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"天骄\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"剑仙\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"剑仙\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙帝\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"仙帝\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玩家\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"玩家\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奶爸\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"奶爸\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"保安\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"保安\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"风流\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"风流\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"扮猪吃虎\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"扮猪吃虎\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"医生\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"医生\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"神医\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"6087874\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675860531433\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"0\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"神医\\\",\\\"size\\\":20,\\\"page\\\":{{page-1}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}},{\"title\":\"女生分类\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"主题\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"现代言情\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"现代言情\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"豪门总裁\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"豪门总裁\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代言情\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"古代言情\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"幻想言情\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"幻想言情\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宅斗\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"宅斗\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"娱乐圈\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"娱乐圈\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"农女\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"农女\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"虐文\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"虐文\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"校园\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"校园\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宫斗\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"宫斗\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"灵异\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"灵异\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"同人\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"同人\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"情节\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"甜宠\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"甜宠\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"重生\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"重生\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"萌宝\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"萌宝\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"穿越\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女尊女强\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"女尊女强\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"马甲\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"马甲\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"代嫁\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"代嫁\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"快穿\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"快穿\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"隐婚\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"隐婚\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"职场\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"职场\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"师徒\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"师徒\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"错嫁\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"错嫁\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"角色\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"总裁\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"总裁\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"王妃\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"王妃\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"王爷\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"王爷\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"嫡女\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"嫡女\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"神医\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"神医\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"弃妇\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"弃妇\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"庶女\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"庶女\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"将军\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"将军\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"魔君\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"魔君\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女帝\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"女帝\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"鬼王\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"鬼帝\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宫女\",\"url\":\"https://vreader.vivo.com.cn/book/store/labels/landing/page.do,{'method':'POST','body':'{\\\"model\\\":\\\"MI PAD 4\\\",\\\"imei\\\":\\\"123456789012345\\\",\\\"clientVersion\\\":\\\"121020\\\",\\\"elapsedtime\\\":\\\"8889774\\\",\\\"sysver\\\":\\\"\\\",\\\"nt\\\":\\\"wifi\\\",\\\"ver\\\":\\\"121020\\\",\\\"u\\\":\\\"\\\",\\\"pver\\\":\\\"0\\\",\\\"resolution\\\":\\\"1920*1200\\\",\\\"bookVersion\\\":\\\"30800\\\",\\\"vreaderVersion\\\":121020,\\\"pixel\\\":\\\"600\\\",\\\"av\\\":\\\"27\\\",\\\"adrVerName\\\":\\\"8.1.0\\\",\\\"timestamp\\\":\\\"1675863333329\\\",\\\"openudid\\\":\\\"b443cebc6f614746\\\",\\\"udid\\\":\\\"\\\",\\\"channel\\\":\\\"1\\\",\\\"personalRecommend\\\":0,\\\"bookshelfBookIds\\\":[\\\"N1000000000000083458\\\",\\\"N1000000000000122315\\\",\\\"N0600000000003317821\\\"],\\\"bookShelfListenBookIds\\\":[],\\\"packageName\\\":\\\"com.vivo.vreader\\\",\\\"featureValues\\\":\\\"2\\\",\\\"androidId\\\":\\\"b443cebc6f614746\\\",\\\"label\\\":\\\"宫女\\\",\\\"size\\\":20,\\\"page\\\":{{page-0}},\\\"completeStatus\\\":2}'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 8.1.0; MI PAD 4 Build/OPM1.171019.019; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/71.0.3578.99 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1787424809965,
    "respondTime": 1860,
    "ruleBookInfo": {
      "author": "$.author@put:{bid:bookId}",
      "coverUrl": "$.cover",
      "init": "$.data",
      "intro": "$.description",
      "kind": "{{java.timeFormat(java.getString('$.latestChapterTimestamp'))}}\n{{$.typeLabel}}\n{{$.categoryLabel}}##/##-",
      "lastChapter": "$.latestChapter",
      "name": "$.title",
      "tocUrl": "https://vreader.vivo.com.cn/book/catalogue.do,{'method': 'POST',\n'body': '{\"model\":\"MI PAD 4\",\"imei\":\"\",\"clientVersion\":\"121020\",\"elapsedtime\":\"981277\",\"sysver\":\"\",\"nt\":\"wifi\",\"ver\":\"121020\",\"u\":\"\",\"pver\":\"0\",\"resolution\":\"1920*1200\",\"sessionId\":\"11901470641675854550446\",\"pixel\":\"320\",\"av\":\"27\",\"adrVerName\":\"8.1.0\",\"timestamp\":\"1675855424862\",\"browserSystem\":\"1\",\"browserSubSystem\":\"1\",\"personalRecommend\":\"1\",\"bookVersion\":\"30800\",\"vreaderVersion\":\"121020\",\"packageName\":\"com.vivo.vreader\",\"udid\":\"\",\"openudid\":\"b443cebc6f614746\",\"bookshelfBookIds\":[],\"bookShelfListenBookIds\":[],\"featureValues\":\"2\",\"bookId\":\"{{$.bookId}}\"}'\n}",
      "wordCount": "$.wordCount"
    },
    "ruleContent": {
      "content": "$..content"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$..bookList[*]",
      "bookUrl": "https://vreader.vivo.com.cn/book/detail.do,{'method': 'POST',\n'body': '{\"model\":\"MI PAD 4\",\"imei\":\"\",\"clientVersion\":\"121020\",\"elapsedtime\":\"980289\",\"sysver\":\"\",\"nt\":\"wifi\",\"ver\":\"121020\",\"u\":\"\",\"pver\":\"0\",\"resolution\":\"1920*1200\",\"sessionId\":\"11901470641675854550446\",\"pixel\":\"320\",\"av\":\"27\",\"adrVerName\":\"8.1.0\",\"timestamp\":\"1675855423873\",\"browserSystem\":\"1\",\"browserSubSystem\":\"1\",\"personalRecommend\":\"1\",\"bookVersion\":\"30800\",\"vreaderVersion\":\"121020\",\"packageName\":\"com.vivo.vreader\",\"udid\":\"\",\"openudid\":\"b443cebc6f614746\",\"bookshelfBookIds\":[],\"bookShelfListenBookIds\":[],\"featureValues\":\"2\",\"bookId\":\"{{$.bookId}}\",\"order\":1}'\n}",
      "coverUrl": "$.cover",
      "intro": "$.description",
      "kind": "{{$.typeLabel}}\n{{$.categoryLabel}}",
      "name": "$.title",
      "wordCount": "$.wordCount"
    },
    "ruleToc": {
      "chapterList": "$.data[*]",
      "chapterName": "$.title",
      "chapterUrl": "https://vreader.vivo.com.cn/book/chapter/content.do,{'method': 'POST',\n'body': '{\"model\":\"MI PAD 4\",\"imei\":\"\",\"clientVersion\":\"121020\",\"elapsedtime\":\"981290\",\"sysver\":\"\",\"nt\":\"wifi\",\"ver\":\"121020\",\"u\":\"\",\"pver\":\"0\",\"resolution\":\"1920*1200\",\"sessionId\":\"11901470641675854550446\",\"pixel\":\"320\",\"av\":\"27\",\"adrVerName\":\"8.1.0\",\"timestamp\":\"1675855424879\",\"browserSystem\":\"1\",\"browserSubSystem\":\"1\",\"personalRecommend\":\"1\",\"bookVersion\":\"30800\",\"vreaderVersion\":\"121020\",\"packageName\":\"com.vivo.vreader\",\"udid\":\"\",\"openudid\":\"b443cebc6f614746\",\"bookshelfBookIds\":[],\"bookShelfListenBookIds\":[],\"featureValues\":\"2\",\"bookId\":\"@get:{bid}\",\"order\":\"{{$.order}}\"}'\n}",
      "updateTime": "字数::{{$.wordCount}}"
    },
    "searchUrl": "https://vreader.vivo.com.cn/book/search.do,{'method': 'POST',\n'body': '{\"model\":\"MI PAD 4\",\"imei\":\"123456789012345\",\"clientVersion\":\"121020\",\"elapsedtime\":\"343343\",\"sysver\":\"\",\"nt\":\"wifi\",\"ver\":\"121020\",\"u\":\"\",\"pver\":\"0\",\"resolution\":\"1920*1200\",\"bookVersion\":\"30800\",\"vreaderVersion\":121020,\"pixel\":\"320\",\"av\":\"27\",\"adrVerName\":\"8.1.0\",\"timestamp\":\"1675854786926\",\"openudid\":\"b443cebc6f614746\",\"udid\":\"\",\"channel\":\"0\",\"personalRecommend\":1,\"bookshelfBookIds\":[],\"bookShelfListenBookIds\":[],\"packageName\":\"com.vivo.vreader\",\"featureValues\":\"2\",\"androidId\":\"b443cebc6f614746\",\"page\":0,\"size\":20,\"keyword\":\"{{key}}\",\"tab\":0}'\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "重要提示！！！！！！！！！！\n\"\n本书源只支持最新版洛娅橙改版阅读Σ\\n请安装后重新导入书源https://loyc.xyz/c/legado.html#download\n\"\n//在小说迷的帮助下完善了Volume规则\n//260211小新在竹坞风发的书源基础上添加筛选按钮，不确定这个源是不是竹坞风写的，因为仓库里他发的源都会加个🎃\n还稍微改了一下其他规则和修复无效规则\n在另一个发现规则一样的源看到如下信息:\n\"发现列表规则等代码by：http://sy.legado1.top/sy.php/7b0b4ca64d07750d75e4eff05a28dd40.json\n发现规则by：楠枫\n有3-7个发现本身网站就是空的，我检查的时候没删，如  现实—成功励志\"",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "起点中文（优+）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.qidian.com#按钮筛选",
    "customButton": false,
    "customOrder": 1,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\ntry {\n    // 初始化结果数组，用于存储菜单项数据\n    var result = [];\n\n    //初始化源变量\n    csh();\n\n\n    //辅助函数：向结果数组添加菜单项\n    var push = (title, url, size) => result.push({\n        \"title\": title,\n        \"url\": url,\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": size\n        }\n    });\n\n    push(\"🔥榜单🔥\", null, 1);\n    push(\"月票榜\", `/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`, 0.25);\n    push(\"畅销榜\", `/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`, 0.25);\n    push(\"阅读榜\", `/majax/rank/readindexlist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`, 0.25);\n    push(\"书友榜\", `/majax/rank/newfanslist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`, 0.25);\n    push(\"推荐榜\", `/majax/rank/reclist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`, 0.25);\n    push(\"更新榜\", `/majax/rank/updatelist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`, 0.25);\n    push(\"签约榜\", `/majax/rank/signlist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`, 0.25);\n    push(\"新书榜\", `/majax/rank/newbooklist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`, 0.25);\n    push(\"新人榜\", `/majax/rank/newauthorlist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`, 0.25);\n    push(\"三江推荐\", `/majax/recommend/sanjiangList?pageNum={{page}}&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`, 0.25);\n    push(\"新书强推\", `/majax/recommend/strongreclist?gender=male&pageNum={{page}}&catId=-1&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`, 0.25);\n    push(\"人气免费\", `/majax/recommend/hotFreelist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`, 0.25);\n    push(\"新书免费\", `/majax/recommend/freeNewlist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`, 0.25);\n    push(\"新书抢先\", `/majax/recommend/newBooklist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`, 0.25);\n    push(\"畅销完本\", `/majax/recommend/bestSelllist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`, 0.25);\n\n\n\n    push(\"🔥点击筛选🔥\", null, 1);\n\n    result.push(createFilter(\n        \"排序\",\n        [\"人气\", \"时间\", \"字数\", \"收藏\", \"推荐\", \"点击\"],\n        \"人气\",\n        \"orderBy\",\n        0.33\n    ));\n\n    result.push(createFilter(\n        \"字数\",\n        [\"全部\", \"30万以下\", \"30-50万\", \"50-100万\", \"100-200万\", \"200万以上\"],\n        \"全部\",\n        \"size\",\n        0.33\n    ));\n\n    result.push(createFilter(\n        \"状态\",\n        [\"连载\", \"完本\"],\n        \"连载\",\n        \"isfinish\",\n        0.33\n    ));\n    result.push(createFilter(\n        \"分类\",\n        [\"🎆玄幻🎆\", \"🎆奇幻🎆\", \"🎆武侠🎆\", \"🎆仙侠🎆\", \"🎆都市🎆\", \"🎆现实🎆\", \"🎆军事🎆\", \"🎆历史🎆\", \"🎆游戏🎆\", \"🎆体育🎆\", \"🎆科幻🎆\", \"🎆悬疑🎆\", \"🎆诸天无限🎆\", \"🎆轻小说🎆\", \"🎆短篇🎆\"],\n        \"全部\",\n        \"sort\",\n        0.33\n    ));\n\n\n    // 分类参数映射表\n    var orderBy_dic = {\n        \"人气\": \"\",\n        \"时间\": \"4\",\n        \"字数\": \"3\",\n        \"收藏\": \"11\",\n        \"推荐\": \"9\",\n        \"点击\": \"1\"\n\n    };\n\n    var size_dic = {\n        \"全部\": \"\",\n        \"30万以下\": \"1\",\n        \"30-50万\": \"2\",\n        \"50-100万\": \"3\",\n        \"100-200万\": \"4\",\n        \"200万以上\": \"5\"\n    };\n\n    var isfinish_dic = {\n        \"连载\": \"\",\n        \"完本\": \"1\"\n    };\n\n\n    var type_dic = {\n        \"🎆玄幻🎆\": {\n            \"🎆玄幻🎆\": \"catId=21\",\n            \"东方玄幻\": \"catId=21&subCatId=8\",\n            \"异世大陆\": \"catId=21&subCatId=73\",\n            \"王朝争霸\": \"catId=21&subCatId=58\",\n            \"高武世界\": \"catId=21&subCatId=78\"\n        },\n        \"🎆奇幻🎆\": {\n            \"🎆奇幻🎆\": \"catId=1\",\n            \"现代魔法\": \"catId=1&subCatId=38\",\n            \"剑与魔法\": \"catId=1&subCatId=62\",\n            \"史诗奇幻\": \"catId=1&subCatId=201\",\n            \"神秘幻想\": \"catId=1&subCatId=202\",\n            \"历史神话\": \"catId=1&subCatId=20092\",\n            \"另类幻想\": \"catId=1&subCatId=20093\"\n        },\n        \"🎆武侠🎆\": {\n            \"🎆武侠🎆\": \"catId=2\",\n            \"传统武侠\": \"catId=2&subCatId=5\",\n            \"武侠幻想\": \"catId=2&subCatId=30\",\n            \"国士无双\": \"catId=2&subCatId=206\",\n            \"古武未来\": \"catId=2&subCatId=20099\",\n            \"武侠同人\": \"catId=2&subCatId=20100\"\n        },\n        \"🎆仙侠🎆\": {\n            \"🎆仙侠🎆\": \"catId=22\",\n            \"修真文明\": \"catId=22&subCatId=18\",\n            \"幻想修仙\": \"catId=22&subCatId=44\",\n            \"现代修真\": \"catId=22&subCatId=64\",\n            \"神话修真\": \"catId=22&subCatId=207\",\n            \"古典仙侠\": \"catId=22&subCatId=20101\"\n        },\n        \"🎆都市🎆\": {\n            \"🎆都市🎆\": \"catId=4\",\n            \"爱情婚姻\": \"catId=4&subCatId=65535\",\n            \"都市生活\": \"catId=4&subCatId=12\",\n            \"都市异能\": \"catId=4&subCatId=16\",\n            \"异术超能\": \"catId=4&subCatId=74\",\n            \"青春校园\": \"catId=4&subCatId=130\",\n            \"娱乐明星\": \"catId=4&subCatId=151\",\n            \"商战职场\": \"catId=4&subCatId=153\"\n        },\n        \"🎆现实🎆\": {\n            \"🎆现实🎆\": \"catId=15\",\n            \"时代叙事\": \"catId=15&subCatId=20106\",\n            \"家庭伦理\": \"catId=15&subCatId=6\",\n            \"女性题材\": \"catId=15&subCatId=20104\",\n            \"青年故事\": \"catId=15&subCatId=20108\",\n            \"社会悬疑\": \"catId=15&subCatId=20105\",\n            \"人间百态\": \"catId=15&subCatId=209\",\n            \"成功励志\": \"catId=15&subCatId=20107\"\n        },\n        \"🎆军事🎆\": {\n            \"🎆军事🎆\": \"catId=6\",\n            \"军旅生涯\": \"catId=6&subCatId=54\",\n            \"军事战争\": \"catId=6&subCatId=65\",\n            \"战争幻想\": \"catId=6&subCatId=80\",\n            \"抗战烽火\": \"catId=6&subCatId=230\",\n            \"谍战特工\": \"catId=6&subCatId=231\"\n        },\n        \"🎆历史🎆\": {\n            \"🎆历史🎆\": \"catId=5\",\n            \"架空历史\": \"catId=5&subCatId=22\",\n            \"秦汉三国\": \"catId=5&subCatId=48\",\n            \"上古先秦\": \"catId=5&subCatId=220\",\n            \"历史传记\": \"catId=5&subCatId=32\",\n            \"两晋隋唐\": \"catId=5&subCatId=222\",\n            \"五代十国\": \"catId=5&subCatId=223\",\n            \"两宋元明\": \"catId=5&subCatId=224\",\n            \"清史民国\": \"catId=5&subCatId=225\",\n            \"外国历史\": \"catId=5&subCatId=226\",\n            \"民间传说\": \"catId=5&subCatId=20094\"\n        },\n        \"🎆游戏🎆\": {\n            \"🎆游戏🎆\": \"catId=7\",\n            \"电子竞技\": \"catId=7&subCatId=7\",\n            \"虚拟网游\": \"catId=7&subCatId=70\",\n            \"游戏异界\": \"catId=7&subCatId=240\",\n            \"游戏系统\": \"catId=7&subCatId=20102\",\n            \"游戏主播\": \"catId=7&subCatId=20103\"\n        },\n        \"🎆体育🎆\": {\n            \"🎆体育🎆\": \"catId=8\",\n            \"篮球运动\": \"catId=8&subCatId=28\",\n            \"体育赛事\": \"catId=8&subCatId=55\",\n            \"足球运动\": \"catId=8&subCatId=82\"\n        },\n        \"🎆科幻🎆\": {\n            \"🎆科幻🎆\": \"catId=9\",\n            \"古武机甲\": \"catId=9&subCatId=21\",\n            \"未来世界\": \"catId=9&subCatId=25\",\n            \"星际文明\": \"catId=9&subCatId=68\",\n            \"超级科技\": \"catId=9&subCatId=250\",\n            \"时空穿梭\": \"catId=9&subCatId=251\",\n            \"进化变异\": \"catId=9&subCatId=252\",\n            \"末世危机\": \"catId=9&subCatId=253\"\n        },\n        \"🎆悬疑🎆\": {\n            \"🎆悬疑🎆\": \"catId=10\",\n            \"诡秘悬疑\": \"catId=10&subCatId=26\",\n            \"奇妙世界\": \"catId=10&subCatId=35\",\n            \"侦探推理\": \"catId=10&subCatId=57\",\n            \"探险求生\": \"catId=10&subCatId=260\",\n            \"古今传奇\": \"catId=10&subCatId=20095\"\n        },\n        \"🎆诸天无限🎆\": {\n            \"🎆诸天无限🎆\": \"catId=20109\",\n            \"无限\": \"catId=20109&subCatId=20110\",\n            \"诸天\": \"catId=20109&subCatId=20111\",\n            \"综漫\": \"catId=20109&subCatId=20112\"\n        },\n        \"🎆轻小说🎆\": {\n            \"🎆轻小说🎆\": \"catId=12\",\n            \"原生幻想\": \"catId=12&subCatId=60\",\n            \"现代幻想\": \"catId=12&subCatId=10\",\n            \"衍生同人\": \"catId=12&subCatId=281\",\n            \"搞笑吐槽\": \"catId=12&subCatId=282\",\n            \"恋爱日常\": \"catId=12&subCatId=66\"\n        },\n        \"🎆短篇🎆\": {\n            \"🎆短篇🎆\": \"catId=20076\",\n            \"诗歌散文\": \"catId=20076&subCatId=20097\",\n            \"人物传记\": \"catId=20076&subCatId=20098\",\n            \"影视剧本\": \"catId=20076&subCatId=20075\",\n            \"评论文集\": \"catId=20076&subCatId=20077\",\n            \"生活随笔\": \"catId=20076&subCatId=20078\",\n            \"美文游记\": \"catId=20076&subCatId=20079\",\n            \"短篇小说\": \"catId=20076&subCatId=20096\"\n        }\n    };\n\n\n    var sort = Get(\"sort\"); // 例如 \"🎆玄幻🎆\"\n    var size = Get(\"size\");\n    var isfinish = Get(\"isfinish\");\n    var orderBy = Get(\"orderBy\");\n\n    infoMap.save();\n\n    // 遍历选定分类下的所有子分类\n    Object.keys(type_dic[sort]).forEach(title => {\n        const queryParams = type_dic[sort][title]; // 获取查询参数字符串\n        const url = `majax/category/list?${queryParams}&size=${size_dic[size]}&isfinish=${isfinish_dic[isfinish]}&gender=male&orderBy=${orderBy_dic[orderBy]}&pageNum={{page}}&_csrfToken={{cookie.getKey(\"https://qidian.com\",\"_csrfToken\")}}`;\n        var sizeFactor;\n        if (queryParams.includes('subCatId')) {\n            sizeFactor = 0.25;\n        } else {\n            sizeFactor = 1;\n        }\n        push(title, url, sizeFactor);\n    });\n    JSON.stringify(result);\n\n} catch (e) {\n    java.log(e.message);\n    java.longToast(\"本书源只支持最新版洛雅橙改版阅读Σ\\n请安装后重新导入书源\");\n\n    result = `下载阅读Σ::{\\{java.longToast(\"本书源只支持最新版洛娅橙改版阅读Σ\\\\n请安装后重新导入书源\");java.startBrowser(\"https://loyc.xyz/c/legado.html#download\",\"下载阅读Σ最新测试版\");}}`;\n}",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; U; Android 13; zh-Hans-CN; PFJM10 Build/TP1A.220905.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/135.0.4896.58 Quark/6.13.6.581 Mobile Safari/537.36\",\"Accept-Language\":\"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"}",
    "jsLib": "//初始化源变量\nfunction csh() {\n    const {\n        java,\n        source\n    } = this;\n    var original = {\n        \"orderBy\": \"人气\",\n        \"isfinish\": \"连载\",\n        \"size\": \"全部\",\n        \"sort\": \"🎆玄幻🎆\"\n    };\n    var csh_1;\n    //设置默认的源变量\n    try {\n\n        csh_1 = JSON.parse(source.getVariable());\n        if (csh_1 == null) {\n            error;\n        } else {\n            '';\n        };\n    } catch (e) {\n        csh_1 = original;\n        source.setVariable(JSON.stringify(csh_1, null, 2));\n        java.toast(\"初始化成功\")\n    }\n\n}\n\n\n\n//获取源变量的值\nfunction Get(e) {\n    const {\n        java,\n        source,\n        cookie\n    } = this;\n    var get = JSON.parse(source.getVariable());\n    return get[e];\n}\n\n//按钮切换时改变源变量并刷新发现\nfunction show(m, t) {\n    const {\n        java,\n        source\n    } = this;\n    //源变量为空时刷新发现，重置源变量\n    source.getVariable()==''?java.refreshExplore():'';//\n    var data = JSON.parse(source.getVariable());\n    //java.log(data);\n    data[t] = m;\n    //java.log(JSON.stringify(data));\n    source.setVariable(JSON.stringify(data, null, 2));\n    java.refreshExplore();\n}\n\n/**\n * 创建筛选器配置\n * @param {string} title - 筛选器标题\n * @param {string[]} chars - 选项列表\n * @param {string} defaultVal - 默认值\n * @param {string} paramKey - URL参数名\n * @param {number} size - 布局占比（0-1之间，如0.33表示33%）\n * @returns {Object} 筛选器配置对象\n */\nfunction createFilter(title, chars, defaultVal, paramKey, size) {\n    return {\n        title: title,\n        type: \"select\",\n        chars: chars,\n        default: defaultVal,\n        action: `show(infoMap['${title}'],'${paramKey}')`,\n        style: {\n            layout_flexGrow: 1,\n            layout_flexBasisPercent: size\n        }\n    };\n}\n\n",
    "lastUpdateTime": 1772086511729,
    "respondTime": 3570,
    "ruleBookInfo": {
      "author": ".detail__header-detail__author@a@textNodes",
      "coverUrl": "[property$=image]@content",
      "intro": "\n&nbsp;\n📖 书名：{{@@[property=\"og:title\"]@content}}\n👤 作者：{{@@[property=\"og:novel:author\"]@content}}\n📜 状态：{{@@[property=\"og:novel:status\"]@content}}\n✏  分类：{{@@[class=\"detail__header-detail__line\"].0@text}}\n🔖 标签：{{@@.tags-wrapper@.tag@text##\\n##\\#}}\n🕰 最新：{{@@[property=\"og:novel:latest_chapter_name\"]@content}}\n🗿 更新时间：{{@@[property=\"og:novel:update_time\"]@content}}\n👁 榜单信息：{{@@[class=\"novelbook__honorinfo\"]@text##(\\S+)\\s+(\\S+)\\s+(\\S+)\\s+(\\S+)\\s+(\\S+)\\s+(\\S+)\\s*##\n$2:$1\n$4:$3\n$6:$5}}\n🏷 简介：{{@@[class=\"detail__summary__content\"]@html}}\n",
      "kind": "[property~=category|status|update_time]@content##\\s.*",
      "lastChapter": "[property$=chapter_name]@content",
      "name": "\n\n.detail__header-detail__title@text",
      "tocUrl": "{{baseUrl}}/catalog/",
      "wordCount": ".detail__header-detail__line@text##.*\\/.*|\\|.*|\\n"
    },
    "ruleContent": {
      "content": ".content@p@html",
      "imageStyle": "FULL"
    },
    "ruleExplore": {
      "author": "$.bAuth",
      "bookList": "$.data.records",
      "bookUrl": "https://m.qidian.com/book/{{$.bid}}",
      "coverUrl": "https://bookcover.yuewen.com/qdbimg/349573/{{$.bid}}",
      "intro": "$.desc",
      "kind": "$.cat&&$.state\n",
      "name": "$.bName",
      "wordCount": "$.cnt\n@js:\njava.put(\"count\",result);"
    },
    "ruleSearch": {
      "author": "p.-4@text",
      "bookList": ".y-list__item",
      "bookUrl": "{{@@a.0@href##chapter##book}}##\\/0\\/\n",
      "coverUrl": "img@data-src",
      "intro": "h2+p@html",
      "kind": "p[-3:]@text",
      "name": "h2@text"
    },
    "ruleToc": {
      "chapterList": ".y-list__item@a,._chapterBar_fps9g_592",
      "chapterName": "h2@text||text",
      "chapterUrl": "href",
      "isVip": "span@text\n@js:\nresult=result==\"免费\"?false:true;\nresult;",
      "isVolume": "textNodes\n@js:\nresult=result?true:false;\nresult;",
      "preUpdateJs": "java.refreshTocUrl()",
      "updateTime": "alt\n@js:\nresult=(result.match(/首发时间: (.*)章节字数/) || [\"\",\"\"])[1];\nresult;"
    },
    "searchUrl": "/so/{{key}}.html?pageNum={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "QQ阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "https://book.qq.com#",
    "customButton": false,
    "customOrder": 3,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"女生精选\",\"url\":\" https://book.qq.com/recommend/female-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"免费榜\",\"url\":\" https://book.qq.com/book-rank/female-free/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"封神榜\",\"url\":\" https://book.qq.com/book-rank/female-god/cycle-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"新书榜-日\",\"url\":\" https://book.qq.com/book-rank/female-new/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书榜-周\",\"url\":\" https://book.qq.com/book-rank/female-new/cycle-2-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书榜-月\",\"url\":\" https://book.qq.com/book-rank/female-new/cycle-3-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-周\",\"url\":\" https://book.qq.com/book-rank/female-finish/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-月\",\"url\":\" https://book.qq.com/book-rank/female-finish/cycle-2-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-总\",\"url\":\" https://book.qq.com/book-rank/female-finish/cycle-3-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜-全部\",\"url\":\" https://book.qq.com/book-rank/female-sell/cycle-5-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"上架30天\",\"url\":\" https://book.qq.com/book-rank/female-sell/cycle-1-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架120天\",\"url\":\" https://book.qq.com/book-rank/female-sell/cycle-2-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架300天\",\"url\":\" https://book.qq.com/book-rank/female-sell/cycle-3-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架300天以上\",\"url\":\" https://book.qq.com/book-rank/female-sell/cycle-4-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n{\"title\":\"↓    ↓    ↓    全部    ↓    ↓    ↓\",\"url\":\"https://book.qq.com/book-cate/0-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n\n{\"title\":\"古言\",\"url\":\"https://book.qq.com/book-cate/30013-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"女尊\",\"url\":\"https://book.qq.com/book-cate/30013-30014-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/30013-30015-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"宅斗\",\"url\":\"https://book.qq.com/book-cate/30013-30016-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"穿越\",\"url\":\"https://book.qq.com/book-cate/30013-30017-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"宫斗\",\"url\":\"https://book.qq.com/book-cate/30013-30018-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"种田\",\"url\":\"https://book.qq.com/book-cate/30013-30019-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"西方\",\"url\":\"https://book.qq.com/book-cate/30013-30094-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"清穿\",\"url\":\"https://book.qq.com/book-cate/30013-30095-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"蛮荒\",\"url\":\"https://book.qq.com/book-cate/30013-30096-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"江湖\",\"url\":\"https://book.qq.com/book-cate/30013-30097-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"现言\",\"url\":\"https://book.qq.com/book-cate/30020-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.6}},\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/30020-30021-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"婚恋\",\"url\":\"https://book.qq.com/book-cate/30020-30022-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"明星\",\"url\":\"https://book.qq.com/book-cate/30020-30023-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"职场\",\"url\":\"https://book.qq.com/book-cate/30020-30026-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/30020-30027-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"豪门\",\"url\":\"https://book.qq.com/book-cate/30020-30028-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"极道\",\"url\":\"https://book.qq.com/book-cate/30020-30029-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"民国\",\"url\":\"https://book.qq.com/book-cate/30020-30030-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异国\",\"url\":\"https://book.qq.com/book-cate/30020-30098-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"幻情\",\"url\":\"https://book.qq.com/book-cate/30001-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/30001-30002-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/30001-30003-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"远古\",\"url\":\"https://book.qq.com/book-cate/30001-30004-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异族\",\"url\":\"https://book.qq.com/book-cate/30001-30005-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"魔幻\",\"url\":\"https://book.qq.com/book-cate/30001-30006-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"西幻\",\"url\":\"https://book.qq.com/book-cate/30001-30007-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/30001-30092-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/30008-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.6}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/30008-30009-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"修仙\",\"url\":\"https://book.qq.com/book-cate/30008-30010-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/30008-30011-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"洪荒\",\"url\":\"https://book.qq.com/book-cate/30008-30012-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"仙缘\",\"url\":\"https://book.qq.com/book-cate/30008-30093-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"青春\",\"url\":\"https://book.qq.com/book-cate/30031-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"成长\",\"url\":\"https://book.qq.com/book-cate/30031-30032-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"纯爱\",\"url\":\"https://book.qq.com/book-cate/30031-30033-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"疼痛\",\"url\":\"https://book.qq.com/book-cate/30031-30034-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/30031-30035-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/30050-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/30050-30051-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"网游\",\"url\":\"https://book.qq.com/book-cate/30050-30052-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"网恋\",\"url\":\"https://book.qq.com/book-cate/30050-30053-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/30050-30054-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/30042-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/30042-30043-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"位面\",\"url\":\"https://book.qq.com/book-cate/30042-30044-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/30042-30045-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/30042-30046-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/30042-30047-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"进化\",\"url\":\"https://book.qq.com/book-cate/30042-30048-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/30042-30049-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/30036-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/30036-30037-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"探险\",\"url\":\"https://book.qq.com/book-cate/30036-30039-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/30036-30040-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"风水\",\"url\":\"https://book.qq.com/book-cate/30036-30041-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/30055-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.6}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/30055-30100-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"唯美\",\"url\":\"https://book.qq.com/book-cate/30055-30101-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"萌系\",\"url\":\"https://book.qq.com/book-cate/30055-30102-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"纯恋\",\"url\":\"https://book.qq.com/book-cate/30055-30103-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/30055-30104-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"古衍\",\"url\":\"https://book.qq.com/book-cate/30055-30105-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"影衍\",\"url\":\"https://book.qq.com/book-cate/30055-30106-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"漫衍\",\"url\":\"https://book.qq.com/book-cate/30055-30107-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"其他\",\"url\":\"https://book.qq.com/book-cate/30055-30108-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/30083-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/30083-30086-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/30083-30089-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/30120-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/30120-30121-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"行业\",\"url\":\"https://book.qq.com/book-cate/30120-30122-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"探索\",\"url\":\"https://book.qq.com/book-cate/30120-30123-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"人文\",\"url\":\"https://book.qq.com/book-cate/30120-30124-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"↑    ↑    ↑    ***    ↑    ↑    ↑\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n{\"title\":\"↓    ↓    ↓    连载中    ↓    ↓    ↓\",\"url\":\"https://book.qq.com/book-cate/0-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n\n{\"title\":\"古言\",\"url\":\"https://book.qq.com/book-cate/30013-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"女尊\",\"url\":\"https://book.qq.com/book-cate/30013-30014-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/30013-30015-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"宅斗\",\"url\":\"https://book.qq.com/book-cate/30013-30016-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"https://book.qq.com/book-cate/30013-30017-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"宫斗\",\"url\":\"https://book.qq.com/book-cate/30013-30018-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"种田\",\"url\":\"https://book.qq.com/book-cate/30013-30019-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"西方\",\"url\":\"https://book.qq.com/book-cate/30013-30094-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"清穿\",\"url\":\"https://book.qq.com/book-cate/30013-30095-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"蛮荒\",\"url\":\"https://book.qq.com/book-cate/30013-30096-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"江湖\",\"url\":\"https://book.qq.com/book-cate/30013-30097-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现言\",\"url\":\"https://book.qq.com/book-cate/30020-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.5,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/30020-30021-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"婚恋\",\"url\":\"https://book.qq.com/book-cate/30020-30022-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"明星\",\"url\":\"https://book.qq.com/book-cate/30020-30023-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"职场\",\"url\":\"https://book.qq.com/book-cate/30020-30026-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/30020-30027-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"豪门\",\"url\":\"https://book.qq.com/book-cate/30020-30028-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"极道\",\"url\":\"https://book.qq.com/book-cate/30020-30029-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"民国\",\"url\":\"https://book.qq.com/book-cate/30020-30030-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异国\",\"url\":\"https://book.qq.com/book-cate/30020-30098-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"幻情\",\"url\":\"https://book.qq.com/book-cate/30001-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/30001-30002-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/30001-30003-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"远古\",\"url\":\"https://book.qq.com/book-cate/30001-30004-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异族\",\"url\":\"https://book.qq.com/book-cate/30001-30005-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"魔幻\",\"url\":\"https://book.qq.com/book-cate/30001-30006-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"西幻\",\"url\":\"https://book.qq.com/book-cate/30001-30007-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/30001-30092-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/30008-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/30008-30009-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"修仙\",\"url\":\"https://book.qq.com/book-cate/30008-30010-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/30008-30011-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"洪荒\",\"url\":\"https://book.qq.com/book-cate/30008-30012-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"仙缘\",\"url\":\"https://book.qq.com/book-cate/30008-30093-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"青春\",\"url\":\"https://book.qq.com/book-cate/30031-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"成长\",\"url\":\"https://book.qq.com/book-cate/30031-30032-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"纯爱\",\"url\":\"https://book.qq.com/book-cate/30031-30033-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"疼痛\",\"url\":\"https://book.qq.com/book-cate/30031-30034-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/30031-30035-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/30050-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/30050-30051-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"https://book.qq.com/book-cate/30050-30052-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网恋\",\"url\":\"https://book.qq.com/book-cate/30050-30053-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/30050-30054-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/30042-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/30042-30043-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"位面\",\"url\":\"https://book.qq.com/book-cate/30042-30044-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/30042-30045-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/30042-30046-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/30042-30047-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"进化\",\"url\":\"https://book.qq.com/book-cate/30042-30048-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/30042-30049-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/30036-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/30036-30037-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"探险\",\"url\":\"https://book.qq.com/book-cate/30036-30039-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/30036-30040-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"风水\",\"url\":\"https://book.qq.com/book-cate/30036-30041-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/30055-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/30055-30100-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"唯美\",\"url\":\"https://book.qq.com/book-cate/30055-30101-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"萌系\",\"url\":\"https://book.qq.com/book-cate/30055-30102-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"纯恋\",\"url\":\"https://book.qq.com/book-cate/30055-30103-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/30055-30104-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古衍\",\"url\":\"https://book.qq.com/book-cate/30055-30105-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"影衍\",\"url\":\"https://book.qq.com/book-cate/30055-30106-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"漫衍\",\"url\":\"https://book.qq.com/book-cate/30055-30107-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"其他\",\"url\":\"https://book.qq.com/book-cate/30055-30108-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/30083-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/30083-30086-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/30083-30089-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/30120-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/30120-30121-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"行业\",\"url\":\"https://book.qq.com/book-cate/30120-30122-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"探索\",\"url\":\"https://book.qq.com/book-cate/30120-30123-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"人文\",\"url\":\"https://book.qq.com/book-cate/30120-30124-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"↑    ↑    ↑    ***    ↑    ↑    ↑\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"↓    ↓    ↓    已完结    ↓    ↓    ↓\",\"url\":\"https://book.qq.com/book-cate/0-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n\n{\"title\":\"古言\",\"url\":\"https://book.qq.com/book-cate/30013-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"女尊\",\"url\":\"https://book.qq.com/book-cate/30013-30014-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/30013-30015-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"宅斗\",\"url\":\"https://book.qq.com/book-cate/30013-30016-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"https://book.qq.com/book-cate/30013-30017-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"宫斗\",\"url\":\"https://book.qq.com/book-cate/30013-30018-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"种田\",\"url\":\"https://book.qq.com/book-cate/30013-30019-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"西方\",\"url\":\"https://book.qq.com/book-cate/30013-30094-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"清穿\",\"url\":\"https://book.qq.com/book-cate/30013-30095-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"蛮荒\",\"url\":\"https://book.qq.com/book-cate/30013-30096-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"江湖\",\"url\":\"https://book.qq.com/book-cate/30013-30097-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现言\",\"url\":\"https://book.qq.com/book-cate/30020-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/30020-30021-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"婚恋\",\"url\":\"https://book.qq.com/book-cate/30020-30022-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"明星\",\"url\":\"https://book.qq.com/book-cate/30020-30023-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"职场\",\"url\":\"https://book.qq.com/book-cate/30020-30026-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/30020-30027-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"豪门\",\"url\":\"https://book.qq.com/book-cate/30020-30028-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"极道\",\"url\":\"https://book.qq.com/book-cate/30020-30029-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"民国\",\"url\":\"https://book.qq.com/book-cate/30020-30030-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异国\",\"url\":\"https://book.qq.com/book-cate/30020-30098-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"幻情\",\"url\":\"https://book.qq.com/book-cate/30001-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/30001-30002-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/30001-30003-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"远古\",\"url\":\"https://book.qq.com/book-cate/30001-30004-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异族\",\"url\":\"https://book.qq.com/book-cate/30001-30005-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"魔幻\",\"url\":\"https://book.qq.com/book-cate/30001-30006-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"西幻\",\"url\":\"https://book.qq.com/book-cate/30001-30007-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/30001-30092-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/30008-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/30008-30009-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"修仙\",\"url\":\"https://book.qq.com/book-cate/30008-30010-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/30008-30011-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"洪荒\",\"url\":\"https://book.qq.com/book-cate/30008-30012-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"仙缘\",\"url\":\"https://book.qq.com/book-cate/30008-30093-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"青春\",\"url\":\"https://book.qq.com/book-cate/30031-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"成长\",\"url\":\"https://book.qq.com/book-cate/30031-30032-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"纯爱\",\"url\":\"https://book.qq.com/book-cate/30031-30033-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"疼痛\",\"url\":\"https://book.qq.com/book-cate/30031-30034-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/30031-30035-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/30050-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/30050-30051-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"https://book.qq.com/book-cate/30050-30052-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网恋\",\"url\":\"https://book.qq.com/book-cate/30050-30053-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/30050-30054-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/30042-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/30042-30043-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"位面\",\"url\":\"https://book.qq.com/book-cate/30042-30044-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/30042-30045-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/30042-30046-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/30042-30047-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"进化\",\"url\":\"https://book.qq.com/book-cate/30042-30048-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/30042-30049-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/30036-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/30036-30037-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"探险\",\"url\":\"https://book.qq.com/book-cate/30036-30039-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/30036-30040-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"风水\",\"url\":\"https://book.qq.com/book-cate/30036-30041-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/30055-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/30055-30100-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"唯美\",\"url\":\"https://book.qq.com/book-cate/30055-30101-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"萌系\",\"url\":\"https://book.qq.com/book-cate/30055-30102-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"纯恋\",\"url\":\"https://book.qq.com/book-cate/30055-30103-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/30055-30104-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古衍\",\"url\":\"https://book.qq.com/book-cate/30055-30105-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"影衍\",\"url\":\"https://book.qq.com/book-cate/30055-30106-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"漫衍\",\"url\":\"https://book.qq.com/book-cate/30055-30107-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"其他\",\"url\":\"https://book.qq.com/book-cate/30055-30108-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/30083-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/30083-30086-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/30083-30089-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/30120-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/30120-30121-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"行业\",\"url\":\"https://book.qq.com/book-cate/30120-30122-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"探索\",\"url\":\"https://book.qq.com/book-cate/30120-30123-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"人文\",\"url\":\"https://book.qq.com/book-cate/30120-30124-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"↑    ↑    ↑    ***    ↑    ↑    ↑\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"男生精选\",\"url\":\"https://book.qq.com/recommend/male-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"免费榜\",\"url\":\"https://book.qq.com/book-rank/male-free/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"封神榜\",\"url\":\"https://book.qq.com/book-rank/male-god/cycle-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"新书榜-日\",\"url\":\"https://book.qq.com/book-rank/male-new/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书榜-周\",\"url\":\"https://book.qq.com/book-rank/male-new/cycle-2-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书榜-月\",\"url\":\"https://book.qq.com/book-rank/male-new/cycle-3-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-周\",\"url\":\"https://book.qq.com/book-rank/male-finish/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-月\",\"url\":\"https://book.qq.com/book-rank/male-finish/cycle-2-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-总\",\"url\":\"https://book.qq.com/book-rank/male-finish/cycle-3-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n\n{\"title\":\"畅销榜-全部\",\"url\":\"https://book.qq.com/book-rank/male-sell/cycle-5-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.5,\"layout_flexGrow\":1}},\n{\"title\":\"上架30天内\",\"url\":\"https://book.qq.com/book-rank/male-sell/cycle-1-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架120天内\",\"url\":\"https://book.qq.com/book-rank/male-sell/cycle-2-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架300天内\",\"url\":\"https://book.qq.com/book-rank/male-sell/cycle-3-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架300天以上\",\"url\":\"https://book.qq.com/book-rank/male-sell/cycle-4-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n{\"title\":\"↓    ↓    ↓    全部    ↓    ↓    ↓\",\"url\":\"https://book.qq.com/book-cate/0-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"东方玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-20002-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/20001-20003-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"争霸\",\"url\":\"https://book.qq.com/book-cate/20001-20082-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"高武\",\"url\":\"https://book.qq.com/book-cate/20001-20004-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"奇幻\",\"url\":\"https://book.qq.com/book-cate/20005-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"魔法\",\"url\":\"https://book.qq.com/book-cate/20005-20006-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"史诗\",\"url\":\"https://book.qq.com/book-cate/20005-20007-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"神秘\",\"url\":\"https://book.qq.com/book-cate/20005-20008-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"https://book.qq.com/book-cate/20005-20009-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"神史\",\"url\":\"https://book.qq.com/book-cate/20005-20092-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"空幻\",\"url\":\"https://book.qq.com/book-cate/20005-20093-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-20011-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"潮流\",\"url\":\"https://book.qq.com/book-cate/20010-20012-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"国术\",\"url\":\"https://book.qq.com/book-cate/20010-20013-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古武\",\"url\":\"https://book.qq.com/book-cate/20010-20099-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠同人\",\"url\":\"https://book.qq.com/book-cate/20010-20100-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/20014-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/20014-20015-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"幻修\",\"url\":\"https://book.qq.com/book-cate/20014-20016-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现修\",\"url\":\"https://book.qq.com/book-cate/20014-20017-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神话\",\"url\":\"https://book.qq.com/book-cate/20014-20018-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古典\",\"url\":\"https://book.qq.com/book-cate/20014-20101-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/20019-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"生活\",\"url\":\"https://book.qq.com/book-cate/20019-20020-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"娱乐\",\"url\":\"https://book.qq.com/book-cate/20019-20022-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"商场\",\"url\":\"https://book.qq.com/book-cate/20019-20025-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/20019-20026-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/20019-20027-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/20019-20069-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/20065-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/20065-20021-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"百态\",\"url\":\"https://book.qq.com/book-cate/20065-20071-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"女性\",\"url\":\"https://book.qq.com/book-cate/20065-20104-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20065-20105-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"时代\",\"url\":\"https://book.qq.com/book-cate/20065-20106-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"青年\",\"url\":\"https://book.qq.com/book-cate/20065-20108-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"历史\",\"url\":\"https://book.qq.com/book-cate/20028-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.5,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/20028-20029-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"先秦\",\"url\":\"https://book.qq.com/book-cate/20028-20083-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"秦汉三国\",\"url\":\"https://book.qq.com/book-cate/20028-20084-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.3,\"layout_flexGrow\":1}},\n{\"title\":\"两晋隋唐\",\"url\":\"https://book.qq.com/book-cate/20028-20085-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.3,\"layout_flexGrow\":1}},\n{\"title\":\"五代十国\",\"url\":\"https://book.qq.com/book-cate/20028-20086-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.3,\"layout_flexGrow\":1}},\n{\"title\":\"两宋元明\",\"url\":\"https://book.qq.com/book-cate/20028-20030-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.3,\"layout_flexGrow\":1}},\n{\"title\":\"清民\",\"url\":\"https://book.qq.com/book-cate/20028-20087-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"外史\",\"url\":\"https://book.qq.com/book-cate/20028-20031-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传记\",\"url\":\"https://book.qq.com/book-cate/20028-20088-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传说\",\"url\":\"https://book.qq.com/book-cate/20028-20094-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"军事\",\"url\":\"https://book.qq.com/book-cate/20032-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"战争\",\"url\":\"https://book.qq.com/book-cate/20032-20091-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"战斗\",\"url\":\"https://book.qq.com/book-cate/20032-20033-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"激战\",\"url\":\"https://book.qq.com/book-cate/20032-20034-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"军旅\",\"url\":\"https://book.qq.com/book-cate/20032-20035-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"抗战\",\"url\":\"https://book.qq.com/book-cate/20032-20036-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/20050-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/20050-20051-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"虚拟\",\"url\":\"https://book.qq.com/book-cate/20050-20052-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异界\",\"url\":\"https://book.qq.com/book-cate/20050-20053-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"系统\",\"url\":\"https://book.qq.com/book-cate/20050-20102-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"主播\",\"url\":\"https://book.qq.com/book-cate/20050-20103-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-20055-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"篮球\",\"url\":\"https://book.qq.com/book-cate/20054-20056-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"足球\",\"url\":\"https://book.qq.com/book-cate/20054-20057-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/20042-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/20042-20043-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿梭\",\"url\":\"https://book.qq.com/book-cate/20042-20044-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/20042-20045-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/20042-20046-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/20042-20047-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"变异\",\"url\":\"https://book.qq.com/book-cate/20042-20048-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/20042-20049-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.5,\"layout_flexGrow\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/20037-20038-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-20039-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"生存\",\"url\":\"https://book.qq.com/book-cate/20037-20040-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/20037-20041-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传奇\",\"url\":\"https://book.qq.com/book-cate/20037-20095-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/20059-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"幻想\",\"url\":\"https://book.qq.com/book-cate/20059-20060-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/20059-20061-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/20059-20063-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"恋爱\",\"url\":\"https://book.qq.com/book-cate/20059-20064-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"诸天无限\",\"url\":\"https://book.qq.com/book-cate/20109-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"无限\",\"url\":\"https://book.qq.com/book-cate/20109-20110-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"诸天\",\"url\":\"https://book.qq.com/book-cate/20109-20111-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"综漫\",\"url\":\"https://book.qq.com/book-cate/20109-20112-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/20076-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"剧本\",\"url\":\"https://book.qq.com/book-cate/20076-20075-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"评论\",\"url\":\"https://book.qq.com/book-cate/20076-20077-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/20076-20078-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"游记\",\"url\":\"https://book.qq.com/book-cate/20076-20079-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/20076-20096-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"散文\",\"url\":\"https://book.qq.com/book-cate/20076-20097-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"人物\",\"url\":\"https://book.qq.com/book-cate/20076-20098-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"连载中\",\"url\":\"https://book.qq.com/book-cate/0-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"东方玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-20002-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/20001-20003-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"争霸\",\"url\":\"https://book.qq.com/book-cate/20001-20082-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"高武\",\"url\":\"https://book.qq.com/book-cate/20001-20004-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"奇幻\",\"url\":\"https://book.qq.com/book-cate/20005-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"魔法\",\"url\":\"https://book.qq.com/book-cate/20005-20006-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"史诗\",\"url\":\"https://book.qq.com/book-cate/20005-20007-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神秘\",\"url\":\"https://book.qq.com/book-cate/20005-20008-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"https://book.qq.com/book-cate/20005-20009-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神史\",\"url\":\"https://book.qq.com/book-cate/20005-20092-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"空幻\",\"url\":\"https://book.qq.com/book-cate/20005-20093-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-20011-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"潮流\",\"url\":\"https://book.qq.com/book-cate/20010-20012-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"国术\",\"url\":\"https://book.qq.com/book-cate/20010-20013-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古武\",\"url\":\"https://book.qq.com/book-cate/20010-20099-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠同人\",\"url\":\"https://book.qq.com/book-cate/20010-20100-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/20014-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/20014-20015-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"幻修\",\"url\":\"https://book.qq.com/book-cate/20014-20016-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现修\",\"url\":\"https://book.qq.com/book-cate/20014-20017-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神话\",\"url\":\"https://book.qq.com/book-cate/20014-20018-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古典\",\"url\":\"https://book.qq.com/book-cate/20014-20101-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/20019-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"生活\",\"url\":\"https://book.qq.com/book-cate/20019-20020-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"娱乐\",\"url\":\"https://book.qq.com/book-cate/20019-20022-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"商场\",\"url\":\"https://book.qq.com/book-cate/20019-20025-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/20019-20026-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/20019-20027-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/20019-20069-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/20065-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/20065-20021-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"百态\",\"url\":\"https://book.qq.com/book-cate/20065-20071-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"女性\",\"url\":\"https://book.qq.com/book-cate/20065-20104-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20065-20105-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"时代\",\"url\":\"https://book.qq.com/book-cate/20065-20106-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"青年\",\"url\":\"https://book.qq.com/book-cate/20065-20108-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"历史\",\"url\":\"https://book.qq.com/book-cate/20028-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/20028-20029-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"先秦\",\"url\":\"https://book.qq.com/book-cate/20028-20083-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"秦汉三国\",\"url\":\"https://book.qq.com/book-cate/20028-20084-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"两晋隋唐\",\"url\":\"https://book.qq.com/book-cate/20028-20085-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"五代十国\",\"url\":\"https://book.qq.com/book-cate/20028-20086-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"两宋元明\",\"url\":\"https://book.qq.com/book-cate/20028-20030-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"清民\",\"url\":\"https://book.qq.com/book-cate/20028-20087-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"外史\",\"url\":\"https://book.qq.com/book-cate/20028-20031-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传记\",\"url\":\"https://book.qq.com/book-cate/20028-20088-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传说\",\"url\":\"https://book.qq.com/book-cate/20028-20094-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"军事\",\"url\":\"https://book.qq.com/book-cate/20032-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"战争\",\"url\":\"https://book.qq.com/book-cate/20032-20091-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"战斗\",\"url\":\"https://book.qq.com/book-cate/20032-20033-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"激战\",\"url\":\"https://book.qq.com/book-cate/20032-20034-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"军旅\",\"url\":\"https://book.qq.com/book-cate/20032-20035-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"抗战\",\"url\":\"https://book.qq.com/book-cate/20032-20036-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/20050-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/20050-20051-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"虚拟\",\"url\":\"https://book.qq.com/book-cate/20050-20052-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异界\",\"url\":\"https://book.qq.com/book-cate/20050-20053-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"系统\",\"url\":\"https://book.qq.com/book-cate/20050-20102-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"主播\",\"url\":\"https://book.qq.com/book-cate/20050-20103-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-20055-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"篮球\",\"url\":\"https://book.qq.com/book-cate/20054-20056-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"足球\",\"url\":\"https://book.qq.com/book-cate/20054-20057-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/20042-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/20042-20043-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿梭\",\"url\":\"https://book.qq.com/book-cate/20042-20044-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/20042-20045-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/20042-20046-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/20042-20047-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"变异\",\"url\":\"https://book.qq.com/book-cate/20042-20048-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/20042-20049-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/20037-20038-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-20039-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"生存\",\"url\":\"https://book.qq.com/book-cate/20037-20040-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/20037-20041-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传奇\",\"url\":\"https://book.qq.com/book-cate/20037-20095-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/20059-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"幻想\",\"url\":\"https://book.qq.com/book-cate/20059-20060-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/20059-20061-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/20059-20063-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"恋爱\",\"url\":\"https://book.qq.com/book-cate/20059-20064-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"诸天无限\",\"url\":\"https://book.qq.com/book-cate/20109-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"无限\",\"url\":\"https://book.qq.com/book-cate/20109-20110-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"诸天\",\"url\":\"https://book.qq.com/book-cate/20109-20111-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"综漫\",\"url\":\"https://book.qq.com/book-cate/20109-20112-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/20076-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"剧本\",\"url\":\"https://book.qq.com/book-cate/20076-20075-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"评论\",\"url\":\"https://book.qq.com/book-cate/20076-20077-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/20076-20078-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"游记\",\"url\":\"https://book.qq.com/book-cate/20076-20079-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/20076-20096-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"散文\",\"url\":\"https://book.qq.com/book-cate/20076-20097-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"人物\",\"url\":\"https://book.qq.com/book-cate/20076-20098-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"已完结\",\"url\":\"https://book.qq.com/book-cate/0-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"东方玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-20002-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/20001-20003-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"争霸\",\"url\":\"https://book.qq.com/book-cate/20001-20082-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"高武\",\"url\":\"https://book.qq.com/book-cate/20001-20004-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"奇幻\",\"url\":\"https://book.qq.com/book-cate/20005-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"魔法\",\"url\":\"https://book.qq.com/book-cate/20005-20006-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"史诗\",\"url\":\"https://book.qq.com/book-cate/20005-20007-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神秘\",\"url\":\"https://book.qq.com/book-cate/20005-20008-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"https://book.qq.com/book-cate/20005-20009-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神史\",\"url\":\"https://book.qq.com/book-cate/20005-20092-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"空幻\",\"url\":\"https://book.qq.com/book-cate/20005-20093-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-20011-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"潮流\",\"url\":\"https://book.qq.com/book-cate/20010-20012-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"国术\",\"url\":\"https://book.qq.com/book-cate/20010-20013-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古武\",\"url\":\"https://book.qq.com/book-cate/20010-20099-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠同人\",\"url\":\"https://book.qq.com/book-cate/20010-20100-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/20014-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/20014-20015-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"幻修\",\"url\":\"https://book.qq.com/book-cate/20014-20016-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现修\",\"url\":\"https://book.qq.com/book-cate/20014-20017-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神话\",\"url\":\"https://book.qq.com/book-cate/20014-20018-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古典\",\"url\":\"https://book.qq.com/book-cate/20014-20101-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/20019-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"生活\",\"url\":\"https://book.qq.com/book-cate/20019-20020-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"娱乐\",\"url\":\"https://book.qq.com/book-cate/20019-20022-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"商场\",\"url\":\"https://book.qq.com/book-cate/20019-20025-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/20019-20026-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/20019-20027-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/20019-20069-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/20065-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/20065-20021-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"百态\",\"url\":\"https://book.qq.com/book-cate/20065-20071-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"女性\",\"url\":\"https://book.qq.com/book-cate/20065-20104-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20065-20105-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"时代\",\"url\":\"https://book.qq.com/book-cate/20065-20106-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"青年\",\"url\":\"https://book.qq.com/book-cate/20065-20108-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"历史\",\"url\":\"https://book.qq.com/book-cate/20028-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/20028-20029-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"先秦\",\"url\":\"https://book.qq.com/book-cate/20028-20083-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"秦汉三国\",\"url\":\"https://book.qq.com/book-cate/20028-20084-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"两晋隋唐\",\"url\":\"https://book.qq.com/book-cate/20028-20085-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"五代十国\",\"url\":\"https://book.qq.com/book-cate/20028-20086-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"两宋元明\",\"url\":\"https://book.qq.com/book-cate/20028-20030-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"清民\",\"url\":\"https://book.qq.com/book-cate/20028-20087-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"外史\",\"url\":\"https://book.qq.com/book-cate/20028-20031-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传记\",\"url\":\"https://book.qq.com/book-cate/20028-20088-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传说\",\"url\":\"https://book.qq.com/book-cate/20028-20094-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"军事\",\"url\":\"https://book.qq.com/book-cate/20032-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"战争\",\"url\":\"https://book.qq.com/book-cate/20032-20091-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"战斗\",\"url\":\"https://book.qq.com/book-cate/20032-20033-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"激战\",\"url\":\"https://book.qq.com/book-cate/20032-20034-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"军旅\",\"url\":\"https://book.qq.com/book-cate/20032-20035-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"抗战\",\"url\":\"https://book.qq.com/book-cate/20032-20036-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/20050-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/20050-20051-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"虚拟\",\"url\":\"https://book.qq.com/book-cate/20050-20052-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异界\",\"url\":\"https://book.qq.com/book-cate/20050-20053-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"系统\",\"url\":\"https://book.qq.com/book-cate/20050-20102-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"主播\",\"url\":\"https://book.qq.com/book-cate/20050-20103-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-20055-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"篮球\",\"url\":\"https://book.qq.com/book-cate/20054-20056-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"足球\",\"url\":\"https://book.qq.com/book-cate/20054-20057-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/20042-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/20042-20043-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿梭\",\"url\":\"https://book.qq.com/book-cate/20042-20044-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/20042-20045-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/20042-20046-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/20042-20047-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"变异\",\"url\":\"https://book.qq.com/book-cate/20042-20048-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/20042-20049-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/20037-20038-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-20039-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"生存\",\"url\":\"https://book.qq.com/book-cate/20037-20040-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/20037-20041-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传奇\",\"url\":\"https://book.qq.com/book-cate/20037-20095-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/20059-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"幻想\",\"url\":\"https://book.qq.com/book-cate/20059-20060-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/20059-20061-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/20059-20063-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"恋爱\",\"url\":\"https://book.qq.com/book-cate/20059-20064-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"诸天无限\",\"url\":\"https://book.qq.com/book-cate/20109-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"无限\",\"url\":\"https://book.qq.com/book-cate/20109-20110-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"诸天\",\"url\":\"https://book.qq.com/book-cate/20109-20111-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"综漫\",\"url\":\"https://book.qq.com/book-cate/20109-20112-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/20076-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"剧本\",\"url\":\"https://book.qq.com/book-cate/20076-20075-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"评论\",\"url\":\"https://book.qq.com/book-cate/20076-20077-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/20076-20078-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"游记\",\"url\":\"https://book.qq.com/book-cate/20076-20079-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/20076-20096-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"散文\",\"url\":\"https://book.qq.com/book-cate/20076-20097-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"人物\",\"url\":\"https://book.qq.com/book-cate/20076-20098-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}\n]\n",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36 Edg/99.0.1150.55\"\n}",
    "lastUpdateTime": 1725673304216,
    "loginUrl": "https://passport.yuewen.com/login.html?appid=1450000221&areaid=1&logintype=4&tabshow=1100&auto=0&ticket=1&returnurl=https://ubook.reader.qq.com/loginSuccess?returnUrl=https%3A%2F%2Fubook.reader.qq.com%2F",
    "respondTime": 1526,
    "ruleBookInfo": {
      "author": "a.author@text",
      "coverUrl": "a.book-cover img@src",
      "intro": "div.intro@text",
      "kind": "a.tag@text",
      "lastChapter": "",
      "name": "h1@text",
      "tocUrl": "text.目录@href",
      "wordCount": ".book-update@span:nth-of-type(1)@text"
    },
    "ruleContent": {
      "content": ".chapter-content@p@text",
      "nextContentUrl": ""
    },
    "ruleExplore": {
      "author": ".other@object@a:nth-of-type(1)@text",
      "bookList": "a.wrap",
      "bookUrl": "a@href",
      "coverUrl": "img.ypc-book-cover@src",
      "intro": "p.intro@text",
      "kind": "object@a:nth-of-type(2)@text",
      "lastChapter": "a.latest-chapter@text",
      "name": "h4@text",
      "wordCount": ".other@span:nth-of-type(2)@text"
    },
    "ruleSearch": {
      "author": ".author",
      "bookList": ".bookList[*]",
      "bookUrl": "$.bid##(\\d+)##https://book.qq.com/book-detail/$1##",
      "coverUrl": "",
      "intro": ".intro",
      "kind": ".category3Name",
      "lastChapter": "",
      "name": ".title",
      "wordCount": ".totalWords"
    },
    "ruleToc": {
      "chapterList": "ul:nth-of-type(2)@li",
      "chapterName": "span.name@text",
      "chapterUrl": "a@href",
      "isVip": ""
    },
    "searchUrl": "https://book.qq.com/api/booksearch/query?keyWord={{key}}&pageNo={{page}}&pageSize=10",
    "weight": 0
  },
  {
    "bookSourceComment": "/*\n备用：\nhttps://s.chuangke.tv\nhttps://s.bzatgv.com\nhttps://s.mysignal.cn\nhttps://s.ibbxtx.com\n官网：\n小小阅读：\nhttps://xxydapps.com/xxyd/\n小小追书：\nhttp://zsdqapp.net/xxzs/\n点点阅读：\nhttps://xxydapps.com/ddyd/\n书香之家：\nhttps://ttzsapp.com/sxzj/\n追书大师：\nhttps://zsdsapp6.com/zsds/\n笔趣阁开心版：\nhttps://bqgkxb.com/\t\n*/\n//解密(by  尐哖 & landseer)\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n    Packages.java.lang,\n    Packages.javax.crypto.spec,\n    Packages.javax.crypto,\n    Packages.java.util,\n    Packages.java.io\n);\nwith(javaImport) {\n    function decode(str) {\n        data=java.base64DecodeToByteArray(str);\n        datas=Arrays.copyOfRange(data,16,data.length-16);\n        k=String(Arrays.copyOfRange(data, 0, 16));\n        k=java.digestHex(k,'sha-256');\n        ks=[];\n        length = k.length();\n        if (length % 2 == 1) {\n            length++;\n            k = \"0\" + k;\n        }\n        i = 0;\n        i2 = 0;\n        while (i < length) {\n            i3 = i + 2;\nks[i2] =intToByte( Integer.parseInt(k.substring(i, i3),16));\n            i2++;\n            i = i3;\n        }\n        i=String(Arrays.copyOfRange(data,data.length-16, data.length));\n         v=java.md5Encode(i);\n        bytes = i.getBytes();\n        bytes2 = v.getBytes();\n        ivs=[];\n        for (i = 0; i < 16; i++) {\n            ivs[i] = (bytes2[i] ^ bytes[i]) ^ (-1); \n        }\n       key = SecretKeySpec(ks, \"AES\");  \n       iv = IvParameterSpec(ivs);\n        var chipher = Cipher.getInstance(\"AES/CBC/PKCS5Padding\");\n        chipher.init(2, key, iv);\n        return String(chipher.doFinal(datas));\n    }\n}\nfunction intToByte(i) {\n        var b = i & 0xFF;\n        var c = 0;\n        if (b >= 128) {\n            c = b % 128;\n            c = -1 * (128 - c);\n        } else {\n            c = b;\n        }\n        return c;\n    }",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "小小阅读（+++）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://s.chuangke.tv",
    "customButton": false,
    "customOrder": 4,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\nburl=source.getKey().replace('//s','//book');\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\n\t\n\tpush(\"❤推荐\", null, 1, 1);\ntj = \t[\"每日优选\",\"高分好书\",\"真香新书\",\"爆肝书单\",\"宝藏好书\",\"猜你喜欢\"];\n\ttj.map((title,type)=>{\n\turl = burl + `/book_city/v7_more/index/1/20/${type+1}/{{page}}.html`\n\t\tpush(title, url, 1, 0.25);\t\t\t\t\t\t\t\t\t\t\n\t\t\t});\n\t\t\t\n\t\n\teval(String(source.bookSourceComment));\n\tfl_url = burl + \"/classify/v4/index.html\";\n\tfl_content = JSON.parse(java.ajax(fl_url)).data.content;\t\n  fl = JSON.parse(decode(fl_content));\n    \n\t[\n\t [\"❤男频-分类\",\"1\",fl.male],\n\t\t[\"❤女频-分类\",\"2\",fl.female],\n\t].map([title,gender,list]=>{\t\t\n\t\tpush(title, null, 1, 1);\n\t\t\tlist.map(($,index)=>{\t   \t    \n \t    \n \t    ltype_name = $.ltype_name;\n \t    ltype_id=$.ltype_id;\n \t    ltype_url = burl + `/classify/v4/all/${gender}/${ltype_id}/-1/-1/-1/{{page}}.html`; \t\t\t\t\t\t\t\t\t\t\n \t    push(\"@\"+ltype_name+\"@\", ltype_url, 1, 1);\n     \t\n     \tD=$.ltype_list;\n   \tD.map(($,index)=>{\t   \t     \t    \n   \t\t title = $.stype_name;\n     \tstype_id=$.stype_id;\n     \t\n     url = burl + `/classify/v4/all/${gender}/${ltype_id}/${stype_id}/-1/-1/{{page}}.html`; \t\t\t\t\t\t\t\t\t\t\t  \n     \tif(D.length > 3&&D.length!=4){\n\t\tif(index+1 <= D.length - D.length%3)\n\t\t\t {\tpush(title, url, 1, 0.25);}\n\t\t\t\telse{ push(title, url, 0, 0.29);}\n\t\t\t\t}\n\t\t\t\telse if(D.length == 4){ push(title, url, 1, 0.4);}\n\t\t\t\telse{ push(title, url, 1, 0.25);}\n        });  \n     });\n  });\n     \t\n     \t\nJSON.stringify(sort);",
    "header": "@js:\npackage = \"com.xxyuedu.chasingbooks\";\n//package = \"com.diandianbook.androidreading\";\n//package = \"com.zhuishudashi.read\";\n\ntime = Math.round(new Date()/1000);\nsign = java.md5Encode(package+1+time+\"vhjJVz1St6tK7!8n#B0MqRIuE2Dh7!C#\");\n\nJSON.stringify({\n\t\t\"pt\": 1,\n\t\t\"time\": time,\n\t\t\"sign\": sign,\n\t\t\"package\": package,\n\t\t\"User-Agent\": \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D167 Safari/9537.53_\"+package\n\t});",
    "lastUpdateTime": 1786265090458,
    "respondTime": 9687,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$.image",
      "init": "<js>\neval(String(source.bookSourceComment));\ninfo = JSON.parse(result).data.content;\nresult=JSON.parse(decode(info));\n\nsource_url = baseUrl.replace('/details/','/source/');\nsource_info = JSON.parse(java.ajax(source_url)).data.content;\n$ = JSON.parse(decode(source_info));\n\nv=String(book.getVariable(\"custom\"));\nx=v.match(/^\\d+$/)?v:0;\nx=parseInt(x)<$.length?x:0;\n\nresult.updated_at = $[x].updated_at;\nresult.last_chapter_name = $[x].last_chapter_name;\nresult.tocUrl = source.getKey().replace('//s','//catalog')+\"/\"+$[x].site_path;\nresult.image = source.getKey().replace('//s','//res') + '/'+result.image;\n\n\nif($.length>1){\n\t\ty = '\\n📌使用说明： 根据序号设置书籍变量来切换来源(默认0)\\n🎯当前源：序号🔺'+x+'🔻【'+$[x].site_name+'】'+(x==0?' (默认)':'');\nfor(i in $){\n\t\ty += '\\n❤序号🔺'+i+'🔻【'+$[i].site_name+'】 \\n选用率：'+$[i].choose+' \\n更新时间： '+$[i].updated_at+'\\n最新章节： '+$[i].last_chapter_name;\n\t}\nresult.remark += y\n}\n\n\nresult = JSON.stringify(result);\n</js>",
      "intro": "$.remark##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "{{$.ltype}}\n{{$.stype}}\n{{r=java.getString('$.status');\nif(r!=\"\") r=='1'?'完结':'连载';}}\n{{r=java.getString('$.score');\nr!=0.0?r+'分':\"\";}}\n{{$.updated_at## .*}}",
      "lastChapter": "$.last_chapter_name",
      "name": "$.name",
      "tocUrl": "$.tocUrl",
      "wordCount": "$.words_number"
    },
    "ruleContent": {
      "content": "$..content@js:java.aesBase64DecodeToString(result,\"Pxga!h*e4@T8xfOm\",\"AES/CBC/PKCS5Padding\",\"E&z!EHGLd$fli*8R\")"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.author",
      "bookList": "<js>\neval(String(source.bookSourceComment));\nresult = JSON.parse(result).data.content;\nresult=JSON.parse(decode(result));\nif(baseUrl.match(/\\?keyword=/)){\nif(result.book[0]==undefined){\nsourl = source.getKey()+\"/v1/lists.api?keyword=\"+java.get('key');\nresult = JSON.parse(java.ajax(sourl)).data;\t\n}\n}\t\nresult = JSON.stringify(result);\n</js>\n$.book[*]||$..lists[*]||$.[*]",
      "bookUrl": "{{source.getKey().replace('//s','//d')}}/book/details/v4/{{parseInt(java.getString('$.book_id')/1000)}}/{{$.book_id}}.html",
      "checkKeyWord": "深空彼岸",
      "coverUrl": "{{source.getKey().replace('//s','//res')}}/{{$.image}}",
      "intro": "$.remark",
      "kind": "{{$.ltype}}\n{{$.stype}}\n{{r=java.getString('$.status');\nif(r!=\"\") r=='1'?'完结':'连载';}}\n{{r=java.getString('$.score');\nr!=0.0?r+'分':\"\";}}",
      "name": "$.name",
      "wordCount": "$.words_number"
    },
    "ruleToc": {
      "chapterList": "$.data",
      "chapterName": "$.name@js:java.aesBase64DecodeToString(result,\"Pxga!h*e4@T8xfOm\",\"AES/CBC/PKCS5Padding\",\"E&z!EHGLd$fli*8R\")",
      "chapterUrl": "{{source.getKey().replace('//s','//chapter')}}/{{$.path}}",
      "updateTime": "{{java.timeFormatUTC(java.getString('$.updated_at')*1000,'yyyy-MM-dd',8)}}"
    },
    "searchUrl": "/v4/1/lists.api?keyword={{java.put('key',key)}}&form=1",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "来读小说（+++）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.laidudu.com/",
    "bookUrlPattern": "https://www.laidudu.com/book/\\d+/",
    "customButton": false,
    "customOrder": 5,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/dusort1/{{page}}.html\n武侠小说::/dusort2/{{page}}.html\n都市小说::/dusort3/{{page}}.html\n历史小说::/dusort4/{{page}}.html\n网游小说::/dusort5/{{page}}.html\n科幻小说::/dusort6/{{page}}.html\n女生小说::/dusort7/{{page}}.html",
    "lastUpdateTime": 1787467749114,
    "respondTime": 3877,
    "ruleBookInfo": {
      "author": "class.info@class.small@tag.span.0@text",
      "coverUrl": "class.cover@img@src",
      "intro": "class.intro@text##简介：",
      "kind": "class.info@class.small@tag.span.1@text&&\nclass.info@class.small@tag.span.4@text&&\nclass.info@class.small@tag.span.2@text##分类：|状态：|更新时间：",
      "lastChapter": "class.info@class.small@tag.span.5@a@text",
      "name": "class.info@h2@text"
    },
    "ruleContent": {
      "content": "id.content@html##请记住本书首发.*com"
    },
    "ruleExplore": {
      "author": "class.s4@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.laidudu.com/headimgs/'+iid+'/'+id+'/s'+id+'.jpg';\n</js>",
      "kind": "class.s5@text",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text"
    },
    "ruleSearch": {
      "author": "class.author@text",
      "bookList": "class.bookbox",
      "bookUrl": "h4@a@href",
      "coverUrl": "img@src",
      "lastChapter": "class.update@a@text",
      "name": "h4@a@text"
    },
    "ruleToc": {
      "chapterList": "class.listmain@dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://www.laidudu.com/read/search/,<\n\"method\": \"POST\",\n\"body\": \"searchkey={{key}}\"\n>",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "阅读助手（优+++）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://api-bc.wtzw.com",
    "customButton": false,
    "customOrder": 7,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"男生\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"历史\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=56&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"游戏\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=75&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"科幻\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=64&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"体育\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=206&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"影视\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=539&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"穿越\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=373&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"鉴宝\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=47&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"重生\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=779&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"血脉\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=426&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"签到\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=565&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"复仇\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=790&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"丹药\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=428&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"医生\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=156&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"战神\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=527&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"女婿\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=36&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"皇帝\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=62&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"弃少\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=525&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"热血\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=1&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"爽文\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=570&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"现实\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=12&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"悬疑流\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=27&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"女总裁\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=89&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"二次元\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=207&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"无限流\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=557&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"强者回归\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=402&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"都市人生\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=203&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"异术超能\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=219&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"玄幻奇幻\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=202&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"武侠仙侠\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=205&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"奇闻异事\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=204&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女生\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"短篇\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=541&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"重生\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=779&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"女强\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=620&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"年下\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=631&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"空间\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=345&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"穿越\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=373&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"隐婚\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=481&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"系统\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=782&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"快穿\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=335&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"虐渣\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=739&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"皇后\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=106&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"王爷\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=125&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"学霸\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=781&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"毒妃\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=109&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"校草\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=701&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"女配\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=191&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"甜宠\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=21&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"搞笑\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=788&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"虐恋\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=16&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"治愈\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=17&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"现代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=1&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"总裁豪门\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=8&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"古代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=2&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"种田经商\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=16&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"宫闱宅斗\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=209&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"幻想言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=4&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"奇闻异事\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=204&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"日久生情\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=700&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"影视原著\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=539&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"出版图书\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"现代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=260&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"古代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=259&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"青春文学\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=265&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"影视原著\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=539&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"悬疑推理\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=262&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"武侠小说\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=289&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"科幻未来\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=261&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"历史小说\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=264&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"仙侠奇缘\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=276&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"仙侠玄幻\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=288&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"现实小说\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=266&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"现代军旅\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=290&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"文学艺术\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=240&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人物传记\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=247&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人文科社\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=241&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"少儿教育\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=258&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"经管励志\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=242&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"经典文学\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=243&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1759580775838,
    "respondTime": 2114,
    "ruleBookInfo": {
      "author": "author",
      "coverUrl": "image_link",
      "init": "data.book",
      "intro": "🏷️   标签：{{$.book_tag_list[*].title##\\s##,}}{{'\\n'+'​'}}\n🔖   简介：{{$.intro}}##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "{{java.timeFormat(java.getString('$.update_time')*1000)}}##\\s.*",
      "lastChapter": "latest_chapter_title",
      "name": "title@put:{bid:id}",
      "tocUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':{{$.id}}}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }  \n  }  \n  return paramStr;  \n};\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\n\"https://api-ks.wtzw.com/api/v1/chapter/chapter-list?\"+urlEncode(params)+\",\"+java.get(\"headers\")",
      "wordCount": "words_num"
    },
    "ruleContent": {
      "content": "@js:\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n    Packages.java.lang,\n    Packages.javax.crypto.spec,\n    Packages.javax.crypto,\n    Packages.java.util\n);\nwith(javaImport) {\n    function decode(content) {\n        var ivEncData = Base64.getDecoder().decode(String(content));\n        var key = SecretKeySpec(String(\"242ccb8230d709e1\").getBytes(), \"AES\");\n        var iv = IvParameterSpec(Arrays.copyOfRange(ivEncData, 0, 16));\n        var chipher = Cipher.getInstance(\"AES/CBC/PKCS5Padding\");\n        chipher.init(2, key, iv);\n        return String(chipher.doFinal(Arrays.copyOfRange(ivEncData, 16, ivEncData.length)));\n    }\n}\n\n\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':String(java.get('bid')),'chapterId':String(baseUrl.split(\"/\").pop())}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }\n  }\n  return paramStr;\n};\n\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\nurl=\"https://api-ks.wtzw.com/api/v1/chapter/content?\"+urlEncode(params)\ndecode(JSON.parse(java.ajax(url+','+java.get(\"headers\"))).data.content)\n\n"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "<js>\ngender=baseUrl.match(/gender=(\\d+)/)?baseUrl.match(/gender=(\\d+)/)[1]:\"\"\ncategory_id=baseUrl.match(/category_id=(\\d+)/)?baseUrl.match(/category_id=(\\d+)/)[1]:\"\"\nneed_filters=baseUrl.match(/need_filters=(\\d+)/)?baseUrl.match(/need_filters=(\\d+)/)[1]:\"\"\npage=baseUrl.match(/page=(\\d+)/)?baseUrl.match(/page=(\\d+)/)[1]:\"\"\nneed_category=baseUrl.match(/need_category=(\\d+)/)?baseUrl.match(/need_category=(\\d+)/)[1]:\"\"\ntag_id=baseUrl.match(/tag_id=(\\d+)/)?baseUrl.match(/tag_id=(\\d+)/)[1]:\"\"\nsign_key='d3dGiJc651gSQ8w1'\nheaders={'app-version':'51110','platform':'android','reg':'0','AUTHORIZATION':'','application-id':'com.****.reader','net-env':'1','channel':'unknown','qm-params':''}\nheaders['sign']=String(java.md5Encode(Object.keys(headers).sort().reduce((pre,n)=>pre+n+'='+headers[n],'')+sign_key))\n\n\nvar urlEncode = function (param, key, encode) {\n  if(param==null) return '';\n  var paramStr = '';\n  var t = typeof (param);\n  if (t == 'string' || t == 'number' || t == 'boolean') {\n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);\n  } else {\n    for (var i in param) {\n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);\n      paramStr += urlEncode(param[i], k, encode);\n    }\n  }\n  return paramStr;\n};\n\nvar category = function () {\n  params={'gender':gender,'category_id':category_id,'need_filters':need_filters,'page':page,'need_category':need_category}\n  params['sign']=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\n  url=\"https://api-bc.wtzw.com/api/v4/category/get-list?\"+urlEncode(params)\n  return java.ajax(url+','+java.put(\"headers\",JSON.stringify({\"headers\":headers})))\n};\n\nvar tag = function () {\n  params={'gender':gender,'need_filters':need_filters,'page':page,'tag_id':tag_id}\n  params['sign']=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\n  url=\"https://api-bc.wtzw.com/api/v4/tag/index?\"+urlEncode(params)\n  return java.ajax(url+','+java.put(\"headers\",JSON.stringify({\"headers\":headers})))\n};\n\n\nif(baseUrl.match(/category/)){\n  category()\n}else {\n  tag()\n}\n</js>\n$.data.books",
      "bookUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':{{$.id}},'imei_ip':'2937357107','teeny_mode':0}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }  \n  }  \n  return paramStr;  \n};\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\n\"https://api-bc.wtzw.com/api/v4/book/detail?\"+urlEncode(params)+\",\"+java.get(\"headers\")",
      "coverUrl": "$.image_link",
      "intro": "🏷️   标签：{{$.ptags}}\n🔖   简介：{{$.intro}}",
      "name": "$.title",
      "wordCount": "$.words_num"
    },
    "ruleSearch": {
      "author": "original_author",
      "bookList": "data.books",
      "bookUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':{{$.id}},'imei_ip':'2937357107','teeny_mode':0}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }  \n  }  \n  return paramStr;  \n};\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\n\"/api/v4/book/detail?\"+urlEncode(params)+\",\"+java.get(\"headers\")",
      "coverUrl": "image_link",
      "intro": "🏷️   标签：{{$.ptags}}\n🔖   简介：{{$.intro}}",
      "name": "original_title",
      "wordCount": "words_num"
    },
    "ruleToc": {
      "chapterList": "data.chapter_lists",
      "chapterName": "title",
      "chapterUrl": "id",
      "updateTime": "{{$.words}} 字"
    },
    "searchUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nheaders={'app-version':'51110','platform':'android','reg':'0','AUTHORIZATION':'','application-id':'com.****.reader','net-env':'1','channel':'unknown','qm-params':''}\n\nparams={'gender':'3','imei_ip':'2937357107','page':page,'wd':key}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }  \n  }  \n  return paramStr;  \n};\n\nheaderSign=String(java.md5Encode(Object.keys(headers).sort().reduce((pre,n)=>pre+n+'='+headers[n],'')+sign_key))\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nheaders['sign']=headerSign\nparams['sign']=paramSign\nbody=urlEncode(params)\n\n\"/api/v5/search/words?\" +body+\",\"+java.put(\"headers\",JSON.stringify({\"headers\":headers}))",
    "weight": 0
  },
  {
    "bookSourceComment": "//2024.8.31  ◎夜泽川◎",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "华东看书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.ahdzxtd.com/",
    "bookUrlPattern": "http://www.ahdzxtd.com/shu/\\d+.html",
    "customButton": false,
    "customOrder": 8,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻奇幻::/xh_{{page}}/\n武侠仙侠::/wx_{{page}}/\n都市言情::/ds_{{page}}/\n历史军事::/ls_{{page}}/\n网游竞技::/wy_{{page}}/\n科幻灵异::/kj_{{page}}/\n女生频道::/ns_{{page}}/",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1725066307780,
    "respondTime": 9961,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{i}",
      "init": "@put:{n:\"[property$=book_name]@content\",\na:\"[property$=author]@content\",\nt:\"[property~=category|status]@content\",\nl:\"[property$=latest_chapter_name]@content\",\ni:\"[property$=image]@content\",\no:\"[property$=description]@content\",\ng:\"[property$=update_time]@content\",\nm:\"baseUrl\"\n}",
      "intro": "@get:{o}",
      "kind": "@get:{t}",
      "lastChapter": "@get:{l}◎@get:{g}",
      "name": "@get:{n}",
      "tocUrl": "@get:{m}"
    },
    "ruleContent": {
      "content": "#content@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##{{chapter.title}}\\s\\(第\\d+/\\d+页\\)|.*本章未完.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".s4@text",
      "bookList": ".txt-list > li!0",
      "bookUrl": "a.0@href",
      "checkKeyWord": "",
      "coverUrl": "a.0@href##.*/shu/((\\d{2})\\d+)\\.html##http://www.ahdzxtd.com/files/article/image/$2/$1/$1s.jpg###",
      "kind": ".s1@text&&.s5@text##\\[|\\]",
      "lastChapter": ".s3@text",
      "name": ".s2@text"
    },
    "ruleToc": {
      "chapterList": ".section-list.1@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value||text.下一页@href"
    },
    "searchUrl": "/search.html?keyWord={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.qbiqus.com/",
    "customButton": false,
    "customOrder": 9,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻小说\",\"url\":\"/sort/1_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙侠小说\",\"url\":\"/sort/2_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市小说\",\"url\":\"/sort/3_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史小说\",\"url\":\"/sort/4_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏小说\",\"url\":\"/sort/5_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻小说\",\"url\":\"/sort/6_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他小说\",\"url\":\"/sort/7_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}}]",
    "header": "{ \"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1682910548226,
    "respondTime": 4070,
    "ruleBookInfo": {
      "author": "class.block_txt2@p.2@a@text",
      "coverUrl": "img@src",
      "intro": ".intro_info@text",
      "kind": "class.block_txt2@p.3:4:5@text\n##分类：|状态：|更新：",
      "lastChapter": "class.block_txt2@p.6@a@text",
      "name": "h2@a@text",
      "tocUrl": "text.开始阅读@href##(\\/)(?!.*\\1)##_1"
    },
    "ruleContent": {
      "content": "#nr1@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".line",
      "bookUrl": "a.1@href",
      "checkKeyWord": "剑来",
      "kind": "a.0@text##\\[|\\]",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": ".chapter@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "isPay": "",
      "nextTocUrl": "<js>page=result.match(/\\(第\\d+\\/(\\d+)页\\)当前\\d+条\\/页/)[1];\nlist=[];for(i=2;i<=page;i++){list.push(baseUrl.replace(/_1/,'_'+i))}\nlist</js>"
    },
    "searchUrl": "/s.php,{\n  \"body\": \"type=articlename&s={{key}}\",\n  \"charset\": \"gbk\",\n  \"method\": \"post\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "偶遇吧",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.oue8.com",
    "customButton": false,
    "customOrder": 10,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 0,
    "respondTime": 5752,
    "ruleBookInfo": {
      "intro": ".intro_info@html",
      "name": "",
      "tocUrl": "{{baseUrl}}##m\\.##www."
    },
    "ruleContent": {
      "content": "#content@html",
      "nextContentUrl": "",
      "replaceRegex": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author@a@text",
      "bookList": ".bookbox",
      "bookUrl": "tag.a.0@href",
      "coverUrl": ".bookimg@img@src",
      "intro": ".intro_line@html",
      "lastChapter": ".update@a@text",
      "name": ".bookname@text"
    },
    "ruleToc": {
      "chapterList": "id.list@dd@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "https://m.oue8.com/modules/article/search.php,{\n  \"body\": \"searchkey={{key}}&searchtype=all\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "注：部分小说可下载到本地，若想下载到本地看，把左上角的类型“文本”改为“文件”。",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "玄幻阁吧（优）",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xuanyge.com/##@遇知",
    "customButton": false,
    "customOrder": 11,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"🔖分类🔖\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"玄幻\",\"url\":\"http://www.xuanyge.com/sort1/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠\",\"url\":\"http://www.xuanyge.com/sort2/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市\",\"url\":\"http://www.xuanyge.com/sort3/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史\",\"url\":\"http://www.xuanyge.com/sort4/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"言情\",\"url\":\"http://www.xuanyge.com/sort5/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越\",\"url\":\"http://www.xuanyge.com/sort6/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻\",\"url\":\"http://www.xuanyge.com/sort7/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"恐怖\",\"url\":\"http://www.xuanyge.com/sort8/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"校园\",\"url\":\"http://www.xuanyge.com/sort9/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异界\",\"url\":\"http://www.xuanyge.com/sort10/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"——\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"——\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n\n{\"title\":\"\\t🔖榜单🔖\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"日点击榜\",\"url\":\"http://wap.xuanyge.com/top-dayvisit-{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周点击榜\",\"url\":\"http://wap.xuanyge.com/top-weekvisit-{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月点击榜\",\"url\":\"http://wap.xuanyge.com/top-monthvisit-{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总点击榜\",\"url\":\"http://wap.xuanyge.com/top-allvisit-{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总收藏榜\",\"url\":\"http://wap.xuanyge.com/top-goodnum-{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"字数排行\",\"url\":\"http://wap.xuanyge.com/top-size-{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日推荐榜\",\"url\":\"http://wap.xuanyge.com/top-dayvote-{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周推荐榜\",\"url\":\"http://wap.xuanyge.com/top-weekvote-{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月推荐榜\",\"url\":\"http://wap.xuanyge.com/top-monthvote-{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总推荐榜\",\"url\":\"http://wap.xuanyge.com/top-allvote-{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最新入库\",\"url\":\"http://wap.xuanyge.com/top-postdate-{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最近更新\",\"url\":\"http://wap.xuanyge.com/top-lastupdate-{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n\n{\"title\":\"🔖完结🔖\",\"url\":\"http://www.xuanyge.com/quanben/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}}\n]",
    "lastUpdateTime": 1734981318602,
    "respondTime": 13384,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "canReName": "",
      "coverUrl": "[property=\"og:image\"]@content",
      "downloadUrls": "#author a@href##.+\\D(\\d+)\\D##http://down.xuanyge.com/modules/article/packdown.php?id=$1&type=txt&fname={{@@#author a@title}}",
      "intro": "🔔 更新时间：{{@@[property=\"og:novel:update_time\"]@content##\\s##🔸}}\n\n📂 内容简介：{{@@[property=\"og:description\"]@content}}##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "[property~=category|status|update_time]@content##\\s.*",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "#content@textNodes",
      "replaceRegex": "##随机推荐："
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "span.1@text||a.2@text",
      "bookList": "#sitebox dl||.line",
      "bookUrl": "a.1@href@js:##.+\\D((\\d+)\\d{3})\\D##http://www.xuanyge.com/files/article/html/$2/$1/###",
      "coverUrl": "a.1@href@js:##.+\\D((\\d+)\\d{3})\\D##http://www.xuanyge.com/files/article/image/$2/$1/$1s.jpg###",
      "intro": ".book_des@text",
      "kind": "span.2:0@text||a.0@text##\\[|\\]",
      "lastChapter": "dd a.1@text",
      "name": "h3 a@text||a.1@text",
      "wordCount": "span.3@text"
    },
    "ruleToc": {
      "chapterList": "#readerlist li",
      "chapterName": "text",
      "chapterUrl": "a@href",
      "isVolume": "h3@text"
    },
    "searchUrl": "http://www.xuanyge.com/modules/article/search.php?s=7673184438602983814&s={{key}}&searchtype=articlename",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "四零二零",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.wrlwx.com#guaner",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 14,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "武侠仙侠::/wuxia/index_{{page}}.html\n都市言情::/yanqing/index_{{page}}.html\n耽美::/danmei/index_{{page}}.html\n玄幻::/xuanhuan/index_{{page}}.html\n青春校园::/xiaoyuan/index_{{page}}.html\n网游竞技::/wangyou/index_{{page}}.html\n灵异推理::/kongbu/index_{{page}}.html\n纪实::/jishi/index_{{page}}.html\n军事历史::/lishi/index_{{page}}.html\n科幻::/kehuan/index_{{page}}.html\n管理哲学::/zhexue/index_{{page}}.html\n学习资料::/xuexi/index_{{page}}.html\n总排行榜::/paihangbang/index_{{page}}.html\n月排行榜::/mpaihangbang/index_{{page}}.html\n周排行榜::/wpaihangbang/index_{{page}}.html\n日排行榜::/dpaihangbang/index_{{page}}.html\n封推::/fengtui/index_{{page}}.html\n金牌推荐::/jinpaituijian/index_{{page}}.html\n电子书推荐::/tuijian/index_{{page}}.html\n最新电子书::/new/index_{{page}}.html",
    "lastUpdateTime": 1720894104474,
    "loginUrl": "",
    "respondTime": 5245,
    "ruleBookInfo": {
      "author": "class.block_txt2@tag.p.2@text##作者：",
      "coverUrl": "img@src",
      "kind": "class.block_txt2@tag.p.2@a@text",
      "lastChapter": "class.block_txt2@tag.p.6@a@text",
      "name": "class.block_txt2@h2@a@text",
      "tocUrl": "class.block_txt2@tag.a.0@href##-(\\d+).html##http://www.wrltxt.com/read/$1/###"
    },
    "ruleContent": {
      "content": "id.content@textNodes##请记住本书.*",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "class.s@text##大小.*",
      "bookList": "//div[5]/div[2]/div/ul/li",
      "bookUrl": "class.red@href",
      "intro": "class.u@text",
      "lastChapter": "tag.div.-1@text##最新章节：",
      "name": "tag.a.0@text##txt.*"
    },
    "ruleSearch": {
      "author": "tag.td.3@text",
      "bookList": "tbody@tr!0",
      "bookUrl": "tag.a.0@href",
      "kind": "",
      "lastChapter": "tag.td.2@text",
      "name": "tag.td.1@text"
    },
    "ruleToc": {
      "chapterList": "//div[5]/div/div[3]/div[2]/ul/li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.wrlwx.com/so.html?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "九五看书",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.95ks.org",
    "customButton": false,
    "customOrder": 15,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"全部分类\",\n    \"url\": \"/lastupdate_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻魔法\",\n    \"url\": \"/lastupdate_1_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"武侠修真\",\n    \"url\": \"/lastupdate_2_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"都市言情\",\n    \"url\": \"/lastupdate_3_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"历史军事\",\n    \"url\": \"/lastupdate_4_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"科幻灵异\",\n    \"url\": \"/lastupdate_5_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"游戏竞技\",\n    \"url\": \"/lastupdate_6_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"女生耽美\",\n    \"url\": \"/lastupdate_7_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"其他类型\",\n    \"url\": \"/lastupdate_8_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  }\n]",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; U; Android 13; zh-Hans-CN; PFJM10 Build/TP1A.220905.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/135.0.4896.58 Quark/6.13.6.581 Mobile Safari/537.36\",\"Accept-Language\":\"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"}",
    "lastUpdateTime": 1787188782617,
    "respondTime": 20303,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "{{baseUrl}}##.*\\/(\\d+)\\.html##/yuedu/$1_1/desc.html"
    },
    "ruleContent": {
      "content": "<js>\nvar bes = result.match(/PHA\\+[A-Za-z0-9+\\/]+={0,2}/g);\n//java.log(String(bes))\nif (!bes) {\n    var ml = java.webView(null,baseUrl,null);\n    var txt = java.getString(\"#txt@html\");\n    java.longToast(\"正文解密失败，转为webView动态加载。\");\n} else {\nvar result = [];\nfor (var i = 0; i < bes.length; i++) {\n    // 遍历数组，使用阅读内置Base64解码方法\n    var bsej = java.base64Decode(bes[i]);\n    var txtt = String(bsej);\n    result.push(txtt);\n      }\n\tvar txt = result.join('\\n');\n}\ntxt;\n</js>",
      "nextContentUrl": "@js:\nif(src.match(/var hhekgsv='.*\\/\\d+_\\d+_\\d+.html';var lk/)){\n\tresult=src.match(/var hhekgsv='(.*\\/\\d+_\\d+_\\d+.html)';var lk/)[1]\n\t}"
    },
    "ruleExplore": {
      "author": "span.2@text",
      "bookList": ".sort_list@li",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.*\\/(\\d+)\\.html##/img/$1.jpg",
      "kind": "span.0:3@text##\\[|\\]",
      "lastChapter": "a.0@title##最新章节：",
      "name": "a.0@text"
    },
    "ruleSearch": {
      "author": ".s5@text##\\s",
      "bookList": ".sort_list@li",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.*\\/(\\d+)\\.html##/img/$1.jpg",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": "-.chapter-list@li@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value"
    },
    "searchUrl": "/search.html,{\n  \"body\": \"s={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🍁笔趣阁⑭⑤",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.gebiqu.com/",
    "bookUrlPattern": "http://www.gebiqu.com/biquge_\\d+/",
    "customButton": false,
    "customOrder": 17,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻魔法::/xuanhuanmofa/{{page}}.html\n修真小说::/xiuzhenxiaoshuo/{{page}}.html\n都市小说::/dushixiaoshuo/{{page}}.html\n历史军事::/lishijunshi/{{page}}.html\n游戏小说::/youxixiaoshuo/{{page}}.html\n科幻灵异::/kehuanlingyi/{{page}}.html\n同人小说::/tongrenxiaoshuo/{{page}}.html\n女生言情::/nvshengyanqing/{{page}}.html\n综合小说::/zonghexiaoshuo/{{page}}.html",
    "lastUpdateTime": 1626290046559,
    "loginUrl": "",
    "respondTime": 4698,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作 者：",
      "coverUrl": "id.fmimg@img@src",
      "init": "",
      "intro": "id.intro@tag.p@text##笔趣阁.*",
      "kind": "id.info@tag.p.2@text##最后更新：",
      "lastChapter": "id.list@tag.dd.0@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.info@tag.h1@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "id.content@html##笔趣阁.*最新章节！|最快更新.*最新章节！"
    },
    "ruleExplore": {
      "author": "class.s5@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "class.s2@a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'http://image.gebiqu.com/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "intro": "",
      "kind": "",
      "lastChapter": "class.s3@text",
      "name": "class.s2@a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.grid@tag.tr",
      "bookUrl": "tag.td.0@tag.a@href@js:\nvar id = result.match(/(\\d+).html\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'http://www.gebiqu.com/biquge_'+id+'/'",
      "coverUrl": "tag.td.0@tag.a@href<js>\nvar id = result.match(/(\\d+).html\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'http://image.gebiqu.com/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "tag.td.4@text&&\ntag.td.5@text",
      "lastChapter": "tag.td.1@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "tag.td.0@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说",
      "wordCount": "tag.td.3@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.gebiqu.com/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🔞",
    "bookSourceName": " PO脸红心跳⑪",
    "bookSourceType": 0,
    "bookSourceUrl": "https://wap.powenwu3.com/",
    "customButton": false,
    "customOrder": 18,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻奇幻\",\"url\":\"/sort/1_{{page}}/\"},{\"title\":\"武侠仙侠\",\"url\":\"/sort/2_{{page}}/\"},{\"title\":\"都市青春\",\"url\":\"/sort/3_{{page}}/\"},{\"title\":\"科幻悬疑\",\"url\":\"/sort/4_{{page}}/\"},{\"title\":\"穿越历史\",\"url\":\"/sort/5_{{page}}/\"},{\"title\":\"耽美纯情\",\"url\":\"/sort/6_{{page}}/\"},{\"title\":\"游戏竞技\",\"url\":\"/sort/7_{{page}}/\"},{\"title\":\"精品其他\",\"url\":\"/sort/8_{{page}}/\"},{\"title\":\"浪漫浓情\",\"url\":\"https://popobl.vip/wapsort/6_{{page}}.html\"},\n\n{\"title\":\"最近更新\",\"url\":\"/top/lastupdate_{{page}}/\"},{\"title\":\"最新入库\",\"url\":\"/top/postdate_{{page}}/\"},\n{\"title\":\"总收藏榜\",\"url\":\"/top/goodnum_{{page}}/\"},{\"title\":\"总推荐榜\",\"url\":\"/top/allvote_{{page}}/\"},{\"title\":\"月推荐榜\",\"url\":\"/top/weekvote_{{page}}/\"},{\"title\":\"日推荐榜\",\"url\":\"/top/dayvote_{{page}}/\"},{\"title\":\"总点击榜\",\"url\":\"/top/allvisit_{{page}}/\"},{\"title\":\"月点击榜\",\"url\":\"/weekvisit_{{page}}/\"},{\"title\":\"日点击榜\",\"url\":\"/dayvisit_{{page}}/\"}]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/82.0.4080.0 Safari/537.36 Edg/82.0.453.0\"}",
    "lastUpdateTime": 1724315544900,
    "respondTime": 10966,
    "ruleBookInfo": {
      "author": "class.item.0@a@text",
      "coverUrl": "img@src",
      "intro": "class.bookinfo_intro@text",
      "name": "id.info@h1@text",
      "tocUrl": "text.查看目录@href"
    },
    "ruleContent": {
      "content": "id.htmlContent@html",
      "nextContentUrl": "text.下页@href"
    },
    "ruleExplore": {
      "author": "class.s4@text",
      "bookList": "class.news section-cols@ul@li",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "",
      "kind": "class.s1@text",
      "name": "class.s2@text"
    },
    "ruleSearch": {
      "author": "class.line@a.2@href##/author/",
      "bookList": "class.line",
      "bookUrl": "class.blue@href",
      "checkKeyWord": "我的",
      "name": "class.blue@text"
    },
    "ruleToc": {
      "chapterList": "id.all_chapter@ul@li",
      "chapterName": "li@text",
      "chapterUrl": "li@a@href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "/s.php,{\n  \"charset\": \"gbk\",\n  \"method\": \"POST\",\n  \"body\": \"s={{key}}&type=articlename\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "同站：\n御宅屋 https://m.123yuzhaiwu.com\n肉文阁 https://m.rouwenge.com\n新御宅屋 https://m.xyuzhaiwu1.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "新御书屋⑥",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.yushuwu.club/#🚀",
    "customButton": false,
    "customOrder": 19,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"全部\",\"url\":\"/wapsort/0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻\",\"url\":\"/wapsort/1_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠\",\"url\":\"/wapsort/2_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"言情\",\"url\":\"/wapsort/3_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越\",\"url\":\"/wapsort/4_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市\",\"url\":\"/wapsort/5_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻\",\"url\":\"/wapsort/6_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游\",\"url\":\"/wapsort/7_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"恐怖\",\"url\":\"/wapsort/8_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"耽美\",\"url\":\"/wapsort/9_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"校园\",\"url\":\"/wapsort/10_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"高辣\",\"url\":\"/wapsort/11_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"腹黑\",\"url\":\"/wapsort/12_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"种田\",\"url\":\"/wapsort/13_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"高干\",\"url\":\"/wapsort/14_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"百合\",\"url\":\"/wapsort/15_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他\",\"url\":\"/wapsort/16_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"  \",\"url\":\"  \",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1722617103450,
    "respondTime": 13650,
    "ruleBookInfo": {
      "author": "h2.-1@text",
      "init": "",
      "intro": "[style=\"padding:5px;font-size:12px;color:#666; line-height:auto\"]@html",
      "kind": ".article_info_td@div.1@a@text",
      "lastChapter": "[style=\"height:25px; overflow:hidden\"]@a@text",
      "name": "[style=\"background:none;\"]@text",
      "tocUrl": "[style=\"color:red;\"]@href"
    },
    "ruleContent": {
      "content": "id.nr1@html"
    },
    "ruleExplore": {
      "bookList": "",
      "coverUrl": "@js:'https://img.gb84.com/image/1/1024/1024s.jpg'"
    },
    "ruleSearch": {
      "author": "p.0@strong@text",
      "bookList": ".common-bookele",
      "bookUrl": "a@href",
      "checkKeyWord": "",
      "coverUrl": "@js:'https://img.gb84.com/image/1/1024/1024s.jpg'",
      "intro": ".abstract@html",
      "kind": ".lastupdate@text##栏目：|更新时间：",
      "name": ".articlename@text||h3@a@text"
    },
    "ruleToc": {
      "chapterList": "ul@li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/s.php,{\n  \"body\": \"type=articlename&s={{key}}\",\n  \"charset\": \"utf-8\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "by天天的鸟蛋蛋",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "搬文屋网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.banwenwu.com",
    "bookUrlPattern": "https://www.banwenwu.com/\\d+/",
    "customButton": false,
    "customOrder": 20,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "排行::/paihangbang/\n收藏::/collect/\n完本::/wanbenxiaoshuo/",
    "lastUpdateTime": 1787425907570,
    "respondTime": 86735,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content",
      "name": "[property$=book_name]@content"
    },
    "ruleContent": {
      "content": "#content@html"
    },
    "ruleExplore": {
      "bookList": ".layout:nth-child(n+1) .txt-list:nth-child(1) > li:nth-child(n+1)",
      "bookUrl": "a@href",
      "kind": ".s5@text",
      "name": "a@text"
    },
    "ruleSearch": {
      "author": "span.-2@text",
      "bookList": ".txt-list@li!0",
      "bookUrl": "span.1@a@href",
      "checkKeyWord": "剑来",
      "kind": "span.0:-1@text##\\[|\\]",
      "lastChapter": "span.2@text",
      "name": "span.1@text"
    },
    "ruleToc": {
      "chapterList": "#section-list > li:nth-child(n+1) > a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "{{url=source.getKey();cookie.removeCookie(url)}}\n/modules/article/search.php,{\n  \"body\": \"searchkey={{key}}\",\n  \"charset\": \"GBK\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "半废了。但还可用。\n大概最新的十章+不能看。\nby.Thomas哟\n小说交流群462030508。\nA群637775313不加人。若家炸了查看此群群资料找新家。\n✱✱资源取自网络，仅供学习参考，请同学们在24小时内删除✱✱\n🆙💯Dragon Quest QB\n{{book.origin}}/wenxue/buy/ad-chapter/v4?apn=1&resourceId={{baseUrl.match(/bookId=(\\d+)/)[1]}}&serialId={{$.serialID}}",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "起步新榜（优）",
    "bookSourceType": 0,
    "bookSourceUrl": "DragonQuestQBqqnb",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 21,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"✱　　　　　　✱ 月票榜 ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 本月 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=526080&pagestamp={{page}}&plan=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 上月 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/bookRank/history?index=1&type=1&rank=526080\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 上上 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/bookRank/history?index=2&type=1&rank=526080\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" a 月  \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/bookRank/history?index=3&type=1&rank=526080\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" b 月  \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/bookRank/history?index=4&type=1&rank=526080\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" c 月  \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/bookRank/history?index=5&type=1&rank=526080\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" d 月  \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/bookRank/history?index=6&type=1&rank=526080\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　  \",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 畅销榜 ✱　　　　　　✱\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=523346&pagestamp={{page}}&plan=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"上架30天\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=523318&pagestamp={{page}}&plan=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"  120 天  \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=523320&pagestamp={{page}}&plan=1&signal=nextpage　\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"  300 天  \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=523322&pagestamp={{page}}&plan=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"  300 天+\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=523324&pagestamp={{page}}&plan=1&signal=nextpage　\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"比心月榜 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=532655&pagestamp={{page}}&plan=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"免费爆款\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=528955&pagestamp={{page}}&signal=nextpage&plan=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"完结月榜\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=500307&pagestamp={{page}}&signal=nextpage&plan=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"完结总榜\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=500308&pagestamp={{page}}&signal=nextpage&plan=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 封 神 榜 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=514637&pagestamp={{page}}&signal=nextpage&plan=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 玄    幻 ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"玄幻全部(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20001&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20001&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20001&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20001&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"东方玄幻(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20002&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20002&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20002&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20002&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异世大陆(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20003&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20003&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20003&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20003&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"王朝争霸(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20082&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20082&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20082&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20082&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"高武世界(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20004&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20004&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20004&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20004&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 奇    幻 ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"奇幻全部(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20005&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20005&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20005&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20005&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"剑与魔法(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20006&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20006&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20006&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20006&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"史诗奇幻(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20007&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20007&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20007&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20007&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"黑暗幻想(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20008&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20008&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20008&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20008&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代魔法(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20009&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20009&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20009&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20009&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史神话(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20092&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20092&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20092&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20092&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"另类幻想(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20093&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20093&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20093&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20093&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 武    侠 ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠全部(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20010&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20010&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20010&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20010&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"传统武侠(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20011&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20011&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20011&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20011&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠幻想(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20012&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20012&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20012&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20012&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国术无双(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20013&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20013&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20013&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20013&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武未来(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20099&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20099&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20099&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20099&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠同人(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20100&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20100&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20100&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20100&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 仙    侠 ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"仙侠全部(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20014&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20014&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20014&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20014&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"修真文明(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20015&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20015&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20015&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20015&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"幻想修仙(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20016&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20016&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20016&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20016&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代修真(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20017&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20017&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20017&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20017&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神话修真(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20018&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20018&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20018&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20018&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典仙侠(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20101&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20101&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20101&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20101&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 都    市 ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市全部(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20019&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20019&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20019&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20019&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市生活(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20020&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20020&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20020&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20020&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"娱乐明星(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20022&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20022&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20022&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20022&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"商战职场(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20025&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20025&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20025&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20025&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异术超能(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20026&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20026&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20026&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20026&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市异能(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20027&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20027&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20027&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20027&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春校园(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20069&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20069&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20069&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20069&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 现    实 ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现实全部(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20065&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20065&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20065&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20065&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"爱情婚姻(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20021&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20021&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20021&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20021&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现实百态(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20071&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20071&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20071&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20071&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"社会乡土(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20104&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20104&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20104&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20104&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生活时尚(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20105&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20105&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20105&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20105&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文学艺术(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20106&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20106&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20106&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20106&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"成功励志(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20107&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20107&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20107&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20107&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春文学(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20108&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20108&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20108&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20108&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 历    史 ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史全部(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20028&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20028&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20028&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20028&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"架空历史(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20029&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20029&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20029&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20029&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"上古先秦(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20083&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20083&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20083&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20083&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"秦汉三国(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20084&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20084&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20084&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20084&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"两晋隋唐(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20085&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20085&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20085&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20085&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"五代十国(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20086&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20086&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20086&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20086&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"两宋元明(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20030&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20030&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20030&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20030&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"清史民国(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20087&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20087&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20087&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20087&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"外国历史(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20031&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20031&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20031&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20031&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史传记(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20088&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20088&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20088&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20088&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"民间传说(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20094&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20094&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20094&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20094&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 军    事 ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事全部(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20032&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20032&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20032&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20032&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事战争(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20091&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20091&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20091&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20091&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战争幻想(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20033&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20033&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20033&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20033&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"谍战特工(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20034&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20034&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20034&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20034&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军旅生涯(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20035&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20035&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20035&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20035&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"抗战烽火(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20036&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20036&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20036&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20036&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 游    戏 ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏全部(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20050&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20050&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20050&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20050&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电子竞技(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20051&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20051&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20051&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20051&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"虚拟网游(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20052&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20052&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20052&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20052&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏异界(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20053&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20053&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20053&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20053&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏系统(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20102&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20102&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20102&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20102&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏主播(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20103&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20103&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20103&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20103&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 体    育 ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"体育全部(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20054&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20054&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20054&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20054&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"体育赛事(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20055&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20055&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20055&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20055&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"篮球运动(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20056&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20056&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20056&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20056&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"足球运动(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20057&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20057&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20057&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20057&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 科    幻 ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科幻全部(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20042&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20042&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20042&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20042&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"星际文明(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20043&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20043&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20043&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20043&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时空穿梭(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20044&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20044&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20044&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20044&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"未来世界(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20045&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20045&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20045&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20045&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武机甲(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20046&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20046&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20046&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20046&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"超级科技(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20047&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20047&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20047&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20047&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"进化变异(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20048&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20048&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20048&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20048&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"末世危机(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20049&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20049&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20049&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20049&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱悬疑✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"悬疑全部(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20037&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20037&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20037&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20037&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"侦探推理(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20038&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20038&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20038&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20038&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"诡秘悬疑(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20039&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20039&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20039&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20039&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"探险生存(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20040&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20040&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20040&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20040&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"奇妙世界(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20041&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20041&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20041&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20041&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古今传奇(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20095&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20095&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20095&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20095&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 轻小说 ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"轻小说全(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20059&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20059&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20059&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20059&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"原生幻想(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20060&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20060&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20060&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20060&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"衍生同人(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20061&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20061&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20061&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20061&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"搞笑吐槽(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20063&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20063&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20063&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20063&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"恋爱日常(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20064&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20064&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20064&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20064&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 短    篇 ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"短篇全部(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20076&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20076&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20076&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20076&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"影视剧本(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20075&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20075&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20075&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20075&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"评论文集(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20077&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20077&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20077&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20077&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生活随笔(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20078&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20078&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20078&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20078&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"美文游记(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20079&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20079&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20079&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20079&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"短篇小说(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20096&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20096&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20096&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20096&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"诗歌散文(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20097&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20097&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20097&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20097&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人物传记(人气)\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=20098&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=20098&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=20098&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"更新\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=20098&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 标    签 ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"穿越\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"重生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"斗罗大陆\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51012009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51012009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"末世\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000064,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000064\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"多女主\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000071,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000071\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"无限流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"洪荒\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000066,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000066\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经营\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"三国\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000035,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000035\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"单女主\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000069,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000069\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"赚钱\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51005025,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51005025\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"综漫\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51012020,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51012020\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"召唤流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000015\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"种田\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000104,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000104\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"唐朝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异兽流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000012\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"进化\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000094,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000094\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时空文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51010004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51010004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"星际\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000062,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000062\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"斗破苍穹\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51012008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51012008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"直播文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000078,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000078\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异能\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000055,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000055\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"华娱\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51005030,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51005030\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"精灵文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001037,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001037\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"LOL\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000033,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000033\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宠物\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000107,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000107\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"幕后流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000112,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000112\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科技\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000083,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000083\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"日系\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000060,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000060\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"聊天群\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"领主流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000097,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000097\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"奶爸\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000049,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000049\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"皇帝流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001023,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001023\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"美食\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"王者荣耀\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000034,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000034\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"抗战\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000058,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000058\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"属性流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51002027,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51002027\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"吃鸡\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000045,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000045\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"特种兵\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000068,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000068\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"摊牌流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001021,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001021\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏异界\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51008008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51008008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"草根崛起\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000027,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000027\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"争霸\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000037,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000037\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"强者归来\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000028,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000028\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000086,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000086\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"架空历史\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006012\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"乱世\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006023,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006023\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"未来世界\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51010009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51010009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武道\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000117,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000117\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女尊\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001035,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001035\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"医生流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000042,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000042\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"恋爱\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001074,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001074\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"天才流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"兵王\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000039,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000039\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异世穿越\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51001004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51001004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"升级流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000108,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000108\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"西游\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000090,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000090\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"扮猪吃虎\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000024,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000024\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"养成\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"开挂流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51008024,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51008024\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"封神\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000052,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000052\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"秦汉\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"护花高手\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51005017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51005017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"修罗场\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51012021,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51012021\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电竞\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000077,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000077\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"明朝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"爱情\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"无女主\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000070,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000070\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"废材流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000018,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000018\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战争\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000056,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000056\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"克苏鲁\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000038,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000038\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"朝堂\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"卡牌\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"学霸\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000051,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000051\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"御兽流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"九叔系列\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001025,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001025\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典仙侠\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000044,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000044\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"荒野求生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001018,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001018\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"机甲\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000065,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000065\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"BOSS流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000110,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000110\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"学院流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000020,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000020\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"校园\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"龙\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001015\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"布局流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"剑与魔法\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51001003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51001003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市修仙\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000095,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000095\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代诡秘\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51011013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51011013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神话\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000080,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000080\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"练功\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51004004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51004004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时空门\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000061,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000061\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"侦探推理\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001030,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001030\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"赘婿流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000093,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000093\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"篮球\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51009002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51009002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"魔法\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000100,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000100\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代修真\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000127,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000127\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"NBA\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51009004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51009004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"鉴宝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000096,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000096\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"第四天灾\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001036,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001036\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"随身流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000016,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000016\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"朝堂江湖\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000063,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000063\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"软饭流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000021,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000021\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"悬疑流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51011009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51011009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"极道流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51002020,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51002020\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"扮演流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001033,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001033\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"年代文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001024,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001024\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"领主种田\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51001014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51001014\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"炼丹流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军旅\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000040,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000040\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"反套路\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51012022,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51012022\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"技术流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51008010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51008010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家族\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000103,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000103\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏制作\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51008016,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51008016\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"儒道流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51002017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51002017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"动漫\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51008019,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51008019\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科举\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000081,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000081\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"氪金\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001027,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001027\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"工业\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000053,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000053\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"吐槽\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000118,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000118\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"强国\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006014\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宋朝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"抽奖\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001014\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"凡人流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"探险\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001019,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001019\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"虚拟现实\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51008012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51008012\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文明战争\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000123,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000123\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"曝光流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001075,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001075\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"原始流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001028,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001028\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"气运流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51003020,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51003020\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文明演化\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000084,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000084\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"商战\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000046,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000046\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"供应商\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000116,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000116\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"诡秘修行\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51011015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51011015\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"盛世\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006022,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006022\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"掌门流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"炼器\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"NPC\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51008017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51008017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国术\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000047,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000047\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"诡异游戏\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51011016,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51011016\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"长生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001038,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001038\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"巫师流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000054,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000054\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"灵根\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51003019,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51003019\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"综艺文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001016,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001016\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"丧尸\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51008014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51008014\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战神流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000111,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000111\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"权谋\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"治愈\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51005026,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51005026\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"港综\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001029,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001029\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"足球\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51009001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51009001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"谍战\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000092,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000092\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"互联网\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51005021,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51005021\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"主神创世\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51001011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51001011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科技修真\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000082,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000082\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"成神流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51002026,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51002026\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"原创副本\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51010010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51010010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宗门\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51004006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51004006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"隋唐\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006024,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006024\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"刑侦\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000041,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000041\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"欧洲\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000072,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000072\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"贞观\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006025,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006025\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"风水\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000119,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000119\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"天庭文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001039,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001039\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"聊斋\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000087,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000087\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"基因\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000048,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000048\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"掠夺流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000109,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000109\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神级流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001072,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001072\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"主神\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000098,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000098\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"金融\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"美洲\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000074,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000074\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"强者流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51004005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51004005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生存挑战\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51011014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51011014\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"策略流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51008025,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51008025\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"硬科幻\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000079,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000079\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"红楼\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006019,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006019\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宝箱\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000125,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000125\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"水浒\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006020,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006020\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中医\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000036,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000036\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"港娱\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51005031,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51005031\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"剧透\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000105,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000105\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古代怪异\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51011010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51011010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"夺舍\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000114,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000114\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"职场\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001012\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"白蛇\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51003018,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51003018\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"练功流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51008013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51008013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"高龄\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000113,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000113\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"红包流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000085,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000085\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军工\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51007007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51007007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"诡秘养成\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51011011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51011011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"垂钓\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001000,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001000\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"奋斗\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51014007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51014007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"暴兵\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51002019,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51002019\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"山海经\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51003017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51003017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"专业文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001032,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001032\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"职业文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000129,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000129\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"玄学\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000124,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000124\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"奇幻历史\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51001018,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51001018\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"蜀山\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000089,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000089\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"富民\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006015\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神奇生物\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51001005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51001005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"蒸汽朋克\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000088,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000088\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"DND\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000102,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000102\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"创业\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51014017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51014017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"事务所\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000023,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000023\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"至尊流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001073,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001073\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"APP\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001031,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001031\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科普向\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51010005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51010005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"世家\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51004007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51004007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"手游\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51008023,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51008023\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"单机\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51008015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51008015\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"日娱\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51005029,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51005029\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"赛博朋克\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000122,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000122\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代魔法\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51001006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51001006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"乡村\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51014020,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51014020\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"打工\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51014003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51014003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"快递流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001034,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001034\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"逆袭\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51014009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51014009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"升学\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000043,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000043\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中年\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51014024,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51014024\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"分身\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51002018,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51002018\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"反清\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"婚姻\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51014033,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51014033\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"清朝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"基建流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001067,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001067\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"读档流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001026,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001026\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"改革开放\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51014026,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51014026\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"将门\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006018,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006018\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"教育\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51014023,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51014023\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"正德\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006026,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006026\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宅斗\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51006017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51006017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"非洲\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000073,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000073\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"房地产\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510001010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510001010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"外国怪异\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51011017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51011017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"传统行业\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51014030,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51014030\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"田径\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51009007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51009007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"租房\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51014031,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51014031\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"影视原著\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000029,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000029\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"育儿\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=510140342,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=510140342\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"拳击\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51009005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51009005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"赛车\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51009008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51009008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"反转\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=51000106,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=51000106\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱  风  格  ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"轻松\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=53000027,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=53000027\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"快节奏\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=53000013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=53000013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"热血\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=53000032,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=53000032\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"脑洞大\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=53000012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=53000012\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"思想迪化\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=530001000,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=530001000\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"无金手指\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=53000015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=53000015\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"智斗\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=53000008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=53000008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"谋略\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=53000031,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=53000031\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"正能量\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=53000014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=53000014\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"群像\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=53000007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=53000007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"搞笑\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=530001005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=530001005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱  人  物  ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"学生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"明星\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"剑修\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宅男\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001015\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"道士\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"法师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"钢铁直男\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=522001000,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=522001000\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"职业选手\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52108015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52108015\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"皇子\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001021,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001021\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科学家\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001025,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001025\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"夫妻\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52105021,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52105021\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"老师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"玩家\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52108025,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52108025\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"骑士\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001000,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001000\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异能者\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52110005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52110005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"农民\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52105013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52105013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"警察\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"轮回者\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52110006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52110006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"和尚\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001024,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001024\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"老板\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"大师兄\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001022,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001022\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"黑客\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001014\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"基因武者\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52110004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52110004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"太监\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52104002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52104002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"指挥官\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001019,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001019\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"三教九流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52105014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52105014\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"驸马\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001026,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001026\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"店主\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52111010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52111010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"厨师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52105011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52105011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"捕快\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001023,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001023\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"冷静\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52200001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52200001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"腹黑\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52200005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52200005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"杀伐果断\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52200013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52200013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"搞怪\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52200007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52200007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"智商在线\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52200011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52200011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"无节操\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52200010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52200010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"思路清奇\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52200017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52200017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"成熟\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52200002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52200002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"三观正\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52200009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52200009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女神\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=524001000,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=524001000\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"自律\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52200003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52200003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"王侯\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52106003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52106003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"嘴炮\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52200008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52200008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"谨慎\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52200018,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52200018\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"侠客\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52104001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52104001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"枭雄\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52106009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52106009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"仙帝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001027,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001027\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏玩家\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52105018,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52105018\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战士\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"教练\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001012\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"运动员\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52109002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52109002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"舰长\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52110001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52110001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"门阀\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52106008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52106008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"写手\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52105010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52105010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"保镖\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52105006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52105006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"杀手\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52105024,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52105024\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"猎人\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"寒门子弟\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52106006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52106006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"美食家\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52105012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52105012\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"特工\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"保安\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52105005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52105005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"阵法师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"小兵\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52106007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52106007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"术士\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52101002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52101002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"锦衣卫\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52106010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52106010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"符纹师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=521001007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=521001007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"盗贼\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52108017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52108017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"炼金师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52101006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52101006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"牧师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52108004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52108004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"弓箭手\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52108005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52108005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"佣兵\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52107002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52107002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"骷髅兵\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=52101009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=52101009\",\"style\":{\"layout_flexGrow\":1}}]",
    "header": "{\n\t\"user-agent\":\"Mozilla/5.0 (Linux; Android 10; MI 8 Build/QKQ1.190828.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.101 Mobile Safari/537.36\",\n\t\"Referer\":\"https://bookshelf.html5.qq.com/qbread\"\n\t}",
    "lastUpdateTime": 1773585855403,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 1920,
    "ruleBookInfo": {
      "author": "$.author",
      "canReName": "",
      "coverUrl": "$.picurl",
      "init": "$.data.bookInfo",
      "intro": "<p>{{(t=String(java.getString('$.tag'))).length?'🏷️ '+t.replace(/\\|/g,', '):''}}</p>{{'\\n&lrm;'}}\n<p>{{$.summary}}</p>",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{java.put('time',String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,''))}}",
      "lastChapter": "{{$.lastSerialname}} • {{java.get('time')}}",
      "name": "$.resourceName",
      "tocUrl": "https://bookshelf.html5.qq.com/qbread/api/book/all-chapter?bookId={{$.resourceID}}",
      "wordCount": "$.contentsize"
    },
    "ruleContent": {
      "content": "<p>{{$.data.Content[0].Content}}</p>",
      "nextContentUrl": ""
    },
    "ruleExplore": {
      "author": "$..author",
      "bookList": "$..second[*]&&$..bookList[*]&&$..rankList[*]",
      "bookUrl": "$..bid\n<js>1100000000+parseInt(result)</js>\nhttps://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{result}}",
      "coverUrl": "$..bid\n@js:\ns = result\nfunction gt(s){\n\ta = s.slice(-3)\n\tif(a<10){\n\t\t\tn = s.slice(-1)\n\t\t}\n\telse if(a<100){\n\t\t\tn = s.slice(-2)\n\t\t}\n\telse{\n\t\t\tn = a\n\t\t}\n\treturn n\n}\n\"http://wfqqreader-1252317822.image.myqcloud.com/cover/\"+gt(s)+\"/\"+s+\"/b_\"+s+\".jpg\"",
      "intro": "$..intro",
      "kind": "$..catel2name&&$..catel3name",
      "lastChapter": "$..lastChapterName",
      "name": "$..title",
      "wordCount": "$..totalWords"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.booklist[*]",
      "bookUrl": "$.bid\n<js>1100000000+parseInt(result)</js>\nhttps://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{result}}",
      "checkKeyWord": "深空彼岸",
      "coverUrl": "$.bid\n@js:\nvar s = result\nfunction gt(s){\n\tlet a = s.slice(-3)\n\tif(a<10){\n\t\t\tn = s.slice(-1)\n\t\t}\n\telse if(a<100){\n\t\t\tn = s.slice(-2)\n\t\t}\n\telse{\n\t\t\tn = a\n\t\t}\n\treturn n\n}\n\"http://wfqqreader-1252317822.image.myqcloud.com/cover/\"+gt(s)+\"/\"+s+\"/b_\"+s+\".jpg\"",
      "intro": "$.intro",
      "kind": "{{$.categoryInfoV4\n##\\d.*?\\:(.*?)\\:.*?(,|$)##$1$2}}\n{{$.updateInfo##已更新至.*##连载中}}\n##小说,",
      "lastChapter": "$.updateInfo##已更新至##第",
      "name": "$.title",
      "wordCount": "$.totalWords"
    },
    "ruleToc": {
      "chapterList": "$.rows",
      "chapterName": "$.serialName",
      "chapterUrl": "https://novel.html5.qq.com/be-api/content/ads-read,{\n\t\"method\": \"POST\",\n\t\"body\": {\n\t\t\"Scene\": \"chapter\",\n\t\t\"ContentAnchorBatch\": [{\n\t\t\t\t\"BookID\": \"{{baseUrl.match(/bookId=(\\d+)/)[1]}}\",\n\t\t\t\t\"ChapterSeqNo\": [{{$.serialID}}]\n\t\t\t}]\n\t},\n\t\"headers\": {\n\t\t\"Q-GUID\": \"4aa27c7cf2d9aca3359656ea186488cb\"\n\t}\n}",
      "isPay": "$.isFree",
      "isVip": "//删掉这行字，vip章节会显示🔓\n$.isFree",
      "isVolume": "",
      "nextTocUrl": "",
      "preUpdateJs": "",
      "updateTime": ""
    },
    "searchUrl": "https://newopensearch.reader.qq.com/wechat?keyword={{key}}&start={{page-1}}&end=19",
    "weight": 0
  },
  {
    "bookSourceComment": "//基础源来自「一程」",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "玄幻阁",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xuanyge.net/",
    "customButton": false,
    "customOrder": 22,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻\",\"url\":\"/sort1/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/sort2/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/sort3/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/sort4/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/sort5/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"穿越\",\"url\":\"/sort6/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/sort7/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"恐怖\",\"url\":\"/sort8/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"校园\",\"url\":\"/sort9/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"异界\",\"url\":\"/sort10/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"全本\",\"url\":\"/quanben/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1784114793617,
    "respondTime": 2818,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "[property~=category|status|update_time]@content##\\s.*",
      "lastChapter": "[property$=latest_chapter_name]@content##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "[property$=book_name]@content"
    },
    "ruleContent": {
      "content": "#content@textNodes",
      "replaceRegex": "##随机推荐.*|.*精华书阁.*|为您提供.*好书签.|.*免费阅读.|.*最快更新.*|\\(本章未完.*\\)"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "span.1@text",
      "bookList": "#sitebox dl",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": "dd.3@text",
      "kind": "span.2:0@text",
      "lastChapter": "a.2@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": "#readerlist li a",
      "chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php?s={{key}}&searchtype=articlename",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "扣扣阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "https://book.qq.com/#hu",
    "customButton": false,
    "customOrder": 23,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"女生精选\",\"url\":\" https://book.qq.com/recommend/female-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"免费榜\",\"url\":\" https://book.qq.com/book-rank/female-free/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"封神榜\",\"url\":\" https://book.qq.com/book-rank/female-god/cycle-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"新书榜-日\",\"url\":\" https://book.qq.com/book-rank/female-new/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书榜-周\",\"url\":\" https://book.qq.com/book-rank/female-new/cycle-2-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书榜-月\",\"url\":\" https://book.qq.com/book-rank/female-new/cycle-3-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-周\",\"url\":\" https://book.qq.com/book-rank/female-finish/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-月\",\"url\":\" https://book.qq.com/book-rank/female-finish/cycle-2-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-总\",\"url\":\" https://book.qq.com/book-rank/female-finish/cycle-3-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜-全部\",\"url\":\" https://book.qq.com/book-rank/female-sell/cycle-5-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"上架30天\",\"url\":\" https://book.qq.com/book-rank/female-sell/cycle-1-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架120天\",\"url\":\" https://book.qq.com/book-rank/female-sell/cycle-2-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架300天\",\"url\":\" https://book.qq.com/book-rank/female-sell/cycle-3-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架300天以上\",\"url\":\" https://book.qq.com/book-rank/female-sell/cycle-4-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n{\"title\":\"↓    ↓    ↓    全部    ↓    ↓    ↓\",\"url\":\"https://book.qq.com/book-cate/0-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n\n{\"title\":\"古言\",\"url\":\"https://book.qq.com/book-cate/30013-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"女尊\",\"url\":\"https://book.qq.com/book-cate/30013-30014-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/30013-30015-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"宅斗\",\"url\":\"https://book.qq.com/book-cate/30013-30016-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"穿越\",\"url\":\"https://book.qq.com/book-cate/30013-30017-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"宫斗\",\"url\":\"https://book.qq.com/book-cate/30013-30018-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"种田\",\"url\":\"https://book.qq.com/book-cate/30013-30019-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"西方\",\"url\":\"https://book.qq.com/book-cate/30013-30094-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"清穿\",\"url\":\"https://book.qq.com/book-cate/30013-30095-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"蛮荒\",\"url\":\"https://book.qq.com/book-cate/30013-30096-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"江湖\",\"url\":\"https://book.qq.com/book-cate/30013-30097-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"现言\",\"url\":\"https://book.qq.com/book-cate/30020-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.6}},\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/30020-30021-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"婚恋\",\"url\":\"https://book.qq.com/book-cate/30020-30022-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"明星\",\"url\":\"https://book.qq.com/book-cate/30020-30023-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"职场\",\"url\":\"https://book.qq.com/book-cate/30020-30026-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/30020-30027-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"豪门\",\"url\":\"https://book.qq.com/book-cate/30020-30028-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"极道\",\"url\":\"https://book.qq.com/book-cate/30020-30029-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"民国\",\"url\":\"https://book.qq.com/book-cate/30020-30030-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异国\",\"url\":\"https://book.qq.com/book-cate/30020-30098-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"幻情\",\"url\":\"https://book.qq.com/book-cate/30001-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/30001-30002-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/30001-30003-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"远古\",\"url\":\"https://book.qq.com/book-cate/30001-30004-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异族\",\"url\":\"https://book.qq.com/book-cate/30001-30005-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"魔幻\",\"url\":\"https://book.qq.com/book-cate/30001-30006-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"西幻\",\"url\":\"https://book.qq.com/book-cate/30001-30007-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/30001-30092-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/30008-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.6}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/30008-30009-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"修仙\",\"url\":\"https://book.qq.com/book-cate/30008-30010-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/30008-30011-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"洪荒\",\"url\":\"https://book.qq.com/book-cate/30008-30012-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"仙缘\",\"url\":\"https://book.qq.com/book-cate/30008-30093-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"青春\",\"url\":\"https://book.qq.com/book-cate/30031-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"成长\",\"url\":\"https://book.qq.com/book-cate/30031-30032-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"纯爱\",\"url\":\"https://book.qq.com/book-cate/30031-30033-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"疼痛\",\"url\":\"https://book.qq.com/book-cate/30031-30034-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/30031-30035-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/30050-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/30050-30051-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"网游\",\"url\":\"https://book.qq.com/book-cate/30050-30052-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"网恋\",\"url\":\"https://book.qq.com/book-cate/30050-30053-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/30050-30054-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/30042-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/30042-30043-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"位面\",\"url\":\"https://book.qq.com/book-cate/30042-30044-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/30042-30045-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/30042-30046-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/30042-30047-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"进化\",\"url\":\"https://book.qq.com/book-cate/30042-30048-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/30042-30049-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/30036-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/30036-30037-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"探险\",\"url\":\"https://book.qq.com/book-cate/30036-30039-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/30036-30040-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"风水\",\"url\":\"https://book.qq.com/book-cate/30036-30041-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/30055-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.6}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/30055-30100-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"唯美\",\"url\":\"https://book.qq.com/book-cate/30055-30101-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"萌系\",\"url\":\"https://book.qq.com/book-cate/30055-30102-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"纯恋\",\"url\":\"https://book.qq.com/book-cate/30055-30103-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/30055-30104-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"古衍\",\"url\":\"https://book.qq.com/book-cate/30055-30105-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"影衍\",\"url\":\"https://book.qq.com/book-cate/30055-30106-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"漫衍\",\"url\":\"https://book.qq.com/book-cate/30055-30107-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"其他\",\"url\":\"https://book.qq.com/book-cate/30055-30108-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/30083-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/30083-30086-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/30083-30089-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/30120-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/30120-30121-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"行业\",\"url\":\"https://book.qq.com/book-cate/30120-30122-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"探索\",\"url\":\"https://book.qq.com/book-cate/30120-30123-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"人文\",\"url\":\"https://book.qq.com/book-cate/30120-30124-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"↑    ↑    ↑    ***    ↑    ↑    ↑\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n{\"title\":\"↓    ↓    ↓    连载中    ↓    ↓    ↓\",\"url\":\"https://book.qq.com/book-cate/0-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n\n{\"title\":\"古言\",\"url\":\"https://book.qq.com/book-cate/30013-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"女尊\",\"url\":\"https://book.qq.com/book-cate/30013-30014-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/30013-30015-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"宅斗\",\"url\":\"https://book.qq.com/book-cate/30013-30016-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"https://book.qq.com/book-cate/30013-30017-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"宫斗\",\"url\":\"https://book.qq.com/book-cate/30013-30018-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"种田\",\"url\":\"https://book.qq.com/book-cate/30013-30019-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"西方\",\"url\":\"https://book.qq.com/book-cate/30013-30094-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"清穿\",\"url\":\"https://book.qq.com/book-cate/30013-30095-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"蛮荒\",\"url\":\"https://book.qq.com/book-cate/30013-30096-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"江湖\",\"url\":\"https://book.qq.com/book-cate/30013-30097-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现言\",\"url\":\"https://book.qq.com/book-cate/30020-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.5,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/30020-30021-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"婚恋\",\"url\":\"https://book.qq.com/book-cate/30020-30022-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"明星\",\"url\":\"https://book.qq.com/book-cate/30020-30023-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"职场\",\"url\":\"https://book.qq.com/book-cate/30020-30026-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/30020-30027-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"豪门\",\"url\":\"https://book.qq.com/book-cate/30020-30028-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"极道\",\"url\":\"https://book.qq.com/book-cate/30020-30029-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"民国\",\"url\":\"https://book.qq.com/book-cate/30020-30030-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异国\",\"url\":\"https://book.qq.com/book-cate/30020-30098-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"幻情\",\"url\":\"https://book.qq.com/book-cate/30001-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/30001-30002-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/30001-30003-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"远古\",\"url\":\"https://book.qq.com/book-cate/30001-30004-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异族\",\"url\":\"https://book.qq.com/book-cate/30001-30005-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"魔幻\",\"url\":\"https://book.qq.com/book-cate/30001-30006-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"西幻\",\"url\":\"https://book.qq.com/book-cate/30001-30007-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/30001-30092-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/30008-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/30008-30009-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"修仙\",\"url\":\"https://book.qq.com/book-cate/30008-30010-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/30008-30011-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"洪荒\",\"url\":\"https://book.qq.com/book-cate/30008-30012-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"仙缘\",\"url\":\"https://book.qq.com/book-cate/30008-30093-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"青春\",\"url\":\"https://book.qq.com/book-cate/30031-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"成长\",\"url\":\"https://book.qq.com/book-cate/30031-30032-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"纯爱\",\"url\":\"https://book.qq.com/book-cate/30031-30033-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"疼痛\",\"url\":\"https://book.qq.com/book-cate/30031-30034-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/30031-30035-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/30050-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/30050-30051-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"https://book.qq.com/book-cate/30050-30052-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网恋\",\"url\":\"https://book.qq.com/book-cate/30050-30053-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/30050-30054-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/30042-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/30042-30043-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"位面\",\"url\":\"https://book.qq.com/book-cate/30042-30044-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/30042-30045-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/30042-30046-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/30042-30047-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"进化\",\"url\":\"https://book.qq.com/book-cate/30042-30048-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/30042-30049-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/30036-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/30036-30037-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"探险\",\"url\":\"https://book.qq.com/book-cate/30036-30039-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/30036-30040-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"风水\",\"url\":\"https://book.qq.com/book-cate/30036-30041-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/30055-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/30055-30100-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"唯美\",\"url\":\"https://book.qq.com/book-cate/30055-30101-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"萌系\",\"url\":\"https://book.qq.com/book-cate/30055-30102-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"纯恋\",\"url\":\"https://book.qq.com/book-cate/30055-30103-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/30055-30104-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古衍\",\"url\":\"https://book.qq.com/book-cate/30055-30105-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"影衍\",\"url\":\"https://book.qq.com/book-cate/30055-30106-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"漫衍\",\"url\":\"https://book.qq.com/book-cate/30055-30107-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"其他\",\"url\":\"https://book.qq.com/book-cate/30055-30108-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/30083-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/30083-30086-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/30083-30089-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/30120-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/30120-30121-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"行业\",\"url\":\"https://book.qq.com/book-cate/30120-30122-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"探索\",\"url\":\"https://book.qq.com/book-cate/30120-30123-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"人文\",\"url\":\"https://book.qq.com/book-cate/30120-30124-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"↑    ↑    ↑    ***    ↑    ↑    ↑\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"↓    ↓    ↓    已完结    ↓    ↓    ↓\",\"url\":\"https://book.qq.com/book-cate/0-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n\n{\"title\":\"古言\",\"url\":\"https://book.qq.com/book-cate/30013-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"女尊\",\"url\":\"https://book.qq.com/book-cate/30013-30014-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/30013-30015-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"宅斗\",\"url\":\"https://book.qq.com/book-cate/30013-30016-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"https://book.qq.com/book-cate/30013-30017-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"宫斗\",\"url\":\"https://book.qq.com/book-cate/30013-30018-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"种田\",\"url\":\"https://book.qq.com/book-cate/30013-30019-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"西方\",\"url\":\"https://book.qq.com/book-cate/30013-30094-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"清穿\",\"url\":\"https://book.qq.com/book-cate/30013-30095-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"蛮荒\",\"url\":\"https://book.qq.com/book-cate/30013-30096-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"江湖\",\"url\":\"https://book.qq.com/book-cate/30013-30097-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现言\",\"url\":\"https://book.qq.com/book-cate/30020-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/30020-30021-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"婚恋\",\"url\":\"https://book.qq.com/book-cate/30020-30022-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"明星\",\"url\":\"https://book.qq.com/book-cate/30020-30023-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"职场\",\"url\":\"https://book.qq.com/book-cate/30020-30026-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/30020-30027-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"豪门\",\"url\":\"https://book.qq.com/book-cate/30020-30028-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"极道\",\"url\":\"https://book.qq.com/book-cate/30020-30029-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"民国\",\"url\":\"https://book.qq.com/book-cate/30020-30030-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异国\",\"url\":\"https://book.qq.com/book-cate/30020-30098-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"幻情\",\"url\":\"https://book.qq.com/book-cate/30001-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/30001-30002-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/30001-30003-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"远古\",\"url\":\"https://book.qq.com/book-cate/30001-30004-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异族\",\"url\":\"https://book.qq.com/book-cate/30001-30005-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"魔幻\",\"url\":\"https://book.qq.com/book-cate/30001-30006-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"西幻\",\"url\":\"https://book.qq.com/book-cate/30001-30007-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/30001-30092-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/30008-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/30008-30009-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"修仙\",\"url\":\"https://book.qq.com/book-cate/30008-30010-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/30008-30011-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"洪荒\",\"url\":\"https://book.qq.com/book-cate/30008-30012-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"仙缘\",\"url\":\"https://book.qq.com/book-cate/30008-30093-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"青春\",\"url\":\"https://book.qq.com/book-cate/30031-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"成长\",\"url\":\"https://book.qq.com/book-cate/30031-30032-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"纯爱\",\"url\":\"https://book.qq.com/book-cate/30031-30033-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"疼痛\",\"url\":\"https://book.qq.com/book-cate/30031-30034-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/30031-30035-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/30050-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/30050-30051-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"https://book.qq.com/book-cate/30050-30052-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网恋\",\"url\":\"https://book.qq.com/book-cate/30050-30053-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/30050-30054-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/30042-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/30042-30043-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"位面\",\"url\":\"https://book.qq.com/book-cate/30042-30044-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/30042-30045-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/30042-30046-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/30042-30047-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"进化\",\"url\":\"https://book.qq.com/book-cate/30042-30048-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/30042-30049-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/30036-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/30036-30037-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"探险\",\"url\":\"https://book.qq.com/book-cate/30036-30039-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/30036-30040-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"风水\",\"url\":\"https://book.qq.com/book-cate/30036-30041-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/30055-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/30055-30100-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"唯美\",\"url\":\"https://book.qq.com/book-cate/30055-30101-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"萌系\",\"url\":\"https://book.qq.com/book-cate/30055-30102-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"纯恋\",\"url\":\"https://book.qq.com/book-cate/30055-30103-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/30055-30104-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古衍\",\"url\":\"https://book.qq.com/book-cate/30055-30105-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"影衍\",\"url\":\"https://book.qq.com/book-cate/30055-30106-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"漫衍\",\"url\":\"https://book.qq.com/book-cate/30055-30107-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"其他\",\"url\":\"https://book.qq.com/book-cate/30055-30108-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/30083-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/30083-30086-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/30083-30089-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/30120-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/30120-30121-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"行业\",\"url\":\"https://book.qq.com/book-cate/30120-30122-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"探索\",\"url\":\"https://book.qq.com/book-cate/30120-30123-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"人文\",\"url\":\"https://book.qq.com/book-cate/30120-30124-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"↑    ↑    ↑    ***    ↑    ↑    ↑\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"男生精选\",\"url\":\"https://book.qq.com/recommend/male-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"免费榜\",\"url\":\"https://book.qq.com/book-rank/male-free/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"封神榜\",\"url\":\"https://book.qq.com/book-rank/male-god/cycle-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"新书榜-日\",\"url\":\"https://book.qq.com/book-rank/male-new/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书榜-周\",\"url\":\"https://book.qq.com/book-rank/male-new/cycle-2-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书榜-月\",\"url\":\"https://book.qq.com/book-rank/male-new/cycle-3-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-周\",\"url\":\"https://book.qq.com/book-rank/male-finish/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-月\",\"url\":\"https://book.qq.com/book-rank/male-finish/cycle-2-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-总\",\"url\":\"https://book.qq.com/book-rank/male-finish/cycle-3-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n\n{\"title\":\"畅销榜-全部\",\"url\":\"https://book.qq.com/book-rank/male-sell/cycle-5-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.5,\"layout_flexGrow\":1}},\n{\"title\":\"上架30天内\",\"url\":\"https://book.qq.com/book-rank/male-sell/cycle-1-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架120天内\",\"url\":\"https://book.qq.com/book-rank/male-sell/cycle-2-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架300天内\",\"url\":\"https://book.qq.com/book-rank/male-sell/cycle-3-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架300天以上\",\"url\":\"https://book.qq.com/book-rank/male-sell/cycle-4-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n{\"title\":\"↓    ↓    ↓    全部    ↓    ↓    ↓\",\"url\":\"https://book.qq.com/book-cate/0-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"东方玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-20002-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/20001-20003-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"争霸\",\"url\":\"https://book.qq.com/book-cate/20001-20082-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"高武\",\"url\":\"https://book.qq.com/book-cate/20001-20004-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"奇幻\",\"url\":\"https://book.qq.com/book-cate/20005-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"魔法\",\"url\":\"https://book.qq.com/book-cate/20005-20006-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"史诗\",\"url\":\"https://book.qq.com/book-cate/20005-20007-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"神秘\",\"url\":\"https://book.qq.com/book-cate/20005-20008-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"https://book.qq.com/book-cate/20005-20009-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"神史\",\"url\":\"https://book.qq.com/book-cate/20005-20092-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"空幻\",\"url\":\"https://book.qq.com/book-cate/20005-20093-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-20011-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"潮流\",\"url\":\"https://book.qq.com/book-cate/20010-20012-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"国术\",\"url\":\"https://book.qq.com/book-cate/20010-20013-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古武\",\"url\":\"https://book.qq.com/book-cate/20010-20099-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠同人\",\"url\":\"https://book.qq.com/book-cate/20010-20100-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/20014-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/20014-20015-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"幻修\",\"url\":\"https://book.qq.com/book-cate/20014-20016-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现修\",\"url\":\"https://book.qq.com/book-cate/20014-20017-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神话\",\"url\":\"https://book.qq.com/book-cate/20014-20018-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古典\",\"url\":\"https://book.qq.com/book-cate/20014-20101-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/20019-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"生活\",\"url\":\"https://book.qq.com/book-cate/20019-20020-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"娱乐\",\"url\":\"https://book.qq.com/book-cate/20019-20022-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"商场\",\"url\":\"https://book.qq.com/book-cate/20019-20025-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/20019-20026-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/20019-20027-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/20019-20069-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/20065-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/20065-20021-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"百态\",\"url\":\"https://book.qq.com/book-cate/20065-20071-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"女性\",\"url\":\"https://book.qq.com/book-cate/20065-20104-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20065-20105-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"时代\",\"url\":\"https://book.qq.com/book-cate/20065-20106-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"青年\",\"url\":\"https://book.qq.com/book-cate/20065-20108-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"历史\",\"url\":\"https://book.qq.com/book-cate/20028-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.5,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/20028-20029-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"先秦\",\"url\":\"https://book.qq.com/book-cate/20028-20083-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"秦汉三国\",\"url\":\"https://book.qq.com/book-cate/20028-20084-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.3,\"layout_flexGrow\":1}},\n{\"title\":\"两晋隋唐\",\"url\":\"https://book.qq.com/book-cate/20028-20085-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.3,\"layout_flexGrow\":1}},\n{\"title\":\"五代十国\",\"url\":\"https://book.qq.com/book-cate/20028-20086-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.3,\"layout_flexGrow\":1}},\n{\"title\":\"两宋元明\",\"url\":\"https://book.qq.com/book-cate/20028-20030-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.3,\"layout_flexGrow\":1}},\n{\"title\":\"清民\",\"url\":\"https://book.qq.com/book-cate/20028-20087-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"外史\",\"url\":\"https://book.qq.com/book-cate/20028-20031-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传记\",\"url\":\"https://book.qq.com/book-cate/20028-20088-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传说\",\"url\":\"https://book.qq.com/book-cate/20028-20094-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"军事\",\"url\":\"https://book.qq.com/book-cate/20032-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"战争\",\"url\":\"https://book.qq.com/book-cate/20032-20091-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"战斗\",\"url\":\"https://book.qq.com/book-cate/20032-20033-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"激战\",\"url\":\"https://book.qq.com/book-cate/20032-20034-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"军旅\",\"url\":\"https://book.qq.com/book-cate/20032-20035-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"抗战\",\"url\":\"https://book.qq.com/book-cate/20032-20036-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/20050-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/20050-20051-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"虚拟\",\"url\":\"https://book.qq.com/book-cate/20050-20052-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异界\",\"url\":\"https://book.qq.com/book-cate/20050-20053-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"系统\",\"url\":\"https://book.qq.com/book-cate/20050-20102-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"主播\",\"url\":\"https://book.qq.com/book-cate/20050-20103-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-20055-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"篮球\",\"url\":\"https://book.qq.com/book-cate/20054-20056-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"足球\",\"url\":\"https://book.qq.com/book-cate/20054-20057-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/20042-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/20042-20043-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿梭\",\"url\":\"https://book.qq.com/book-cate/20042-20044-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/20042-20045-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/20042-20046-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/20042-20047-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"变异\",\"url\":\"https://book.qq.com/book-cate/20042-20048-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/20042-20049-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.5,\"layout_flexGrow\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/20037-20038-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-20039-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"生存\",\"url\":\"https://book.qq.com/book-cate/20037-20040-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/20037-20041-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传奇\",\"url\":\"https://book.qq.com/book-cate/20037-20095-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/20059-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"幻想\",\"url\":\"https://book.qq.com/book-cate/20059-20060-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/20059-20061-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/20059-20063-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"恋爱\",\"url\":\"https://book.qq.com/book-cate/20059-20064-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"诸天无限\",\"url\":\"https://book.qq.com/book-cate/20109-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"无限\",\"url\":\"https://book.qq.com/book-cate/20109-20110-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"诸天\",\"url\":\"https://book.qq.com/book-cate/20109-20111-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"综漫\",\"url\":\"https://book.qq.com/book-cate/20109-20112-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/20076-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"剧本\",\"url\":\"https://book.qq.com/book-cate/20076-20075-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"评论\",\"url\":\"https://book.qq.com/book-cate/20076-20077-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/20076-20078-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"游记\",\"url\":\"https://book.qq.com/book-cate/20076-20079-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/20076-20096-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"散文\",\"url\":\"https://book.qq.com/book-cate/20076-20097-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"人物\",\"url\":\"https://book.qq.com/book-cate/20076-20098-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"连载中\",\"url\":\"https://book.qq.com/book-cate/0-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"东方玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-20002-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/20001-20003-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"争霸\",\"url\":\"https://book.qq.com/book-cate/20001-20082-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"高武\",\"url\":\"https://book.qq.com/book-cate/20001-20004-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"奇幻\",\"url\":\"https://book.qq.com/book-cate/20005-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"魔法\",\"url\":\"https://book.qq.com/book-cate/20005-20006-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"史诗\",\"url\":\"https://book.qq.com/book-cate/20005-20007-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神秘\",\"url\":\"https://book.qq.com/book-cate/20005-20008-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"https://book.qq.com/book-cate/20005-20009-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神史\",\"url\":\"https://book.qq.com/book-cate/20005-20092-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"空幻\",\"url\":\"https://book.qq.com/book-cate/20005-20093-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-20011-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"潮流\",\"url\":\"https://book.qq.com/book-cate/20010-20012-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"国术\",\"url\":\"https://book.qq.com/book-cate/20010-20013-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古武\",\"url\":\"https://book.qq.com/book-cate/20010-20099-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠同人\",\"url\":\"https://book.qq.com/book-cate/20010-20100-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/20014-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/20014-20015-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"幻修\",\"url\":\"https://book.qq.com/book-cate/20014-20016-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现修\",\"url\":\"https://book.qq.com/book-cate/20014-20017-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神话\",\"url\":\"https://book.qq.com/book-cate/20014-20018-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古典\",\"url\":\"https://book.qq.com/book-cate/20014-20101-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/20019-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"生活\",\"url\":\"https://book.qq.com/book-cate/20019-20020-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"娱乐\",\"url\":\"https://book.qq.com/book-cate/20019-20022-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"商场\",\"url\":\"https://book.qq.com/book-cate/20019-20025-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/20019-20026-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/20019-20027-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/20019-20069-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/20065-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/20065-20021-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"百态\",\"url\":\"https://book.qq.com/book-cate/20065-20071-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"女性\",\"url\":\"https://book.qq.com/book-cate/20065-20104-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20065-20105-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"时代\",\"url\":\"https://book.qq.com/book-cate/20065-20106-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"青年\",\"url\":\"https://book.qq.com/book-cate/20065-20108-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"历史\",\"url\":\"https://book.qq.com/book-cate/20028-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/20028-20029-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"先秦\",\"url\":\"https://book.qq.com/book-cate/20028-20083-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"秦汉三国\",\"url\":\"https://book.qq.com/book-cate/20028-20084-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"两晋隋唐\",\"url\":\"https://book.qq.com/book-cate/20028-20085-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"五代十国\",\"url\":\"https://book.qq.com/book-cate/20028-20086-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"两宋元明\",\"url\":\"https://book.qq.com/book-cate/20028-20030-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"清民\",\"url\":\"https://book.qq.com/book-cate/20028-20087-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"外史\",\"url\":\"https://book.qq.com/book-cate/20028-20031-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传记\",\"url\":\"https://book.qq.com/book-cate/20028-20088-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传说\",\"url\":\"https://book.qq.com/book-cate/20028-20094-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"军事\",\"url\":\"https://book.qq.com/book-cate/20032-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"战争\",\"url\":\"https://book.qq.com/book-cate/20032-20091-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"战斗\",\"url\":\"https://book.qq.com/book-cate/20032-20033-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"激战\",\"url\":\"https://book.qq.com/book-cate/20032-20034-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"军旅\",\"url\":\"https://book.qq.com/book-cate/20032-20035-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"抗战\",\"url\":\"https://book.qq.com/book-cate/20032-20036-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/20050-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/20050-20051-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"虚拟\",\"url\":\"https://book.qq.com/book-cate/20050-20052-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异界\",\"url\":\"https://book.qq.com/book-cate/20050-20053-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"系统\",\"url\":\"https://book.qq.com/book-cate/20050-20102-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"主播\",\"url\":\"https://book.qq.com/book-cate/20050-20103-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-20055-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"篮球\",\"url\":\"https://book.qq.com/book-cate/20054-20056-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"足球\",\"url\":\"https://book.qq.com/book-cate/20054-20057-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/20042-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/20042-20043-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿梭\",\"url\":\"https://book.qq.com/book-cate/20042-20044-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/20042-20045-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/20042-20046-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/20042-20047-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"变异\",\"url\":\"https://book.qq.com/book-cate/20042-20048-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/20042-20049-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/20037-20038-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-20039-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"生存\",\"url\":\"https://book.qq.com/book-cate/20037-20040-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/20037-20041-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传奇\",\"url\":\"https://book.qq.com/book-cate/20037-20095-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/20059-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"幻想\",\"url\":\"https://book.qq.com/book-cate/20059-20060-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/20059-20061-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/20059-20063-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"恋爱\",\"url\":\"https://book.qq.com/book-cate/20059-20064-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"诸天无限\",\"url\":\"https://book.qq.com/book-cate/20109-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"无限\",\"url\":\"https://book.qq.com/book-cate/20109-20110-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"诸天\",\"url\":\"https://book.qq.com/book-cate/20109-20111-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"综漫\",\"url\":\"https://book.qq.com/book-cate/20109-20112-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/20076-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"剧本\",\"url\":\"https://book.qq.com/book-cate/20076-20075-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"评论\",\"url\":\"https://book.qq.com/book-cate/20076-20077-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/20076-20078-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"游记\",\"url\":\"https://book.qq.com/book-cate/20076-20079-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/20076-20096-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"散文\",\"url\":\"https://book.qq.com/book-cate/20076-20097-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"人物\",\"url\":\"https://book.qq.com/book-cate/20076-20098-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"已完结\",\"url\":\"https://book.qq.com/book-cate/0-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"东方玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-20002-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/20001-20003-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"争霸\",\"url\":\"https://book.qq.com/book-cate/20001-20082-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"高武\",\"url\":\"https://book.qq.com/book-cate/20001-20004-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"奇幻\",\"url\":\"https://book.qq.com/book-cate/20005-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"魔法\",\"url\":\"https://book.qq.com/book-cate/20005-20006-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"史诗\",\"url\":\"https://book.qq.com/book-cate/20005-20007-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神秘\",\"url\":\"https://book.qq.com/book-cate/20005-20008-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"https://book.qq.com/book-cate/20005-20009-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神史\",\"url\":\"https://book.qq.com/book-cate/20005-20092-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"空幻\",\"url\":\"https://book.qq.com/book-cate/20005-20093-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-20011-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"潮流\",\"url\":\"https://book.qq.com/book-cate/20010-20012-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"国术\",\"url\":\"https://book.qq.com/book-cate/20010-20013-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古武\",\"url\":\"https://book.qq.com/book-cate/20010-20099-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠同人\",\"url\":\"https://book.qq.com/book-cate/20010-20100-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/20014-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/20014-20015-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"幻修\",\"url\":\"https://book.qq.com/book-cate/20014-20016-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现修\",\"url\":\"https://book.qq.com/book-cate/20014-20017-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神话\",\"url\":\"https://book.qq.com/book-cate/20014-20018-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古典\",\"url\":\"https://book.qq.com/book-cate/20014-20101-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/20019-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"生活\",\"url\":\"https://book.qq.com/book-cate/20019-20020-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"娱乐\",\"url\":\"https://book.qq.com/book-cate/20019-20022-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"商场\",\"url\":\"https://book.qq.com/book-cate/20019-20025-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/20019-20026-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/20019-20027-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/20019-20069-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/20065-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/20065-20021-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"百态\",\"url\":\"https://book.qq.com/book-cate/20065-20071-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"女性\",\"url\":\"https://book.qq.com/book-cate/20065-20104-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20065-20105-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"时代\",\"url\":\"https://book.qq.com/book-cate/20065-20106-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"青年\",\"url\":\"https://book.qq.com/book-cate/20065-20108-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"历史\",\"url\":\"https://book.qq.com/book-cate/20028-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/20028-20029-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"先秦\",\"url\":\"https://book.qq.com/book-cate/20028-20083-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"秦汉三国\",\"url\":\"https://book.qq.com/book-cate/20028-20084-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"两晋隋唐\",\"url\":\"https://book.qq.com/book-cate/20028-20085-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"五代十国\",\"url\":\"https://book.qq.com/book-cate/20028-20086-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"两宋元明\",\"url\":\"https://book.qq.com/book-cate/20028-20030-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"清民\",\"url\":\"https://book.qq.com/book-cate/20028-20087-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"外史\",\"url\":\"https://book.qq.com/book-cate/20028-20031-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传记\",\"url\":\"https://book.qq.com/book-cate/20028-20088-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传说\",\"url\":\"https://book.qq.com/book-cate/20028-20094-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"军事\",\"url\":\"https://book.qq.com/book-cate/20032-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"战争\",\"url\":\"https://book.qq.com/book-cate/20032-20091-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"战斗\",\"url\":\"https://book.qq.com/book-cate/20032-20033-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"激战\",\"url\":\"https://book.qq.com/book-cate/20032-20034-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"军旅\",\"url\":\"https://book.qq.com/book-cate/20032-20035-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"抗战\",\"url\":\"https://book.qq.com/book-cate/20032-20036-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/20050-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/20050-20051-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"虚拟\",\"url\":\"https://book.qq.com/book-cate/20050-20052-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异界\",\"url\":\"https://book.qq.com/book-cate/20050-20053-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"系统\",\"url\":\"https://book.qq.com/book-cate/20050-20102-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"主播\",\"url\":\"https://book.qq.com/book-cate/20050-20103-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-20055-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"篮球\",\"url\":\"https://book.qq.com/book-cate/20054-20056-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"足球\",\"url\":\"https://book.qq.com/book-cate/20054-20057-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/20042-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/20042-20043-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿梭\",\"url\":\"https://book.qq.com/book-cate/20042-20044-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/20042-20045-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/20042-20046-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/20042-20047-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"变异\",\"url\":\"https://book.qq.com/book-cate/20042-20048-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/20042-20049-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/20037-20038-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-20039-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"生存\",\"url\":\"https://book.qq.com/book-cate/20037-20040-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/20037-20041-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传奇\",\"url\":\"https://book.qq.com/book-cate/20037-20095-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/20059-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"幻想\",\"url\":\"https://book.qq.com/book-cate/20059-20060-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/20059-20061-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/20059-20063-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"恋爱\",\"url\":\"https://book.qq.com/book-cate/20059-20064-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"诸天无限\",\"url\":\"https://book.qq.com/book-cate/20109-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"无限\",\"url\":\"https://book.qq.com/book-cate/20109-20110-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"诸天\",\"url\":\"https://book.qq.com/book-cate/20109-20111-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"综漫\",\"url\":\"https://book.qq.com/book-cate/20109-20112-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/20076-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"剧本\",\"url\":\"https://book.qq.com/book-cate/20076-20075-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"评论\",\"url\":\"https://book.qq.com/book-cate/20076-20077-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/20076-20078-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"游记\",\"url\":\"https://book.qq.com/book-cate/20076-20079-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/20076-20096-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"散文\",\"url\":\"https://book.qq.com/book-cate/20076-20097-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"人物\",\"url\":\"https://book.qq.com/book-cate/20076-20098-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}\n]\n",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36 Edg/99.0.1150.55\"\n}",
    "lastUpdateTime": 1727969920252,
    "loginUi": "",
    "loginUrl": "https://passport.yuewen.com/login.html?appid=1450000221&areaid=1&logintype=4&tabshow=1100&auto=0&ticket=1&returnurl=https://ubook.reader.qq.com/loginSuccess?returnUrl=https%3A%2F%2Fubook.reader.qq.com%2F",
    "respondTime": 1300,
    "ruleBookInfo": {
      "author": "a.author@text",
      "coverUrl": "a.book-cover img@src",
      "intro": "div.intro@text",
      "kind": "a.tag@text",
      "lastChapter": "",
      "name": "h1@text",
      "tocUrl": "text.目录@href",
      "wordCount": ".book-update@span:nth-of-type(1)@text"
    },
    "ruleContent": {
      "content": ".chapter-content@p@text",
      "nextContentUrl": ""
    },
    "ruleExplore": {
      "author": ".other@object@a:nth-of-type(1)@text",
      "bookList": "a.wrap",
      "bookUrl": "a@href",
      "coverUrl": "img.ypc-book-cover@src",
      "intro": "p.intro@text",
      "kind": "object@a:nth-of-type(2)@text",
      "lastChapter": "a.latest-chapter@text",
      "name": "h4@text",
      "wordCount": ".other@span:nth-of-type(2)@text"
    },
    "ruleSearch": {
      "author": ".author",
      "bookList": ".bookList[*]",
      "bookUrl": "$.bid##(\\d+)##https://book.qq.com/book-detail/$1##",
      "checkKeyWord": "",
      "coverUrl": "",
      "intro": ".intro",
      "kind": ".category3Name",
      "lastChapter": "",
      "name": ".title",
      "wordCount": ".totalWords"
    },
    "ruleToc": {
      "chapterList": "ul:nth-of-type(2)@li",
      "chapterName": "span.name@text",
      "chapterUrl": "a@href",
      "isPay": "",
      "isVip": "",
      "isVolume": "",
      "preUpdateJs": ""
    },
    "searchUrl": "https://book.qq.com/api/booksearch/query?keyWord={{key}}&pageNo={{page}}&pageSize=10",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "夜伴书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.ybsw8.com",
    "bookUrlPattern": "https?://www.ybswu.com/book/\\w+/",
    "customButton": false,
    "customOrder": 25,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "奇幻·玄幻::/list/qihuan<,{{page}}>.html\n科幻·游戏::/list/kehuan<,{{page}}>.html\n武侠·仙侠::/list/wuxia<,{{page}}>.html\n女生·言情::/list/yanqing<,{{page}}>.html\n都市·娱乐::/list/dushi<,{{page}}>.html\n历史·军事::/list/lishi<,{{page}}>.html\n悬疑·灵异::/list/xuanyi<,{{page}}>.html\n耽美·纯爱::/list/chunai<,{{page}}>.html\n外国文学::/list/foreign<,{{page}}>.html\n成长·励志::/list/lizhi<,{{page}}>.html\n散文·随笔::/list/sanwen<,{{page}}>.html\n现当代文学::/list/china<,{{page}}>.html\n轻小说::/list/lightnovel<,{{page}}>.html\n健康·生活::/list/health<,{{page}}>.html\n文学名著::/list/mingzhu<,{{page}}>.html\n我的书架::/readbook<,{{page}}>.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1773306175129,
    "respondTime": 13008,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "downloadUrls": "@get:{d}\n<js>\nurl=book.origin+result;\njava.ajax(url);\n</js>\n.text-center a.0@href",
      "init": "@put:{n:\"[property$=book_name]@content\",\na:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property$=latest_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"[property$=image]@content\",\nd:\".reader-bar a.-1@href\"}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}"
    },
    "ruleContent": {
      "content": "#cont-body@html",
      "nextContentUrl": "class.fa-arrow-circle-right@href"
    },
    "ruleExplore": {
      "bookList": ".media",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": ".media-info@text",
      "kind": "0",
      "name": "h4@text"
    },
    "ruleSearch": {
      "author": "td.1@text",
      "bookList": "tbody tr",
      "bookUrl": "a.0@href",
      "kind": "0",
      "name": "a.0@text##《|》"
    },
    "ruleToc": {
      "chapterList": "#all-chapter a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/plus/search.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "//2025.02.05\n//by 天天的鸟蛋蛋 \n//正文 webView by 关耳 正文 解密by==  by水镜绘纱\n//发现 by 另一个书友圈\n// 设置书源变量 默认为0 0是调用解密\n//1是webView加载 下面的代码勿动\ncontent = java.getElement(\"@@class.content\");\nscript = result.match(/\\<script\\>var c=\"[\\s\\S]+?defer=\"defer\"\\>\\<\\/script\\>/)[0];\nscript = content+script;\nresult = java.webView(script,\"http://www.xinjianpan.com\",\"\")",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "广告特别多",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xinjianpan.com",
    "customButton": false,
    "customOrder": 26,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"🌊 热门 🌊\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"周点击\",\n    \"url\": \"/rank/weekvisit/?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月点击\",\n    \"url\": \"/rank/monthvisit/?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总点击\",\n    \"url\": \"/rank/allvisit/?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"🌊 分类 🌊\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/sort/xuanhuan-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"仙侠\",\n    \"url\": \"/sort/xianxia-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/sort/dushi-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/sort/lishi-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/sort/wangyou-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/sort/kehuan-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"灵异\",\n    \"url\": \"/sort/lingyi-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/sort/yanqing-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/sort/qita-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": -1,\n      \"layout_flexBasisPercent\": 0.205\n    }\n  },\n  {\n    \"title\": \"全本\",\n    \"url\": \"/quanben/sort/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": -1,\n      \"layout_flexBasisPercent\": 0.205\n    }\n  }\n]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 14; zh-cn; M2102K1AC Build/UKQ1.231207.002) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/109.0.5414.118 Mobile Safari/537.36 MQQBrowser/10.1.0\"}",
    "lastUpdateTime": 1747992541390,
    "respondTime": 6887,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content",
      "kind": "[property~=status|update_time|category]@content",
      "lastChapter": "[property$=latest_chapter_name]@content",
      "name": "[property$=book_name]@content",
      "tocUrl": "text.更多章节@href"
    },
    "ruleContent": {
      "content": "<js>\nz = source.getVariable().split(\",\");\nif(!(parseInt(z[0])>0)){\n  let regex = /var c=\"([^\"]*)\"/;\nlet dd = result.match(regex)[1]\n\nlet j = java.base64Decode(dd);\n  //java.log(j)\n  jja=String(j).replace(/^[^-]*-/,\"-\")\n  if(/=/.test(jja)){jj=jja.replace(/=[^=]*$/,\"\");}else{jj=jja.replace(/_[^_]*$/,\"\");}\n  \nm=jj.replace(/-/g,\"PHA+\").replace(/_/g,\"8L3A+\");\nn=java.getString(\"@@#chaptercontent@p@html\");\nn+\tjava.base64Decode(m)\n\n  \n}else if(parseInt(z[0])){\n  src=eval(String(source.bookSourceComment))\nresult=java.getString(\"id.chaptercontent@html\",src)\nresult\n}\n\n</js>\n",
      "nextContentUrl": "##onclick=\"location.href='([^\"]+_\\d+.html)'\">下一章</a>##$1###",
      "replaceRegex": "##天才一秒记住【.*】地址.*|.*退出阅读模式即可，谢谢！|小说推荐：.*",
      "title": "",
      "webJs": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "dd@a@text",
      "bookList": "dl:nth-child(n+1)",
      "bookUrl": "dt@a@href",
      "checkKeyWord": "斗破苍穹",
      "coverUrl": "img@data-src",
      "intro": "dd.0@text",
      "kind": "dd@span.0:-1@text",
      "name": "dt@a@text",
      "wordCount": "dd@span.1@text"
    },
    "ruleToc": {
      "chapterList": ".all@ul@li@a",
      "chapterName": "text",
      "chapterUrl": "onclick##.*\\'(.*)\\'##$1###",
      "nextTocUrl": "option@value"
    },
    "searchUrl": "/search/?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "24.12.28 by 明月",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "梦书中文",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.mcxs.la",
    "concurrentRate": "1500",
    "customButton": false,
    "customOrder": 28,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻奇幻::/xuanhuanxiaoshuo/<,1-{{page}}.html>\n修真仙侠::/xiuzhenxiaoshuo/<,1-{{page}}.html>\n都市青春::/dushixiaoshuo/<,1-{{page}}.html>\n历史穿越::/chuanyuexiaoshuo/<,1-{{page}}.html>\n网游竞技::/wangyouxiaoshuo/<,1-{{page}}.html>\n科幻灵异::/kehuanxiaoshuo/<,1-{{page}}.html>\n其它小说::/qitaxiaoshuo/<,1-{{page}}.html>\n完本小说::/wanben/1_{{page}}\n最近更新::http://www.mcxs.la",
    "lastUpdateTime": 1787419598371,
    "respondTime": 8079,
    "ruleBookInfo": {
      "author": "p:nth-child(2) > a@text",
      "coverUrl": "img@src",
      "intro": "#intro@html",
      "lastChapter": "p:nth-child(5) > a@text",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "#content@textNodes",
      "replaceRegex": "##[\\u0041-\\u005A\\u0061-\\u007A\\uFF21-\\uFF3A\\uFF41-\\uFF5A]+\\.[\\u0041-\\u005A\\u0061-\\u007A\\uFF21-\\uFF3A\\uFF41-\\uFF5A0-9\\uFF10-\\uFF19-]+\\.[\\u0041-\\u005A\\u0061-\\u007A\\uFF21-\\uFF3A\\uFF41-\\uFF5A]{2,}.*|{{chapter.title}}|第[0-9一二两三四五六七八九十百千万]{1,9}章.*|[(（]?本章未?完[）)]?.*|\\(第.+页\\)|.?加入书签.*|.*下一页(翻页)?继续阅读.*|.*退出阅读模式.*|.*点击下载{{book.name}}.*|.*最新永久域名.*|.*一秒记住本站地址.*"
    },
    "ruleExplore": {
      "author": ".s4 > a@text",
      "bookList": ".l li",
      "bookUrl": ".s2 > a@href",
      "coverUrl": ".s2 > a@href\n<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": ".s1@text##\\[|\\]",
      "lastChapter": ".s3 > a@text",
      "name": ".s2 > a@text"
    },
    "ruleSearch": {
      "author": ".s4 > a@text",
      "bookList": "#main > div.novelslist2 > ul > li",
      "bookUrl": ".s2 > a@href",
      "coverUrl": ".s2 > a@href\n<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "{{@@.s6@text}} {{@@.s3 > a@text}}",
      "name": ".s2 > a@text"
    },
    "ruleToc": {
      "chapterList": "dd >a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://www.mcxs.la/search.html?name={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎉 优选",
    "bookSourceName": "飘然文学（优）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.xbiquwx.la#",
    "customButton": false,
    "customOrder": 29,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"榜单\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"周点击榜\",\"url\":\"/paihangbang_weekvisit/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月点击榜\",\"url\":\"/paihangbang_monthvisit/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总点击榜\",\"url\":\"/paihangbang_allvisit/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周推荐榜\",\"url\":\"/paihangbang_weekvote/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月推荐榜\",\"url\":\"/paihangbang_monthvote/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总推荐榜\",\"url\":\"/paihangbang_allvote/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总收藏榜\",\"url\":\"/paihangbang_goodnum/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总字数榜\",\"url\":\"/paihangbang_size/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"最近更新\",\"url\":\"/paihangbang_lastupdate/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"新书榜单\",\"url\":\"/paihangbang_goodnew/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"完本\",\"url\":\"/wanjiexiaoshuo/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/list/1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"/list/2_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/list/3_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"/list/4_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"/list/5_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/list/6_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1786870715427,
    "respondTime": 6485,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "#intro@html##本站提示.*",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content##小说|\\s.*",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content##[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "#content@html"
    },
    "ruleExplore": {
      "author": ".s4@text",
      "bookList": ".l li||.novelslistss li",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.+\\D((\\d+)\\d{3})\\D##https://www.xbiquwx.la/files/article/image/$2/$1/$1s.jpg###",
      "kind": ".s1@text&&.s7@text&&.s5@text##\\[|\\]|小说",
      "lastChapter": ".s3@text##[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]",
      "name": ".s2@text"
    },
    "ruleSearch": {
      "author": "td.2@text",
      "bookList": "tbody tr!0",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.+\\D((\\d+)\\d{3})\\D##https://www.xbiquwx.la/files/article/image/$2/$1/$1s.jpg###",
      "kind": "td.5:4@text",
      "lastChapter": "a.1@text##[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]",
      "name": "a.0@text",
      "wordCount": "td.3@text"
    },
    "ruleToc": {
      "chapterList": "#list dd a",
      "chapterName": "text##[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "蚂蚁阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.mayitxt.org#",
    "customButton": false,
    "customOrder": 30,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "\n 点  击  榜 ::/top/monthvisit/{{page}}.html\n 推  荐  榜 ::/top/monthvote/{{page}}.html\n\n玄幻::/sort/1/{{page}}.html\n仙侠::/sort/2/{{page}}.html\n都市::/sort/3/{{page}}.html\n历史::/sort/4/{{page}}.html\n军事::/sort/5/{{page}}.html\n灵异::/sort/6/{{page}}.html\n科幻::/sort/7/{{page}}.html\n游戏::/sort/8/{{page}}.html\n现言::/sort/9/{{page}}.html\n古言::/sort/10/{{page}}.html\n穿越::/sort/11/{{page}}.html\n青春::/sort/12/{{page}}.html\n豪门::/sort/14/{{page}}.html\n耽美::/sort/15/{{page}}.html\n其他::/sort/13/{{page}}.html",
    "header": "",
    "lastUpdateTime": 1734830788436,
    "respondTime": 7168,
    "ruleBookInfo": {
      "author": "class.book_inf@tag.p.0@text",
      "canReName": "true",
      "coverUrl": "img@src.0",
      "intro": "class.h3_rf creat_time@text&&class.book_desc@text",
      "kind": "class.book_inf@tag.p.1@text##类别：",
      "lastChapter": "class.h3_rf new_time.0@tag.a@text",
      "name": "class.book_inf@h3@text",
      "tocUrl": "class.more-chapter@href",
      "wordCount": "class.book_inf@tag.p.2@text##总字数："
    },
    "ruleContent": {
      "content": "class.textarticle@html",
      "nextContentUrl": "text.下一章@href",
      "replaceRegex": "##最新网址.*|一秒记住.*，更新快，，免费读！|>>本章未完，继续下章阅读|免费小说，无弹窗小说网，.*下载，请记住蚂蚁阅读网.*|\\s*.*第.*章.*\\s*|一秒记住【花小说网】，为您提供精彩小说阅读。"
    },
    "ruleExplore": {
      "author": "class.listbook-info@tag.p.0@text",
      "bookList": "class.onefourbox@a",
      "bookUrl": "@href",
      "coverUrl": "class.listbook-cove@tag.img@src",
      "intro": "class.listbook-info@tag.p.1@text",
      "kind": "class.book-tag@tag.span@text",
      "name": "class.listbook-info@tag.h3@text"
    },
    "ruleSearch": {
      "author": "p@text",
      "bookList": "class.onefourbox@tag.a",
      "bookUrl": "tag.a@href",
      "coverUrl": "img@src",
      "intro": "",
      "kind": "span@text",
      "lastChapter": "class.chapter@text##正文(\\s+|_)|[\\(（【].*[求更谢乐发推].*[】）\\)]",
      "name": "h3@text"
    },
    "ruleToc": {
      "chapterList": "class.mulu_uld@li",
      "chapterName": "h3@text##>",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://wap.mayitxt.org/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "亿软网吧",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.iyruan.com/",
    "bookUrlPattern": "https://www.iyruan.com/article/\\d+.html",
    "customButton": false,
    "customOrder": 32,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻小说\",\"url\":\"http://m.iyruan.com/sort/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"仙侠小说\",\"url\":\"http://m.iyruan.com/sort/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"都市小说\",\"url\":\"http://m.iyruan.com/sort/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"军史小说\",\"url\":\"http://m.iyruan.com/sort/4/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"网游小说\",\"url\":\"http://m.iyruan.com/sort/5/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"科幻小说\",\"url\":\"http://m.iyruan.com/sort/6/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}}]",
    "lastUpdateTime": 1733237642063,
    "loginUrl": "",
    "respondTime": 5239,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text",
      "coverUrl": "id.fmimg@img@src",
      "init": "",
      "intro": "id.intro@tag.p.0@text",
      "kind": "[property=og:novel:update_time]@content&&\n[property=og:novel:category]@content&&\n[property=og:novel:status]@content",
      "lastChapter": "id.info@tag.p.2@a@text##百度搜索.*",
      "name": "id.info@tag.h1@text",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "id.content@html##<!--go--> |<!--over--> "
    },
    "ruleExplore": {
      "author": "class.author@text",
      "bookList": "class.article",
      "bookUrl": "h6@a@href@js:'https://www.iyruan.com'+result",
      "coverUrl": "img@src",
      "intro": "class.simple@text",
      "name": "h6@a@text"
    },
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "tag.td.0@tag.a@href",
      "coverUrl": "tag.td.0@tag.a@href@js:\r\nvar id = result.match(/\\/(\\d+)\\.?/)[1];\r\n'/files/article/image/'+parseInt(id/1000)+'/'+id+'/'+id+'s.jpg';",
      "kind": "tag.td.4@text&&\ntag.td.5@text",
      "lastChapter": "tag.td.1@tag.a@text##百度搜索.*",
      "name": "tag.td.0@tag.a@text",
      "wordCount": "tag.td.3@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://www.iyruan.com/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "//修改网址发现@㋈ 26/03/03\n//by: youke2580\n//类型：文本 在线阅读\n//切换：文件 可以下载⬇︎\n📱🖥️同站，支持下载⬇︎\n新网址：www.aiqu999.com\n备用域名网址1：www.272txt.com\n备用域名网址2：www.727txt.com\n备用域名网址3：www.27txt.La\n备用域名网址4：www.527txt.com\nhttps://www.aiqu321.com/\nhttps://www.aiqu121.com\nhttps://aiqu121.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爱去小说",
    "bookSourceType": 3,
    "bookSourceUrl": "https://www.aiqu226.com/",
    "bookUrlPattern": "https?://www.aiqu125.com//[\\w-/]+.htm",
    "customButton": false,
    "customOrder": 33,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"最新更新\",\"url\":\"\",\"style\":\n{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"近日更新\",\"url\":\"/txt-xx/new/index_{{page}}.htm\",\"style\":\n{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.5}},{\"title\":\"最新推荐\",\"url\":\"/txt-xx/best/index_{{page}}.htm\",\"style\":\n{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"耽美小说\",\"url\":\"#\",\"style\":\n{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"全部耽美\",\"url\":\"/txt-xx/15/list15_{{page}}.htm\",\"style\":\n{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"现代耽美\",\"url\":\"/txt-xx/dmxs/xddm/list117_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代架空\",\"url\":\"/txt-xx/dmxs/gdjk/list118_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越重生\",\"url\":\"/txt-xx/dmxs/cycs/list119_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻科幻\",\"url\":\"/txt-xx/dmxs/xhkh/list120_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"BL同人\",\"url\":\"/txt-xx/dmxs/bltr/list121_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"GL百合\",\"url\":\"/txt-xx/dmxs/glbh/list122_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"\",\"url\":\"#\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"\",\"url\":\"#\",\"style\":\n{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女生小说\",\"url\":\"#\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"都市言情\",\"url\":\"/txt-xx/nsxs/dsyq/list110_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代言情\",\"url\":\"/txt-xx/nsxs/gdyq/list111_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越重生\",\"url\":\"/txt-xx/nsxs/cycs/list112_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻仙侠\",\"url\":\"/txt-xx/nsxs/xhxx/list113_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"青春同人\",\"url\":\"/txt-xx/nsxs/qctr/list114_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游科幻\",\"url\":\"/txt-xx/nsxs/wykh/list115_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"男生小说\",\"url\":\"#\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"玄幻奇幻\",\"url\":\"/txt-xx/nsbook/xhqh/list124_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠仙侠\",\"url\":\"/txt-xx/nsbook/wxxx/list125_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市重生\",\"url\":\"/txt-xx/nsbook/dscs/list126_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史军事\",\"url\":\"/txt-xx/nsbook/lsjs/list127_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"恐怖推理\",\"url\":\"/txt-xx/nsbook/kbtl/list128_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻网游\",\"url\":\"/txt-xx/nsbook/khwy/list129_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"二次元\",\"url\":\"/txt-xx/nsbook/ecy/list130_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"\",\"url\":\"#\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"\",\"url\":\"#\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其它类型\",\"url\":\"#\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"军事小说\",\"url\":\"/txt-xx/25/list25_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史小说\",\"url\":\"/txt-xx/25/list25_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"名人传记\",\"url\":\"/txt-xx/22/list22_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"中外名著\",\"url\":\"/txt-xx/28/list28_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"社科历史\",\"url\":\"/txt-xx/25/list25_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"政治军事\",\"url\":\"/txt-xx/25/list25_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"当代文学\",\"url\":\"/txt-xx/27/list27_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"成功励志\",\"url\":\"/txt-xx/22/list22_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他小说\",\"url\":\"/txt-xx/30/list30_{{page}}.htm\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1787411134759,
    "respondTime": 3774,
    "ruleBookInfo": {
      "author": "text.作者名称：@font.0@text",
      "downloadUrls": "center p a.0@href\n<js>\nvar url=book.origin+result[0];\nresult=java.ajax(url);\nresult;\n</js>\ntext.下载地址@href",
      "intro": "[style~=padding]@p.2@textNodes",
      "name": "text.书名：@text##书名：|《|》",
      "tocUrl": "center p a.0@href\n<js>\nvar url=book.origin+result;\nresult=java.ajax(url);\nresult;\n</js>\ntext.在线阅读@href"
    },
    "ruleContent": {
      "content": ".layui-code@html"
    },
    "ruleExplore": {
      "bookList": ".book-item||.mainSoftName||li.mainlist_li",
      "bookUrl": "a.1@href||a@href",
      "kind": ".list_class a@text",
      "name": "a@title||a@text##《|》\n<js>result.replace(/$/g,'【完结】')</js>"
    },
    "ruleSearch": {
      "bookList": ".search-card",
      "bookUrl": "a.0@href",
      "checkKeyWord": "快穿",
      "intro": "a.0@text",
      "kind": "span.1@text",
      "name": "a.0@text##《|》\n<js>result.replace(/$/g,'【完结】')</js>"
    },
    "ruleToc": {
      "chapterList": "@js:\nvar page=src.match(/第\\d+页.*共(\\d+).+页/)[1];\nvar url=java.getString(\"@@text.首页.0@href\")\nvar surl=String(url);\nvar list=[{text:\"第1页\",href:baseUrl}];\nif(page){\n\tfor(i=2;i<=page;i++){\n\t\tlist.push({text:`第${i}页`,href:surl.replace(/page=1/,\"page=\"+i)})\n\t\t}\n\t\tlist;\n\t}",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/search.asp?page={{page}}&m=0&act=&classid=0&word={{key}},{\n  \"charset\": \"GB2312\",\n  \"method\": \"GET\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "新浪小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://book.sina.cn/",
    "customButton": false,
    "customOrder": 35,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787420428765,
    "respondTime": 726,
    "ruleBookInfo": {
      "author": ".s-listCon@h3@text##｜.*",
      "name": ".s-listCon@h2@text",
      "tocUrl": "http://book.sina.cn/dpool/newbook/bookv1/ajax/get_catalog.php?bid=@get:{bid}&page_size=50&page=1"
    },
    "ruleContent": {
      "content": "data.page_content"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "author_name",
      "bookList": "data.data",
      "bookUrl": "book_url",
      "coverUrl": "cover",
      "intro": "intro",
      "kind": "tags",
      "name": "book_name@put:{bid:book_id}",
      "wordCount": "word_count"
    },
    "ruleToc": {
      "chapterList": "data.chapters@put:{total_page:data.total_page}",
      "chapterName": "chapter_name",
      "chapterUrl": "/dpool/newbook/bookv1/book/get_content.php?bid=@get:{bid}&cid={{$.chapter_id}}",
      "nextTocUrl": "@js:\nlist=[]\ntotal_page=String(java.get('total_page'))\nfor(var i = 2;i<=total_page;i++){\nlist.push('http://book.sina.cn/dpool/newbook/bookv1/ajax/get_catalog.php?bid=@get:{bid}&page_size=50&page='+i)\n}\nlist"
    },
    "searchUrl": "dpool/newbook/bookv1/ajax/search.php?sk={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "传奇中文",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.cqzww.com/",
    "bookUrlPattern": "http://www.cqzww.com/m/book/\\d+/?",
    "customButton": false,
    "customOrder": 36,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\n\t\n\nfl=[\n[\"男频\",[[\"东方玄幻\",\"25\",],[\"军事战争\",\"14\",],[\"现代都市\",\"73\",],[\"二次元\",\"81\",],[\"西方奇幻\",\"61\",],[\"历史架空\",\"60\",],[\"灵异悬疑\",\"58\",],[\"游戏竞技\",\"56\",],[\"科幻末世\",\"53\",],[\"武侠仙侠\",\"28\",],[\"官场职场\",\"27\",],[\"同人小说\",\"26\",]]],\n[\"女频\",[[\"穿越重生\",\"70\",],[\"豪门总裁\",\"69\",],[\"现代言情\",\"68\",],[\"武侠仙侠\",\"67\",],[\"古言架空\",\"33\",],[\"婚恋情感\",\"32\",],[\"青春校园\",\"31\",],[\"幻想异能\",\"21\",],[\"同人美文\",\"30\",]]],\n[\"出版\",[[\"现代都市\",\"51\",],[\"青春校园\",\"50\",],[\"悬疑灵异\",\"49\",],[\"励志成功\",\"48\",],[\"官场沉浮\",\"47\",],[\"职场商战\",\"46\",],[\"铁血军事\",\"45\",],[\"历史风云\",\"44\",],[\"影视娱乐\",\"38\",],[\"经管理财\",\"37\",],[\"教育教辅\",\"36\",],[\"纪实传记\",\"35\",],[\"奇幻科幻\",\"24\",],[\"生活休闲\",\"23\",],[\"武侠仙侠\",\"22\",],[\"童话寓言\",\"74\",],[\"社科科普\",\"75\",],[\"外国名著\",\"76\",],[\"古典名著\",\"77\"],[\"当代文学\",\"78\",],[\"两性伦理\",\"79\"],[\"言情小说\",\"80\"]]]\n];\nfl.map([title,list]=>{\t\t\n\tpush(title,null,1, 1);\nlist.map(([title,id],index)=>{ \n\turl=`/api/book/cate/list/m/?page={{page}}&cate_id=${id}&sort=1`;     \n\t\t\t\t\tif(index+1 <= list.length - list.length%3)\n\t\t\t {\tpush(title, url, 1, 0.25);}\n\t\t\t\telse{ push(title, url, 0, 0.3);}\n\t\t\t\t});\n\t});\nJSON.stringify(sort);",
    "header": "{\n\t\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\",\n\"Referer\": \"{{baseUrl}}\"\n\t}",
    "lastUpdateTime": 1732304606633,
    "loginUrl": "http://www.cqzww.com/m/account/login/",
    "respondTime": 11566,
    "ruleBookInfo": {
      "author": ".info p.0@text",
      "coverUrl": ".info img@src",
      "intro": ".j-intro@text",
      "kind": ".j-sort@text\n##分类：",
      "lastChapter": ".update p.0@text##最新章节：",
      "name": ".info h3@text",
      "tocUrl": ".active@href\n@js:\nvar url=source.key+result;\nvar web=java.webView(null,url,null),\nj=org.jsoup.Jsoup.parse(web);\nvar page=j.select(\".f-cb li\").length;\njava.put(\"page\",page);\nresult.replace('/m/',\"/api/\");",
      "wordCount": "text.字数@em@text"
    },
    "ruleContent": {
      "content": ".bookreadercontent@html",
      "payAction": "{{baseUrl}}"
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "name": "",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "$.pen_name",
      "bookList": "$.data.list[*]",
      "bookUrl": "http://www.cqzww.com/m/book/{{$.id}}/",
      "checkKeyWord": "大神主",
      "coverUrl": "$.image",
      "intro": "$.intro",
      "kind": "$.cate_name",
      "lastChapter": "$.title",
      "name": "$.name",
      "wordCount": "$.size"
    },
    "ruleToc": {
      "chapterList": "$.data..list[*]",
      "chapterName": "$.title",
      "chapterUrl": "$.cid\n@js:\nvar b=baseUrl.replace('/api/',\"/\");\nvar url=b.replace(/topic.*$/,result);\nurl;",
      "isVip": "$.fee_type\n@js:\nresult==2?true:false",
      "nextTocUrl": "@js:\nvar page=java.get(\"page\");\nvar url=[];\nif(page){\n\tfor(i=2;i<=page;i++){\n\t\tvar next=baseUrl.replace(/\\d+.$/,i+\"/\")\n\t\turl.push(next);\n\t\t}\n\t}\nurl;"
    },
    "searchUrl": "http://www.cqzww.com/api/book/search/m/,{\n  \"body\": \"page={{page}}&keyword={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "落霞小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.luoxia123.com/",
    "bookUrlPattern": "https://www.luoxia123.com/.*/",
    "customButton": false,
    "customOrder": 37,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"分类\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"玄幻仙侠\",\"url\":\"/xuanhuan/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"都市言情\",\"url\":\"/yanqing/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"穿越架空\",\"url\":\"/chuanyue/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"历史军事\",\"url\":\"/lishi/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"科幻灵异\",\"url\":\"/lingyi/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"网游竞技\",\"url\":\"/wangyou/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"耽美同人\",\"url\":\"/danmei/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"文学经典\",\"url\":\"/wenxue/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}}\n]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1787418522547,
    "respondTime": 2632,
    "ruleBookInfo": {
      "author": "small@text",
      "coverUrl": "img@src",
      "intro": ".m-summary@text",
      "name": "h1@textNodes"
    },
    "ruleContent": {
      "content": "id.content@html",
      "nextContentUrl": "text.下一章@href||class.m-page@a.-1@href"
    },
    "ruleExplore": {
      "author": "td.1@text",
      "bookList": "tbody>tr",
      "bookUrl": " a.0@href",
      "kind": "td.2@text",
      "name": "td.0@text"
    },
    "ruleSearch": {
      "author": "td.2@text",
      "bookList": "tbody>tr",
      "bookUrl": " a.0@href",
      "kind": "td.-1@text",
      "lastChapter": "td.1@text",
      "name": "td.0@text"
    },
    "ruleToc": {
      "chapterList": "class.list-group@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://www.luoxia123.com/e/search/index.php,{\n  \"body\": \"tbname=bookname&show=title,writer&tempid=1&keyboard={{key}}\",\n  \"charset\": \"UTF-8\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "🎃创国漫吧🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.guoman.cc#🎃",
    "bookUrlPattern": "http://www.guoman8.cc/\\d+/\\d+.html",
    "customButton": false,
    "customOrder": 38,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "日本::http://www.guoman8.cc/list/area-%E6%97%A5%E6%9C%AC-p-{{page}}&&港台::http://www.guoman8.cc/list/area-%E6%B8%AF%E5%8F%B0-p-{{page}}&&欧美::http://www.guoman8.cc/list/area-%E6%AC%A7%E7%BE%8E-p-{{page}}&&韩国::http://www.guoman8.cc/list/area-%E9%9F%A9%E5%9B%BD-p-{{page}}&&国产::http://www.guoman8.cc/list/area-%E5%9B%BD%E4%BA%A7-p-{{page}}&&热血::http://www.guoman8.cc/list/smid-1-p-{{page}}&&武侠::http://www.guoman8.cc/list/smid-2-p-{{page}}&&搞笑::http://www.guoman8.cc/list/smid-3-p-{{page}}&&耽美::http://www.guoman8.cc/list/smid-4-p-{{page}}&&爱情::http://www.guoman8.cc/list/smid-5-p-{{page}}&&科幻::http://www.guoman8.cc/list/smid-6-p-{{page}}&&魔法::http://www.guoman8.cc/list/smid-7-p-{{page}}&&神魔::http://www.guoman8.cc/list/smid-8-p-{{page}}&&竞技::http://www.guoman8.cc/list/smid-9-p-{{page}}&&格斗::http://www.guoman8.cc/list/smid-10-p-{{page}}&&机战::http://www.guoman8.cc/list/smid-11-p-{{page}}&&体育::http://www.guoman8.cc/list/smid-12-p-{{page}}&&运动::http://www.guoman8.cc/list/smid-13-p-{{page}}&&校园::http://www.guoman8.cc/list/smid-14-p-{{page}}&&励志::http://www.guoman8.cc/list/smid-15-p-{{page}}&&历史::http://www.guoman8.cc/list/smid-16-p-{{page}}&&伪娘::http://www.guoman8.cc/list/smid-17-p-{{page}}&&百合::http://www.guoman8.cc/list/smid-18-p-{{page}}&&后宫::http://www.guoman8.cc/list/smid-19-p-{{page}}&&治愈::http://www.guoman8.cc/list/smid-20-p-{{page}}&&美食::http://www.guoman8.cc/list/smid-21-p-{{page}}&&推理::http://www.guoman8.cc/list/smid-22-p-{{page}}&&悬疑::http://www.guoman8.cc/list/smid-23-p-{{page}}&&恐怖::http://www.guoman8.cc/list/smid-24-p-{{page}}&&职场::http://www.guoman8.cc/list/smid-25-p-{{page}}&&BL::http://www.guoman8.cc/list/smid-26-p-{{page}}&&剧情::http://www.guoman8.cc/list/smid-27-p-{{page}}&&生活::http://www.guoman8.cc/list/smid-28-p-{{page}}&&幻想::http://www.guoman8.cc/list/smid-29-p-{{page}}&&战争::http://www.guoman8.cc/list/smid-30-p-{{page}}&&仙侠::http://www.guoman8.cc/list/smid-33-p-{{page}}&&性转换::http://www.guoman8.cc/list/smid-40-p-{{page}}&&冒险::http://www.guoman8.cc/list/smid-41-p-{{page}}&&其他::http://www.guoman8.cc/list/smid-32-p-{{page}}\n完结::http://www.guoman8.cc/list/lz-2-p-{{page}}",
    "lastUpdateTime": 0,
    "respondTime": 1913,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "intro": "id.bookIntro@text",
      "kind": "[property=\"og:novel:category\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "tag.h1@text"
    },
    "ruleContent": {
      "content": "@js:\nheader={\"Referer\":baseUrl};\nheaders={\"headers\":JSON.stringify(header)};\nimgl=eval(result.match(/(eval\\(.+?\\}\\)\\))/)[1]);\n\nhost = \"http://images.720rs.com\";\nimage=cInfo.fs;\n//piclist.map(u=>\"<img src=\\\"\"+server+u+','+JSON.stringify(headers)+\"\\\">\").join(\"\\n\")\n\nhtml='';\nfunction get7ImageUrl(image) {\n    if (image.match(/^(\\/Man?)/i)) {\n        return host + image\n    } else if (image.match(/^(http?)/i)) {\n        return image\n    }\n}\nfor(i in image){\nurl=get7ImageUrl(image[i]);\nhtml+='<img src=\"'+url+','+JSON.stringify(headers)+'\">\\n'\n}\nhtml",
      "imageStyle": "FULL",
      "nextContentUrl": "",
      "webJs": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.tags.2@a@text",
      "bookList": "class.book-result@tag.li||id.contList@tag.li",
      "bookUrl": "tag.a.0@href||class.ell@href",
      "coverUrl": "img@src||tag.img@data-src",
      "intro": ".intro@span@textNodes##\\[|\\]",
      "kind": "class.red.0@text",
      "lastChapter": ".blue@text&&class.red.1@text",
      "name": "tag.a.0@title||class.bcover@title",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "-id.chpater-list-1@li@a",
      "chapterName": "span@ownText",
      "chapterUrl": "href",
      "updateTime": "i@text"
    },
    "searchUrl": "http://www.guoman8.cc/search/q_{{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "🎃爱尚🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "https://wap.s288.org#🎃",
    "customButton": false,
    "customOrder": 39,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 0,
    "loginCheckJs": "if (result.code() == 403) {\n  java.initUrl()\n  result = java.getStrResponse()\n} result",
    "respondTime": 3383,
    "ruleBookInfo": {
      "author": ".infotype > p:nth-child(1) > a@text",
      "intro": ".intro > p:nth-child(3)@html",
      "kind": ".infotype > p:nth-child(2)@text##类型：",
      "lastChapter": "{{@@p:nth-child(4) > a@text}}●{{@@.infotype > p:nth-child(3)@text##更新时间：}}",
      "name": ".cataloginfo > h3@text"
    },
    "ruleContent": {
      "content": "#novelcontent > p@html",
      "nextContentUrl": ".p3 > a@href",
      "replaceRegex": "##本章未完.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author > a@text",
      "bookList": ".sone",
      "bookUrl": ".sone > a@href",
      "checkKeyWord": "星空",
      "name": ".sone > a@text"
    },
    "ruleToc": {
      "chapterList": "ul:nth-child(2) > li > a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://wap.s288.org/search.php,{\n  \"body\": \"s={{key}}&type=articlename\",\n  \"charset\": \"GBK\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "书耽",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.shubl.com#♤yc",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 40,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"签约\",\"url\":\"/index/filter_book_list?tag=%E7%AD%BE%E7%BA%A6&tag_module=signed&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"甜文\",\"url\":\"/index/filter_book_list?tag=%E7%94%9C%E6%96%87&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"爽文\",\"url\":\"/index/filter_book_list?tag=%E7%88%BD%E6%96%87&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"ＨＥ\",\"url\":\"/index/filter_book_list?tag=HE&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"ＢＥ\",\"url\":\"/index/filter_book_list?tag=BE&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"快穿\",\"url\":\"/index/filter_book_list?tag=%E5%BF%AB%E7%A9%BF&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"青春\",\"url\":\"/index/filter_book_list?tag=%E9%9D%92%E6%98%A5&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"/index/filter_book_list?tag=%E6%A0%A1%E5%9B%AD&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"百合\",\"url\":\"/index/filter_book_list?tag=%E7%99%BE%E5%90%88&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/index/filter_book_list?tag=%E7%A7%91%E5%B9%BB&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古代\",\"url\":\"/index/filter_book_list?tag=%E5%8F%A4%E4%BB%A3&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"民国\",\"url\":\"/index/filter_book_list?tag=%E6%B0%91%E5%9B%BD&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"/index/filter_book_list?tag=%E7%8E%B0%E4%BB%A3&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/index/filter_book_list?tag=%E9%83%BD%E5%B8%82&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"/index/filter_book_list?tag=%E6%AD%A6%E4%BE%A0&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"仙侠\",\"url\":\"/index/filter_book_list?tag=%E4%BB%99%E4%BE%A0&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/index/filter_book_list?tag=%E7%8E%84%E5%B9%BB&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"/index/filter_book_list?tag=%E6%9E%B6%E7%A9%BA&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"/index/filter_book_list?tag=%E7%A9%BF%E8%B6%8A&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"重生\",\"url\":\"/index/filter_book_list?tag=%E9%87%8D%E7%94%9F&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"动漫\",\"url\":\"/index/filter_book_list?tag=%E5%8A%A8%E6%BC%AB&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"/index/filter_book_list?tag=%E7%BD%91%E6%B8%B8&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"/index/filter_book_list?tag=%E6%82%AC%E7%96%91&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"灵异\",\"url\":\"/index/filter_book_list?tag=%E7%81%B5%E5%BC%82&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"完本\",\"url\":\"/index/filter_book_list?tag=%E5%AE%8C%E6%9C%AC&tag_module=ended&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.21}}]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.25 Mobile Safari/537.36\"\n}",
    "lastUpdateTime": 1721237764583,
    "loginUrl": "https://m.shubl.com/signup/login",
    "respondTime": 5057,
    "ruleBookInfo": {
      "author": "class.author.0@text##\\s.*",
      "coverUrl": "class.thumb.0@img@data-original",
      "intro": ".info div.4@html&&.J_DescContent@html",
      "kind": "class.author.0@text&&class.pull-right.0@text##.*\\s|.*：",
      "name": ".name@text",
      "tocUrl": "class.container.1@a@href",
      "wordCount": ".numbers span.0@text"
    },
    "ruleContent": {
      "content": "#J_BookRead@html",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "div.1@text",
      "bookList": ".book-list li",
      "bookUrl": "a@href",
      "coverUrl": "img@data-original",
      "intro": "div.2@text",
      "name": "span.1@text"
    },
    "ruleToc": {
      "chapterList": ".list li",
      "chapterName": "p.0@text",
      "chapterUrl": "a@href##$##,{\"webView\":true}",
      "isVip": "i@text##^##🔒",
      "updateTime": "p.1@text"
    },
    "searchUrl": "/index/search_book?key={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "书耽中文",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.shubl.com#",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 41,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "签约::/index/filter_book_list?tag=%E7%AD%BE%E7%BA%A6&tag_module=signed&page={{page}}\n完本::/index/filter_book_list?tag=%E5%AE%8C%E6%9C%AC&tag_module=ended&page={{page}}\n甜文::/index/filter_book_list?tag=%E7%94%9C%E6%96%87&tag_module=&page={{page}}\n爽文::/index/filter_book_list?tag=%E7%88%BD%E6%96%87&tag_module=&page={{page}}\nＨＥ::/index/filter_book_list?tag=HE&tag_module=&page={{page}}\nＢＥ::/index/filter_book_list?tag=BE&tag_module=&page={{page}}\n快穿::/index/filter_book_list?tag=%E5%BF%AB%E7%A9%BF&tag_module=&page={{page}}\n青春::/index/filter_book_list?tag=%E9%9D%92%E6%98%A5&tag_module=&page={{page}}\n校园::/index/filter_book_list?tag=%E6%A0%A1%E5%9B%AD&tag_module=&page={{page}}\n百合::/index/filter_book_list?tag=%E7%99%BE%E5%90%88&tag_module=&page={{page}}\n科幻::/index/filter_book_list?tag=%E7%A7%91%E5%B9%BB&tag_module=&page={{page}}\n古代::/index/filter_book_list?tag=%E5%8F%A4%E4%BB%A3&tag_module=&page={{page}}\n民国::/index/filter_book_list?tag=%E6%B0%91%E5%9B%BD&tag_module=&page={{page}}\n现代::/index/filter_book_list?tag=%E7%8E%B0%E4%BB%A3&tag_module=&page={{page}}\n都市::/index/filter_book_list?tag=%E9%83%BD%E5%B8%82&tag_module=&page={{page}}\n武侠::/index/filter_book_list?tag=%E6%AD%A6%E4%BE%A0&tag_module=&page={{page}}\n仙侠::/index/filter_book_list?tag=%E4%BB%99%E4%BE%A0&tag_module=&page={{page}}\n玄幻::/index/filter_book_list?tag=%E7%8E%84%E5%B9%BB&tag_module=&page={{page}}\n架空::/index/filter_book_list?tag=%E6%9E%B6%E7%A9%BA&tag_module=&page={{page}}\n穿越::/index/filter_book_list?tag=%E7%A9%BF%E8%B6%8A&tag_module=&page={{page}}\n重生::/index/filter_book_list?tag=%E9%87%8D%E7%94%9F&tag_module=&page={{page}}\n动漫::/index/filter_book_list?tag=%E5%8A%A8%E6%BC%AB&tag_module=&page={{page}}\n网游::/index/filter_book_list?tag=%E7%BD%91%E6%B8%B8&tag_module=&page={{page}}\n悬疑::/index/filter_book_list?tag=%E6%82%AC%E7%96%91&tag_module=&page={{page}}\n灵异::/index/filter_book_list?tag=%E7%81%B5%E5%BC%82&tag_module=&page={{page}}",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.25 Mobile Safari/537.36\"\n}",
    "lastUpdateTime": 1721271014970,
    "loginUrl": "https://m.shubl.com/signup/login?redirect=https%3A%2F%2Fm.shubl.com%2Freader%2Fget_my_info",
    "respondTime": 3481,
    "ruleBookInfo": {
      "author": "class.author@tag.a.0@text##\\|.*",
      "coverUrl": "id.book_info@tag.img@data-original",
      "intro": "class.text-muted J_DescContent@text",
      "kind": "class.J_Tag btn btn-mini btn-outline-primary@text",
      "name": "class.info@tag.a.0@text",
      "tocUrl": "class.container.1@tag.a@href",
      "wordCount": "class.numbers@tag.span.0@text"
    },
    "ruleContent": {
      "content": "id.J_BookRead@html",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "class.author@text",
      "bookList": "class.book-list@tag.li",
      "bookUrl": "tag.a@href",
      "coverUrl": "class.lazyload@data-original",
      "intro": "class.summaries@text",
      "name": "class.title@text"
    },
    "ruleToc": {
      "chapterList": "class.list@tag.li",
      "chapterName": "tag.a@class.chapter-title@text",
      "chapterUrl": "tag.a@href##$##,{\"webView\":true}"
    },
    "searchUrl": "/index/search_book?key={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "唔缺小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.quexs.com#",
    "customButton": false,
    "customOrder": 42,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1734495704287,
    "respondTime": 1781,
    "ruleBookInfo": {
      "intro": "#bookIntro@html"
    },
    "ruleContent": {
      "content": "#htmlContent@p!-1@html##$##❎",
      "imageStyle": "",
      "nextContentUrl": "<js>\nif(/xyy.png/.test(src)){\nresult = src.match(/\\d+,\\d+,'(.*?_.*?)\\|__u[^\\|]+/)[1]+\".html\"\n}\n</js>",
      "replaceRegex": "##.*向你推荐他的其他作品[\\s\\S]+|「如章节.*?」|.*看最新章节.*|\\s*❎\\s*|.*?》.*?域名.*",
      "webJs": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".booktag@text",
      "bookList": "class.col-md-10",
      "bookUrl": "a.0@href",
      "intro": "#bookIntro@text",
      "lastChapter": ".text-danger@text",
      "name": "h4@text"
    },
    "ruleToc": {
      "chapterList": "class.panel-chapterlist.-1@dd@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "preUpdateJs": ""
    },
    "searchUrl": "/search,{\"method\":\"POST\",\"body\":\"keyword={{key}}\"}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "蚂蚁阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xmayitxt.com/",
    "bookUrlPattern": "http://www.xmayitxt.com/book/\\d+.html",
    "customButton": false,
    "customOrder": 43,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"全部小说\",\"url\":\"/shuku/0_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"玄幻小说\",\"url\":\"/shuku/1_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"仙侠小说\",\"url\":\"/shuku/2_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"都市小说\",\"url\":\"/shuku/3_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"历史小说\",\"url\":\"/shuku/4_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"军事小说\",\"url\":\"/shuku/5_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"悬疑灵异\",\"url\":\"/shuku/6_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"科幻小说\",\"url\":\"/shuku/7_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"游戏小说\",\"url\":\"/shuku/8_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"现言小说\",\"url\":\"/shuku/9_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"古言小说\",\"url\":\"/shuku/10_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"穿越小说\",\"url\":\"/shuku/11_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"青春小说\",\"url\":\"/shuku/12_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"豪门总裁\",\"url\":\"/shuku/14_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"耽美同人\",\"url\":\"/shuku/15_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"其他小说\",\"url\":\"/shuku/13_0_0_0_lastupdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}}]",
    "lastUpdateTime": 1734833864024,
    "loginUrl": "",
    "respondTime": 4248,
    "ruleBookInfo": {
      "author": "class.author.0@text",
      "coverUrl": "class.book_left@tag.img@src",
      "init": "",
      "intro": "class.breviary@text",
      "kind": "class.list@i@text",
      "lastChapter": "class.list@a@text##正文(\\s+|_)|[\\(（【].*[求更谢乐发推].*[】）\\)]|\\|",
      "name": "class.book_name@tag.h1@text",
      "tocUrl": "class.button_list@tag.a.2@href"
    },
    "ruleContent": {
      "content": "class.page-content@textNodes##免费小说，无弹窗小说网，txt下载，请记住蚂蚁阅读网www.xmayitxt.com|\\*\\*\\*|一秒记住.*免费读！"
    },
    "ruleExplore": {
      "bookList": ""
    },
    "ruleSearch": {
      "author": "tag.td.5@text",
      "bookList": "class.BOX@tag.tr!0",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "tag.a.1@href\n<js>\nvar id = result.match(/\\/(\\d+).*/)[1];\nvar iid = parseInt(id/1000);\n'/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "class.tag@text",
      "lastChapter": "tag.td.3@a@text##正文(\\s+|_)|[\\(（【].*[求更谢乐发推].*[】）\\)]|\\|",
      "name": "tag.td.2@text"
    },
    "ruleToc": {
      "chapterList": "class.float-list@tag.li",
      "chapterName": "tag.a@text##正文(\\s+|_)|[\\(（【].*[求更谢乐发推].*[】）\\)]|\\|",
      "chapterUrl": "tag.a@href",
      "updateTime": "createdate"
    },
    "searchUrl": "http://www.xmayitxt.com/modules/article/search.php?q={{key}}&searchtype=all&s=17333194950446968473",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "棉花糖网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.mhtxs.info",
    "customButton": false,
    "customOrder": 44,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "日点击榜::/top-dayvisit-{{page}}/\n周点击榜::/top-weekvisit-{{page}}/\n月点击榜::/top-monthvisit-{{page}}/\n总点击榜::/top-allvisit-{{page}}/\n总收藏榜::/top-goodnum-{{page}}/\n字数排行::/top-size-{{page}}/\n日推荐榜::/top-dayvote-{{page}}/\n周推荐榜::/top-weekvote-{{page}}/\n月推荐榜::/top-monthvote-{{page}}/\n总推荐榜::/top-allvote-{{page}}/\n最新入库::/top-postdate-{{page}}/\n最近更新::/top-lastupdate-{{page}}/\n玄幻魔法::/list/1-{{page}}.html\n武侠修真::/list/2-{{page}}.html\n都市言情::/list/3-{{page}}.html\n历史军事::/list/4-{{page}}.html\n侦探推理::/list/5-{{page}}.html\n网游动漫::/list/6-{{page}}.html\n科幻小说::/list/7-{{page}}.html\n恐怖灵异::/list/8-{{page}}.html\n同人小说::/list/9-{{page}}.html\n穿越小说::/list/10-{{page}}.html\n全本小说::/full-{{page}}/",
    "lastUpdateTime": 0,
    "respondTime": 8644,
    "ruleBookInfo": {
      "author": ".block_txt2@p.2@text",
      "coverUrl": ".block_img2@img@src",
      "downloadUrls": "id.btnlist@a.1@href",
      "intro": ".intro_info@text##(^|[。！？]+[”」）】]?)##$1<br>@js:result.replace(/最新章节.*/g,\"\")",
      "kind": ".block_txt2@p.3:4:5@text##.*：|小说|T.*",
      "lastChapter": ".block_txt2@a.-1@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": ".block_txt2@h2@text",
      "tocUrl": "id.btnlist@a.0@href"
    },
    "ruleContent": {
      "content": "id.nr1@textNodes",
      "nextContentUrl": "id.pb_next@href",
      "replaceRegex": "##[\\(\\[（【].*?[la].*?[】）\\]\\)]|\\s*一秒记住.*小说阅读。\\s*|\\s*.*点击下一页.*\\s*|《.*》第.+章.+|正在手打中.*|.*棉花糖小说.*|（.*好看的小说"
    },
    "ruleExplore": {
      "author": "ownText##.*\\/",
      "bookList": ".line",
      "bookUrl": "a@href",
      "coverUrl": "a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'/book/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "ownText##\\[|\\].*",
      "name": "a@text"
    },
    "ruleSearch": {
      "author": "p.3@text",
      "bookList": ".block",
      "bookUrl": "a.0@href",
      "checkKeyWord": "",
      "coverUrl": "img@src",
      "kind": "p.2@text##.*：|小说",
      "lastChapter": "a.3@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "h2@text"
    },
    "ruleToc": {
      "chapterList": ".book_last@dd@a",
      "chapterName": "text##^(\\d+).|正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "href",
      "nextTocUrl": ".right@a@href"
    },
    "searchUrl": "/search.php,{\n  \"method\": \"post\",\n  \"body\": \"searchkey={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "香书小说（+++）",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xbiqugu.net",
    "customButton": false,
    "customOrder": 45,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻\",\"url\":\"/fenlei/1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"修真\",\"url\":\"/fenlei/2_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/fenlei/3_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"穿越\",\"url\":\"/fenlei/4_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/fenlei/5_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/fenlei/6_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/fenlei/7_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1787425142146,
    "respondTime": 4502,
    "ruleBookInfo": {
      "author": "#info@p.0@text",
      "coverUrl": "#fmimg@img@src",
      "intro": "#intro@p!0@html##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": ".con_top@a.-1@text&&#info@p.2@text##小说|.*：|\\s..:.*",
      "lastChapter": "#info@a.-1@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "#info@h1@text"
    },
    "ruleContent": {
      "content": "#content@textNodes"
    },
    "ruleExplore": {
      "author": ".s5@text",
      "bookList": ".l@li",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.+\\D((\\d+)\\d{3})\\D##/files/article/image/$2/$1/$1s.jpg###",
      "kind": ".s3@textNodes##\\(|\\)",
      "lastChapter": "a.1@text",
      "name": "a.0@text"
    },
    "ruleSearch": {
      "author": "td.2@text",
      "bookList": "tbody@tr!0",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.+\\D((\\d+)\\d{3})\\D##/files/article/image/$2/$1/$1s.jpg###",
      "kind": "td.3@text",
      "lastChapter": "a.1@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": "#list@dd@a",
      "chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "href"
    },
    "searchUrl": "{{java.connect(source.getKey()).raw().request().url()}}modules/article/waps.php,{\n  \"method\": \"post\",\n  \"body\": \"searchkey={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "电子书陆",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.wrlwx.com#",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 48,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "总点击榜::http://m.wrlwx.com/paihangbang/index_{{page}}.html\n封面推荐::http://m.wrlwx.com/fengtui/index_{{page}}.html\n字数排行::http://m.wrlwx.com/size/index_{{page}}.html\n金牌推荐::http://m.wrlwx.com/jinpaituijian/index_{{page}}.html\n最新入库::http://m.wrlwx.com/postdate/index_{{page}}.html\n最近更新::http://m.wrlwx.com/new/index_{{page}}.html\n玄幻奇幻::http://m.wrlwx.com/wuxia/index_{{page}}.html\n武侠仙侠::http://m.wrlwx.com/yanqing/index_{{page}}.html\n耽美小说::http://m.wrlwx.com/danmei/index_{{page}}.html\n都市言情::http://m.wrlwx.com/xuanhuan/index_{{page}}.html\n历史军事::http://m.wrlwx.com/xiaoyuan/index_{{page}}.html\n科幻灵异::http://m.wrlwx.com/wangyou/index_{{page}}.html\n网友竞技::http://m.wrlwx.com/kongbu/index_{{page}}.html\n女频频道::http://m.wrlwx.com/jishi/index_{{page}}.html\n军事历史::http://m.wrlwx.com/lishi/index_{{page}}.html\n科幻小说::http://m.wrlwx.com/kehuan/index_{{page}}.html\n管理哲学::http://m.wrlwx.com/zhexue/index_{{page}}.html\n学习资料::http://m.wrlwx.com/xuexi/index_{{page}}.html\n其他小说::http://m.wrlwx.com/qita/index_{{page}}.html\n金牌推荐::http://m.wrlwx.com/jinpaituijian/index_{{page}}.html\n封推小说::http://m.wrlwx.com/fengtui/index_{{page}}.html",
    "lastUpdateTime": 1734833346997,
    "loginUrl": "",
    "respondTime": 19565,
    "ruleBookInfo": {
      "coverUrl": "class.block_img2@img@src",
      "intro": "class.intro_info@text##最新章节推荐.+",
      "lastChapter": "class.block_txt2@tag.p.6@a@text"
    },
    "ruleContent": {
      "content": "id.nr1@textNodes##.*本章未完.*|.*第.*/.*页.*|请记住本书.*|----|书快.*看书最快.*",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.author@text||class.line@text##.*/",
      "bookList": "class.read_book@children||class.cover@p",
      "bookUrl": "a@href",
      "coverUrl": "a@href##.+\\D((\\d+)\\d{3})\\..+##http://www.wrlwx.com/headimgs/$2/$1/s$1.jpg",
      "kind": "class.line@text##\\[|].*",
      "lastChapter": "class.updatelast@a@text",
      "name": "class.iTit@text||class.blue@text"
    },
    "ruleToc": {
      "chapterList": "class.chapter.1@li@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "http://m.wrlwx.com/search.php?searchkey={{key}}&submit=",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "手机阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.156zwcc.cc",
    "customButton": false,
    "customOrder": 49,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n\t\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.92 Safari/537.36\",\n\t\"Referer\": \"https://www.156zwcc.cc/\"\n}",
    "lastUpdateTime": 1787417628288,
    "respondTime": 11449,
    "ruleBookInfo": {
      "coverUrl": "id.fmimg@img@src",
      "intro": "id.intro@tag.p.0@textNodes",
      "lastChapter": "id.list@tag.dd.0@a@text"
    },
    "ruleContent": {
      "content": "#nr@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.s4@text",
      "bookList": "class.l@li",
      "bookUrl": "tag.a.0@href",
      "kind": "class.s1@text##\\[|]",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text"
    },
    "ruleToc": {
      "chapterList": "id.list@dd@a",
      "chapterName": "text",
      "chapterUrl": "href##//www.##//m."
    },
    "searchUrl": "Search/{{key}}",
    "weight": 60
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.ibiquge.la#",
    "bookUrlPattern": "https://www.ibiquge.la/\\d+/\\d+/",
    "customButton": false,
    "customOrder": 51,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻小说\",\"url\":\"/fenlei/1_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"修真小说\",\"url\":\"/fenlei/2_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"都市小说\",\"url\":\"/fenlei/3_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"穿越小说\",\"url\":\"/fenlei/4_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"网游小说\",\"url\":\"/fenlei/5_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"科幻小说\",\"url\":\"/fenlei/6_{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}}]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows; U; Windows NT 5.2;. en-US) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 Quark/4.6.6.164\"\n}",
    "lastUpdateTime": 1732968262117,
    "loginUrl": "",
    "respondTime": 4609,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作    者：",
      "coverUrl": "id.fmimg@tag.img@src",
      "init": "",
      "intro": "id.intro@text",
      "kind": "id.info@tag.p.2@text##最后更新：",
      "lastChapter": "id.info@tag.p.3@a@text",
      "name": "id.info@tag.h1.0@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleContent": {
      "content": "id.content@html##亲,点击进去,给个好.*漂亮的老婆哦!|手机站全新改版.*广告清新阅读！",
      "nextContentUrl": ""
    },
    "ruleExplore": {
      "author": "class.s5@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "class.s2@a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.ibiquge.la/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text"
    },
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "tag.td.0@tag.a@href",
      "coverUrl": "tag.td.0@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.ibiquge.la/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "tag.td.1@tag.a@text",
      "name": "tag.td.0@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://www.ibiquge.la/modules/article/waps.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "啦电子书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.wrltxt.com#",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 52,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "lastUpdateTime": 1734942717913,
    "loginUrl": "",
    "respondTime": 2939,
    "ruleBookInfo": {
      "author": "class.block_txt2@tag.p.2@text##作者：",
      "coverUrl": "img@src",
      "kind": "class.block_txt2@tag.p.2@a@text",
      "lastChapter": "class.block_txt2@tag.p.6@a@text",
      "name": "class.block_txt2@h2@a@text",
      "tocUrl": "class.block_txt2@tag.a.0@href##-(\\d+).html##http://www.wrltxt.com/read/$1/###"
    },
    "ruleContent": {
      "content": "id.content@textNodes##请记住本书.*",
      "imageStyle": "0",
      "replaceRegex": "##.未完待续。.|166阅读网|reads;"
    },
    "ruleExplore": {
      "author": "class.s@text##大小.*",
      "bookList": "//div[5]/div[2]/div/ul/li",
      "bookUrl": "class.red@href",
      "intro": "class.u@text",
      "lastChapter": "tag.div.-1@text",
      "name": "tag.a.0@text##txt.*"
    },
    "ruleSearch": {
      "author": "tag.td.3@text",
      "bookList": "tbody@tr!0",
      "bookUrl": "tag.a.0@href",
      "kind": "",
      "lastChapter": "tag.td.2@text",
      "name": "tag.td.1@text"
    },
    "ruleToc": {
      "chapterList": "//div[5]/div/div[3]/div[2]/ul/li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.wrlwx.com/so.html?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.biqusa.com/#",
    "bookUrlPattern": "https://www.biqusa.com/\\d+_\\d+/",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 55,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/xuanhuanxiaoshuo/1_{{page}}.html\n修真小说::/xiuzhenxiaoshuo/2_{{page}}.html\n都市小说::/dushixiaoshuo/3_{{page}}.html\n穿越小说::/chuanyuexiaoshuo/4_{{page}}.html\n网游小说::/wangyouxiaoshuo/5_{{page}}.html\n科幻小说::/kehuanxiaoshuo/6_{{page}}.html\n其它小说::/qitaxiaoshuo/7_{{page}}.html",
    "header": "",
    "jsLib": "",
    "lastUpdateTime": 1736568612384,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 2294,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@a@text",
      "coverUrl": "id.fmimg@img@src",
      "intro": "id.intro@text",
      "kind": "id.info@tag.p.2@text##最后更新：",
      "lastChapter": "id.info@tag.p.3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.bookdetail@id.info@h1@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节"
    },
    "ruleContent": {
      "content": "id.content@textNodes##本小说.*无广告免费阅读。|：。：",
      "imageDecode": "",
      "imageStyle": "",
      "payAction": "",
      "sourceRegex": "",
      "title": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "class.s4@a@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@tag.a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.biqusa.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "class.s5@text",
      "lastChapter": "class.s3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.s2@a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节"
    },
    "ruleSearch": {
      "author": "class.s4@a@text",
      "bookList": "class.novelslist2@ul@li",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.biqusa.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "class.s6@text",
      "lastChapter": "class.s3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.s2@a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节"
    },
    "ruleToc": {
      "chapterList": "//*[@id=\"list\"]//dt[2]/following-sibling::dd/a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://www.biqusa.com/search.html?name={{key}}",
    "variableComment": "",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "壁落小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://wap.biquluo.info/",
    "customButton": false,
    "customOrder": 56,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::https://www.biquluo.info/xiaoshuodaquan/1.html\n仙侠小说::https://www.biquluo.info/xiaoshuodaquan/2.html\n都市小说::https://www.biquluo.info/xiaoshuodaquan/3.html\n历史小说::https://www.biquluo.info/xiaoshuodaquan/4.html\n网游小说::https://www.biquluo.info/xiaoshuodaquan/5.html\n科幻小说::https://www.biquluo.info/xiaoshuodaquan/6.html\n灵异小说::https://www.biquluo.info/xiaoshuodaquan/7.html\n其它小说::https://www.biquluo.info/xiaoshuodaquan/8.html",
    "lastUpdateTime": 0,
    "respondTime": 14678,
    "ruleBookInfo": {
      "author": "//p[1]/a/text()",
      "coverUrl": "//div[@id='fmimg']/img/@src",
      "intro": "//div[@id='intro']/text()",
      "kind": "//div[@id='info']/p[3]/text()",
      "lastChapter": "//div[@id='info']/p[4]/a/text()",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "//div[@id='content']/text()",
      "title": "//h1/text()"
    },
    "ruleExplore": {
      "bookList": "//div[@class='novellist']/ul/li",
      "bookUrl": "/a/@href",
      "name": "/a/text()"
    },
    "ruleSearch": {
      "author": "/span[3]/a/text()",
      "bookList": "//div[@class=\"novelslist2\"]/ul/li[position() > 1]",
      "bookUrl": "/span[2]/a/@href",
      "kind": "/span[5]/text()",
      "lastChapter": "/span[4]/a/text()",
      "name": "/span[2]/a/text()"
    },
    "ruleToc": {
      "chapterList": "//div[@id='list']/dl/dd[position()>=13]",
      "chapterName": "/a/text()",
      "chapterUrl": "/a/@href"
    },
    "searchUrl": "https://www.biquluo.info/search.html?name={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "阅读阁网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.yueduge.cc/",
    "customButton": false,
    "customOrder": 57,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "lastUpdateTime": 1730818363295,
    "respondTime": 4936,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "init": "@put:{n:\"[property$=book_name]@content\",\na:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property~=las?test_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"[property$=image]@content\",\nt:\"text.章节目录@href\"}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}",
      "tocUrl": "@get:{t}",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "#chaptercontent@html",
      "replaceRegex": "##.*提示您：看后求.*|小说推荐：.*|.*转载请注明来源.*|本章未完，请点击下一章继续阅读！.*"
    },
    "ruleExplore": {
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "name": ""
    },
    "ruleSearch": {
      "author": ".image@span@text",
      "bookList": ".item",
      "bookUrl": "h4@a@href",
      "coverUrl": ".lazy@data-src",
      "intro": ".intro@text",
      "kind": ".btm@em[0,1,2]@text",
      "name": "h4@text"
    },
    "ruleToc": {
      "chapterList": ".list@dl@dd@a",
      "chapterName": "text",
      "chapterUrl": "onclick##location\\.href='(.*)'##$1,{'webView': true}",
      "nextTocUrl": "option@value"
    },
    "searchUrl": "https://www.yueduge.cc/search/?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "网站正文故障",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "必去吧楼",
    "bookSourceType": 0,
    "bookSourceUrl": "  http://m.bequ6.org",
    "customButton": false,
    "customOrder": 58,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvar sort=[];\nvar push=(title,url,size)=>sort.push({\n  \t\"title\": title,\n  \t\"url\": url,\n  \t\"style\": {\n   \"layout_flexGrow\": 1,\n   \"layout_flexBasisPercent\": size\n   }\n });\n\nvar url=source.key;\nvar fl=url+\"/sort/\";\nvar ph=url+\"/top/\";\nvar qb=url+\"/full-1/\";\nvar html=java.ajax(fl);\nvar src=java.ajax(ph);\nvar qbl=java.ajax(qb);\n\nif(html&&src&&qbl){\na=org.jsoup.Jsoup.parse(html).select(\".content li a\");\nb=org.jsoup.Jsoup.parse(src).select(\".content li a\");\nc=org.jsoup.Jsoup.parse(qbl).select(\".content li a\");\npush(\"🌹分类🌹\",null,1)\n    for(i in a){\n        title=a[i].text()\n        url=a[i].attr(\"href\")\n        size=0.25;\n  url=String(url).replace(\"1/\",\"{{page}}/\")\n        push(title,url,size)\n    };\n push(\"🌹排行🌹\",null,1)\n    for(i in b){\n        title=b[i].text()\n        url=b[i].attr(\"href\")\n  url=String(url).replace(\"1/\",\"{{page}}/\")\n        size=0.25;\n        push(title,url,size)\n    }\npush(\"🌹全本🌹\",\"/full/{{page}}/\",1)\n      \n}else{\n  java.toast(\"发现列表获取失败！\")\n}\n\nJSON.stringify(sort)\n",
    "lastUpdateTime": 1732972367677,
    "respondTime": 8473,
    "ruleBookInfo": {
      "author": "text.作者：@text",
      "coverUrl": ".block_img2@img@src",
      "intro": ".intro_info@text",
      "kind": "text.分类：@text&&\ntext.状态：@text&&\ntext.更新：@text",
      "lastChapter": ".block_txt2@a.-1@text",
      "name": "h2@text",
      "tocUrl": "text.查看目录@href"
    },
    "ruleContent": {
      "content": "#nr1@textNodes",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "kind": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "//*[not(@class='blue')]/text()##\\[.*\\]|\\/",
      "bookList": ".line",
      "bookUrl": ".blue@href",
      "kind": "##\\[(.*)\\]##$1##",
      "name": ".blue@text"
    },
    "ruleToc": {
      "chapterList": ".chapter li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value||text.下一页@href"
    },
    "searchUrl": "/search?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "药丸文学",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.115wx.cc/##2",
    "customButton": false,
    "customOrder": 59,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "lastUpdateTime": 1732910573758,
    "respondTime": 7613,
    "ruleBookInfo": {
      "author": "class.qtxx@a@text",
      "coverUrl": "img.0@src",
      "intro": "class.book_desc@text",
      "kind": "class.qtxx@p.1@text",
      "lastChapter": "class.creat_time@text",
      "name": "class.book_inf@h3@text",
      "tocUrl": "text.更多章节@href",
      "wordCount": "class.qtxx@p.2@text"
    },
    "ruleContent": {
      "content": "#rd-txt@p@text@js:result+' '",
      "nextContentUrl": "@js:\nif (result.indexOf(\"next.png\") > -1) {\n\t\n\tcode = result.match(/eval\\(function(.*)\\);/)[0]\n\tcode = code.replace(/u[0-9a-f]+/, 'uData')\n\teval(code)\n\t\t\n\tif(!uData.match('_')) {\n\t next = java.getElement(\"@@class.ud-link ud-link1@span@a\")\n\t uData = next.attr(\"href\")\n\t}\n\tuData\n}"
    },
    "ruleExplore": {
      "intro": ""
    },
    "ruleSearch": {
      "author": "class.book-meta-l@text",
      "bookList": "class.book-li",
      "bookUrl": "class.book-li@a@href",
      "coverUrl": "div@img@src",
      "intro": "class.book-intro@text",
      "kind": "class.sk_b_span@textNodes",
      "lastChapter": "class.blue@text",
      "name": "class.book-cell@h4@text"
    },
    "ruleToc": {
      "chapterList": "class.mulu_uld@li",
      "chapterName": "h3@text##>",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://wap.115wx.cc/search?keyword={{key}},{\n  \"method\": \"POST\",\n  \"webView\": true\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "穿越小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.kk169.org#",
    "customButton": false,
    "customOrder": 60,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"༺ˇ»`ʚ分类ɞ´«ˇ༻\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"玄幻魔法\",\"url\":\"book/sort1/0/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"武侠修真\",\"url\":\"book/sort2/0/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"都市言情\",\"url\":\"book/sort3/0/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"历史军事\",\"url\":\"book/sort4/0/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"穿越架空\",\"url\":\"book/sort5/0/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"游戏竞技\",\"url\":\"book/sort6/0/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}\n]",
    "lastUpdateTime": 1787412530014,
    "respondTime": 10926,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "🕰  更新时间：\n{{@@.tabvalue@table@tbody@td.2@text##.*：|\\s.*}}\n📜  内容简介：\n{{@@.tabvalue@div@textNodes##本书尚无公告.|\\\\n}}##(^|[。！？……；]+[”」）】]?)##$1<br>",
      "kind": "[property~=category|status|update_time]@content&&.tabvalue@table@tbody@td.2@text##.*：|\\s.*",
      "lastChapter": "{{@@h3@text}}･{{@@.tabvalue@table@tbody@td.2@text##.*：|\\s.*}}\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求含理更谢乐发推票盟补加字Kk\\/].*/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "name": "[property$=book_name]@content",
      "tocUrl": "text.点击阅读@href"
    },
    "ruleContent": {
      "content": "#acontent@textNodes",
      "replaceRegex": "##\\(穿越小说.*www.*\\)|穿越小说.*www.*|正在手打.*|.本章完."
    },
    "ruleExplore": {
      "author": ".c_value.0@text",
      "bookList": "class.c_row cf",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": "class.c_description@text",
      "kind": "span.-1:-3@text",
      "lastChapter": "a.3@text\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求含理更谢乐发推票盟补加字Kk\\/].*/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "name": "a.2@text"
    },
    "ruleSearch": {
      "author": ".c_value.0@text",
      "bookList": "class.c_row",
      "bookUrl": "a.0@href",
      "checkKeyWord": "我的模拟长生路",
      "coverUrl": "img@src",
      "kind": ".c_value.1@text&&.c_value.3@text&&.c_value.5@text",
      "lastChapter": "{{@@.c_value.4@text}}•{{@@.c_value.5@text}}\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求含理更谢乐发推票盟补加字Kk\\/].*/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": "li.chapter@a\n<js>\nvar r=result;\nvar v=book.getVariable(\"custom\")\nvar b=[];\nif(v!=\"\"){\n        for(i=0;i<r.length-v;i++){\n                b.push(r[i]);\n                }\n                result=b;\n        }\n        result\n</js>",
      "chapterName": "text",
      "chapterUrl": "href",
      "updateTime": "更新时间：{{@@title##更新，共##·章节字数：}}"
    },
    "searchUrl": "modules/article/search.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁#1",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.biqusa.com/#♤",
    "bookUrlPattern": "https://www.biqusa.com/\\d+_\\d+/",
    "customButton": false,
    "customOrder": 61,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/xuanhuanxiaoshuo/1_{{page}}.html\n修真小说::/xiuzhenxiaoshuo/2_{{page}}.html\n都市小说::/dushixiaoshuo/3_{{page}}.html\n穿越小说::/chuanyuexiaoshuo/4_{{page}}.html\n网游小说::/wangyouxiaoshuo/5_{{page}}.html\n科幻小说::/kehuanxiaoshuo/6_{{page}}.html\n其它小说::/qitaxiaoshuo/7_{{page}}.html",
    "lastUpdateTime": 1787022081820,
    "respondTime": 2759,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@a@text",
      "coverUrl": "id.fmimg@img@src",
      "intro": "id.intro@text",
      "kind": "id.info@tag.p.2@text##最后更新：",
      "lastChapter": "id.info@tag.p.3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.bookdetail@id.info@h1@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节"
    },
    "ruleContent": {
      "content": "id.content@textNodes##本小说.*无广告免费阅读。|：。："
    },
    "ruleExplore": {
      "author": "class.s4@a@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@tag.a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.biqusa.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "class.s5@text",
      "lastChapter": "class.s3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.s2@a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节"
    },
    "ruleSearch": {
      "author": "class.s4@a@text",
      "bookList": "class.novelslist2@ul@li",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.biqusa.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "class.s6@text",
      "lastChapter": "class.s3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.s2@a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节"
    },
    "ruleToc": {
      "chapterList": "//*[@id=\"list\"]//dt[2]/following-sibling::dd/a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://www.biqusa.com/search.html?name={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "鬼吹灯吧",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.gdbzkz.com/",
    "customButton": false,
    "customOrder": 62,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/fenlei/1/{{page}}.html\n仙侠小说::/fenlei/2/{{page}}.html\n都市小说::/fenlei/3/{{page}}.html\n军史小说::/fenlei/4/{{page}}.html\n网游小说::/fenlei/5/{{page}}.html\n科幻小说::/fenlei/6/{{page}}.html\n恐怖小说::/fenlei/7/{{page}}.html",
    "lastUpdateTime": 1782365417759,
    "respondTime": 2659,
    "ruleBookInfo": {
      "author": "class.small@tag.span.0@text##作 者：",
      "coverUrl": "class.cover@img@src",
      "intro": "class.intro@textNodes##作者.*|无弹窗.*",
      "kind": "[property=og:novel:update_time]@content&&\n[property=og:novel:category]@content&&\n[property=og:novel:status]@content ",
      "lastChapter": "class.small@tag.span.5@a@text##百度搜索.*",
      "name": "class.info@h2@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说",
      "wordCount": "class.info@class.small@tag.span.3@text##字数："
    },
    "ruleContent": {
      "content": "id.content@html##http.*html|天才一秒记住.*org|请记住本书首发域.*org"
    },
    "ruleExplore": {
      "author": "class.s4@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "kind": "class.s5@text",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleSearch": {
      "author": "class.author@text##作者：",
      "bookList": "class.bookbox@class.p10",
      "bookUrl": "class.bookname@tag.a@href",
      "coverUrl": "class.bookimg@img@src",
      "intro": "class.bookinfo@p@text",
      "kind": "class.cat@text##分类：",
      "lastChapter": "class.update@tag.a@text##百度搜索.*",
      "name": "class.bookname@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleToc": {
      "chapterList": "class.listmain@dd!0:1:2:3:4:5:6:7:8:9:10:11",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.gdbzkz.com/s.php?ie=utf-8&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "️玄幻阁子#书源.com",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.xuanyge.info#",
    "customButton": false,
    "customOrder": 63,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvar sort=[];\nvar push=(title,url,size)=>sort.push({\n  \t\"title\": title,\n  \t\"url\": url,\n  \t\"style\": {\n   \"layout_flexGrow\": 1,\n   \"layout_flexBasisPercent\": size\n   }\n });\n\nvar url=source.key;\nvar fl=url+\"/sort.html\";\nvar ph=url+\"/top.html\";\nvar qb=url+\"/full-1/\";\nvar html=java.ajax(fl);\nvar src=java.ajax(ph);\nvar qbl=java.ajax(qb);\n\nif(html&&src&&qbl){\na=org.jsoup.Jsoup.parse(html).select(\".content li a\");\nb=org.jsoup.Jsoup.parse(src).select(\".content li a\");\nc=org.jsoup.Jsoup.parse(qbl).select(\".content li a\");\npush(\"🌹分类🌹\",null,1)\n    for(i in a){\n        title=a[i].text()\n        url=a[i].attr(\"href\")\n        size=0.25;\n  url=String(url).replace(\"1/\",\"{{page}}/\").replace(\"1.html\",\"{{page}}.html\")\n        push(title,url,size)\n    };\n push(\"🌹排行🌹\",null,1)\n    for(i in b){\n        title=b[i].text()\n        url=b[i].attr(\"href\")\n  url=String(url).replace(\"1/\",\"{{page}}/\").replace(\"1.html\",\"{{page}}.html\")\n        size=0.25;\n        push(title,url,size)\n    }\npush(\"🌹全本🌹\",\"/full-{{page}}/\",1)\n      \n}else{\n  java.toast(\"发现列表获取失败！\")\n}\n\nJSON.stringify(sort)\n",
    "lastUpdateTime": 1734982022406,
    "respondTime": 9689,
    "ruleBookInfo": {
      "author": ".block_txt2@a.2@text",
      "downloadUrls": "text.点击下载@href",
      "intro": ".intro_info@text",
      "kind": ".block_txt2@p.3:4:5@text",
      "lastChapter": ".block_txt2@a.-1@text",
      "name": ".block_txt2@h2@text",
      "tocUrl": "text.查看目录@href",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "#nr1@textNodes",
      "nextContentUrl": "text.下 页@href||text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "//*[not(@class='blue')]/text()##\\[.*\\]|\\/",
      "bookList": ".line",
      "bookUrl": ".blue@href",
      "checkKeyWord": "",
      "coverUrl": "",
      "intro": "",
      "kind": "##\\[(.*)\\]##$1##",
      "name": ".blue@text"
    },
    "ruleToc": {
      "chapterList": ".chapter li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "isPay": "",
      "nextTocUrl": "@js:if(result.match(/\\/(\\d+)页/)){\nvar n=result.match(/\\/(\\d+)页/)[1];\nbaseUrl=baseUrl.replace(/(.+)\\//,'$1');\nvar list=[];\nfor(var i=2;i<=n;i++){list.push(baseUrl+\"_\"+i+\"/\");}\nlist\n}"
    },
    "searchUrl": "/modules/article/waps.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "搜索不到时可以尝试以下格式搜索（注意关闭精确搜索）\n##完整书名",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎉 晋江百合",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.jjwxc.net/channel",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 64,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\n//一行个数\nvar nums = 4 ;\n//分隔符\nvar separator = '::'\n\n//标题::链接::一行个数::分类\n\nall=[\"今日限免::https://app-cdn.jjwxc.net/bookstore/getFullPage?channel=novelfree\",\"我的收藏::http://app.jjwxc.org:80/androidapi/incrementFavorite?versionCode=185&token={{cookie.getKey('http://m.jjwxc.net','sid')}}&backupTime=&order=1\",\"点击签到::https://m.jjwxc.net/my/signIn,{'headers':'cookie':'sid={{cookie.getKey(\\\"http://m.jjwxc.net\\\",\\\"sid\\\")}}'}\",\"百合搜索::https://app.jjwxc.org/search/getSearchForKeyWords?versionCode=226&offset={{(page-1)*20}}&limit=20&bq=0&removetags=0&fw=0&yc=0&xx=3&sd=0&lx=0&fg=0&mainview=0&fbsj=0&searchkeyWords={{String(source.getVariable()).match(/^搜索(.*)/)[1]}}&isfinish=2&token={{cookie.getKey('http://m.jjwxc.net','sid')}}&sortType=0\",\"🌸     百合全部    🌸::https://app-cdn.jjwxc.net/bookstore/getFullPage?channel=bhxs&version=3::1\",\"频道金榜::229\",\"重来一世::2222000013\",\"幻想未来::2222000023\",\"架空历史::2222000015\",\"都市情缘::2222000024\",\"穿越时空::2222000016\",\"天赐良缘::2222000025\",\"时尚娱乐::2222000026\",\"奇幻异闻::2222000014\",\"系统快穿::2280000168\",\"宫廷侯爵::2280000164\",\"业界精英::2280000166\",\"情有独钟::2280000170\",\"运气淘文::2240000009\",\"勤奋更新::2226000013\",\"月度排行::2222000004\",\"季度排行::2222000005\",\"年度排行::2222000006\",\" VIP新文 ::2222000002\",\"新晋作者::2222000003\",\"🌸    百合完结    🌸::https://android.jjwxc.com/search/getSearchForKeyWords?versionCode=221&offset={{(page-1)*20}}&limit=20&bq=0&removetags=0&fw=0&yc=0&xx=3&sd=0&lx=0&fg=0&mainview=0&fbsj=0&isfinish=2&token={{cookie.getKey('https://m.jjwxc.net','sid')}}&sortType=2::1\",\"重来一世::2222000031\",\"幻想未来::2222000039\",\"架空历史::2222000033\",\"都市情缘::2222000040\",\"穿越时空::2222000034\",\"天赐良缘::2222000041\",\"时尚娱乐::2222000042\",\"奇幻异闻::2222000032\",\"系统快穿::2280000169\",\"宫廷侯爵::2280000165\",\"业界精英::2280000167\",\"情有独钟::2280000171\",\"🌸    百合连载    🌸::::1\",\"重来一世::2222000013\",\"幻想未来::2222000023\",\"架空历史::2222000015\",\"都市情缘::2222000024\",\"穿越时空::2222000016\",\"天赐良缘::2222000025\",\"时尚娱乐::2222000026\",\"奇幻异闻::2222000014\",\"系统快穿::2280000168\",\"宫廷侯爵::2280000164\",\"业界精英::2280000166\",\"情有独钟::2280000170\",\"-------- 标签[百合] --------::::1\",\"快穿::125::::bq\",\"穿书::134::::bq\",\"甜文::124::::bq\",\"重生::75::::bq\",\"爽文::137::::bq\",\"系统::122::::bq\",\"强强::19::::bq\",\"星际::135::::bq\",\"生子::20::::bq\",\"校园::185::::bq\",\"末世::81::::bq\",\"女配::96::::bq\",\"美食::99::::bq\",\"异能::72::::bq\",\"玄学::206::::bq\",\"打脸::138::::bq\",\"清穿::18::::bq\",\"女强::82::::bq\",\"直播::142::::bq\",\"年下::21::::bq\",\"武侠::11::::bq\",\"逆袭::184::::bq\",\"宫斗::74::::bq\",\"日韩::86::::bq\",\"婚恋::78::::bq\",\"竞技::70::::bq\",\"科举::174::::bq\",\"萌宠::205::::bq\",\"恐怖::29::::bq\",\"机甲::97::::bq\",\"科幻::28::::bq\",\"洪荒::67::::bq\",\"血族::69::::bq\",\"宅斗::73::::bq\",\"网红::141::::bq\",\"成长::183::::bq\",\"职场::98::::bq\",\"经商::180::::bq\",\"网配::84::::bq\",\"美娱::140::::bq\",\"商战::123::::bq\",\"传奇::89::::bq\",\"聊斋::188::::bq\",\"婆媳::80::::bq\",\"爱情::1::::lx\",\"武侠::2::::lx\",\"奇幻::3::::lx\",\"仙侠::4::::lx\",\"游戏::5::::lx\",\"传奇::6::::lx\",\"科幻::7::::lx\",\"童话::8::::lx\",\"惊悚::9::::lx\",\"悬疑::10::::lx\",\"剧情::16::::lx\",\"娱乐圈::64::::bq\",\"种田文::66::::bq\",\"年代文::173::::bq\",\"无限流::83::::bq\",\"少年漫::90::::bq\",\"古穿今::65::::bq\",\"升级流::139::::bq\",\"少女漫::14::::bq\",\"原著向::93::::bq\",\"姐弟恋::186::::bq\",\"大冒险::198::::bq\",\"轻小说::17::::lx\",\"穿越时空::60::::bq\",\"仙侠修真::68::::bq\",\"豪门世家::33::::bq\",\"随身空间::56::::bq\",\"情有独钟::39::::bq\",\"灵异神怪::26::::bq\",\"破镜重圆::47::::bq\",\"英美衍生::17::::bq\",\"虐恋情深::42::::bq\",\"青梅竹马::62::::bq\",\"超级英雄::132::::bq\",\"宫廷侯爵::32::::bq\",\"异世大陆::57::::bq\",\"悬疑推理::128::::bq\",\"天作之合::52::::bq\",\"天之骄子::54::::bq\",\"游戏网游::92::::bq\",\"都市情缘::30::::bq\",\"性别转换::24::::bq\",\"现代架空::126::::bq\",\"未来架空::127::::bq\",\"欢喜冤家::41::::bq\",\"前世今生::49::::bq\",\"幻想空间::25::::bq\",\"复仇虐渣::145::::bq\",\"东方玄幻::144::::bq\",\"朝堂之上::178::::bq\",\"奇幻魔幻::27::::bq\",\"励志人生::121::::bq\",\"民国旧影::61::::bq\",\"布衣生活::38::::bq\",\"业界精英::101::::bq\",\"历史衍生::91::::bq\",\"女扮男装::136::::bq\",\"市井生活::175::::bq\",\"古代幻想::189::::bq\",\"西方罗曼::59::::bq\",\"平步青云::55::::bq\",\"相爱相杀::103::::bq\",\"因缘邂逅::45::::bq\",\"灵魂转换::23::::bq\",\"魔法幻情::191::::bq\",\"西方名著::16::::bq\",\"江湖恩怨::35::::bq\",\"异国奇缘::37::::bq\",\"花季雨季::31::::bq\",\"制服情缘::85::::bq\",\"都市异闻::181::::bq\",\"古典名著::130::::bq\",\"近水楼台::46::::bq\",\"亡灵异族::192::::bq\",\"乔装改扮::51::::bq\",\"小门小户::177::::bq\",\"时代奇缘::22::::bq\",\"史诗奇幻::199::::bq\",\"阴差阳错::53::::bq\",\"恋爱合约::48::::bq\",\"异闻传说::196::::bq\",\"边缘恋歌::44::::bq\",\"三教九流::36::::bq\",\"骑士与剑::63::::bq\",\"七年之痒::79::::bq\",\"授权衍生::148::::bq\",\"异想天开::190::::bq\",\"乡村爱情::58::::bq\",\"爱情战争::50::::bq\",\"时尚流行::182::::bq\",\"时代新风::210::::bq\",\"古典衍生::20::::lx\",\"东方衍生::18::::lx\",\"西方衍生::19::::lx\",\"其他衍生::21::::lx\"];\n\n\n\n//@天天gg@酷安 下面不要动\nfunction parse(data){\n\tlet args=data.split(separator);\n\tlet title = args[0],url=args[1],num=nums;\n\t\n\t//链接生成\n\t let u=/^\\d+/.test(url)?\"http://app-cdn.jjwxc.net/bookstore/getFullPage?channelBody=%7B%\"+url+\"%22%3A%7B%22offset%22%3A%22{{(page-1)*25}}%22%2C%22limit%22%3A%2225%22%7D%7D&versionCode=148\":url;\n try {num = args[2] }catch(e){}\n try {tag = args[3];\n u=tag==\"bq\"?'https://android.jjwxc.com/search/getSearchForKeyWords?versionCode=221&offset={{(page-1)*20}}&limit=20&bq='+url+'&removetags=0&fw=0&yc=0&xx=3&sd=0&lx=0&fg=0&mainview=0&fbsj=0&collectionTypes=ors&isfinish=0&sortType=0&token={\\{cookie.getKey(\"https://m.jjwxc.net\",\"sid\")}\\}':u;\n u=tag==\"lx\"?'https://android.jjwxc.com/search/getSearchForKeyWords?versionCode=221&offset={{(page-1)*20}}&limit=20&bq=0&removetags=0&fw=0&yc=0&xx=3&sd=0&lx='+url+'&fg=0&mainview=0&fbsj=0&collectionTypes=ors&isfinish=0&sortType=0&token={\\{cookie.getKey(\"https://m.jjwxc.net\",\"sid\")}}':u\n }catch(e){}\n\treturn [title, u, num]\n\t}\n\nfunction FlexBox(title, url, num){\n\t\t let obj={};\n\t\t obj.style={},obj.title=title,obj.url=url?url:'',obj.style['layout_flexGrow']=1;\n\t//数值设定\n\tlet data={1:1,2:0.4,3:0.25,4:0.2,5:0.15,7:0.1,10:0.05};\nobj.style['layout_flexBasisPercent']=data[num]\n\t\treturn obj\n\t\t}\nresult=JSON.stringify(all.map(data=>{\n\tlet args=parse(data);\n\treturn FlexBox.apply(null, args)\n\t}))\n</js>",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 8.0.0; zh-cn; MIX 2 Build/OPR1.170623.027) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1\"\n}",
    "lastUpdateTime": 1686353230516,
    "loginCheckJs": "",
    "loginUrl": "http://m.jjwxc.net",
    "respondTime": 7757,
    "ruleBookInfo": {
      "author": "$.authorName",
      "canReName": "1",
      "coverUrl": "$.novelCover",
      "init": "",
      "intro": "<js>\n//请假条\ntry{\na=JSON.parse(java.ajax('http://app.jjwxc.org/androidapi/getnovelOtherInfo?novelId='+baseUrl.match(/(\\d+)/)[1]+'&type=novelbasicinfo&versionCode=163'));\n\njava.put(\"pv\",a.novelreview)\n\n$=a.novelLeave;\nn='\\n';\nleave=$.leaveContent?'————————•————————'+n+'​'+n+$.leaveDateBack+n+'​'+'​'+'      '+$.leaveContent+n+$.leaveDate.replace(/请假时间：/,'⌚️')+n+$.leaveIntro:'';\njava.put('leave',leave);\njava.put('intro',JSON.parse(result).novelIntro.replace(/\\#/g,'＃'));\nresult}catch(err){\njava.log(err);\njava.put('leave',\"\");\njava.put('intro',\"\");\n}\n</js>\n&nbsp;&nbsp;📖{{$.novelIntroShort##。$}}📖{{'\\n&lrm;'}}<br>\n🏆{{$.ranking}}    🍼{{$.nutrition_novel}}    📝{{$.comment_count}}    🔖{{$.novelStyle}}\n◉ 标签：{{$.novelTags##,|\\s##🏷}}<br>\n◉ {{$.protagonist##,|，|；|;##、}}<br>\n◉ {{$.costar##,|，|；|;##、}}<br>\n◉ {{$.other##,|，|；|;##、}}<br>\n◉ 视角：{{$.mainview}}<br>\n◉ 评分：{{java.get(\"pv\")}}<br>\n◉ 收藏：{{$.novelbefavoritedcount}}<br>\n{{String(java.get('intro')).replace(/立意:/,'◎◎ 立意：')}}<br>{{java.get('leave')}}<br>\n{{'\\n'+'​'}}\n\n<js>\nresult=String(result);\nli=result.match(/◎ 立意.*/)?'&lrm;\\n'+result.match(/(◎ 立意.*?<br>)/)[1]:'';\nString(result).replace(/📖📖|📖''📖/,'').replace(/(◉ 收藏.*?<br>)/,'$1\\n'+li+'&lrm;\\n'+'————————•————————\\n').replace(/◎◎ 立意.*<br>/,'').replace(/(?:◉ 标签：|◉ 主角：|◉ 配角：|◉ 其它：|◉ 视角：|◉ 评分：|&lrm;\\n◎ 立意：)<br>/g,'')</js>",
      "kind": "{{step=java.getString('$.novelStep')=='2'?'已完结':'连载中';}},{{$.novelClass&&$.novelTags}}##-##,",
      "lastChapter": "<js>\ntry{last=JSON.parse(java.ajax('http://android.jjwxc.net/androidapi/chapterList?novelId='+baseUrl.match(/(\\d+)/)[1])).chapterlist;\n$=last[last.length-1];\nvip=$.isvip?'🔒':'';\nchapterid=$.chapterid;\nchaptername=$.chaptername;\ndate=$.chapterdate;\nvip+chapterid+'.'+chaptername+'•'+date}\ncatch(err){\nresult=\"请刷新或暂无目录\"\n}\n</js>",
      "name": "$.novelName",
      "tocUrl": "http://app-cdn.jjwxc.net/androidapi/chapterList?novelId={{baseUrl.match(/novelId=(\\d+)/)[1]}}&more=0&whole=1",
      "wordCount": "$.novelSize##,"
    },
    "ruleContent": {
      "content": "<js>\nif(baseUrl.match(/jjwxc/)){\nintro=java.get(\"intro1\");\n\nintro=intro!=\"\"?\"◎\"+intro+\"◎<br>\":\"\";\ncontent=java.getElement(\"$.content\");\n\nsaybody=java.getString(\"$.sayBody\");\nsay=saybody!=\"\"?\"\\n作者有话说：\\n\"+saybody:\"\";\nif(baseUrl.match(/token/)){\n\tvipc=/^DcAWGQtI44o=$/.test(content)?JSON.parse(src).message:java.createSymmetricCrypto(\"DES/CBC/PKCS5Padding\", String(\"KK!%G3JdCHJxpAF3%Vg9pN\"), String(\"1ae2c94b\")).decryptStr(content)\n\t\nresult=intro+String(vipc+say);\n}else{result=intro+content+say}\n\n}else{result=\"&lrm;\"}\n\n\n//评论开启\nbbb = book.getVariable(\"custom\")\nsss=source.getVariable()\nif(/评论/.test(bbb) || /评论/.test(sss)){\n\tjava.log(sss)\nlet commentNum =/评论/.test(bbb)?bbb.match(/评论(\\d+)/)[1]:sss.match(/评论(\\d+)/)[1];\ncommentUrl = baseUrl.replace(/androidapi/,'comment').replace(/chapterContent/,'getCommentList')+\"&limit=\"+commentNum+\"&offset=0\";\n\ncomment = JSON.parse(java.ajax(commentUrl));\ncommentList =comment.commentList || comment.data.commentList;\ncommentb = \"\";\nfor(i=0;i<commentList.length;i++){\n\tlet b = commentList[i];\n\tlet author = b.commentAuthor;\n\tlet body = b.commentBody;\n\tlet time = b.commentDate;\n\tcommentb+=\"▪\"+author+\" ——\"+time+\"▪\\n\"+body+\"\\n\";\n\t}\nresult = result + \"\\n&lrm;\\n最新评论：\\n\" + commentb\n}\nresult\n</js>\n##为营造更好的评论环境，近期网站要求发评须进行实名认证，未实名用户评论暂时仅在对应作者后台及发评用户后台可见.*|获取正文失败[\\s\\S]+|◎\\s+?◎",
      "imageStyle": "TEXT",
      "nextContentUrl": "",
      "payAction": "",
      "replaceRegex": "@js:\n//去除章节简介与正文重复\nif(/^◎/.test(result) ){\nchapter = result.match(/◎([\\s\\S]+?)…*◎/)[1].replace(/\\s/g,'');\nchapter2=result.match(/◎[\\s\\S]+?◎([\\s\\S]+)/)[1].replace(/\\s/g,'');\n\n//前十个字相同就删除\nnum = 10\nif(chapter.substring(0,num)==chapter2.substring(0,num)){\n\tresult = result.replace(/◎[\\s\\S]+?◎/,'')\n\t}else{result}\n}else{result}",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "$.authorName||$.authorname",
      "bookList": "@JSon:$..[?(@.novelName)]&&$..[?(@.novelname)]&&$.massage\n<js>\nif(result){\nfunction remove(a,b){\nlet delIndexList = a; // 要删除的序列\n if (delIndexList.length !== 0) { \nfor (let i = delIndexList.length - 1; i >= 0; i--) { b.splice(delIndexList[i], 1) } \nreturn b\n}\n}\n\nif(baseUrl=='https://app-cdn.jjwxc.net/bookstore/getFullPage?channel=bhxs&version=3'||baseUrl.match(/novelfree/)){\nlist=JSON.parse(src);\nfor(i in list){\nchannelName=list[i].channelName;\nblist=list[i].data;\nif(blist!=\"undefined\"){\nfor(j in blist){\nblist[j].channelName=channelName\n}}else{blist.channelName=channelName}\n\n}\nif(!baseUrl.match(/novelfree/)){\nlist=remove([0, 6,11,12,13],list)\n}else{\nlist=remove([1],list)\n}\nresult=JSON.stringify(list);}\nelse if(baseUrl.match(/signIn|getSearchForKeyWords/)){\nresult=\"{signIn:[\"+src+\"]}\"\n}\nelse{result=result}\n}else{result=\"\"}\n</js>\n$..[?(@.novelName)]&&$..[?(@.novelname)]&&$.signIn[*]",
      "bookUrl": "http://app-cdn.jjwxc.net/androidapi/novelbasicinfo?novelId={{$.novelid||$.novelId}}@put:{id:$.novelid||$.novelId}",
      "coverUrl": "@JSon:$.cover||$.novelCover||$.ebookurl",
      "intro": "$.novelIntroShort||$.novelintroshort\n<js>\nfree=\"{{$.freeDate}}\";\nif(free!=\"\"){\nresult=\"限免日期：🗓\"+free+\"\\n\"+result\n}else{\nresult=result\n}\n</js>",
      "kind": "@JSon:$.channelName&&$.tags&&$.novelSizeformat##\\s+##,",
      "lastChapter": "第{{$.maxChapterId}}章##第章",
      "name": "$.novelName||$.novelname||$.message",
      "wordCount": "$.novelStep||$.novelstep\n@js:result==2?'已完结':'连载中';"
    },
    "ruleSearch": {
      "author": "author",
      "bookList": "class.cytable@tag.tr[1:20]@tag.a[1]||$.items[:20]\n<js>\nlist=result.toArray();\njson=[];\nfor(i in list){\nid=String(list[i]).match(/href/)?String(list[i].attr(\"href\")).match(/(\\d+)/)[1]:list[i].novelid;\nurl=\"http://www.jjwxc.net/onebook.php?novelid=\"+id;\nhtml=String(java.ajax(url));\njava.setContent(html);\nJ=org.jsoup.Jsoup.parse(html);\n\ndes=String(J.select(\"span[style='color:#F98C4D']\").text()).replace(/立意：/,'◎ ').replace(/一句话简介：/,'◎ ')+\"◎\"+java.getElement(\"id.novelintro\").text();\ntitle=J.select('h1[itemprop=\"name\"]').text();\nauthor=J.select('span[itemprop=\"author\"]').text();\ncover=J.select(\".noveldefaultimage\").attr(\"src\");\ncat=String(J.select('a[style=\"text-decoration:none;color: red;\"]').text()).replace(/\\s/g,',');\nstatus=J.select('span[itemprop=\"updataStatus\"]').text();\nsize=String(J.select('span[itemprop=\"wordCount\"]').text()).replace(/字/,'');\nn=String(java.getElement('@@id.oneboolt@tag.tr.-2@span').text()).replace(/\\n/,'•').replace(/\\*最新更新/,'').replace(/(.*?)\\[VIP\\]/,'🔒$1');\nnum=java.getElement('@@id.oneboolt@tag.tr.-2@tag.td.0').text();\ngenre=J.select('[itemprop=\"genre\"]').text().split('-')[1];\njson.push({\ntitle:title,\nauthor:author,\ncat:status+\",\"+cat+','+genre,\nsize:size,\nurl:\"http://app-cdn.jjwxc.net/androidapi/novelbasicinfo?novelId=\"+id,\ndes:des,\nnew:String(num+\"、\"+n).replace(/(\\d+、)🔒/,'🔒$1'),\ncover:cover\n})\n}\njson\n</js>",
      "bookUrl": "url",
      "checkKeyWord": "",
      "coverUrl": "cover",
      "intro": "des",
      "kind": "cat",
      "lastChapter": "new",
      "name": "title",
      "wordCount": "size"
    },
    "ruleToc": {
      "chapterList": "$.chapterlist\n<js>\nbook.canUpdate;\nresult = result==\"[]\"?JSON.stringify([{\"chaptername\":\"暂无目录\",\"chapterid\":\"\",\"islock\":\"0\"}]):result;\n</js>\n$.[*]",
      "chapterName": "<js>\n$=result;\ntitle=$.chaptername;\ntitle=String(title).replace(/^\\s+/,'');\nintro=$.chapterintro;\nvip=$.isvip!='0';\nlock=$.islock!='0';\ntype=$.chaptertype=='1'?true:false;\nnum=!type?$.chapterid+\"  ☪ \":'';\n\n//下面被注释的代码是已经有章节数的前面就不加序号了\nbbb = book.getVariable(\"custom\");\nsss = source.getVariable();\nif(/去章节序号/.test(bbb) || /去章节序号/.test(sss)){\nnum=''\n}else{num=num}\n\ntitle=type?'📖 '+title+' 📖':title;\nif( (/目录简介/.test(bbb) || /目录简介/.test(sss))&&!/📖/.test(title)){\n\ttitle = title + \" ❖ \"+intro\n\t}else{\n\t\ttitle = title\n\t\tjava.put(\"intro1\",intro);\n\t\t}\nv=vip&&!type?' ◇':'';\nl=lock?'[此章节已锁]':'';\nresult=num+title+l+v;\n</js>",
      "chapterUrl": "@js:\n$=result;\ncookie=cookie.getKey(\"http://m.jjwxc.net\",\"sid\");\nchapterid=$.chapterid;\nvip=$.isvip!='0';\n\ntype=$.chaptertype=='1';\n\nif( !type){\nif(!vip){\nresult='https://app.jjwxc.net/androidapi/chapterContent?novelId='+baseUrl.match(/novelId=(\\d+)/)[1]+'&chapterId='+chapterid\n}else{result=\"https://app.jjwxc.net/androidapi/chapterContent?novelId=\"+baseUrl.match(/novelId=(\\d+)/)[1]+'&versionCode=191&token='+cookie+'&chapterId='+chapterid}\n}else{ result=\"\"}",
      "isPay": "",
      "isVip": "",
      "isVolume": "<js>\n\"{{$.chaptertype}}\"=='1'?true:false;\n</js>",
      "updateTime": "{{$.chaptersize}}字•{{$.chapterdate}}•{{$.chapterintro##^\\s*}}##^•|0000-00-00.*|^0字•|•$"
    },
    "searchUrl": "@js:\nif(/^##/.test(key)){\n\tresult = \"https://android.jjwxc.net/androidapi/search?versionCode=191&keyword={{key}}&type=1&page={{page}}&searchType=8&sortMode=DESC\"\n\t}else{\n\t\tresult = 'http://www.jjwxc.net/bookbase.php?searchkeywords={{key}}&page={{page}},{\"charset\": \"gbk\"}'\n\t\t}",
    "variableComment": "1、书籍变量（当前书）\n填写 [去章节序号] —— 去除章节序号\n填写 [目录简介] —— 章节简介放到目录列表，正文不出现\n填写 [评论+评论数量]——如 评论50  则可以显示50条评论，数量必填\n\n2、源变量（所有书）\n其余同书籍变量\n填写[搜索+书名] —— 必须在第一行，搜索百合书籍，在发现里点击[百合搜索]\n\n更改过后都要重新刷新",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "❤️斗破苍穹cc",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.xdoupocangqiong.org",
    "bookUrlPattern": "http://m.xdoupocangqiong.org/\\d+/",
    "customButton": false,
    "customOrder": 66,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::/sort/xuanhuan/{{page}}.html\n奇幻::/sort/qihuan/{{page}}.html\n武侠::/sort/wuxia/{{page}}.html\n仙侠::/sort/xianxia/{{page}}.html\n都市::/sort/dushi/{{page}}.html\n历史::/sort/lishi/{{page}}.html\n军事::/sort/junshi/{{page}}.html\n游戏::/sort/youxi/{{page}}.html\n竞技::/sort/jingji/{{page}}.html\n科幻::/sort/kehuan/{{page}}.html\n灵异::/sort/lingyi/{{page}}.html\n同人::/sort/tongren/{{page}}.html\n女生::/sort/nvsheng/{{page}}.html\n其他::/sort/qita/{{page}}.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1779721725795,
    "respondTime": 18813,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "init": "@put:{n:\"[property$=book_name]@content\",\na:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property$=latest_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"[property$=image]@content\"}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}",
      "tocUrl": "{{$.}}list/"
    },
    "ruleContent": {
      "content": "#articlecon>p@textNodes",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##.*\\(第\\d+.*页\\)|\\s*.*本章未完.*\\s*"
    },
    "ruleExplore": {
      "author": "a.2@text",
      "bookList": ".pt-card li",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "kind": "a.-1@text",
      "name": "a.1@text"
    },
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".pt-card li",
      "bookUrl": "a.1@href",
      "checkKeyWord": "斗破苍穹",
      "coverUrl": "img@src",
      "kind": ".pt-info@text",
      "lastChapter": "a.-1@text",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": ".pt-dir li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": ".pt-dir-sel a@href"
    },
    "searchUrl": "http://m.xdoupocangqiong.org/search.html?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "茶杯狐狸",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.cupfox7.com/",
    "customButton": false,
    "customOrder": 67,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "国漫::vodshow/guochandongman/page/{{page}}.html\n日韩::vodshow/rihandongman/page/{{page}}.html\n欧美::vodshow/oumeidongman/page/{{page}}.html",
    "lastUpdateTime": 1772086435308,
    "respondTime": 7170,
    "ruleBookInfo": {
      "intro": "class.stui-content__detail@p@text##详情$##"
    },
    "ruleContent": {
      "content": "@js:\nvar pUrl = result.match(/\"url_next\":\"([^\"]*)\"/)\npUrl = pUrl[1].replace(/\\\\/g, \"\");\nif (cache.get(book.name+title)){\n    try{\n        java.startBrowserAwait(pUrl, title);\n    }catch(err){\n       \"其实...1+1=2!\"\n    }\n}else{\n    cache.put(book.name+title,true, 31536000);\n}\n\"请刷新查看内容\";"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": "class.stui-vodlist[0]@tag.li",
      "bookUrl": "tag.a@href",
      "checkKeyWord": "魔王",
      "coverUrl": "tag.a@data-original",
      "kind": "tag.a@tag.span@text",
      "name": "tag.a@title"
    },
    "ruleToc": {
      "chapterList": "id.playlist1@tag.ul@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "vodsearch/{{key}}----------{{page}}---.html",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "顶点小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.dingdianxs.la/#pb1101",
    "bookUrlPattern": "http://www.dingdianxs.la/\\d+/\\d+/",
    "customButton": false,
    "customOrder": 68,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::http://m.dingdianxs.la/xuanhuan/\n修真小说::http://m.dingdianxs.la/xiuzhen/\n都市小说::http://m.dingdianxs.la/dushi/\n历史小说::http://m.dingdianxs.la/lishi/\n网游小说::http://m.dingdianxs.la/wangyou/\n科幻小说::http://m.dingdianxs.la/kehuan/\n竞技小说::http://m.dingdianxs.la/jingji/\n言情小说::http://m.dingdianxs.la/yanqing/\n其他小说::http://m.dingdianxs.la/qita/\n全本小说::http://m.dingdianxs.la/quanben/",
    "lastUpdateTime": 1734834328754,
    "loginUrl": "",
    "respondTime": 9236,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作 者：",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.intro@textNodes",
      "kind": "id.info@tag.p.2@text##更新时间：",
      "lastChapter": "id.info@tag.p.3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.info@tag.h1@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁"
    },
    "ruleContent": {
      "content": "id.content@textNodes"
    },
    "ruleExplore": {
      "author": "class.author@text",
      "bookList": "class.bookbox",
      "bookUrl": "h4@a@href@js:'http://www.dingdianxs.la'+result",
      "coverUrl": "img@src",
      "intro": "class.intro_line@text",
      "lastChapter": "class.update@a@text",
      "name": "h4@a@text"
    },
    "ruleSearch": {
      "author": "class.s4@text",
      "bookList": "class.novelslistss@tag.li",
      "bookUrl": "class.s2@tag.a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'http://www.dingdianxs.la/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "class.s1@text##.*\\[|\\]",
      "lastChapter": "class.s3@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.s2@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dl@dd",
      "chapterName": "tag.a.0@text",
      "chapterUrl": "tag.a.0@href"
    },
    "searchUrl": "http://www.dingdianxs.la/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.yetianlian.info#",
    "customButton": false,
    "customOrder": 69,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1716234635971,
    "respondTime": 1207,
    "ruleBookInfo": {
      "author": "span.1@text",
      "coverUrl": "img@src",
      "intro": "class.intro@text",
      "kind": "span.2@text",
      "lastChapter": "span.last.1@text",
      "name": "h2@text",
      "wordCount": "span.4@text"
    },
    "ruleContent": {
      "content": "div#content.showtxt@text",
      "nextContentUrl": "text.下一章@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.author@text",
      "bookList": "class.bookbox",
      "bookUrl": "a@href",
      "checkKeyWord": "我的",
      "coverUrl": "img@src",
      "kind": "class.cat@text",
      "lastChapter": "class.update@text",
      "name": "class.bookname@text"
    },
    "ruleToc": {
      "chapterList": "dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://www.yetianlian.info/s.php?ie=utf-8&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爪机书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://zjsw.org",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 71,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "新书榜::https://www.zjsw.org/goodnew/\n最新入库::https://www.zjsw.org/postdate/\n最近更新::https://www.zjsw.org/lastupdate/\n总点击榜::https://www.zjsw.org/allvisit/\n月点击榜::https://www.zjsw.org/monthvisit/\n周点击榜::https://www.zjsw.org/weekvisit/\n日点击榜::https://www.zjsw.org/dayvisit/\n总推荐榜::https://www.zjsw.org/allvote/\n月推荐榜::https://www.zjsw.org/monthvote/\n周推荐榜::https://www.zjsw.org/weekvote/\n日推荐榜::https://www.zjsw.org/dayvote/\n总字数榜::https://www.zjsw.org/size/",
    "header": "",
    "lastUpdateTime": 1733766666730,
    "loginUrl": "",
    "respondTime": 4953,
    "ruleBookInfo": {
      "author": "class.f20h@tag.em@text##作者：",
      "coverUrl": "class.pic@tag.img@src",
      "init": "",
      "intro": "",
      "kind": "",
      "lastChapter": "class.last@tag.a@text##最新章节：",
      "name": "class.f20h@text##作者：.*",
      "tocUrl": "class.now>a@href",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "id.content@html##喜欢{{book.name}}.*爪机书屋.*",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "class.title@tag.span@text",
      "bookList": "id.alist@id.alistbox",
      "bookUrl": "class.yuedu@tag.a@href",
      "coverUrl": "class.pic@tag.a@tag.img@src",
      "intro": "class.intro@text",
      "kind": "",
      "lastChapter": "class.sys@tag.li@tag.a@text",
      "name": "class.title@tag.h2@tag.a@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "class.title@tag.span@text",
      "bookList": "#alistbox",
      "bookUrl": "tag.a@href",
      "coverUrl": "tag.img@src",
      "intro": "class.intro@text",
      "kind": "",
      "lastChapter": "class.sys@tag.li.a@text##最新更新：",
      "name": "class.title@tag.a@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "class.link_14@tag.dl@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "https://www.zjsw.org/search.html,{\n\"method\": \"POST\",\n\"charset\":\"UTF-8\",\n\"body\":\"searchkey={{key}}\"\n}",
    "weight": 40
  },
  {
    "bookSourceComment": "by天天的鸟蛋蛋\n//2025/1/9",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "言情小说xs99",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.xs99.org",
    "customButton": false,
    "customOrder": 72,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1736357439700,
    "respondTime": 2137,
    "ruleBookInfo": {
      "author": "h1@a@text",
      "coverUrl": "img.3@src",
      "intro": "书籍信息：\n编号：@get:{bookid}\n出版社：{{@@tr:nth-child(1) > td:nth-child(2) > div@text}}\n小说系列：{{@@tr:nth-child(1) > td:nth-child(4)@text}}\n系列：{{@@tr:nth-child(2) > td:nth-child(2) > div@text}}\n男主角：{{@@tr:nth-child(2) > td:nth-child(4) > div@text}}\n女主角：{{@@tr:nth-child(3) > td:nth-child(4)@text}}\n其他人物：{{@@tr:nth-child(4) > td:nth-child(4)@text}}\n出版日期：{{@@table:nth-child(2) tr:nth-child(3) > td:nth-child(2)@text}}\n制作网站：{{@@table:nth-child(2) tr:nth-child(4) > td:nth-child(2)@text}}\n情节分类：{{@@table:nth-child(2) tr:nth-child(5) > td:nth-child(2)@text}}\n故事地点：{{@@tr:nth-child(5) > td:nth-child(4)@text}}\n时代背景：{{@@tr:nth-child(6) > td:nth-child(4)@text}}\n推荐指数：{{@@tr:nth-child(6) > td:nth-child(2) > img@src##.*?level(\\d+).*##$1}}\n简介：\n{{@@table:nth-child(8) tr:nth-child(3) > td:nth-child(2)@html}}",
      "kind": "",
      "lastChapter": "",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "#content@html"
    },
    "ruleSearch": {
      "author": "td:nth-child(3) > a@text",
      "bookList": ".nr6:nth-child(n+2)",
      "bookUrl": "td:nth-child(2) > a@href",
      "intro": "@put:{bookid:tag.td.0@text}\n《{{book.name}}》\n编号：@get:{bookid}\n作者：{{book.author}}\n分类：{{book.kind}}",
      "kind": "td:nth-child(4)@text&&td:nth-child(5)@text&&td:nth-child(6)@text##\\s",
      "name": "td:nth-child(2) > a@text"
    },
    "ruleToc": {
      "chapterList": "table:nth-child(1) tr:nth-child(1) tbody > tr > td > a",
      "chapterName": "text##page.*?(\\d+)##第$1页",
      "chapterUrl": "href<js>\nb=baseUrl\nbk=result\nurl=b+\"/\"+bk\nurl;\n</js>"
    },
    "searchUrl": "{{url=source.getKey();cookie.removeCookie(url)}}\n/search/index.php,{\n  \"body\": \"add%5Bkeyboard%5D={{key}}&add%5Bshow%5D=0&searchnow=%CB%D1%CB%F7&add%5Bsearchtype%5D=1&sear=1\",\n  \"charset\": \"GBK\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "文学资料",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wenxuebank.com#🎃",
    "customButton": false,
    "customOrder": 73,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:s=[];push=(t,u,x)=>s.push({title:t,url:u,style:{layout_flexGrow:1,layout_flexBasisPercent:x}});[[\"科幻小说\",\"26\"],[\"官场小说\",\"31\"],[\"盗墓小说\",\"32\"],[\"网络小说\",\"34\"],[\"武侠修真\",\"56\"],[\"古代言情\",\"15\"],[\"古典文学\",\"37\"],[\"自然人文\",\"45\"],[\"儿童文学\",\"52\"],[\"现代文学\",\"36\"],[\"经济管理\",\"46\"],[\"投资金融\",\"47\"],[\"世界名著\",\"41\"],[\"外国文学\",\"38\"],[\"四大名著\",\"42\"],[\"传记纪实\",\"39\"],[\"宫廷小说\",\"48\"],[\"古典诗词\",\"40\"],[\"架空历史\",\"53\"],[\"哲学小说\",\"44\"],[\"悬疑推理\",\"49\"],[\"幻想言情\",\"20\"],[\"穿越架空\",\"16\"],[\"青春校园\",\"18\"],[\"言情小说\",\"28\"],[\"历史军事\",\"58\"],[\"社会小说\",\"50\"],[\"青春文学\",\"51\"],[\"玄幻奇幻\",\"54\"],[\"都市言情\",\"57\"],[\"网游竞技\",\"60\"],[\"侦探推理\",\"59\"],[\"恐怖灵异\",\"61\"],[\"其他小说\",\"22\"],[\"社会文摘\",\"55\"],[\"现代言情\",\"14\"]].map(([s,r],i)=>push(s,`http://wenxuebank.com/book/category/${r}?page={{page}}`,.25));JSON.stringify(s);",
    "lastUpdateTime": 1787420318162,
    "respondTime": 5594,
    "ruleBookInfo": {
      "author": ".author@text##^\\w+：",
      "canReName": "true",
      "coverUrl": "img@src",
      "init": ".bookbox",
      "intro": ".intro_line2@text",
      "kind": ".booktags@text",
      "lastChapter": ".lastChapter@a@text",
      "name": "h4@text##.*?《(.*?)》.*##$1"
    },
    "ruleContent": {
      "content": "#nr1@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author@text##^\\w+：",
      "bookList": ".bookbox",
      "bookUrl": "a.0@href",
      "coverUrl": "img@data-src",
      "intro": ".intro_line@textNodes",
      "lastChapter": ".update@a@text",
      "name": "h4@text"
    },
    "ruleToc": {
      "chapterList": ".chaptertabletr h4",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "updateTime": "span@text@js:\"字\""
    },
    "searchUrl": "/book/searchbook?kw={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "豆瓣阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "https://read.douban.com#♤guaner",
    "customButton": false,
    "customOrder": 74,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{'title':'言情小说','url':'https://read.douban.com/kind/501?start={{(page-1)*20}}&sort=hot&promotion_only=False&min_price=None&max_price=None&works_type=1,{\\'headers\\':\\'{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"}\\'}','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'女性小说','url':'https://read.douban.com/kind/532?start={{(page-1)*20}}&sort=hot&promotion_only=False&min_price=None&max_price=None&works_type=1,{\\'headers\\':\\'{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"}\\'}','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'悬疑小说','url':'https://read.douban.com/kind/508?start={{(page-1)*20}}&sort=hot&promotion_only=False&min_price=None&max_price=None&works_type=1,{\\'headers\\':\\'{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"}\\'}','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'科幻小说','url':'https://read.douban.com/kind/505?start={{(page-1)*20}}&sort=hot&promotion_only=False&min_price=None&max_price=None&works_type=1,{\\'headers\\':\\'{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"}\\'}','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'幻想小说','url':'https://read.douban.com/kind/506?start={{(page-1)*20}}&sort=hot&promotion_only=False&min_price=None&max_price=None&works_type=1,{\\'headers\\':\\'{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"}\\'}','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'文艺小说','url':'https://read.douban.com/kind/503?start={{(page-1)*20}}&sort=hot&promotion_only=False&min_price=None&max_price=None&works_type=1,{\\'headers\\':\\'{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"}\\'}','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'历史小说','url':'https://read.douban.com/kind/510?start={{(page-1)*20}}&sort=hot&promotion_only=False&min_price=None&max_price=None&works_type=1,{\\'headers\\':\\'{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"}\\'}','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'非小说','url':'https://read.douban.com/kind/516?start={{(page-1)*20}}&sort=hot&promotion_only=False&min_price=None&max_price=None&works_type=1,{\\'headers\\':\\'{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"}\\'}','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'生活悬疑','url':'https://read.douban.com/j/tag/生活悬疑?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'都市犯罪','url':'https://read.douban.com/j/tag/都市犯罪?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'社会事件','url':'https://read.douban.com/j/tag/社会事件?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'私家侦探','url':'https://read.douban.com/j/tag/私家侦探?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'职业女性','url':'https://read.douban.com/j/tag/职业女性?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'单身女性','url':'https://read.douban.com/j/tag/单身女性?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'女性成长','url':'https://read.douban.com/j/tag/女性成长?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'家庭故事','url':'https://read.douban.com/j/tag/家庭故事?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'时空穿越','url':'https://read.douban.com/j/tag/时空穿越?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'都市奇幻','url':'https://read.douban.com/j/tag/都市奇幻?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'脑洞故事','url':'https://read.douban.com/j/tag/脑洞故事?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'近未来','url':'https://read.douban.com/j/tag/近未来?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'青春成长','url':'https://read.douban.com/j/tag/青春成长?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'都市冷暖','url':'https://read.douban.com/j/tag/都市冷暖?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'漂泊故事','url':'https://read.douban.com/j/tag/漂泊故事?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'时代记忆','url':'https://read.douban.com/j/tag/时代记忆?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'武侠小说','url':'https://read.douban.com/j/tag/武侠小说?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'历史纪实','url':'https://read.douban.com/j/tag/历史纪实?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'历史言情','url':'https://read.douban.com/j/tag/历史言情?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}},\n{'title':'历史传奇','url':'https://read.douban.com/j/tag/历史传奇?start={{(page-1)*10}}&limit={{(page)*10}}&sort=top','style':{layout_flexGrow: 1,layout_flexBasisPercent:0.2}}]",
    "header": "",
    "lastUpdateTime": 1732129572819,
    "loginUrl": "https://read.douban.com/app/",
    "respondTime": 6369,
    "ruleBookInfo": {
      "kind": "@js:if(baseUrl.match(/ebook/)){result=\"哭唧唧(╥﹏╥)正文不会搞，这个看不了\"}",
      "lastChapter": "class.current-price-count@text##^##全本定价:",
      "tocUrl": "@js:id=baseUrl.match(/(\\d+)/)[1];\njava.put(\"id\",id);\nif(baseUrl.match(/ebook/)){result=baseUrl}else{\nresult=\"https://read.douban.com/j/column_v2/\"+id+\"/chapters?start=0&limit=10000&latestFirst=0\";}"
    },
    "ruleContent": {
      "content": "class.article@html"
    },
    "ruleExplore": {
      "author": "class.author@text||$.author",
      "bookList": "class.item||$.[?(@.alias_id)]",
      "bookUrl": "href||https://read.douban.com/column/{$.alias_id}/",
      "coverUrl": "img@src||$.cover",
      "intro": "class.intro@text||$.abstract",
      "kind": "{{@@class.tag@text}},{{@@class.score@text}},{{@@class.amount}},{{@@class.price@text}},{{$.kind&&$.category&&$.tags[*].tag&&$.kinds[*].shortName&&$.highlightTags[*].name}}##(\\d+\\.\\d{2})##$1元",
      "name": "class.title@html||$.title##<span class=\"tag\">.*?</span>|<.*?>"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "<js>\nlist=JSON.parse(result);\nJson=[]\nfor(i in list){\nif(list[i].title.indexOf(java.get('key'))>-1){\nJson.push(list[i])\n}\n}\nresult=JSON.stringify(Json)\n</js>\n$.[*]",
      "bookUrl": "$.reader_uri||https://read.douban.com/ebook/{$.id}/",
      "coverUrl": "$.cover",
      "intro": "$.abstract",
      "kind": "$.tags[*].tag&&$.kind&&$.category",
      "lastChapter": "$.fixed_price&&$.price@js:\nif(result){\na=result.match(/(.*?)\\n(.*)/);\nb=a[1]/100?a[1]/100:0;\nc=a[2]/100?a[2]/100:0;\nresult=\"原价:\"+b+\"元\"+\"💡特价:\"+c+\"元\"}",
      "name": "$.title",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "class.story-item@a||$.list[*]",
      "chapterName": "text||$.title",
      "chapterUrl": "href||$.links.reader<js>\n     var ua = \"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\";\n     var headers = {\"User-Agent\": ua};\n     var option = {\n         \"headers\": JSON.stringify(headers),\n         \"webView\": true\n     };\n     result+\",\" + JSON.stringify(option)\n </js>",
      "isVip": "$.price",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "https://read.douban.com/j/search?start={{(page-1)*10}}&limit=10&query={{key}}\n@js:java.put('key',key);result",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "吧电子书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.wrltxt.com#🎃",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 75,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "lastUpdateTime": 1721152657709,
    "loginUrl": "",
    "respondTime": 2813,
    "ruleBookInfo": {
      "author": "class.block_txt2@tag.p.2@text##作者：",
      "coverUrl": "img@src",
      "kind": "class.block_txt2@tag.p.2@a@text",
      "lastChapter": "class.block_txt2@tag.p.6@a@text",
      "name": "class.block_txt2@h2@a@text",
      "tocUrl": "class.block_txt2@tag.a.0@href##-(\\d+).html##http://www.wrltxt.com/read/$1/###"
    },
    "ruleContent": {
      "content": "id.content@textNodes##请记住本书.*",
      "imageStyle": "0",
      "replaceRegex": "##.未完待续。.|166阅读网|reads;"
    },
    "ruleExplore": {
      "author": "class.s@text##大小.*",
      "bookList": "//div[5]/div[2]/div/ul/li",
      "bookUrl": "class.red@href",
      "intro": "class.u@text",
      "lastChapter": "tag.div.-1@text",
      "name": "tag.a.0@text##txt.*"
    },
    "ruleSearch": {
      "author": "tag.td.3@text",
      "bookList": "tbody@tr!0",
      "bookUrl": "tag.a.0@href",
      "kind": "",
      "lastChapter": "tag.td.2@text",
      "name": "tag.td.1@text"
    },
    "ruleToc": {
      "chapterList": "//div[5]/div/div[3]/div[2]/ul/li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.wrlwx.com/so.html?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁新站",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.hqrgjtcw.com",
    "customButton": false,
    "customOrder": 77,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻魔法::/sort/1/{{page}}/\n武侠修真::/sort/2/{{page}}/\n都市言情::/sort/3/{{page}}/\n历史军事::/sort/4/{{page}}/\n科幻灵异::/sort/5/{{page}}/\n游戏竞技::/sort/6/{{page}}/\n女生耽美::/sort/7/{{page}}/\n其他类型::/sort/8/{{page}}/",
    "lastUpdateTime": 1774857823891,
    "respondTime": 5241,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "🔔 更新时间：{{@@[property=\"og:novel:update_time\"]@content##\\s##🔸}}\n\n📂 内容简介：{{@@[property=\"og:description\"]@content##.*由作家.*创作，|笔趣阁新站.*章节}}##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "[property~=category|status|update_time]@content##\\s.*",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "#rtext p@html",
      "nextContentUrl": "#linkNext@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author.0@text",
      "bookList": ".bookbox",
      "bookUrl": "a.0@href",
      "intro": ".update@textNodes",
      "lastChapter": ".cat a@text",
      "name": "h4@text",
      "wordCount": ".author.1@text##.*："
    },
    "ruleToc": {
      "chapterList": "#list-chapterAll dd a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "{{cookie.removeCookie(source.getKey())}}\nhttps://www.hqrgjtcw.com/search/,{\n  \"body\": \"searchkey={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁#25",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.biqugewx.info#🎃",
    "bookUrlPattern": "https://www.biquger.com/biquge/\\d+/",
    "customButton": false,
    "customOrder": 78,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/category/1_{{page}}.html\n修真小说::/category/2_{{page}}.html\n都市小说::/category/3_{{page}}.html\n穿越重生::/category/4_{{page}}.html\n网游小说::/category/5_{{page}}.html\n科幻小说::/category/6_{{page}}.html\n灵异小说::/category/7_{{page}}.html",
    "lastUpdateTime": 1787466988299,
    "respondTime": 9036,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作    者：",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.list@tag.p.0@text",
      "kind": "id.info@tag.p.3@text##更新时间：",
      "lastChapter": "@css:[property=og:novel:latest_chapter_name]@content##免费章节 |正文卷 |正文 |VIP章节|卷1",
      "name": "id.info@tag.h1.0@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleContent": {
      "content": "class.content@html##您可以在百度里.*查找最新章节！|一秒记住.*无弹窗免费阅读！|百度搜索笔趣.*小说免费阅读。|高速文字手打.*http.*biquge.*"
    },
    "ruleExplore": {
      "author": "class.s4@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "class.s2@a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.biquger.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "class.s5@text",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text"
    },
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "tag.td.0@tag.a@href",
      "coverUrl": "tag.td.0@tag.a.0@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.biquger.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "tag.td.1@tag.a@text##免费章节 |正文卷 |正文 |VIP章节|卷1",
      "name": "tag.td.0@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "池鱼 2025.05.15\n本网站所有的小说都是免费的，目前已经有了PC端和wap端，APP端目前还有点问题需要调试\n如果想要查看插图的话可以去网页端，为了避免被刷昂贵的图床流量，所以阅读的书源没有适配插图\n更多详情内容，可以关注：www.huanmengacg.com\n网站QQ群：907189428",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "幻梦轻说（+++）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.huanmengacg.com",
    "customButton": false,
    "customOrder": 79,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "@js: \nJSON.stringify({\n  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Mobile Safari/537.36\"\n})",
    "lastUpdateTime": 1787407806203,
    "respondTime": 5749,
    "ruleBookInfo": {
      "author": ".book-metas.0@text##作者：",
      "coverUrl": "dt@img@src",
      "intro": ".book-summary@text",
      "kind": ".book-metas.1@text&&.book-metas.2@text&&.book-metas.3@text##(?:分类|状态|更新)：| [\\d：:]+\n<js>result.replace(/ /,\",\")</js>",
      "name": ".book-title@text",
      "tocUrl": "text.章节列表@href"
    },
    "ruleContent": {
      "content": "#BookText@p@text\n<js>\nresult.replace(/(<img src=\"[^\"]+\")[^>]+>/g,\"$1>\")\n</js>\n##本文来自 幻梦轻小说|最新最全的日本动漫轻小说 幻梦轻小说|更多轻小说与TXT下载，尽在幻梦轻小说网（www.huanmengacg.com）|\\(http://www.huanmengacg.com\\)|",
      "imageStyle": "FULL",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".book-module@text##··.*",
      "bookList": ".boxbd@.common-list",
      "bookUrl": "a@href",
      "checkKeyWord": "--https://www.huanmengacg.com/index.php/book_read_794_763.html",
      "coverUrl": "img@data-original",
      "intro": ".book-profile@text",
      "kind": ".book-module@text##.*··",
      "name": "dt@text"
    },
    "ruleToc": {
      "chapterList": "#chapterlist li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "/index.php/book/search?action=search&key={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "手机小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.ixiatxt.com/",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 81,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "武侠小说::soft/1/Soft_001_{{page}}.html\n玄幻小说::soft/2/Soft_002_{{page}}.html\n都市言情::soft/3/Soft_003_{{page}}.html\n恐怖灵异::soft/4/Soft_004_{{page}}.html\n现代文学::soft/5/Soft_005_{{page}}.html\n侦探推理::soft/6/Soft_006_{{page}}.html\n科幻小说::soft/7/Soft_007_{{page}}.html\n穿越架空::soft/9/Soft_009_{{page}}.html\n古典名著::soft/10/Soft_010_{{page}}.html\n名人自传::soft/11/Soft_011_{{page}}.html\n历史军事::soft/12/Soft_012_{{page}}.html\n制作工具::soft/13/Soft_013_{{page}}.html\n网游小说::soft/14/Soft_014_{{page}}.html\n推荐下载::soft/best/index_{{page}}.html\n下载排行::soft/hot/index_{{page}}.html\n最近更新::soft/new/index_{{page}}.html\n全本下载::soft/quanben/index_{{page}}.html",
    "lastUpdateTime": 1721361965084,
    "loginUrl": "",
    "respondTime": 8610,
    "ruleBookInfo": {
      "tocUrl": "text.在线阅读@tag.a@href"
    },
    "ruleContent": {
      "content": "id.content1@html",
      "replaceRegex": "##最新网址.*[nmtca]"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.s@text##连载.*",
      "bookList": "class.list@tag.li",
      "bookUrl": "tag.a@href",
      "coverUrl": "tag.a@tag.img@src",
      "kind": "text.连载@text##.*连载.|更新.*",
      "lastChapter": "class.s@text##.*更新.",
      "name": "tag.a@text##\\《|\\》.*"
    },
    "ruleToc": {
      "chapterList": "class.pc_list.1@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "search.php?s=&searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "//网站经常变动\n//同站：舞文小说http://m.wushuzw.org/",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "👍 星空小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.aixswx.net",
    "bookUrlPattern": "http://wap.aixswx.net/book/\\d+.html",
    "customButton": false,
    "customOrder": 82,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvar v=source.getVariable();\nvar su=source.getKey();\nvar url=(v==null||v==\"\")?su:v;\nurl+=\"/mulu/\";\nvar html=java.ajax(url);\nvar h=org.jsoup.Jsoup.parse(html)\nvar a=h.select('ul[class=clearfix] li a');\nvar list=[];\nfor(i in a){\n\tvar text=a[i].text();\n\tvar href=a[i].attr(\"href\");\nhref=String(href).replace(\"1.html\",'{{page}}.html');\n\tvar add=text+\"::\"+href;\n\tlist.push(add);\n\t}\nlist.join(\"&&\")",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1779721270229,
    "respondTime": 5576,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": ".intro.0@text##阅读.*最新章节请关注.+|【展开】|【收起】",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content",
      "name": "[property$=book_name]@content",
      "tocUrl": "text.目录列表@href"
    },
    "ruleContent": {
      "content": "@js:\nd=java.getElements(\".content dd\");\nvar a=\"\";\nfor(i in d){\n\ta+=d.select(`[data-id=${i}]`);\n\ta+=\"\\n\";\n\t}\na;",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##{{chapter.title}}| \\(第.*页\\)|（本章未完.+继续阅读）|阅读.*最新章节.*请关注.+"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a@ownText##.*[(]|[):]|[【】].+",
      "bookList": "<js>\nvar sk=java.get(\"sk\");\nvar su=source.getKey();\nvar so=/s.php/.test(baseUrl);\nif(so){\n\tvar bu=baseUrl.match(/^(.+)\\/s.php/)[1];\nif(bu!=su){\n\tsource.setVariable(bu);\n//\tjava.toast(\"地址变动，重新搜索加载！\")\n\tresult=java.ajax(baseUrl+`,{\n\t\t\"body\": \"s=${String(sk)}\",\n\t\t\"method\": \"POST\"}`);\n\t\t}\n\t}else{result=result}\n\tresult;\n</js>\n.bd li",
      "bookUrl": "a@href",
      "checkKeyWord": "剑来",
      "coverUrl": "a@href##\\D+((\\d+)\\d{3})\\D*##http://www.aixswx.net/files/article/image/$2/$1/$1s.jpg###",
      "kind": "span@text##\\[|\\]",
      "name": "a@ownText##[()].+|.*[:【]|】"
    },
    "ruleToc": {
      "chapterList": "<js>\nd=java.getElements(\"#listsss div\");\nvar li=\"\";\nfor(i in d){\n\tli+=d.select(`[data-id=${i}] li`);\n\tli+=\"\\n\";\n\t}\n\tli;\n</js>\nli a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "{{source.getVariable()?source.getVariable():source.getKey()\n}}/s.php,{\n  \"body\": \"s={{java.put('sk',key)}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "SF轻小说",
    "bookSourceType": 0,
    "bookSourceUrl": "book.sfacg.com已整理",
    "bookUrlPattern": "已校验",
    "customButton": false,
    "customOrder": 83,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1764985862738,
    "loginUrl": "http://passport.sfacg.com/Login.aspx",
    "respondTime": 904,
    "ruleBookInfo": {
      "kind": "class.tag-list@class.text@text",
      "tocUrl": "text.点击阅读@href"
    },
    "ruleContent": {
      "content": "class.article-content font16@text"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.li.1@text##.+综合信息：\\s*([^\\/]+).*##$1",
      "bookList": "tag.form@tag.table.-2@tag.ul",
      "bookUrl": "tag.a@href",
      "coverUrl": "tag.img@src",
      "intro": "tag.li.1@text##.+\\d+:\\d+\\s*(.+).*##$1",
      "lastChapter": "tag.li.1@text##.+\\/(\\d+\\/\\d+\\/\\d+).*##$1",
      "name": "tag.a@text"
    },
    "ruleToc": {
      "chapterList": "class.catalog-list@tag.ul@tag.li@tag.a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://s.sfacg.com/?Key={{key}}&S=1&SS=0",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "去读书⑤",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.qudushu.com/#pb1101",
    "bookUrlPattern": "http://www.qudushu.com/book/info/\\d+/\\d+.html",
    "customButton": false,
    "customOrder": 84,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻魔法::/book/sort1/0/{{page}}.html\n武侠修真::/book/sort2/0/{{page}}.html\n都市言情::/book/sort3/0/{{page}}.html\n历史军事::/book/sort4/0/{{page}}.html\n穿越架空::/book/sort5/0/{{page}}.html\n游戏竞技::/book/sort6/0/{{page}}.html",
    "lastUpdateTime": 1684818277074,
    "loginUrl": "",
    "respondTime": 7964,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "class.divbox cf@img@src",
      "intro": "class.tabcontent@class.tabvalue.0@text",
      "kind": "class.tabcontent@class.tabvalue.1@tag.td.2@text&&\nclass.tabcontent@class.tabvalue.1@tag.td.1@text&&\nclass.tabcontent@class.tabvalue.1@tag.td.0@text##最后更新：|连载状态：|作品分类：",
      "lastChapter": "h3@a@text",
      "name": "[property=\"og:novel:book_name\"]@content##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|小说|笔趣阁|免费.*",
      "tocUrl": "text.点击阅读@href",
      "wordCount": "class.tabcontent@class.tabvalue.1@tag.td.6@text##全文字数："
    },
    "ruleContent": {
      "content": "id.acontent@html##去读书推荐各位.*|去读书.*com|如果您中途有事.*以便以后接着观看！|\\(|\\)"
    },
    "ruleExplore": {
      "author": "class.c_tag@tag.span.1@text&&",
      "bookList": "class.blockcontent@class.c_row",
      "bookUrl": "class.c_subject@tag.a.1@href",
      "coverUrl": "img@src",
      "intro": "class.c_description@text",
      "kind": "class.c_tag@tag.span.5@text&&\nclass.c_tag@tag.span.7@text",
      "lastChapter": "class.c_subject@tag.a.2@text",
      "name": "class.c_subject@tag.a.1@text",
      "wordCount": "class.c_tag@tag.span.3@text"
    },
    "ruleSearch": {
      "author": "class.c_tag.0@tag.span.1@text",
      "bookList": "id.jieqi_page_contents@class.c_row",
      "bookUrl": "class.c_subject@a@href",
      "coverUrl": "img@src",
      "kind": "class.c_tag.0@tag.span.3@text&&\nclass.c_tag.0@tag.span.7@text&&\nclass.c_tag.1@tag.span.3@text",
      "lastChapter": "class.c_tag.1@tag.span.1@a@text",
      "name": "class.c_subject@a@text",
      "wordCount": "class.c_tag.0@tag.span.5@text"
    },
    "ruleToc": {
      "chapterList": "class.index@li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.qudushu.com/modules/article/search.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "玄幻阁吧",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xuanhuange.net#",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 85,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::/sort1/{{page}}/\n武侠::/sort2/{{page}}/\n都市::/sort3/{{page}}/\n历史::/sort4/{{page}}/\n言情::/sort5/{{page}}/\n穿越::/sort6/{{page}}/\n科幻::/sort7/{{page}}/\n恐怖::/sort8/{{page}}/\n校园::/sort9/{{page}}/\n异界::/sort10/{{page}}/\n全本::/quanben/{{page}}/",
    "lastUpdateTime": 1720893306838,
    "loginUrl": "",
    "respondTime": 7785,
    "ruleBookInfo": {
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.bookintro@tag.p@text",
      "tocUrl": "id.newlist@tag.a@href"
    },
    "ruleContent": {
      "content": "id.content@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.book_other@tag.span.0@text",
      "bookList": "id.sitebox@tag.dl",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "tag.img@src",
      "lastChapter": "class.book_other@tag.a.0@text",
      "name": "tag.a.1@text"
    },
    "ruleToc": {
      "chapterList": "id.chapterlist@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.xuanhuange.net/modules/article/search.php?s=7673184438602983814&s={{key}}&searchtype=articlename",
    "weight": 0
  },
  {
    "bookSourceComment": "同站：https://m.po18xs.com\n肉肉屋 https://m.rourouwu5.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "御书屋②",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.3322t.com/",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 86,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "最近更新::/top/lastupdate_{{page}}/\n最新入库::/top/postdate_{{page}}/\n总点击榜::/top/allvisit_{{page}}/\n月点击榜::/top/monthvisit_{{page}}/\n周点击榜::/top/weekvisit_{{page}}/\n日点击榜::/top/dayvisit_{{page}}/\n总推荐榜::/top/allvote_{{page}}/\n月推荐榜::/top/monthvote_{{page}}/\n周推荐榜::/top/weekvote_{{page}}/\n总收藏榜::/top/goodnum_{{page}}/\n字数排行::/top/size_{{page}}/\n玄幻奇幻::/sort/1_{{page}}/\n武侠仙侠::/sort/2_{{page}}/\n都市言情::/sort/3_{{page}}/\n科幻网游::/sort/4_{{page}}/\n惊悚悬疑::/sort/5_{{page}}/\n耽美同人::/sort/6_{{page}}/\n穿越架空::/sort/7_{{page}}/\n高辣浓情::/sort/8_{{page}}/\n禁忌百合::/sort/9_{{page}}/\n精品文学::/sort/10_{{page}}/",
    "header": "",
    "lastUpdateTime": 1721299602938,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 8773,
    "ruleBookInfo": {
      "author": "",
      "canReName": "",
      "coverUrl": "class.pic@img@src",
      "init": "",
      "intro": "class.intro@p@textNodes",
      "kind": "",
      "lastChapter": "class.infotype@tag.p.3@a@text",
      "name": "",
      "tocUrl": "text.章节目录@href",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "id.novelcontent@p@html",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": "",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "class.author@a@text||tag.a.1@text",
      "bookList": "class.searchresult@p||class.article||class.articlegeneral",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.a.0@href##.*/book/(\\d+)(\\d{3})/##http://img.3322t.com/image/$1/$1$2/$1$2s.jpg",
      "intro": "",
      "kind": "class.p1@text##\\[|]",
      "lastChapter": "",
      "name": "h6@a@text||tag.a.0@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "class.chapters@li@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "text.下一页@href",
      "updateTime": ""
    },
    "searchUrl": "/s.php,{\n  \"charset\": \"gbk\",\n  \"method\": \"POST\",\n  \"body\": \"s={{key}}&submit=&type=articlename\"\n}",
    "variableComment": "",
    "weight": 0
  },
  {
    "bookSourceComment": "20240131 制作该源-尐哖\n注：key为未知参数，不确定是否根据时间变动\nkey=EaSoU0517+PuBlIsHkEy-JRKKOWTUNZCNTWY-",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "💰宜搜",
    "bookSourceType": 0,
    "bookSourceUrl": "https://api.ieasou.com##@",
    "customButton": false,
    "customOrder": 87,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\n\nfl =(a)=>{\nt = String(Math.round(new Date()));\nreturn `https://api.ieasou.com/api/bookapp/searchdzh.m?word=${a}&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&vm=5.8.5&os=android&udid=3d3ec742930b635fc4c61f0575dbc4d2939edbe2&appverion=508500&ch=blf1298_10928_001&session_id=C757AFA560J0A6092827V469973C4D670288F658484753375777AE72183BFF560C&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=da97011e945dfb4c74bbfc98543c7c7a&ptype=5&gender=1&userInitPay=3&birt=1706674841000&instime=${t}&instId=${t}&chType=6&bidType=100&recSw=1&appType=0&pr=0.09&tm=0&ac=999&snk={{java.md5Encode('ac=999&appType=0&appid=10001&appverion=508500&bidType=100&birt=1706674841000&bookStatus=0&catalog=0&ch=blf1298_10928_001&chType=6&cid=eef_easou_book&count=20&datasource=0&dzh=1&gender=1&instId='+${t}+'&instime='+${t}+'&os=android&page_id='+page+'&pr=0.09&ptype=5&pushid=da97011e945dfb4c74bbfc98543c7c7a&recSw=1&rtype=2&scp=0&session_id=C757AFA560J0A6092827V469973C4D670288F658484753375777AE72183BFF560C&showj=1&sort_type=0&subclass=0&tm=0&type=2&udid=3d3ec742930b635fc4c61f0575dbc4d2939edbe2&userInitPay=3&utype=0&vm=5.8.5&wc=0&word=${a}&key=EaSoU0517+PuBlIsHkEy-JRKKOWTUNZCNTWY-').toUpperCase()}}`;\n}\n\n\n[[\"男生♂分类\",[\"现代都市\",\"玄幻奇幻\",\"武侠仙侠\",\"科幻小说\",\"历史军事\",\"灵异悬疑\",\"游戏竞技\",\"宅小说\",\"重生致富\",\"系统文\",\"奶爸\",\"文娱\"]],\n[\"女生♀分类\",[\"现代言情\",\"古代言情\",\"幻想言情\",\"浪漫青春\",\"种田\",\"总裁\",\"马甲文\",\"轻小说\"]],\n[\"出版©️分类\",[\"短篇\",\"经典名著\",\"其他出版\",\"现代文学\"]]].map([tit,list]=>{\n\tpush(tit, null, 1, 1);\n\tlist.map((title,index)=>{\n\tif(index+1 <= list.length - list.length%3){\n\t\t\tpush(title,fl(title), 1, 0.25);}\n\t\t\telse{ push(title,fl(title), 0, 0.29);}\n\t\t});\n})\n\nJSON.stringify(sort);",
    "header": "{\"user-agent\":\"esbook android 5.8.5\"}",
    "lastUpdateTime": 1710709548230,
    "respondTime": 3073,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$.img_url",
      "init": "$.coverInfo",
      "intro": "&nbsp;🏷️{{$.labels}}\n{{$.desc}}##🏷️\\n",
      "kind": "{{$.classes}}\n{{java.timeFormat(java.getString('$.last_time'))}}\n{{$.site}}\n{{$.agentName}}",
      "lastChapter": "$.last_chapter_name",
      "name": "$.name",
      "tocUrl": "@js:\nt = String(Math.round(new Date()));\ngid=java.getString('$.gid');\nnid=java.getString('$.nid');\nsnk=java.md5Encode(\"ac=999&appType=0&appid=10001&appverion=508500&bidType=0&birt=1706674841000&ch=blf1298_10928_001&chType=6&cid=eef_easou_book&dzh=1&gender=1&gid=\"+gid+\"&gsort=1&instId=\"+t+\"&instime=\"+t+\"&nid=\"+nid+\"&os=android&pr=-1.0&ptype=5&pushid=7b4aaf1210a5bdbac3cea26d5030a419&recSw=1&returnType=100&rtype=2&scp=0&session_id=153F4EEE16F56A43FD63ZD21B866413ED9BE044EFB876A115C62DBED82EE4C824D&size=10000&sort=1&tm=0&udid=3d3ec742930b635fc4c61f0575dbc4d2939edbe2&userInitPay=3&utype=0&vm=5.8.5&key=EaSoU0517+PuBlIsHkEy-JRKKOWTUNZCNTWY-\");\nsnk = snk.toUpperCase();\nurl = `https://api.ieasou.com/api/bookapp/bookSummary.m?gid=${gid}&nid=${nid}&sort=1&size=10000&session_id=153F4EEE16F56A43FD63ZD21B866413ED9BE044EFB876A115C62DBED82EE4C824D&returnType=100&gsort=1&cid=eef_easou_book&vm=5.8.5&os=android&udid=3d3ec742930b635fc4c61f0575dbc4d2939edbe2&appverion=508500&ch=blf1298_10928_001&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=7b4aaf1210a5bdbac3cea26d5030a419&ptype=5&gender=1&userInitPay=3&birt=1706674841000&instime=${t}&instId=${t}&chType=6&bidType=0&recSw=1&appType=0&pr=-1.0&tm=0&ac=999&snk=${snk}`",
      "wordCount": "$.wordCount"
    },
    "ruleContent": {
      "content": "<js>\nb=baseUrl.match(/gid=(\\d+)&nid=(\\d+)&sort=(\\d+)&chapter_name=(.*$)/);\nt = String(Math.round(new Date()));\ngid=b[1];\nnid=b[2];\ns = b[3];\nc = b[4];\nsnk=java.md5Encode(\"a=1&ac=999&appType=0&appid=10001&appverion=508500&autoBuy=0&bidType=0&birt=1706674841000&ch=blf1298_10928_001&chType=6&chapter_name=\"+c+\"&cid=eef_easou_book&dzh=1&gender=1&gid=\"+gid+\"&gsort=0&instId=\"+t+\"&instime=\"+t+\"&nid=\"+nid+\"&os=android&pr=-1.0&ptype=5&pushid=7b4aaf1210a5bdbac3cea26d5030a419&recSw=1&rtype=2&scp=0&sequence=1&session_id=153F4EEE16F56A43FD63ZD21B866413ED9BE044EFB876A115C62DBED82EE4C824D&sgsort=0&sort=\"+s+\"&tm=0&udid=3d3ec742930b635fc4c61f0575dbc4d2939edbe2&userInitPay=3&utype=0&vm=5.8.5&key=EaSoU0517+PuBlIsHkEy-JRKKOWTUNZCNTWY-\");\nsnk = snk.toUpperCase();\n\nurl=`https://api.ieasou.com/api/bookapp/chargeChapter.m?a=1&autoBuy=0&cid=eef_easou_book&vm=5.8.5&os=android&udid=3d3ec742930b635fc4c61f0575dbc4d2939edbe2&appverion=508500&ch=blf1298_10928_001&session_id=153F4EEE16F56A43FD63ZD21B866413ED9BE044EFB876A115C62DBED82EE4C824D&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=7b4aaf1210a5bdbac3cea26d5030a419&ptype=5&gender=1&userInitPay=3&birt=1706674841000&instime=${t}&instId=${t}&chType=6&bidType=0&recSw=1&appType=0&pr=-1.0&tm=0&ac=999&gid=${gid}&nid=${nid}&sort=${s}&gsort=0&sgsort=0&sequence=1&chapter_name=${c}&snk=${snk}`;\njava.ajax(url)\n</js>$.content<js>\nfunction a(str) {\n\tstr = String(str);\n\tlength = str.length / 2;\n\tbArr = [];\n\tfor (i = 0; i < length; i++) {\n\t\ti2 = i * 2;\n\t\tbArr[i] =  intToByte(parseInt(str.substring(i2, i2 + 2), 16));\n  }\n  return bArr;\n}\nfunction intToByte(i) {\n\tvar b = i & 0xFF;var c = 0;\n\tif (b >= 128) {c = b % 128;c = -1 * (128 - c);}\n\telse {c = b;}\n\treturn c;\n}\n\n function byteToHexString(arr) {\n    return arr.reduce((accu, item) => {\n        let a =(item&0xff).toString(16)\n        if (a.length ==1) a = \"0\" + a\n        return accu += a\n    }, \"\")\n  }\n  function hextoBase64(t) {\n\tfunction parse(t) {\n\t\tt = String(t)\n\t\tfor (var e = t.length, r = [], i = 0; i < e; i += 2){\n\t\tr[i >>> 3] |= parseInt(t.substr(i, 2), 16) << 24 - i % 8 * 4;\n\t\t}\n\t\treturn r;\n\t}\n\tfunction stringify(t) {\n\t\tvar e = t\n\t\t, r = 4 * t.length\n\t\t, i = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";\n\t\tfor (var n = [], o = 0; o < r; o += 3){\n\t\t    for (var s = (e[o >>> 2] >>> 24 - o % 4 * 8 & 255) << 16 | (e[o + 1 >>> 2] >>> 24 - (o + 1) % 4 * 8 & 255) << 8 | e[o + 2 >>> 2] >>> 24 - (o + 2) % 4 * 8 & 255, a = 0; a < 4 && o + .75 * a < r; a++){\n\t\t\tn.push(i.charAt(s >>> 6 * (3 - a) & 63));}\n\t\t}\n\t\tvar c = i.charAt(64);\n\t\tif (c){\n\t\t   for (; n.length % 4; ){\n\t\t\t      n.push(c);}\n\t\t}\n\t\treturn n.join(\"\")\n\t}\n\treturn stringify(parse(t));\n}\n\nsf = \"DES/CBC/PKCS5Padding\";\nd=hextoBase64(byteToHexString(a(result)));\nkey = iv = \"EaSoUcNt\";\nresult=java.aesBase64DecodeToString(d,key,sf,iv);\n</js>"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.all_book_items",
      "bookUrl": "@js:\nt = String(Math.round(new Date()));\ngid=java.getString('$.gid');\nnid=java.getString('$.nid');\nsnk=java.md5Encode(\"ac=999&ad=0&appType=0&appid=10001&appverion=508500&bidType=0&birt=1706674841000&ch=blf1298_10928_001&chType=6&cid=eef_easou_book&dzh=1&gender=1&gid=\"+gid+\"&gsort=1&instId=\"+t+\"&instime=\"+t+\"&nid=\"+nid+\"&os=android&pr=-1.0&ptype=5&pushid=7b4aaf1210a5bdbac3cea26d5030a419&recSw=1&returnType=010&rtype=2&scp=0&session_id=153F4EEE16F56A43FD63ZD21B866413ED9BE044EFB876A115C62DBED82EE4C824D&showj=1&size=50&sort=1&tm=0&udid=3d3ec742930b635fc4c61f0575dbc4d2939edbe2&userInitPay=3&utype=0&vm=5.8.5&key=EaSoU0517+PuBlIsHkEy-JRKKOWTUNZCNTWY-\");\nsnk = snk.toUpperCase();\nurl=`https://api.ieasou.com/api/bookapp/bookSummary.m?nid={{$.nid}}&gid={{$.gid}}&sort=1&size=50&returnType=010&session_id=153F4EEE16F56A43FD63ZD21B866413ED9BE044EFB876A115C62DBED82EE4C824D&gsort=1&showj=1&ad=0&cid=eef_easou_book&vm=5.8.5&os=android&udid=3d3ec742930b635fc4c61f0575dbc4d2939edbe2&appverion=508500&ch=blf1298_10928_001&session_id=153F4EEE16F56A43FD63ZD21B866413ED9BE044EFB876A115C62DBED82EE4C824D&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=7b4aaf1210a5bdbac3cea26d5030a419&ptype=5&gender=1&userInitPay=3&birt=1706674841000&instime=${t}&instId=${t}&chType=6&bidType=0&recSw=1&appType=0&pr=-1.0&tm=0&ac=999&snk=${snk}`",
      "coverUrl": "$.imgUrl",
      "intro": "$.desc",
      "kind": "{{$.classes}}\n{{$.site}}\n{{$.agentName}}",
      "lastChapter": "{{$.lastChapterName}} • {{java.timeFormat(java.getString('$.lastTime'))}}",
      "name": "$.name",
      "wordCount": "$.wordCount"
    },
    "ruleToc": {
      "chapterList": "$.volumes[*].chapters[*]",
      "chapterName": "$.chapter_name",
      "chapterUrl": "https://api.ieasou.com/api/bookapp/chargeChapter.m?gid={{baseUrl.match(/gid=(\\d+)/)[1]}}&nid={{$.nid}}&sort={{$.sort}}&chapter_name={{$.chapter_name}}",
      "updateTime": "字数：{{$.wordCount}} 时间：{{java.timeFormat(java.getString('$.upTime'))}}"
    },
    "searchUrl": "<js>\nt = String(Math.round(new Date()));\nsnk=java.md5Encode(\"ac=999&appType=0&appid=10001&appverion=508500&bidType=0&birt=1706674841000&bookStatus=0&catalog=0&ch=blf1298_10928_001&chType=6&cid=eef_easou_book&count=20&datasource=0&dzh=1&gender=1&instId=\"+t+\"&instime=\"+t+\"&os=android&page_id=1&pr=-1.0&ptype=5&pushid=7b4aaf1210a5bdbac3cea26d5030a419&recSw=1&rtype=2&scp=0&session_id=153F4EEE16F56A43FD63ZD21B866413ED9BE044EFB876A115C62DBED82EE4C824D&showj=1&sort_type=0&subclass=0&tm=0&type=0&udid=3d3ec742930b635fc4c61f0575dbc4d2939edbe2&userInitPay=3&utype=0&vm=5.8.5&wc=0&word=\"+key+\"&key=EaSoU0517+PuBlIsHkEy-JRKKOWTUNZCNTWY-\");\nsnk = snk.toUpperCase();\nurl=\"https://api.ieasou.com/api/bookapp/searchdzh.m?word=\"+key+\"&type=0&page_id=\"+page+\"&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&vm=5.8.5&os=android&udid=3d3ec742930b635fc4c61f0575dbc4d2939edbe2&appverion=508500&ch=blf1298_10928_001&session_id=153F4EEE16F56A43FD63ZD21B866413ED9BE044EFB876A115C62DBED82EE4C824D&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=7b4aaf1210a5bdbac3cea26d5030a419&ptype=5&gender=1&userInitPay=3&birt=1706674841000&instime=\"+t+\"&instId=\"+t+\"&chType=6&bidType=0&recSw=1&appType=0&pr=-1.0&tm=0&ac=999&snk=\"+snk;\nurl.toString()\n</js>",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "言情网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.yqw.com",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 88,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1743751681776,
    "loginUrl": "",
    "respondTime": 7612,
    "ruleBookInfo": {
      "coverUrl": "img@src",
      "intro": "id.intro@html",
      "lastChapter": "id.info@tag.p.3@a@text"
    },
    "ruleContent": {
      "content": "id.content@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.s4@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "kind": "class.s1@text##\\[|]",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text"
    },
    "ruleToc": {
      "chapterList": "id.list@dd@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://www.123yqw.com/search/{{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "夜天连看",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.yetianlian.cc",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 89,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "",
    "jsLib": "",
    "lastUpdateTime": 1734432209685,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 3168,
    "ruleBookInfo": {
      "author": "class.info@tag.span.0@text##作者：",
      "coverUrl": "class.cover@tag.img@src",
      "intro": "class.intro@text##简介：|作者.*",
      "kind": "class.info@tag.span.1@text##分类：",
      "lastChapter": "class.info@class.last.1@tag.a@text&&class.info@class.last.0@text##更新时间：|..\\:.*",
      "name": "class.info@tag.h2@text",
      "wordCount": "class.info@tag.span.3@text##字数："
    },
    "ruleContent": {
      "content": "id.content@html",
      "imageDecode": "",
      "imageStyle": "0",
      "payAction": "",
      "replaceRegex": "##http://www.yetianlian.com.*.html|请记住本书首发.*",
      "sourceRegex": "",
      "title": "",
      "webJs": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.author@text##作者：",
      "bookList": "class.bookbox",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "tag.img@src",
      "intro": "tag.p@text",
      "kind": "class.cat@text##分类：",
      "lastChapter": "class.update@tag.a@text",
      "name": "tag.h4@text"
    },
    "ruleToc": {
      "chapterList": "class.listmain@tag.dd!0:1:2:3:4:5:6:7:8:9:10:11",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.yetianlian.cc/s.php?ie=utf-8&q={{key}}",
    "variableComment": "",
    "weight": 0
  },
  {
    "bookSourceComment": "https://www.tycqzw.la/\nhttp://www.tycqzw.net/\nhttps://www.tycqzw.com/\nwww.zmccx.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "天域小说#1",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.tycqzw.net",
    "customButton": false,
    "customOrder": 91,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"全部小说\",\"url\":\"https://m.tycqzw.com/xclass/0/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"玄幻小说\",\"url\":\"https://m.tycqzw.com/xclass/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"修真小说\",\"url\":\"https://m.tycqzw.com/xclass/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"都市小说\",\"url\":\"https://m.tycqzw.com/xclass/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"穿越小说\",\"url\":\"https://m.tycqzw.com/xclass/4/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"网游小说\",\"url\":\"https://m.tycqzw.com/xclass/5/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"科幻小说\",\"url\":\"https://m.tycqzw.com/xclass/6/{{page}}.html\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}},{\"title\":\"其他小说\",\"url\":\"https://m.tycqzw.com/xclass/7/{{page}}.html\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}}]",
    "lastUpdateTime": 1786514367373,
    "respondTime": 7727,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作\\s*者：",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.intro@text",
      "kind": "[property=og:novel:update_time]@content&&\n[property=og:novel:category]@content&&\n[property=og:novel:status]@content",
      "lastChapter": "id.list@tag.dd.0@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.info@tag.h1.0@text"
    },
    "ruleContent": {
      "content": "id.content@html##推荐.*新书.*|手机用户.*阅读体验。"
    },
    "ruleExplore": {
      "author": "class.author@text##作者：",
      "bookList": "class.hot_sale",
      "bookUrl": "tag.a.0@href@js:\nr=result.match(/_(\\d+)/)\nid=r[1]\nvar iid = parseInt(id/1000);\n'https://www.tycqzw.com/'+iid+'_'+id+'/'",
      "coverUrl": "img@data-original",
      "intro": "class.review@text##简介：",
      "name": "class.title@text"
    },
    "ruleSearch": {
      "author": "class.even.1@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "class.even.0@tag.a.0@href",
      "coverUrl": "class.even.0@tag.a.0@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.tycqzw.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "class.odd.0@tag.a.0@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.even.0@tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd@tag.a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/search.php?searchkey={{key}}",
    "weight": 100
  },
  {
    "bookSourceComment": "//2024.8.31  ◎夜泽川◎",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "华东看书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.dandanwx.com/",
    "bookUrlPattern": "http://www.dandanwx.com//shu/\\d+.html",
    "customButton": false,
    "customOrder": 92,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻奇幻::/xh_{{page}}/\n武侠仙侠::/wx_{{page}}/\n都市言情::/ds_{{page}}/\n历史军事::/ls_{{page}}/\n网游竞技::/wy_{{page}}/\n科幻灵异::/kj_{{page}}/\n女生频道::/ns_{{page}}/",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1752353935724,
    "respondTime": 6046,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{i}",
      "init": "@put:{n:\"[property$=book_name]@content\",\na:\"[property$=author]@content\",\nt:\"[property~=category|status]@content\",\nl:\"[property$=latest_chapter_name]@content\",\ni:\"[property$=image]@content\",\no:\"[property$=description]@content\",\ng:\"[property$=update_time]@content\",\nm:\"baseUrl\"\n}",
      "intro": "@get:{o}",
      "kind": "@get:{t}",
      "lastChapter": "@get:{l}◎@get:{g}",
      "name": "@get:{n}",
      "tocUrl": "@get:{m}"
    },
    "ruleContent": {
      "content": "#content@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##{{chapter.title}}\\s\\(第\\d+/\\d+页\\)|.*本章未完.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".s4@text",
      "bookList": ".txt-list > li!0",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.*/shu/((\\d{2})\\d+)\\.html##http://www.ahdzxtd.com/files/article/image/$2/$1/$1s.jpg###",
      "kind": ".s1@text&&.s5@text##\\[|\\]",
      "lastChapter": ".s3@text",
      "name": ".s2@text"
    },
    "ruleToc": {
      "chapterList": ".section-list.1@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value||text.下一页@href"
    },
    "searchUrl": "/search.html?keyWord={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁#9",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.bbiquge8.net/",
    "customButton": false,
    "customOrder": 95,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"全部\",\"url\":\"sort/all/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻\",\"url\":\"sort/xuanhuan/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奇幻\",\"url\":\"sort/qihuan/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠\",\"url\":\"sort/wuxia/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙侠\",\"url\":\"sort/xianxia/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市\",\"url\":\"sort/dushi/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史\",\"url\":\"sort/lishi/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"军事\",\"url\":\"sort/junshi/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏\",\"url\":\"sort/youxi/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"竞技\",\"url\":\"sort/jingji/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻\",\"url\":\"sort/kehuan/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"灵异\",\"url\":\"sort/lingyi/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"同人\",\"url\":\"sort/tongren/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女生\",\"url\":\"sort/nvsheng/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他\",\"url\":\"sort/qita/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1787192528138,
    "respondTime": 2074,
    "ruleBookInfo": {
      "author": ".novelinfo-l ul@li.0@a@text",
      "coverUrl": ".novelinfo-r@img@src",
      "intro": "{{@@.novelintro@text##\\s*}}##^##<br>",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content",
      "lastChapter": ".novelinfo-l ul@li.-2@a@text",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "<js>\nlet id = result.match(/\\{siteid:'(\\d+)',bid:'(\\d+)',cid:'(\\d+)'\\}/);\nif (id) {\n    let body = \"siteid=\" + id[1] + \"&bid=\" + id[2] + \"&cid=\" + id[3];\n    let path = \"novelsearch/chapter/transcode.html,\";\n    let option = {\n        \"method\": \"POST\",\n        \"body\": String(body)\n    };\n    java.ajax(String(source.bookSourceUrl + path + JSON.stringify(option)))\n}\n</js>\n$.info"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".info@span.1@a@text",
      "bookList": ".librarylist li",
      "bookUrl": ".info@span.0@a@href",
      "coverUrl": ".pt-ll-l@img@src",
      "intro": ".intro@text",
      "kind": ".info@span.2@a@text&&p.last@textNodes##\\(|\\)|最新章节：\\s",
      "lastChapter": ".last a@text",
      "name": ".info@span.0@a@text"
    },
    "ruleToc": {
      "chapterList": ".fulldir a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "search.html?searchtype=novelname&searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "思路客#1",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.siluwu.com#🎃",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 96,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1786585064007,
    "loginUrl": "",
    "respondTime": 5269,
    "ruleBookInfo": {
      "name": "tag.h1@text##全文阅读.*"
    },
    "ruleContent": {
      "content": "id.content@textNodes",
      "nextContentUrl": "id.link@tag.a.3@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.odd.1@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "class.odd.0@tag.a@href",
      "name": "class.odd.0@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd!0:1:2:3:4:5",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.siluwu.com/modules/article/search.php?searchkey={{key}}&action=login,{\n  \"charset\": \"utf-8\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "溜达小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.liudatxt.net#",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 97,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "",
    "lastUpdateTime": 1734841195645,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 2054,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "id.bookintro@html",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content##小说|\\s.*",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "wordCount": ".count@tag.span.-1@text"
    },
    "ruleContent": {
      "content": "id.content@html",
      "imageStyle": "0",
      "replaceRegex": "##感谢.*打赏.*|\\【看书福利.*|\\（未完待续\\）|无弹窗.*|\\【加入书签.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.book_other.0@tag.span.0@text",
      "bookList": "id.sitembox@tag.dl",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "tag.img@src",
      "lastChapter": "class.book_other.1@text##最新章节.| 更新时间.|..\\:.*",
      "name": "tag.a.1@text",
      "wordCount": "class.book_other.0@tag.span.-1@text"
    },
    "ruleToc": {
      "chapterList": "id.readerlist@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.liudatxt.org/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "👑 书趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.ishuquge.la",
    "customButton": false,
    "customOrder": 98,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::/category/1_{{page}}.html\n武侠::/category/2_{{page}}.html\n都市::/category/3_{{page}}.html\n历史::/category/4_{{page}}.html\n侦探::/category/5_{{page}}.html\n网游::/category/6_{{page}}.html\n科幻::/category/7_{{page}}.html",
    "lastUpdateTime": 1713282081543,
    "respondTime": 4765,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "[property~=category|status|update_time]@content##小说|\\s\\d.*",
      "lastChapter": "{{@@[property$=chapter_name]@content}} • {{@@[property$=update_time]@content##\\s.*}}",
      "name": "[property$=book_name]@content"
    },
    "ruleContent": {
      "content": "#content@html##.*ishuquge.la.*",
      "replaceRegex": "##http.*html|请记住本书首发.*"
    },
    "ruleExplore": {
      "author": ".s4@text",
      "bookList": ".l@li",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##\\d+##$0###\n@js:\nid=result\niid=parseInt(id/1e3)\n\"/files/article/image/\"+iid+\"/\"+id+\"/\"+id+\"s.jpg\"",
      "kind": ".s1@text&&.s5@text##\\[|\\]",
      "lastChapter": ".s3@text",
      "name": ".s2@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": ".author@text",
      "bookList": ".bookinfo",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##\\d+##$0###\n@js:\nid=result\niid=parseInt(id/1e3)\n\"/files/article/image/\"+iid+\"/\"+id+\"/\"+id+\"s.jpg\"",
      "kind": ".cat@text##分类：",
      "lastChapter": "a.1@text",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": ".listmain@dd@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "{{java.connect(source.getKey()).raw().request().url()}}search.php,{\n  \"body\": \"s=0000000000000000000&searchkey={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "创世中文网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://chuangshi.qq.com#🎃",
    "customButton": false,
    "customOrder": 99,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "首页::https://chuangshi.qq.com/\n玄幻::https://chuangshi.qq.com/tab/20001\n武侠::https://chuangshi.qq.com/tab/20010\n历史::https://chuangshi.qq.com/tab/20028\n科幻::https://chuangshi.qq.com/tab/20042\n游戏::https://chuangshi.qq.com/tab/20050\n轻小说::https://chuangshi.qq.com/tab/20059",
    "header": "{\n\t\"User-Agent\": \"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Mobile Safari/537.36 EdgA/116.0.1938.64\",\n\"Referer\": \"{{baseUrl}}\"\n\t}",
    "lastUpdateTime": 1749885763152,
    "respondTime": 5532,
    "ruleBookInfo": {
      "author": ".book-info__author@text",
      "coverUrl": "img@src",
      "intro": ".intro-content@text",
      "kind": ".category@text",
      "lastChapter": ".book-info__lastChapter@text",
      "name": ".book-info__title@text",
      "tocUrl": "{{baseUrl.replace(/detail/,\"chapter\")+`,{\n\t\"headers\": {\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36\"} }`}}",
      "wordCount": ".book-info__categories@span@text"
    },
    "ruleContent": {
      "content": "id.article@html"
    },
    "ruleExplore": {
      "author": ".author@text",
      "bookList": ".book-li||.finished-list@li||.free-list@li",
      "bookUrl": ".book-head@a@href||.book-vertical@a@href",
      "coverUrl": ".book-simple@a.0@div@style||.book-vertical@a.0@div@style",
      "intro": ".book-intro@text",
      "kind": ".rect.0@text||.book-cate@text",
      "lastChapter": ".book-chapter@a@text",
      "name": ".book-title@text",
      "wordCount": ".rect.2@text"
    },
    "ruleSearch": {
      "author": ".author@text",
      "bookList": ".book-list",
      "bookUrl": ".book-head@a@href",
      "coverUrl": "book-simple@src",
      "intro": ".book-intro@text",
      "kind": ".rect.0@text",
      "name": "h4@text",
      "wordCount": ".rect.2@text"
    },
    "ruleToc": {
      "chapterList": ".list",
      "chapterName": ".item@text",
      "chapterUrl": "a@href",
      "updateTime": ".update-time@text"
    },
    "searchUrl": "https://chuangshi.qq.com/search/{{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "by天天的鸟蛋蛋 \n下载源",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "八零电子书",
    "bookSourceType": 3,
    "bookSourceUrl": "https://m.txt808.cc",
    "customButton": false,
    "customOrder": 100,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n\t\"User-Agent\": \"Mozilla/5.0 (linux; u; android 9; zh-cn; v1816a build/pkq1.180819.001) applewebkit/537.36 (khtml, like gecko) version/4.0 chrome/130.0.0.0 quark/6.5.5.137 mobile safari/537.36\"\n\t}",
    "lastUpdateTime": 1748404216495,
    "respondTime": 2027,
    "ruleBookInfo": {
      "author": ".bookcover@p.0@text",
      "canReName": "",
      "coverUrl": "img@src",
      "downloadUrls": "text.小说下载地址@href\n<js>\nvar url=book.origin+result[0];\nresult=java.ajax(url);\nresult;\n</js>\ntext.下载地址@href",
      "intro": ".con@text",
      "kind": ".bookcover@p.1:3:-1@text##.*：",
      "name": ".bookcover@h1@text",
      "wordCount": ".bookcover@p.2@text##.*："
    },
    "ruleContent": {},
    "ruleExplore": {},
    "ruleSearch": {
      "author": "p.1@text##.*：",
      "bookList": "\n.imgtextlist@li",
      "bookUrl": "a@href",
      "checkKeyWord": "",
      "coverUrl": "img@src",
      "intro": "p.4@text##.*：",
      "kind": "p.2@text##.*：|\\[|\\]",
      "name": ".title@a@text##《|》",
      "wordCount": "p.3@text##.*："
    },
    "ruleToc": {},
    "searchUrl": "<js>\ncookie.removeCookie(source.getKey());\n   (()=>{\n  let base='https://m.txt808.cc/e/search/';\n  if(page==1){\n    let url=base+'index.php';\n    let body='show=title%2Csoftsay%2Csoftwriter&keyboard='+key+'&tbname=download&tempid=1&Submit22=%E6%90%9C%E7%B4%A2';\n    return base+source.put('surl',java.post(url,body,{}).header(\"Location\"));\n  } else {\n    return base+source.get('surl')+'&page='+(page-1);\n  }\n})()\n </js>",
    "weight": 0
  },
  {
    "bookSourceComment": "有黄广告",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "溜达小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.liudatxt.la",
    "customButton": false,
    "customOrder": 102,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻奇幻::/list/1<,-{{page}}>.html\n武侠仙侠::/list/2<,-{{page}}>.html\n都市言情::/list/3<,-{{page}}>.html\n历史军事::/list/4<,-{{page}}>.html\n科幻灵异::/list/5<,-{{page}}>.html\n网游竞技::/list/6<,-{{page}}>.html\n女频频道::/list/7<,-{{page}}>.html\n全本小说::/list/quanben<,-{{page}}>.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1780933367739,
    "respondTime": 10116,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "init": "@put:{n:\"[property$=book_name]@content\",\n\ta:\"[property$=author]@content\",\nk:\".block_txt2@a.2@text&&[property~=status|time]@content\",\nl:\"[property$=latest_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"[property$=image]@content\"}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}"
    },
    "ruleContent": {
      "content": "#nr1@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##（本章未完.*继续阅读）|{{chapter.title}}|\\(第.+页\\)"
    },
    "ruleExplore": {
      "author": "p@ownText##\\/",
      "bookList": ".line",
      "bookUrl": "a.1@href",
      "coverUrl": "a.1@href\n@js:\nid=result.match(/\\d+/);\niid=parseInt(id/1000);\n`http://www.liudatxt.net/headimgs/${iid}/${id}/s${id}.jpg`",
      "kind": "a.0@text##\\[|\\]",
      "name": "a.1@text"
    },
    "ruleSearch": {
      "author": "p.-2@text",
      "bookList": ".block",
      "bookUrl": "h2 a@href",
      "checkKeyWord": "剑来",
      "coverUrl": "img@src",
      "kind": "p.-3@text##分类：",
      "lastChapter": "a.-1@text",
      "name": "h2@text"
    },
    "ruleToc": {
      "chapterList": ".chapter.1@li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value||text.下一页@href"
    },
    "searchUrl": "http://m.liudatxt.la/search.php,{\n  \"body\": \"searchkey={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "橘子小说#2",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.shugelou.org",
    "customButton": false,
    "customOrder": 103,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787069052962,
    "respondTime": 1250,
    "ruleBookInfo": {
      "author": "@css:span:contains(作者：)@text",
      "coverUrl": ".cover@img@src",
      "intro": ".intro@html##简介：|.*无弹窗.*",
      "kind": "@css:span:contains(分类：),span:contains(更新时间：),span:contains(状态：)@text##(分类|状态|更新时间)：",
      "lastChapter": ".info .last@a@text",
      "name": ".info@h2@text",
      "wordCount": "@css:span:contains(字数：)@text##字数："
    },
    "ruleContent": {
      "content": "#content@html##{{baseUrl}}|请记住本书首发.*",
      "replaceRegex": "##最新.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author@text",
      "bookList": ".bookbox",
      "bookUrl": ".bookname@a@href",
      "coverUrl": "img@src",
      "intro": ".bookinfo@p@text",
      "kind": ".cat@text##分类：",
      "lastChapter": ".update@a@text",
      "name": ".bookname@text"
    },
    "ruleToc": {
      "chapterList": "@css:.listmain a[href~=/[^/]+/\\d+.htm]",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/s.php?ie=utf-8&q={{key}}",
    "weight": 58
  },
  {
    "bookSourceComment": "有黄广告",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔下文学",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.duquxs.com",
    "customButton": false,
    "customOrder": 104,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1780928705610,
    "respondTime": 1050,
    "ruleBookInfo": {
      "intro": "@js:(result=result.match(/内容简介[\\s\\S]+?div>([\\s\\S]*?)<br.*?\\n.*?bxwx/))?result[1].replace(/.*?bxwx.*?\\.org/,'<br>'):''",
      "tocUrl": "@js:baseUrl.replace(/binfo/,'b').replace(/(\\d)\\.htm.*/,'$1/')"
    },
    "ruleContent": {
      "content": "id.content@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "tr:has(.odd):lt(6)",
      "bookUrl": "tag.td.0@a@href",
      "coverUrl": "tag.td.0@a@href@js:result.replace(/binfo/,'image').replace(/\\/(\\d+).htm/,'/$1/$1s.jpg')",
      "kind": "tag.td.5@text&&tag.td.3@text@js:result+'字'",
      "lastChapter": "tag.td.1@text",
      "name": "tag.td.0@text"
    },
    "ruleToc": {
      "chapterList": "+@js:\nvar reg=new RegExp(/<dd(.).+?\"(\\d+\\.html)\">(.*?)<\\/a>/g);\nvar list1=[];\nvar list2=[];\nvar tmp,url,name;\nvar i=-1;\nwhile((tmp=reg.exec(result))){\nurl=tmp[2];\nname=tmp[3];\nif(tmp[1].match(/>/)){\ni=i+1;\nlist1.push({name:name,url:url});\n}\nelse\nlist2.push({name:name,url:url});\n\nif(i==1){\ni=-1;\nlist1=list1.concat(list2.reverse());\nlist2=[];\n}\n}\nlist1;",
      "chapterName": "name",
      "chapterUrl": "url"
    },
    "searchUrl": "http://www.duquxs.com/cse/search?q={{key}}&submit=搜索",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "4020电子书#3",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.iwurexs.net#🎃",
    "customButton": false,
    "customOrder": 105,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "武侠仙侠::/wuxia/index_{{page}}.html\n都市言情::/yanqing/index_{{page}}.html\n耽美小说::/danmei/index_{{page}}.html\n玄幻小说::/xuanhuan/index_{{page}}.html\n青春校园::/xiaoyuan/index_{{page}}.html\n网游竞技::/wangyou/index_{{page}}.html\n灵异推理::/kongbu/index_{{page}}.html\n纪实小说::/jishi/index_{{page}}.html\n军事历史::/lishi/index_{{page}}.html\n科幻小说::/kehuan/index_{{page}}.html\n管理哲学::/zhexue/index_{{page}}.html\n学习资料::/xuexi/index_{{page}}.html\n总排行榜::/paihangbang/index_{{page}}.html\n月排行榜::/mpaihangbang/index_{{page}}.html\n周排行榜::/wpaihangbang/index_{{page}}.html\n日排行榜::/dpaihangbang/index_{{page}}.html\n封推小说::/fengtui/index_{{page}}.html\n金牌推荐::/jinpaituijian/index_{{page}}.html\n网站推荐::/tuijian/index_{{page}}.html\n最新书籍::/new/index_{{page}}.html",
    "lastUpdateTime": 1787466829643,
    "respondTime": 3737,
    "ruleBookInfo": {
      "author": "class.detail_right@ul@tag.li.0@a@text",
      "coverUrl": "class.detail_right@img@src",
      "intro": "class.detail_right@ul@tag.li.4@text##简介：",
      "kind": "class.detail_right@ul@tag.li.2@text##更新日期：",
      "lastChapter": "class.detail_right@ul@tag.li.3@a@text",
      "name": "class.detail_right@h1@text"
    },
    "ruleContent": {
      "content": "id.content@html##请记住本书.*|最新网址.*|书快书快.*|书快电子书.*|-",
      "imageStyle": "0",
      "nextContentUrl": "text.下一章@href"
    },
    "ruleExplore": {
      "author": "##作者：([^<]+)<##$1###",
      "bookList": "//div[5]/div[2]/div/ul/li",
      "bookUrl": "class.red@href",
      "coverUrl": "tag.a.0@href##.+\\D((\\d+)\\d{3})\\D##http://www.iwurexs.net/headimgs/$2/$1/s$1.jpg###",
      "intro": "class.u@textNodes",
      "kind": "##更新：([^<]+)<##$1###",
      "lastChapter": "tag.a.1@text",
      "name": "tag.a.0@text##txt.*",
      "wordCount": "##大小：([^<]+)<##$1###"
    },
    "ruleSearch": {
      "author": "tag.td.3@text",
      "bookList": "tag.tbody@tag.tr!0",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.a.0@href##.+\\D((\\d+)\\d{3})\\D##http://www.iwurexs.net/headimgs/$2/$1/s$1.jpg###",
      "kind": "tag.td.4@text",
      "lastChapter": "tag.td.2@text",
      "name": "tag.td.1@text"
    },
    "ruleToc": {
      "chapterList": "class.showInfo.1@li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://www.iwurexs.net/so.html?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "基于By~江湖源码修改",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "键盘小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.janpn.net/",
    "customButton": false,
    "customOrder": 106,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "lastUpdateTime": 1732903799171,
    "loginUrl": "",
    "respondTime": 1373,
    "ruleBookInfo": {
      "author": ".col-md-12@p.0@text##by|著",
      "coverUrl": "img@src",
      "init": "",
      "intro": "p.bookIntro@text",
      "kind": "h3@text&&.col-md-12 p.1@text@js:\nlet tag = []\nfor(let i in result){tag.push(String(result[i]))}\nif(!tag[0].startsWith(\"《\")){\n  tag[0] = tag[0].replace(/小说.*/,\"\")\n  tag[1] = tag[1].replace(/更新时间：/,\"\")\n  tag\n}else{\n\ttag[1].replace(/更新时间：/,\"\")\n\t}",
      "lastChapter": "i.fa-refresh + a@text",
      "name": "h3@text##.*《|》.*",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "id.htmlContent@html",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {
      "bookList": ""
    },
    "ruleSearch": {
      "author": "class.shop-info.1@text##\\[著\\]",
      "bookList": "class.list@a",
      "bookUrl": "href@js:\nlet href = String(result)\ntry{\nif(!href.match(/www/)){\n\t  \"/book/\"+ href.match(/\\/\\/(.*)\\.janpn/)[1] + \".html\"\n\t}\n\t}\n\tcatch(e){href}\n",
      "checkKeyWord": "我的",
      "lastChapter": "class.shop-info.2@span@text",
      "name": "class.shop-info.0@b@text##《|》"
    },
    "ruleToc": {
      "chapterList": "ul.panel-chapterlist a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://www.janpn.net/search.php?q={{key}}=15947871991047423724",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "全本小说#6",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xs5300.org#",
    "bookUrlPattern": "/\\d+_\\d+/",
    "customButton": false,
    "customOrder": 108,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/xuanhuanxiaoshuo/1_{{page}}.html\n修真小说::/xiuzhenxiaoshuo/2_{{page}}.html\n都市小说::/dushixiaoshuo/3_{{page}}.html\n穿越小说::/chuanyuexiaoshuo/4_{{page}}.html\n网游小说::/wangyouxiaoshuo/5_{{page}}.html\n科幻小说::/kehuanxiaoshuo/6_{{page}}.html",
    "lastUpdateTime": 1787069457850,
    "respondTime": 2139,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作 者：",
      "coverUrl": "id.bookimg@img@src",
      "intro": "id.intro@tag.p.1@text",
      "kind": "id.info@tag.p.2@text&&\nid.info@tag.p.1@text##最后更新：|状 态：",
      "lastChapter": "id.info@tag.p.3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.info@h1@text"
    },
    "ruleContent": {
      "content": "id.content@html##一秒记住.*最新章节！|清爽免费阅读请记.*|手机免费.*|www.*cc"
    },
    "ruleExplore": {
      "author": "class.s5@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "class.s2@a@href<js>\nvar id = result.match(/_(\\d+)/)[1];\nvar iid = parseInt(id/1000);\n'http://www.xs5300.org/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "class.s3@text",
      "name": "class.s2@a@text"
    },
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.grid@id.nr",
      "bookUrl": "tag.td.0@tag.a@href",
      "coverUrl": "tag.td.0@tag.a@href<js>\nvar id = result.match(/_(\\d+)/)[1];\nvar iid = parseInt(id/1000);\n'http://www.xs5300.org/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "tag.td.4@text&&\ntag.td.5@text",
      "lastChapter": "tag.td.1@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "tag.td.0@tag.a@text",
      "wordCount": "tag.td.3@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/modules/article/search.php?s=10362325638345863231&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "玄幻阁吧#1",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xuankuks.com/",
    "bookUrlPattern": "http://www.xuankuks.com/files/article/html/\\d+/\\d+/",
    "customButton": false,
    "customOrder": 109,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/sort1/{{page}}/\n武侠小说::/sort2/{{page}}/\n都市小说::/sort3/{{page}}/\n历史小说::/sort4/{{page}}/\n言情小说::/sort5/{{page}}/\n穿越小说::/sort6/{{page}}/\n科幻小说::/sort7/{{page}}/\n恐怖小说::/sort8/{{page}}/\n校园小说::/sort9/{{page}}/\n异界小说::/sort10/{{page}}/",
    "lastUpdateTime": 1786514524921,
    "respondTime": 6101,
    "ruleBookInfo": {
      "author": "id.count@tag.span.0@text",
      "coverUrl": "id.bookimg@img@src",
      "intro": "id.bookintro@text",
      "kind": "id.count@tag.span.3@text&&\nid.count@tag.span.2@text&&\nid.count@tag.span.1@text",
      "lastChapter": "class.new@tag.a.0@text",
      "name": "class.booktitle@h1@text"
    },
    "ruleContent": {
      "content": "id.content@textNodes##随机推荐："
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.dd.1@tag.span.0@text",
      "bookList": "id.sitebox@dl",
      "bookUrl": "h3@a@href",
      "coverUrl": "img@src",
      "intro": "tag.dd.3@text",
      "kind": "class.uptime@text",
      "lastChapter": "tag.dd.2@tag.a@text",
      "name": "h3@a@text",
      "wordCount": "tag.dd.1@tag.span.2@text"
    },
    "ruleToc": {
      "chapterList": "id.readerlist@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://www.xuankuks.com/modules/article/search.php?s=7673184438602983814&s={{key}}&searchtype=articlename",
    "weight": 0
  },
  {
    "bookSourceComment": "未知大佬制作，更新HINOTORI（qq）在源仓库发过的书源",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "开源书源",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.loubiqu.com",
    "bookUrlPattern": "http://www.biquge.info/\\d+_\\d+/",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 110,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36\"\n}",
    "lastUpdateTime": 1745852814602,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 3636,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作 者:",
      "canReName": "",
      "coverUrl": "id.fmimg@tag.img@src",
      "init": "",
      "intro": "id.intro@tag.p.0@text",
      "kind": "id.info@tag.p.1@text&&\nid.info@tag.p.2@text##类 别:|最后更新 :",
      "lastChapter": "id.info@tag.p.3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.info@h1@text",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "id.content@textNodes",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "class.s4@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "class.s2@a@href&lt;js>\nvar id = result.match(/_(\\d+)/)[1];\nvar iid = parseInt(id/1000);\n'http://www.biquge.info/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n&lt;/js>",
      "intro": "",
      "kind": "class.s5@text",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "class.odd.1@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "class.odd.0@tag.a@href",
      "coverUrl": "class.odd.0@tag.a@href&lt;js>\nvar id = result.match(/_(\\d+)/)[1];\nvar iid = parseInt(id/1000);\n'http://www.loubiqu.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n&lt;/js>",
      "intro": "",
      "kind": "",
      "lastChapter": "class.even.0@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.odd.0@tag.a@text",
      "wordCount": "class.even.1@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "http://www.biquge.info/modules/article/search.php?searchkey={{key}}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "有黄广告",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "免费小说网",
    "bookSourceType": 3,
    "bookSourceUrl": "http://www.freexiaoshuo.com",
    "customButton": false,
    "customOrder": 112,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "都市娱乐::/book/dushiyule/list_12_{{page}}.html\n武侠仙侠::/book/wuxiaxianxia/list_13_{{page}}.html\n奇幻玄幻::/book/qihuanxuanhuan/list_14_{{page}}.html\n科幻灵异::/book/kehuanlingyi/list_15_{{page}}.html\n历史军事::/book/lishijunshi/list_16_{{page}}.html\n竞技游戏::/book/jingjiyouxi/list_17_{{page}}.html\n实体书版::/book/shitinvsheng/list_18_{{page}}.html\n二次元い::/book/erciyuan/list_19_{{page}}.html",
    "lastUpdateTime": 1780207039810,
    "respondTime": 2973,
    "ruleBookInfo": {
      "author": "text.小说作者：@text##小说作者：",
      "downloadUrls": "text.本地下载@href",
      "intro": "&nbsp;\n📕书名：{{@@.dlbt_wz@text##《|》.*}}\n📍大小：{{@@.dl_kk_info@li.0@text##小说打包：}}\n👤作者：{{@@text.小说作者：@text##小说作者：}}\n🏷️类别：{{@@text.小说类别：@text##小说类别：}}\n🕐时间：{{@@text.更新时间：@text##更新时间：}}\n星级：{{@@text.小说星级：@text##小说星级：}}\n📜简介：{{@@#content_all@html}}"
    },
    "ruleContent": {},
    "ruleExplore": {
      "bookList": ".pldal",
      "bookUrl": ".pldal_r1_bt@a@href",
      "coverUrl": ".pldal_l1@img@src",
      "intro": ".pldal_r1_jj@text",
      "kind": ".pldal_r1_bt@a.1@text&&.pldal_r1_tips@span[-1,0]@text##\\[|\\]",
      "name": ".pldal_r1_bt@a.0@text##《|》.*"
    },
    "ruleSearch": {
      "bookList": "class.pldals",
      "bookUrl": ".pldal_r1_bt@a@href",
      "coverUrl": ".pldal_l1@img@src",
      "intro": ".pldal_r1_jj@text",
      "kind": ".pldal_r1_tips@span[0,1]@text",
      "name": ".pldal_r1_bt@a@text##《|》.*"
    },
    "ruleToc": {},
    "searchUrl": "/plus/search.php?keyword={{key}}&searchtype=titlekeyword&channeltype=0&orderby=&kwtype=0&pagesize=10&typeid=0&TotalResult=199&PageNo={{page}},{\n  \"charset\": \"GBK\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "二三中文#1",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.x23us.us",
    "bookUrlPattern": "https://www.x23us.com/book/\\d+",
    "customButton": false,
    "customOrder": 113,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787467051121,
    "respondTime": 1473,
    "ruleBookInfo": {
      "author": "class.fl@tag.td.1@text",
      "coverUrl": "id.fmimg@tag.img.0@src",
      "intro": "id.intro@text",
      "name": "id.content@tag.h1.0@text##\\s*全文阅读"
    },
    "ruleContent": {
      "content": "id.content@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.odd.1@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "class.odd.0@tag.a.0@href",
      "lastChapter": "class.even@tag.a.0@text",
      "name": "class.odd.0@tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd@tag.a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://www.x23us.us/modules/article/search.php?q={{key}},{\n  \"charset\": \"utf-8\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "作者: 梓澄(helloplhm-qwq)\n登录功能同步菠萝包轻小说书源\n发现懒得写",
    "bookSourceGroup": "🎨漫画,📚小说",
    "bookSourceName": "菠萝漫画",
    "bookSourceType": 2,
    "bookSourceUrl": "https://api.sfacg.com#漫画",
    "customButton": false,
    "customOrder": 114,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n\"content-type\": \"application/json\",\n\"sf-minip-info\": \"minip_novel/1.0.72(android;10)/wxmp\",\n\"authorization\": \"Basic YW5kcm9pZHVzZXI6MWEjJDUxLXl0Njk7KkFjdkBxeHE=\",\n\"user-agent\":\"minip_novel/1.0.72(android;10)/wxmp\"\n}",
    "lastUpdateTime": 1732303874152,
    "respondTime": 2985,
    "ruleBookInfo": {
      "author": "author",
      "coverUrl": "cover",
      "init": "<js>\nvar x = JSON.parse(result).data\nvar res = {\n    name: x.comicName,\n    author: x.expand.authorName,\n    latest: x.latestChapterTitle,\n    cover: x.comicCover,\n    tags: [x.expand.typeName, x.isFinished ? \"完结\" : \"连载\",(x.signStatus === \"普通\") ? \"\" : x.signStatus, x.point.toFixed(1)].join(\",\"),\n    intro: x.expand.intro,\n    url: `https://api.sfacg.com/comics/${x.comicId}/chaps?expand=needFireMoney,originNeedFireMoney,chapcover`\n}\nres\n</js>",
      "intro": "intro",
      "kind": "tags",
      "lastChapter": "latest",
      "name": "name",
      "tocUrl": "url"
    },
    "ruleContent": {
      "content": "<js>\nvar cnt = []\ndata = JSON.parse(result).data\ndata.forEach((x) => {\n  cnt.push(`<img src=\"${x}\">`)\n})\ncnt.join(\"\\n\")\n</js>",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "author",
      "bookList": "<js>\nvar list = JSON.parse(result).data.comics\nvar res = []\nlist.forEach((x) => {\n  res.push({\n    name: x.comicName,\n    author: x.expand.authorName,\n    latest: x.latestChapterTitle,\n    cover: x.comicCover,\n    tags: [x.expand.typeName, x.isFinished ? \"完结\" : \"连载\",(x.signStatus === \"普通\") ? \"\" : x.signStatus, x.point.toFixed(1)].join(\",\"),\n    intro: x.expand.intro,\n    url: `https://api.sfacg.com/comics/${x.comicId}?expand=typeName,intro,markCount,authorName,authorIntro,fav,bigComicCover,bigBgBanner,ticket,tags,originalauthor,authoravatar,discount,discountExpireDate,totalNeedFireMoney,originTotalNeedFireMoney`\n  })\n})\nres\n</js>",
      "bookUrl": "url",
      "checkKeyWord": "血姬与骑士",
      "coverUrl": "cover",
      "intro": "intro",
      "kind": "tags",
      "lastChapter": "latest",
      "name": "name"
    },
    "ruleToc": {
      "chapterList": "<js>\ndata = JSON.parse(result).data.reverse()\nvar w = []\nvar cid = baseUrl.split(\"?\")[0].match(/\\d+/)[0]\njava.log(cid)\ndata.forEach((x) => {\n  w.push({\n    title: x.chapterTitle,\n    isvip: x.isVip,\n    url: `https://api.sfacg.com/comics/${cid}/chappics/${x.pathName}?autoOrder=false&useCoupon=true`,\n    update: x.addDate.replace(\"T\", \"\")\n  })\n})\nw\n</js>",
      "chapterName": "title",
      "chapterUrl": "url",
      "isVip": "isvip",
      "updateTime": "update"
    },
    "searchUrl": "/search/comics/result/new?q={{key}}&expand=comics,typeName,authorName,intro,latestchaptitle,latestchapintro,tags,sysTags&sort=hot&page={{page - 1}}&size=12&systagids=&isFinish=-1&updateDays=-1",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "天下书盟",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.fbook.net/",
    "customButton": false,
    "customOrder": 115,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"男生\",\"url\":\"http://www.fbook.net/all/nansheng?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"玄幻\",\"url\":\"http://www.fbook.net/all/xuanhuan?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"奇幻\",\"url\":\"http://www.fbook.net/all/qihuan?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"武侠\",\"url\":\"http://www.fbook.net/all/wuxia?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"仙侠\",\"url\":\"http://www.fbook.net/all/xianxia?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"都市\",\"url\":\"http://www.fbook.net/all/dushi?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"现实\",\"url\":\"http://www.fbook.net/all/xianshi?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"军事\",\"url\":\"http://www.fbook.net/all/junshi?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"历史\",\"url\":\"http://www.fbook.net/all/lishi?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"游戏\",\"url\":\"http://www.fbook.net/all/youxi?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"体育\",\"url\":\"http://www.fbook.net/all/tiyu?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"科幻\",\"url\":\"http://www.fbook.net/all/kehuan?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"刑侦\",\"url\":\"http://www.fbook.net/all/xingzhen?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"探险\",\"url\":\"http://www.fbook.net/all/tanxian?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.211}},{\"title\":\"异能\",\"url\":\"http://www.fbook.net/all/yineng?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.211}},\n\n\n\n{\"title\":\"女生\",\"url\":\"http://www.fbook.net/all/nvsheng?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"青春\",\"url\":\"http://www.fbook.net/all/qingchun?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"古言\",\"url\":\"http://www.fbook.net/all/guyan?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"现言\",\"url\":\"http://www.fbook.net/all/xianyan?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"穿越\",\"url\":\"http://www.fbook.net/all/chuanyue?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"纯爱\",\"url\":\"http://www.fbook.net/all/chunai?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"同人\",\"url\":\"http://www.fbook.net/all/tongren?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"悬疑\",\"url\":\"http://www.fbook.net/all/xuanyi?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"灵异\",\"url\":\"http://www.fbook.net/all/lingyi?page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"轻小说\",\"url\":\"http://www.fbook.net/all/qingxiaoshuo?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.211}}]",
    "lastUpdateTime": 1787420191290,
    "respondTime": 6399,
    "ruleBookInfo": {
      "author": "h1@span@text",
      "coverUrl": "div.c_img@img@src",
      "intro": "class.cl_box@tag.div.2@text##.*字数：\\d+|免费试读|放入书架|打开目录@js:result.replace(/：/g,'\\:').replace(/\\s/g,'').replace(/(\\d+)/g,'$1●').replace(/(\\d+)\\d{4}●/g,'$1万').replace(/(\\d+)\\d{3}/g,'$1千').replace('万藏','万收藏').replace(/●/g,'').replace(/(千|万)/g,'$1 ').replace(/(\\d+)/g,'$1 ')",
      "kind": ".c_text@a.0@text&&.cover_content.clearfix@.cover_left@.cl_nrjj.pt_20.0@span.0@textNodes##\\[.*\\].*\\s|免费试读|放入书架|打开目录",
      "lastChapter": "id.qh-tabcon2@a.0@text",
      "name": "h1@textNodes",
      "tocUrl": "@js:baseUrl.replace('/book','/list')",
      "wordCount": ".c_text@text<js>##.*(字数.*?)总.*##$1###</js><js>##字数：</js>@js:result.replace(/：/g,'\\:').replace(/\\s/g,'').replace(/(\\d+)/g,'$1●').replace(/\\d{4}●/g,'万 ').replace(/(\\d+)\\d{3}/g,'$1千 ')"
    },
    "ruleContent": {
      "content": ".content@html",
      "nextContentUrl": ".nextchapter@href"
    },
    "ruleExplore": {
      "author": "tag.span.0@text",
      "bookList": "div.all-book-list ul li",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "img@src",
      "intro": "tag.a.-1@text",
      "kind": "class.float-l@tag.a!0:-1:-2@text",
      "name": "tag.a.1@text"
    },
    "ruleSearch": {
      "author": "h4@text##作者：",
      "bookList": "div.container>div.library_zplb>div",
      "bookUrl": "h3@a@href",
      "coverUrl": "img@src",
      "intro": "p@text",
      "kind": "tag.span.0@text",
      "lastChapter": ".latest_text@a@text",
      "name": "h3@a@text"
    },
    "ruleToc": {
      "chapterList": "ul#list1 li a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://www.fbook.net/Search/Index?searchType=All&searchKey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "❤️嘛电子书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.wsskw.com",
    "bookUrlPattern": "http://www.wsskw.com/read/\\d+/",
    "customButton": false,
    "customOrder": 116,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "武侠仙侠::/wuxia/index_{{page}}.html\n都市言情::/yanqing/index_{{page}}.html\n耽美小说::/danmei/index_{{page}}.html\n玄幻小说::/xuanhuan/index_{{page}}.html\n青春校园::/xiaoyuan/index_{{page}}.html\n网游竞技::/wangyou/index_{{page}}.html\n灵异推理::/kongbu/index_{{page}}.html\n纪实小说::/jishi/index_{{page}}.html\n军事历史::/lishi/index_{{page}}.html\n科幻小说::/kehuan/index_{{page}}.html\n管理哲学::/zhexue/index_{{page}}.html\n学习资料::/xuexi/index_{{page}}.html\n总排行榜::/paihangbang/index_{{page}}.html\n月排行榜::/mpaihangbang/index_{{page}}.html\n周排行榜::/wpaihangbang/index_{{page}}.html\n日排行榜::/dpaihangbang/index_{{page}}.html\n封推小说::/fengtui/index_{{page}}.html\n金牌推荐::/jinpaituijian/index_{{page}}.html\n网站推荐::/tuijian/index_{{page}}.html\n最新书籍::/new/index_{{page}}.html",
    "lastUpdateTime": 1769594141015,
    "respondTime": 5408,
    "ruleBookInfo": {
      "author": "class.detail_right@ul@tag.li.0@a@text",
      "coverUrl": "class.detail_right@img@src",
      "intro": "class.detail_right@ul@tag.li.4@text##简介：|作者.*发布.*推荐地址.*/",
      "kind": "class.detail_right@ul@tag.li.2@text##更新日期：",
      "lastChapter": "class.detail_right@ul@tag.li.3@a@text",
      "name": "class.detail_right@h1@text"
    },
    "ruleContent": {
      "content": "id.content@html##请记住本书.*|最新网址.*|书快书快.*|书快电子书.*|本文由.*小说论坛.*cn|您下载的文件.*为你制作!|【.*电子书】-立志.*下载论坛!",
      "imageStyle": "0",
      "nextContentUrl": "text.下一章@href"
    },
    "ruleExplore": {
      "author": "##作者：([^<]+)<##$1###",
      "bookList": "//div[5]/div[2]/div/ul/li",
      "bookUrl": "class.red@href",
      "coverUrl": "tag.a.0@href##.+\\D((\\d+)\\d{3})\\D##http://www.wsskw.com/headimgs/$2/$1/s$1.jpg###",
      "intro": "class.u@textNodes",
      "kind": "##更新：([^<]+)<##$1###",
      "lastChapter": "tag.a.1@text",
      "name": "tag.a.0@text##txt.*",
      "wordCount": "##大小：([^<]+)<##$1###"
    },
    "ruleSearch": {
      "author": "tag.td.3@text",
      "bookList": "tag.tbody@tag.tr!0",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.a.0@href##.+\\D((\\d+)\\d{3})\\D##http://www.wsskw.com/headimgs/$2/$1/s$1.jpg###",
      "kind": "tag.td.4@text",
      "lastChapter": "tag.td.2@text",
      "name": "tag.td.1@text"
    },
    "ruleToc": {
      "chapterList": "class.showInfo.1@li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.wsskw.com/so.html?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "$$",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "🎨 神漫画",
    "bookSourceType": 2,
    "bookSourceUrl": "https://m.taomanhua.com/",
    "bookUrlPattern": "已校验",
    "customButton": false,
    "customOrder": 117,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "每日更新::https://m.taomanhua.com/api/updatelist/?productname=smh&platformname=wap\n综合榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=all&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n自制榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=self&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n少年榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=boy&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n少女榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=girl&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n新作榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=new&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n黑马榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=dark&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n付费榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=charge&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n免费榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=free&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n完结榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=finish&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n连载榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=serialize&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n人气::https://m.taomanhua.com/api/getsortlist/?comic_sort=&orderby=click&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n更新::https://m.taomanhua.com/api/getsortlist/?comic_sort=&orderby=date&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n评分::https://m.taomanhua.com/api/getsortlist/?comic_sort=&orderby=score&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n收藏::https://m.taomanhua.com/api/getsortlist/?comic_sort=&orderby=shoucang&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n连载::https://m.taomanhua.com/api/getsortlist/?comic_sort=lianzai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n完结::https://m.taomanhua.com/api/getsortlist/?comic_sort=wanjie&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n热血::https://m.taomanhua.com/api/getsortlist/?comic_sort=rexue&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n机战::https://m.taomanhua.com/api/getsortlist/?comic_sort=jizhan&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n运动::https://m.taomanhua.com/api/getsortlist/?comic_sort=yundong&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n推理::https://m.taomanhua.com/api/getsortlist/?comic_sort=tuili&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n冒险::https://m.taomanhua.com/api/getsortlist/?comic_sort=maoxian&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n耽美::https://m.taomanhua.com/api/getsortlist/?comic_sort=liaomei&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n百合::https://m.taomanhua.com/api/getsortlist/?comic_sort=baihe&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n搞笑::https://m.taomanhua.com/api/getsortlist/?comic_sort=gaoxiao&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n战争::https://m.taomanhua.com/api/getsortlist/?comic_sort=zhanzhen&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n神魔::https://m.taomanhua.com/api/getsortlist/?comic_sort=shenmo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n忍者::https://m.taomanhua.com/api/getsortlist/?comic_sort=renzhe&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n竞技::https://m.taomanhua.com/api/getsortlist/?comic_sort=jingji&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n悬疑::https://m.taomanhua.com/api/getsortlist/?comic_sort=xuanyi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n社会::https://m.taomanhua.com/api/getsortlist/?comic_sort=shehui&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n恋爱::https://m.taomanhua.com/api/getsortlist/?comic_sort=lianai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n宠物::https://m.taomanhua.com/api/getsortlist/?comic_sort=chongwu&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n吸血::https://m.taomanhua.com/api/getsortlist/?comic_sort=xixue&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n萝莉::https://m.taomanhua.com/api/getsortlist/?comic_sort=luoli&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n后宫::https://m.taomanhua.com/api/getsortlist/?comic_sort=hougong&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n御姐::https://m.taomanhua.com/api/getsortlist/?comic_sort=yujie&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n霸总::https://m.taomanhua.com/api/getsortlist/?comic_sort=bazong&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n玄幻::https://m.taomanhua.com/api/getsortlist/?comic_sort=xuanhuan&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n古风::https://m.taomanhua.com/api/getsortlist/?comic_sort=gufeng&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n历史::https://m.taomanhua.com/api/getsortlist/?comic_sort=lishi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n漫改::https://m.taomanhua.com/api/getsortlist/?comic_sort=mangai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n游戏::https://m.taomanhua.com/api/getsortlist/?comic_sort=youxi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n穿越::https://m.taomanhua.com/api/getsortlist/?comic_sort=chuanyue&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n恐怖::https://m.taomanhua.com/api/getsortlist/?comic_sort=kongbu&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n真人::https://m.taomanhua.com/api/getsortlist/?comic_sort=zhenren&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n防疫::https://m.taomanhua.com/api/getsortlist/?comic_sort=fangyi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n防疫::https://m.taomanhua.com/api/getsortlist/?comic_sort=fangyi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n科幻::https://m.taomanhua.com/api/getsortlist/?comic_sort=kehuan&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n都市::https://m.taomanhua.com/api/getsortlist/?comic_sort=dushi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n武侠::https://m.taomanhua.com/api/getsortlist/?comic_sort=wuxia&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n修真::https://m.taomanhua.com/api/getsortlist/?comic_sort=xiuzhen&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n生活::https://m.taomanhua.com/api/getsortlist/?comic_sort=shenghuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n动作::https://m.taomanhua.com/api/getsortlist/?comic_sort=dongzuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n大陆::https://m.taomanhua.com/api/getsortlist/?comic_sort=dalu&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n日本::https://m.taomanhua.com/api/getsortlist/?comic_sort=riben&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n港台::https://m.taomanhua.com/api/getsortlist/?comic_sort=gangtai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n欧美::https://m.taomanhua.com/api/getsortlist/?comic_sort=oumei&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n韩国::https://m.taomanhua.com/api/getsortlist/?comic_sort=os&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n全彩::https://m.taomanhua.com/api/getsortlist/?comic_sort=quancai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n黑白::https://m.taomanhua.com/api/getsortlist/?comic_sort=heibai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n小说::https://m.taomanhua.com/api/getsortlist/?comic_sort=xiaoshuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n杂志::https://m.taomanhua.com/api/getsortlist/?comic_sort=zazhi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n日更::https://m.taomanhua.com/api/getsortlist/?comic_sort=rigeng&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n新作::https://m.taomanhua.com/api/getsortlist/?comic_sort=xinzuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n精品::https://m.taomanhua.com/api/getsortlist/?comic_sort=jingpin&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap",
    "lastUpdateTime": 1623258221981,
    "loginUrl": "",
    "respondTime": 884,
    "ruleBookInfo": {
      "author": "$.data.comic_author",
      "coverUrl": "$.data.cover_list[0]",
      "intro": "$.data.comic_desc",
      "kind": "$.data.comic_type_new[*].name",
      "lastChapter": "$.data.last_chaptet_name",
      "name": "$.data.comic_name"
    },
    "ruleContent": {
      "content": "<js>\n//获取章节位置\nindex=parseInt(chapter.index);\nindex=index+1;\nnum=parseInt(book.totalChapterNum);\nindex=num-index;\n\n//画质可选low middle high\nvar img_ext = \"-smh.middle.webp\";\nvar pic = \"https://mhpic.manhualang.com\"\nvar html =\"\";\n\njson=JSON.parse(result);\ncomic_chapter= json.data.comic_chapter;\n\nvar end_num  = comic_chapter[index].end_num;\nvar rule=comic_chapter[index].rule;\nchapter_domain=comic_chapter[index].chapter_domain;\n\nheader={\"Referer\":baseUrl};\nheaders={\"headers\":JSON.stringify(header)};\n\nfor( let i = 1;i <= end_num; i++) {\n   let url = pic  +rule.replace(/\\$\\$/g,i) +img_ext;\n   html += '<img src=\"' + url +','+JSON.stringify(headers)+'\">\\n';\n}\nresult = html\n</js>",
      "imageStyle": "FULL",
      "nextContentUrl": "",
      "webJs": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.comic_author",
      "bookList": "$.data.update[*].info[*]||$.data.data[*]||$.data[*]",
      "bookUrl": "https://m.taomanhua.com/api/getcomicinfo_body/?comic_id={$.comic_id}&productname=smh&platformname=wap",
      "coverUrl": "http://image.mhxk.com/mh/{$.comic_id}.jpg-600x800.webp",
      "kind": "$.comic_type||$.sort_typelist##[a-zA-Z]|\\|",
      "lastChapter": "$.last_chapter_name||$.comic_chapter_name",
      "name": "$.comic_name",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "-$.data.comic_chapter.*",
      "chapterName": "$.chapter_name@put:{chapter_id:$.chapter_id}",
      "chapterUrl": "$.chapter_id@js:baseUrl+\"&chapter_id=\"+result"
    },
    "searchUrl": "https://m.taomanhua.com/api/getsortlist/?search_type=&search_key={{key}}&page={{page}}&size=30&productname=smh&platformname=wap",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "书趣阁吧",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xshuquge.net",
    "customButton": false,
    "customOrder": 118,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787424982330,
    "respondTime": 1198,
    "ruleBookInfo": {
      "author": ".small > span:nth-child(1)@text",
      "coverUrl": "img:nth-child(1)@src",
      "intro": ".intro@text## 展开.*",
      "kind": ".small > span:nth-child(2)@text##分类：",
      "lastChapter": ".last > a@text",
      "name": "h2@text",
      "wordCount": "span:nth-child(4)@text##字数："
    },
    "ruleContent": {
      "content": "id.content@html##最新网址：www.xshuquge.net|http://www.xshuquge.net.*|请记住本书首发域名.*|fri.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author.0@text",
      "bookList": "class.bookbox",
      "bookUrl": ".bookname > a.0@href",
      "checkKeyWord": "我的",
      "kind": "class.cat.0@text##分类：",
      "lastChapter": "class.update.0@tag.a@text",
      "name": ".bookname > a.0@text"
    },
    "ruleToc": {
      "chapterList": "class.listmain@tag.dl@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/search.php,{\n\"method\" :\"POST\",\n\"body\": \"searchkey={{key}}&submit=\"}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爱笔趣阁#2",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.ibiquge.info/",
    "bookUrlPattern": "https://www.ibiquge.net/\\d+_\\d+/",
    "customButton": false,
    "customOrder": 119,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻奇幻\",\"url\":\"/xuanhuanxiaoshuo/1_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"修真仙侠\",\"url\":\"/xiuzhenxiaoshuo/2_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市青春\",\"url\":\"/dushixiaoshuo/3_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史军事\",\"url\":\"/lishixiaoshuo/4_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游竞技\",\"url\":\"/wangyouxiaoshuo/5_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻灵异\",\"url\":\"/kehuanxiaoshuo/6_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其它小说\",\"url\":\"/qitaxiaoshuo/7_{{page}}.html\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.295}}]",
    "lastUpdateTime": 1786189230972,
    "respondTime": 4279,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@a@text",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.intro@text",
      "kind": "id.info@tag.p.2@text##最后更新：",
      "lastChapter": "id.info@tag.p.3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.info@h1@text"
    },
    "ruleContent": {
      "content": "id.content@html##天才一秒记住.*无广告！|断更反馈|章节错误.*请耐心等待。"
    },
    "ruleExplore": {
      "author": "class.s4@tag.a@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@tag.a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.ibiquge.net/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "class.s5@text",
      "lastChapter": "class.s3@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.s2@tag.a@text"
    },
    "ruleSearch": {
      "author": "class.s4@tag.a@text",
      "bookList": "class.novelslist2@tag.li!0",
      "bookUrl": "class.s2@tag.a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.ibiquge.net/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "class.s3@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.s2@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/search.html?name={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "/*\n\t作者：明月照大江\n\t提醒：此书源为免费制作并分享，禁止任何形式的倒卖行为\n\t更新地址：https://skybook.pages.dev\n*/",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "连城读书",
    "bookSourceType": 0,
    "bookSourceUrl": "https://lcread.com",
    "customButton": false,
    "customOrder": 120,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvip = cache.get(\"lcread\") == 0 ? \"0\" : \"10\"\nconst categoryMap1 = {\n  \"玄幻\": 17,\n  \"同人\": 15,\n  \"短篇\": 22,\n  \"都市\": 7,\n  \"灵异\": 9,\n  \"奇幻\": 18,\n  \"青春\": 4,\n  \"武侠\": 5,\n  \"仙侠\": 6,\n  \"历史\": 12,\n  \"科幻\": 10,\n  \"现实\": 19,\n  \"悬疑\": 11,\n  \"游戏\": 14,\n  \"军事\": 8,\n  \"明月\":0\n};\nconst categoryMap2 = {\n  \"幻言\": 1,\n  \"青春\": 4,\n  \"古言\": 3,\n  \"现言\": 2,\n  \"短篇\": 22,\n  \"同人\": 15,\n  \"武侠\": 5,\n  \"玄幻\": 17,\n  \"灵异\": 9,\n  \"仙侠\": 6,\n  \"悬疑\": 11,\n  \"游戏\": 14\n};\nconst categoryMap3 = {\n  \"幻耽\": 24,\n  \"现耽\": 25,\n  \"古耽\": 26,\n  \"青春\": 4,\n  \"同人\": 15,\n  \"短篇\": 22,\n  \"奇幻\": 18,\n  \"仙侠\": 6,\n  \"灵异\": 9,\n  \"百合\": 20,\n  \"游戏\": 14,\n  \"悬疑\": 11\n};\nlet push = (list, title, url, type) => list.push({\n    title: title,\n    url: url,\n    style: {\n        layout_flexBasisPercent: type\n    }\n});\nlet group = new Array;\npush(group, \"▱▱▱▱　男生　▱▱▱▱\", null, 1)\nfor (let key in categoryMap1) {\n  let extraParams = {\n  \"prefer\": \"10\",\n  \"uID\": \"0\",\n  \"bt\": categoryMap1[key],\n  \"vip\": vip,\n  \"state\": \"0\",\n  \"rank\": \"0\",\n  \"pn\": \"0\"\n}\nlet u = bookRequest(\"list/commbooks\", null, extraParams)\n push(group, key, u, 0.21)\n}\npush(group, \"▱▱▱▱　女生　▱▱▱▱\", null, 1)\nfor (let key in categoryMap2) {\n  let extraParams = {\n  \"prefer\": \"20\",\n  \"uID\": \"0\",\n  \"bt\": categoryMap2[key],\n  \"vip\": vip,\n  \"state\": \"0\",\n  \"rank\": \"0\",\n  \"pn\": \"0\"\n}\nlet u = bookRequest(\"list/commbooks\", null, extraParams)\n push(group, key, u, 0.21)\n}\npush(group, \"▱▱▱▱　耽美　▱▱▱▱\", null, 1)\nfor (let key in categoryMap3) {\n  let extraParams = {\n  \"prefer\": \"50\",\n  \"uID\": \"0\",\n  \"bt\": categoryMap3[key],\n  \"vip\": vip,\n  \"state\": \"0\",\n  \"rank\": \"0\",\n  \"pn\": \"0\"\n}\nlet u = bookRequest(\"list/commbooks\", null, extraParams)\n push(group, key, u, 0.21)\n}\nJSON.stringify(group)",
    "header": "{\n\t\"Referer\":\"https://my.lc1001.com/\"\n}",
    "jsLib": "function generateRequest(path, signParams, bodyParams, baseUrl, secretKey) {\n  const { java } = this;\n  baseUrl = baseUrl || \"http://a.lc1001.com\";\n  secretKey = secretKey || \"XKrqBSeeEwgDy2pT\";\n  bodyParams = bodyParams || {};\n  \n  var timestamp = Date.now().toString();\n  signParams.timestamp = timestamp;\n  signParams.consumerKey = \"LCREAD_ANDROID\";\n  \n  var keys = Object.keys(signParams).sort();\n  var queryString = \"\";\n  for (var i = 0; i < keys.length; i++) {\n    queryString += keys[i] + \"%3D\" + signParams[keys[i]];\n  }\n  \n  var signData = \"GET\" + encodeURIComponent(baseUrl + path) + queryString + secretKey;\n  var sign = java.md5Encode(signData);\n  \n  var allParams = {};\n  \n  for (var key in signParams) {\n    if (signParams.hasOwnProperty(key)) {\n      allParams[key] = signParams[key];\n    }\n  }\n  \n  allParams.sign = sign;\n  \n  for (var key in bodyParams) {\n    if (bodyParams.hasOwnProperty(key)) {\n      allParams[key] = bodyParams[key];\n    }\n  }\n  \n  var body = \"\";\n  for (var key in allParams) {\n    if (allParams.hasOwnProperty(key)) {\n      if (body) body += \"&\";\n      body += key + \"=\" + allParams[key];\n    }\n  }\n  \n  return baseUrl + path + \",{\\n  \\\"body\\\": \\\"\" + body + \"\\\",\\n  \\\"method\\\": \\\"POST\\\"\\n}\";\n}\n\nfunction bookRequest(apiPath, bid, extraParams, bodyParams, uid) {\n  extraParams = extraParams || {};\n  bodyParams = bodyParams || {};\n  uid = uid || \"0\";\n  \n  var signParams = {\n    uID: uid,\n  };\n  if (/^info|^book/.test(apiPath)) {\n  \tsignParams.bID = bid\n  }\n  \n  for (var key in extraParams) {\n    if (extraParams.hasOwnProperty(key)) {\n      signParams[key] = extraParams[key];\n    }\n  }\n  \n  return this.generateRequest(\"/app/\" + apiPath, signParams, bodyParams);\n}",
    "lastUpdateTime": 1769593047518,
    "loginUi": "\n[\n    {\n        name: \"账号\",\n        type: \"text\"\n    },\n    {\n        name: \"密码\",\n        type: \"password\"\n    },\n    {\n        name: \"切换发现类型\",\n        type: \"button\",\n        action: \"set()\"\n    }\n]",
    "loginUrl": "function login() {\n  const loginInfo = source.getLoginInfoMap();\n  const username = loginInfo.get(\"账号\");\n  const password = loginInfo.get(\"密码\");\n  const timestamp = Date.now().toString();\n  const aid = String(Packages.java.util.UUID.randomUUID())\n    .replace(/-/g, \"\")\n    .slice(0, 16);\n\n  try {\n    java.toast(\"正在登录...请稍候\");\n    const consumerKey = \"LCREAD_ANDROID\";\n    const url = \"http://a.lc1001.com/app/sso/pwdMdLogOn\";\n    const method = \"GET\";\n    const secret = \"XKrqBSeeEwgDy2pT\";\n    const md5Pwd = java.md5Encode(password).toLowerCase();\n    const plain = `consumerKey=${consumerKey}` + `mdPwd=${md5Pwd}` + `pcd=${username}` + `timestamp=${timestamp}`;\n    const sign = java.md5Encode(method + encodeURIComponent(url + plain) + secret).toLowerCase();\n    const loginUrl = `${url}?consumerKey=${consumerKey}&timestamp=${timestamp}&sign=${sign}&pcd=${username}&mdPwd=${md5Pwd}&mType=XIAOMI-23049RAD8C&PACKINGCHANNEL=WANDOUJIA&imei=${aid}&androidID=${aid}`;\n    java.log(loginUrl)\n    const response = java.get(loginUrl, {});\n    const responseBody = java.log(response.body());\n\n    if (responseBody.includes(\"UNAME\")) {\n      java.log(\"登录成功\");\n      source.setVariable(responseBody);\n      java.toast(\"✅登录成功\");\n    } else {\n      java.log(\"❌登录失败，服务器返回: \" + responseBody);\n    }\n  } catch (error) {\n    java.log(\"❌登录失败: \" + error.message);\n  }\n}\n\nfunction set() {\n  free = cache.get(\"lcread\")\n  if (free == 0) {\n    cache.put(\"lcread\", \"1\")\n  } else {\n    cache.put(\"lcread\", \"0\")\n  }\n  msg = cache.get(\"lcread\") == 0 ? \"全部\" : \"免费\"\n  java.toast(\"切换成功！\\n当前发现类型：\" + msg)\n}",
    "respondTime": 11783,
    "ruleBookInfo": {
      "author": "ANAME",
      "coverUrl": "COVERURL",
      "init": "DATA",
      "intro": "CONTENT",
      "kind": "BTNAME",
      "lastChapter": "NEWCHAPTER",
      "name": "BNAME",
      "tocUrl": "@js:\njava.put(\"bid\", bid = \"{{$.BID}}\");\nvar extraParams = {isUpdate: \"0\"};\nu = \"data:;base64,\"+java.base64Encode([\"info/bookcata\", bid, JSON.stringify(extraParams)].join(\"-\"))+ ',{\"type\":\"LCReadm\"}';"
    },
    "ruleContent": {
      "content": "@js:;for(var \\u0076\\u0061\\u006c\\u0069\\u0064\\u0048\\u006d\\u0061\\u0063,\\u0063\\u0064\\u0061\\u0074\\u0061,\\u0075\\u0069\\u0064,dT‍‌,BF‍‌,uy‍‌,df‍‌=1,lb‍‌,\\u0074\\u006f\\u006b\\u0065\\u006e,\\u0063\\u006f\\u006d\\u006d\\u0065\\u006e\\u0074,\\u0065\\u0072\\u0072\\u006f\\u0072\\u004d\\u0073\\u0067;df‍‌;){if(2>df‍‌){try{for(var df‍‌=1,Dz‍‌=2;df‍‌;)10<df‍‌--&&(df‍‌<11&&(df‍‌-=7,uy‍‌+='\\x73',{})||df‍‌>11&&(df‍‌-=8,dT‍‌+='\\x72',1)||(df‍‌-=3,dT‍‌+='\\x56\\x61\\x72\\x69\\x61'),true)||(++df‍‌<5||((df‍‌>7||((6>df‍‌++||((7<df‍‌||(dT‍‌='\\x67\\x65\\x74\\x56\\x61',df‍‌+=6,\"\"))&&(df‍‌=0,\\u0074\\u006f\\u006b\\u0065\\u006e=\\u004a\\u0053\\u004f\\u004e[uy‍‌+='\\x65'](\\u0073\\u006f\\u0075\\u0072\\u0063\\u0065[dT‍‌+='\\x62\\x6C\\x65']())[BF‍‌+='\\x41'][lb‍‌+='\\x4E']),!{}))&&(df‍‌+=4,uy‍‌='\\x70\\x61\\x72\\x73'),![]))&&(9<df‍‌||(9>df‍‌&&(df‍‌-=6,BF‍‌='\\x44\\x41\\x54',!false)||(uy‍‌='\\x70\\x61\\x72',df‍‌+=2),![]))&&(df‍‌=12,dT‍‌='\\x67\\x65\\x74'),false))&&(3<df‍‌||(df‍‌>2&&(df‍‌+=3,BF‍‌='\\x44\\x41\\x54',1)||(2>df‍‌||(lb‍‌='\\x54\\x4F\\x4B\\x45',df‍‌+=5,!true))&&(df‍‌=9,lb‍‌='\\x55\\x49'),null))&&(\\u0075\\u0069\\u0064=\\u004a\\u0053\\u004f\\u004e[uy‍‌+='\\x65'](\\u0073\\u006f\\u0075\\u0072\\u0063\\u0065[dT‍‌+='\\x69\\x61\\x62\\x6C\\x65']())[BF‍‌+='\\x41'][lb‍‌+='\\x44'],++df‍‌);}catch(eb){for(var df‍‌=2;df‍‌;){df‍‌>1&&(df‍‌=1,\\u0075\\u0069\\u0064=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,!false)||(df‍‌=0,\\u0074\\u006f\\u006b\\u0065\\u006e=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064);}}df‍‌=Dz‍‌;}else{try{for(var df‍‌=7,Dz‍‌=0;df‍‌;)(df‍‌>40||(df‍‌<15&&(df‍‌<5&&(3>df‍‌&&((2>df‍‌||(df‍‌+=47,dT‍‌='\\x31',!1))&&(df‍‌+=10,\\u0076\\u0061\\u006c\\u0069\\u0064\\u0048\\u006d\\u0061\\u0063=uy‍‌+='\\x32\\x5A\\x67\\x6D\\x46\\x45\\x47\\x59\\x4E\\x6C\\x51\\x65\\x67\\x2B\\x6D\\x66\\x4F\\x4E\\x38\\x6D\\x33\\x68\\x76\\x51\\x70\\x6F\\x3D'),!0)||4>df‍‌&&(df‍‌+=27,dT‍‌='\\x01\\x02\\x03\\x04\\x05',!undefined)||(df‍‌=5,\\u0075\\u0073\\u0065\\u0072\\u0054\\u006f\\u006b\\u0065\\u006e[uy‍‌+='\\x6E']=\\u0074\\u006f\\u006b\\u0065\\u006e),!null)||8>df‍‌&&((df‍‌>6||(6>df‍‌&&(df‍‌+=16,dT‍‌='\\x70\\x61',[])||(\\u006b\\u0065\\u0079=\\u006a\\u0061\\u0076\\u0061[uy‍‌+='\\x42\\x79\\x74\\x65\\x73'](dT‍‌+='\\x31\\x39\\x6B'),df‍‌=33),false))&&(df‍‌=9,\\u0063\\u0064\\u0061\\u0074\\u0061=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064),!false)||10>--df‍‌&&(8>df‍‌&&(uy‍‌='\\x61\\x6A',df‍‌+=16,{})||(df‍‌>8||(df‍‌+=8,uy‍‌='\\x68',![]))&&(df‍‌+=23,\\u0076\\u0061\\u006c\\u0069\\u0064\\u0048\\u006d\\u0061\\u0063=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064),!null)||(df‍‌<12||((12<df‍‌||(df‍‌=52,lb‍‌='\\x43\\x54\\x58',!1))&&(df‍‌+=13,\\u0063\\u006f\\u006d\\u006d\\u0065\\u006e\\u0074=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064),undefined))&&(9<--df‍‌&&(df‍‌=50,uy‍‌='\\x74\\x6F\\x6B',[])||(df‍‌=\\u0053\\u0074\\u0072\\u0069\\u006e\\u0067(\\u006a\\u0061\\u0076\\u0061['\\x48\\x4D\\x61\\x63\\x42\\x61\\x73\\x65\\x36\\x34'](\\u0063\\u006f\\u006d\\u006d\\u0065\\u006e\\u0074,'\\x48\\x6D\\x61\\x63\\x53\\x48\\x41\\x32\\x35\\x36','\\x73\\x6B\\x79\\x62\\x6F\\x6F\\x6B'))!==\\u0076\\u0061\\u006c\\u0069\\u0064\\u0048\\u006d\\u0061\\u0063?43:13)),1)||df‍‌>27&&((32>df‍‌||((df‍‌>37||(df‍‌-->34&&(df‍‌>35&&(\\u0072\\u0065\\u0073\\u0075\\u006c\\u0074=\\u006a\\u0061\\u0076\\u0061[uy‍‌+='\\x78'](\\u0062\\u006f\\u006f\\u006b\\u0052\\u0065\\u0071\\u0075\\u0065\\u0073\\u0074(\\u0063\\u0064\\u0061\\u0074\\u0061[(df‍‌=14)-14],\\u0063\\u0064\\u0061\\u0074\\u0061[1],\\u004a\\u0053\\u004f\\u004e[dT‍‌+='\\x65'](\\u0063\\u0064\\u0061\\u0074\\u0061[2]),\\u0075\\u0073\\u0065\\u0072\\u0054\\u006f\\u006b\\u0065\\u006e,\\u0063\\u0064\\u0061\\u0074\\u0061[4])),true)||34<df‍‌&&(df‍‌-=17,BF‍‌='\\x64\\x65\\x63\\x72\\x79',!undefined)||(df‍‌=6,uy‍‌+='\\x72\\x54\\x6F'),true)||(df‍‌<32||(33>df‍‌&&(df‍‌-=17,uy‍‌='\\x73\\x74\\x72\\x54\\x6F\\x42',!false)||(uy‍‌='\\x70',df‍‌=51),void 0))&&(df‍‌+=7,uy‍‌='\\x30\\x4C\\x36\\x64\\x76\\x77\\x52\\x50\\x2F\\x33\\x6F'),!{}))&&(39<df‍‌||((df‍‌<39||(df‍‌+=8,uy‍‌='\\x62\\x61\\x73\\x65\\x36\\x34\\x44\\x65\\x63\\x6F\\x64\\x65\\x54\\x6F\\x42',0))&&(uy‍‌+='\\x79\\x66\\x32\\x37\\x77\\x75',df‍‌-=37),void 0))&&(df‍‌=\\u0063\\u0068\\u0061\\u0070\\u0074\\u0065\\u0072['\\x69\\x73\\x56\\x69\\x70']()?12:5),!1))&&(30>df‍‌||(30<df‍‌&&(function(){throw new \\u0045\\u0072\\u0072\\u006f\\u0072(\\u0065\\u0072\\u0072\\u006f\\u0072\\u004d\\u0073\\u0067);}(),df‍‌=13,!\"\")||(df‍‌=36,\\u0069\\u0076=\\u006a\\u0061\\u0076\\u0061[uy‍‌+='\\x74\\x65\\x73'](dT‍‌+='\\x06\\x07\\x08')),0))&&(28<df‍‌&&(df‍‌=25,uy‍‌='\\x63\\x72\\x65\\x61\\x74',!\"\")||(uy‍‌='\\x73\\x74',df‍‌+=7)),{})||(19>df‍‌||((24<df‍‌--||((df‍‌>20||(19>df‍‌&&(uy‍‌='\\x6C\\x6F\\x6E\\x67\\x54\\x6F\\x61',df‍‌=27,!0)||df‍‌>19&&(dT‍‌+='\\x72\\x73',df‍‌=8,{})||(df‍‌=24,dT‍‌='\\x73\\x70\\x6C'),false))&&(df‍‌<22||(df‍‌>22&&(\\u0063\\u0064\\u0061\\u0074\\u0061=\\u006a\\u0061\\u0076\\u0061[uy‍‌+='\\x53\\x74\\x72\\x69\\x6E\\x67'](\\u0072\\u0065\\u0073\\u0075\\u006c\\u0074)[dT‍‌+='\\x69\\x74']('\\x2D'),df‍‌+=11,!null)||(df‍‌=37,uy‍‌+='\\x61'),!{}))&&(df‍‌-=2,\\u0065\\u0072\\u0072\\u006f\\u0072\\u004d\\u0073\\u0067=uy‍‌+='\\x76\\x3C\\x62\\x72\\x3E'),undefined))&&(df‍‌<25||((27>++df‍‌||(df‍‌+=4,\\u006a\\u0061\\u0076\\u0061[uy‍‌+='\\x73\\x74'](\\u0065\\u0072\\u0072\\u006f\\u0072\\u004d\\u0073\\u0067),undefined))&&(df‍‌+=22,uy‍‌='\\x62\\x6F\\x6F\\x6B\\x53\\x6F\\x75\\x72\\x63\\x65\\x43\\x6F\\x6D\\x6D\\x65\\x6E'),!1))&&(uy‍‌+='\\x65\\x53\\x79\\x6D\\x6D\\x65\\x74\\x72\\x69\\x63\\x43\\x72\\x79',df‍‌+=18),0))&&(17<df‍‌&&(dT‍‌='\\x44',df‍‌=17,[])||16<df‍‌&&(df‍‌+=12,dT‍‌+='\\x45\\x53\\x2F\\x43\\x42\\x43\\x2F\\x50\\x4B',!null)||15<df‍‌&&(df‍‌=20,uy‍‌+='\\x65\\x78\\x44\\x65\\x63\\x6F\\x64\\x65\\x54\\x6F',!null)||(uy‍‌+='\\x79',df‍‌-=12)),0))&&(df‍‌>50||(df‍‌>47&&((df‍‌>49||((df‍‌<49||(df‍‌=28,dT‍‌+='\\x37\\x30\\x31\\x30',false))&&(\\u0063\\u006f\\u006d\\u006d\\u0065\\u006e\\u0074=\\u0073\\u006f\\u0075\\u0072\\u0063\\u0065[uy‍‌+='\\x74'],df‍‌-=38),void 0))&&(uy‍‌+='\\x65',df‍‌-=46),!null)||(43<--df‍‌||(42<df‍‌&&(df‍‌=45,uy‍‌='\\u26a0\\ufe0f\\u4e66\\u6e90\\u5b89\\u5168\\u8b66\\u544a\\x0A\\u68c0\\u6d4b\\u5230\\u975e\\u6cd5\\u7be1\\u6539\\uff01\\u672c\\u4e66\\u6e90\\u514d\\u8d39\\u5206\\u4eab\\u4e25\\u7981\\u4e8c\\u6b21\\u552e\\u5356\\u53ca\\u5546\\u4e1a\\u7528\\u9014\\x0A\\u8bf7\\u524d\\u5f80\\u66f4\\u65b0',!null)||(++df‍‌>42||((df‍‌++<42||(\\u0072\\u0065\\u0073\\u0075\\u006c\\u0074=\\u006a\\u0061\\u0076\\u0061[uy‍‌+='\\x70\\x74\\x6F'](dT‍‌+='\\x43\\x53\\x35\\x50\\x61\\x64\\x64\\x69\\x6E\\x67',\\u006b\\u0065\\u0079,\\u0069\\u0076)[BF‍‌+='\\x70\\x74\\x53\\x74\\x72'](\\u0064\\u0061\\u0074\\u0061),df‍‌-=43,![]))&&(\\u0075\\u0073\\u0065\\u0072\\u0054\\u006f\\u006b\\u0065\\u006e=\\u004a\\u0053\\u004f\\u004e[uy‍‌+='\\x73\\x65'](\\u0063\\u0064\\u0061\\u0074\\u0061[(df‍‌-=2)-37])),\"\"))&&(\\u0065\\u0072\\u0072\\u006f\\u0072\\u004d\\u0073\\u0067=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,++df‍‌),!{}))&&(df‍‌>45&&(uy‍‌+='\\x79\\x74\\x65',true)||df‍‌++>44&&(dT‍‌='\\x70\\x61\\x72',df‍‌+=7,1)||(df‍‌-=23,uy‍‌+='\\uff1a\\x68\\x74\\x74\\x70\\x73\\x3A\\x2F\\x2F\\x73\\x6B\\x79\\x62\\x6F\\x6F\\x6B\\x2E\\x70\\x61\\x67\\x65\\x73\\x2E\\x64\\x65')),\"\"))&&(df‍‌>52&&(df‍‌-=51,\\u0064\\u0061\\u0074\\u0061=\\u006a\\u0061\\u0076\\u0061[uy‍‌+='\\x41\\x72\\x72\\x61\\x79'](\\u004a\\u0053\\u004f\\u004e[dT‍‌+='\\x73\\x65'](\\u0072\\u0065\\u0073\\u0075\\u006c\\u0074)[BF‍‌+='\\x41\\x54\\x41'][lb‍‌+='\\x54']),[])||(51<df‍‌||(uy‍‌+='\\x61\\x72',df‍‌=41,null))&&(df‍‌-=13,BF‍‌='\\x44'));}catch(eb){for(var df‍‌=2;df‍‌;)df‍‌>4&&(--df‍‌>5&&(df‍‌=4,uy‍‌='\\x70\\x61\\x72',{})||4<df‍‌--&&(df‍‌=3,dT‍‌+='\\x53',!undefined)||(\\u004a\\u0053\\u004f\\u004e[uy‍‌+='\\x65'](\\u0072\\u0065\\u0073\\u0075\\u006c\\u0074)[dT‍‌+='\\x47'],df‍‌-=3),!\"\")||3<df‍‌&&(dT‍‌='\\x4D',df‍‌+=2,!null)||(++df‍‌<4||(uy‍‌+='\\x73',df‍‌++,!1))&&(df‍‌>2||(\\u006a\\u0061\\u0076\\u0061[uy‍‌+='\\x67'](eb),df‍‌+=5,![]))&&(uy‍‌='\\x6C\\x6F',df‍‌-=2);}df‍‌=Dz‍‌;}};result;",
      "payAction": ";for(var \\u0072\\u0065\\u0073\\u0070\\u006f\\u006e\\u0073\\u0065,\\u0062\\u0075\\u0079\\u0075\\u0072\\u006c,\\u0073\\u0064,\\u0073\\u0065\\u0063\\u0072\\u0065\\u0074,\\u006d\\u0065\\u0074\\u0068\\u006f\\u0064,\\u0063\\u006f\\u006e\\u0073\\u0075\\u006d\\u0065\\u0072\\u004b\\u0065\\u0079,\\u0074\\u0069\\u006d\\u0065\\u0073\\u0074\\u0061\\u006d\\u0070,\\u0061\\u0069\\u0064,\\u005f\\u0062\\u0070,\\u005f\\u0073\\u0070,\\u0073\\u0070,\\u0062\\u0069\\u0064,\\u005f\\u0061\\u0072\\u0072\\u0061\\u0079\\u0057\\u0069\\u0074\\u0068\\u0048\\u006f\\u006c\\u0065\\u0073,\\u005f\\u0069\\u0074\\u0065\\u0072\\u0061\\u0062\\u006c\\u0065\\u0054\\u006f\\u0041\\u0072\\u0072\\u0061\\u0079\\u004c\\u0069\\u006d\\u0069\\u0074,\\u005f\\u0061\\u0072\\u0072\\u0061\\u0079\\u004c\\u0069\\u006b\\u0065\\u0054\\u006f\\u0041\\u0072\\u0072\\u0061\\u0079,\\u005f\\u0075\\u006e\\u0073\\u0075\\u0070\\u0070\\u006f\\u0072\\u0074\\u0065\\u0064\\u0049\\u0074\\u0065\\u0072\\u0061\\u0062\\u006c\\u0065\\u0054\\u006f\\u0041\\u0072\\u0072\\u0061\\u0079,\\u005f\\u0073\\u006c\\u0069\\u0063\\u0065\\u0064\\u0054\\u006f\\u0041\\u0072\\u0072\\u0061\\u0079,Aw‍‌,jJ‍‌,tf‍‌,ZS‍‌,wl‍‌,JZ‍‌,lt‍‌,RA‍‌,Gf‍‌,jS‍‌=99,tt‍‌,HG‍‌,HA‍‌,jG‍‌,ef‍‌,jo‍‌,eo‍‌,oo‍‌,jA‍‌,lD‍‌,eD‍‌,\\u005f\\u006e\\u006f\\u006e\\u0049\\u0074\\u0065\\u0072\\u0061\\u0062\\u006c\\u0065\\u0052\\u0065\\u0073\\u0074,\\u0073\\u006f\\u0075\\u0072\\u0063\\u0065\\u0044\\u0061\\u0074\\u0061,\\u0075\\u0069\\u0064,\\u0074\\u006f\\u006b\\u0065\\u006e,\\u0063\\u0064\\u0061\\u0074\\u0061,\\u005f\\u0063\\u0064\\u0061\\u0074\\u0061,\\u0070\\u0061\\u0074\\u0068,\\u0062\\u0070,\\u0063\\u0069\\u0064,\\u0075\\u0072\\u006c,\\u0070\\u006c\\u0061\\u0069\\u006e,\\u0073\\u0069\\u0067\\u006e;jS‍‌;)if(36>jS‍‌++)(11>jS‍‌||((jS‍‌>26||(18<jS‍‌&&(jS‍‌<22&&(20>jS‍‌&&(jS‍‌=55,jG‍‌='\\x63\\x6F\\x73\\x74\\x3D\\x30\\x74\\x69\\x6D\\x65\\x73\\x74',true)||(21>jS‍‌||(RA‍‌='\\x63\\x6F\\x73',jS‍‌=93,\"\"))&&(jS‍‌=24,jA‍‌='\\x26\\x61\\x6E\\x64\\x72'),!false)||(jS‍‌>25||(24>jS‍‌&&((jS‍‌++<23||(Gf‍‌='\\x3F\\x63\\x6F\\x6E\\x73\\x75',jS‍‌=50,!1))&&(jS‍‌+=92,tt‍‌='\\x55\\x55\\x49'),!false)||24<jS‍‌&&(jS‍‌=71,wl‍‌='\\x63\\x6F\\x6E\\x63',1)||(RA‍‌='\\x58\\x4B\\x72\\x71',jS‍‌=46),\"\"))&&(jJ‍‌+='\\x6F\\x6E',jS‍‌=87),!false)||(14>jS‍‌||((jS‍‌>17||((16>jS‍‌||((jS‍‌<17||(jS‍‌+=107,\\u0070\\u0061\\u0074\\u0068=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,void 0))&&(\\u005f\\u006e\\u006f\\u006e\\u0049\\u0074\\u0065\\u0072\\u0061\\u0062\\u006c\\u0065\\u0052\\u0065\\u0073\\u0074=function(){for(var RA‍‌,jS‍‌=1;jS‍‌;){(1<jS‍‌||(RA‍‌='\\x49\\x6E\\x76\\x61\\x6C\\x69\\x64\\x20\\x61\\x74\\x74\\x65\\x6D\\x70\\x74\\x20\\x74\\x6F\\x20\\x64\\x65\\x73\\x74\\x72\\x75\\x63\\x74\\x75\\x72\\x65\\x20\\x6E\\x6F\\x6E\\x2D\\x69\\x74\\x65\\x72\\x61\\x62\\x6C\\x65\\x20\\x69\\x6E\\x73\\x74\\x61\\x6E\\x63\\x65\\x2E\\x0A\\x49\\x6E\\x20\\x6F\\x72\\x64\\x65\\x72\\x20\\x74\\x6F\\x20\\x62\\x65\\x20\\x69\\x74\\x65\\x72\\x61\\x62\\x6C\\x65\\x2C\\x20\\x6E\\x6F\\x6E\\x2D\\x61\\x72\\x72\\x61\\x79\\x20\\x6F\\x62\\x6A\\x65\\x63\\x74\\x73\\x20\\x6D\\x75\\x73\\x74\\x20\\x68\\x61\\x76\\x65\\x20\\x61\\x20\\x5B\\x53\\x79\\x6D\\x62\\x6F\\x6C\\x2E\\x69\\x74\\x65\\x72\\x61\\x74\\x6F',jS‍‌++,false))&&(jS‍‌=0,function(){throw new \\u0054\\u0079\\u0070\\u0065\\u0045\\u0072\\u0072\\u006f\\u0072(RA‍‌+='\\x72\\x5D\\x28\\x29\\x20\\x6D\\x65\\x74\\x68\\x6F\\x64\\x2E');}());}},jS‍‌-=15),![]))&&(jS‍‌<15&&(jS‍‌-=6,\\u005f\\u0062\\u0070=\\u004a\\u0053\\u004f\\u004e[RA‍‌+='\\x73\\x65'](\\u0062\\u0070),{})||(jS‍‌=68,\\u0072\\u0065\\u0073\\u0070\\u006f\\u006e\\u0073\\u0065=\\u006a\\u0061\\u0076\\u0061[RA‍‌+='\\x78'](\\u0062\\u0075\\u0079\\u0075\\u0072\\u006c))),0))&&(jS‍‌+=57,HA‍‌='\\x26\\x74\\x69\\x6D\\x65\\x73\\x74\\x61'),0))&&(jS‍‌<12&&(jS‍‌-=8,\\u005f\\u0063\\u0064\\u0061\\u0074\\u0061=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,!undefined)||jS‍‌<13&&(jS‍‌+=57,RA‍‌='\\x6E',!\"\")||(\\u005f\\u0073\\u0070[RA‍‌+='\\x74']=(jS‍‌=20)-20)),!1))&&(30>jS‍‌||((32>jS‍‌++||((36>++jS‍‌||((jS‍‌<37||(38<++jS‍‌&&(jS‍‌=19,tt‍‌='\\x63',!null)||(\\u0061\\u0069\\u0064=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,jS‍‌=96),false))&&(jS‍‌=113,\\u005f\\u0069\\u0074\\u0065\\u0072\\u0061\\u0062\\u006c\\u0065\\u0054\\u006f\\u0041\\u0072\\u0072\\u0061\\u0079\\u004c\\u0069\\u006d\\u0069\\u0074=function(oH,Rf){for(var Zv,jt,fw,tJ,RA‍‌,jS‍‌=7,tt‍‌,Gf‍‌,fZ,lv,Sl,oJ;jS‍‌;)if(6<--jS‍‌){if(8>jS‍‌){try{for(var jS‍‌=6,Hw‍‌=4;jS‍‌;)if(jS‍‌<4)(jS‍‌>2||(jS‍‌>1&&(jt=!((jS‍‌=7)-6),!undefined)||(jt=!0,jS‍‌+=2),null))&&(jS‍‌=4);else if(6>jS‍‌){if(++jS‍‌>5)return;else jS‍‌=!(jt=(tJ=fw['\\x63\\x61\\x6C\\x6C'](fZ))['\\x64\\x6F\\x6E\\x65'])&&(oJ['\\x70\\x75\\x73\\x68'](tJ['\\x76\\x61\\x6C\\x75\\x65']),oJ['\\x6C\\x65\\x6E\\x67\\x74\\x68']!==Rf)?1:0;}else(jS‍‌--<8||(jS‍‌+=\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074(fZ)!==fZ?-2:-5,!true))&&(jS‍‌>5&&(jS‍‌=0,[])||(jS‍‌+=(fw=(fZ=fZ['\\x63\\x61\\x6C\\x6C'](oH))['\\x6E\\x65\\x78\\x74'],0===Rf)?3:-1));}catch(oH){for(var jS‍‌=1;jS‍‌;){(jS‍‌>1||(Zv=!((jS‍‌=2)-2),0))&&(jS‍‌-=2,lv=oH);}}finally{for(var jS‍‌=1;jS‍‌;){try{for(var jS‍‌=2,SD‍‌=0;jS‍‌;){if(jS‍‌>1)jS‍‌-=!jt&&null!=fZ['\\x72\\x65\\x74\\x75\\x72\\x6E']&&(Sl=fZ['\\x72\\x65\\x74\\x75\\x72\\x6E'](),\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074(Sl)!==Sl)?1:2;else return;}}finally{for(var jS‍‌=1;jS‍‌;){(1<jS‍‌||(jS‍‌+=Zv?1:-1,0))&&(function(){throw lv;}(),jS‍‌-=2);}}jS‍‌=SD‍‌;}}jS‍‌=Hw‍‌;}else fZ=null==oH?null:(RA‍‌+='\\x6E\\x64\\x65\\x66\\x69\\x6E\\x65\\x64')!=typeof \\u0053\\u0079\\u006d\\u0062\\u006f\\u006c&&oH[\\u0053\\u0079\\u006d\\u0062\\u006f\\u006c[Gf‍‌+='\\x72\\x61\\x74\\x6F\\x72']]||oH[tt‍‌+='\\x65\\x72\\x61\\x74\\x6F\\x72'],jS‍‌=5;}else if(jS‍‌<3)(1<jS‍‌||((jS‍‌>0||(oJ=[],jt=!0,Zv=!1,jS‍‌+=8,void 0))&&(tt‍‌+='\\x69\\x74',jS‍‌=6),!true))&&(RA‍‌='\\x75');else if(4<jS‍‌)jS‍‌++>5&&(jS‍‌=3,tt‍‌='\\x40\\x40',!false)||(Gf‍‌='\\x69\\x74\\x65',jS‍‌+=3);else if(4>jS‍‌)return oJ;else jS‍‌-=null!=fZ?3:4;}),void 0))&&(jS‍‌>34||(lt‍‌='\\x73\\x6C',jS‍‌+=70,!true))&&(jS‍‌+=13,RA‍‌='\\x4C\\x43\\x52\\x45\\x41\\x44\\x5F'),false))&&(jS‍‌<32||(\\u0073\\u0070=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,jS‍‌+=85,null))&&(jS‍‌=51,\\u0070\\u006c\\u0061\\u0069\\u006e=(RA‍‌+='\\x3D')[Gf‍‌+='\\x61\\x74'](\\u0062\\u0069\\u0064,tt‍‌+='\\x3D')[HA‍‌+='\\x74'](\\u005f\\u0073\\u0070[HG‍‌+='\\x44'],lt‍‌+='\\x6E\\x73\\x75\\x6D\\x65\\x72\\x4B\\x65\\x79\\x3D')[JZ‍‌+='\\x74'](\\u0063\\u006f\\u006e\\u0073\\u0075\\u006d\\u0065\\u0072\\u004b\\u0065\\u0079,jG‍‌+='\\x61\\x6D\\x70\\x3D')[wl‍‌+='\\x61\\x74'](\\u0074\\u0069\\u006d\\u0065\\u0073\\u0074\\u0061\\u006d\\u0070,jo‍‌+='\\x3D')[ef‍‌+='\\x6F\\x6E\\x63\\x61\\x74'](\\u0075\\u0069\\u0064)),\"\"))&&(28<jS‍‌||((27<jS‍‌||(Gf‍‌+='\\x69',jS‍‌=110,void 0))&&(jS‍‌=18,wl‍‌='\\x63\\x6F\\x6E\\x63'),!{}))&&(\\u006a\\u0061\\u0076\\u0061[RA‍‌+='\\x73\\x74']((Gf‍‌+='\\u8d2d\\u4e70\\u5931\\u8d25\\uff1a')+\\u004a\\u0053\\u004f\\u004e[tt‍‌+='\\x65'](\\u0072\\u0065\\u0073\\u0070\\u006f\\u006e\\u0073\\u0065)[HA‍‌+='\\x47']),jS‍‌=135),undefined))&&(8<jS‍‌||(jS‍‌>6&&((jS‍‌--<8||(\\u0062\\u0070=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,jS‍‌=63,!1))&&(jS‍‌+=37,tt‍‌='\\x73\\x70\\x6C'),!false)||(jS‍‌++>4||((jS‍‌>4||((jS‍‌<4||(jS‍‌+=11,\\u005f\\u0075\\u006e\\u0073\\u0075\\u0070\\u0070\\u006f\\u0072\\u0074\\u0065\\u0064\\u0049\\u0074\\u0065\\u0072\\u0061\\u0062\\u006c\\u0065\\u0054\\u006f\\u0041\\u0072\\u0072\\u0061\\u0079=function(oH,oJ){for(var RA‍‌,jS‍‌=13,tt‍‌,Gf‍‌,fZ,HA‍‌,HG‍‌;jS‍‌;)if(jS‍‌<8){if(jS‍‌>4){if(jS‍‌<6)jS‍‌=17,HG‍‌='\\x74\\x65';else if(jS‍‌>6)jS‍‌+=16,(RA‍‌+='\\x62\\x6A\\x65\\x63\\x74')===fZ&&oH[Gf‍‌+='\\x6F\\x72']&&(fZ=oH[tt‍‌+='\\x6F\\x72'][HA‍‌+='\\x65']);else return(RA‍‌+='\\x70')===fZ||(Gf‍‌+='\\x65\\x74')===fZ?\\u0041\\u0072\\u0072\\u0061\\u0079[tt‍‌+='\\x6F\\x6D'](oH):(HA‍‌+='\\x6E\\x74\\x73')===fZ||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/[HG‍‌+='\\x74'](fZ)?\\u005f\\u0061\\u0072\\u0072\\u0061\\u0079\\u004c\\u0069\\u006b\\u0065\\u0054\\u006f\\u0041\\u0072\\u0072\\u0061\\u0079(oH,oJ):void 0;}else if(3<jS‍‌--)return \\u005f\\u0061\\u0072\\u0072\\u0061\\u0079\\u004c\\u0069\\u006b\\u0065\\u0054\\u006f\\u0041\\u0072\\u0072\\u0061\\u0079(oH,oJ);else 1<jS‍‌&&(jS‍‌=12,tt‍‌='\\x73\\x6C\\x69',!false)||(0<jS‍‌||(jS‍‌+=19,tt‍‌='\\x63\\x6F\\x6E\\x73\\x74\\x72\\x75\\x63',0))&&(RA‍‌='\\x4F');}else++jS‍‌>20&&((24<jS‍‌++||(jS‍‌>24&&(tt‍‌='\\x66\\x72',jS‍‌=11,1)||(24>jS‍‌||(RA‍‌+='\\x53\\x74\\x72\\x69\\x6E',jS‍‌=21,0))&&(jS‍‌<23&&(Gf‍‌+='\\x6C',!null)||(jS‍‌-=21,fZ={}[RA‍‌+='\\x67'][Gf‍‌+='\\x6C'](oH)[tt‍‌+='\\x65'](8,-1))),\"\"))&&(jS‍‌-=6,tt‍‌+='\\x63'),1)||(14<jS‍‌||((12<jS‍‌||((11>jS‍‌||(11<jS‍‌--&&(jS‍‌=5,HA‍‌='\\x41\\x72\\x67\\x75\\x6D\\x65',1)||(jS‍‌-=4,RA‍‌='\\x4D\\x61'),undefined))&&(10>jS‍‌&&(Gf‍‌+='\\x6F\\x6E\\x73\\x74\\x72\\x75\\x63\\x74',jS‍‌+=5,[])||(jS‍‌=8,Gf‍‌='\\x63')),0))&&(13<jS‍‌||(Gf‍‌='\\x63\\x61',jS‍‌+=3,\"\"))&&(jS‍‌=oH?18:0),!{}))&&(jS‍‌>18||(jS‍‌>17&&(jS‍‌-=3,HG‍‌+='\\x73',!false)||jS‍‌<17&&(16>jS‍‌&&(jS‍‌=7,HA‍‌='\\x6E\\x61\\x6D',!false)||(Gf‍‌='\\x53',jS‍‌=10),!undefined)||(jS‍‌=24,RA‍‌='\\x74\\x6F'),false))&&(20>jS‍‌||(tt‍‌+='\\x74',jS‍‌=9,null))&&(jS‍‌='\\x73\\x74\\x72\\x69\\x6E\\x67'==typeof oH?4:3);},!{}))&&(\\u005f\\u0073\\u006c\\u0069\\u0063\\u0065\\u0064\\u0054\\u006f\\u0041\\u0072\\u0072\\u0061\\u0079=function(oH,tJ){for(var jS‍‌=1;jS‍‌;){return \\u005f\\u0061\\u0072\\u0072\\u0061\\u0079\\u0057\\u0069\\u0074\\u0068\\u0048\\u006f\\u006c\\u0065\\u0073(oH)||\\u005f\\u0069\\u0074\\u0065\\u0072\\u0061\\u0062\\u006c\\u0065\\u0054\\u006f\\u0041\\u0072\\u0072\\u0061\\u0079\\u004c\\u0069\\u006d\\u0069\\u0074(oH,tJ)||\\u005f\\u0075\\u006e\\u0073\\u0075\\u0070\\u0070\\u006f\\u0072\\u0074\\u0065\\u0064\\u0049\\u0074\\u0065\\u0072\\u0061\\u0062\\u006c\\u0065\\u0054\\u006f\\u0041\\u0072\\u0072\\u0061\\u0079(oH,tJ)||\\u005f\\u006e\\u006f\\u006e\\u0049\\u0074\\u0065\\u0072\\u0061\\u0062\\u006c\\u0065\\u0052\\u0065\\u0073\\u0074();}},jS‍‌=74),\"\"))&&(\\u005f\\u0063\\u0064\\u0061\\u0074\\u0061=\\u005f\\u0073\\u006c\\u0069\\u0063\\u0065\\u0064\\u0054\\u006f\\u0041\\u0072\\u0072\\u0061\\u0079(\\u0063\\u0064\\u0061\\u0074\\u0061,(jS‍‌=16)-11)),false))&&(jS‍‌<7||(jS‍‌=82,oo‍‌+='\\x6E',!true))&&(jS‍‌+=112,RA‍‌='\\x74'),!1))&&(jS‍‌>9||(jS‍‌=12,RA‍‌='\\x63\\x4E\\x65\\x78',null))&&(jS‍‌=42,\\u0073\\u0064=\\u006d\\u0065\\u0074\\u0068\\u006f\\u0064+\\u0065\\u006e\\u0063\\u006f\\u0064\\u0065\\u0055\\u0052\\u0049\\u0043\\u006f\\u006d\\u0070\\u006f\\u006e\\u0065\\u006e\\u0074(\\u0075\\u0072\\u006c+\\u0070\\u006c\\u0061\\u0069\\u006e)+\\u0073\\u0065\\u0063\\u0072\\u0065\\u0074);else if(++jS‍‌>105)(jS‍‌<115||((123>jS‍‌||(jS‍‌<131&&((130<++jS‍‌||(jS‍‌>128&&(129<jS‍‌&&(jS‍‌=26,HG‍‌+='\\x63',!\"\")||(Gf‍‌='\\x75\\x74',jS‍‌=31),!undefined)||126<jS‍‌++&&((129>jS‍‌||(jS‍‌=56,RA‍‌='\\x62\\x49\\x44',\"\"))&&(\\u0070\\u0061\\u0074\\u0068=\\u005f\\u0063\\u0064\\u0061\\u0074\\u0061[(jS‍‌-=--jS‍‌-51)-52]),1)||126>jS‍‌&&(jS‍‌=37,lt‍‌='\\x63\\x4E\\x65\\x78\\x74\\x3D\\x30\\x63\\x6F',!0)||jS‍‌>126&&(jS‍‌-=86,jo‍‌='\\x75\\x49\\x44',!null)||(jS‍‌=13,RA‍‌+='\\x72'),![]))&&(RA‍‌='\\x74',jS‍‌=132),1)||jS‍‌<134&&((132<jS‍‌||(jS‍‌<132&&(jS‍‌=\\u004a\\u0053\\u004f\\u004e['\\x70\\x61\\x72\\x73\\x65'](\\u0072\\u0065\\u0073\\u0070\\u006f\\u006e\\u0073\\u0065)['\\x4D\\x53\\x47']=='\\x53\\x55\\x43\\x43\\x45\\x53\\x53'?81:70,!undefined)||(jS‍‌-=44,RA‍‌='\\x74\\x6F'),\"\"))&&(\\u0072\\u0065\\u0073\\u0070\\u006f\\u006e\\u0073\\u0065=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,jS‍‌-=54),!\"\")||137<jS‍‌&&((138<jS‍‌||(jo‍‌='\\x26\\x63\\x49\\x44',jS‍‌-=93,!1))&&(\\u0063\\u0064\\u0061\\u0074\\u0061=\\u006a\\u0061\\u0076\\u0061[RA‍‌+='\\x65'](\\u0062\\u0061\\u0073\\u0065\\u0055\\u0072\\u006c[Gf‍‌+='\\x74']('\\x2C')[(jS‍‌-=jS‍‌-- -10)-9])[tt‍‌+='\\x69\\x74']('\\x2D')),!false)||(++jS‍‌<137||((138>jS‍‌||(false,jS‍‌-=138,undefined))&&(jS‍‌=23,\\u0073\\u0065\\u0063\\u0072\\u0065\\u0074=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064),!true))&&(136>jS‍‌++||(jS‍‌-=84,tf‍‌='\\x63\\x49',null))&&(\\u005f\\u0062\\u0070[RA‍‌+='\\x6F\\x6B\\x65\\x6E']=\\u0074\\u006f\\u006b\\u0065\\u006e,jS‍‌=34),void 0))&&(118>jS‍‌||(jS‍‌++>121&&(\\u0075\\u0072\\u006c=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,jS‍‌=44,!\"\")||(120<jS‍‌||((120>jS‍‌||(\\u0073\\u0070=\\u005f\\u0063\\u0064\\u0061\\u0074\\u0061[(jS‍‌=7)-5],void 0))&&(jS‍‌=111,\\u0062\\u0075\\u0079\\u0075\\u0072\\u006c=''[RA‍‌+='\\x74'](\\u0075\\u0072\\u006c,Gf‍‌+='\\x6D\\x65\\x72\\x4B\\x65\\x79\\x3D')[tt‍‌+='\\x6F\\x6E\\x63\\x61\\x74'](\\u0063\\u006f\\u006e\\u0073\\u0075\\u006d\\u0065\\u0072\\u004b\\u0065\\u0079,HA‍‌+='\\x6D\\x70\\x3D')[HG‍‌+='\\x74'](\\u0074\\u0069\\u006d\\u0065\\u0073\\u0074\\u0061\\u006d\\u0070,lt‍‌+='\\x69\\x67\\x6E\\x3D')[JZ‍‌+='\\x63\\x61\\x74'](\\u0073\\u0069\\u0067\\u006e,jG‍‌+='\\x49\\x44\\x3D')[wl‍‌+='\\x74'](\\u0062\\u0069\\u0064,jo‍‌+='\\x3D')[ef‍‌+='\\x61\\x74'](\\u005f\\u0073\\u0070[tf‍‌+='\\x44'],eD‍‌+='\\x4C\\x3D\\x57\\x41\\x4E\\x44\\x4F\\x55\\x4A\\x49\\x41\\x26\\x69\\x6D\\x65\\x69\\x3D')[eo‍‌+='\\x74'](\\u0061\\u0069\\u0064,jA‍‌+='\\x6F\\x69\\x64\\x49\\x44\\x3D')[jJ‍‌+='\\x63\\x61\\x74'](\\u0061\\u0069\\u0064,oo‍‌+='\\x3D')[ZS‍‌+='\\x74'](\\u0074\\u006f\\u006b\\u0065\\u006e,lD‍‌+='\\x3D')[Aw‍‌+='\\x74'](\\u0075\\u0069\\u0064)),!1))&&(jS‍‌<122&&(jS‍‌-=30,\\u006a\\u0061\\u0076\\u0061[RA‍‌+='\\x6F\\x61\\x73\\x74'](Gf‍‌+='\\u529f'),!undefined)||(ef‍‌='\\x63',jS‍‌=39)),!true))&&(115>--jS‍‌&&(\\u005f\\u0061\\u0072\\u0072\\u0061\\u0079\\u004c\\u0069\\u006b\\u0065\\u0054\\u006f\\u0041\\u0072\\u0072\\u0061\\u0079=function(oH,oJ){for(var lv,RA‍‌,jS‍‌=11,Gf‍‌,tJ;jS‍‌;)if(--jS‍‌>6){if(8>--jS‍‌)jS‍‌<7&&(jS‍‌=4,!null)||(RA‍‌+='\\x6E\\x67',jS‍‌=5);else if(9>jS‍‌)return lv;else Gf‍‌='\\x6C',jS‍‌=7;}else jS‍‌<3&&((1<jS‍‌||((0<jS‍‌||(jS‍‌=6,(null==oJ||oJ>oH[RA‍‌+='\\x74\\x68'])&&(oJ=oH[Gf‍‌+='\\x68']),!{}))&&(lv[tJ]=oH[tJ],jS‍‌=3),\"\"))&&(tJ++,jS‍‌+=6),!\"\")||jS‍‌<5&&((4>jS‍‌||(Gf‍‌+='\\x65\\x6E\\x67\\x74',jS‍‌-=3,!true))&&(jS‍‌=tJ<oJ?2:10),!false)||(5<jS‍‌||(--jS‍‌,tJ=0,lv=\\u0041\\u0072\\u0072\\u0061\\u0079(oJ),!true))&&(RA‍‌='\\x6C\\x65',jS‍‌+=3);},jS‍‌-=112,!undefined)||(jS‍‌>115||(jS‍‌=107,oo‍‌='\\x26\\x74\\x6F\\x6B\\x65',void 0))&&(\\u0061\\u0069\\u0064=\\u0053\\u0074\\u0072\\u0069\\u006e\\u0067(\\u0050\\u0061\\u0063\\u006b\\u0061\\u0067\\u0065\\u0073[RA‍‌+='\\x76\\x61'][Gf‍‌+='\\x6C'][tt‍‌+='\\x44'][HA‍‌+='\\x44']())[HG‍‌+='\\x65'](/-/g,'')[lt‍‌+='\\x69\\x63\\x65']((jS‍‌-=18)-98,16))),null))&&(++jS‍‌>113||(jS‍‌<110&&((jS‍‌>108||((107<jS‍‌||(RA‍‌+='\\x61',jS‍‌=127,false))&&(jS‍‌=137,Gf‍‌='\\x73\\x70\\x6C\\x69'),!1))&&(Gf‍‌+='\\u4e70\\u6210',jS‍‌-=105),[])||(111<jS‍‌||((110<jS‍‌--||(lt‍‌='\\x26\\x73',jS‍‌-=69,void 0))&&(ZS‍‌='\\x63\\x6F\\x6E\\x63\\x61',jS‍‌-=37),null))&&(jS‍‌>112||(jS‍‌=6,\\u0063\\u0064\\u0061\\u0074\\u0061=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,!1))&&(jS‍‌=21,HA‍‌='\\x72\\x61\\x6E\\x64\\x6F\\x6D\\x55\\x55\\x49'),!{}))&&(++jS‍‌<116&&(jS‍‌-=25,RA‍‌='\\x6C\\x6F',1)||(jS‍‌=47,RA‍‌='\\x6D\\x64'));else if(73>++jS‍‌){if(jS‍‌-->63){if(jS‍‌>69)70<jS‍‌&&(jS‍‌+=32,\\u0074\\u0069\\u006d\\u0065\\u0073\\u0074\\u0061\\u006d\\u0070=\\u0044\\u0061\\u0074\\u0065[RA‍‌+='\\x6F\\x77']()[Gf‍‌+='\\x72\\x69\\x6E\\x67'](),!0)||(RA‍‌='\\x6C\\x6F',jS‍‌-=10);else if(jS‍‌>67)jS‍‌<69&&(eD‍‌='\\x26\\x63\\x4E\\x65\\x78\\x74\\x3D\\x30\\x26\\x63\\x6F\\x73\\x74\\x3D\\x30\\x26\\x6D\\x54\\x79\\x70\\x65\\x3D\\x58\\x49\\x41\\x4F\\x4D\\x49\\x2D\\x32\\x33\\x30\\x34\\x39\\x52\\x41\\x44\\x38\\x43\\x26\\x50\\x41\\x43\\x4B\\x49\\x4E\\x47\\x43\\x48\\x41\\x4E\\x4E',jS‍‌+=15,[])||(jS‍‌+=11,\\u005f\\u0073\\u0070=\\u004a\\u0053\\u004f\\u004e[RA‍‌+='\\x73\\x65'](\\u0073\\u0070));else if(jS‍‌<66)64<jS‍‌&&(\\u0062\\u0070=\\u005f\\u0063\\u0064\\u0061\\u0074\\u0061[(jS‍‌+=29)-91],!\"\")||jS‍‌>63&&(HA‍‌='\\x4D',jS‍‌=130,!0)||(HA‍‌+='\\x53',jS‍‌-=35);else if(++jS‍‌<68)RA‍‌='\\x6A',jS‍‌=126;else{try{for(var jS‍‌=2,Hw‍‌=109;jS‍‌;)7<jS‍‌&&(9>jS‍‌&&(RA‍‌+='\\x4B\\x45',jS‍‌-=7,true)||10>jS‍‌&&(RA‍‌='\\x54\\x4F',jS‍‌=8,!false)||(jS‍‌=6,tt‍‌='\\x44\\x41'),!undefined)||5<jS‍‌&&(jS‍‌>6&&(RA‍‌='\\x70\\x61',jS‍‌=10,!false)||(jS‍‌-=3,RA‍‌+='\\x72'),!0)||(4>jS‍‌||((jS‍‌--<5||(RA‍‌='\\x55',void 0))&&(jS‍‌+=6,\\u0075\\u0069\\u0064=\\u0073\\u006f\\u0075\\u0072\\u0063\\u0065\\u0044\\u0061\\u0074\\u0061[RA‍‌+='\\x49\\x44']),null))&&(++jS‍‌>3&&(\\u0073\\u006f\\u0075\\u0072\\u0063\\u0065\\u0044\\u0061\\u0074\\u0061=\\u004a\\u0053\\u004f\\u004e[RA‍‌+='\\x73\\x65'](\\u0073\\u006f\\u0075\\u0072\\u0063\\u0065[Gf‍‌+='\\x65']())[tt‍‌+='\\x54\\x41'],jS‍‌=5,!0)||jS‍‌>2&&(jS‍‌=7,Gf‍‌='\\x67\\x65\\x74\\x56\\x61\\x72\\x69\\x61\\x62\\x6C',[])||(\\u0074\\u006f\\u006b\\u0065\\u006e=\\u0073\\u006f\\u0075\\u0072\\u0063\\u0065\\u0044\\u0061\\u0074\\u0061[RA‍‌+='\\x4E'],jS‍‌=0));}catch(tJ){for(var jS‍‌=2;jS‍‌;){(1<jS‍‌||(\\u006a\\u0061\\u0076\\u0061[RA‍‌+='\\x67'](tJ),jS‍‌=0,void 0))&&(jS‍‌--,RA‍‌='\\x6C\\x6F');}}jS‍‌=Hw‍‌;}}else(jS‍‌<47||(jS‍‌<55&&((52<--jS‍‌||(49>jS‍‌&&(47<jS‍‌--&&(\\u0073\\u0069\\u0067\\u006e=\\u006a\\u0061\\u0076\\u0061[RA‍‌+='\\x35\\x45\\x6E\\x63\\x6F\\x64\\x65'](\\u0073\\u0064),jS‍‌=59,!false)||46>jS‍‌--&&(RA‍‌='\\x63\\x6F\\x6E',jS‍‌=38,!0)||(jS‍‌=58,\\u0073\\u0065\\u0063\\u0072\\u0065\\u0074=RA‍‌+='\\x42\\x53\\x65\\x65\\x45\\x77\\x67\\x44\\x79\\x32\\x70\\x54'),{})||(51>jS‍‌||(jS‍‌<52&&(jS‍‌+=34,eo‍‌='\\x63\\x6F\\x6E\\x63',!false)||(\\u0073\\u0064=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,jS‍‌-=43),!1))&&(50>jS‍‌||(RA‍‌='\\x47\\x45',jS‍‌=92,!1))&&(RA‍‌+='\\x41\\x4E\\x44',jS‍‌=84),false))&&(jS‍‌=95,\\u0062\\u0069\\u0064=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064),!0)||(61<jS‍‌||((jS‍‌>59||(58>jS‍‌&&((jS‍‌>56||((55<jS‍‌||(jS‍‌=22,ef‍‌='\\x63\\x6F\\x6E\\x63',undefined))&&(\\u006d\\u0065\\u0074\\u0068\\u006f\\u0064=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,jS‍‌-=7),!{}))&&(jS‍‌+=62,Gf‍‌='\\x63\\x6F\\x6E\\x63'),{})||jS‍‌<59&&(jS‍‌=27,JZ‍‌='\\x63\\x6F\\x6E\\x63\\x61',!\"\")||(HG‍‌='\\x63\\x49',jS‍‌=29),void 0))&&(jS‍‌<61&&(jS‍‌=125,\\u0070\\u006c\\u0061\\u0069\\u006e=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,1)||(jS‍‌=108,\\u0062\\u0075\\u0079\\u0075\\u0072\\u006c=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064)),![]))&&(jS‍‌+=67,\\u006a\\u0061\\u0076\\u0061[RA‍‌+='\\x67'](\\u0072\\u0065\\u0073\\u0070\\u006f\\u006e\\u0073\\u0065)),!1))&&(44<jS‍‌++&&(47>jS‍‌&&(jS‍‌+=59,RA‍‌='\\x62\\x61\\x73\\x65\\x36\\x34\\x44\\x65\\x63\\x6F\\x64',!\"\")||(jS‍‌+=31,RA‍‌='\\x68\\x74\\x74\\x70\\x3A\\x2F\\x2F\\x61\\x2E\\x6C\\x63\\x31\\x30\\x30\\x31\\x2E\\x63\\x6F\\x6D\\x2F\\x61'),!undefined)||(42>jS‍‌||((43<jS‍‌--||(42>jS‍‌&&(HA‍‌='\\x63',jS‍‌+=82,!0)||(JZ‍‌='\\x63\\x6F\\x6E',jS‍‌=35),undefined))&&(jS‍‌<44&&(jS‍‌=121,tt‍‌='\\x63\\x49\\x44',true)||(\\u0073\\u0069\\u0067\\u006e=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,jS‍‌=112)),!true))&&(jS‍‌<40&&(jS‍‌=11,Gf‍‌='\\x74\\x6F\\x53\\x74',!0)||(42>++jS‍‌||(jS‍‌=89,RA‍‌+='\\x63\\x61',undefined))&&(jS‍‌+=16,HA‍‌+='\\x6F\\x6E\\x63\\x61')));}else 97<jS‍‌&&(101>jS‍‌&&(99>jS‍‌&&(\\u0062\\u0069\\u0064=\\u005f\\u0063\\u0064\\u0061\\u0074\\u0061[(jS‍‌-=68)-29],1)||(100>jS‍‌||(\\u0075\\u0069\\u0064=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,jS‍‌=72,\"\"))&&(HG‍‌='\\x72\\x65\\x70\\x6C\\x61',jS‍‌-=35),!undefined)||jS‍‌>104&&((107>++jS‍‌||(\\u0063\\u006f\\u006e\\u0073\\u0075\\u006d\\u0065\\u0072\\u004b\\u0065\\u0079=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,jS‍‌=32,void 0))&&(jS‍‌=76,\\u005f\\u0073\\u0070=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064),true)||(103>jS‍‌||(103<jS‍‌&&(jS‍‌=122,RA‍‌='\\x70\\x61',[])||(\\u0063\\u0069\\u0064=\\u005f\\u0063\\u0064\\u0061\\u0074\\u0061[(jS‍‌=102)-98]),undefined))&&(jS‍‌>101&&(\\u005f\\u0061\\u0072\\u0072\\u0061\\u0079\\u0057\\u0069\\u0074\\u0068\\u0048\\u006f\\u006c\\u0065\\u0073=function(oH){for(var jS‍‌=2;jS‍‌;){if(2>jS‍‌)return oH;else jS‍‌+=\\u0041\\u0072\\u0072\\u0061\\u0079['\\x69\\x73\\x41\\x72\\x72\\x61\\x79'](oH)?-1:-2;}},jS‍‌-=69,true)||(jS‍‌=36,\\u0074\\u0069\\u006d\\u0065\\u0073\\u0074\\u0061\\u006d\\u0070=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064)),!false)||(82>jS‍‌||((89<jS‍‌++||(jS‍‌>89&&(jS‍‌=62,Gf‍‌='\\u274c',!0)||jS‍‌<86&&((84<jS‍‌||(83<jS‍‌&&(jS‍‌=101,\\u005f\\u0062\\u0070=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,{})||(RA‍‌='\\x61\\x6A',jS‍‌-=6),!true))&&(Gf‍‌='\\u2705\\u8d2d',jS‍‌=106),!false)||87<jS‍‌&&((88<jS‍‌||(\\u0063\\u006f\\u006e\\u0073\\u0075\\u006d\\u0065\\u0072\\u004b\\u0065\\u0079=RA‍‌+='\\x52\\x4F\\x49\\x44',jS‍‌+=32,![]))&&(jJ‍‌='\\x63',jS‍‌=25),true)||--jS‍‌>85&&(eD‍‌+='\\x45',jS‍‌=5,{})||(jS‍‌=116,eo‍‌+='\\x61'),void 0))&&(jS‍‌>97||(95<jS‍‌&&(97>jS‍‌&&(jS‍‌=134,\\u006d\\u0065\\u0074\\u0068\\u006f\\u0064=RA‍‌+='\\x54',1)||(\\u005f\\u0073\\u0070[RA‍‌+='\\x74']=(jS‍‌+=31)-128),true)||(94>jS‍‌||((95>jS‍‌||(jS‍‌+=40,null))&&(jS‍‌+=37,\\u006a\\u0061\\u0076\\u0061[RA‍‌+='\\x67'](\\u0062\\u0075\\u0079\\u0075\\u0072\\u006c)),null))&&(jS‍‌>92||((91<jS‍‌||(jS‍‌+=45,jG‍‌='\\x26\\x62',false))&&(RA‍‌+='\\x61',jS‍‌-=31),void 0))&&(jS‍‌+=21,Aw‍‌='\\x63\\x6F\\x6E\\x63\\x61'),undefined))&&(\\u0063\\u0069\\u0064=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,jS‍‌=100),void 0))&&(79<jS‍‌&&(81>jS‍‌&&(jS‍‌=14,RA‍‌+='\\x61',!0)||(jS‍‌-=27,\\u0075\\u0072\\u006c=RA‍‌+='\\x70\\x70\\x2F\\x73\\x75\\x62\\x73\\x63\\x72\\x69\\x62\\x65\\x2F\\x62\\x75\\x79\\x63\\x68\\x61\\x70\\x74\\x65\\x72'),!false)||(jS‍‌>77||((75<jS‍‌||(jS‍‌>74&&(\\u0074\\u006f\\u006b\\u0065\\u006e=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,jS‍‌=65,!null)||73<jS‍‌&&(jS‍‌-=57,lD‍‌='\\x26\\x75\\x49\\x44',{})||(tt‍‌='\\x70\\x61\\x72\\x73',jS‍‌+=13),false))&&(77>jS‍‌||(jS‍‌+=20,\\u0073\\u006f\\u0075\\u0072\\u0063\\u0065\\u0044\\u0061\\u0074\\u0061=\\u0075\\u006e\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0064,!1))&&(HG‍‌='\\x63\\x6F\\x6E\\x63\\x61',jS‍‌+=57),void 0))&&(78<jS‍‌&&(jS‍‌=67,RA‍‌='\\x70\\x61\\x72',[])||(jS‍‌-=12,wl‍‌+='\\x61')));",
      "replaceRegex": "##本书由连城读书独家发表，请勿转载！公众号搜索连城读书，赠会员，领福利"
    },
    "ruleExplore": {
      "author": "AUTHORNAME",
      "bookList": "DATA.KEYLIST",
      "bookUrl": "@js:\nvar extraParams = {lmID: \"6002330\"};\nu = bookRequest(\"info/bookindex\", {{$.KEYID}}, extraParams);",
      "coverUrl": "COVERURL",
      "intro": "CONTENT",
      "kind": "KEYTYPE",
      "name": "KEYNAME",
      "wordCount": "WORDNUM"
    },
    "ruleSearch": {
      "author": "a:nth-child(3)@text",
      "bookList": ".tb_con[1:]",
      "bookUrl": ".txt_100_t > a:nth-child(1)@href\n@js:\nbid = result.match(/\\/(\\d+)\\//)[1];\nvar extraParams = {lmID: \"6002330\"};\nu = bookRequest(\"info/bookindex\", bid, extraParams);",
      "coverUrl": "img@src",
      "intro": ".txt_100_t@textNodes##著",
      "name": ".txt_120_t2@text"
    },
    "ruleToc": {
      "chapterList": "@js:\nlet cdata = java.hexDecodeToString(result).split(\"-\")\nresult = java.ajax(bookRequest(cdata[0], cdata[1],JSON.parse(cdata[2])))\ndata = JSON.parse(result).DATA.BOOKCATA;\nbid = java.get(\"bid\");\ntry {\n  uid = JSON.parse(source.getVariable()).DATA.UID;\n  token = JSON.parse(source.getVariable()).DATA.TOKEN;\n} catch(e) {\n  var uid, token\n}\n\ndata.reduce(function(arr, item) {\n  arr.push({\"text\": item.VNAME, \"isvo\": true});\n  \n  item.CHAPTERS.forEach(function(x) {\n    cid = x.CID;\n    var apiPath = x.ISVC == 0 ? \"book/pubchapter\" : \"book/vipchapter\";\n    var extraParams = {cID: cid};\n    var bodyParams = {};\n    \n    var u = \"data:;base64,\"+java.base64Encode([apiPath, bid, JSON.stringify(extraParams), JSON.stringify(bodyParams), uid].join(\"-\")) + ',{\"type\":\"LCReadc\"}';\n    arr.push({\"text\": x.CNAME, \"href\": u, \"isvi\": x.ISVC});\n  });\n  \n  return arr;\n}, []);",
      "chapterName": "text",
      "chapterUrl": "href",
      "isVip": "isvi",
      "isVolume": "isvo"
    },
    "searchUrl": "https://my.lc1001.com/esou/q?dowhat=query&kw={{java.encodeURI(key, 'gbk')}}&type=1000",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎃啦啦小说网🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.shulala.org#🎃",
    "customButton": false,
    "customOrder": 122,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvar result = [];\nvar push = (title, url, size) => result.push({\"title\": title,\"url\": url,\"style\": {\"layout_flexGrow\": 1,\"layout_flexBasisPercent\": size}});\nvar tagUrl = source.key;\nvar tag = java.ajax(tagUrl);\nvar tagList = org.jsoup.Jsoup.parse(tag).select(\".nav a\");\nvar tagSize = 0.4;\npush(\"分类\",null,1);\nfor (var i=3;i < tagList.length-2;i++) {\n    var title = tagList[i].text();\n    var url = source.key + String(tagList[i].attr(\"href\")).replace(/(\\d+)\\/$/, `{{page}}`);\n    title = String(title).replace(/\\s/g, \"\");\n    push(title, url, tagSize);\n}\nJSON.stringify(result);",
    "lastUpdateTime": 0,
    "respondTime": 5237,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "#booktxt@html",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a.-1@text",
      "bookList": ".item",
      "bookUrl": "a.0@href",
      "coverUrl": "img@data-original",
      "kind": "em.-1@text",
      "name": "a.1@text",
      "wordCount": "em.-2@text"
    },
    "ruleToc": {
      "chapterList": "#list a[1:-3]\n<js>\nlist=[]\nstart=false\nbookname=book.name\nfor(var i in result)\n{\n\t\tif(start&&!result[i].text().includes('点击展开'))\n\tlist.push(result[i])\n\tif(result[i].text().includes(bookname))\n\tstart=true\n\t}\n\tlist\n</js>",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "<js>cookie.removeCookie(source.key);</js>/search/?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "25.4.27",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "桔纸书屋（优+）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.juzhishuwu.net/",
    "customButton": false,
    "customOrder": 123,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1761533014876,
    "respondTime": 4561,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": ".imgbox@img@src",
      "intro": "🕰  更新时间：\n{{@@[property$=update_time]@content##\\s.*}}\n📜  内容简介：\n{{@@class.m-desc xs-show@textNodes##.*观看小说\\:}}##(^|[。！？……；]+[”」）】]?)##$1<br>",
      "kind": "[property~=category|status|update_time]@content##\\s.*",
      "lastChapter": "{{@@[property$=chapter_name]@content##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求含理更谢乐发推票盟补加字].*?[】）\\)]}}•{{@@[property$=update_time]@content##\\s.*}}\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "name": "[property$=book_name]@content",
      "tocUrl": "{{baseUrl.replace('.html',\"/1/\")}}"
    },
    "ruleContent": {
      "content": "#content@textNodes",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "td.2@text",
      "bookList": "#nr",
      "bookUrl": "a.0@href",
      "checkKeyWord": "我的模拟长生路",
      "kind": "td.-1:-2@text",
      "lastChapter": "{{@@td.1@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求含理更谢乐发推票盟补加字].*?[】）\\)]}}•{{@@td.-2@text}}\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "name": "td.0@a@text"
    },
    "ruleToc": {
      "chapterList": ".section-list.1@li@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "<js>\ntry{\nn=java.getString('@@.pagination@text').match(/第1页，共(\\d+)页/)[1];\nfor(i=2,list=[];i<=n;i++){\n\tlist.push(baseUrl.replace(/\\/1\\/$/,'\\/'+i+'\\/'))\n}\nlist\n}catch(e){[]}\n</js>"
    },
    "searchUrl": "modules/article/search.php,{\n  \"body\": \"searchkey={{key}}&code=1234\",\n  \"charset\": \"gbk\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "finalbooks.work\nshellbook.cc",
    "bookSourceGroup": "🔞",
    "bookSourceName": "🙈紫云宫ᵃ",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.ziyungong.cc",
    "customButton": false,
    "customOrder": 124,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nhost=baseUrl;\nsort=[];\nfunction push(title,url,type1,type2){\n\tvar item={\n\t\ttitle:title,\n\t\turl:url\n\t};\n\tif (type1!==undefined&&type2!==undefined){\n\t\titem.style={\n\t\t\tlayout_flexGrow:type1,\n\t\t\tlayout_flexBasisPercent:type2}\n\t}\n\tsort.push(item)\n};\nconst sections=[\n\t{\n\t\ttitle:\"🌀紫云宫🌀\",\n\t\tcategories:[\n\t\t\t{title:\"舞文\",id:40},\n\t\t\t{title:\"情感\",id:41},\n\t\t\t{title:\"杂谈\",id:42},\n\t\t\t{title:\"鬼话\",id:43},\n\t\t\t{title:\"历史\",id:34},\n\t\t\t{title:\"武侠\",id:2},\n\t\t\t{title:\"当代\",id:24},\n\t\t\t{title:\"商道\",id:47},\n\t\t\t{title:\"杂文\",id:21},\n\t\t\t{title:\"文学\",id:8},\n\t\t\t{title:\"传记\",id:11},\n\t\t\t{title:\"军事\",id:45},\n\t\t\t{title:\"中国\",id:27},\n\t\t\t{title:\"政治\",id:30},\n\t\t\t{title:\"社会\",id:28},\n\t\t\t{title:\"纪实\",id:25},\n\t\t\t{title:\"官场\",id:13},\n\t\t\t{title:\"文化\",id:20},\n\t\t\t{title:\"战争\",id:37},\n\t\t\t{title:\"现代\",id:36},\n\t\t\t{title:\"逻辑\",id:18},\n\t\t\t{title:\"创业\",id:16}\n\t\t]\n\t},\n\t{\n\t\ttitle:\"🌀白马楼🌀\",\n\t\tcategories:[\n\t\t\t{title:\"私密\",id:6,host:\"{{host1}}\"},\n\t\t\t{title:\"精品\",id:23,host:\"{{host1}}\"}\n\t\t]\n\t}\n];\nsections.forEach(section=>{\n\tpush(section.title,\"\",1,1);\n\tsection.categories.forEach(category=>{\n\t\tconst baseHost=category.host||host;\n\t\tconst url=`${baseHost}/rank/month/${category.id}/{{page}}.html`;\n\t\tpush(category.title,url)\n\t});\n});\nJSON.stringify(sort)",
    "jsLib": "//白马楼\nvar host1='https://www.baimalook.com'\nvar host2='https://www.zongcai666.com'\nvar host3='https://www.sadfunsad.com'\nvar host4='https://www.everfyq.com'\nvar host5='https://www.360lele.cc'",
    "lastUpdateTime": 32500886400000,
    "respondTime": 9164,
    "ruleBookInfo": {
      "author": "[property=og:novel:author]@content",
      "intro": "[property=og:description]@content##^《.*?(是由.*?书籍|作者是{{book.author}})。",
      "kind": "[property=og:novel:category],[property=og:novel:status]@content",
      "tocUrl": "{{baseUrl}}catalog/"
    },
    "ruleContent": {
      "content": "<js>\nfunction dec(encData,rawKey){\n\tvar key=java.md5Encode(rawKey);\n\treturn java.aesBase64DecodeToString(encData,key.substring(16),\"AES/CBC/PKCS5Padding\",key.substring(0,16))\n};\nvar m=src.match(/d\\(\"([^\"]+)\",\\s*\"([^\"]+)\"\\)/);\nresult=dec(m[1],m[2]).replaceAll(/[\\u200A-\\u200F]/,\"\")\n</js>"
    },
    "ruleExplore": {
      "author": ".b@text",
      "bookList": ".book_list_img li,.CGsectionTwo-right-content>div",
      "bookUrl": "a@href",
      "intro": "p[-2]@text##^《.*?(是由.*?书籍|作者是{{book.author}})。",
      "name": "img@alt||.r@text"
    },
    "ruleSearch": {
      "author": "a[-1]@text",
      "bookList": ".SHsectionThree-middle p:not(.intro)",
      "bookUrl": "a[1]@href",
      "intro": "@js:result.nextElementSibling()",
      "kind": "a[0]@text",
      "name": "a[1]@text"
    },
    "ruleToc": {
      "chapterList": "ol li\n@js:\nvar list=[],links=result.select(\"a\"),regex=/(\\w+-\\w+)(?==\")/g;\nfor (i=0;i<links.length;i++){\n\tlink=links[i];\n\taAttrs=String(link).match(regex);\n\tvar text='',decUrl='';\n\tfor (key of aAttrs){\n\t\tvalue=link.attr(key);\n\t\tvalue.includes(\"L2J\")?decUrl=java.base64Decode(value):text=value.trim()\n\t}\n\tliAttrs=String(result[i]).match(regex);\n\tlist.push({\n\t\ttext:text,\n\t\thref:decUrl,\n\t\tnum:result[i].attr(liAttrs[1])\n\t});\n}\nlist.sort((a,b)=>a.num-b.num)",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "#end@href\n@js:\ntry{\n\tmaxPage=0;\n\ttempUrl=String(result[0]).replace(/\\/(\\d+)\\.html$/,(_match,_$1)=>{\n\t\tmaxPage=_$1;\n\t\treturn '/$page.html'\n\t});\n\tresult=[];\n\tfor (let i=2;i<=maxPage;i++){\n\t\tresult.push(tempUrl.replace(/\\$page/,i))\n\t}\n\tresult\n}catch(err){\n\t[]\n}"
    },
    "searchUrl": "/search/{{key}}/{{page}}/",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "126小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.tatays.com/",
    "customButton": false,
    "customOrder": 125,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻奇幻::/xuanhuan/p{{page}}.html\n武侠修真::/wuxia/p{{page}}.html\n都市言情::/yanqing/p{{page}}.html\n历史军事::/lishi/p{{page}}.html\n科幻小说::/kehuan/p{{page}}.html\n网游小说::/wangyou/p{{page}}.html\n女生小说::/nvsheng/p{{page}}.html\n其他小说::/qita/p{{page}}.html",
    "lastUpdateTime": 1700203320799,
    "respondTime": 22262,
    "ruleBookInfo": {
      "coverUrl": "class.chapter-list-info@class.chapter-img@tag.img@src",
      "intro": "class.chapter-detail@class.info@class.intro@text",
      "kind": "class.mid@class.clearfix@tag.dd[1]@text##类型：",
      "wordCount": "class.mid@class.clearfix@tag.dd[2]@text##字数："
    },
    "ruleContent": {
      "content": "class.content-box@class.chapter-content@html"
    },
    "ruleExplore": {
      "author": "tag.p[0]@text##\\| 连载",
      "bookList": "class.list-content@class.list-box@class.list-title clears@tag.li",
      "bookUrl": "tag.a@href",
      "coverUrl": "tag.a@tag.img@src",
      "intro": "tag.p[1]@text",
      "lastChapter": "tag.p[2]@tag.a@text",
      "name": "tag.h2@text"
    },
    "ruleSearch": {
      "author": "class.three@text",
      "bookList": "class.main-wrap@class.sort-list search_words@tag.li[!0]",
      "bookUrl": "class.one@tag.a@href",
      "checkKeyWord": "凡人修仙传",
      "lastChapter": "class.two@tag.a@text",
      "name": "class.one@tag.a@text",
      "wordCount": "class.four@text"
    },
    "ruleToc": {
      "chapterList": "class.chapter-box@class.chapter-list clears@tag.ul@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "https://www.tatays.com/modules/article/search.php,\n{\n    \"webView\":true,\n    \"method\":\"POST\",\n    \"body\":\"searchtype=all&searchkey={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "by二月无雪\n交流群：756138903",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爱站书",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.izhanshu.com",
    "customButton": false,
    "customOrder": 126,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\nvar result = [];\nvar mainCat = infoMap[\"频道\"] || \"分类\";\n\nresult.push({\n    \"title\": \"频道\",\n    \"type\": \"select\",\n    \"chars\": [\"分类\", \"全本\"],\n    \"default\": mainCat,\n    \"action\": \"java.refreshExplore()\",\n    \"style\": {\"layout_flexGrow\": 1, \"layout_flexBasisPercent\": 1}\n});\n\nvar cats = {\n    \"分类\": [\n        [\"校园言情\", \"/modules/article/articlelist.php?sortid=1&page={{page}}\"],\n        [\"都市言情\", \"/modules/article/articlelist.php?sortid=2&page={{page}}\"],\n        [\"古代爱情\", \"/modules/article/articlelist.php?sortid=3&page={{page}}\"],\n        [\"罗曼史\", \"/modules/article/articlelist.php?sortid=4&page={{page}}\"],\n        [\"耽美\", \"/modules/article/articlelist.php?sortid=5&page={{page}}\"],\n        [\"百合\", \"/modules/article/articlelist.php?sortid=6&page={{page}}\"],\n        [\"同人\", \"/modules/article/articlelist.php?sortid=7&page={{page}}\"],\n        [\"穿越重生\", \"/modules/article/articlelist.php?sortid=15&page={{page}}\"],\n        [\"奇幻玄幻\", \"/modules/article/articlelist.php?sortid=8&page={{page}}\"],\n        [\"网游竞技\", \"/modules/article/articlelist.php?sortid=9&page={{page}}\"],\n        [\"科幻异能\", \"/modules/article/articlelist.php?sortid=10&page={{page}}\"],\n        [\"恐怖灵异\", \"/modules/article/articlelist.php?sortid=11&page={{page}}\"],\n        [\"惊悚推理\", \"/modules/article/articlelist.php?sortid=12&page={{page}}\"],\n        [\"武侠仙侠\", \"/modules/article/articlelist.php?sortid=13&page={{page}}\"],\n        [\"历史军事\", \"/modules/article/articlelist.php?sortid=14&page={{page}}\"],\n        [\"综合其它\", \"/modules/article/articlelist.php?sortid=16&page={{page}}\"]\n    ],\n    \"全本\": [\n        [\"校园\", \"/modules/article/articlelist.php?sortid=1&fullflag=1&page={{page}}\"],\n        [\"都市\", \"/modules/article/articlelist.php?sortid=2&fullflag=1&page={{page}}\"],\n        [\"古代\", \"/modules/article/articlelist.php?sortid=3&fullflag=1&page={{page}}\"],\n        [\"罗曼史\", \"/modules/article/articlelist.php?sortid=4&fullflag=1&page={{page}}\"],\n        [\"耽美\", \"/modules/article/articlelist.php?sortid=5&fullflag=1&page={{page}}\"],\n        [\"百合\", \"/modules/article/articlelist.php?sortid=6&fullflag=1&page={{page}}\"],\n        [\"同人\", \"/modules/article/articlelist.php?sortid=7&fullflag=1&page={{page}}\"],\n        [\"穿越\", \"/modules/article/articlelist.php?sortid=15&fullflag=1&page={{page}}\"],\n        [\"奇幻\", \"/modules/article/articlelist.php?sortid=8&fullflag=1&page={{page}}\"],\n        [\"网游\", \"/modules/article/articlelist.php?sortid=9&fullflag=1&page={{page}}\"],\n        [\"科幻\", \"/modules/article/articlelist.php?sortid=10&fullflag=1&page={{page}}\"],\n        [\"恐怖\", \"/modules/article/articlelist.php?sortid=11&fullflag=1&page={{page}}\"],\n        [\"惊悚\", \"/modules/article/articlelist.php?sortid=12&fullflag=1&page={{page}}\"],\n        [\"武侠\", \"/modules/article/articlelist.php?sortid=13&fullflag=1&page={{page}}\"],\n        [\"历史\", \"/modules/article/articlelist.php?sortid=14&fullflag=1&page={{page}}\"],\n        [\"综合\", \"/modules/article/articlelist.php?sortid=16&fullflag=1&page={{page}}\"]\n    ]\n};\n\nvar selected = cats[mainCat];\nfor (var i = 0; i < selected.length; i++) {\n    result.push({\n        \"title\": selected[i][0],\n        \"url\": selected[i][1],\n        \"style\": {\"layout_flexGrow\": 1, \"layout_flexBasisPercent\": 0.25}\n    });\n}\n\nJSON.stringify(result);\n</js>",
    "lastUpdateTime": 1785668316827,
    "loginUrl": "https://www.izhanshu.com/login.php###在打开的页面中输入用户名和密码登录，登录成功后点击右上角✓即可",
    "respondTime": 3020,
    "ruleBookInfo": {
      "author": "class.divbox@tag.a.1@text",
      "coverUrl": "class.divbox@tag.img@src",
      "intro": "class.tabvalue.0@text",
      "kind": "class.tabvalue.1@tag.td.0@text##作品分类：",
      "lastChapter": "class.divbox@tag.h3@tag.a@text",
      "name": "class.divbox@tag.span.0@text##《|》",
      "tocUrl": "class.ulrow@tag.a.0@href"
    },
    "ruleContent": {
      "content": "id.acontent@html",
      "nextContentUrl": "class.footlink@tag.a.-1@href"
    },
    "ruleExplore": {
      "author": "class.c_value.0@text",
      "bookList": "class.c_row",
      "bookUrl": "class.c_subject@tag.a.1@href",
      "coverUrl": "tag.img@src",
      "intro": "class.c_description@text",
      "lastChapter": "class.c_subject@tag.a.2@text",
      "name": "class.c_subject@tag.a.1@text"
    },
    "ruleSearch": {
      "author": "class.c_value.0@text",
      "bookList": "class.c_row",
      "bookUrl": "class.c_subject@tag.a@href",
      "coverUrl": "tag.img@src",
      "intro": "class.c_description@text",
      "kind": "class.c_value.1@text",
      "lastChapter": "class.c_value.5@tag.a@text",
      "name": "class.c_subject@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "class.index@tag.dd@tag.a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://www.izhanshu.com/modules/article/search.php?searchkey={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "全免小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.danmeic.com",
    "bookUrlPattern": ".*/\\d+_\\d+/",
    "customButton": false,
    "customOrder": 127,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1753438546417,
    "respondTime": 30438,
    "ruleBookInfo": {
      "author": "tag.p.0@text##作\\s*者：(?:未知$|肉书屋$|匿名$)?",
      "coverUrl": "@js:baseUrl.replace(/.*(\\/\\d+)_(\\d+)\\//g,\"http://img.danmeic.com/image$1/$2/$2s.jpg\")",
      "intro": "id.intro@text##(?!）)(?:首-发|追-更)?(?:[（）\\x{0028}-\\x{052f}\\x{2000}-\\x{4dff}\\x{ac00}-\\x{ffe0}乄卍卐壹贰叁肆伍柒捌玖拾哦!]{4,}|[三③⒊⑶㈢э3叁]、?(?:vv|[wωώʷЩＷԜԝϢϣЩШшщ]))[\\.，。、点點っ\\*-][（）\\(\\)\\x{0028}-\\x{052f}\\x{2070}-\\x{4dff}\\x{ac00}-\\x{ffe0}乄卍卐哦欧]{0,}|^文案：|本文由.*?提供如果你也有.*?可以联系QQ[\\d\\s]*|享受阅读 享受午后.*大家吧！|各位书友要是觉得.*?推荐哦！| 上传者书籍介绍：",
      "kind": ".con_top@a!0@text&&tag.p.2@text##.*：| \\d+:.*",
      "lastChapter": "tag.dd.0@text##.*?[ _](?=第\\d{1,5}节|分节阅读)|分段阅读_|.*?(?=第\\d{1,5}部分阅读)|(?<=第\\d{1,5}部分)阅读|[（【\\(［《<](?:\\d*K?(?:追加|爆更)?第?(?:\\d+|[一二三四五六七八九十]{1,3})更|已修改|\\d*/?\\d*[为给].*?加?更|(?:跪|新(?:[作文书]|人新作，?)|上架|\\d+/\\d+|\\d*、?)?求[点个求]?(?:[评订]|推荐|收藏|订阅|[全首自][订定]|自动订|支持|鲜花|[月票]?票|打赏|保底|果实)|[抓捉]虫|改错|追读|[大小]修|\\d*字?[二两三四五大][章更]?合一|<VIP章节>|(?:\\d+|[一两二三四五六七八九]?[千万])字|(?:(?:推荐|[月银])票\\d*|\\d+评价|盟主|\\d*(?:打赏|鲜花)|解封|签约|补偿|\\d+珠)?[加爆补万两]更|(?:[此本]章)?不?[免计收]费|错字|改错|修(?:错别字|BUG)|感谢.*?的打赏|(?:粉红|推荐|月)票|冲榜).*?[>》］\\)】）]|(?:追-更|首-发)?[（） \\(\\)\\x{0028}-\\x{052f}\\x{2070}-\\x{4dff}\\x{ac00}-\\x{ffe0}乄卍卐哦欧]{5,}|^·",
      "name": "h1@text##，(?:全文)?免费|免费[ ，]|[\\(\\[【（](?:未删|免费|正文|最?[全完]|无减).*?[）】\\]\\)]|(?:全文免费|免费阅读|txt(?:全集|下载)|最新章节).*|\\s*(?:全[文本]|完结)\\+(?:超完整)?番外|(?:合集| )?完整版(?:\\+番外)?| (?:完结)?[完全]本|_御[宅书]书?屋|-POPOV文",
      "tocUrl": "@js:baseUrl.replace(/www/g,\"m\")+\"all.html\""
    },
    "ruleContent": {
      "content": "id.chaptercontent@html##（豆丁原创论坛　http：//bbs。。）……数几十万量的完结书籍免费下载|耽美分享平台腐书网&nbsp;fubook|&((?!&nbsp;&nbsp;).)*\\s*<br>\\s*<p style=.*?/p>|[尒小][说説]\\+影[视視]：ＰＯ1⑧KK.てＯM（\\w+.com）|(?:&nbsp;){4}(?:.*?第\\d+部分阅读|(?:分段阅读_|正文&nbsp;)?第&nbsp;\\d+&nbsp;(?:章|部分)|校园港|恋耽美|欲望文|·?_?分[节卷段]阅读_?\\d+|第\\d+节)\\s*<br>|(?s)(?:&nbsp;){4}.*?&nbsp;作者:.*?<br>\\s*(?:&nbsp;){4}.*?<br>|快捷c作:&nbsp;按键盘上方向键.*?功能！(?:《.*?》)?|(?m)(?:&nbsp;){4}.*?&nbsp;作者:.*<br>|《更多好书尽在(?:&nbsp;){4}电子书免费下载》|更多&nbsp;txt&nbsp;好书&nbsp;敬请登录&nbsp;shubao2|[（） \\(\\)\\x{0028}-\\x{052f}\\x{2070}-\\x{4dff}\\x{ac00}-\\x{ffe0}乄卍卐哦欧]{5,}[\\. ][（）\\(\\)\\x{0028}-\\x{052f}\\x{2070}-\\x{4dff}\\x{ac00}-\\x{ffe0}乄卍卐哦欧]{2,}|<p style=.*?/p>"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.td.2@text##作者：|^(?:未知|肉书屋|匿名)$",
      "bookList": "tr!0",
      "bookUrl": "a@href",
      "coverUrl": "a!1@href##.*(/\\d+)_(\\d+)/##http://img.danmeic.com/image$1/$2/$2s.jpg",
      "kind": "td!0:1:2@text",
      "lastChapter": "a!0@text##.*?[ _](?=第\\d{1,5}节|分节阅读)|分段阅读_|.*?(?=第\\d{1,5}部分阅读)|(?<=第\\d{1,5}部分)阅读|[（【\\(［《<](?:\\d*K?(?:追加|爆更)?第?(?:\\d+|[一二三四五六七八九十]{1,3})更|已修改|\\d*/?\\d*[为给].*?加?更|(?:跪|新(?:[作文书]|人新作，?)|上架|\\d+/\\d+|\\d*、?)?求[点个求]?(?:[评订]|推荐|收藏|订阅|[全首自][订定]|自动订|支持|鲜花|[月票]?票|打赏|保底|果实)|[抓捉]虫|改错|追读|[大小]修|\\d*字?[二两三四五大][章更]?合一|<VIP章节>|(?:\\d+|[一两二三四五六七八九]?[千万])字|(?:(?:推荐|[月银])票\\d*|\\d+评价|盟主|\\d*(?:打赏|鲜花)|解封|签约|补偿|\\d+珠)?[加爆补万两]更|(?:[此本]章)?不?[免计收]费|错字|改错|修(?:错别字|BUG)|感谢.*?的打赏|(?:粉红|推荐|月)票|冲榜).*?[>》］\\)】）]|(?:追-更|首-发)?[（） \\(\\)\\x{0028}-\\x{052f}\\x{2070}-\\x{4dff}\\x{ac00}-\\x{ffe0}乄卍卐哦欧]{5,}|^·",
      "name": "a!1@text##，(?:全文)?免费|免费[ ，]|[\\(【\\[（](?:未删|免费|正文|最?[全完]|无减).*?[）\\]】\\)]|(?:全文免费|免费阅读|txt(?:全集|下载)|最新章节).*|\\s*(?:全[文本]|完结)\\+(?:超完整)?番外|(?:合集| )?完整版(?:\\+番外)?| (?:完结)?[完全]本"
    },
    "ruleToc": {
      "chapterList": "id.chapterlist@p!0@a",
      "chapterName": "text##.*?[ _](?=第\\d{1,5}节|分节阅读)|分段阅读_|.*?(?=第\\d{1,5}部分阅读)|(?<=第\\d{1,5}部分)阅读|[（【\\(［《<](?:\\d*K?(?:追加|爆更)?第?(?:\\d+|[一二三四五六七八九十]{1,3})更|已修改|\\d*/?\\d*[为给].*?加?更|(?:跪|新(?:[作文书]|人新作，?)|上架|\\d+/\\d+|\\d*、?)?求[点个求]?(?:[评订]|推荐|收藏|订阅|[全首自][订定]|自动订|支持|鲜花|[月票]?票|打赏|保底|果实)|[抓捉]虫|改错|追读|[大小]修|\\d*字?[二两三四五大][章更]?合一|<VIP章节>|(?:\\d+|[一两二三四五六七八九]?[千万])字|(?:(?:推荐|[月银])票\\d*|\\d+评价|盟主|\\d*(?:打赏|鲜花)|解封|签约|补偿|\\d+珠)?[加爆补万两]更|(?:[此本]章)?不?[免计收]费|错字|改错|修(?:错别字|BUG)|感谢.*?的打赏|(?:粉红|推荐|月)票|冲榜).*?[>》］\\)】）]|(?:追-更|首-发)?[（） \\(\\)\\x{0028}-\\x{052f}\\x{2070}-\\x{4dff}\\x{ac00}-\\x{ffe0}乄卍卐哦欧]{5,}|^·",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php,{\n  \"charset\": \"gbk\",\n  \"method\": \"POST\",\n  \"body\": \"searchkey={{key}}&searchtype=articlename\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "QQ阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "bbnnfgh",
    "customButton": false,
    "customOrder": 128,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"　　　　　　 男频分类 　　　　　　\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"　　　　　　 都市 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"都市生活\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=都市生活\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异术超能\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=异术超能\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"娱乐明星\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=娱乐明星\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"商战职场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=商战职场\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春校园\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=青春校园\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 玄幻 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"异世大陆\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=异世大陆\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"东方玄幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=东方玄幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"高武世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=高武世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"王朝争霸\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=王朝争霸\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 仙侠 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"幻想修仙\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=幻想修仙\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神话修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=神话修真\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典仙侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=古典仙侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"修真文明\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=修真文明\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=现代修真\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 奇幻 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"史诗奇幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=史诗奇幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"另类幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=另类幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"剑与魔法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=剑与魔法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代魔法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=现代魔法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史神话\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=历史神话\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 历史 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"架空历史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=架空历史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"秦汉三国\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=秦汉三国\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"两宋元明\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=两宋元明\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"两晋隋唐\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=两晋隋唐\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史传记\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=历史传记\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"上古先秦\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=上古先秦\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"清史民国\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=清史民国\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"外国历史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=外国历史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 军事 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"抗战烽火\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=抗战烽火\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战争幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=战争幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"谍战特工\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=谍战特工\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军旅生涯\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=军旅生涯\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事战争\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=军事战争\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 科幻空间 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"末世危机\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=末世危机\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时空穿梭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=时空穿梭\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"进化变异\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=进化变异\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"未来世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=未来世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"星际文明\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=星际文明\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"超级科技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=超级科技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武机甲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=古武机甲\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 悬疑侦探 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1508&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"　　　　　　 游戏竞技 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"虚拟网游\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=虚拟网游\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏异界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=游戏异界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电子竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=电子竞技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏系统\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=游戏系统\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏主播\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=游戏主播\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 武侠 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"传统武侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=传统武侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=武侠幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠同人\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=武侠同人\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武未来\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=古武未来\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国术无双\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=国术无双\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 体育 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"篮球运动\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=篮球运动\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"足球运动\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=足球运动\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"体育赛事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=体育赛事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 轻小说 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"衍生同人\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=衍生同人\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"原生幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=原生幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"搞笑吐槽\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=搞笑吐槽\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 短篇 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"短篇小说\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=短篇小说\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生活随笔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=生活随笔\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"影视剧本\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=影视剧本\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"诗歌散文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=诗歌散文\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人物传记\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=人物传记\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"美文游记\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=美文游记\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"评论文集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=评论文集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 现实 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"现实百态\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=现实百态\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"爱情婚姻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=爱情婚姻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"成功励志\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=成功励志\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"社会乡土\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=社会乡土\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=青春文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文学艺术\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=文学艺术\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 女频分类 　　　　　　\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"　　　　　　 现代言情 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"婚恋情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=婚恋情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"豪门世家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=豪门世家\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市生活\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=都市生活\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"娱乐明星\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=娱乐明星\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市异能\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=都市异能\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"商战职场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=商战职场\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"民国情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=民国情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"官场沉浮\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=官场沉浮\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 古代言情 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"古典架空\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=古典架空\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"穿越奇情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=穿越奇情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古代情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=古代情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宫闱宅斗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=宫闱宅斗\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经商种田\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=经商种田\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女尊王朝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=女尊王朝\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"热血江湖\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=热血江湖\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"上古蛮荒\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=上古蛮荒\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 悬疑侦探 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"推理侦探\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=推理侦探\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"悬疑探险\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=悬疑探险\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神秘文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=神秘文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"恐怖惊悚\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=恐怖惊悚\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"幽冥情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=幽冥情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 仙侠奇缘 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"古典仙侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=古典仙侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"仙侣奇缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=仙侣奇缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=武侠情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=现代修真\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"远古洪荒\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=远古洪荒\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 玄幻言情 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"东方玄幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=东方玄幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异世大陆\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=异世大陆\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"魔法幻情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=魔法幻情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异能超术\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=异能超术\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异族恋情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=异族恋情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"西方奇幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=西方奇幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"远古神话\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=远古神话\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 浪漫青春 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"青春校园\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=青春校园\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春纯爱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=青春纯爱\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春疼痛\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=青春疼痛\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"叛逆成长\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=叛逆成长\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 科幻空间 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"时空穿梭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=时空穿梭\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"末世危机\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=末世危机\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"未来世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=未来世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"星际恋歌\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=星际恋歌\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"超级科技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=超级科技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"进化变异\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=进化变异\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武机甲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=古武机甲\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 游戏竞技 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"网游情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=网游情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电子竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=电子竞技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏异界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=游戏异界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"体育竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=体育竞技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 纯爱 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"婚恋情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=婚恋情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时空穿梭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=时空穿梭\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"穿越奇情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=穿越奇情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典架空\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=古典架空\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古代情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=古代情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市生活\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=都市生活\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 出版文学 　　　　　　\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"　　　　　　 小说 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"社会\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=社会\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"情感\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=情感\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"侦探/悬疑/推理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=侦探/悬疑/推理\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"作品集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=作品集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=历史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=科幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=武侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"世界名著\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=世界名著\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 励志 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"成功/激励\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=成功/激励\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心灵与修养\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=心灵与修养\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青少年励志\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=青少年励志\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人际交往\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=人际交往\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人生哲学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=人生哲学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"口才/演讲/辩论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=口才/演讲/辩论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人在职场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=人在职场\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女性励志\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=女性励志\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 心理 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"心理百科\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=心理百科\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心理学经典著作\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=心理学经典著作\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心理学入门\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=心理学入门\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"应用心理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=应用心理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人格心理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=人格心理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心灵疗愈\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=心灵疗愈\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心理学理论与研究\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=心理学理论与研究\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"社会心理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=社会心理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 军事 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"武器装备\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=武器装备\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=军事理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"世界军事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=世界军事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=军事文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=军事史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经典军事著作\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=经典军事著作\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战略战术战役\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=战略战术战役\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国军事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=中国军事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 政治 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"政治理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=政治理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"党政读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=党政读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国政治\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=中国政治\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"世界政治\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=世界政治\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"法律普及读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=法律普及读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"政治热点\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=政治热点\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"公共管理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=公共管理\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"法律法规\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=法律法规\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 文学 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"中国现当代随笔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=中国现当代随笔\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=文集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国现当代诗歌\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=中国现当代诗歌\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"纪实文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=纪实文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文学评论与鉴赏\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=文学评论与鉴赏\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"名家作品\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=名家作品\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国古诗词\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=中国古诗词\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文学理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=文学理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 文化 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=中国文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文化史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文化史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"地域文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=地域文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"民族文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=民族文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"艺术理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=艺术理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国学普及读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=国学普及读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文化理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文化理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 历史 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"历史普及读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=历史普及读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=中国史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"世界史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=世界史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"地方史志\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=地方史志\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史随笔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=历史随笔\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文物考古\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=文物考古\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"史料典籍\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=史料典籍\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"史学理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=史学理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 社科 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"教育\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=教育\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"语言文字\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=语言文字\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"社会科学总论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=社会科学总论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"社会学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=社会学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经典名家作品集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=经典名家作品集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人类学/人口学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=人类学/人口学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"新闻传播出版\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=新闻传播出版\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"民族学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=民族学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 养生 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"健康百科\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=健康百科\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"饮食健康\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=饮食健康\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"常见病预防和治疗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=常见病预防和治疗\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"药膳食疗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=药膳食疗\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中医养生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=中医养生\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女性/儿童\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=女性/儿童\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心理健康\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=心理健康\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中老年养生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=中老年养生\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 投资 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"理财技巧\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=理财技巧\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女性理财\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=女性理财\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"证券/股票\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=证券/股票\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"投资指南\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=投资指南\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"外汇\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=外汇\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 经济 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"经济通俗读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=经济通俗读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经济学理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=经济学理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"各部门经济\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=各部门经济\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国经济\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=中国经济\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国际经济\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=国际经济\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经济史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=经济史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经济法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=经济法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"财政税收\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=财政税收\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 亲子 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"家教方法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=家教方法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"育儿/亲子\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=育儿/亲子\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"孕产知识\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=孕产知识\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"素质教育\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=素质教育\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"母婴喂养/护理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=母婴喂养/护理\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"胎教/早教\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=胎教/早教\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家教理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=家教理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"养育女孩\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=养育女孩\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 管理 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"一般管理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=一般管理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"市场/营销\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=市场/营销\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"企业与企业家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=企业与企业家\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"金融/投资\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=金融/投资\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电子商务\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=电子商务\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"会计/财务\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=会计/财务\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"商业史传\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=商业史传\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战略管理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=战略管理\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 两性 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1696&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"恋爱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1696&start={{page}}&count=20&sub=恋爱\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"婚姻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1696&start={{page}}&count=20&sub=婚姻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"婚恋综合\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1696&start={{page}}&count=20&sub=婚恋综合\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"性知识\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1696&start={{page}}&count=20&sub=性知识\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 哲学 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"中国哲学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=中国哲学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"哲学知识读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=哲学知识读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"西方哲学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=西方哲学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"哲学经典著作\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=哲学经典著作\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"东方哲学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=东方哲学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"伦理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=伦理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"哲学理论与流派\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=哲学理论与流派\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"马克思哲学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=马克思哲学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 宗教 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"佛教\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=佛教\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宗教普及读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=宗教普及读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"道教\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=道教\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宗教理论与概况\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=宗教理论与概况\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"伊斯兰教\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=伊斯兰教\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宗教经典著作\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=宗教经典著作\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 传记 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"人物合集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=人物合集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史人物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=历史人物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"财经人物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=财经人物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"政治人物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=政治人物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文学家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=文学家\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历代帝王\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=历代帝王\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=其他\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科学家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=科学家\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 科普 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"百科知识\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=百科知识\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科学世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=科学世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人类故事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=人类故事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宇宙知识\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=宇宙知识\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生物世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=生物世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生态环境\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=生态环境\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神秘现象\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=神秘现象\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"数理化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=数理化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 自然 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"总论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=总论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"地球科学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=地球科学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"天文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=天文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科技史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=科技史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生物科学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=生物科学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"化学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=化学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"物理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=物理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 美食 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"家常菜谱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=家常菜谱\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"药膳食疗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=药膳食疗\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"地方美食\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=地方美食\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"茶酒饮料\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=茶酒饮料\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"烹饪理论/手册\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=烹饪理论/手册\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"饮食文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=饮食文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"西餐料理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=西餐料理\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 休闲 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"幽默笑话\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=幽默笑话\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"旅游随笔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=旅游随笔\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宠物杂事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=宠物杂事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=游戏\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家庭园艺\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=家庭园艺\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"户外探险\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=户外探险\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国内自助旅游指南\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=国内自助旅游指南\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"车载户外\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=车载户外\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 艺术 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=中国文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文化史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文化史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"地域文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=地域文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"民族文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=民族文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"艺术理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=艺术理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国学普及读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=国学普及读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文化理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文化理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 时尚 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"护肤/美容整形\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=护肤/美容整形\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家事窍门\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=家事窍门\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时尚\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=时尚\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家装方法指导\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=家装方法指导\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"瘦身美体\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=瘦身美体\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"服饰搭配/配饰\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=服饰搭配/配饰\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家装策略秘籍\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=家装策略秘籍\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"彩妆/美发/美甲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=彩妆/美发/美甲\",\"style\":{\"layout_flexGrow\":1}}]",
    "header": "{\n\t\"user-agent\":\"Mozilla/5.0 (Linux; Android 10; MI 8 Build/QKQ1.190828.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.101 Mobile Safari/537.36\",\n\t\"Referer\":\"https://bookshelf.html5.qq.com/qbread\"\n\t}",
    "lastUpdateTime": 1768832840029,
    "respondTime": 3616,
    "ruleBookInfo": {
      "author": "$.author",
      "init": "$.data.bookInfo",
      "intro": "<p>{{(t=String(java.getString('$.tag'))).length?'🏷️ '+t.replace(/\\|/g,', '):''}}</p>{{'\\n&lrm;'}}\n<p>{{$.summary}}</p>",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{java.put('time',String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,''))}}",
      "lastChapter": "{{$.lastSerialname}} • {{java.get('time')}}",
      "name": "$.resourceName",
      "tocUrl": "https://bookshelf.html5.qq.com/qbread/api/book/all-chapter?bookId={{$.resourceID}}",
      "wordCount": "$.contentsize"
    },
    "ruleContent": {
      "content": "<p>{{$.data.Content[0].Content}}</p>"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.rows[*]",
      "bookUrl": "https://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{$.resourceID}}",
      "coverUrl": "$.picurl",
      "intro": "$.summary",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,'')}}",
      "lastChapter": "$.lastSerialname",
      "name": "$.resourceName##（.*",
      "wordCount": "$.contentsize"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.booklist[*]",
      "bookUrl": "$.bid\n<js>1100000000+parseInt(result)</js>\nhttps://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{result}}",
      "checkKeyWord": "深空彼岸",
      "coverUrl": "$.bid\n@js:\nvar s = result\nfunction gt(s){\n\tlet a = s.slice(-3)\n\tif(a<10){\n\t\t\tn = s.slice(-1)\n\t\t}\n\telse if(a<100){\n\t\t\tn = s.slice(-2)\n\t\t}\n\telse{\n\t\t\tn = a\n\t\t}\n\treturn n\n}\n\"http://wfqqreader-1252317822.image.myqcloud.com/cover/\"+gt(s)+\"/\"+s+\"/b_\"+s+\".jpg\"",
      "intro": "$.intro",
      "kind": "{{$.categoryInfoV4\n##\\d.*?\\:(.*?)\\:.*?(,|$)##$1$2}}\n{{$.updateInfo##已更新至.*##连载中}}\n##小说,",
      "lastChapter": "$.updateInfo##已更新至##第",
      "name": "$.title",
      "wordCount": "$.totalWords"
    },
    "ruleToc": {
      "chapterList": "$.rows",
      "chapterName": "$.serialName",
      "chapterUrl": "https://novel.html5.qq.com/be-api/content/ads-read,{\n\t\"method\": \"POST\",\n\t\"body\": {\n\t\t\"Scene\": \"chapter\",\n\t\t\"ContentAnchorBatch\": [{\n\t\t\t\t\"BookID\": \"{{baseUrl.match(/bookId=(\\d+)/)[1]}}\",\n\t\t\t\t\"ChapterSeqNo\": [{{$.serialID}}]\n\t\t\t}]\n\t},\n\t\"headers\": {\n\t\t\"Q-GUID\": \"4aa27c7cf2d9aca3359656ea186488cb\"\n\t}\n}",
      "isPay": "$.isFree",
      "isVip": "//删掉这行字，vip章节会显示🔓\n$.isFree"
    },
    "searchUrl": "https://newopensearch.reader.qq.com/wechat?keyword={{key}}&start={{page-1}}&end=19",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "飞言情",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.feiyanqing.com",
    "customButton": false,
    "customOrder": 129,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "lastUpdateTime": 1768573824845,
    "respondTime": 1742,
    "ruleBookInfo": {
      "coverUrl": "class.BGsectionOne-top-left@tag.img.0@src",
      "intro": "id.intro@tag.p@text",
      "tocUrl": "class.BGsectionOne-bottom@tag.li.1@tag.a.0@href"
    },
    "ruleContent": {
      "content": "@js:\nfunction d(a, b) {\n    b = java.md5Encode(b);\n    var d = b.substring(0, 16);\n    var e = b.substring(16);\n    return java.aesBase64DecodeToString(\n        a, \n        e, \n        \"AES/CBC/PKCS5Padding\", \n        d\n    );\n}\n\neval(result.match(/(d\\(\"[\\s\\S]+?\"\\))\\)/)[1]);"
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "text##(?=.).*?(?=（)",
      "bookList": ".SHsectionThree-middle@p",
      "bookUrl": "tag.a.1@href",
      "kind": "tag.a.2@text",
      "name": "tag.a.1@text"
    },
    "ruleToc": {
      "chapterList": "class.BCsectionTwo-top-chapter@li\n<js>\nlist = result.toArray();\ns = /originalOrder = .*?;/.test(src)?eval(src.match(/originalOrder = (.*?);/)[1]):result;\nl = [];\nif(/<li.*?\"\\d+\" .*?-[^\"]+=\"\\d+\">/.test(result)){\n\tnum = String(result).match(/<li.*?\"\\d+\" (.*?-[^\"]+)=\"\\d+\">/)[1];\n\tl = list.sort((a,b)=>a.attr(num)-b.attr(num));\n\t}else{\nfor(i in list){ l[s[i]] = list[i]};\n}\nl.join(\"\")\n</js>\ntag.a",
      "chapterName": "<js>\n//java.log(result)\ntry{\nresult = String(result);\n!/\\.html/.test(result)?result.match(/class=\"g\".*?=\"L2[a-zA-Z\\d\\+=\\/]+?\".*?=\"(.*?)\"/)[1]:java.getString(\"@@data-real||text\");\n}catch(e){\n\tresult = result.match(/class=\"g\".*?=\"(.*?)\".*?=\"L2[A-Za-z\\d\\+=\\/]+?\"/)[1]\n\t}\n</js>\n",
      "chapterUrl": "@href\n<js>\ntry{\nlet re = /class=\"g\".*?=\"(L2[A-Za-z\\d\\+=\\/]+)/;\nresult = /\\.html/.test(result)?result:java.base64Decode(String(src).match(re)[1])\n}catch(e){}\n</js>",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "https://www.seahobook.com/search/{{key}}/{{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "//同站//：\n   肉书屋  https://m.roushuwu4.com\n                https://m.roushuwu7.com\n新御书屋 https://m.xyushuwu.me\n   BL小说 https://m.xtfree1.com\n    肉文屋 https://m.rouwenwu1.com\n                https://m.rouwenwu2.com\n天美小说 https://m.tianmeixs.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "📱言情手机站",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.po18yq.com",
    "customButton": false,
    "customOrder": 130,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"总点击\",\"url\":\"/top/allvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月点击\",\"url\":\"/top/monthvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周点击\",\"url\":\"/top/weekvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/sort/1_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠仙侠\",\"url\":\"/sort/2_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市言情\",\"url\":\"/sort/3_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻网游\",\"url\":\"/sort/4_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"惊悚悬疑\",\"url\":\"/sort/5_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"耽美同人\",\"url\":\"/sort/6_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"穿越架空\",\"url\":\"/sort/7_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"高辣浓情\",\"url\":\"/sort/8_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"禁忌百合\",\"url\":\"/sort/9_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"精品文学\",\"url\":\"/sort/10_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"完本\",\"url\":\"/full/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\" \",\"url\":\" \",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1721904429841,
    "loginUrl": "",
    "respondTime": 10635,
    "ruleBookInfo": {
      "author": ".xx a.1@text",
      "coverUrl": "img@src",
      "init": "",
      "intro": ".jianjie@html",
      "kind": ".xx a.0@text##小说",
      "lastChapter": ".xx a.2@text##正文\\s",
      "name": ".xx li.0@text##\\_.*",
      "tocUrl": ".gengduo a@href"
    },
    "ruleContent": {
      "content": "#nr@html",
      "imageStyle": "0",
      "nextContentUrl": ""
    },
    "ruleExplore": {
      "author": "a.2@text",
      "bookList": ".list ul",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": "span.2@text##\\s",
      "kind": "span.-1@text",
      "lastChapter": "",
      "name": "a.1@text##\\_.*",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".fk li",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": "",
      "kind": "a.0@text##\\[|\\]",
      "lastChapter": "",
      "name": "a.1@text##\\_.*",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": ".lb li a",
      "chapterName": "text##本页章节.*",
      "chapterUrl": "href",
      "nextTocUrl": ".showpage@a@href"
    },
    "searchUrl": "/s.php,{\n  \"charset\": \"gbk\",\n  \"method\": \"POST\",\n  \"body\": \"s={{key}}&type=articlename\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "网站正文故障",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "必去吧楼",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.bequ6.org",
    "customButton": false,
    "customOrder": 133,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1784912433169,
    "respondTime": 4266,
    "ruleBookInfo": {
      "author": "text.作者：@text",
      "coverUrl": ".block_img2@img@src",
      "intro": ".intro_info@text",
      "kind": "text.分类：@text&&\ntext.状态：@text&&\ntext.更新：@text",
      "lastChapter": ".block_txt2@a.-1@text",
      "name": "h2@text",
      "tocUrl": "text.查看目录@href"
    },
    "ruleContent": {
      "content": "#nr1@textNodes",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "//*[not(@class='blue')]/text()##\\[.*\\]|\\/",
      "bookList": ".line",
      "bookUrl": ".blue@href",
      "kind": "##\\[(.*)\\]##$1##",
      "name": ".blue@text"
    },
    "ruleToc": {
      "chapterList": ".chapter li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value||text.下一页@href"
    },
    "searchUrl": "/search?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "Tips：\n1、修复目录拼接缺章、乱序问题\n2、优化目录加载慢（一定程度上）\n3、修复部分章节内容获取失败\n目前存在问题：\n个别书籍的个别章节加载失败（如天衍录第3章），原因未找到",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "幻影小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.huiysj.com/",
    "bookUrlPattern": "https://www.huiysj.com/kuaishou/.*/index.html",
    "customButton": false,
    "customOrder": 134,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻修真::https://www.huiysj.com/book/1/{{page}}.html\n重生穿越::https://www.huiysj.com/book/2/{{page}}.html\n都市小说::https://www.huiysj.com/book/3/{{page}}.html\n军史小说::https://www.huiysj.com/book/4/{{page}}.html\n网游小说::https://www.huiysj.com/book/5/{{page}}.html\n科幻小说::https://www.huiysj.com/book/6/{{page}}.html\n灵异小说::https://www.huiysj.com/book/7/{{page}}.html\n言情小说::https://www.huiysj.com/book/8/{{page}}.html\n其他小说::https://www.huiysj.com/book/9/{{page}}.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36\"}",
    "lastUpdateTime": 1783186551584,
    "respondTime": 9505,
    "ruleBookInfo": {
      "author": ".details .p a@text",
      "coverUrl": ".img img@src",
      "intro": ".details .p2@text",
      "kind": "meta[property=og:novel:category]@content",
      "lastChapter": "meta[property=og:novel:latest_chapter_name]@content",
      "name": ".details h2@text"
    },
    "ruleContent": {
      "content": "@js:\nvar src = String(result);\nvar doc = org.jsoup.Jsoup.parse(src);\n\nfunction decode(d) {\n    var scripts = d.select('script');\n    var s = '';\n    for (var i = 0; i < scripts.size(); i++) {\n        var data = scripts.get(i).data();\n        var m = data.match(/qsbs\\.bb\\('([^']+)'\\)/);\n        if (m) {\n                var bytes = Packages.java.util.Base64.getDecoder().decode(m[1]);\n                s += new Packages.java.lang.String(bytes, 'UTF-8');\n        }\n    }\nif(null == s || s==''){\nvar str=doc.select('div.info_dv1');\nvar pList=str.select('p');\ns=pList.toString();\n}\n    return s;\n}\nvar content = decode(doc);\n\nvar m = baseUrl.match(/kuaishou\\/(\\d+)\\/(\\d+)(?:_\\d+)?\\.html/);\nif (m) {\n    var bid = m[1];\n    var cid = m[2];\n    for (var p = 1; p < 50; p++) {\n            var url = 'https://www.huiysj.com/kuaishou/' + bid + '/' + cid + '_' + p + '.html';\n            var html = String(java.ajax(url));\n            if (!html || html.indexOf('（第1页）') > 0) break;\n            var nextContent = decode(org.jsoup.Jsoup.parse(html));\n            if (!nextContent || nextContent === '') break;\n            content += nextContent;\n    }\n}\n\ncontent;",
      "replaceRegex": "##<p>.*?幻影小说.*?</p>|请关闭浏览器阅读模式.*|手机浏览器扫描.*##"
    },
    "ruleExplore": {
      "author": ".s4@text",
      "bookList": ".list_l2 li",
      "bookUrl": ".s2 a@href",
      "kind": ".s1@text",
      "lastChapter": ".s2 a@title##最新章节：",
      "name": ".s2 a@text"
    },
    "ruleSearch": {
      "author": ".s3 a@text",
      "bookList": "#novel-search li",
      "bookUrl": ".s2 a@href",
      "checkKeyWord": "我的",
      "kind": ".s1@text",
      "lastChapter": ".s4 a@text",
      "name": ".s2 a@text"
    },
    "ruleToc": {
      "chapterList": "@js:\nvar url='https://www.huiysj.com/kuaishou/';\nvar bookId = baseUrl.match(/kuaishou\\/(\\d+)/)[1];\nvar list = new Packages.java.util.ArrayList();\nfirstPage();\notherPage();\n\nfunction firstPage() {\n    var doc = org.jsoup.Jsoup.parse(result.toString());\n    var sections = doc.select('div.info_dv3');\n    for (var s = 0; s < sections.size(); s++) {\n        var sec = sections.get(s);\n        var title = sec.select('div.title').text();\n        if (title.indexOf('\\u7ae0\\u8282\\u5217\\u8868') >= 0) {\n            var links = sec.select('a[href*=/kuaishou/]');\n            for (var i = 0; i < links.size(); i++) {\n                var a = links.get(i);\n                var name = a.text();\n                var hr = a.attr('abs:href');\n                if (name && hr && hr.indexOf('all_') < 0) {\n                    addChap(name, hr);\n                }\n            }\n        }\n    }\n}\n\nfunction otherPage() {\n    for (var p = 1; p < 100; p++) {\n        var pageUrl = url + bookId + '/all_' + p + '/index.html';\n        var html = String(java.ajax(pageUrl));\n        if (!html || html.indexOf('章节列表（第1页）') > 0) {\n            break;\n        }\n        var d2 = org.jsoup.Jsoup.parse(html);\n        var str = d2.select('style').toString();\n        var nthChildCount = (str.match(/ul\\.yanqing_list>li:nth-child\\(/g) || []).length;\n        var nthLastChildCount = (str.match(/ul\\.yanqing_list>li:nth-last-child\\(/g) || []).length;\n        var items = d2.select('ul.yanqing_list li a');\n        if (items.size() === 0) break;\n        for (var k = nthChildCount; k < items.size() - nthLastChildCount; k++) {\n            var a2 = items.get(k);\n            var name = a2.text();\n            var oc = a2.attr('onclick');\n            var m = oc.match(/read_tz\\((\\d+)\\)/);\n            if (m) {\n                addChap(name, url + bookId + '/' + m[1] + '.html');\n            }\n        }\n    }\n}\n\nfunction addChap(name, url) {\n    if (url && url.indexOf('kuaishou') >= 0) {\n        var map = new Packages.java.util.HashMap();\n        map.put(\"name\", name);\n        map.put(\"url\", url);\n        list.add(map);\n    }\n}\n\nlist;",
      "chapterName": "$.name",
      "chapterUrl": "$.url"
    },
    "searchUrl": "https://www.huiysj.com/search.html,{\"method\":\"POST\",\"body\":\"s={{key}}\",\"charset\":\"utf-8\"}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "52书库（po5.net）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.po5.net#77",
    "customButton": false,
    "customOrder": 135,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "现代耽美::/xiandaidushi/<,index_{{page}}.html>\n穿越耽美::/chongsheng/<,index_{{page}}.html>\n古架耽美::/jiakong/<,index_{{page}}.html>\nGL百合::/gl/<,index_{{page}}.html>\n综漫同人::/bl/<,index_{{page}}.html>\n言情小说::/yanqing/<,index_{{page}}.html>",
    "lastUpdateTime": 1743834824844,
    "respondTime": 19858,
    "ruleBookInfo": {
      "author": "h1@text\n##.*_|【.*",
      "name": "h1@text\n##_.*"
    },
    "ruleContent": {
      "content": "#nr1 p:not(:last-of-type)@textNodes"
    },
    "ruleExplore": {
      "author": "h2@text\n##.*_|【.*?】",
      "bookList": ".content article:not(:first-of-type):not(:last-of-type)",
      "bookUrl": "a@href",
      "intro": ".note@text",
      "kind": "h2@text\n##.*【(.*)】##$1",
      "lastChapter": ".muted@text",
      "name": "h2@text\n##^\\d+\\.|_.*"
    },
    "ruleSearch": {
      "author": "h4@text\n##.*_|【.*?】",
      "bookList": ".content article",
      "bookUrl": "a@href",
      "checkKeyWord": "综漫",
      "intro": ".note@text",
      "kind": "h4@text&&.muted a@text\n##.*【(.*)】##$1",
      "name": "h4@text\n##^\\d+\\.|_.*"
    },
    "ruleToc": {
      "chapterList": ".list .mulu a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/so/search.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "SF轻小说⑥",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.sfacg.com#一程",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 136,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "首页::/\n最新::/latelist\n签约::/latelist/s\nVIP::/vip/\n人气::/rank/original.html\n畅销::/rank/sale.html\n新书::/rank/new.html\n日轻::/rank/jp.html\n收藏::/rank/bm.html\n魔幻::/API/HTML5.ashx?op=latest&index={{page}}&tid=21\n玄幻::/API/HTML5.ashx?op=latest&index={{page}}&tid=22\n古风::/API/HTML5.ashx?op=latest&index={{page}}&tid=23\n科幻::/API/HTML5.ashx?op=latest&index={{page}}&tid=24\n校园::/API/HTML5.ashx?op=latest&index={{page}}&tid=25\n都市::/API/HTML5.ashx?op=latest&index={{page}}&tid=26\n游戏::/API/HTML5.ashx?op=latest&index={{page}}&tid=27\n同人::/API/HTML5.ashx?op=latest&index={{page}}&tid=28\n悬疑::/API/HTML5.ashx?op=latest&index={{page}}&tid=29",
    "lastUpdateTime": 1764929912081,
    "loginUrl": "https://m.sfacg.com/login",
    "respondTime": 891,
    "ruleBookInfo": {
      "author": ".book_info3@tag.span@text##\\s.*",
      "coverUrl": ".book_info@tag.img@src",
      "intro": ".book_profile@tag.li.1@text##\\s",
      "kind": ".book_info2@tag.span@text",
      "lastChapter": "",
      "name": ".book_info@tag.span.0@text",
      "tocUrl": "text.目录列表@href",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "div[style=text-indent: 2em;]@html@js:\nresult",
      "imageStyle": "FULL",
      "nextContentUrl": ""
    },
    "ruleExplore": {
      "author": "@js:\nif(baseUrl.match(/API/))\nJSON.parse(result).AuthorName;\nelse {\njava.setContent(result);\nString(java.getString(\"tag.div.-1@text\",false)).replace(/\\/.*/,'').replace(/null/,'');}",
      "bookList": "<js>\nif(baseUrl.match(/API/))\n//JSON.parse(decodeURIComponent(result));\ndecodeURIComponent(result).match(/\\{.*?\\}/g);\nelse\norg.jsoup.Jsoup.parse(result).select(\".book_bk_qs1 a:has(img)\")\n</js>",
      "bookUrl": "href||/b/{$.NovelID}/",
      "coverUrl": "img@src||https://rs.sfacg.com/web/novel/images/NovelCover/Big/{$.NovelCover}",
      "intro": "tag.li.0@text",
      "kind": "@js:\nif(baseUrl.match(/API/))\nJSON.parse(result).TypeName;\nelse {\njava.setContent(result);\nString(java.getString(\"tag.div.-1@text\",false)).replace(/.*?\\//,'').replace(/null/,'');}",
      "lastChapter": "",
      "name": "id.listtitle@textNodes||text||$.NovelName"
    },
    "ruleSearch": {
      "author": "$.AuthorName",
      "bookList": "$.Novels[0,1]",
      "bookUrl": "/i/{$.NovelID}/",
      "coverUrl": "https://rs.sfacg.com/web/novel/images/NovelCover/Big/{$.NovelCover}",
      "intro": "@js:java.get('intro')",
      "kind": "@js:\nvar bid=String(result).match(/NovelID=(\\d+)/)[1];\nvar url=\"http://book.sfacg.com/Novel/\"+bid+\"/\";\nimportClass(org.jsoup.Jsoup);\nresult=Jsoup.parse(java.ajax(url));\nvar intro=String(result.select(\".introduce\").text()).trim();\nvar last=result.select(\".chapter-title a\").text();\nvar tags=result.select(\".text-row:eq(0)\").text();\njava.put('intro',intro);\njava.put('last',last);\ntags=tags.match(/类型：(.*?)\\s字数：(.*?)字\\[(.*?)\\]\\s.*/);\n(tags)?tags.shift()&&tags.join(',').replace(/已|中/,''):'';",
      "lastChapter": "@js:java.get('last')",
      "name": "$.NovelName",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "+@js:\nvar list=[];\nvar url=result.match(/\\/c\\/\\d+\\//g);\nvar n1=new RegExp(/mulu\">(.+)<\\/d/g);\nvar n3=new RegExp(/href=\"\\/c\\/\\d+\\/\"><li>(.+?)<\\/l/g);\nvar n;var n_pre='';var n_sub;\nvar n_temp;\nvar t=-1;\nvar p=[];var p_tmp;\nvar i=-1;var i_tmp;\n//获取每卷的标题\nwhile((n_temp=n1.exec(result))!=null){\ni=i+1;\np.push({q:n_temp[1],w:n1.lastIndex});\n}\ni_tmp=i;\n\nwhile((n_temp=n3.exec(result))!=null){\n//获取每话的标题\nn_sub=n_temp[1];\n//判断VIP\nif((n_sub.match(/span/))!=null){\nn_sub=n_sub.match(/span>(.+)<\\/span><spa/)[1];n_sub='🔒'+n_sub;\n}\n//给每话的标题添加卷标题\nif(p[0]!=null){\ni=i_tmp;\np_tmp=p[i].w;\nwhile(p_tmp>n3.lastIndex){\ni=i-1;\np_tmp=p[i].w;\n}\nn_pre=p[i].q;\nn_pre=n_pre+' | ';\n}\n//保存数据到数组\nn=n_pre+n_sub;\nt=t+1;\nlist.push({k:n,v:url[t]});\n}\nlist;",
      "chapterName": "k",
      "chapterUrl": "v"
    },
    "searchUrl": "/API/HTML5.ashx?op=search&keyword={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "小说77",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.xs177.com",
    "bookUrlPattern": "/xs_\\d+/",
    "customButton": false,
    "customOrder": 137,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "❀                       全 部 小 说                      ❀::\n玄幻奇幻::/shuku/0_1_0_{{page}}.html\n武侠仙侠::/shuku/0_2_0_{{page}}.html\n都市生活::/shuku/0_3_0_{{page}}.html\n历史军事::/shuku/0_4_0_{{page}}.html\n游戏竞技::/shuku/0_5_0_{{page}}.html\n科幻未来::/shuku/0_6_0_{{page}}.html\n恐怖悬疑::/shuku/0_7_0_{{page}}.html\n二次あ元::/shuku/0_8_0_{{page}}.html\n经典网文::/shuku/0_9_0_{{page}}.html\n古代言情::/shuku/0_10_0_{{page}}.html\n现代言情::/shuku/0_11_0_{{page}}.html\n幻想奇缘::/shuku/0_12_0_{{page}}.html\n青春校园::/shuku/0_13_0_{{page}}.html\n网络情缘::/shuku/0_14_0_{{page}}.html\n科幻空间::/shuku/0_15_0_{{page}}.html\n鬼怪灵异::/shuku/0_16_0_{{page}}.html\nN 次あ元::/shuku/0_17_0_{{page}}.html\n言情美文::/shuku/0_18_0_{{page}}.html\n\n❀                       排 行 榜 单                      ❀::\n总点击榜::/shuku/allvisit_0_0_{{page}}.html\n月点击榜::/shuku/monthvisit_0_0_{{page}}.html\n周点击榜::/shuku/weekvisit_0_0_{{page}}.html\n日点击榜::/shuku/dayvisit_0_0_{{page}}.html\n总推荐榜::/shuku/allvote_0_0_{{page}}.html\n月推荐榜::/shuku/monthvote_0_0_{{page}}.html\n周推荐榜::/shuku/weekvote_0_0_{{page}}.html\n日推荐榜::/shuku/dayvote_0_0_{{page}}.html\n总收藏榜::/shuku/goodnum_0_0_{{page}}.html\n总字数榜::/store/size_0_0_{{page}}.html\n最新入库::/shuku/postdate_0_0_{{page}}.html\n最近更新::/shuku/lastupdate_0_0_{{page}}.html\n新书榜单::/shuku/goodnew_0_0_{{page}}.html\n\n❀                       全 部 连 载                      ❀::\n玄幻奇幻::/shuku/0_1_1_{{page}}.html\n武侠仙侠::/shuku/0_2_1_{{page}}.html\n都市生活::/shuku/0_3_1_{{page}}.html\n历史军事::/shuku/0_4_1_{{page}}.html\n游戏竞技::/shuku/0_5_1_{{page}}.html\n科幻未来::/shuku/0_6_1_{{page}}.html\n恐怖悬疑::/shuku/0_7_1_{{page}}.html\n二次あ元::/shuku/0_8_1_{{page}}.html\n经典网文::/shuku/0_9_1_{{page}}.html\n古代言情::/shuku/0_10_1_{{page}}.html\n现代言情::/shuku/0_11_1_{{page}}.html\n幻想奇缘::/shuku/0_12_1_{{page}}.html\n青春校园::/shuku/0_13_1_{{page}}.html\n网络情缘::/shuku/0_14_1_{{page}}.html\n科幻空间::/shuku/0_15_1_{{page}}.html\n鬼怪灵异::/shuku/0_16_1_{{page}}.html\nN 次あ元::/shuku/0_17_1_{{page}}.html\n言情美文::/shuku/0_18_1_{{page}}.html\n\n❀                       全 部 完 结                      ❀::\n玄幻奇幻::/shuku/0_1_2_{{page}}.html\n武侠仙侠::/shuku/0_2_2_{{page}}.html\n都市生活::/shuku/0_3_2_{{page}}.html\n历史军事::/shuku/0_4_2_{{page}}.html\n游戏竞技::/shuku/0_5_2_{{page}}.html\n科幻未来::/shuku/0_6_2_{{page}}.html\n恐怖悬疑::/shuku/0_7_2_{{page}}.html\n二次あ元::/shuku/0_8_2_{{page}}.html\n经典网文::/shuku/0_9_2_{{page}}.html\n古代言情::/shuku/0_10_2_{{page}}.html\n现代言情::/shuku/0_11_2_{{page}}.html\n幻想奇缘::/shuku/0_12_2_{{page}}.html\n青春校园::/shuku/0_13_2_{{page}}.html\n网络情缘::/shuku/0_14_2_{{page}}.html\n科幻空间::/shuku/0_15_2_{{page}}.html\n鬼怪灵异::/shuku/0_16_2_{{page}}.html\nN 次あ元::/shuku/0_17_2_{{page}}.html\n言情美文::/shuku/0_18_2_{{page}}.html",
    "header": "{\n\"Cookie\":\"Hm_lvt_7fcb840f05292022d7891ede141cc33d=1625028707\"\n}",
    "lastUpdateTime": 1769587680800,
    "loginUrl": "{\n  \"url\": \"null\"\n}",
    "respondTime": 4395,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@a@text",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.intro@tag.p.0@text",
      "kind": "id.info@tag.p.2@text##最后更新：",
      "lastChapter": "id.info@tag.p.3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.info@h1@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节"
    },
    "ruleContent": {
      "content": "id.content@html##因某些原.*突然出现大量.*到回家的路！|喜欢.*更新速度最快。|您可以在百度.*查找最新章节！|.*最新章节地址.*|.*全文阅读地址.*|.*txt下载地址.*|.*手机阅读.*|为了方便下次阅.*下次打开书架即可看到！|喜欢.*请向你的朋友.*|本章未完.*后面更精彩！",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {
      "author": "tag.dd.1@text",
      "bookList": "class.novelslist2@tag.dl",
      "bookUrl": "tag.dd.0@tag.a.0@href",
      "coverUrl": "tag.dt@tag.a@img@src",
      "intro": "tag.dd.2@text",
      "kind": "class.uptime@text",
      "lastChapter": "tag.dd.3@tag.a@text",
      "name": "tag.dd.0@tag.a.0@text"
    },
    "ruleSearch": {
      "author": "class.book_other.0@tag.span.0@text",
      "bookList": "id.sitembox@tag.dl",
      "bookUrl": "tag.dd@tag.h3@tag.a@href",
      "coverUrl": "tag.dt@tag.a@img@src",
      "intro": "class.book_des@text",
      "kind": "class.book_other.0@tag.span.2@text",
      "lastChapter": "class.book_other.1@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "tag.dd@tag.h3@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节",
      "wordCount": "class.book_other.0@tag.span.3@text"
    },
    "ruleToc": {
      "chapterList": "class.box_con@tag.dd!0:1:2:3:4:5:6:7:8:9:10:11",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/search.html,{\r\n  \"method\": \"POST\",\r\n  \"body\": \"searchtype=all&searchkey={{key}}\"\n}",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "书海阁子",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.shuhaige.net",
    "customButton": false,
    "customOrder": 138,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\n\n\n\n\n//分类样式(0/1)\n//0: 排序-类型-状态\n//1: 类型-排序-状态\n\nstyle = 0\n\n\n\nsort=[];\npush=(title,url,type)=> sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: 1,\n\t\t\t\tlayout_flexBasisPercent: type\n\t\t\t}\n\t});\n$$=(a,b,c)=> `https://m.shuhaige.net/shuku/${b}_${a}_${c}_{{page}\\}.html`;\n\n\na=b=c=0;\nd=(title,a,b,c)=> push(\"༺ˇ»`ʚ \\ud83d\\udd39\"+title+\"\\ud83d\\udd39 ɞ´«ˇ༻\",$$(a,b,c),1);\n\n\narra=[\"全部\",\"玄幻\",\"奇幻\",\"武侠\",\"都市\",\"历史\",\"军事\",\"悬疑\",\"游戏\",\"科幻\",\"体育\",\"古言\",\"现言\",\"幻言\",\"仙侠\",\"青春\",\"穿越\",\"女生\",\"其它\"];\n\n\narrb=[[\"默认\",\"0\"],[\"总点击\",\"allvisit\"],[\"月点击\",\"monthvisit\"],[\"周点击\",\"weekvisit\"],[\"日点击\",\"dayvisit\"],[\"总推荐\",\"allvote\"],[\"月推荐\",\"monthvote\"],[\"周推荐\",\"weekvote\"],[\"日推荐\",\"dayvote\"],[\"总收藏\",\"goodnum\"],[\"字数\",\"size\"],[\"最新入库\",\"postdate\"]];\narrc=(title,a,b)=>[\"\"+title+\"\",\"连载\",\"全本\"]\n\t\t.map((title,c)=>{\n\t\tif(c) c+='';\n\t\telse c='0';\n\t\tpush(title,$$(a,b,c),0.25);\n\t\t\t});\n\n\nif(style==0){\n\t\tarrb.map([title,b]=>{\n\t\t\t\td(title,a,b,c);\n\t\t\t\tarra.map((title,a)=>arrc(title,a,b));\n\t\t\t});\n\t}\nelse{\n\t\tarra.map((title,a)=>{\n\t\t\t\td(title,a,b,c);\n\t\t\t\tarrb.map([title,b]=>arrc(title,a,b));\n\t\t\t});\n\t}\nJSON.stringify(sort);",
    "lastUpdateTime": 1733335669730,
    "respondTime": 6779,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "☁️ 更新：\n{{@@[property$=update_time]@content}}\n👻  简介：\n{{@@[property$=description]@content##书海阁.*观看小说\\:}}##(^|[。！？……]+[”」）】]?)##$1<br>",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "{{@@[property$=chapter_name]@content}}･{{@@[property$=update_time]@content}}\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求更谢乐发推票盟补加字Kk\\/].*[\\)\\}）｝】]/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "name": "[property$=book_name]@content"
    },
    "ruleContent": {
      "content": "#content@p@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##这章没有.*下一页.*|喜欢.*书海阁.*全网最快.*|.*下一页继续阅读.*"
    },
    "ruleExplore": {
      "author": ".data.0@a@text",
      "bookList": ".list@li",
      "bookUrl": "a.1@href##^##https://www.shuhaige.net",
      "coverUrl": "img@src",
      "intro": ".intro@text",
      "kind": ".data@span.0:1@text",
      "lastChapter": "a.-1@text\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求更谢乐发推票盟补加字Kk\\/].*[\\)\\}）｝】]/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "name": ".bookname@a@text"
    },
    "ruleSearch": {
      "author": "span.0@text",
      "bookList": "#sitembox@dl",
      "bookUrl": "a.0@href",
      "checkKeyWord": "我的模拟长生路",
      "coverUrl": "img@src",
      "intro": ".book_des@text",
      "kind": "span.1:2:-1@text",
      "lastChapter": "{{@@a.-1@text}}･{{@@span.-1@text}}\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求更谢乐发推票盟补加字Kk\\/].*[\\)\\}）｝】]/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "name": "h3 a@text",
      "wordCount": "span.3@text"
    },
    "ruleToc": {
      "chapterList": "#list dd!0:1:2:3:4:5:6:7:8:9:10:11",
      "chapterName": "a@text\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求更谢乐发推票盟补加字Kk\\/].*[\\)\\}）｝】]/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "chapterUrl": "a@href"
    },
    "searchUrl": "search.html,{\n  \"body\": \"searchtype=all&searchkey={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "┍　　　　书源作者：萌  新　　　　┒\n├───┬────────────┤\n│！免责│本书源只提供代码进行技术│\n│！声明│交流，请于２４小时后删除│\n└────────────────┘",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "旧钢笔",
    "bookSourceType": 0,
    "bookSourceUrl": "https://p.jiugangbi.com",
    "customButton": false,
    "customOrder": 139,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "青春校园::/sort/1_{{page}}.html\n古代言情::/sort/2_{{page}}.html\n穿越快穿::/sort/3_{{page}}.html\n百合耽美::/sort/4_{{page}}.html\n现代言情::/sort/5_{{page}}.html\n虐心甜宠::/sort/6_{{page}}.html\n仙侠武侠::/sort/7_{{page}}.html\n美文小说::/sort/8_{{page}}.html",
    "lastUpdateTime": 1782228133058,
    "respondTime": 7964,
    "ruleBookInfo": {
      "author": ".catalogyfw_author a@text",
      "coverUrl": ".catalogyfw_pic_left a img@src",
      "intro": ".catalogyfw_intor@text",
      "kind": ".s1@text",
      "lastChapter": ".catalogyfw_newest a@text",
      "name": ".catalogyfw_info_right h3@text",
      "wordCount": ".s2@text"
    },
    "ruleContent": {
      "content": ".chapter_content@html",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".newbook_title a@text",
      "bookList": ".newbook_novel",
      "bookUrl": ".newbook_title a@href",
      "coverUrl": ".newbook_pic a img@src",
      "intro": ".newbook_intor@text",
      "lastChapter": ".catalogyfw_newest a@text",
      "name": ".newbook_title a@text",
      "wordCount": ".s1@text"
    },
    "ruleToc": {
      "chapterList": ".catalogyfw_list.1@ul li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value"
    },
    "searchUrl": "/search.php,{\n  \"body\": \"searchkey={{key}}\",\n  \"charset\": \"GBK\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "蚂蚁阅读（优）",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.imayitxt.com#",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 141,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "\n 点  击  榜 ::/top/monthvisit/{{page}}.html\n 推  荐  榜 ::/top/monthvote/{{page}}.html\n\n玄幻::/sort/1/{{page}}.html\n仙侠::/sort/2/{{page}}.html\n都市::/sort/3/{{page}}.html\n历史::/sort/4/{{page}}.html\n军事::/sort/5/{{page}}.html\n灵异::/sort/6/{{page}}.html\n科幻::/sort/7/{{page}}.html\n游戏::/sort/8/{{page}}.html\n现言::/sort/9/{{page}}.html\n古言::/sort/10/{{page}}.html\n穿越::/sort/11/{{page}}.html\n青春::/sort/12/{{page}}.html\n豪门::/sort/14/{{page}}.html\n耽美::/sort/15/{{page}}.html\n其他::/sort/13/{{page}}.html",
    "header": "",
    "lastUpdateTime": 1735068526425,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 6120,
    "ruleBookInfo": {
      "author": "class.book_inf@tag.p.0@text",
      "canReName": "true",
      "coverUrl": "img@src.0",
      "init": "",
      "intro": "class.h3_rf creat_time@text&&class.book_desc@text",
      "kind": "class.book_inf@tag.p.1@text##类别：",
      "lastChapter": "class.h3_rf new_time.0@tag.a@text",
      "name": "class.book_inf@h3@text",
      "tocUrl": "class.more-chapter@href",
      "wordCount": "class.book_inf@tag.p.2@text##总字数："
    },
    "ruleContent": {
      "content": "class.textarticle@html",
      "imageStyle": "",
      "nextContentUrl": "text.下一章@href",
      "replaceRegex": "##最新网址.*|一秒记住.*，更新快，，免费读！|>>本章未完，继续下章阅读|免费小说，无弹窗小说网，.*下载，请记住蚂蚁阅读网.*|\\s*.*第.*章.*\\s*|一秒记住【花小说网】，为您提供精彩小说阅读。",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "class.listbook-info@tag.p.0@text",
      "bookList": "class.onefourbox@a",
      "bookUrl": "@href",
      "coverUrl": "class.listbook-cove@tag.img@src",
      "intro": "class.listbook-info@tag.p.1@text",
      "kind": "class.book-tag@tag.span@text",
      "lastChapter": "",
      "name": "class.listbook-info@tag.h3@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "p@text",
      "bookList": "class.onefourbox@tag.a",
      "bookUrl": "tag.a@href",
      "coverUrl": "img@src",
      "intro": "",
      "kind": "span@text",
      "lastChapter": "",
      "name": "h3@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "class.mulu_uld@li",
      "chapterName": "h3@text##>",
      "chapterUrl": "tag.a@href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "http://wap.imayitxt.com/modules/article/search.php?searchkey={{key}}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "ZmxhZyA9IDE7CmxvZ2luSW5mbyA9IHNvdXJjZS5nZXRMb2dpbkluZm9NYXAoKQpsb2dpbkluZm8gPT0gbnVsbAogID8gdiA9ICIiCiAgOiB2ID0KICAgICAgbG9naW5JbmZvWyJIb3N0Il0gPT0gdW5kZWZpbmVkIHx8IGxvZ2luSW5mb1siSG9zdCJdID09ICIiCiAgICAgICAgPyAiIgogICAgICAgIDogbG9naW5JbmZvWyJIb3N0Il07Cmhvc3QgPQogIHYgPT0gMQogICAgPyAiaHR0cHM6Ly93d3cuamptaHcuY2MiCiAgICA6IHYgPT0gMgogICAgPyAiaHR0cHM6Ly93d3cuaG1iYS50b3AiCiAgICA6ICJodHRwczovL3d3dy5qam1ody5jYyIKZnVuY3Rpb24gdGkodGV4dCwgaSwgeikgewogIHJlZyA9IG5ldyBSZWdFeHAoaSwgImciKTsKICByZXR1cm4gdGV4dC5yZXBsYWNlKHJlZywgeik7Cn0KaSA9CiAgIumMkueamuiXueekmeaEm+WZr+WsoeeSpuablumdhOirs+mKqOm1qumqr+illuWlp+WqvOmpgemwsuWjqee9t+mIgOaTuuaVl+WUhOmgkui+pue1humIkeW5q+e2gemOiuisl+WJnemjveWvtuWgsemukem0h+m9mei8qeiynemLh+eLveWCmeaGium1r+izgemMm+e5g+ethueVouaWg+W5o+mWieiTveWXtua9t+mJjeevs+i5lemCiue3qOiytuiuiui+r+i+ruiKkOe3tuexqeaomempg+mirumjhumPoumRo+mwvumxieWIpeeZn+eAlea/seizk+aTr+WEkOe5veaqs+aur+iHj+mRjOmrlemsoumkheeon+aSpee8vemJkemngemkkemIuOm1k+ijnOmIveiyoeWPg+igtuaumOaFmuaFmOeHpumpgum7suiSvOiJmeWAiea7hOW7geWBtOWGiua4rOaDu+WxpOipq+mNpOWElemHteaUmeaRu+ifrOmlnuiukue6j+mPn+eUoumXoemhq+WbheirguiuluiVhuaHuuWsi+mpj+immOemqumQlOWgtOWYl+mVt+WEn+iFuOW7oOaaouWAgOiQh+aCtemWtumvp+mIlOi7iuW+ueehqOWhtemZs+ilr+WCluirtuarrOejo+m9lOaSkOeoseaHsuiqoOmogeajluaqiemLrumQuueZoemBsumms+aBpem9kueGvumjrem0n+ayluihneifsuWvtemKg+eWh+i6iuexjOe2ouWElOW5rOiujuarpeW7mumLpOmbm+ekjuWEsuinuOiZleiKu+e1gOi6leWCs+mHp+eYoemXluWJteaEtOmMmOe2nue0lOm2iee2vei8n+m9qui+reipnuiznOm2v+iBsOiUpeWbquW+nuWPouiTr+mphOaohea5iui8s+i6peerhOaUm+mMr+mKvOm5uumBlOWZoOmfg+W4tuiyuOmnmOe0v+aTlOWWrumEsuaSo+iGveaGmuiqleW9iOauq+izp+eZieewnueVtuaTi+m7qOiVqeaqlOiunOeireiloOaQl+WztuemseWwjuebnOeHvueHiOmEp+mQmeaVtea7jOmBnue3oOeztOiphuirpue2iOimv+mPkemhm+m7nuWiiumbu+W3lOmIv+eZsumHo+iqv+mKmumvm+irnOeWiumwiOmHmOmggumMoOiogumLjOS4n+mKqeadseWLleajn+WHjeW0oOm2h+erh+eKoueNqOiugOizremNjeeAhuarneeJmOevpOm7t+mNm+aWt+e3nuexquWFjOmaiuWwjeaHn+mQk+WZuOmgk+mIjeeHiei6ieWlquWirumQuOm1nemhjeiom+aDoemkk+irpOWgiumWvOi7m+mLqOmNlOm2mumhjumhk+mxt+iqkuWFkueIvumkjOiys+mCh+mJuum0r+munueZvOe9sOmWpeeQuuekrOmHqeeFqeiyqemjr+ioque0oemIgemttOmjm+iqueW7ouiyu+e3i+mQqOmvoee0m+Wis+WlruaGpOeznuWDqOixkOalk+mLkumiqOeYi+mmrue4q+irt+mzs+eBg+iGmui8u+aSq+i8lOizpuW+qeiyoOiog+Wppue4m+mzp+mnmee0see0vOizu+m6qemukumwkumHk+ipsumIo+iTi+izheahv+i2leeoiOi0m+Wwt+aQn+e0uuWyoeWJm+mLvOe2seW0l+aIh+mOrOedquiqpee4numLr+aTsem0v+mWo+mJu+WAi+e0h+mOmOa9gee1puS6meizoee2humvgem+lOWurumej+iyoumJpOa6neiMjeani+izvOWkoOiprOe3seimr+igsemhp+ipgei9gumIt+mMrum0o+m1oOm2u+WJruaOm+m0sOaRkemXnOingOmkqOaFo+iyq+ipv+aRnOm4m+mwpeW7o+eNt+imj+atuOm+nOmWqOi7jOipreiytOWKiuWMreWKjOWqr+aqnOmuremxlui8pea7vuiinue3hOmvgOmNi+Wci+mBjuWgneWSvOW5l+anqOifiOmJv+mnremfk+a8oumXnue1jumgoeiZn+eBnemhpemWoem2tOizgOiotumXlOigo+apq+i9n+m0u+e0hem7jOiojOiRkumWjumxn+Wjuuitt+a7rOaItua7uOm2mOWYqeiPr+eVq+WKg+ipsempiuaouumPteaHt+WjnuatoeeSsOmChOe3qeaPm+WWmueYk+eFpea4meWlkOe5r+mNsOmvh+m7g+isiumwieaPrui8neavgOizhOepouacg+eHtOWMr+irseiqqOe5quipvOiWiOWZpua+rue5oueQv+aaieiRt+a4vuiroumkm+mWveeNsuiyqOemjemIpemRiuaTiuapn+epjemlkei3oeitj+mbnue4vue3nealtei8r+e0muaToOW5vuiWiuWKkea/n+ioiOiomOmam+e5vOe0gOiokOipsOiWuuWYsOWajOmppeeSo+imrOm9j+ejr+e+iOighui6i+mcvemxremvveWkvuiOoumgsOiziOmJgOWDuemnlemDn+a1uemLj+mOteifr+ausuebo+Wgheeui+mWk+iJsee3mOe5reaqouWgv+m5vOaPgOaSv+ewoeWEiea4m+iWpuaqu+mRkui4kOizpOimi+mNteiJpuWKjemknua8uOa/uua+l+irq+e4keaIlOaIqeeevOm2vOetp+mwuemfieWwh+a8v+iUo+ans+eNjuism+mGrOe1s+mfgeiGoOa+humpleWsjOaUqumJuOefr+WDpeiFs+mkg+e5s+e1nui9jui8g+aSn+W2oOm3pumuq+majuevgOa9lOe1kOiqoeWxhueZpOmgnOmumue3iumMpuWDheisuemAsuaZieeHvOeboeWLgeiNiuiOluW3ueiXjumliee4iei0kOimsumvqOmpmue2k+mguOmdnOmPoeW+keeXmeertuWHiOWJhOa2h+mAleW8s+iEm+mdmuezvuW7hOiIiumsrumzqem3sumnkuiIieaTmumLuOaHvOWKh+ipjuWxqOaruOmitumJhemLpueqtum9n+m1kee1uemMiOmQq+mbi+imuuaxuue1leitjueOqOmInui7jemnv+eauOmWi+WHseWJtOWhj+aEvuaEt+mOp+mNh+m+lemWjOmIp+mKrOmhhuauvOiqsumojee3mei7u+mIs+mMgemgt+WivuaHh+m9pumPl+aRs+W6q+iksuWas+WhiuWEiOmEtuWZsuiGvuWvrOeNqumrluekpuaboOazgeiqhuiqkemEuuWjmee6iuiyuuiZp+W3i+equumli+a9sOWMseiVouaGkuiBteewo+mWq+mMlemvpOaTtOmXiuigkOign+iHmOiQiuS+huiztOW0jeW+oOa3tueAqOizmuednumMuOeZqeexn+iXjeashOaUlOexg+mXjOiYreeAvuiuleaUrOimveaHtue6nOeIm+a/q+W1kOasluaWlemRreilpOeRr+mWrOmLg+aSiOWLnua+h+WYruW2l+mKoOmQkueZhuaogumws+mQs+WjmOmhnua3muiqhOe4suexrOiyjemboumvieemrum6l+WOsuWLteekq+att+eAnemauOWEt+mFiOWjouiXtuiSnuiYuuWapumCkOmpque4rearquarn+i9ouekqumLsOm4neeZmOezsui6kumdgumxuumxp+WAhuiBr+iTrumAo+mQruaGkOa8o+ewvuaWguiHiemPiOaIgOeFiee3tOiYnuWlqeeAsueSieauruiks+ilnemwseezp+a2vOWFqei8m+irkumtjueZgumBvOmQkOe5mumHlem3r+eNteiHqOmEsOmxl+WHnOizg+iXuuW7qeaqgei9lOi6qum9oemItOmdiOW2uumgmOe2vuasnuiftumvqumkvuWKieeAj+morue2uemOpum3mum+jeiBvuWaqOexoOWjn+aUj+matOiYoueAp+eTj+ars+acp+ekseaok+WpgeaRn+ewjeWDguiUnuWYjeW2gemPpOeYuuiArOieu+mrj+iYhuebp+mhseW7rOeIkOaThOm5teiZnOmtr+izguelv+mMhOmZuOWjmuaTvOWalemWreeAmOa3pearqOark+i9pOi8hei9huawjOiHmum4lem3uuiJq+mxuOW3kuaUo+Wtv+eBpOS6guiHoOWtjOaskum4numRvuaOhOi8quWAq+S+lua3que2uOirluWch+iYv+e+hemCj+mRvOexrumovumnsee1oeeKlueOgOa/vOasj+iFoemPjempouWRgumLgeS+tuWxoue4t+aFrua/vue2oOarmuikuOmLneWYuOWqveeRqueivOienummrOe9teWXjuWYnOWspOamquiyt+m6peizo+mCgeiEiOWLseeenumlheigu+a7v+isvue4temPnemhmemwu+iyk+mMqOmJmuiyv+m6vOaykumOgumWgOaCtuWAkeaNq+eHnOaHo+mNhumMs+Wkoueeh+isjuW9jOimk+WGque+i+iskOeNvOemsOe2v+e3rOa+oOmdpum7veW7n+e3sue5hua7heaGq+mWqemWlOe3oemztOmKmOisrOisqOmpgOmlg+atv+mPjOisgOeVnemJrOWQtumIiee0jembo+aSk+iFpuaDsemsp+mQg+iopemkkuWFp+aTrOiGqemIrumvouaUhui8pumvsOmHgOmzpeiUpuijiuiBtuWamemRt+mOs+maieiYl+Wbgemhoui6oeaquOeNsOWvp+aTsOa/mOiLp+WagOiBuemIlee0kOiGv+a/g+i+suWEguWZpemnkemHueirvuWEuueYp+atkOm3l+avhuWYlOa8muiss+aFqueUjOebpOi5o+m+kOaLi+easOizoOi9oeWZtOm1rOe0lee+humIuemomeirnumnoumjhOe4uemgu+iyp+WsquiYi+aGkeiplea9kemgl+mHmeaSsumLquaouOitnOmPt+mQoOajsuiHjem9iumojuixiOWVn+awo+ajhOioluiYhOmoj+e2uuamv+ejp+mgjumgj+mwreeJvemHrOmJm+mBt+ewveismemMoumJl+a9m+a3uuittOWhueWDieiVgeaFs+moq+e5vuanp+mIkOanjeWXhuWiu+iWlOW8t+aQtuWsmeaqo+aIp+eGl+mMhumPmOmPuee+pei5jOmNrOapi+WWrOWDkee/ueerheiqmuitmeiVjue5sOejvei5uueriuaEnOmNpeevi+asveimquWvoumLn+i8leawq+WCvumgg+iri+aFtuaSs+mvlueTiueqrueFouibuuW3sOizleifo+mwjei2qOWNgOi7gOmphem9suipmOW2h+mXg+imt+m0nemhtOasiuWLuOiprue2o+i8h+mKk+WNu+m1sueiuumXi+mXleaEqOiuk+mlkuaTvue5nuiVmOWsiOapiOeGsemfjOiqjee0iemjqui7lOamrue1qOW2uOigkee4n+mKo+mhsOi7n+mKs+ichumWj+a9pOeBkeiWqemir+mwk+izveWCmOavv+ezneWWqumot+aOg+e5hea+gOWXh+mKq+epoeauuuWJjue0l+mOqemviuevqeabrOmHg+WIqumWg+mZnOi0jee5leioleWnjemouOmHpOmxlOWikeWCt+iznuWdsOaupOintOeHkue0ueizkuaUneaHvuioreWOmeeBhOeVrOe0s+WvqeWsuOiFjua7suipteirl+eAi+iBsue5qeWLneW4q+eNhea/leipqeaZguidleWvpuitmOmnm+WLoumBqemHi+mjvuimluippuismuWhkuiSlOW8kui7vuiysOmIsOmwo+WjveeNuOe2rOaonui8uOabuOi0luWxrOihk+aoueixjuaVuOaUhOe0k+W4pemWgumbmeiqsOeohemghuiqqueiqeeIjemRoOe1sumjvOW7nemnn+e3pumNtum3peiBs+aFq+mgjOion+iqpuaTu+iXqumkv+mivOmOquiYh+iotOiCheisluepjOmblumaqOe2j+atsuiqtuWtq+aQjeetjeiTgOeMu+e4rueRo+mOluWXqeiEp+eNuuaSu+mXpemJiOmwqOiHuuaFi+mIpumukOaUpOiyqueZseeBmOWjh+itmuirh+WYhuabh+mJremMn+mgh+a5r+eHmeWEu+mks+mQi+mPnOa/pOe1s+iojumfnOmLsemosOishOmKu+mhjOmrlOWxnOe3uem1nOmXkOaineeztum9oOmwt+iyvOmQteW7s+iBveeDtOmKhee1seaFn+mgremIhOemv+WclumHt+WcmOaRtumgueibu+mjqeiEq+m0lemmsemnneapouexnOm8ieilquWqp+iGg+W9jueBo+mgkeiQrOe0iOe2sOe2sui8numfi+mBleWcjeeCuua/sOe2reiRpuWBieWBvee3r+isguihm+irieW5g+mXiOa6iOa9v+eRi+mfmeeFkumuqua6q+iBnue0i+epqeWVj+mWv+eUleaSvuiduOa4pueqqeiHpeiQtem9t+WXmumOoueDj+iqo+eEoeiVquWQs+Whoumcp+WLmeiqpOmElOW7oeaGruWrtemolum1oem2qemMq+eKp+ilsue/kumKkeaIsue0sOmkvOmsqeeSveimoeidpui9hOWzveS/oOeLueW7iOWah+ehpOmurue6luizoumKnOmWkemhr+maquePvueNu+e4o+mkoee+qOaGsue3muiOp+iWn+iYmuWztOeNq+Wru+m3tOeZh+iglOeniOi6muW7gumRsumEieips+mfv+mgheiWjOmkiemppOe3l+mll+iVreWbgumKt+abieWYr+WYteeAn+mpjee2g+ain+ewq+WNlOaMvuaUnOiEheirp+Wvq+eAieisneiku+aTt+e0sue6iOmLhemHgeiIiOmZmOa7juWFh+a0tumKuee5oemliOm1guiZm+WZk+mgiOioseaVmOe3kue6jOipoemgiui7kuaHuOmBuOeZrOe1ouirvOmJiemPh+WtuOislOa+qemxiOWLm+ipouWwi+mmtOiok+ioiumBnOWhpOa9r+mxmOWjk+m0iem0qOWVnuS6nuioneWfoeWpreakj+awrOmWueeFmem5veWatOW3lumhj+mWu+iJt+WOreehr+W9peiruumpl+WOtOi0l+WEvOWFl+iunuaHqOmWhumHhemtmOmlnOm8tOm0pualiuaPmueYjemZveeZoumkiuaoo+eFrOeRpOaQluWgr+mBmeeqr+isoOiXpei7uum3gumwqeeIuumggealreiRiemdqOisgemEtOabhOeHgemGq+mKpemgpOmBuuWEgOifu+iXneWEhOaGtue+qeipo+itsOiqvOitr+eVsOe5ueipkuWbiOW2p+mjtOaHjOmpm+e4iui7vOiyvemHlOmOsOmQv+eYnuiJpOiUremZsOmKgOmjsumasemKpueZruaru+WssOm3ueaHiee6k+eRqeieoueHn+eGkuighei0j+epjuWhi+m2r+e4iOmOo+aUluWatueAheeAoOeTlOm4mueZremgpue9jOWWsuaTgeWCreeZsOi4tOipoOmPnuWEquaGgumDtemIvueMtuiqmOiVlemKqumtt+i8v+mtmua8geWom+iIh+W2vOiqnueNhOitvemgkOmmreWCtOS/geirm+irreiVt+W0s+mjq+mWvuWrl+e0huimpuatn+mIuum1kum3uOm9rOm0m+a3tei9heWckuWToeWck+e3o+mBoOarnumztum7v+e0hOi6jemRsOeyteaChemWsemJnumEluWLu+malemBi+iYiumGnuaaiOmfu+mEhuiVk+aDsuaFjee0nOmfnuaunuaws+mbnOeBvei8ieaUouaaq+i0iueTmui2sumPqOi0k+iHn+mnlOmRv+ajl+iyrOaTh+WJh+a+pOizvuWYluW5mOewgOiziuitlui0iOe2nOe5kui7i+mNmOmWmOafteipkOm9i+WCteawiOebnuaWrOi8vuW2hOajp+aIsOe2u+itq+W8tea8suW4s+izrOiEuei2meiplOmHl+ifhOi9jemNuumAmeisq+i8kum3k+iynumHneWBteiouumOrumZo+a5nue4nealqOi7q+izkeemjum0huaOmeednOeMmeeIreW5gOeZpemEreitieirjeW0oumJpumMmueuj+e5lOiBt+Wft+e0meaRr+aTsuW5n+izqua7r+morearm+ailOi7uei8iui0hOm3meiehOe4tui6k+i6keintumQmOe1gueoruiFq+ecvumNvuishei7uOeauuaZnempn+e0gue4kOixrOiruOiqheeHreefmuWbkeiyr+mRhOmnkOS9h+arp+mKluWwiOejmui9ieizuuWbgOmljOmhs+aogeiOiuijneWmneWjr+eLgOmMkOi0heWinOe2tOmohee4i+irhOa6luiRl+a/geirkemQsuiMsuizh+a8rOirrue3h+i8nOiysuecpemMmem9nOmvlOi5pOe4vee4seWCr+mEkuirj+motumvq+ipm+e1hOmPg+mJhue6mOi6pumxkue/uuS4puiUlOayiOmGnOa+seWPoOmspeevhOW5ueiHr+efvearg+W+jOWkpeeoreWCkeioo+iqh+ijj+a3qem6vem7tOaSmua3kuaJoeiBluWxjeaToeWhl+eqqumkteaxmemNgem5ueigjeW9nOa5p+mBiuexsuempumhmOW2vembsueriOe0ruWKhOevieaWvOiqjOiou+mbleiogeitvumDpOeMm+awuemYquWjn+WgluWeteWiiuaqvuiVkuiRpOiTp+iSk+iPh+angeaRo+WSpOWUmuWTouWZneWZheaSheWZvOislOilhuW2tOiEiuS7v+WDpeeNgem6hemkmOmkt+mliumloualnuaAteaHjeeIv+a8teeBqea6t+a/q+eApua3oeWvp+ezuOe1nee3lOeRieaimOajrOahiOapsOarq+i7sui7pOizq+iGgeiFlumjiOeziueFhua6nOa5o+a4uueiuOa7vueemOmIiOmJlemLo+mKsemLpemLtumQpumQp+mNqemNgOmNg+mMh+mOhOmOh+mOv+mQnemRpemRuemRlOeprem2k+m2pem4jOeZp+WxmeeYguiHkuilh+e5iOiArumhrOifjum6r+mugemug+mujumvl+mvnemvtOmxnemvv+mwoOmwtemxhemevemfnem9h+iRr+aFvuijoeWniuS9lOW+teWUt+WLkOegsumrrua+ueWZgeWnpuS5vumshuWnquWbieiumueJhualveijvem6tea3qOWDlSI7CnogPQogICLplJXnmpHolLznoo3niLHll7Plq5LnkbfmmqfpnK3osJnpk7XpuYzogq7oooTlpaXlqqrpqpzps4zlnZ3nvaLpkq/mkYbotKXlkZfpooHlip7nu4rpkqPluK7nu5HplZHosKTliaXppbHlrp3miqXpso3puKjpvoXovojotJ3pkqHni4jlpIfmg6vpuY7otLLplJvnu7fnrJTmr5Xmr5nluIHpl63ojZzlk5Tmu5fpk4vnrZrot7jovrnnvJbotKzlj5jovqnovqvoi4TnvI/nrL7moIfpqqDpo5Hpo5nplZbplZbps5Tps5bliKvnmKrmv5Lmu6jlrr7mkYjlgqfnvKTmp5/mrqHohpHplZTpq4zprJPppbznpoDmi6jpkrXpk4LpqbPppb3pkrnpuYHooaXpkrjotKLlj4LompXmrovmg63mg6jngb/pqpbpu6roi43oiLHku5PmsqfljpXkvqflhozmtYvmgbvlsYLor6fplLjkvqrpkpfmkIDmjrronYnppovosJfnvKDpk7LkuqfpmJDpoqTlhoHosITosLbokoflv4/lqbXpqqPop4fnpoXplaHlnLrlsJ3plb/lgb/ogqDljoLnlYXkvKXoi4zmgIXpmIrpsrPpkp7ovablvbvnoJflsJjpmYjooazkvKfosIzmpofnopzpvoDmkpHnp7Dmg6nor5rpqovmnqjmn73pk5bpk5vnl7Tov5/pqbDogLvpvb/ngr3ppazpuLHlhrLlhrLomavlrqDpk7PnlbTouIznrbnnu7jkv6bluLHpm6DmqbHljqjplITpm4/noYDlgqjop6blpITliI3nu4zoubDkvKDpko/nlq7pl6/liJvmgIbplKTnvI3nuq/puZHnu7Dovo3pvorovp7or43otZDpuZrogarokbHlm7Hku47kuJvoi4HpqqLmnp7lh5Hovo/oub/nqpzmkrrplJnplInpub7ovr7lk5LpnpHluKbotLfpqoDnu5Dmi4XljZXpg7jmjrjog4bmg67or57lvLnmrprotZXnmIXnrqrlvZPmjKHlhZrojaHmoaPosKDnoIDoo4bmjaPlspvnpbflr7znm5fnhJjnga/pgpPplavmlYzmtqTpgJLnvJTnsbTor4vosJvnu6jop4zplZ3poqDngrnlnqvnlLXlt4Xpkr/nmavpkpPosIPpk6vpsrfosI3lj6Dpsr3pkonpobbplK3orqLpk6TkuKLpk6XkuJzliqjmoIvlhrvlsr3puKvnqqbniorni6zor7votYzplYDmuI7mpJ/niY3nrIPpu6nplLvmlq3nvI7nsJblhZHpmJ/lr7nmgLzplablkKjpob/pkp3ngpbotrjlpLrloJXpk47puYXpop3orrnmgbbppb/osJTlnqnpmI/ova3plIfplLfpuZfpoprpopvps4Tor7blhL/lsJTppbXotLDov6npk5LpuLjpspXlj5HnvZrpmIDnj5Dnn77pkpLng6botKnppa3orr/nurrpkqvpsoLpo57or73lup/otLnnu6/plYTpsrHnurflnZ/lpYvmhKTnsqrlgb7kuLDmnqvplIvpo47nlq/lhq/nvJ3orr3lh6TmsqPogqTovpDmiprovoXotYvlpI3otJ/orqPlpofnvJrlh6vpqbjnu4Lnu4votZnpurjpsovps4bpkobor6Xpkpnnm5botYXmnYbotbbnp4botaPlsLTmk4Dnu4DlhojliJrpkqLnurLlspfmiIbplZDnnb7or7DnvJ/plIbmkIHpuL3pmIHpk6zkuKrnuqXplYnpoo3nu5nkupjotZPnu6DpsqDpvprlrqvlt6notKHpkqnmsp/oi5/mnoTotK3lpJ/or5/nvJHop4/om4rpob7or4Lmr4LpkrTplKLpuKrpuYTpuZjliZDmjILpuLnmjrTlhbPop4Lppobmg6/otK/or5bmjrzpubPps4/lub/nirfop4TlvZLpvp/pl7rovajor6HotLXliL3ljKbliL/lpqvmoafpspHps5zovormu5rooa7nu7LpsqfplIXlm73ov4fln5rlkZnluLzmpIHonYjpk6rpqofpn6nmsYnpmJrnu5fpoonlj7fngY/poqLpmILpuaTotLror4PpmJbom47mqKrovbDpuL/nuqLpu4norqfoja3pl7Ppso7lo7bmiqTmsqrmiLfmtZLpuZXlk5fljY7nlLvliJLor53pqoXmoabpk6fmgIDlnY/mrKLnjq/ov5jnvJPmjaLllKTnl6rnhJXmtqPlpYLnvLPplL7psqnpu4TosI7ps4fmjKXovonmr4HotL/np73kvJrng6nmsYforrPor7Lnu5jor5nojZ/lk5XmtY3nvIvnj7LmmZbojaTmtZHor6jppoTpmI3ojrfotKfnpbjpkqzplazlh7vmnLrnp6/ppaXov7norqXpuKHnu6nnvInmnoHovpHnuqfmjKTlh6Dok5/liYLmtY7orqHorrDpmYXnu6fnuqrorqbor5jojaDlj73lk5zpqqXnjpHop4rpvZHnn7bnvoHomb/ot7vpnIHpsprpsqvlpLnojZrpoorotL7pkr7ku7fpqb7pg4/mtYPpk5fplZPom7Lmrbznm5HlnZrnrLrpl7ToibDnvITojKfmo4DnorHnobfmi6PmjaHnroDkv63lh4/ojZDmp5vpibTot7XotLHop4HplK7oiLDliZHppa/muJDmuoXmtqfosI/nvKPmiIvmiKznnZHpuaPnrJXpsqPpnq/lsIbmtYbokovmoajlpZborrLphbHnu5vnvLDog7bmtYfpqoTlqIfmkIXpk7Dnn6vkvqXohJrppbrnvLTnu57ovb/ovoPmjKLls6TpuarpspvpmLboioLmtIHnu5Por6vlsYrnlpbpoozpspLntKfplKbku4XosKjov5vmmYvng6zlsL3lirLojYbojI7ljbrojanpppHnvJnotYbop5Dpsrjmg4rnu4/poojpnZnplZzlvoTnl4nnq57lh4DliK3ms77ov7PlvKrog6vpnZPnuqDljqnml6fpmITpuKDpuavpqbnkuL7mja7plK/mg6fliaforrXlsabmponpo5PpkpzplJTnqq3pvoPpuYPnu6LplKnplYzpmr3op4nlhrPnu53osLLnj4/pkqflhpvpqo/nmrLlvIDlh6/liYDlnrLlv77mgbrpk6DplLTpvpvpl7bpkqrpk5Dpopflo7Por77pqpLnvILovbLpkrbplJ7popTlnqbmgbPpvojpk7/miqDlupPoo6Tllr7lnZfkvqnpg5Dlk5nohI3lrr3ni6/pq4vnn7/ml7flhrXor5Por7Ppgp3lnLnnuqnotLbkuo/lsr/nqqXppojmuoPljK7okonmhKbogannr5HpmIPplJ/psrLmianpmJTom7TonKHohYrojrHmnaXotZbltIPlvpXmtp7mv5HotYnnnZDpk7znmZ7nsYHok53moI/mi6bnr67pmJHlhbDmvpzosLDmj73op4jmh5LnvIbng4Lmu6XlsprmpoTmlpPplafopLTnkIXpmIbplJLmjZ7lirPmtp3llKDltILpk5Hpk7nnl6jkuZDps5Ppla3lnpLnsbvms6ror5TnvKfnr7Hni7jnprvpsqTnpLzkuL3ljonlirHnoL7ljobmsqXpmrbkv6rpg6blnZzoi4jojoXok6DlkZbpgKbpqornvKHmnqXmoI7ovbnnoLrplILpuYLnlqDnsp3ot57pm7PpsqHps6Lkv6nogZTojrLov57plbDmgJzmtp/luJjmlZvohLjpk77mgYvngrznu4PolLnlpYHmvYvnkI/mrpPoo6Loo6PpsqLnsq7lh4nkuKTovobosIXprYnnlpfovr3plaPnvK3pkozpuannjI7kuLTpgrvps57lh5votYHolLrlu6rmqqnovprouo/pvoTpk4PngbXlsq3poobnu6vmo4Lom4/psq7ppo/liJjmtY/pqp3nu7rplY/puajpvpnogYvlkpnnrLzlnoTmi6LpmYfojI/ms7fnj5HmoIrog6fnoLvmpbzlqITmkILnr5Plgbvokozllr3ltZ3plYLnmJjogKfonbzpq4XoiqbljaLpooXlupDngonmjrPljaTomY/psoHotYLnpoTlvZXpmYblnobmkrjlmZzpl77ms7jmuIzmoIzmqbnovbPovoLovpjmsIfog6rpuKzpua3oiLvpsojls6bmjJvlrarmu6bkubHohJTlqIjmoL7puL7piq7miqHova7kvKbku5Hmsqbnurborrrlm7XokJ3nvZfpgLvplKPnrqnpqqHpqobnu5zojabnjKHms7rmpKTohLbplZnpqbTlkJXpk53kvqPlsaHnvJXomZHmu6Tnu7/mpojopJvplIrlkZLlpojnjpvnoIHomoLpqazpqoLlkJfllJvlrLfmnankubDpuqbljZbov4johInliqLnnpLpppLom67mu6HosKnnvKbplZjpoqHps5fnjKvplJrpk4botLjpur3msqHplYHpl6jpl7fku6zmiarnhJbmh5HpkpTplLDmoqbnnK/osJzlvKXop4XluYLoiojosKfnjJXnpaLnu7XnvIXmuJHohbzpu77lupnnvIjnvKrnga3mgq/pl73pl7XnvJfpuKPpk63osKzosJ/ok6bppo3mroHplYbosIvkuqnpkrzlkZDpkqDnurPpmr7mjKDohJHmgbzpl7npk5norrfppoHlhoXmi5/ohbvpk4zpsrXmkrXovofpsrbphb/puJ/ojJHoooXogYLlla7plYrplY3pmafomJbll6vpop/ouZHmn6Dni57lroHmi6fms57oi47lkpvogY3pkq7nur3ohJPmtZPlhpzkvqzlk53pqb3pkpXor7rlgqnnlp/mrKfpuKXmrrTlkZXmsqTorrTmgITnk6/nm5jouZLlup7mipvnlrHotZTovpTllrfpuY/nurDnvbTpk43pqpfosJ3pqojpo5jnvKXpopHotKvlq5Toi7nlh63or4Tms7zpoofpkovmiZHpk7rmnLTosLHplaTplajmoJbohJDpvZDpqpHlsoLlkK/msJTlvIPorqvolbLpqpDnu67moaTnopvpooDpooPps43nibXpko7pk4Xov4Hnrb7osKbpkrHpkrPmvZzmtYXosLTloJHkvaXojajmgq3pqp7nvLHmpKDpkqTmnqrlkZvlopnolLflvLrmiqLlq7HmqK/miJfngp3plJbplLXplarnvp/ot4TplLnmoaXkuZTkvqjnv5jnqo3or67osK/ojZ7nvLLnoZfot7fnqoPmg6zplLLnrqfpkqbkurLlr53plJPovbvmsKLlgL7pobfor7fluobmj7/psq3nkLznqbfojJXom7Hlt6/otYfoma7ps4XotovljLrouq/pqbHpvovor47lspbpmJLop5HpuLLpoqfmnYPlip3or6Dnu7vovoHpk6jljbTpuYrnoa7pmJXpmJnmgqvorqnppbbmibDnu5XojZvlqIbmoaHng63pn6forqTnuqvpparovavojaPnu5LltZjonb7nvJvpk7fpoqbova/plJDomqzpl7DmtqbmtJLokKjpo5Lps4PotZvkvJ7mr7Xns4HkuKfpqprmiavnvKvmtqnllazpk6/nqZHmnYDliLnnurHpk6npsqjnrZvmmZLphb7liKDpl6rpmZXotaHnvK7orqrlp5fpqp/pkpDps53lopLkvKTotY/lnqfmrofop57ng6fnu43otYrmkYTmhZHorr7ljo3mu6DnlbLnu4XlrqHlqbbogr7muJfor5zosILmuJblo7Dnu7Pog5zluIjni67mub/or5fml7bomoDlrp7or4bpqbblir/pgILph4rppbDop4bor5XosKXln5jojrPlvJHovbzotLPpk4jpsqXlr7/lhb3nu7bmnqLovpPkuabotY7lsZ7mnK/moJHnq5bmlbDmkYXnur7luIXpl6nlj4zosIHnqI7pobror7TnoZXng4Hpk4TkuJ3ppbLljq7pqbfnvIzplLbpuLbogLjmgILpooLorrzor7Xmk57olq7pporpo5XplLzoi4/or4nogoPosKHnqKPomb3pmo/nu6XlsoHosIflrZnmjZ/nrIvojarni7LnvKnnkJDplIHllKLnnYPnja3mjJ7pl7zpk4rps47lj7DmgIHpkpvpspDmkYrotKrnmKvmu6nlnZvosK3osIjlj7nmmJnpkr3plKzpobjmsaTng6vlgqXppafpk7TplZfmtpvnu6borqjpn6zpk73ohb7oqorplJHpopjkvZPlsYnnvIfpuYjpmJfmnaHnspzpvobpsqbotLTpk4HljoXlkKzng4Ppk5znu5/mgbjlpLTpkq3np4Plm77pko3lm6Lmip/popPonJXppajohLHpuLXpqa7pqbzmpK3nrqjpvI3oopzlqLLohb3lvK/mub7pob3kuIfnuqjnu77nvZHovovpn6bov53lm7TkuLrmvY3nu7Toi4fkvJ/kvKrnuqzosJPljavor7/luI/pl7HmsqnmtqDnjq7pn6rngpzpspTmuKnpl7vnurnnqLPpl67pmIznk67mjJ3onJfmtqHnqp3ljafojrTpvozlkZzpkqjkuYzor6zml6DoipzlkLTlnZ7pm77liqHor6/pgqzlupHmgIPlpqnpqpvpuYnpuZzplKHnibrooq3kuaDpk6PmiI/nu4bppanpmIvnjrrop4vomb7ovpbls6HkvqDni63ljqblkJPnoZbpspznuqTotKTooZTpl7LmmL7pmannjrDnjK7ljr/ppoXnvqHlrqrnur/oi4vojrbol5PlspjnjIPlqLTpuYfnl6vomp3nsbzot7nljqLplbbkuaHor6blk43pobnoipfppbfpqqfnvIPpo6jokKflmqPplIDmmZPllbjlk5PmvYfpqoHnu6Hmnq3nrqvljY/mjJ/mkLrog4HosJDlhpnms7vosKLkurXmkrfnu4HnvKzplIzooYXlhbTpmYnojaXlh7bmsbnplIjnu6PpppDpuLromZrlmJjpobvorrjlj5nnu6rnu63or6npobzovanmgqzpgInnmaPnu5rosJbpk4nplZ/lrabosJHms7bps5Xli4vor6Llr7vpqa/orq3orq/pgIrln5nmtZTpsp/ljovpuKbpuK3lk5Hkuprorrblnq3lqIXmoaDmsKnpmInng5/nm5DkuKXlsqnpopzpmI7oibPljoznoJrlvabosJrpqozljqPotZ3kv6jlhZbosLPmgbnpl6vphb3prYfppI3pvLnpuK/mnajmiaznlqHpmLPnl5LlhbvmoLfngoDnkbbmkYflsKfpgaXnqpHosKPoja/ovbrpuZ7ps5DniLfpobXkuJrlj7bpnaXosJLpgrrmmZTng6jljLvpk7HpopDpgZfku6romoHoibrkur/lv4bkuYnor6Porq7osIror5HlvILnu47or5LlkZPls4TppbTmgL/pqb/nvKLovbbotLvpkofplZLplbHnmJfoiKPojavpmLTpk7bppa7pmpDpk5/nmL7mqLHlqbTpubDlupTnvKjojrnokKTokKXojafonYfotaLpopbojJTojrrokKbok6XmkoTlmKTmu6LmvYbnko7puabnmL/poo/nvYLlk5/mi6XkvaPnl4jouIrlko/plZvkvJjlv6fpgq7pk4Dnirnor7Hojrjpk5Xpsb/oiIbpsbzmuJTlqLHkuI7lsb/or63ni7HoqonpooTpqa3kvJvkv6PosIDosJXok6PltZvppavpmIjlpqrnuqHop47mrKTpkrDpuYbpuazpvonpuLPmuIrovpXlm63lkZjlnIbnvJjov5zmqbzpuKLpvIvnuqbot4PpkqXnsqTmgqbpmIXpkrrpg6fljIDpmajov5DolbTphZ3mmZXpn7Xpg5Poirjmgb3mhKDnuq3pn6vmrpLmsLLmnYLngb7ovb3mlJLmmoLotZ7nk5LotrHpjL7otYPohI/pqbXlh7/mnqPotKPmi6nliJnms73otZzllafluLvnrqbotLzosK7otaDnu7znvK/ovafpk6Hpl7jmoIXor4jmlovlgLrmr6Hnm4/mlqnovpfltK3moIjmiJjnu73osLXlvKDmtqjluJDotKbog4DotbXor4/pkorom7DovpnplJfov5nosKrovoTpuafotJ7pkojkvqbor4rplYfpmLXmtYjnvJzmoaLovbjotYjnpa/puKnmjKPnnYHni7DkuonluKfnl4fpg5Hor4Hor6Tls6XpkrLpk67nrZ3nu4fogYzmiafnurjmjJrmjrfluJzotKjmu57pqpjmoInmoIDovbXovb7otL3puLfom7PntbfouKzouK/op6/pkp/nu4jnp43ogr/kvJfplLror4zovbTnmrHmmLzpqqTnuqPnu4nnjKror7jor5vng5vnnqnlmLHotK7pk7jpqbvkvKvmp6Dpk6LkuJPnoJbovazotZrlla3pppTpop7moanluoToo4Xlpoblo67nirbplKXotZjlnaDnvIDpqpPnvJLosIblh4bnnYDmtYror7zpla/lhbnotYTmuI3osJjnvIHovo7otYDnnKbplLHpvofpsrvouKrmgLvnurXlgazpgrnor7npqbrpsrDor4Xnu4TplZ7pkrvnvLXoupzps5/nv7HlubbljZzmsonkuJHmt4Dov63mlpfojIPlubLnmovnoYXmn5zlkI7kvJnnp7jmnbDor4DlpLjph4zlh4zkuYjpnInmjbvlh4TmiablnKPlsLjmiqzmtoLmtLzlloLmsaHplKjlkrjonY7lvZ3mtozmuLjlkIHlvqHmhL/lsrPkupHngbbmiY7mnK3nrZHkuo7lv5fms6jlh4vorqDosKvpg4Tli5Dlh7zlnYLlnoXlnrTln6/ln53oi5jojazoja7ojpzojrzoj7Dol4Hmj7jlkJLlkKPlkpTlkp3lkrTlmZjliojlmq/luZ7lspnltbTlvbflvrznirjni43ppoDppofpppPpppXmhKPmhrfmh5TkuKzmuobmu5/mt7fmvKTmvbTmvrnnlK/nup/nu5Tnu7Hnj4nmnqfmoYrmoYnmp5TmqaXovbHovbfotY3ogrfog6jpo5rnhbPnhYXnhpjmhI3mt7znoJzno5nnnI3pkprpkrfpk5jpk57plIPplI3plI7plI/plJjplJ3plKrplKvplL/plYXplY7plaLplaXplanplbLnqIbpuYvpuZvpubHnlqznlrTnl5bnma/oo6XopYHogKLpoqXonqjpurTpsoXpsobpsofpsp7psrTpsrrpsrzps4rps4vps5jps5npnpLpnrTpvYToja/mrLLph4zlp5DljaDlvoHlk5/njJvngq7lj5Hmt6HmgbblpbjlubLmnb7kvoTllbDotZ7lopnkuZDliLbpnaLlh4Dku4YiOw==",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "🎨 久久漫画",
    "bookSourceType": 2,
    "bookSourceUrl": "久久漫画",
    "bookUrlPattern": "https://.*(jjmhw|hmba).*/book/\\d+",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 142,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\nvar _0x508e2e=function(){var _0x170e2b=!![];return function(_0x3fe17c,_0x1ca151){var _0x3c334d=_0x170e2b?function(){if(_0x1ca151){var _0x50deec=_0x1ca151['\\x61\\x70\\x70\\x6c\\x79'](_0x3fe17c,arguments);_0x1ca151=null;return _0x50deec;}}:function(){};_0x170e2b=![];return _0x3c334d;};}();var _0x32c689=_0x508e2e(this,function(){var _0x3c8d86=function(){var _0x1c63a4=_0x3c8d86['\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72']('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x2f\\x22\\x20\\x2b\\x20\\x74\\x68\\x69\\x73\\x20\\x2b\\x20\\x22\\x2f')()['\\x63\\x6f\\x6d\\x70\\x69\\x6c\\x65']('\\x5e\\x28\\x5b\\x5e\\x20\\x5d\\x2b\\x28\\x20\\x2b\\x5b\\x5e\\x20\\x5d\\x2b\\x29\\x2b\\x29\\x2b\\x5b\\x5e\\x20\\x5d\\x7d');return!_0x1c63a4['\\x74\\x65\\x73\\x74'](_0x32c689);};return _0x3c8d86();});_0x32c689();var _0x2e342c=function(){var _0x4092e6=!![];return function(_0x5da753,_0x57e3fe){var _0x1af34d=_0x4092e6?function(){if(_0x57e3fe){var _0x3e68e2=_0x57e3fe['\\x61\\x70\\x70\\x6c\\x79'](_0x5da753,arguments);_0x57e3fe=null;return _0x3e68e2;}}:function(){};_0x4092e6=![];return _0x1af34d;};}();var _0xac847d=_0x2e342c(this,function(){var _0x5e1408=function(){};var _0x1c3525=function(){var _0x4e542d;try{_0x4e542d=Function('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x28\\x66\\x75\\x6e\\x63\\x74\\x69\\x6f\\x6e\\x28\\x29\\x20'+'\\x7b\\x7d\\x2e\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72\\x28\\x22\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x74\\x68\\x69\\x73\\x22\\x29\\x28\\x20\\x29'+'\\x29\\x3b')();}catch(_0x10616f){_0x4e542d=window;}return _0x4e542d;};var _0x5adc27=_0x1c3525();if(!_0x5adc27['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']){_0x5adc27['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']=function(_0x3b3167){var _0x209d97={};_0x209d97['\\x6c\\x6f\\x67']=_0x3b3167;_0x209d97['\\x77\\x61\\x72\\x6e']=_0x3b3167;_0x209d97['\\x64\\x65\\x62\\x75\\x67']=_0x3b3167;_0x209d97['\\x69\\x6e\\x66\\x6f']=_0x3b3167;_0x209d97['\\x65\\x72\\x72\\x6f\\x72']=_0x3b3167;_0x209d97['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x3b3167;_0x209d97['\\x74\\x61\\x62\\x6c\\x65']=_0x3b3167;_0x209d97['\\x74\\x72\\x61\\x63\\x65']=_0x3b3167;return _0x209d97;}(_0x5e1408);}else{_0x5adc27['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x6c\\x6f\\x67']=_0x5e1408;_0x5adc27['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x77\\x61\\x72\\x6e']=_0x5e1408;_0x5adc27['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x64\\x65\\x62\\x75\\x67']=_0x5e1408;_0x5adc27['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x69\\x6e\\x66\\x6f']=_0x5e1408;_0x5adc27['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x72\\x72\\x6f\\x72']=_0x5e1408;_0x5adc27['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x5e1408;_0x5adc27['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x61\\x62\\x6c\\x65']=_0x5e1408;_0x5adc27['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x72\\x61\\x63\\x65']=_0x5e1408;}});_0xac847d();eval(String(java['\\x62\\x61\\x73\\x65\\x36\\x34\\x44\\x65\\x63\\x6f\\x64\\x65'](source['\\x62\\x6f\\x6f\\x6b\\x53\\x6f\\x75\\x72\\x63\\x65\\x43\\x6f\\x6d\\x6d\\x65\\x6e\\x74'])));'\\x5b\\x7b\\x74\\x69\\x74\\x6c\\x65\\x3a\\x22\\u8fde\\u8f7d\\x22\\x2c\\x75\\x72\\x6c\\x3a\\x22'+host+'\\x2f\\x62\\x6f\\x6f\\x6b\\x6c\\x69\\x73\\x74\\x3f\\x74\\x61\\x67\\x3d\\u5168\\u90e8\\x26\\x61\\x72\\x65\\x61\\x3d\\x31\\x26\\x65\\x6e\\x64\\x3d\\x30\\x26\\x70\\x61\\x67\\x65\\x3d\\x7b\\x7b\\x70\\x61\\x67\\x65\\x7d\\x7d\\x22\\x2c\\x73\\x74\\x79\\x6c\\x65\\x3a\\x7b\\x6c\\x61\\x79\\x6f\\x75\\x74\\x5f\\x66\\x6c\\x65\\x78\\x47\\x72\\x6f\\x77\\x3a\\x31\\x7d\\x7d\\x2c\\x7b\\x74\\x69\\x74\\x6c\\x65\\x3a\\x22\\u5b8c\\u7ed3\\x22\\x2c\\x75\\x72\\x6c\\x3a\\x22'+host+'\\x2f\\x62\\x6f\\x6f\\x6b\\x6c\\x69\\x73\\x74\\x3f\\x74\\x61\\x67\\x3d\\u5168\\u90e8\\x26\\x61\\x72\\x65\\x61\\x3d\\x31\\x26\\x65\\x6e\\x64\\x3d\\x31\\x26\\x70\\x61\\x67\\x65\\x3d\\x7b\\x7b\\x70\\x61\\x67\\x65\\x7d\\x7d\\x22\\x2c\\x73\\x74\\x79\\x6c\\x65\\x3a\\x7b\\x6c\\x61\\x79\\x6f\\x75\\x74\\x5f\\x66\\x6c\\x65\\x78\\x47\\x72\\x6f\\x77\\x3a\\x31\\x7d\\x7d\\x5d';\n</js>",
    "header": "{\n  \"User-agent\":\"Dalvik/2.1.0 (Linux; U; Android 9; PCRT00 Build/PQ3B.190801.002)\"\n}",
    "lastUpdateTime": 1667268377290,
    "loginCheckJs": "",
    "loginUi": "[\n  {\n    name: \"Host\",\n    type: \"text\"\n  },\n  { name: \"　【1】久久韩漫　　\", type: \"button\", action: \"https://www.jjmhw.cc\" },\n  { name: \"　【2】爱看漫画　　\", type: \"button\", action: \"https://www.hmba.top\" }\n]",
    "loginUrl": "\"\"",
    "respondTime": 8756,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$.cover",
      "downloadUrls": "$.durl",
      "init": "<js>\nvar _0x5eed74=function(){var _0x4b66fb=!![];return function(_0x56c8b7,_0x5c7083){var _0x58a000=_0x4b66fb?function(){if(_0x5c7083){var _0x48089e=_0x5c7083['\\x61\\x70\\x70\\x6c\\x79'](_0x56c8b7,arguments);_0x5c7083=null;return _0x48089e;}}:function(){};_0x4b66fb=![];return _0x58a000;};}();var _0x24d235=_0x5eed74(this,function(){var _0x583028=function(){var _0x2ce842=_0x583028['\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72']('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x2f\\x22\\x20\\x2b\\x20\\x74\\x68\\x69\\x73\\x20\\x2b\\x20\\x22\\x2f')()['\\x63\\x6f\\x6d\\x70\\x69\\x6c\\x65']('\\x5e\\x28\\x5b\\x5e\\x20\\x5d\\x2b\\x28\\x20\\x2b\\x5b\\x5e\\x20\\x5d\\x2b\\x29\\x2b\\x29\\x2b\\x5b\\x5e\\x20\\x5d\\x7d');return!_0x2ce842['\\x74\\x65\\x73\\x74'](_0x24d235);};return _0x583028();});_0x24d235();var _0x3f8fae=function(){var _0x574506=!![];return function(_0x5b74cb,_0x58bbc7){var _0x234054=_0x574506?function(){if(_0x58bbc7){var _0x51b1be=_0x58bbc7['\\x61\\x70\\x70\\x6c\\x79'](_0x5b74cb,arguments);_0x58bbc7=null;return _0x51b1be;}}:function(){};_0x574506=![];return _0x234054;};}();var _0x1d8243=_0x3f8fae(this,function(){var _0x37e9a=function(){};var _0x61b70e;try{var _0x57b787=Function('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x28\\x66\\x75\\x6e\\x63\\x74\\x69\\x6f\\x6e\\x28\\x29\\x20'+'\\x7b\\x7d\\x2e\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72\\x28\\x22\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x74\\x68\\x69\\x73\\x22\\x29\\x28\\x20\\x29'+'\\x29\\x3b');_0x61b70e=_0x57b787();}catch(_0x47f4fa){_0x61b70e=window;}if(!_0x61b70e['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']){_0x61b70e['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']=function(_0x13d745){var _0x3f9e6f={};_0x3f9e6f['\\x6c\\x6f\\x67']=_0x13d745;_0x3f9e6f['\\x77\\x61\\x72\\x6e']=_0x13d745;_0x3f9e6f['\\x64\\x65\\x62\\x75\\x67']=_0x13d745;_0x3f9e6f['\\x69\\x6e\\x66\\x6f']=_0x13d745;_0x3f9e6f['\\x65\\x72\\x72\\x6f\\x72']=_0x13d745;_0x3f9e6f['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x13d745;_0x3f9e6f['\\x74\\x61\\x62\\x6c\\x65']=_0x13d745;_0x3f9e6f['\\x74\\x72\\x61\\x63\\x65']=_0x13d745;return _0x3f9e6f;}(_0x37e9a);}else{_0x61b70e['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x6c\\x6f\\x67']=_0x37e9a;_0x61b70e['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x77\\x61\\x72\\x6e']=_0x37e9a;_0x61b70e['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x64\\x65\\x62\\x75\\x67']=_0x37e9a;_0x61b70e['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x69\\x6e\\x66\\x6f']=_0x37e9a;_0x61b70e['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x72\\x72\\x6f\\x72']=_0x37e9a;_0x61b70e['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x37e9a;_0x61b70e['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x61\\x62\\x6c\\x65']=_0x37e9a;_0x61b70e['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x72\\x61\\x63\\x65']=_0x37e9a;}});_0x1d8243();eval(String(java['\\x62\\x61\\x73\\x65\\x36\\x34\\x44\\x65\\x63\\x6f\\x64\\x65'](source['\\x62\\x6f\\x6f\\x6b\\x53\\x6f\\x75\\x72\\x63\\x65\\x43\\x6f\\x6d\\x6d\\x65\\x6e\\x74'])));var _0x5c241a=org['\\x6a\\x73\\x6f\\x75\\x70']['\\x4a\\x73\\x6f\\x75\\x70']['\\x70\\x61\\x72\\x73\\x65'](result),_0x4b3e42=_0x3a5c89=>String(_0x5c241a['\\x73\\x65\\x6c\\x65\\x63\\x74']('\\x5b\\x70\\x72\\x6f\\x70\\x65\\x72\\x74\\x79\\x3d\\x22\\x6f\\x67\\x3a'+_0x3a5c89+'\\x22\\x5d')['\\x61\\x74\\x74\\x72']('\\x63\\x6f\\x6e\\x74\\x65\\x6e\\x74')),_0x153232=_0x5ba3d1=>String(java['\\x67\\x65\\x74\\x45\\x6c\\x65\\x6d\\x65\\x6e\\x74\\x73'](_0x5ba3d1)['\\x74\\x65\\x78\\x74']()),_0x30b755=_0x15eb70=>String(_0x5c241a['\\x73\\x65\\x6c\\x65\\x63\\x74'](_0x15eb70)['\\x61\\x74\\x74\\x72']('\\x64\\x61\\x74\\x61\\x2d\\x6f\\x72\\x69\\x67\\x69\\x6e\\x61\\x6c'));url=host+baseUrl['\\x6d\\x61\\x74\\x63\\x68'](/(\\/book.*)/)[0x1];s=_0x153232('\\x2e\\x64\\x65\\x74\\x61\\x69\\x6c\\x2d\\x6c\\x69\\x73\\x74\\x2d\\x74\\x69\\x74\\x6c\\x65\\x2d\\x31')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/中|已/g,'');k=_0x153232('\\x2e\\x64\\x65\\x74\\x61\\x69\\x6c\\x2d\\x6d\\x61\\x69\\x6e\\x2d\\x69\\x6e\\x66\\x6f\\x2d\\x61\\x75\\x74\\x68\\x6f\\x72\\x20\\x61\\x2e\\x32')+'\\x2c'+_0x153232('\\x2e\\x64\\x65\\x74\\x61\\x69\\x6c\\x2d\\x6d\\x61\\x69\\x6e\\x2d\\x69\\x6e\\x66\\x6f\\x2d\\x63\\x6c\\x61\\x73\\x73\\x20\\x61');l=_0x153232('\\x2e\\x64\\x65\\x74\\x61\\x69\\x6c\\x2d\\x6c\\x69\\x73\\x74\\x2d\\x31\\x20\\x6c\\x69\\x20\\x61\\x2e\\x2d\\x31');t=_0x153232('\\x2e\\x64\\x65\\x74\\x61\\x69\\x6c\\x2d\\x6c\\x69\\x73\\x74\\x2d\\x74\\x69\\x74\\x6c\\x65\\x2d\\x33')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/更新/g,'');count=_0x5c241a['\\x73\\x65\\x6c\\x65\\x63\\x74']('\\x2e\\x64\\x65\\x74\\x61\\x69\\x6c\\x2d\\x6c\\x69\\x73\\x74\\x2d\\x31\\x20\\x6c\\x69')['\\x6c\\x65\\x6e\\x67\\x74\\x68'];var _0x1eda4c={};_0x1eda4c['\\x6e\\x61\\x6d\\x65']=_0x153232('\\x2e\\x64\\x65\\x74\\x61\\x69\\x6c\\x2d\\x6d\\x61\\x69\\x6e\\x2d\\x69\\x6e\\x66\\x6f\\x2d\\x74\\x69\\x74\\x6c\\x65')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/[（\\(].*/,'');_0x1eda4c['\\x61\\x75\\x74\\x68\\x6f\\x72']=_0x153232('\\x2e\\x64\\x65\\x74\\x61\\x69\\x6c\\x2d\\x6d\\x61\\x69\\x6e\\x2d\\x69\\x6e\\x66\\x6f\\x2d\\x61\\x75\\x74\\x68\\x6f\\x72\\x2e\\x31')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/[,xX&]|[图文][:：]/g,'\\x2f')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/\\/\\/\\/|\\/\\//g,'\\x2f');_0x1eda4c['\\x6b\\x69\\x6e\\x64']=s+'\\x2c'+k+'\\x2c'+t;_0x1eda4c['\\x77\\x6f\\x72\\x64']='';_0x1eda4c['\\x6c\\x61\\x74\\x65\\x73\\x74']=l+'\\u00b7'+t+'\\u00b7\\x5b'+count+'\\x5d';_0x1eda4c['\\x69\\x6e\\x74\\x72\\x6f']='\\x3c\\x62\\x72\\x3e'+_0x153232('\\x70\\x2e\\x64\\x65\\x74\\x61\\x69\\x6c\\x2d\\x64\\x65\\x73\\x63')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/.*内容介绍[:：].*/g,'')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/(^|[。！？!?]+[\"”」）】]?)/g,'\\x24\\x31\\x3c\\x62\\x72\\x3e');_0x1eda4c['\\x63\\x6f\\x76\\x65\\x72']=_0x30b755('\\x2e\\x64\\x65\\x74\\x61\\x69\\x6c\\x2d\\x6d\\x61\\x69\\x6e\\x2d\\x63\\x6f\\x76\\x65\\x72\\x20\\x69\\x6d\\x67')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/http:/,'\\x68\\x74\\x74\\x70\\x73\\x3a');_0x1eda4c['\\x75\\x72\\x6c']=url;_0x1eda4c['\\x64\\x75\\x72\\x6c']='';book=JSON['\\x73\\x74\\x72\\x69\\x6e\\x67\\x69\\x66\\x79'](_0x1eda4c);for(x in i)book=ti(book,i[x],z[x]);\n</js>",
      "intro": "$.intro",
      "kind": "$.kind",
      "lastChapter": "$.latest",
      "name": "$.name",
      "tocUrl": "$.url",
      "wordCount": "$.word"
    },
    "ruleContent": {
      "content": "<js>\nvar _0x26ca58=function(){var _0x5589e9=!![];return function(_0x210e27,_0x4f7855){var _0x93e8cc=_0x5589e9?function(){if(_0x4f7855){var _0x3193d4=_0x4f7855['\\x61\\x70\\x70\\x6c\\x79'](_0x210e27,arguments);_0x4f7855=null;return _0x3193d4;}}:function(){};_0x5589e9=![];return _0x93e8cc;};}();var _0x3762b9=_0x26ca58(this,function(){var _0x3a2113=function(){var _0x130168=_0x3a2113['\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72']('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x2f\\x22\\x20\\x2b\\x20\\x74\\x68\\x69\\x73\\x20\\x2b\\x20\\x22\\x2f')()['\\x63\\x6f\\x6d\\x70\\x69\\x6c\\x65']('\\x5e\\x28\\x5b\\x5e\\x20\\x5d\\x2b\\x28\\x20\\x2b\\x5b\\x5e\\x20\\x5d\\x2b\\x29\\x2b\\x29\\x2b\\x5b\\x5e\\x20\\x5d\\x7d');return!_0x130168['\\x74\\x65\\x73\\x74'](_0x3762b9);};return _0x3a2113();});_0x3762b9();var _0x150a69=function(){var _0x321f27=!![];return function(_0x3b9415,_0x5cc64d){var _0x3e94b3=_0x321f27?function(){if(_0x5cc64d){var _0x190980=_0x5cc64d['\\x61\\x70\\x70\\x6c\\x79'](_0x3b9415,arguments);_0x5cc64d=null;return _0x190980;}}:function(){};_0x321f27=![];return _0x3e94b3;};}();var _0x7da57d=_0x150a69(this,function(){var _0x5061a9=function(){};var _0x1384a3=function(){var _0x4e9342;try{_0x4e9342=Function('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x28\\x66\\x75\\x6e\\x63\\x74\\x69\\x6f\\x6e\\x28\\x29\\x20'+'\\x7b\\x7d\\x2e\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72\\x28\\x22\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x74\\x68\\x69\\x73\\x22\\x29\\x28\\x20\\x29'+'\\x29\\x3b')();}catch(_0x448990){_0x4e9342=window;}return _0x4e9342;};var _0x25042=_0x1384a3();if(!_0x25042['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']){_0x25042['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']=function(_0x1f1ef3){var _0x4c2cdf={};_0x4c2cdf['\\x6c\\x6f\\x67']=_0x1f1ef3;_0x4c2cdf['\\x77\\x61\\x72\\x6e']=_0x1f1ef3;_0x4c2cdf['\\x64\\x65\\x62\\x75\\x67']=_0x1f1ef3;_0x4c2cdf['\\x69\\x6e\\x66\\x6f']=_0x1f1ef3;_0x4c2cdf['\\x65\\x72\\x72\\x6f\\x72']=_0x1f1ef3;_0x4c2cdf['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x1f1ef3;_0x4c2cdf['\\x74\\x61\\x62\\x6c\\x65']=_0x1f1ef3;_0x4c2cdf['\\x74\\x72\\x61\\x63\\x65']=_0x1f1ef3;return _0x4c2cdf;}(_0x5061a9);}else{_0x25042['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x6c\\x6f\\x67']=_0x5061a9;_0x25042['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x77\\x61\\x72\\x6e']=_0x5061a9;_0x25042['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x64\\x65\\x62\\x75\\x67']=_0x5061a9;_0x25042['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x69\\x6e\\x66\\x6f']=_0x5061a9;_0x25042['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x72\\x72\\x6f\\x72']=_0x5061a9;_0x25042['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x5061a9;_0x25042['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x61\\x62\\x6c\\x65']=_0x5061a9;_0x25042['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x72\\x61\\x63\\x65']=_0x5061a9;}});_0x7da57d();java['\\x67\\x65\\x74']('\\x45\\x6e\\x61\\x62\\x6c\\x65')==0x1?'\\x3c\\x62\\x72\\x3e'+java['\\x67\\x65\\x74\\x45\\x6c\\x65\\x6d\\x65\\x6e\\x74\\x73']('\\x2e\\x6c\\x61\\x7a\\x79'):java['\\x74\\x6f\\x61\\x73\\x74']('\\x0a\\u2757\\u672a\\u542f\\u7528\\u4e66\\u6e90\\u2757');\n</js>",
      "imageStyle": "FULL",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "$.author\n<js>\nvar _0x2f673d=function(){var _0x3cc5af=!![];return function(_0x5a5f6f,_0x1dd465){var _0x4da25a=_0x3cc5af?function(){if(_0x1dd465){var _0x124fa1=_0x1dd465['\\x61\\x70\\x70\\x6c\\x79'](_0x5a5f6f,arguments);_0x1dd465=null;return _0x124fa1;}}:function(){};_0x3cc5af=![];return _0x4da25a;};}();var _0x3d8564=_0x2f673d(this,function(){var _0x45851d=function(){var _0x13f363=_0x45851d['\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72']('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x2f\\x22\\x20\\x2b\\x20\\x74\\x68\\x69\\x73\\x20\\x2b\\x20\\x22\\x2f')()['\\x63\\x6f\\x6d\\x70\\x69\\x6c\\x65']('\\x5e\\x28\\x5b\\x5e\\x20\\x5d\\x2b\\x28\\x20\\x2b\\x5b\\x5e\\x20\\x5d\\x2b\\x29\\x2b\\x29\\x2b\\x5b\\x5e\\x20\\x5d\\x7d');return!_0x13f363['\\x74\\x65\\x73\\x74'](_0x3d8564);};return _0x45851d();});_0x3d8564();var _0x5d766b=function(){var _0x18f6d0=!![];return function(_0x4cfad5,_0x4b28e1){var _0x594154=_0x18f6d0?function(){if(_0x4b28e1){var _0x5b5740=_0x4b28e1['\\x61\\x70\\x70\\x6c\\x79'](_0x4cfad5,arguments);_0x4b28e1=null;return _0x5b5740;}}:function(){};_0x18f6d0=![];return _0x594154;};}();var _0x4afc4c=_0x5d766b(this,function(){var _0x2c136f=function(){};var _0x14d418;try{var _0x585bf5=Function('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x28\\x66\\x75\\x6e\\x63\\x74\\x69\\x6f\\x6e\\x28\\x29\\x20'+'\\x7b\\x7d\\x2e\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72\\x28\\x22\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x74\\x68\\x69\\x73\\x22\\x29\\x28\\x20\\x29'+'\\x29\\x3b');_0x14d418=_0x585bf5();}catch(_0x279eb4){_0x14d418=window;}if(!_0x14d418['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']){_0x14d418['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']=function(_0x59341e){var _0x3132f4={};_0x3132f4['\\x6c\\x6f\\x67']=_0x59341e;_0x3132f4['\\x77\\x61\\x72\\x6e']=_0x59341e;_0x3132f4['\\x64\\x65\\x62\\x75\\x67']=_0x59341e;_0x3132f4['\\x69\\x6e\\x66\\x6f']=_0x59341e;_0x3132f4['\\x65\\x72\\x72\\x6f\\x72']=_0x59341e;_0x3132f4['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x59341e;_0x3132f4['\\x74\\x61\\x62\\x6c\\x65']=_0x59341e;_0x3132f4['\\x74\\x72\\x61\\x63\\x65']=_0x59341e;return _0x3132f4;}(_0x2c136f);}else{_0x14d418['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x6c\\x6f\\x67']=_0x2c136f;_0x14d418['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x77\\x61\\x72\\x6e']=_0x2c136f;_0x14d418['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x64\\x65\\x62\\x75\\x67']=_0x2c136f;_0x14d418['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x69\\x6e\\x66\\x6f']=_0x2c136f;_0x14d418['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x72\\x72\\x6f\\x72']=_0x2c136f;_0x14d418['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x2c136f;_0x14d418['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x61\\x62\\x6c\\x65']=_0x2c136f;_0x14d418['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x72\\x61\\x63\\x65']=_0x2c136f;}});_0x4afc4c();eval(String(java['\\x62\\x61\\x73\\x65\\x36\\x34\\x44\\x65\\x63\\x6f\\x64\\x65'](source['\\x62\\x6f\\x6f\\x6b\\x53\\x6f\\x75\\x72\\x63\\x65\\x43\\x6f\\x6d\\x6d\\x65\\x6e\\x74'])));for(x in i)result=ti(result,i[x],z[x]);\n</js>",
      "bookList": "<js>\nvar _0xed12ec=function(){var _0x23d473=!![];return function(_0x3b50cc,_0x383bfe){var _0x2bdf2e=_0x23d473?function(){if(_0x383bfe){var _0x248dcc=_0x383bfe['\\x61\\x70\\x70\\x6c\\x79'](_0x3b50cc,arguments);_0x383bfe=null;return _0x248dcc;}}:function(){};_0x23d473=![];return _0x2bdf2e;};}();var _0x52c6f6=_0xed12ec(this,function(){var _0x5ed782=function(){var _0x103b5e=_0x5ed782['\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72']('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x2f\\x22\\x20\\x2b\\x20\\x74\\x68\\x69\\x73\\x20\\x2b\\x20\\x22\\x2f')()['\\x63\\x6f\\x6d\\x70\\x69\\x6c\\x65']('\\x5e\\x28\\x5b\\x5e\\x20\\x5d\\x2b\\x28\\x20\\x2b\\x5b\\x5e\\x20\\x5d\\x2b\\x29\\x2b\\x29\\x2b\\x5b\\x5e\\x20\\x5d\\x7d');return!_0x103b5e['\\x74\\x65\\x73\\x74'](_0x52c6f6);};return _0x5ed782();});_0x52c6f6();var _0x4f0074=function(){var _0x1d512b=!![];return function(_0x351503,_0x25829d){var _0x42332a=_0x1d512b?function(){if(_0x25829d){var _0x46ed9e=_0x25829d['\\x61\\x70\\x70\\x6c\\x79'](_0x351503,arguments);_0x25829d=null;return _0x46ed9e;}}:function(){};_0x1d512b=![];return _0x42332a;};}();var _0x1f02bb=_0x4f0074(this,function(){var _0x3a485a=function(){};var _0x38af86;try{var _0x90b066=Function('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x28\\x66\\x75\\x6e\\x63\\x74\\x69\\x6f\\x6e\\x28\\x29\\x20'+'\\x7b\\x7d\\x2e\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72\\x28\\x22\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x74\\x68\\x69\\x73\\x22\\x29\\x28\\x20\\x29'+'\\x29\\x3b');_0x38af86=_0x90b066();}catch(_0xae1aac){_0x38af86=window;}if(!_0x38af86['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']){_0x38af86['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']=function(_0x239868){var _0x956322={};_0x956322['\\x6c\\x6f\\x67']=_0x239868;_0x956322['\\x77\\x61\\x72\\x6e']=_0x239868;_0x956322['\\x64\\x65\\x62\\x75\\x67']=_0x239868;_0x956322['\\x69\\x6e\\x66\\x6f']=_0x239868;_0x956322['\\x65\\x72\\x72\\x6f\\x72']=_0x239868;_0x956322['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x239868;_0x956322['\\x74\\x61\\x62\\x6c\\x65']=_0x239868;_0x956322['\\x74\\x72\\x61\\x63\\x65']=_0x239868;return _0x956322;}(_0x3a485a);}else{_0x38af86['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x6c\\x6f\\x67']=_0x3a485a;_0x38af86['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x77\\x61\\x72\\x6e']=_0x3a485a;_0x38af86['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x64\\x65\\x62\\x75\\x67']=_0x3a485a;_0x38af86['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x69\\x6e\\x66\\x6f']=_0x3a485a;_0x38af86['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x72\\x72\\x6f\\x72']=_0x3a485a;_0x38af86['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x3a485a;_0x38af86['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x61\\x62\\x6c\\x65']=_0x3a485a;_0x38af86['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x72\\x61\\x63\\x65']=_0x3a485a;}});_0x1f02bb();eval(String(java['\\x62\\x61\\x73\\x65\\x36\\x34\\x44\\x65\\x63\\x6f\\x64\\x65'](source['\\x62\\x6f\\x6f\\x6b\\x53\\x6f\\x75\\x72\\x63\\x65\\x43\\x6f\\x6d\\x6d\\x65\\x6e\\x74'])));var _0x162967=java['\\x67\\x65\\x74\\x45\\x6c\\x65\\x6d\\x65\\x6e\\x74\\x73']('\\x2e\\x6d\\x61\\x6e\\x67\\x61\\x2d\\x6c\\x69\\x73\\x74\\x2d\\x32\\x20\\x6c\\x69'),_0x382fb1=_0x63867a=>String(_0x162967[i]['\\x73\\x65\\x6c\\x65\\x63\\x74'](_0x63867a)['\\x74\\x65\\x78\\x74']()),_0x3b0ddc=[];for(i=0x0;i<_0x162967['\\x6c\\x65\\x6e\\x67\\x74\\x68'];i++){var _0x5b489d={};_0x5b489d['\\x6e\\x61\\x6d\\x65']=_0x382fb1('\\x2e\\x6d\\x61\\x6e\\x67\\x61\\x2d\\x6c\\x69\\x73\\x74\\x2d\\x32\\x2d\\x74\\x69\\x74\\x6c\\x65\\x20\\x61');_0x5b489d['\\x61\\x75\\x74\\x68\\x6f\\x72']=_0x382fb1('\\x2e\\x62\\x6f\\x6f\\x6b\\x2d\\x6c\\x69\\x73\\x74\\x2d\\x69\\x6e\\x66\\x6f\\x2d\\x62\\x6f\\x74\\x74\\x6f\\x6d\\x2d\\x69\\x74\\x65\\x6d')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/[,xX&]|[图文][:：]/g,'\\x2f')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/\\/\\/\\/|\\/\\//g,'\\x2f')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/^[\\/]/g,'');_0x5b489d['\\x6b\\x69\\x6e\\x64']='';_0x5b489d['\\x77\\x6f\\x72\\x64']='';_0x5b489d['\\x6c\\x61\\x74\\x65\\x73\\x74']=_0x382fb1('\\x2e\\x6d\\x61\\x6e\\x67\\x61\\x2d\\x6c\\x69\\x73\\x74\\x2d\\x32\\x2d\\x74\\x69\\x70\\x20\\x61')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/已更新\\s/,'');_0x5b489d['\\x69\\x6e\\x74\\x72\\x6f']='';_0x5b489d['\\x63\\x6f\\x76\\x65\\x72']=String(_0x162967[i]['\\x73\\x65\\x6c\\x65\\x63\\x74']('\\x69\\x6d\\x67')['\\x61\\x74\\x74\\x72']('\\x64\\x61\\x74\\x61\\x2d\\x6f\\x72\\x69\\x67\\x69\\x6e\\x61\\x6c'))['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/http:/,'\\x68\\x74\\x74\\x70\\x73\\x3a');_0x5b489d['\\x75\\x72\\x6c']=_0x162967[i]['\\x73\\x65\\x6c\\x65\\x63\\x74']('\\x61')['\\x61\\x74\\x74\\x72']('\\x68\\x72\\x65\\x66');_0x3b0ddc['\\x70\\x75\\x73\\x68'](_0x5b489d);}flag==0x1?JSON['\\x73\\x74\\x72\\x69\\x6e\\x67\\x69\\x66\\x79'](_0x3b0ddc):java['\\x74\\x6f\\x61\\x73\\x74']('\\x0a\\u2757\\u672a\\u542f\\u7528\\u4e66\\u6e90\\u2757');\n</js>\n$[*]",
      "bookUrl": "$.url",
      "coverUrl": "$.cover",
      "intro": "$.intro",
      "kind": "$.kind",
      "lastChapter": "$.latest",
      "name": "$.name\n<js>\nvar _0x54b83a=function(){var _0x2f2b1b=!![];return function(_0x5ca253,_0x3d4ff4){var _0x8bb0e6=_0x2f2b1b?function(){if(_0x3d4ff4){var _0xb99c63=_0x3d4ff4['\\x61\\x70\\x70\\x6c\\x79'](_0x5ca253,arguments);_0x3d4ff4=null;return _0xb99c63;}}:function(){};_0x2f2b1b=![];return _0x8bb0e6;};}();var _0x372126=_0x54b83a(this,function(){var _0x1b0d90=function(){var _0x3a14ab=_0x1b0d90['\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72']('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x2f\\x22\\x20\\x2b\\x20\\x74\\x68\\x69\\x73\\x20\\x2b\\x20\\x22\\x2f')()['\\x63\\x6f\\x6d\\x70\\x69\\x6c\\x65']('\\x5e\\x28\\x5b\\x5e\\x20\\x5d\\x2b\\x28\\x20\\x2b\\x5b\\x5e\\x20\\x5d\\x2b\\x29\\x2b\\x29\\x2b\\x5b\\x5e\\x20\\x5d\\x7d');return!_0x3a14ab['\\x74\\x65\\x73\\x74'](_0x372126);};return _0x1b0d90();});_0x372126();var _0x485d2d=function(){var _0x20c3c0=!![];return function(_0x59e06a,_0x5130c3){var _0x5ae85d=_0x20c3c0?function(){if(_0x5130c3){var _0x56d0bb=_0x5130c3['\\x61\\x70\\x70\\x6c\\x79'](_0x59e06a,arguments);_0x5130c3=null;return _0x56d0bb;}}:function(){};_0x20c3c0=![];return _0x5ae85d;};}();var _0x280783=_0x485d2d(this,function(){var _0x557886=function(){};var _0x45f57c=function(){var _0x3e5e85;try{_0x3e5e85=Function('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x28\\x66\\x75\\x6e\\x63\\x74\\x69\\x6f\\x6e\\x28\\x29\\x20'+'\\x7b\\x7d\\x2e\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72\\x28\\x22\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x74\\x68\\x69\\x73\\x22\\x29\\x28\\x20\\x29'+'\\x29\\x3b')();}catch(_0x501770){_0x3e5e85=window;}return _0x3e5e85;};var _0x3420d4=_0x45f57c();if(!_0x3420d4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']){_0x3420d4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']=function(_0x2e92d0){var _0xc01f9={};_0xc01f9['\\x6c\\x6f\\x67']=_0x2e92d0;_0xc01f9['\\x77\\x61\\x72\\x6e']=_0x2e92d0;_0xc01f9['\\x64\\x65\\x62\\x75\\x67']=_0x2e92d0;_0xc01f9['\\x69\\x6e\\x66\\x6f']=_0x2e92d0;_0xc01f9['\\x65\\x72\\x72\\x6f\\x72']=_0x2e92d0;_0xc01f9['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x2e92d0;_0xc01f9['\\x74\\x61\\x62\\x6c\\x65']=_0x2e92d0;_0xc01f9['\\x74\\x72\\x61\\x63\\x65']=_0x2e92d0;return _0xc01f9;}(_0x557886);}else{_0x3420d4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x6c\\x6f\\x67']=_0x557886;_0x3420d4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x77\\x61\\x72\\x6e']=_0x557886;_0x3420d4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x64\\x65\\x62\\x75\\x67']=_0x557886;_0x3420d4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x69\\x6e\\x66\\x6f']=_0x557886;_0x3420d4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x72\\x72\\x6f\\x72']=_0x557886;_0x3420d4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x557886;_0x3420d4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x61\\x62\\x6c\\x65']=_0x557886;_0x3420d4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x72\\x61\\x63\\x65']=_0x557886;}});_0x280783();eval(String(java['\\x62\\x61\\x73\\x65\\x36\\x34\\x44\\x65\\x63\\x6f\\x64\\x65'](source['\\x62\\x6f\\x6f\\x6b\\x53\\x6f\\x75\\x72\\x63\\x65\\x43\\x6f\\x6d\\x6d\\x65\\x6e\\x74'])));for(x in i)result=ti(result,i[x],z[x])['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/[（\\(].*/,'');\n</js>",
      "wordCount": "$.word"
    },
    "ruleSearch": {
      "author": "$.author\n<js>\nvar _0x4e0b04=function(){var _0x18644a=!![];return function(_0x45199a,_0x5bf46c){var _0x2be88e=_0x18644a?function(){if(_0x5bf46c){var _0xc0b3e6=_0x5bf46c['\\x61\\x70\\x70\\x6c\\x79'](_0x45199a,arguments);_0x5bf46c=null;return _0xc0b3e6;}}:function(){};_0x18644a=![];return _0x2be88e;};}();var _0x4f648a=_0x4e0b04(this,function(){var _0x3cbd1e=function(){var _0x16791c=_0x3cbd1e['\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72']('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x2f\\x22\\x20\\x2b\\x20\\x74\\x68\\x69\\x73\\x20\\x2b\\x20\\x22\\x2f')()['\\x63\\x6f\\x6d\\x70\\x69\\x6c\\x65']('\\x5e\\x28\\x5b\\x5e\\x20\\x5d\\x2b\\x28\\x20\\x2b\\x5b\\x5e\\x20\\x5d\\x2b\\x29\\x2b\\x29\\x2b\\x5b\\x5e\\x20\\x5d\\x7d');return!_0x16791c['\\x74\\x65\\x73\\x74'](_0x4f648a);};return _0x3cbd1e();});_0x4f648a();var _0x1fc38a=function(){var _0x872dfe=!![];return function(_0xe78a19,_0x3da0e2){var _0x2674c4=_0x872dfe?function(){if(_0x3da0e2){var _0x12254c=_0x3da0e2['\\x61\\x70\\x70\\x6c\\x79'](_0xe78a19,arguments);_0x3da0e2=null;return _0x12254c;}}:function(){};_0x872dfe=![];return _0x2674c4;};}();var _0x4d2835=_0x1fc38a(this,function(){var _0x377297=function(){};var _0x11c0b8;try{var _0x4ec767=Function('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x28\\x66\\x75\\x6e\\x63\\x74\\x69\\x6f\\x6e\\x28\\x29\\x20'+'\\x7b\\x7d\\x2e\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72\\x28\\x22\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x74\\x68\\x69\\x73\\x22\\x29\\x28\\x20\\x29'+'\\x29\\x3b');_0x11c0b8=_0x4ec767();}catch(_0x32c368){_0x11c0b8=window;}if(!_0x11c0b8['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']){_0x11c0b8['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']=function(_0x23fb13){var _0x38d57c={};_0x38d57c['\\x6c\\x6f\\x67']=_0x23fb13;_0x38d57c['\\x77\\x61\\x72\\x6e']=_0x23fb13;_0x38d57c['\\x64\\x65\\x62\\x75\\x67']=_0x23fb13;_0x38d57c['\\x69\\x6e\\x66\\x6f']=_0x23fb13;_0x38d57c['\\x65\\x72\\x72\\x6f\\x72']=_0x23fb13;_0x38d57c['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x23fb13;_0x38d57c['\\x74\\x61\\x62\\x6c\\x65']=_0x23fb13;_0x38d57c['\\x74\\x72\\x61\\x63\\x65']=_0x23fb13;return _0x38d57c;}(_0x377297);}else{_0x11c0b8['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x6c\\x6f\\x67']=_0x377297;_0x11c0b8['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x77\\x61\\x72\\x6e']=_0x377297;_0x11c0b8['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x64\\x65\\x62\\x75\\x67']=_0x377297;_0x11c0b8['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x69\\x6e\\x66\\x6f']=_0x377297;_0x11c0b8['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x72\\x72\\x6f\\x72']=_0x377297;_0x11c0b8['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x377297;_0x11c0b8['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x61\\x62\\x6c\\x65']=_0x377297;_0x11c0b8['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x72\\x61\\x63\\x65']=_0x377297;}});_0x4d2835();eval(String(java['\\x62\\x61\\x73\\x65\\x36\\x34\\x44\\x65\\x63\\x6f\\x64\\x65'](source['\\x62\\x6f\\x6f\\x6b\\x53\\x6f\\x75\\x72\\x63\\x65\\x43\\x6f\\x6d\\x6d\\x65\\x6e\\x74'])));for(x in i)result=ti(result,i[x],z[x]);\n</js>",
      "bookList": "<js>\nvar _0x3c6619=function(){var _0x56ceed=!![];return function(_0x4b0a6b,_0x3e7725){var _0x276e5d=_0x56ceed?function(){if(_0x3e7725){var _0x229ee1=_0x3e7725['\\x61\\x70\\x70\\x6c\\x79'](_0x4b0a6b,arguments);_0x3e7725=null;return _0x229ee1;}}:function(){};_0x56ceed=![];return _0x276e5d;};}();var _0x21703f=_0x3c6619(this,function(){var _0xf5dc4=function(){var _0x244980=_0xf5dc4['\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72']('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x2f\\x22\\x20\\x2b\\x20\\x74\\x68\\x69\\x73\\x20\\x2b\\x20\\x22\\x2f')()['\\x63\\x6f\\x6d\\x70\\x69\\x6c\\x65']('\\x5e\\x28\\x5b\\x5e\\x20\\x5d\\x2b\\x28\\x20\\x2b\\x5b\\x5e\\x20\\x5d\\x2b\\x29\\x2b\\x29\\x2b\\x5b\\x5e\\x20\\x5d\\x7d');return!_0x244980['\\x74\\x65\\x73\\x74'](_0x21703f);};return _0xf5dc4();});_0x21703f();var _0x4a986d=function(){var _0x3f2860=!![];return function(_0x2b55c4,_0x32c4e4){var _0x11cc6f=_0x3f2860?function(){if(_0x32c4e4){var _0x238edb=_0x32c4e4['\\x61\\x70\\x70\\x6c\\x79'](_0x2b55c4,arguments);_0x32c4e4=null;return _0x238edb;}}:function(){};_0x3f2860=![];return _0x11cc6f;};}();var _0xd79ade=_0x4a986d(this,function(){var _0x30db15=function(){};var _0x27ad17=function(){var _0x12cb03;try{_0x12cb03=Function('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x28\\x66\\x75\\x6e\\x63\\x74\\x69\\x6f\\x6e\\x28\\x29\\x20'+'\\x7b\\x7d\\x2e\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72\\x28\\x22\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x74\\x68\\x69\\x73\\x22\\x29\\x28\\x20\\x29'+'\\x29\\x3b')();}catch(_0x14c066){_0x12cb03=window;}return _0x12cb03;};var _0x15c137=_0x27ad17();if(!_0x15c137['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']){_0x15c137['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']=function(_0x3d8b2f){var _0x47b3cb={};_0x47b3cb['\\x6c\\x6f\\x67']=_0x3d8b2f;_0x47b3cb['\\x77\\x61\\x72\\x6e']=_0x3d8b2f;_0x47b3cb['\\x64\\x65\\x62\\x75\\x67']=_0x3d8b2f;_0x47b3cb['\\x69\\x6e\\x66\\x6f']=_0x3d8b2f;_0x47b3cb['\\x65\\x72\\x72\\x6f\\x72']=_0x3d8b2f;_0x47b3cb['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x3d8b2f;_0x47b3cb['\\x74\\x61\\x62\\x6c\\x65']=_0x3d8b2f;_0x47b3cb['\\x74\\x72\\x61\\x63\\x65']=_0x3d8b2f;return _0x47b3cb;}(_0x30db15);}else{_0x15c137['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x6c\\x6f\\x67']=_0x30db15;_0x15c137['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x77\\x61\\x72\\x6e']=_0x30db15;_0x15c137['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x64\\x65\\x62\\x75\\x67']=_0x30db15;_0x15c137['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x69\\x6e\\x66\\x6f']=_0x30db15;_0x15c137['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x72\\x72\\x6f\\x72']=_0x30db15;_0x15c137['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x30db15;_0x15c137['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x61\\x62\\x6c\\x65']=_0x30db15;_0x15c137['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x72\\x61\\x63\\x65']=_0x30db15;}});_0xd79ade();eval(String(java['\\x62\\x61\\x73\\x65\\x36\\x34\\x44\\x65\\x63\\x6f\\x64\\x65'](source['\\x62\\x6f\\x6f\\x6b\\x53\\x6f\\x75\\x72\\x63\\x65\\x43\\x6f\\x6d\\x6d\\x65\\x6e\\x74'])));var _0x139d2=java['\\x67\\x65\\x74\\x45\\x6c\\x65\\x6d\\x65\\x6e\\x74\\x73']('\\x2e\\x62\\x6f\\x6f\\x6b\\x2d\\x6c\\x69\\x73\\x74\\x20\\x6c\\x69'),_0x4708c5=_0x24fc10=>String(_0x139d2[i]['\\x73\\x65\\x6c\\x65\\x63\\x74'](_0x24fc10)['\\x74\\x65\\x78\\x74']()),_0x58801b=[];for(i=0x0;i<_0x139d2['\\x6c\\x65\\x6e\\x67\\x74\\x68'];i++){var _0x4415a9={};_0x4415a9['\\x6e\\x61\\x6d\\x65']=_0x4708c5('\\x2e\\x62\\x6f\\x6f\\x6b\\x2d\\x6c\\x69\\x73\\x74\\x2d\\x69\\x6e\\x66\\x6f\\x2d\\x74\\x69\\x74\\x6c\\x65');_0x4415a9['\\x61\\x75\\x74\\x68\\x6f\\x72']=_0x4708c5('\\x2e\\x62\\x6f\\x6f\\x6b\\x2d\\x6c\\x69\\x73\\x74\\x2d\\x69\\x6e\\x66\\x6f\\x2d\\x62\\x6f\\x74\\x74\\x6f\\x6d\\x2d\\x69\\x74\\x65\\x6d')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/[,xX&]|[图文][:：]/g,'\\x2f')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/\\/\\/\\/|\\/\\//g,'\\x2f')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/^[\\/]/g,'');_0x4415a9['\\x6b\\x69\\x6e\\x64']=_0x4708c5('\\x2e\\x62\\x6f\\x6f\\x6b\\x2d\\x6c\\x69\\x73\\x74\\x2d\\x69\\x6e\\x66\\x6f\\x2d\\x62\\x6f\\x74\\x74\\x6f\\x6d\\x2d\\x72\\x69\\x67\\x68\\x74\\x2d\\x66\\x6f\\x6e\\x74')['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/[中已]/,'');_0x4415a9['\\x77\\x6f\\x72\\x64']='';_0x4415a9['\\x6c\\x61\\x74\\x65\\x73\\x74']='';_0x4415a9['\\x69\\x6e\\x74\\x72\\x6f']=_0x4708c5('\\x2e\\x62\\x6f\\x6f\\x6b\\x2d\\x6c\\x69\\x73\\x74\\x2d\\x69\\x6e\\x66\\x6f\\x2d\\x64\\x65\\x73\\x63');_0x4415a9['\\x63\\x6f\\x76\\x65\\x72']=String(_0x139d2[i]['\\x73\\x65\\x6c\\x65\\x63\\x74']('\\x2e\\x62\\x6f\\x6f\\x6b\\x2d\\x6c\\x69\\x73\\x74\\x2d\\x63\\x6f\\x76\\x65\\x72\\x2d\\x69\\x6d\\x67')['\\x61\\x74\\x74\\x72']('\\x64\\x61\\x74\\x61\\x2d\\x6f\\x72\\x69\\x67\\x69\\x6e\\x61\\x6c'))['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/http:/,'\\x68\\x74\\x74\\x70\\x73\\x3a');_0x4415a9['\\x75\\x72\\x6c']=_0x139d2[i]['\\x73\\x65\\x6c\\x65\\x63\\x74']('\\x61')['\\x61\\x74\\x74\\x72']('\\x68\\x72\\x65\\x66');_0x58801b['\\x70\\x75\\x73\\x68'](_0x4415a9);}JSON['\\x73\\x74\\x72\\x69\\x6e\\x67\\x69\\x66\\x79'](_0x58801b);\n</js>\n$[*]",
      "bookUrl": "$.url",
      "checkKeyWord": "",
      "coverUrl": "$.cover",
      "intro": "$.intro",
      "kind": "$.kind",
      "lastChapter": "$.latest",
      "name": "$.name\n<js>\nvar _0x184665=function(){var _0x294db6=!![];return function(_0x355258,_0x2b58a6){var _0x525526=_0x294db6?function(){if(_0x2b58a6){var _0x175b40=_0x2b58a6['\\x61\\x70\\x70\\x6c\\x79'](_0x355258,arguments);_0x2b58a6=null;return _0x175b40;}}:function(){};_0x294db6=![];return _0x525526;};}();var _0x11b5e4=_0x184665(this,function(){var _0x75f1bb=function(){var _0x3b638e=_0x75f1bb['\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72']('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x2f\\x22\\x20\\x2b\\x20\\x74\\x68\\x69\\x73\\x20\\x2b\\x20\\x22\\x2f')()['\\x63\\x6f\\x6d\\x70\\x69\\x6c\\x65']('\\x5e\\x28\\x5b\\x5e\\x20\\x5d\\x2b\\x28\\x20\\x2b\\x5b\\x5e\\x20\\x5d\\x2b\\x29\\x2b\\x29\\x2b\\x5b\\x5e\\x20\\x5d\\x7d');return!_0x3b638e['\\x74\\x65\\x73\\x74'](_0x11b5e4);};return _0x75f1bb();});_0x11b5e4();var _0x4bd1ed=function(){var _0x1d4390=!![];return function(_0xc8dcf4,_0x4e6a75){var _0x231ed2=_0x1d4390?function(){if(_0x4e6a75){var _0x44ae8a=_0x4e6a75['\\x61\\x70\\x70\\x6c\\x79'](_0xc8dcf4,arguments);_0x4e6a75=null;return _0x44ae8a;}}:function(){};_0x1d4390=![];return _0x231ed2;};}();var _0x2baa03=_0x4bd1ed(this,function(){var _0x446f3b=function(){};var _0x4e35c2=function(){var _0xb9fa78;try{_0xb9fa78=Function('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x28\\x66\\x75\\x6e\\x63\\x74\\x69\\x6f\\x6e\\x28\\x29\\x20'+'\\x7b\\x7d\\x2e\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72\\x28\\x22\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x74\\x68\\x69\\x73\\x22\\x29\\x28\\x20\\x29'+'\\x29\\x3b')();}catch(_0x4db3a1){_0xb9fa78=window;}return _0xb9fa78;};var _0xebeab4=_0x4e35c2();if(!_0xebeab4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']){_0xebeab4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']=function(_0x259a68){var _0x18fe6a={};_0x18fe6a['\\x6c\\x6f\\x67']=_0x259a68;_0x18fe6a['\\x77\\x61\\x72\\x6e']=_0x259a68;_0x18fe6a['\\x64\\x65\\x62\\x75\\x67']=_0x259a68;_0x18fe6a['\\x69\\x6e\\x66\\x6f']=_0x259a68;_0x18fe6a['\\x65\\x72\\x72\\x6f\\x72']=_0x259a68;_0x18fe6a['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x259a68;_0x18fe6a['\\x74\\x61\\x62\\x6c\\x65']=_0x259a68;_0x18fe6a['\\x74\\x72\\x61\\x63\\x65']=_0x259a68;return _0x18fe6a;}(_0x446f3b);}else{_0xebeab4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x6c\\x6f\\x67']=_0x446f3b;_0xebeab4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x77\\x61\\x72\\x6e']=_0x446f3b;_0xebeab4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x64\\x65\\x62\\x75\\x67']=_0x446f3b;_0xebeab4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x69\\x6e\\x66\\x6f']=_0x446f3b;_0xebeab4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x72\\x72\\x6f\\x72']=_0x446f3b;_0xebeab4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x446f3b;_0xebeab4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x61\\x62\\x6c\\x65']=_0x446f3b;_0xebeab4['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x72\\x61\\x63\\x65']=_0x446f3b;}});_0x2baa03();eval(String(java['\\x62\\x61\\x73\\x65\\x36\\x34\\x44\\x65\\x63\\x6f\\x64\\x65'](source['\\x62\\x6f\\x6f\\x6b\\x53\\x6f\\x75\\x72\\x63\\x65\\x43\\x6f\\x6d\\x6d\\x65\\x6e\\x74'])));for(x in i)result=ti(result,i[x],z[x])['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](/[（\\(].*/,'');\n</js>",
      "wordCount": "$.word"
    },
    "ruleToc": {
      "chapterList": "<js>\nvar _0x1e81de=function(){var _0x3f06a0=!![];return function(_0x33745b,_0x1d1b5f){var _0x543cd4=_0x3f06a0?function(){if(_0x1d1b5f){var _0x59c55a=_0x1d1b5f['\\x61\\x70\\x70\\x6c\\x79'](_0x33745b,arguments);_0x1d1b5f=null;return _0x59c55a;}}:function(){};_0x3f06a0=![];return _0x543cd4;};}();var _0x184c58=_0x1e81de(this,function(){var _0x58b067=function(){var _0x3c79b8=_0x58b067['\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72']('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x2f\\x22\\x20\\x2b\\x20\\x74\\x68\\x69\\x73\\x20\\x2b\\x20\\x22\\x2f')()['\\x63\\x6f\\x6d\\x70\\x69\\x6c\\x65']('\\x5e\\x28\\x5b\\x5e\\x20\\x5d\\x2b\\x28\\x20\\x2b\\x5b\\x5e\\x20\\x5d\\x2b\\x29\\x2b\\x29\\x2b\\x5b\\x5e\\x20\\x5d\\x7d');return!_0x3c79b8['\\x74\\x65\\x73\\x74'](_0x184c58);};return _0x58b067();});_0x184c58();var _0x5afdc6=function(){var _0xc0c3ae=!![];return function(_0x247377,_0x4161bb){var _0x309390=_0xc0c3ae?function(){if(_0x4161bb){var _0x225a30=_0x4161bb['\\x61\\x70\\x70\\x6c\\x79'](_0x247377,arguments);_0x4161bb=null;return _0x225a30;}}:function(){};_0xc0c3ae=![];return _0x309390;};}();var _0x57f266=_0x5afdc6(this,function(){var _0x3600e7=function(){};var _0x3a2c9a;try{var _0x1ba88a=Function('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x28\\x66\\x75\\x6e\\x63\\x74\\x69\\x6f\\x6e\\x28\\x29\\x20'+'\\x7b\\x7d\\x2e\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72\\x28\\x22\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x74\\x68\\x69\\x73\\x22\\x29\\x28\\x20\\x29'+'\\x29\\x3b');_0x3a2c9a=_0x1ba88a();}catch(_0x20e317){_0x3a2c9a=window;}if(!_0x3a2c9a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']){_0x3a2c9a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']=function(_0x843383){var _0x4aafd5={};_0x4aafd5['\\x6c\\x6f\\x67']=_0x843383;_0x4aafd5['\\x77\\x61\\x72\\x6e']=_0x843383;_0x4aafd5['\\x64\\x65\\x62\\x75\\x67']=_0x843383;_0x4aafd5['\\x69\\x6e\\x66\\x6f']=_0x843383;_0x4aafd5['\\x65\\x72\\x72\\x6f\\x72']=_0x843383;_0x4aafd5['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x843383;_0x4aafd5['\\x74\\x61\\x62\\x6c\\x65']=_0x843383;_0x4aafd5['\\x74\\x72\\x61\\x63\\x65']=_0x843383;return _0x4aafd5;}(_0x3600e7);}else{_0x3a2c9a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x6c\\x6f\\x67']=_0x3600e7;_0x3a2c9a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x77\\x61\\x72\\x6e']=_0x3600e7;_0x3a2c9a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x64\\x65\\x62\\x75\\x67']=_0x3600e7;_0x3a2c9a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x69\\x6e\\x66\\x6f']=_0x3600e7;_0x3a2c9a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x72\\x72\\x6f\\x72']=_0x3600e7;_0x3a2c9a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x3600e7;_0x3a2c9a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x61\\x62\\x6c\\x65']=_0x3600e7;_0x3a2c9a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x72\\x61\\x63\\x65']=_0x3600e7;}});_0x57f266();eval(String(java['\\x62\\x61\\x73\\x65\\x36\\x34\\x44\\x65\\x63\\x6f\\x64\\x65'](source['\\x62\\x6f\\x6f\\x6b\\x53\\x6f\\x75\\x72\\x63\\x65\\x43\\x6f\\x6d\\x6d\\x65\\x6e\\x74'])));Date['\\x70\\x72\\x6f\\x74\\x6f\\x74\\x79\\x70\\x65']['\\x46\\x6f\\x72\\x6d\\x61\\x74']=function(_0x4deac2){var _0x41eb1a={};_0x41eb1a['\\x4d\\x2b']=this['\\x67\\x65\\x74\\x4d\\x6f\\x6e\\x74\\x68']()+0x1;_0x41eb1a['\\x64\\x2b']=this['\\x67\\x65\\x74\\x44\\x61\\x74\\x65']();_0x41eb1a['\\x48\\x2b']=this['\\x67\\x65\\x74\\x48\\x6f\\x75\\x72\\x73']();_0x41eb1a['\\x6d\\x2b']=this['\\x67\\x65\\x74\\x4d\\x69\\x6e\\x75\\x74\\x65\\x73']();_0x41eb1a['\\x73\\x2b']=this['\\x67\\x65\\x74\\x53\\x65\\x63\\x6f\\x6e\\x64\\x73']();var _0x10c46e=_0x41eb1a;if(/(y+)/['\\x74\\x65\\x73\\x74'](_0x4deac2))_0x4deac2=_0x4deac2['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](RegExp['\\x24\\x31'],(this['\\x67\\x65\\x74\\x46\\x75\\x6c\\x6c\\x59\\x65\\x61\\x72']()+'')['\\x73\\x75\\x62\\x73\\x74\\x72'](0x4-RegExp['\\x24\\x31']['\\x6c\\x65\\x6e\\x67\\x74\\x68']));for(var _0x38e73c in _0x10c46e)if(new RegExp('\\x28'+_0x38e73c+'\\x29')['\\x74\\x65\\x73\\x74'](_0x4deac2))_0x4deac2=_0x4deac2['\\x72\\x65\\x70\\x6c\\x61\\x63\\x65'](RegExp['\\x24\\x31'],RegExp['\\x24\\x31']['\\x6c\\x65\\x6e\\x67\\x74\\x68']==0x1?_0x10c46e[_0x38e73c]:('\\x30\\x30'+_0x10c46e[_0x38e73c])['\\x73\\x75\\x62\\x73\\x74\\x72']((''+_0x10c46e[_0x38e73c])['\\x6c\\x65\\x6e\\x67\\x74\\x68']));return _0x4deac2;};date=new Date(new Date()['\\x67\\x65\\x74\\x54\\x69\\x6d\\x65']())['\\x46\\x6f\\x72\\x6d\\x61\\x74']('\\x79\\x79\\x79\\x79\\x2d\\x4d\\x4d\\x2d\\x64\\x64\\x20\\x48\\x48\\x3a\\x6d\\x6d\\x3a\\x73\\x73');var _0x483e6d=java['\\x67\\x65\\x74\\x45\\x6c\\x65\\x6d\\x65\\x6e\\x74\\x73']('\\x2e\\x64\\x65\\x74\\x61\\x69\\x6c\\x2d\\x6c\\x69\\x73\\x74\\x2d\\x31\\x20\\x6c\\x69\\x20\\x61'),_0x378a28=[];for(i in _0x483e6d){var _0xf96d47={};_0xf96d47['\\x74\\x69\\x74\\x6c\\x65']=i==_0x483e6d['\\x6c\\x65\\x6e\\x67\\x74\\x68']-0x1?_0x483e6d[i]['\\x74\\x65\\x78\\x74']()+'\\u3014'+date+'\\u3015':_0x483e6d[i]['\\x74\\x65\\x78\\x74']();_0xf96d47['\\x6c\\x69\\x6e\\x6b']=_0x483e6d[i]['\\x61\\x74\\x74\\x72']('\\x68\\x72\\x65\\x66');_0x378a28['\\x70\\x75\\x73\\x68'](_0xf96d47);};flag==0x1?(java['\\x70\\x75\\x74']('\\x45\\x6e\\x61\\x62\\x6c\\x65',0x1),JSON['\\x73\\x74\\x72\\x69\\x6e\\x67\\x69\\x66\\x79'](_0x378a28)):java['\\x74\\x6f\\x61\\x73\\x74']('\\x0a\\u2757\\u672a\\u542f\\u7528\\u4e66\\u6e90\\u2757');\n</js>\n$[*]",
      "chapterName": "$.title",
      "chapterUrl": "$.link",
      "preUpdateJs": "java.refreshTocUrl()"
    },
    "searchUrl": "<js>\nvar _0x26fa77=function(){var _0x2993ac=!![];return function(_0x473fe1,_0x4a3b51){var _0x9a91ab=_0x2993ac?function(){if(_0x4a3b51){var _0x37a272=_0x4a3b51['\\x61\\x70\\x70\\x6c\\x79'](_0x473fe1,arguments);_0x4a3b51=null;return _0x37a272;}}:function(){};_0x2993ac=![];return _0x9a91ab;};}();var _0x27e468=_0x26fa77(this,function(){var _0xbe6d05=function(){var _0x210903=_0xbe6d05['\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72']('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x2f\\x22\\x20\\x2b\\x20\\x74\\x68\\x69\\x73\\x20\\x2b\\x20\\x22\\x2f')()['\\x63\\x6f\\x6d\\x70\\x69\\x6c\\x65']('\\x5e\\x28\\x5b\\x5e\\x20\\x5d\\x2b\\x28\\x20\\x2b\\x5b\\x5e\\x20\\x5d\\x2b\\x29\\x2b\\x29\\x2b\\x5b\\x5e\\x20\\x5d\\x7d');return!_0x210903['\\x74\\x65\\x73\\x74'](_0x27e468);};return _0xbe6d05();});_0x27e468();var _0x53a4fd=function(){var _0xf52623=!![];return function(_0x7cf130,_0x2aa399){var _0x2ed8ed=_0xf52623?function(){if(_0x2aa399){var _0x57f4df=_0x2aa399['\\x61\\x70\\x70\\x6c\\x79'](_0x7cf130,arguments);_0x2aa399=null;return _0x57f4df;}}:function(){};_0xf52623=![];return _0x2ed8ed;};}();var _0x5d3e8a=_0x53a4fd(this,function(){var _0x55a9de=function(){};var _0x3dde20=function(){var _0xf35a1f;try{_0xf35a1f=Function('\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x28\\x66\\x75\\x6e\\x63\\x74\\x69\\x6f\\x6e\\x28\\x29\\x20'+'\\x7b\\x7d\\x2e\\x63\\x6f\\x6e\\x73\\x74\\x72\\x75\\x63\\x74\\x6f\\x72\\x28\\x22\\x72\\x65\\x74\\x75\\x72\\x6e\\x20\\x74\\x68\\x69\\x73\\x22\\x29\\x28\\x20\\x29'+'\\x29\\x3b')();}catch(_0x171bd3){_0xf35a1f=window;}return _0xf35a1f;};var _0xcf061a=_0x3dde20();if(!_0xcf061a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']){_0xcf061a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']=function(_0x537e17){var _0x9cb4e4={};_0x9cb4e4['\\x6c\\x6f\\x67']=_0x537e17;_0x9cb4e4['\\x77\\x61\\x72\\x6e']=_0x537e17;_0x9cb4e4['\\x64\\x65\\x62\\x75\\x67']=_0x537e17;_0x9cb4e4['\\x69\\x6e\\x66\\x6f']=_0x537e17;_0x9cb4e4['\\x65\\x72\\x72\\x6f\\x72']=_0x537e17;_0x9cb4e4['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x537e17;_0x9cb4e4['\\x74\\x61\\x62\\x6c\\x65']=_0x537e17;_0x9cb4e4['\\x74\\x72\\x61\\x63\\x65']=_0x537e17;return _0x9cb4e4;}(_0x55a9de);}else{_0xcf061a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x6c\\x6f\\x67']=_0x55a9de;_0xcf061a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x77\\x61\\x72\\x6e']=_0x55a9de;_0xcf061a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x64\\x65\\x62\\x75\\x67']=_0x55a9de;_0xcf061a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x69\\x6e\\x66\\x6f']=_0x55a9de;_0xcf061a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x72\\x72\\x6f\\x72']=_0x55a9de;_0xcf061a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x65\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e']=_0x55a9de;_0xcf061a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x61\\x62\\x6c\\x65']=_0x55a9de;_0xcf061a['\\x63\\x6f\\x6e\\x73\\x6f\\x6c\\x65']['\\x74\\x72\\x61\\x63\\x65']=_0x55a9de;}});_0x5d3e8a();eval(String(java['\\x62\\x61\\x73\\x65\\x36\\x34\\x44\\x65\\x63\\x6f\\x64\\x65'](source['\\x62\\x6f\\x6f\\x6b\\x53\\x6f\\x75\\x72\\x63\\x65\\x43\\x6f\\x6d\\x6d\\x65\\x6e\\x74'])));flag==0x1?host+'\\x2f\\x73\\x65\\x61\\x72\\x63\\x68\\x3f\\x6b\\x65\\x79\\x77\\x6f\\x72\\x64\\x3d'+key:java['\\x74\\x6f\\x61\\x73\\x74']('\\x0a\\u2757\\u672a\\u542f\\u7528\\u4e66\\u6e90\\u2757');\n</js>",
    "variableComment": "",
    "weight": 0
  },
  {
    "bookSourceComment": "//By情无羁25.02.12",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "手机小说#6",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.qiqixs.info",
    "customButton": false,
    "customOrder": 143,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\n    \"title\": \"♕ 分类 ♕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻小说\",\n    \"url\": \"/xuanhuan/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"修真小说\",\n    \"url\": \"/xiuzhen/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠小说\",\n    \"url\": \"/wuxia/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史小说\",\n    \"url\": \"/lishi/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市小说\",\n    \"url\": \"/dushi/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游小说\",\n    \"url\": \"/game/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻小说\",\n    \"url\": \"/kehuan/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"恐怖小说\",\n    \"url\": \"/kongbu/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"穿越小说\",\n    \"url\": \"/chuanyue/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情小说\",\n    \"url\": \"/yanqing/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"校园小说\",\n    \"url\": \"/xiaoyuan/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"全本\",\n    \"url\": \"/full-{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"♕ 排行 ♕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"日点击榜\",\n    \"url\": \"/top-dayvisit-{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"周点击榜\",\n    \"url\": \"/top-weekvisit-{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月点击榜\",\n    \"url\": \"/top-monthvisit-{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总点击榜\",\n    \"url\": \"/top-allvisit-{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总收藏榜\",\n    \"url\": \"/top-goodnum-{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"字数排行\",\n    \"url\": \"/top-size-{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"日推荐榜\",\n    \"url\": \"/top-dayvote-{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"周推荐榜\",\n    \"url\": \"/top-weekvote-{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月推荐榜\",\n    \"url\": \"/top-monthvote-{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总推荐榜\",\n    \"url\": \"/top-allvote-{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"最新入库\",\n    \"url\": \"/top-postdate-{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"最近更新\",\n    \"url\": \"/top-lastupdate-{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 14; zh-cn; M2102K1AC Build/UKQ1.231207.002) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/109.0.5414.118 Mobile Safari/537.36 MQQBrowser/10.1.0\"}",
    "lastUpdateTime": 1787069646719,
    "respondTime": 5500,
    "ruleBookInfo": {
      "intro": ".intro_info@html##最新章节.*",
      "tocUrl": ".book_more@a@href"
    },
    "ruleContent": {
      "content": "#nr1@html##.*本章未完.*",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {
      "author": "ownText##.*/",
      "bookList": ".line",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.*\\D((\\d+)\\d{3})\\D##http://www.qiqixs.info/book/image/$2/$1/$1s.jpg###",
      "kind": "ownText##\\[|\\].*",
      "name": "a@text"
    },
    "ruleSearch": {
      "author": "p.-2@text##作者：",
      "bookList": ".block",
      "bookUrl": "a.0@href",
      "checkKeyWord": "我的世界",
      "coverUrl": "a.0@img@src",
      "kind": "p.-3@text##分类：",
      "lastChapter": "p.-1@a@text",
      "name": "h2@text"
    },
    "ruleToc": {
      "chapterList": "dl@dd@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value"
    },
    "searchUrl": "/search.php,{\n  \"body\": \"searchkey={{key}}&submit=\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎉 笔趣小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.biqusa.com",
    "customButton": false,
    "customOrder": 144,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1769583948182,
    "respondTime": 1870,
    "ruleBookInfo": {
      "author": "id.info@a.0@text",
      "coverUrl": "tag.img@src",
      "intro": "id.intro@text",
      "name": "id.info@h1@text"
    },
    "ruleContent": {
      "content": "id.content@textNodes"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.s4@text",
      "bookList": "class.novelslist2@li!0",
      "bookUrl": "tag.a.0@href",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd!0:1:2:3:4:5:6:7:8:9:10:11",
      "chapterName": "tag.a.0@text",
      "chapterUrl": "tag.a.0@href"
    },
    "searchUrl": "http://www.biqusa.com/search.html?name={{key}},<\n  \"charset\": \"utf-8\"\n>",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "文墨小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.maxreader.la",
    "customButton": false,
    "customOrder": 145,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787069809576,
    "respondTime": 2569,
    "ruleBookInfo": {
      "author": "id.author@text##作者：",
      "coverUrl": "id.bookimg@src",
      "intro": ".bookintro@text",
      "name": "class.booktitle@h1@text",
      "tocUrl": "text.目录@href"
    },
    "ruleContent": {
      "content": "class.size16 color5 pt-read-text@html## |本章未完.*|百度搜索阅读最新最全.*|猫扑中文|[()]|.*最新章节第一时间免费.*",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.fl color7@class.mr30@tag.a.0@title",
      "bookList": "class.pt-rank-detail",
      "bookUrl": "class.pt-rank-detail@tag.a.0@href",
      "coverUrl": "tag.img.0@src",
      "kind": "text.分类@text",
      "lastChapter": "class.fl lh100@tag.a@title",
      "name": "class.pt-rank-detail@tag.a.0@title"
    },
    "ruleToc": {
      "chapterList": "id.readerlists@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "search/result.html?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "二三中文",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.23uswx.la/",
    "bookUrlPattern": "http://www.23uswx.la/\\d+_\\d+/",
    "customButton": false,
    "customOrder": 146,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/xuanhuanxiaoshuo/?page={{page}}\n修真小说::/xiuzhenxiaoshuo/?page={{page}}\n都市小说::/dushixiaoshuo/?page={{page}}\n穿越小说::/chuanyuexiaoshuo/?page={{page}}\n网游小说::/wangyouxiaoshuo/?page={{page}}\n科幻小说::/kehuanxiaoshuo/?page={{page}}\n完本小说::/wanben/?page={{page}}",
    "lastUpdateTime": 1787412935001,
    "respondTime": 2120,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作    者：",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.intro@text",
      "kind": "[property=og:novel:update_time]@content&&\n[property=og:novel:category]@content&&\n[property=og:novel:status]@content",
      "lastChapter": "id.info@tag.p.3@a@text",
      "name": "id.info@tag.h1.0@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleContent": {
      "content": "id.content@html##最新网址.*us|顶点小说.*us|最快更新.*最新章节！",
      "replaceRegex": "##\\wx.la"
    },
    "ruleExplore": {
      "author": ".s5@text",
      "bookList": "ul li",
      "bookUrl": ".s2@a@href",
      "lastChapter": "tag.a.1@text",
      "name": ".s2@text##《|》"
    },
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "tag.td.0@tag.a@href",
      "coverUrl": "tag.td.0@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.x23us.us/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "tag.td.1@tag.a@text",
      "name": "tag.td.0@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/modules/article/search.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "夜天连看",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.yetianlian.la#",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 147,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "",
    "lastUpdateTime": 1722293824170,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 2750,
    "ruleBookInfo": {
      "author": "class.info@tag.span.0@text##作者：",
      "coverUrl": "class.cover@tag.img@src",
      "init": "",
      "intro": "class.intro@text##简介：|作者.*",
      "kind": "class.info@tag.span.1@text##分类：",
      "lastChapter": "class.info@class.last.1@tag.a@text&&class.info@class.last.0@text##更新时间：|..\\:.*",
      "name": "class.info@tag.h2@text",
      "wordCount": "class.info@tag.span.3@text##字数："
    },
    "ruleContent": {
      "content": "id.content@html",
      "imageStyle": "0",
      "replaceRegex": "##http://www.yetianlian.com.*.html|请记住本书首发.*"
    },
    "ruleExplore": {
      "bookList": ""
    },
    "ruleSearch": {
      "author": "class.author@text##作者：",
      "bookList": "class.bookbox",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "tag.img@src",
      "intro": "tag.p@text",
      "kind": "class.cat@text##分类：",
      "lastChapter": "class.update@tag.a@text",
      "name": "tag.h4@text"
    },
    "ruleToc": {
      "chapterList": "class.listmain@tag.dd!0:1:2:3:4:5:6:7:8:9:10:11",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.yetianlian.la/s.php?ie=utf-8&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "天悦小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.xtyxsw.org#",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 148,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "{\n  'Cookie': \"{{cookie.getCookie(source.getKey())}}\"\n}",
    "lastUpdateTime": 1734981209541,
    "loginUrl": "",
    "respondTime": 2595,
    "ruleBookInfo": {
      "kind": ".bread-crumbs@li.1@a@text&&.box_info@.top@span!1@textNodes",
      "wordCount": ".box_info@.top@span.1@textNodes"
    },
    "ruleContent": {
      "content": "#content@p@text##喜欢.*请大家收藏.*|.*请点击下一页.*",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "span@a@text",
      "bookList": "#alistbox",
      "bookUrl": "h2@a@href",
      "checkKeyWord": "深空彼岸",
      "coverUrl": "img@src",
      "intro": ".intro@text",
      "lastChapter": "li@a@text",
      "name": "h2@a@text"
    },
    "ruleToc": {
      "chapterList": ".link_14@dd@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "{{cookie.removeCookie(source.getKey())}}/search.html,{\n  \"body\": \"searchkey={{key}}\",\n  \"method\": \"POST\"\n}",
    "variableComment": "",
    "weight": 0
  },
  {
    "bookSourceComment": "flag = 1\ni = \"錒皚藹礙愛噯嬡璦曖靄諳銨鵪骯襖奧媼驁鰲壩罷鈀擺敗唄頒辦絆鈑幫綁鎊謗剝飽寶報鮑鴇齙輩貝鋇狽備憊鵯賁錛繃筆畢斃幣閉蓽嗶潷鉍篳蹕邊編貶變辯辮芐緶籩標驃颮飆鏢鑣鰾鱉別癟瀕濱賓擯儐繽檳殯臏鑌髕鬢餅稟撥缽鉑駁餑鈸鵓補鈽財參蠶殘慚慘燦驂黲蒼艙倉滄廁側冊測惻層詫鍤儕釵攙摻蟬饞讒纏鏟產闡顫囅諂讖蕆懺嬋驏覘禪鐔場嘗長償腸廠暢倀萇悵閶鯧鈔車徹硨塵陳襯傖諶櫬磣齔撐稱懲誠騁棖檉鋮鐺癡遲馳恥齒熾飭鴟沖衝蟲寵銃疇躊籌綢儔幬讎櫥廚鋤雛礎儲觸處芻絀躕傳釧瘡闖創愴錘綞純鶉綽輟齪辭詞賜鶿聰蔥囪從叢蓯驄樅湊輳躥竄攛錯銼鹺達噠韃帶貸駘紿擔單鄲撣膽憚誕彈殫賧癉簞當擋黨蕩檔讜碭襠搗島禱導盜燾燈鄧鐙敵滌遞締糴詆諦綈覿鏑顛點墊電巔鈿癲釣調銚鯛諜疊鰈釘頂錠訂鋌丟銩東動棟凍崠鶇竇犢獨讀賭鍍瀆櫝牘篤黷鍛斷緞籪兌隊對懟鐓噸頓鈍燉躉奪墮鐸鵝額訛惡餓諤堊閼軛鋨鍔鶚顎顓鱷誒兒爾餌貳邇鉺鴯鮞發罰閥琺礬釩煩販飯訪紡鈁魴飛誹廢費緋鐨鯡紛墳奮憤糞僨豐楓鋒風瘋馮縫諷鳳灃膚輻撫輔賦復負訃婦縛鳧駙紱紼賻麩鮒鰒釓該鈣蓋賅桿趕稈贛尷搟紺岡剛鋼綱崗戇鎬睪誥縞鋯擱鴿閣鉻個紇鎘潁給亙賡綆鯁龔宮鞏貢鉤溝茍構購夠詬緱覯蠱顧詁轂鈷錮鴣鵠鶻剮掛鴰摑關觀館慣貫詿摜鸛鰥廣獷規歸龜閨軌詭貴劊匭劌媯檜鮭鱖輥滾袞緄鯀鍋國過堝咼幗槨蟈鉿駭韓漢闞絎頡號灝顥閡鶴賀訶闔蠣橫轟鴻紅黌訌葒閎鱟壺護滬戶滸鶘嘩華畫劃話驊樺鏵懷壞歡環還緩換喚瘓煥渙奐繯鍰鯇黃謊鰉揮輝毀賄穢會燴匯諱誨繪詼薈噦澮繢琿暉葷渾諢餛閽獲貨禍鈥鑊擊機積饑跡譏雞績緝極輯級擠幾薊劑濟計記際繼紀訐詰薺嘰嚌驥璣覬齏磯羈蠆躋霽鱭鯽夾莢頰賈鉀價駕郟浹鋏鎵蟯殲監堅箋間艱緘繭檢堿鹼揀撿簡儉減薦檻鑒踐賤見鍵艦劍餞漸濺澗諫縑戔戩瞼鶼筧鰹韉將漿蔣槳獎講醬絳韁膠澆驕嬌攪鉸矯僥腳餃繳絞轎較撟嶠鷦鮫階節潔結誡屆癤頜鮚緊錦僅謹進晉燼盡勁荊莖巹藎饉縉贐覲鯨驚經頸靜鏡徑痙競凈剄涇逕弳脛靚糾廄舊鬮鳩鷲駒舉據鋸懼劇詎屨櫸颶鉅鋦窶齟鵑絹錈鐫雋覺決絕譎玨鈞軍駿皸開凱剴塏愾愷鎧鍇龕閌鈧銬顆殼課騍緙軻鈳錁頷墾懇齦鏗摳庫褲嚳塊儈鄶噲膾寬獪髖礦曠況誆誑鄺壙纊貺虧巋窺饋潰匱蕢憒聵簣閫錕鯤擴闊蠐蠟臘萊來賴崍徠淶瀨賚睞錸癩籟藍欄攔籃闌蘭瀾讕攬覽懶纜爛濫嵐欖斕鑭襤瑯閬鋃撈勞澇嘮嶗銠鐒癆樂鰳鐳壘類淚誄縲籬貍離鯉禮麗厲勵礫歷瀝隸儷酈壢藶蒞蘺嚦邐驪縭櫪櫟轢礪鋰鸝癘糲躒靂鱺鱧倆聯蓮連鐮憐漣簾斂臉鏈戀煉練蘞奩瀲璉殮褳襝鰱糧涼兩輛諒魎療遼鐐繚釕鷯獵臨鄰鱗凜賃藺廩檁轔躪齡鈴靈嶺領綾欞蟶鯪餾劉瀏騮綹鎦鷚龍聾嚨籠壟攏隴蘢瀧瓏櫳朧礱樓婁摟簍僂蔞嘍嶁鏤瘺耬螻髏蘆盧顱廬爐擄鹵虜魯賂祿錄陸壚擼嚕閭瀘淥櫨櫓轤輅轆氌臚鸕鷺艫鱸巒攣孿灤亂臠孌欒鸞鑾掄輪倫侖淪綸論圇蘿羅邏鑼籮騾駱絡犖玀濼欏腡鏍驢呂鋁侶屢縷慮濾綠櫚褸鋝嘸媽瑪碼螞馬罵嗎嘜嬤榪買麥賣邁脈勱瞞饅蠻滿謾縵鏝顙鰻貓錨鉚貿麼沒鎂門悶們捫燜懣鍆錳夢瞇謎彌覓冪羋謐獼禰綿緬澠靦黽廟緲繆滅憫閩閔緡鳴銘謬謨驀饃歿鏌謀畝鉬吶鈉納難撓腦惱鬧鐃訥餒內擬膩鈮鯢攆輦鯰釀鳥蔦裊聶嚙鑷鎳隉蘗囁顢躡檸獰寧擰濘苧嚀聹鈕紐膿濃農儂噥駑釹諾儺瘧歐鷗毆嘔漚謳慪甌盤蹣龐拋皰賠轡噴鵬紕羆鈹騙諞駢飄縹頻貧嬪蘋憑評潑頗釙撲鋪樸譜鏷鐠棲臍齊騎豈啟氣棄訖蘄騏綺榿磧頎頏鰭牽釬鉛遷簽謙錢鉗潛淺譴塹僉蕁慳騫繾槧鈐槍嗆墻薔強搶嬙檣戧熗錆鏘鏹羥蹌鍬橋喬僑翹竅誚譙蕎繰磽蹺竊愜鍥篋欽親寢鋟輕氫傾頃請慶撳鯖瓊窮煢蛺巰賕蟣鰍趨區軀驅齲詘嶇闃覷鴝顴權勸詮綣輇銓卻鵲確闋闕愨讓饒擾繞蕘嬈橈熱韌認紉飪軔榮絨嶸蠑縟銣顰軟銳蜆閏潤灑薩颯鰓賽傘毿糝喪騷掃繅澀嗇銫穡殺剎紗鎩鯊篩曬釃刪閃陜贍繕訕姍騸釤鱔墑傷賞坰殤觴燒紹賒攝懾設厙灄畬紳審嬸腎滲詵諗瀋聲繩勝師獅濕詩時蝕實識駛勢適釋飾視試謚塒蒔弒軾貰鈰鰣壽獸綬樞輸書贖屬術樹豎數攄紓帥閂雙誰稅順說碩爍鑠絲飼廝駟緦鍶鷥聳慫頌訟誦擻藪餿颼鎪蘇訴肅謖穌雖隨綏歲誶孫損筍蓀猻縮瑣鎖嗩脧獺撻闥鉈鰨臺態鈦鮐攤貪癱灘壇譚談嘆曇鉭錟頇湯燙儻餳鐋鏜濤絳討韜鋱騰謄銻題體屜緹鵜闐條糶齠鰷貼鐵廳聽烴銅統慟頭鈄禿圖釷團摶頹蛻飩脫鴕馱駝橢籜鼉襪媧膃彎灣頑萬紈綰網輞韋違圍為濰維葦偉偽緯謂衛諉幃闈溈潿瑋韙煒鮪溫聞紋穩問閿甕撾蝸渦窩臥萵齷嗚鎢烏誣無蕪吳塢霧務誤鄔廡憮嫵騖鵡鶩錫犧襲習銑戲細餼鬩璽覡蝦轄峽俠狹廈嚇硤鮮纖賢銜閑顯險現獻縣餡羨憲線莧薟蘚峴獫嫻鷴癇蠔秈躚廂鑲鄉詳響項薌餉驤緗饗蕭囂銷曉嘯嘵瀟驍綃梟簫協挾攜脅諧寫瀉謝褻擷紲纈鋅釁興陘滎兇洶銹繡饈鵂虛噓須許敘緒續詡頊軒懸選癬絢諼鉉鏇學謔澩鱈勛詢尋馴訓訊遜塤潯鱘壓鴉鴨啞亞訝埡婭椏氬閹煙鹽嚴巖顏閻艷厭硯彥諺驗厴贗儼兗讞懨閆釅魘饜鼴鴦楊揚瘍陽癢養樣煬瑤搖堯遙窯謠藥軺鷂鰩爺頁業葉靨謁鄴曄燁醫銥頤遺儀蟻藝億憶義詣議誼譯異繹詒囈嶧飴懌驛縊軼貽釔鎰鐿瘞艤蔭陰銀飲隱銦癮櫻嬰鷹應纓瑩螢營熒蠅贏穎塋鶯縈鎣攖嚶瀅瀠瓔鸚癭頦罌喲擁傭癰踴詠鏞優憂郵鈾猶誘蕕銪魷輿魚漁娛與嶼語獄譽預馭傴俁諛諭蕷崳飫閾嫗紆覦歟鈺鵒鷸齬鴛淵轅園員圓緣遠櫞鳶黿約躍鑰粵悅閱鉞鄖勻隕運蘊醞暈韻鄆蕓惲慍紜韞殞氳雜災載攢暫贊瓚趲鏨贓臟駔鑿棗責擇則澤賾嘖幘簀賊譖贈綜繒軋鍘閘柵詐齋債氈盞斬輾嶄棧戰綻譫張漲帳賬脹趙詔釗蟄轍鍺這謫輒鷓貞針偵診鎮陣湞縝楨軫賑禎鴆掙睜猙爭幀癥鄭證諍崢鉦錚箏織職執紙摯擲幟質滯騭櫛梔軹輊贄鷙螄縶躓躑觶鐘終種腫眾鍾謅軸皺晝驟紂縐豬諸誅燭矚囑貯鑄駐佇櫧銖專磚轉賺囀饌顳樁莊裝妝壯狀錐贅墜綴騅縋諄準著濁諑鐲茲資漬諮緇輜貲眥錙齜鯔蹤總縱傯鄒諏騶鯫詛組鏃鉆纘躦鱒翺並蔔沈醜澱叠鬥範幹臯矽櫃後夥稭傑訣誇裏淩麽黴撚淒扡聖屍擡塗窪餵汙鍁鹹蠍彜湧遊籲禦願嶽雲竈紮劄築於誌註雕訁譾郤猛氹阪壟堖垵墊檾蕒葤蓧蒓菇槁摣咤唚哢噝噅撅噼謔襆嶴脊仿僥獁麅餘餷饊饢楞怵懍爿漵灩溷濫瀦淡寧糸絝緔瑉梘棬案橰櫫軲軤賫膁腖飈糊煆溜湣渺碸滾瞘鈈鉕鋣銱鋥鋶鐦鐧鍩鍀鍃錇鎄鎇鎿鐝鑥鑹鑔穭鶓鶥鸌癧屙瘂臒襇繈耮顬蟎麯鮁鮃鮎鯗鯝鯴鱝鯿鰠鰵鱅鞽韝齇葯慾裡姊佔徵唷勐砲髮澹噁姦乾鬆姪囉\";\nz = \"锕皑蔼碍爱嗳嫒瑷暧霭谙铵鹌肮袄奥媪骜鳌坝罢钯摆败呗颁办绊钣帮绑镑谤剥饱宝报鲍鸨龅辈贝钡狈备惫鹎贲锛绷笔毕毙币闭荜哔滗铋筚跸边编贬变辩辫苄缏笾标骠飑飙镖镖鳔鳖别瘪濒滨宾摈傧缤槟殡膑镔髌鬓饼禀拨钵铂驳饽钹鹁补钸财参蚕残惭惨灿骖黪苍舱仓沧厕侧册测恻层诧锸侪钗搀掺蝉馋谗缠铲产阐颤冁谄谶蒇忏婵骣觇禅镡场尝长偿肠厂畅伥苌怅阊鲳钞车彻砗尘陈衬伧谌榇碜龀撑称惩诚骋枨柽铖铛痴迟驰耻齿炽饬鸱冲冲虫宠铳畴踌筹绸俦帱雠橱厨锄雏础储触处刍绌蹰传钏疮闯创怆锤缍纯鹑绰辍龊辞词赐鹚聪葱囱从丛苁骢枞凑辏蹿窜撺错锉鹾达哒鞑带贷骀绐担单郸掸胆惮诞弹殚赕瘅箪当挡党荡档谠砀裆捣岛祷导盗焘灯邓镫敌涤递缔籴诋谛绨觌镝颠点垫电巅钿癫钓调铫鲷谍叠鲽钉顶锭订铤丢铥东动栋冻岽鸫窦犊独读赌镀渎椟牍笃黩锻断缎簖兑队对怼镦吨顿钝炖趸夺堕铎鹅额讹恶饿谔垩阏轭锇锷鹗颚颛鳄诶儿尔饵贰迩铒鸸鲕发罚阀珐矾钒烦贩饭访纺钫鲂飞诽废费绯镄鲱纷坟奋愤粪偾丰枫锋风疯冯缝讽凤沣肤辐抚辅赋复负讣妇缚凫驸绂绋赙麸鲋鳆钆该钙盖赅杆赶秆赣尴擀绀冈刚钢纲岗戆镐睾诰缟锆搁鸽阁铬个纥镉颍给亘赓绠鲠龚宫巩贡钩沟苟构购够诟缑觏蛊顾诂毂钴锢鸪鹄鹘剐挂鸹掴关观馆惯贯诖掼鹳鳏广犷规归龟闺轨诡贵刽匦刿妫桧鲑鳜辊滚衮绲鲧锅国过埚呙帼椁蝈铪骇韩汉阚绗颉号灏颢阂鹤贺诃阖蛎横轰鸿红黉讧荭闳鲎壶护沪户浒鹕哗华画划话骅桦铧怀坏欢环还缓换唤痪焕涣奂缳锾鲩黄谎鳇挥辉毁贿秽会烩汇讳诲绘诙荟哕浍缋珲晖荤浑诨馄阍获货祸钬镬击机积饥迹讥鸡绩缉极辑级挤几蓟剂济计记际继纪讦诘荠叽哜骥玑觊齑矶羁虿跻霁鲚鲫夹荚颊贾钾价驾郏浃铗镓蛲歼监坚笺间艰缄茧检碱硷拣捡简俭减荐槛鉴践贱见键舰剑饯渐溅涧谏缣戋戬睑鹣笕鲣鞯将浆蒋桨奖讲酱绛缰胶浇骄娇搅铰矫侥脚饺缴绞轿较挢峤鹪鲛阶节洁结诫届疖颌鲒紧锦仅谨进晋烬尽劲荆茎卺荩馑缙赆觐鲸惊经颈静镜径痉竞净刭泾迳弪胫靓纠厩旧阄鸠鹫驹举据锯惧剧讵屦榉飓钜锔窭龃鹃绢锩镌隽觉决绝谲珏钧军骏皲开凯剀垲忾恺铠锴龛闶钪铐颗壳课骒缂轲钶锞颔垦恳龈铿抠库裤喾块侩郐哙脍宽狯髋矿旷况诓诳邝圹纩贶亏岿窥馈溃匮蒉愦聩篑阃锟鲲扩阔蛴蜡腊莱来赖崃徕涞濑赉睐铼癞籁蓝栏拦篮阑兰澜谰揽览懒缆烂滥岚榄斓镧褴琅阆锒捞劳涝唠崂铑铹痨乐鳓镭垒类泪诔缧篱狸离鲤礼丽厉励砾历沥隶俪郦坜苈莅蓠呖逦骊缡枥栎轹砺锂鹂疠粝跞雳鲡鳢俩联莲连镰怜涟帘敛脸链恋炼练蔹奁潋琏殓裢裣鲢粮凉两辆谅魉疗辽镣缭钌鹩猎临邻鳞凛赁蔺廪檩辚躏龄铃灵岭领绫棂蛏鲮馏刘浏骝绺镏鹨龙聋咙笼垄拢陇茏泷珑栊胧砻楼娄搂篓偻蒌喽嵝镂瘘耧蝼髅芦卢颅庐炉掳卤虏鲁赂禄录陆垆撸噜闾泸渌栌橹轳辂辘氇胪鸬鹭舻鲈峦挛孪滦乱脔娈栾鸾銮抡轮伦仑沦纶论囵萝罗逻锣箩骡骆络荦猡泺椤脶镙驴吕铝侣屡缕虑滤绿榈褛锊呒妈玛码蚂马骂吗唛嬷杩买麦卖迈脉劢瞒馒蛮满谩缦镘颡鳗猫锚铆贸麽没镁门闷们扪焖懑钔锰梦眯谜弥觅幂芈谧猕祢绵缅渑腼黾庙缈缪灭悯闽闵缗鸣铭谬谟蓦馍殁镆谋亩钼呐钠纳难挠脑恼闹铙讷馁内拟腻铌鲵撵辇鲶酿鸟茑袅聂啮镊镍陧蘖嗫颟蹑柠狞宁拧泞苎咛聍钮纽脓浓农侬哝驽钕诺傩疟欧鸥殴呕沤讴怄瓯盘蹒庞抛疱赔辔喷鹏纰罴铍骗谝骈飘缥频贫嫔苹凭评泼颇钋扑铺朴谱镤镨栖脐齐骑岂启气弃讫蕲骐绮桤碛颀颃鳍牵钎铅迁签谦钱钳潜浅谴堑佥荨悭骞缱椠钤枪呛墙蔷强抢嫱樯戗炝锖锵镪羟跄锹桥乔侨翘窍诮谯荞缲硗跷窃惬锲箧钦亲寝锓轻氢倾顷请庆揿鲭琼穷茕蛱巯赇虮鳅趋区躯驱龋诎岖阒觑鸲颧权劝诠绻辁铨却鹊确阕阙悫让饶扰绕荛娆桡热韧认纫饪轫荣绒嵘蝾缛铷颦软锐蚬闰润洒萨飒鳃赛伞毵糁丧骚扫缫涩啬铯穑杀刹纱铩鲨筛晒酾删闪陕赡缮讪姗骟钐鳝墒伤赏垧殇觞烧绍赊摄慑设厍滠畲绅审婶肾渗诜谂渖声绳胜师狮湿诗时蚀实识驶势适释饰视试谥埘莳弑轼贳铈鲥寿兽绶枢输书赎属术树竖数摅纾帅闩双谁税顺说硕烁铄丝饲厮驷缌锶鸶耸怂颂讼诵擞薮馊飕锼苏诉肃谡稣虽随绥岁谇孙损笋荪狲缩琐锁唢睃獭挞闼铊鳎台态钛鲐摊贪瘫滩坛谭谈叹昙钽锬顸汤烫傥饧铴镗涛绦讨韬铽腾誊锑题体屉缇鹈阗条粜龆鲦贴铁厅听烃铜统恸头钭秃图钍团抟颓蜕饨脱鸵驮驼椭箨鼍袜娲腽弯湾顽万纨绾网辋韦违围为潍维苇伟伪纬谓卫诿帏闱沩涠玮韪炜鲔温闻纹稳问阌瓮挝蜗涡窝卧莴龌呜钨乌诬无芜吴坞雾务误邬庑怃妩骛鹉鹜锡牺袭习铣戏细饩阋玺觋虾辖峡侠狭厦吓硖鲜纤贤衔闲显险现献县馅羡宪线苋莶藓岘猃娴鹇痫蚝籼跹厢镶乡详响项芗饷骧缃飨萧嚣销晓啸哓潇骁绡枭箫协挟携胁谐写泻谢亵撷绁缬锌衅兴陉荥凶汹锈绣馐鸺虚嘘须许叙绪续诩顼轩悬选癣绚谖铉镟学谑泶鳕勋询寻驯训讯逊埙浔鲟压鸦鸭哑亚讶垭娅桠氩阉烟盐严岩颜阎艳厌砚彦谚验厣赝俨兖谳恹闫酽魇餍鼹鸯杨扬疡阳痒养样炀瑶摇尧遥窑谣药轺鹞鳐爷页业叶靥谒邺晔烨医铱颐遗仪蚁艺亿忆义诣议谊译异绎诒呓峄饴怿驿缢轶贻钇镒镱瘗舣荫阴银饮隐铟瘾樱婴鹰应缨莹萤营荧蝇赢颖茔莺萦蓥撄嘤滢潆璎鹦瘿颏罂哟拥佣痈踊咏镛优忧邮铀犹诱莸铕鱿舆鱼渔娱与屿语狱誉预驭伛俣谀谕蓣嵛饫阈妪纡觎欤钰鹆鹬龉鸳渊辕园员圆缘远橼鸢鼋约跃钥粤悦阅钺郧匀陨运蕴酝晕韵郓芸恽愠纭韫殒氲杂灾载攒暂赞瓒趱錾赃脏驵凿枣责择则泽赜啧帻箦贼谮赠综缯轧铡闸栅诈斋债毡盏斩辗崭栈战绽谵张涨帐账胀赵诏钊蛰辙锗这谪辄鹧贞针侦诊镇阵浈缜桢轸赈祯鸩挣睁狰争帧症郑证诤峥钲铮筝织职执纸挚掷帜质滞骘栉栀轵轾贽鸷蛳絷踬踯觯钟终种肿众锺诌轴皱昼骤纣绉猪诸诛烛瞩嘱贮铸驻伫槠铢专砖转赚啭馔颞桩庄装妆壮状锥赘坠缀骓缒谆准着浊诼镯兹资渍谘缁辎赀眦锱龇鲻踪总纵偬邹诹驺鲰诅组镞钻缵躜鳟翱并卜沉丑淀迭斗范干皋硅柜后伙秸杰诀夸里凌么霉捻凄扦圣尸抬涂洼喂污锨咸蝎彝涌游吁御愿岳云灶扎札筑于志注凋讠谫郄勐凼坂垅垴埯埝苘荬荮莜莼菰藁揸吒吣咔咝咴噘劈嚯幞岙嵴彷徼犸狍馀馇馓馕愣憷懔丬溆滟混漤潴澹甯纟绔绱珉枧桊桉槔橥轱轷赍肷胨飚煳煅熘愍淼砜磙眍钚钷铘铞锃锍锎锏锘锝锪锫锿镅镎镢镥镩镲稆鹋鹛鹱疬疴痖癯裥襁耢颥螨麴鲅鲆鲇鲞鲴鲺鲼鳊鳋鳘鳙鞒鞴齄药欲里姐占征哟猛炮发淡恶奸干松侄啰\";\nfunction ti(c, a, b) {\n  reg = new RegExp(a, \"g\");\n  return result.replace(reg, b);\n}",
    "bookSourceGroup": "🎨漫画,🎉 优选,📚小说",
    "bookSourceName": "久久漫画（禁）",
    "bookSourceType": 2,
    "bookSourceUrl": "https://www.jjmhw.cc",
    "customButton": false,
    "customOrder": 149,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\n    \"title\":\"连载\",\n    \"url\":\"/booklist?tag=全部&area=1&end=0&page={{page}}\",\n    \"style\":{\n        \"layout_flexGrow\":1\n    }\n},\n{\n    \"title\":\"完结\",\n    \"url\":\"/booklist?tag=全部&area=1&end=1&page={{page}}\",\n    \"style\":{\n        \"layout_flexGrow\":1\n    }\n}\n]\n",
    "header": "{\n  \"User-agent\":\"Dalvik/2.1.0 (Linux; U; Android 9; PCRT00 Build/PQ3B.190801.002)\"\n}",
    "lastUpdateTime": 1786135493774,
    "respondTime": 6719,
    "ruleBookInfo": {
      "author": "author",
      "coverUrl": "cover",
      "init": "<js>\neval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\\\b'+e(c)+'\\\\b','g'),k[c]);return p}('D(6(E.F));G J=H.I.K.L(9),$1=b(a){c 6(J.7(\\'[M=\"N:\\'+a+\\'\"]\\').f(\"O\"))},$2=b(a){c 6(J.7(a).P())},$3=b(a){c 6(J.7(a).f(\"Q\"))},$4=b(a){c 6(J.7(a).f(\"R-S\"))},h=T,s=$2(\".0-d-j-1\").5(/\\\\U|\\\\V/g,\"\"),k=$2(\".0-8-e-m:q-o(4) a\")+\",\"+$2(\".0-8-e-W a\"),l=$2(\".0-d-1 r:X-o a\"),t=$2(\".0-d-j-3\").5(/\\\\Y\\\\Z/g,\"\"),u=J.7(\".0-d-1 r\").10;1==11?v={12:$2(\".0-8-e-j\").5(/[\\\\13\\\\(].*/,\"\"),m:$2(\".0-8-e-m:q-o(3)\").5(/[,14&]|[\\\\15\\\\16][:\\\\w]/g,\"/\").5(/\\\\/\\\\/\\\\/|\\\\/\\\\//g,\"/\"),17:s+\",\"+k+\",\"+t,18:l+\"\\\\y\"+t+\"\\\\y[\"+u+\"]\",19:\"<A>\"+$2(\"p.0-1a\").5(/.*\\\\1b\\\\1c\\\\1d\\\\1e[:\\\\w].*/g,\"\").5(/(^|[\\\\1f\\\\1g\\\\1h!?]+[\"\\\\1i\\\\1j\\\\1k\\\\1l]?)/g,\"$1<A>\"),B:$4(\".0-8-B 1m\").5(/1n:/,\"1o:\"),h:h}:1p.1q(\"\\\\n\\\\C\\\\1r\\\\1s\\\\1t\\\\1u\\\\1v\\\\C\");9=1w.1x(v);1y(x 1z i)9=1A(9,i[x],z[x]);',62,99,'detail|||||replace|String|select|main|result||function|return|list|info|attr||url||title|||author||child||nth|li|||count|book|uff1a||u00b7||br|cover|u2757|eval|source|bookSourceComment|var|org|jsoup||Jsoup|parse|property|og|content|text|href|data|original|baseUrl|u4e2d|u5df2|class|last|u66f4|u65b0|length|flag|name|uff08|xX|u56fe|u6587|kind|latest|intro|desc|u5185|u5bb9|u4ecb|u7ecd|u3002|uff01|uff1f|u201d|u300d|uff09|u3011|img|http|https|java|toast|u672a|u542f|u7528|u4e66|u6e90|JSON|stringify|for|in|ti'.split('|'),0,{}))\n</js>",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "latest",
      "name": "name",
      "tocUrl": "url"
    },
    "ruleContent": {
      "content": "<js>\neval(function(p,a,c,k,e,r){e=function(c){return c.toString(a)};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\\\b'+e(c)+'\\\\b','g'),k[c]);return p}('1==0.3(\"4\")?\"<5>\"+6(0.7(\".8-9-1.a b\")).c(/d:/g,\"e:\"):0.f(\"\\\\h\\\\2\\\\i\\\\j\\\\k\\\\l\\\\m\\\\2\");',23,23,'java||u2757|get|Enable|br|String|getElements|view|main|readForm|img|replace|http|https|toast||n|u672a|u542f|u7528|u4e66|u6e90'.split('|'),0,{}))\n</js>",
      "imageStyle": "FULL"
    },
    "ruleExplore": {
      "bookList": "<js>\neval(function(p,a,c,k,e,r){e=function(c){return c.toString(a)};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\\\b'+e(c)+'\\\\b','g'),k[c]);return p}('3(4(5.6));1==7?0.8(\".9-a b c\"):0.d(\"\\\\e\\\\2\\\\f\\\\g\\\\h\\\\i\\\\j\\\\2\");',20,20,'java||u2757|eval|String|source|bookSourceComment|flag|getElements|manga|list|ul|li|toast|n|u672a|u542f|u7528|u4e66|u6e90'.split('|'),0,{}))\n</js>",
      "bookUrl": "a.0@href",
      "coverUrl": ".manga-list-2-cover img@data-original##http:##https:",
      "name": ".manga-list-2-title@text\n<js>\neval(String(source.bookSourceComment));\nfor (x in i) result = ti(result, i[x], z[x]).replace(/[（\\(].*/, \"\");\n</js>"
    },
    "ruleSearch": {
      "author": ".book-list-info-bottom-item@text\n<js>\nresult = result\n  .replace(/[,xX&]|[图文][:：]/g, \"/\")\n  .replace(/\\/\\/\\/|\\/\\//g, \"/\")\n  .replace(/^[\\/]/g, \"\")\neval(String(source.bookSourceComment));\nfor (x in i) result = ti(result, i[x], z[x]);\n</js>\n",
      "bookList": ".book-list li",
      "bookUrl": "a.0@href",
      "checkKeyWord": "社团学姐",
      "coverUrl": ".book-list-cover img@data-original",
      "intro": ".book-list-info-desc",
      "kind": ".book-list-info-bottom-right-font@text##中|已",
      "name": ".book-list-info-title@text\n<js>\neval(String(source.bookSourceComment));\nfor (x in i) result = ti(result, i[x], z[x]).replace(/[（\\(].*/, \"\");\n</js>"
    },
    "ruleToc": {
      "chapterList": "<js>\neval(function(p,a,c,k,e,r){e=function(c){return c.toString(a)};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\\\b'+e(c)+'\\\\b','g'),k[c]);return p}('4(5(6.7));1==8?0=2.9(\".b-0-1 c a\"):2.d(\"\\\\e\\\\3\\\\f\\\\g\\\\h\\\\i\\\\j\\\\3\");2.k(\"l\",1);0;',22,22,'list||java|u2757|eval|String|source|bookSourceComment|flag|getElements||detail|li|toast|n|u672a|u542f|u7528|u4e66|u6e90|put|Enable'.split('|'),0,{}))\n</js>",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "\n<js>\neval(function(p,a,c,k,e,r){e=function(c){return c.toString(a)};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\\\b'+e(c)+'\\\\b','g'),k[c]);return p}('2(3(4.5));1==6?\"/7?8={{9}}\":a.b(\"\\\\c\\\\0\\\\d\\\\e\\\\f\\\\g\\\\h\\\\0\");',18,18,'u2757||eval|String|source|bookSourceComment|flag|search|keyword|key|java|toast|n|u672a|u542f|u7528|u4e66|u6e90'.split('|'),0,{}))\n</js>",
    "weight": 0
  },
  {
    "bookSourceComment": "//by:cwjdb",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "书荒小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.shuhuangxs.com",
    "customButton": false,
    "customOrder": 152,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"༺ˇ»`类型分类´«ˇ༻\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"全部分类\",\"url\":\"/sort/lastupdate_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.62}},{\"title\":\"玄幻修真\",\"url\":\"/sort/lastupdate_1_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"重生穿越\",\"url\":\"/sort/lastupdate_2_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市小说\",\"url\":\"/sort/lastupdate_3_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"军史小说\",\"url\":\"/sort/lastupdate_4_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游小说\",\"url\":\"/sort/lastupdate_5_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻小说\",\"url\":\"/sort/lastupdate_6_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"灵异小说\",\"url\":\"/sort/lastupdate_7_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"言情小说\",\"url\":\"/sort/lastupdate_8_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他小说\",\"url\":\"/sort/lastupdate_9_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"------------\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"༺ˇ»`排行分类´«ˇ༻\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"日排行榜\",\"url\":\"/sort/dayvisit_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周排行榜\",\"url\":\"/sort/weekvisit_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月排行榜\",\"url\":\"/sort/monthvisit_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总排行榜\",\"url\":\"/sort/allvisit_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日推荐榜\",\"url\":\"/sort/dayvote_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周推荐榜\",\"url\":\"/sort/weekvote_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月推荐榜\",\"url\":\"/sort/monthvote_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总推荐榜\",\"url\":\"/sort/allvote_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总收藏榜\",\"url\":\"/sort/goodnum_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"字数\",\"url\":\"/sort/size_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最新入库\",\"url\":\"/sort/postdate_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最新更新\",\"url\":\"/sort/lastupdate_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"༺ˇ»`字数分类´«ˇ༻\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"不限字数\",\"url\":\"/sort/lastupdate_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"30万以下\",\"url\":\"/sort/lastupdate_0_1_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"30-50万\",\"url\":\"/sort/lastupdate_0_2_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"50-100万\",\"url\":\"/sort/lastupdate_0_3_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"100-200万\",\"url\":\"/sort/lastupdate_0_4_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"200万以上\",\"url\":\"/sort/lastupdate_0_5_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"༺ˇ»`状态分类´«ˇ༻\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"不限状态\",\"url\":\"/sort/lastupdate_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"正在连载\",\"url\":\"/sort/lastupdate_0_0_1_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"已经完结\",\"url\":\"/sort/lastupdate_0_0_2_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; U; Android 13; zh-Hans-CN; PFJM10 Build/TP1A.220905.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/100.0.4896.58 Quark/6.13.6.581 Mobile Safari/537.36\",\"Accept-Language\":\"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"}",
    "lastUpdateTime": 1787304330536,
    "respondTime": 10329,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content##(^|[。！？]+[”」）】]?)##$1<br><js>result</js>##三秒记住.*com",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content##正文卷.|正文.|VIP章节.|免费章节.|VIP卷.|默认卷.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加].*?[】）\\)]",
      "name": "[property$=book_name]@content"
    },
    "ruleContent": {
      "content": "<js>\nvar bes = result.match(/PHA\\+[A-Za-z0-9+\\/]+={0,2}/g);\n//java.log(String(bes))\nif (!bes) {\n    var ml = java.webView(null,baseUrl,null);\n    var txt = java.getString(\"#txt@html\");\n    java.longToast(\"正文解密失败，转为webView动态加载。\");\n} else {\nvar result = [];\nfor (var i = 0; i < bes.length; i++) {\n    // 遍历数组，使用阅读内置Base64解码方法\n    var bsej = java.base64Decode(bes[i]);\n    var txtt = String(bsej);\n    result.push(txtt);\n      }\nvar txt = result.join('\\n');\n}\ntxt;\n</js>",
      "nextContentUrl": "<js>\nvar u = result.match(/var hhekgsv='(\\/\\d+\\/\\d+\\/\\d+_\\d+\\.html)';/);\nu ? u[1] : \"\";\n</js>",
      "replaceRegex": "##本小章还未完.*精彩内容！|(喜欢|请大家收藏.*){{book.name}}|小主.*后面更精彩！|这章没有.*继续阅读！"
    },
    "ruleExplore": {
      "author": ".s4@text",
      "bookList": ".sort_list li",
      "bookUrl": "a@href",
      "coverUrl": "a@href##.*\\/(\\d+)\\.html##/img/$1.jpg",
      "kind": ".s1,.s5@text##\\[|\\]",
      "lastChapter": "a@title##最新章节[：:]",
      "name": "a@text"
    },
    "ruleSearch": {
      "author": ".s5@text",
      "bookList": ".sort_list li",
      "bookUrl": "a@href",
      "coverUrl": "a@href##.*\\/(\\d+)\\.html##/img/$1.jpg",
      "name": "a@text"
    },
    "ruleToc": {
      "chapterList": "//h3[(contains (.,'章节列表'))]/following-sibling::div[1]/ul/li/a",
      "chapterName": "text\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求含理更谢乐发推票盟补加字Kk\\/].*/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "chapterUrl": "href",
      "nextTocUrl": "text.章节目录@href||\noption[selected]+option@value"
    },
    "searchUrl": "{{cookie.removeCookie(source.getKey())}}/search.html,{\n  \"body\": \"s={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "⭐️星空小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.aixswx.la",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 154,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvar sort=[];\nvar push=(title,url,size)=>sort.push({\n  \t\"title\": title,\n  \t\"url\": url,\n  \t\"style\": {\n   \"layout_flexGrow\": 1,\n   \"layout_flexBasisPercent\": size\n   }\n });\n\nvar url=source.key;\nvar fl=url+\"/mulu/\";\nvar ph=url+\"/paihang/\";\nvar qb=url+\"/full-1/\";\nvar html=java.ajax(fl);\nvar src=java.ajax(ph);\nvar qbl=java.ajax(qb);\n\nif(html&&src&&qbl){\na=org.jsoup.Jsoup.parse(html).select(\".clearfix li a\");\nb=org.jsoup.Jsoup.parse(src).select(\".clearfix li a\");\nc=org.jsoup.Jsoup.parse(qbl).select(\".clearfix li a\");\n\npush(\"🌹分类🌹\",null,1)\n    for(i in a){\n        title=a[i].text()\n        url=a[i].attr(\"href\")\n        size=0.25;\n  url=String(url).replace(\"1/\",\"{{page}}/\").replace(\"1.html\",\"{{page}}.html\")\n        push(title,url,size)\n    };\n    \n push(\"🌹排行🌹\",null,1)\n    for(i in b){\n        title=b[i].text()\n        url=b[i].attr(\"href\")\n  url=String(url).replace(\"1/\",\"{{page}}/\").replace(\"1.html\",\"{{page}}.html\")\n        size=0.25;\n        push(title,url,size)\n    }\n//push(\"🌹全本🌹\",\"/full/{{page}}/\",1)\n      \n}else{\n  java.toast(\"发现列表获取失败！\")\n}\n\nJSON.stringify(sort)",
    "lastUpdateTime": 1703932395218,
    "loginUrl": "",
    "respondTime": 5315,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "class.intro.0@text##阅读.*请关注.*",
      "kind": "[property=\"og:novel:category\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "id.reading@href",
      "wordCount": "[property=\"og:novel:status\"]@content"
    },
    "ruleContent": {
      "content": "<js>\njava.getElements('@@id.txt@dd').toArray().sort((a,b)=>a.attr('data-id')-b.attr('data-id')).map(x=>x.html()).join('')</js>\n##阅读.*?最新章节.*",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##第.*页\\)\\s*|\\s*（本章未完，请点击下一页继续\\s*"
    },
    "ruleExplore": {
      "author": "a@ownText##\\:【.*",
      "bookList": "class.bd@tag.li",
      "bookUrl": "tag.a@href",
      "coverUrl": "tag.a@href##.*/(\\d+)(\\d{3}).html##http://wap.aixswx.com/files/article/image/$1/$1$2/$1$2s.jpg",
      "kind": "span@text##\\[|\\]",
      "name": "a@ownText##.*【(.*)】##$1"
    },
    "ruleSearch": {
      "author": "a@ownText##.*\\((.*)\\)##$1",
      "bookList": ".bd li",
      "bookUrl": "a@href",
      "coverUrl": "a@href##.*/(\\d+)(\\d{3}).html##http://wap.aixswx.com/files/article/image/$1/$1$2/$1$2s.jpg",
      "kind": "span@text##\\[|\\]",
      "lastChapter": "",
      "name": "a@ownText##\\(.*\\)",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "+@js:org.jsoup.Jsoup.parse(result.replace(/\\.html/g,\"\")).select('.list li a').toArray().sort((a,b)=>a.attr('href')-b.attr('href')).map(x=>({n:x.text(),u:x.attr('href')+\".html\"}))",
      "chapterName": "n",
      "chapterUrl": "u"
    },
    "searchUrl": "/s.php,{\n  \"method\": \"POST\",\n  \"body\": \"s={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "天下书盟",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.fbook.net  ##-[曦灵]",
    "customButton": false,
    "customOrder": 156,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "                                分类                                 \n红文榜::http://m.fbook.net/top/haokan    \n畅销榜::http://m.fbook.net/top/changxiao    点击榜::http://m.fbook.net/top/dianji    \n连载榜::http://m.fbook.net/top/lianzai\n完结榜::http://m.fbook.net/top/wanben\n收藏榜::http://m.fbook.net/top/shoucang\n字数榜::http://m.fbook.net/top/zishu\n玄幻榜::http://m.fbook.net/top/xuanhuan\n奇幻榜::http://m.fbook.net/top/qihuan\n武侠榜::http://m.fbook.net/top/wuxia\n仙侠榜::http://m.fbook.net/top/xianxia\n都市榜::http://m.fbook.net/top/dushi\n现实榜::http://m.fbook.net/top/xianshi\n军事榜::http://m.fbook.net/top/junshi\n历史榜::http://m.fbook.net/top/lishi\n游戏榜::http://m.fbook.net/top/youxi\n体育榜::http://m.fbook.net/top/tiyu\n科幻榜::http://m.fbook.net/top/kehuan\n刑侦榜::http://m.fbook.net/top/xingzhen\n探险榜::http://m.fbook.net/top/tanxian\n异能榜::http://m.fbook.net/top/yineng\n青春榜::http://m.fbook.net/top/qingchun\n古言榜::http://m.fbook.net/top/guyan\n现言榜::http://m.fbook.net/top/xianyan\n穿越榜::http://m.fbook.net/top/chuanyue\n纯爱榜::http://m.fbook.net/top/chunai\n同人榜::http://m.fbook.net/top/tongren\n悬疑榜::http://m.fbook.net/top/xuanyi\n灵异榜::http://m.fbook.net/top/lingyi\n轻小说榜::http://m.fbook.net/top/qingxiaoshuo\n仙侠榜::http://m.fbook.net/top/xianxianv\n幻想榜::http://m.fbook.net/top/huanxiang\n竞技榜::http://m.fbook.net/top/jingji",
    "lastUpdateTime": 1732996417242,
    "loginUrl": "http://m.fbook.net/Member/Login?q=0&returnUrl=http%3a%2f%2fm.fbook.net%2f",
    "respondTime": 30590,
    "ruleBookInfo": {
      "author": "class.book-info@div.2@text##[作者：]*",
      "coverUrl": "",
      "intro": "class.book_profiles@p.1@text",
      "kind": "class.book-info@div.-2@text",
      "name": "class.book-info@div.0@text##[书名：]*",
      "tocUrl": "@js:if(java.get(\"单\")==''){\nif(java.get(\"录\")==java.get(\"目\")){\nr=org.jsoup.Jsoup.parse(result);\n\nscript=r.select(\":matchesOwn(^$)>a[href^=javascript:]:matches(全文|章[節节]|目[錄录]):not(:matches(最新))\");re=false;\n\nif(!script.size()){\nba=(bas=baseUrl.replace(/\\/$|\\.[a-zA-Z]+$/,'')).match(/(http....[^/?]+)(?:([?/])(.*))?$/);b=ba[1];v=ba[3];\n\nr.select(\"a[href~=[^a-z]page[^a-z]]:not(:matches([反正顺順逆倒]序|[全正]文|更多|全部|所有|章[節节]|作品|目[錄录]|列表)),a:not([href~=^(?!//)[^#:]+$|\"+b.split(':')[1]+\"]),:matchesOwn(\\\\S)>a,a[href~=javascript:|#],a:matches(^\\\\S{1,4}$):not(:matches([反正顺順逆倒]序|[阅閱][讀读]|查看|展[开開]|进入|[全正]文|更多|完整|全部|所有|目[錄录]|列表|章[節节]):not(:contains(分类)))\").remove();\n\ny=r.select(\"a[href~=(?i)catalog|contents|chapters|mulu|(^|[^a-z])ml|showchapter|(^|chapter[/_-]?|\"+v.replace(/(.+)((\\/\\d\\d)\\d+)$/,\"$1$3$2\")+\"[/_-])(more|list|all)|sort[/=_-]asc]\");\n\nif(!y.size()){b3='';\n\nif(ba[2]==\"?\"){\nb3='[href~=^[^?]+$],'\n}else if(ba[3]){\nb3=ba[3].replace(/[*$|?+\\\\\\^\\[\\](){}]/g,'\\\\$0');\n\nb3=\"[href~=\"+b3+\"(\\\\.[^.]+|/\\\\d+(\\\\.[^.]+|/)?)?$],[href~=[/?]\"+b3.replace(/[&/_-][^/_-]+$/,'')+\".*$]:not([href~=[/?]\"+b3.replace(/[/_-]/g,'[/_-]')+\"]),\"}\n\ny=r.select(\"a:not(\"+b3+\"[href~=(?i)(^|[^/])[?/].*((book|[^a-z])(info|case)[^a-z]|(cid|buy)[^a-z]|desc|coins|nutrition|review|ticket|update|(app|author|xiazai|down)(?!=))|/chapter|/index/|/d/],:matches((?i)^$|[0-9零〇一二三四五六七八九十百千万、，：；？！。…‘’“”（）()]|[票榜:：.]|推荐|排行|等级|说明|收藏|书评|简介|分[类卷]|简介|作者|手机|软件|应用|安装|客户|移动|pc|电脑|安卓|苹果|下载|最新|ap[kp]|ipa|plx|deb|exe|zip|rar|txt|epub))\")}\n\nif(y.size()){\nys=y.select(\"a[href~=(?i)catalog|contents|list|chapter|mulu|(^|[^a-z])ml|more|read|all]:matches([反正顺順逆倒]序|全文|章[節节]|目[錄录]):not(:matches(阅读)),a[href~=(?i)catalog|contents|chapter|(^|[^a-z])ml|mulu|read]:matches(更多|列表),a[href~=(?i)catalog|contents|list|chapter|mulu|(^|[^a-z])ml|more|all]:matches(^$),a:matches(^[^\\\\u4e00-\\\\u9fa50-9]*([反正顺順逆倒]序|全文(免[費费])?[阅閱][讀读]|(点击|查看|展[开開]|进入|返?回到?)*([全正]文|(更多|完整|全部|所有)?(章[節节]|(作品)?目[錄录])+)+(列表)?(\\\\s*(查看|展开)?更多)?)[^\\\\u4e00-\\\\u9fa50-9]*$)\");zt=false;\n\nif(!ys.size()){\nba=bas.match(/(\\?(?:[^=]+=)+)(.+)$/)||bas.match(/(?:[^/_-][/_-]([^/._-]+))?[/_-]([^/._-]+)(?:\\/index[^/]*)?$/);\n\nif(xi=(id=ba[2]).match(/\\?[^=]+=([^&]+)/)||id.match(/^[^\\d%]*(\\d{2,}|[1-9])$/))id=xi[1];\nif(ba[1])if(xi=ba[1].match(/^[^\\d%]*(\\d{2,})$/))id=/^\\d$/.test(id)||!xi[1].indexOf(id)?xi[1]:\"(\"+id+\"|\"+xi[1]+\")\";\n\nys=y.select(\"[href~=(?i)^((.*//[^/]+/)?[^=.]*[^\\\\d=.])?\"+id+\"([?_-][a-z=_-]*0|\\\\.[^.]+|[/?]([^\\\\d]*|[^/\\\\d]*/?|(list|more|all)([=_-][a-z]*)?\\\\d+[^\\\\d]*)?)?(&.+)?$]:not(:contains(\"+(bs=String(book.name)[0])+\"))\");\n\nif(!ys.size()){zt=true;\nys=y.select(\"[href~=(?i)^((.*//[^/]+/)?[^=.]*[^\\\\d=.])?(\\\\d+/\"+id+\"[_-]\\\\d+[^\\\\d]*|\"+id+\"[_-][a-z_-]*1[^\\\\d]*)$]:not(:matches(阅读|\"+bs+\"))\")}}\n\nif(ys.size()){\nif((re=ys.select(\"[href~=(/|^)[^.]+$]\")).size())ys=re;\nre=String(ys.first().attr(\"href\"));\n\nfor(x=1;x<ys.size();x++)if((xs=String(ys.get(x).attr(\"href\"))).length>re.length)re=xs;\n\nif(/(?:[2-9]\\d*|1\\d+)[^\\d]*$/.test(re)){\nif(!zt&&(q=re.match(/^(.*[^/])?[&?/].*(?:catalog(ue)?|contents|(?:show)?chapters?|mulu|ml|more|all|list|page)(?:[=_-][a-z]*)?\\d+[^\\d]*$/i))&&v==(q[1]||'').replace(/^http....[^/?]+/,''))zt=true;\nif(zt)re=re.replace(/\\d+(?=[^\\d]*$)/,\"☯1\")}\n\n}}}\n\nre=String(!re?baseUrl:(java.put(\"基\",baseUrl),/^\\/[^/]/.test(re)?b+re:/^https?:/.test(re)?re:/^\\/\\//.test(re)?b.split('//')[0]+re:String(baseUrl).replace(/[^/]*$/,'')+re))}else re=baseUrl;\n\nr=re.replace(/(?:[☯?&/_-][^\\d?/&_-]*[01])+[^\\d]*$/,\"\");\njava.put(\"ba\",r);\nre=re.replace(\"☯\",\"\")}else re=baseUrl;\n\njava.get(\"跳\")==1||re==baseUrl&&/,/.test(book.bookUrl)?re+',{\"webView\":true}':re",
      "wordCount": "class.org@text"
    },
    "ruleContent": {
      "content": "@js:dt=lr='';c=1;动=java.get(\"动\");\nif(动!=''&&!~baseUrl.indexOf(\",\")){\nresult=String(java.ajax(baseUrl+动))\n}else if(java.get(\"静\")==动)c=dt=2;\n\nr=org.jsoup.Jsoup.parse(r1=result.replace(/&nbsp;/g,' '));\n查=i=java.get(\"序\");\n\nif(java.get(\"文\")==1){for(;c;c--){\nd=[\"img[data-src],img[src~=[^a-z]cid[^a-z]]\"\n,\"img:not([src~=(?i)^$|^javascript:|\\\\.gif|\\\\.png|[^a-z](cover|css|ic(on)?|load(ing|ed)?)[^a-z]])\"\n,\"img[src~=(?i)\\\\.png]:not([src~=(?i)[^a-z](cover|css|ic(on)?|load(ing|ed)?)[^a-z]])\"\n,'img[src~=(?i)\\\\.gif]:not([src~=(?i)[^a-z](cover|css|ic(on)?|load(ing|ed)?)[^a-z]])'];\n\nif(!(查!=\"\"&&(查!=-1&&((lr=r.select(d[查])).size(),true)))){\n$=it=>(lr=r.select(it)).size();\nif($(d[i=0])||$(d[i=1])||$(d[i=2])||false)break;\n\nif(c==2){dt=1;\nr=org.jsoup.Jsoup.parse(java.ajax(baseUrl+',{\"webView\":true}'))\n}else i=$(d[3])?3:-1}}\nif(i==0)lr=String(lr).replace(/(?:src=['\"][^'\"]+['\"] +)?data-/g,'');\nif(查==\"\")book.putVariable(\"序\",i);\n\n}else{\nsc=java.get(\"文\")==2?\n'[style~=(?i)text-align:center|(^| |;)color: *(rgb.(?!255[ ,]+255[ ,]+255)[\\\\d, ]*2\\\\d\\\\d|#(?=[a-f\\\\d]{3}([^a-f\\\\d]|$))(?!fff)[a-f\\\\d]*[d-f]|#(?=[a-f\\\\d]{4})(?!ffffff)([\\\\da-f]{2})*[d-f][\\\\da-f]|green|red|blue|yellow|purple|pink|brown)],script,noscript,style,header,footer,[class~=^foot|^head],[id~=^foot|^head],:has(>a):not(:has(p:matchesOwn(\\\\S),br)),a>*,:has(a):not(:matchesOwn([\\\\S\\\\s]{50,}),:has(:matchesOwn([\\\\S\\\\s]{50,}))),:matchesOwn([\\\\s\\\\S]{50})>:not(br,a,:matchesOwn([\\\\s\\\\S]{50})),:not(br,p,a,:matches([\\\\s\\\\S]{200}),:has(p,br,div:matchesOwn(，|。)+div:matchesOwn(，|。)),:has(p,br,div:matchesOwn(，|。)+div:matchesOwn(，|。)) :matchesOwn(\\\\S):not(:not(p,div,span:has(br))))'\n:\n'[style~=(?i)text-align:center|(^| |;)color: *(rgb.(?!255[ ,]+255[ ,]+255)[\\\\d, ]*2\\\\d\\\\d|#(?=[a-f\\\\d]{3}([^a-f\\\\d]|$))(?!fff)[a-f\\\\d]*[d-f]|#(?=[a-f\\\\d]{4})(?!ffffff)([\\\\da-f]{2})*[d-f][\\\\da-f]|green|red|blue|yellow|purple|pink|brown)],script,noscript,style,header,footer,[class~=^foot|^head],[id~=^foot|^head],:has(>a):not(:has(p:matchesOwn(\\\\S),br,img:not([src~=(?i)^$|^javascript:|[^a-z](css|ic(on)?|load(ing|ed)?)[^a-z]|/\\\\d+s\\\\.jpg]))),img[src~=(?i)^$|^javascript:|[^a-z](css|ic(on)?|load(ing|ed)?)[^a-z]|/\\\\d+s\\\\.jpg],a:not(:matches(^$)>img)>*,:has(a):not(img,:matchesOwn([\\\\S\\\\s]{50,}),:has(img,:matchesOwn([\\\\S\\\\s]{50,}))),:matchesOwn([\\\\s\\\\S]{50})>:not(img,br,a,:has(img),:matchesOwn([\\\\s\\\\S]{50})),:not(img,br,p,a,:matches([\\\\s\\\\S]{200}),:has(p,br,img,div:matchesOwn(，|。)+div:matchesOwn(，|。)),:has(img,p,br,div:matchesOwn(，|。)+div:matchesOwn(，|。)) :matchesOwn(\\\\S):not(:not(p,div,span:has(br))))';\n\nd=[\":matchesOwn(\\\\S):has(br):has(:matchesOwn(\\\\S):has(br))\"\n,\":matchesOwn(\\\\S):has(br)\"\n,\":has(>:matchesOwn(\\\\S):not(:has(*))+:matchesOwn(\\\\S):not(:has(*)))\"\n,\":has(>:has(>p:only-child:matchesOwn(\\\\S):not(:has(*)))+:has(>p:only-child:matchesOwn(\\\\S):not(:has(*))))\"\n,\"img\"\n,\":matchesOwn(\\\\S)\"];\n\ntry{for(查=i!=''?i:java.get(\"元\");c;c--){\n\nif(!(c>1&&(String(r.text()).length<400||r.select(':matchesOwn(内容未加载完成|关闭(阅读|小说)模式)').size()))){\nr.select(sc).remove();\n\nif(!(查!=\"\"&&(lr=r.select(i?d[i==6?5:i]:查)).size()))for(i=0;i<6&&(lr=r.select(d[i]),i==4&&c==1?!lr.size():String(lr.text()).length<200);i++);\nif(c<2||i<6)break;}\n\nr=org.jsoup.Jsoup.parse(r2=String(java.ajax(baseUrl+',{\"webView\":true}')).replace(/(<[a-z]+)&nbsp;/g,'$1 '));\ndt=r1.length==r2.length?2:1}\n\nfor(c=lr.first(),v=1;v<lr.size();v++)if(lr.get(v).parents().contains(c)){\nlr.remove(v);\nv--}else c=lr.get(v);\n\nlr=String((c=lr.size()==2&&i<4)?String(lr.first().text()).length>String(lr.get(1).text()).length?lr.first():lr.get(1):(c=lr.size()==1)?lr.first():lr);\n\nif(查==\"\"){\nif(c&&(查=lr.match(/<([a-z]+) ([^>]+)>/))&&(查[2]=查[2].match(/(?:id|class|style)=(?:\"[^\"]+\"|'[^']+')|[^= ]+(?==\"[^\"]+\"|'[^']+')/g))){\nbook.putVariable(\"元\",查[1]+'['+查[2].join('][')+']')\n}else book.putVariable(\"序\",i)}\n\nlr=lr.replace(/<([a-z]+)[^>]*\"-\\d+\"[^>]*>[^<]+<\\/\\1>|[^<>]*<a[^<]+<\\/a>[^<]*|&lt[; ]?\\/?[a-z]+(?= |\\/?&gt)(?:[ a-z=-]+|\"[^\"]+\"|'[^']+')*\\/?&gt[; ]?|[☯📑⚙️🌕︴]/g,\"\").replace(/\\s+(?:\\s|(?:(?:(?:n?b)?s)?p)?;)/g,\"　　\");\n\nif(java.get(\"原\")!=1)lr=(!lr.indexOf(\"　　\")?lr.replace(/>(?!　　|\\s*(?:(?:(?:n?b)?s)?p)?;)\\s*(?=[^\\s<>])/g,\">︴\"):lr)\n.replace(/((?:[〖【『「（《〈〔［\\[(][^〖【『「（《〈〔［\\[()］〕〉》）」』】〗\\]]*[)］〕〉》）」』】〗\\]]\\s*)*(?:第?\\s*[一二三四五六七八九十百千万〇零0-9]+\\s*[章节回話话：:.．,，、]*\\s*)?{{\nn=(t=title.match(/\\S+$/)[0].replace(/[*$|?+\\\\\\^\\[\\](){}/]/g,\".?\")).replace(/^(正文[^\\u4e00-\\u9fa5A-Za-z]*|第?[一二三四五六七八九十百千万〇零0-9]+[章节回話话\\s：:.．,，、]*)+/,\"\"),n!=t&&/\\S/.test(n)?\"(?:第?\\\\s*[一二三四五六七八九十百千万〇零0-9]+\\\\s*[章节回話话：:.．,，、]*\\\\s*\"+n+\"|\"+t+\")\":t\n}}(?:\\s*[〖【『「（《〈〔［\\[(][^〖【『「（《〈〔［\\[()］〕〉》）」』】〗\\]]*[)］〕〉》）」』】〗\\]])*)/g,\"⚙️$1⚙️\")+\"📑\"\n\n}catch(e){}}\nif(dt)book.putVariable(dt==1?\"动\":\"静\",',{\"webView\":true}');lr",
      "nextContentUrl": "text.下一章@href",
      "replaceRegex": "@js:if(java.get(\"原\")==1){result}else{\nresult=result.replace(/⚙️([^\\u4e00-\\u9fa5⚙️]+|[零〇一二三四五六七八九十百千万\\s]+|(?!第[零〇一二三四五六七八九十])[\\u4e00-\\u9fa5]+)⚙️/g,'$1').split('📑');\nl=result.length-1;\nwhile(l)if(r=result[--l].match(/^(\\n+(?:[^\\n]{1,30}\\n+){1,3})([\\S\\s]+)$/))result[l]=r[1]+r[2].replace(/⚙️/g,'');\nresult.join('📑')\n.replace(/—/g,\"─\")\n.replace(/[·۰•・]/g,\"・\")\n.replace(/\\s*(?:︴[^\\n　]+\\s+)*📑\\s*|^\\s*(︴[^\\n　]+\\s+)*|\\s*(?:　　|\\n)(?:[\\s&#a-zA-Z0-9]*;)?[\\s　?]*/g,\"☯\")\n.replace(/(?:︴[^☯]*☯)+(?=︴)|☯(?:温馨|[^a-zA-Z0-9\\u4e00-\\u9fa5☯]+)提示.?[:：][^☯]+|☯[^☯]+字体不会安装.?请百度[^☯]+|☯.{0,2}正版订阅在阅文旗下的起点和QQ书城，可以第一时间看到最新章节.{0,2}(?=☯)|︴\\s*第?[〖【『「（《〈〔［｛\\[{(][^☯]+(?=☯)|☯第\\s*[（(][^（()）]+[)）][頁页](?=☯)|[^☯]*(?:关注|[微vVＶｖ][^\\u4e00-\\u9fa5A-Za-z0-9]*[信xXｘＸ]|公[^\\u4e00-\\u9fa5]*众[^\\u4e00-\\u9fa5]*号){2,}[^☯]*|(?:&#?[a-z0-9]*;?)+(?=;|☯);*|read[sx][；;?？]+/g,\"\")\n.replace(/\\s+/g,\" \")\n.replace(/☯[ ☯]*/g,\"\\n\")\n.replace(/(\\n[〖【『「（《〈〔［｛\\[{(]?)([pPＰｐ][SsｓＳ]+(?=[ ：:;；，,、。.─\\d\\u4e00-\\u9fa5])[^\\n]+)/g,\"$1🌕$2\")\n.replace(/\\[\\[\\[[^\\[\\]]+http:file2.qidian.comchapters(.{5,6})(..)([^\\[\\]]{35})\\]\\]\\]/g,'<img src=\"http://file2.qidian.com/chapters/$1/$2/$3\">')\n.replace(/(<img )[^>]*(src=\"[^\"]+\")[^>]*(>)|((?: ?[＋+－-]?[0-9０-９]+(?:[．.／/][0-9０-９]+)?[％%:：]?[a-zA-Z]*)+ ?|[ _＿－-]?[a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９]+)/g,\"$1$2$3☯$4☯\")\n.replace(/☯[・。](?=☯)/g,\"☯.\")\n.replace(/,\\n/g,\"，\")\n.replace(/!(?=\\n)/g,\"！\")\n.replace(/\\?(?=\\n)/g,\"？\")\n.replace(/(<[^<]+)☯☯/g,\"⚙️$1⚙️\\n\")\n.replace(/(?:\\n[^āáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ\\u4e00-\\u9fa5\\n〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗、，：；？！。…─🌕︴\\n]+|([。？！…”』」】〗])[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗、，：；？！。…─☯︴\\n]+[\\u4e00-\\u9fa5]+)?[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗、，：；？！。…─⚙️☯︴\\n]+(?=\\n)|[^☯!\"'(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛｝］〕〉）＞’”》」』】〗]*☯([a-zA-ZＡ-Ｚａ-ｚ]*[āáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ][a-zA-ZＡ-Ｚａ-ｚ]*)☯[^☯!\"'(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛｝］〕〉）＞’”》」』】〗]*/g,\"$1$2\")\n.replace(/[^!\"'(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜<（〈〔［｛({\\[\\]})｝］〕〉）>＞’”》」』】〗︴🌕]*(?:☯[^.．!(),\\n\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗⚙️]+|([^☯!(),\\na-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘<＜（〈〔［｛({\\[\\]})｝］〕〉）＞>’”》」』】〗⚙️])(?!\\1)|☯(?=[^☯!(),\\na-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗][!(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗])|[〖【『「（《〈〔［｛\\[{(][^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[)｝］〕〉》）」』】〗\\]}]){4,}|[^；;％%～~?？!！\"'”’。…─\\na-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[〖【『「（《〈〔［｛\\[{(][^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[)｝］〕〉》）」』】〗\\]}](?:[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+(?=[)｝］〕〉》）」』】〗\\]}]))?/g,\"📑\")\n.replace(/([；;％%～~?？!！\"'”’。…─])📑(?=[)｝］〕〉》）」』】〗\\]}])/g,'$1')\n.replace(/(?:([\\n。？！])[^\\n。？！]{1,10})?[〖【『「（《〈〔［｛\\[{(][^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*(?:☯[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]☯|📑|🌕)[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[｝］〕〉》）」』】〗\\]})](?:[^。]{0,5}(?:[〖【『「（《〈〔［｛\\[{(][^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*(?:☯[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]☯|📑)[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[｝］〕〉》）」』】〗\\]})]|[^📑!,()\\s\\u4e00-\\u9fa5、，：；？！。…─‘’“”（）《》〖〗【】]+))*(?:(?:[^\\n]{1,10}|(?:[\\u4e00-\\u9fa5]{0,5}[，、])*[\\u4e00-\\u9fa5]+[！。]?)(?=\\n))?/g,\"$1\")\n.replace(/((?:[请請][记記]住)?[^⚙️🌕📑︴*\\n(),\\u4e00-\\u9fa5、，：；？！。…─「」‘’“”（）《》〖〗【】]*(?:(?:[^⚙️🌕📑︴*\\n(),\\u4e00-\\u9fa5、：，；？！。…─「」‘’“”（）《》〖〗【】]+[*(), \\u4e00-\\u9fa5、，:：；？！。…─「」‘’“”（）《》〖〗【】]{1,3})*[^*︴📑☯⚙️🌕\\s&;(),āáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜa-zA-ZＡ-Ｚａ-ｚ0-9０-９\\u4e00-\\u9fa5、,，:：;；?？!！。…～~─'\"‘’“”【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}％%・/／＝=_＿.．＋+－-]+(?!(?:[^>]+>)?⚙️)|☯[^☯\\n]+☯\\.☯[^☯\\n]+☯|本[文书](?:首发|来自)|(?:章节不完整.?|完整章节)?请.{2,6}(?:搜索|百度|引擎|关键[词字])+|(?:[阅閱][讀读]|访问|訪問|[網网地][站址]|链接|鏈接|[\\u4e00-\\u9fa50-9a-zA-Z]{0,4}(?:文学|中文|[網网]))+[:：]|[\\u4e00-\\u9fa50-9a-zA-Z]{0,6}(?:[網网地][站址]|链接|鏈接)为|.{2,4}文[学學][網网]|[请請].{2,4}收藏(?:.{0,2}推[荐薦])?|(?:天才)一秒[記记]住|，?請?訪問|(?:[更最][快新]|[快高]速|热门|(?:[阅閱][讀读])?完整|本|(?:官[網网]|本站).{0,2})(?:章[節节]|小说|更新|[網网地][址站][:：]?|快速)|更新(?:速度)?[最更]?快|(?:(?:无错)?小说|正版|免费|全[文本]|在线|访问|訪問|txt|TXT|继续|各种|推[荐薦]|收藏|分享|交流|你?喜欢的)+(?:全文|免费|在线|[阅閱]?[讀读]|下载|章[節节]|小说|好书)|章[節节](?:目录|列表)|小说[網网](?:更新)?|手打全文|[纯全](?:手打|文字)|手机看书|手机版|笔趣阁|(?:本站|[網网]站|站内|看)?无(?:任何)?(?:广告|弹窗|防盗)(?:章节)?|不弹窗|(?:(?:請|请|或者?)?(?:訪問|访问|[電电手][腦脑机機]|[網网][址站]|用[户戶]|浏览|瀏覽|閱讀|阅读|看小说|看漫画)){2,}|看小说|看漫画|(?:用[^\\n]{2,6})?(?:[追看]书|小说)(?:就用|软件|☯[^☯]+☯)，?|用[^\\n]{2,6}[追看]书|(?:..的)?(?:最佳选择|阅读体验)|(?:推[荐薦]|收藏|分享)(?:本站|我们)|小说..版|文章质量更好|谢谢各位(?:读者|书友)支持|水印广告测试|本章未完|请翻页|点击下一页|领.{0,2}红包|同步更新《[^《》]+》|关注[〖【『「（《〈〔［｛\\[{(][^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+[)｝］〕〉》）」』】〗\\]}])(?:[* (),\\u4e00-\\u9fa5、，：；？！。…─‘’“”（）《》〖〗【】]{0,3}[^⚙️📑*\\n(),\\u4e00-\\u9fa5、，：；？！。…─「」‘’“”（）《》〖〗【】]+|[….。!！]+(?=\\n))*|⚙️(?!<)[^⚙️\\n]+⚙️)/g,\"\\n⚙️$1⚙️\\n\")\n.replace(/⚙️(<[^<>]+>)⚙️\\n|[〖【『「（《〈〔［｛\\[{(](?:[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]{0,3}\\n⚙️(?!\\s*\\S\\s*⚙️).+⚙️\\n*)+[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]{0,3}[)｝］〕〉》）」』】〗\\]}]|(🌕)\\s*⚙️|⚙️\\n[^\\u4e00-\\u9fa5]{0,5}\\n⚙️|\\n⚙️\\s*(\\S)\\s*⚙️\\n(?![^⚙️]{1,3}⚙️)|(⚙️\\n)|([，、；])[\\s,，。、…:：;；?？!！`’]*[,，。、…:：;；?？!！`’](?!⚙️)|\\n[\\s,，。、…:：;；?？!！`’]*(?=[,，。、:：;；?？!！])|([：？！。…─])(?:[^⚙️☯a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n…─“‘’”〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+(?=\\n)|[^⚙️☯a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n…─“‘’”〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+)|☯/g,\"$1$2$3$4$5$6\")\n.replace(/([)）？！?!…」』”\\s。])(?:[^\\n（(🌕)）”』」’。]{0,5}(?:(?:\\n⚙️.+⚙️\\n|[^（()）\\n”』」。]{0,5}📑)[^（()）\\n。]{0,5}(?:\\n⚙️.+⚙️(?:\\n(?=\\n⚙️|[^（()）\\n]{1,5}\\n))?|[^（()）\\n。]{0,5}📑(?:[^📑]{1,5}(?=\\n⚙️))?)+(?:[^（()）\\n]{1,5}(?=\\n))?|(?:(?:(?:\\n⚙️.+⚙️\\n|[^（()）\\n。]{0,5}📑)[^（()）\\n]{0,5}){2,}|[^（(🌕)）”』」’\\n。]{0,5}(?:(?:請|关键[词字]|[電电手][腦機]|用戶|瀏覽|[阅閱]讀|推[薦荐]|收藏|分享|文章质量|谢谢(各位|支持|大家)|水印|翻页|点击|下[一\\s]*[页頁篇章回节節话話]|免费|热门|官网|正版|在线|同步|下载|文学|中文|章节|[本网][站址]|站内|小说|更新|无错|[本全][文本章]|首发|广个?告|弹窗|防盗|访问|訪問|txt|TXT|读者|书友|百度|[插说]一?[下句]话?，[\\u4e00-\\u9fa5]{0,5})[^（()）\\n]{0,5})*(?:📑|\\n⚙️[^\\n]+⚙️\\n)[^（()）\\n]{0,5}(?:(?:請|关键[词字]|[電电手][腦機]|用戶|瀏覽|[阅閱]讀|推[薦荐]|收藏|分享|文章质量|谢谢(各位|支持|大家)|水印|翻页|点击|下[一\\s]*[页頁篇章回节節话話]|免费|热门|官网|正版|在线|下载|同步|文学|中文|章节|[本网][站址]|站内|小说|更新|无错|[本全][文本章]|首发|广个?告|弹窗|防盗|访问|訪問|txt|TXT|读者|书友|百度)[^（()）\\n]{0,5})*|[^（(🌕)）\\n”』」’。]{0,3}\\n⚙️.+⚙️\\n[^（()）\\n。]{0,3})(?:[\\u4e00-\\u9fa5]+[！。]?|[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n]+)?(?=\\n)))+|\\n⚙️[^\\u4e00-\\u9fa5]+⚙️\\n|📑|\\s*︴\\s*|\\n?⚙️\\n?|\\n[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n]{2,}\\n[^🌕a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n“《‘【〖『「]*/g,\"$1\")\n.replace(/(?:(?:\\n🌕[^\\n]*)+(?:\\n+[^\\n]+){0,4}|\\n(?:[(（{｛][^(（<{｛｝}>）)]*(?:(?:[(（{｛][^(（<{｛｝}>）)]*[）)｝}])[^(（<{｛｝}>）)]*)*[）)｝}]?\\s*)+|[^\\n]*起点(?:原创|中文)[^\\n]*|[〖【『「（《〈〔［｛\\[{(]?未完待续[^\\n]*)[^\\u4e00-\\u9fa5<>]*$|^\\s*(?:(?:[^\\n]+\\n+){0,4}(?:🌕[^\\n]*\\n?)+|(?:[(（{｛][^(（<{｛｝}>）)]*(?:(?:[(（{｛][^(（<{｛｝}>）)]*[）)｝}])[^(（<{｛｝}>）)]*)*[）)｝}]?\\s*)+|，[^\\n]+)\\n|(?:^|\\n)[^a-z0-9A-Z\\u4e00-\\u9fa5]*(?=\\n)|🌕|\\n\\s*[a-zA-Z]+\\s*$/g,\"\")}"
    },
    "ruleExplore": {
      "author": "class.book-info@p.0@text",
      "bookList": "class.book",
      "bookUrl": "class.book-img@a@href",
      "coverUrl": "img@src",
      "kind": "class.newest@text##[,]*",
      "name": "class.book-info@a.0@text",
      "wordCount": "class.book-sort.3@text##[字数：]*"
    },
    "ruleSearch": {
      "author": "class.book-sort.0@text",
      "bookList": "class.book",
      "bookUrl": "class.book-img@a@href",
      "checkKeyWord": "摸金传人",
      "coverUrl": "img@src",
      "kind": "class.newest@text##[,]*",
      "name": "class.book-info@text",
      "wordCount": "class.book-sort.3@text##[字数：]*"
    },
    "ruleToc": {
      "chapterList": "@js:if(java.get(\"单\")==''){\nsrc=org.jsoup.Jsoup.parse(src);\n\nif((result=java.get(\"录\"))==\"\"){if(页=(result=src.select('a[href~=\\\\S]:matches(下[一\\\\s]*[页頁]|下[一二三四五六七八九十百千万〇零0-9]{2,}章):not([href~=^#|javascript:])')).size())result=result.first().attr('href')\n}else{网=String(result).split(\"🌕\");\nfor(i=3,页=+网[0],result=网[1]+2+网[3];i<=页;i++)result+='\\n'+网[1]+i+网[3];\nresult=String(result)}\n\nif(页)java.put(\"页\",/,/.test(book.tocUrl)?result.split('\\n').join(',{\"webView\":true}\\n')+',{\"webView\":true}':result);\n\n嗅=()=>String(src).match(/[\\[(]([\"'])<[a-z]+[ >][^\\[\\]()]+<\\/a>(?:[^\\[\\],()]*<\\/[a-z]+>)?\\1[\\])]/);\n转=it=>it.replace(/\\\\[Uu]([0-9a-zA-Z]{4})/g,(_,it)=>String.fromCharCode(parseInt('0x'+it)));\n兜=()=>src.select(':matchesOwn(^$|[0-9〇一二三四五六七八九十])>a:matches(\\\\S):not(:has(*>*>:not(span)),[href~=(?i)passport|\\\\.aspx$|\\\\.php$|^https://[^/]+(/|index\\\\.[a-z]+)?$|(^|[^/])[?/].*((book|[^a-z])(info|case|page|reg|Game|Play)[^a-z]|buy[^a-z]|SystemInfo|hot|sort|desc|asc|top|coins|nutrition|review|ticket|update|(app|author|xiazai|down)(?!=))|/list\\\\d*([/_-][^/_-]+/?)?$|\\\\d+_\\\\d+_\\\\d+|target=iframe|https%],:matches((?i)^((点击|软件|应用|安装|客户|移动|手机|电脑|安卓|苹果|下载|阅读|pc|ap[kp]|ipa|plx|deb|exe|zip|rar|txt|epub)[\\\\s.端版]*(?=$|点击|软件|应用|安装|客户|移动|手机|电脑|安卓|苹果|下载|阅读|pc|ap[kp]|ipa|plx|deb|exe|zip|rar|txt|epub)|[A-Za-z0-9\\\\u4e00-\\\\u9fa5]?返回.*(简介|书页|目录)[A-Za-z0-9\\\\u4e00-\\\\u9fa5]?|[<>-]+|\\\\d+-\\\\d+章|书页|目录|简介|[上下首尾]([一\\\\s]*[页頁]|[\\\\s\\\\d零〇一二三四五六七八九十百]*章)|[↑\\\\[]?[倒正反逆顺順]序[↓\\\\]]?)$))');\n\nif((zt=java.get(\"嗅\"))!=''){\nif(zt>0&&(嗅=嗅())){\nsrc=嗅[0];\nif(zt==2)src=转(src);\nsrc=org.jsoup.Jsoup.parse(src)}\nsrc.select(java.get(\"除\")).remove();\nif(java.get(\"兜\")==1)src=兜();\nsrc=src.select(java.get(\"查\"))\n\nif(!页){for(首=String(java.get(\"首\")).split('\\n'),ss=src.size(),i=0;i<ss;i++)if(首[i]!=src.get(i)){\nif(i>1)src.subList(1,i).clear();break;}}\n\n}else{\nbook.putVariable(\"除\",除=\"meta,link,a:has(img),\"+((zt=java.get(\"全\")!=1)?\"a[href$=\"+String(book.tocUrl).replace(/,\\{\"webView\":true\\}|^.{8}[^/]*/g,'')+\"],\":\"\")+(基=String(java.get(\"基\")),基==''?'':\"a[href$=\"+基.replace(/^.{8}[^/]*/,'')+\"],\")+\"a[href~=javascript:|#|[a-z]+[A-Z][a-z]+Id[=_-]|[^/][/?&]sub[A-Z]|action=list],a:matches(^$|最新章节$|^[^\\\\u4e00-\\\\u9fa5A-Z0-9]*(正文|.{0,2}书架|(免费|在线|开始|立即|全文|从头|点击|正文)+[试阅]读|[^\\\\s\\\\d外内楔前后卷篇章]*(更新调整|[两一二三四五六七八九十]+连更|作者[:：给要有]|双倍月票|感言|推书|推[a-z0-9A-Z_\\\\u4e00-\\\\u9fa5-]+书|[求个请投点下张](月?票|收藏|订阅|推荐)|(感谢|作者)[^\\\\s]*(读者|书友|大家|各位)|[书点]评[^\\\\s]*活动|[没有空]更新|没时间更新|请个?假|关于本书|关于更新|打赏名单|起点活动)[^\\\\s]*)[^\\\\u4e00-\\\\u9fa5A-Z0-9]*$)\");\n\nbook.putVariable(\"嗅\",(基=嗅())?(src=org.jsoup.Jsoup.parse((zt=/\\\\[Uu]([0-9a-zA-Z]{4})/.test(基=基[0]))?转(基):基),zt)?2:1:0);\nsrc.select(除).remove();\n\nif(zt=java.get(\"全\")!=1){\n找=ll=null;\n$=it=>(qc=ll,查=找,ll=src.select(找=it)).size()>14&&(查=it,src=re=ll);\n\nif(!(((ck=java.get(\"ck\"))!=\"\"&&$(\"[href~=\"+ck+\"(?!index(/|\\.[a-z]+)?$)[^.?/_-][^&/_-]*/?$|/[vV][iI][pP][_-]?([Rr]ead|[Cc]hapter|action=article)|([A-Za-z]\\\\d+|\\\\d[A-Za-z]+|[A-Z][a-z]+|[a-z][A-Z]+){3,}[^/?&]*$]\"))||$(\"[href~=^[a-z0-9]+(/|\\\\.[^./]+)?$]\"))){\nif(qc&&qc.size()>ll.size())找=查,ll=qc;\n\n$=it=>(re=src.select(it)).size()&&(查=it,src=re);\n\nif(!($(\"[data-cid]\")||$(\"[href~=(?i)(^|[/_-])(chapter|read)+([_-]?id)?/[^/_-]+[/_-][^/_-]+]\")||$(\"[href~=(?i)(^|[&?/_-](book|novel|comic|manhua|mh?)?)(chapter|read)+([_-]?id)?[?/=]]\")||$(\"[href~=(?i)[&?/_-]cid[&?/_=-]]\")||$(\"[data-href]\"))){\nsrc=兜();\nbook.putVariable(\"兜\",1);\n\nba=(ba=String(java.get(\"ba\"))).match(/(\\?(?:[^=]+=)+)(.+)$/)||ba.match(/(?:[^/_-][/_-]([^/._-]+))?[/_-]([^/._-]+)(?:\\/|\\/index[^/]*|\\.[^/.]+)?$/);\n\nif(xi=(id=ba[2]).match(/\\?[^=]+=([^&]+)/)||id.match(/^[^\\d%]*(\\d{2,}|[1-9])$/)||ba[1]&&ba[1].match(/^[^\\d%]*(\\d{2,})$/))id=xi[1];\n\n$(\"[href~=([^\\\\d]|^)\"+id+\"[/_&-][^\\\\d]*\\\\d+]:not([href~=\"+id+\"[^\\\\d]*$]),[href~=/[vV][iI][pP]|([A-Za-z]\\\\d+|\\\\d[a-zA-Z]+|[A-Z][a-z]+|[a-z][A-Z]+){3,}[^/?]*$|([^\\\\d]|^)\"+id+\"[/_&-][^\\\\d]*\"+id+\"(/|\\\\.[^.]+|&.+)?$]\")||$(\"[title]\")||$(\"[href~=/view/\\\\d+\\\\.[a-zA-Z]+$]\")}\nif(re.size()<ll.size())查=找,src=ll}}\n\nif(!(zt&&re.size()))src=src.select('a'),查='a';\nif(查)book.putVariable(\"查\",查);\nif(页)java.put(\"首\",src)}\n\nsrc}else if((list=java.get(\"单\"))!=1){\n\nif((网=String(list).split(\"🌕\")).length>1){\nfor(i=+网[2],x=+网[0],j=2,list=\"<a href='\"+baseUrl+\"'>正文1</a>\";i<=x;i++,j++)list+=\"<a href='\"+网[1]+i+网[3]+\"'>正文\"+j+\"</a>\"}\n\norg.jsoup.Jsoup.parse(list).select('a')\n\n}else org.jsoup.Jsoup.parse(\"<a href='\"+baseUrl+\"'>正文</a>\").select('a')",
      "chapterName": "@text",
      "chapterUrl": "href@js:chapter.putVariable(\"next\",'a[href~=(?:^|[?/])'+(r=result.trim().replace(/([*$|?+(){}\\[\\]\\^\\\\])/g,'\\\\$1')).match(/[^?/=.]+(?:=(?![01]$)[^=]+)*(?=\\/*$|\\.[^?/.]+$|=[01]$)/)[0]+'[=/_-]2(?:\\\\/|\\\\.[^?/.]+)? *$]@href||a[href~=(?:^|[?/])'+r.replace(/\\d+(?=[^\\d]*$)/,it=>+it+1)+' *$]@href||');result+java.get(\"动\")",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "http://m.fbook.net/Content/Search?k={{key}}&q=0{\n  \"charset\": \"UTF-8\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "By：Tom",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "五二书库",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.po.net/",
    "customButton": false,
    "customOrder": 157,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1732557339287,
    "respondTime": 12319,
    "ruleBookInfo": {
      "intro": ".article-content@p.1@text##.*文案：　"
    },
    "ruleContent": {
      "content": ".article-content@p@all##目录\\s+上一页.*|Tips.*|传送门：.*",
      "nextContentUrl": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "header@h2@h4@text##\\d+\\.\\s.*_(.*)【.*##$1",
      "bookList": "div@.excerpt",
      "bookUrl": "header@h2@a@href",
      "intro": ".note@text##.*文案：　|\\(所属栏目：.*",
      "kind": ".auth-span@.muted@a@text",
      "name": "header@h2@h4@text##\\d+\\.\\s|_.*",
      "wordCount": "header@h2@h4@text##\\d+\\.\\s.*_.*【(.*)】##$1"
    },
    "ruleToc": {
      "chapterList": ".clearfix@.mulu@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://www.po5.net/so/search.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "包子漫画5",
    "bookSourceType": 2,
    "bookSourceUrl": "https://cn.webmota.com",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 158,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "国漫::https://cn.webmota.com/classify?type=all&region=cn&state=all&filter=%2a\n最新上架::/list/new\n中国::https://cn.baozimh.com/classify?region=cn&page={{page}}\n日本::https://cn.baozimh.com/classify?region=jp&page={{page}}\n欧美::https://cn.baozimh.com/classify?region=en&page={{page}}\n连载中::https://cn.baozimh.com/classify?state=serial&page={{page}}\n已完结::https://cn.baozimh.com/classify?state=pub&page={{page}}\n都市::https://cn.baozimh.com/classify?type=dushi&page={{page}}\n冒险::https://cn.baozimh.com/classify?type=mouxian&page={{page}}\n热血::https://cn.baozimh.com/classify?type=rexie&page={{page}}\n爱情::https://cn.baozimh.com/classify?type=aiqing&page={{page}}\n恋爱::https://cn.baozimh.com/classify?type=lianai&page={{page}}\n耽美::https://cn.baozimh.com/classify?type=danmei&page={{page}}\n武侠::https://cn.baozimh.com/classify?type=wuxia&page={{page}}\n格斗::https://cn.baozimh.com/classify?type=gedou&page={{page}}\n科幻::https://cn.baozimh.com/classify?type=kehuan&page={{page}}\n魔幻::https://cn.baozimh.com/classify?type=mohuan&page={{page}}\n侦探::https://cn.baozimh.com/classify?type=zhentan&page={{page}}\n推理::https://cn.baozimh.com/classify?type=tuili&page={{page}}\n玄幻::https://cn.baozimh.com/classify?type=xuanhuan&page={{page}}\n日常::https://cn.baozimh.com/classify?type=richang&page={{page}}\n生活::https://cn.baozimh.com/classify?type=shenghuo&page={{page}}\n搞笑::https://cn.baozimh.com/classify?type=gaoxiao&page={{page}}\n校园::https://cn.baozimh.com/classify?type=xiaoyuan&page={{page}}\n奇幻::https://cn.baozimh.com/classify?type=qihuan&page={{page}}\nABCD::https://cn.baozimh.com/classify?filter=ABCD&page={{page}}\nEFGH::https://cn.baozimh.com/classify?filter=EFGH&page={{page}}\nIJKL::https://cn.baozimh.com/classify?filter=IJKL&page={{page}}\nMNOP::https://cn.baozimh.com/classify?filter=MNOP&page={{page}}\nQRST::https://cn.baozimh.com/classify?filter=QRST&page={{page}}\nUVW::https://cn.baozimh.com/classify?filter=UVW&page={{page}}\nXYZ::https://cn.baozimh.com/classify?filter=XYZ&page={{page}}\n0-9::https://cn.baozimh.com/classify?filter=0-9&page={{page}}",
    "lastUpdateTime": 1720291284136,
    "loginUrl": "",
    "respondTime": 13682,
    "ruleBookInfo": {
      "author": "h2.comics-detail__author@text",
      "coverUrl": "",
      "init": "",
      "intro": "p.comics-detail__desc@text",
      "kind": ".supporting-text div:first-child@text&&.tag-list span@text##状态：",
      "lastChapter": "class.comics-chapters__item.0@text||.supporting-text@span.-1@a@text",
      "name": "h1.comics-detail__title@text"
    },
    "ruleContent": {
      "content": "amp-img@img@src@js:headers={\"headers\":{\"Referer\":baseUrl}};\nresult.split(\"\\n\").map(x=>'<img src=\\\"'+x+','+JSON.stringify(headers)+'\\\">').join(\"\\n\")",
      "imageStyle": "FULL",
      "nextContentUrl": "@css:a:contains(下一页)@href",
      "webJs": ""
    },
    "ruleExplore": {
      "bookList": ""
    },
    "ruleSearch": {
      "author": ".tags@text",
      "bookList": ".comics-card",
      "bookUrl": "tag.a.0@href",
      "checkKeyWord": "",
      "coverUrl": "tag.amp-img.0@src",
      "name": ".comics-card__title@text"
    },
    "ruleToc": {
      "chapterList": "<js>\nif(result.match(/章节目录/)){\njava.getElements(\"id.chapter-items@class.comics-chapters@a&&id.chapters_other_list@class.comics-chapters@a\")\n}else\n{\njava.getElements(\"class.comics-chapters||.supporting-text@span.-1\")\n}\n</js>",
      "chapterName": "a@text||span@text||text",
      "chapterUrl": "tag.a@href||href"
    },
    "searchUrl": "/search?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "主站：https://www.aiqu999.com（似乎是一个会自动跳转可用链接的链接）\n备用网址：\n  - www.aiqu654.com\n  - www.aqxsw222.com\n  - www.727txt.com\n  - www.27txt.La\n  - www.527txt.com\n网站给出的防迷路网址：www.272txt.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🌈爱去小说",
    "bookSourceType": 3,
    "bookSourceUrl": "https://lt.aqxsw888.com/",
    "customButton": false,
    "customOrder": 161,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"最近更新–强推\",\"url\":\"/list-high-0-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"耽美小说\",\"url\":\"/list-high-2-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女生小说\",\"url\":\"/list-high-1-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"男生小说\",\"url\":\"#\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1773590429203,
    "respondTime": 21812,
    "ruleBookInfo": {
      "canReName": "1",
      "downloadUrls": "<js>\nif(baseUrl.indexOf('read')>-1){\n\turl = book.origin + '/' +java.getString(\"@@.readcontent@a@href\")\n\thtml = java.ajax(url)\n\tresult = html.match(/var downloadurl = \"([\\s\\S]+?)\";/)[1]\n}else{\n\turl = baseUrl.replace(/.*-(\\d+).*/, \"https://www.527txt.com/txt-xx/softdownfree.asp?softid=$1&ckm=mianfei\")\n\thtml = java.ajax(url)\n\tjava.setContent(html)\n\tresult = java.getString(\"@@text.第一下载地址(首选)@href\")\n}\n</js>",
      "intro": "#mainDownInfo@center.0@html||.readcontent@html"
    },
    "ruleExplore": {
      "author": ".rt@text##作者：(\\w+)##$1###",
      "bookList": ".mainlist_li||.mainSoftName||.read-list",
      "bookUrl": "a.1@href||a@href",
      "intro": ".pk-word-break-all@text",
      "kind": ".pk-text-success@text",
      "name": "a.1@text||a@text||.rt@text##.*《|》.*|完结|\\+番外|强推"
    },
    "ruleSearch": {
      "author": "a.search-card-author@a@text##作者：",
      "bookList": "#searchmain > .search-card",
      "bookUrl": ".search-card-link@a@href",
      "intro": ".search-card-content@text",
      "kind": "{{@@class.search-card-category@tag.a@text}}",
      "lastChapter": ".search-card-date@.oldDate@text",
      "name": ".search-card-title@a@text##《|》"
    },
    "ruleToc": {
      "chapterList": "html",
      "chapterName": "{{'🐑完结'}}"
    },
    "searchUrl": "https://www.aqxsw888.com/search.asp?word={{key}},{\"charset\":\"gb2312\"}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎃零点小说🎃#2",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.lingdxsw.com#🎃",
    "bookUrlPattern": "https://www.lingdxsw.com/book/\\d+.html",
    "customButton": false,
    "customOrder": 162,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/list/1/{{page}}.html\n仙侠小说::/list/2/{{page}}.html\n都市小说::/list/3/{{page}}.html\n历史小说::/list/4/{{page}}.html\n科幻小说::/list/5/{{page}}.html\n网游小说::/list/6/{{page}}.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 0,
    "loginUrl": "",
    "respondTime": 6474,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "init": "",
      "intro": "[property$=description]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content",
      "name": "[property$=book_name]@content",
      "tocUrl": "",
      "wordCount": "{{@@text.字数：@text##字数：}}"
    },
    "ruleContent": {
      "content": "#htmlContent@html",
      "imageStyle": "",
      "nextContentUrl": "#linkNext@href",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "small@text##\\/\\s",
      "bookList": ".list-group@li",
      "bookUrl": "a@href",
      "coverUrl": "@js:\"https://www.lingdxsw.com/modules/article/images/nocover.jpg\"",
      "intro": "",
      "kind": "tag.i@text&&span@text",
      "lastChapter": "",
      "name": "a@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "li.2@text",
      "bookList": ".mySearch div+ul",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": "",
      "kind": "li.-1:-2:-3@text\n##状态：|更新时间：|大小：",
      "lastChapter": "a.1@text",
      "name": "a.0@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "#list-chapterAll@dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "isVip": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "https://www.lingdxsw.com/modules/article/search.php?searchkey={{key}},{\n  \"charset\": \"GBK\"\n}",
    "weight": 1
  },
  {
    "bookSourceComment": "//同站：\nhttps://m.po18.xyz\nhttps://m.po18y.com",
    "bookSourceGroup": "🔞",
    "bookSourceName": "📖PO18脸红心跳",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.po18wx.com/#",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 164,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"分类\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"都市\",\"url\":\"/wapsort/1_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"浓情\",\"url\":\"/wapsort/2_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"言情\",\"url\":\"/wapsort/3_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"校园\",\"url\":\"/wapsort/4_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"武侠\",\"url\":\"/wapsort/5_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"玄幻\",\"url\":\"/wapsort/6_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"穿越\",\"url\":\"/wapsort/7_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"惊悚\",\"url\":\"/wapsort/8_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"悬疑\",\"url\":\"/wapsort/9_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"重生\",\"url\":\"/wapsort/10_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"历史\",\"url\":\"/wapsort/11_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"网游\",\"url\":\"/wapsort/12_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"科幻\",\"url\":\"/wapsort/13_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"耽美\",\"url\":\"/wapsort/14_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"高干\",\"url\":\"/wapsort/15_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"种田\",\"url\":\"/wapsort/16_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"百合\",\"url\":\"/wapsort/17_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"其他\",\"url\":\"/wapsort/18_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"——\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"——\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"标签\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"快穿\",\"url\":\"/tag/kc/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"美攻\",\"url\":\"/tag/mg/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"肉文\",\"url\":\"/tag/rw/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"年下\",\"url\":\"/tag/nx/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"年上\",\"url\":\"/tag/ns/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"网游\",\"url\":\"/tag/wy/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"人兽\",\"url\":\"/tag/rs/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"强强\",\"url\":\"/tag/qq/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"穿越\",\"url\":\"/tag/cy/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"双性\",\"url\":\"/tag/sx/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"强受\",\"url\":\"/tag/qs/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"疗愈\",\"url\":\"/tag/ly/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"重生\",\"url\":\"/tag/cs/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"百合\",\"url\":\"/tag/bh/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"虐文\",\"url\":\"/tag/nw/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"温馨\",\"url\":\"/tag/wx/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"ＮＰ\",\"url\":\"/tag/np/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"萌文\",\"url\":\"/tag/mw/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"耽美\",\"url\":\"/tag/dm/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"末世\",\"url\":\"/tag/ms/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"校园\",\"url\":\"/tag/xy/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"师生\",\"url\":\"/tag/ss/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"ＢＧ\",\"url\":\"/tag/bg/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"高干\",\"url\":\"/tag/gg/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"反攻\",\"url\":\"/tag/fg/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"诱受\",\"url\":\"/tag/ys/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"不限\",\"url\":\"/tag/bx/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"ＳＭ\",\"url\":\"/tag/sm/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"女性向\",\"url\":\"/tag/nv/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"男性向\",\"url\":\"/tag/nan/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"娱乐圈\",\"url\":\"/tag/ylq/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"金手指\",\"url\":\"/tag/jsz/p_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}}]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 10; SK) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1719532886028,
    "loginUrl": "",
    "respondTime": 6478,
    "ruleBookInfo": {
      "author": "//*[@id=\"novelMain\"]/div[1]/table/tbody/tr/td[1]/div[1]/h2/text()",
      "init": "",
      "intro": "//*[@id=\"novelMain\"]/div[3]/div/pre/text()@js:result.replace(/^/,'    ')",
      "kind": "class.article_info_td@tag.a.0@text&&class.article_info_td@tag.time@text",
      "lastChapter": "class.article_info_td@tag.a.1@text&&class.article_info_td@tag.time@text\n<js>result.replace(/(.*)\\s/,'$1 • ')</js>",
      "name": "//*[@id=\"nr_body\"]/nav/ul/li[2]/text()##\\_.*",
      "tocUrl": "//*[@style=\"color:red;\"]/@href",
      "wordCount": "##总字数：([^<]+)<##$1###@js:result+'字'"
    },
    "ruleContent": {
      "content": "id.nr1@html",
      "imageStyle": "0",
      "nextContentUrl": "//*[@id=\"pt_next\"]/@href"
    },
    "ruleExplore": {
      "author": "tag.strong@text||class.list_author@tag.span@text",
      "bookList": "class.common-bookele||id.list_ul@tag.li",
      "bookUrl": "tag.a.1@href||h3@tag.a.0@href",
      "coverUrl": "@js:'https://img.gb84.com/image/0/15/15s.jpg'",
      "intro": "class.abstract@tag.a@textNodes",
      "kind": "tag.li@tag.a.0@text",
      "name": "h3@tag.a.0@text||tag.a.1@text##_PO18",
      "wordCount": "class.lastupdate@tag.time@text"
    },
    "ruleSearch": {
      "author": "tag.strong@text",
      "bookList": "class.common-bookele[0:4]",
      "bookUrl": "tag.a.0@href",
      "checkKeyWord": "",
      "coverUrl": "@js:'https://img.gb84.com/image/0/15/15s.jpg'",
      "kind": "tag.p.1@text##栏目.",
      "name": "tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": "tag.div.0@tag.ul@tag.li!-1@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "//*[@style=\"color:red;\"]/@href"
    },
    "searchUrl": "/s.php,{\n  \"method\": \"POST\",\n  \"body\": \"type=articlename&s={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "宠物言情",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.x33yq.org",
    "customButton": false,
    "customOrder": 165,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全部分类::/type/0_0_0_0_0_{{page}}.html\n玄幻::/type/0_1_0_0_0_{{page}}.html\n奇幻::/type/0_2_0_0_0_{{page}}.html\n武侠::/type/0_3_0_0_0_{{page}}.html\n都市::/type/0_4_0_0_0_{{page}}.html\n历史::/type/0_5_0_0_0_{{page}}.html\n军事::/type/0_6_0_0_0_{{page}}.html\n悬疑::/type/0_7_0_0_0_{{page}}.html\n游戏::/type/0_8_0_0_0_{{page}}.html\n科幻::/type/0_9_0_0_0_{{page}}.html\n体育::/type/0_10_0_0_0_{{page}}.html\n古言::/type/0_11_0_0_0_{{page}}.html\n现言::/type/0_12_0_0_0_{{page}}.html\n幻言::/type/0_13_0_0_0_{{page}}.html\n仙侠::/type/0_14_0_0_0_{{page}}.html\n青春::/type/0_15_0_0_0_{{page}}.html\n穿越::/type/0_16_0_0_0_{{page}}.html\n女生::/type/0_17_0_0_0_{{page}}.html\n其他::/type/0_18_0_0_0_{{page}}.html",
    "lastUpdateTime": 1733334390850,
    "respondTime": 11453,
    "ruleBookInfo": {
      "author": ".author a@text",
      "coverUrl": ".detail img@src",
      "intro": "[name=\"description\"]@content",
      "kind": ".layui-btn-radius@text&&\n.new + p@text##最后更新：",
      "lastChapter": ".new a@text",
      "name": ".name strong@text",
      "tocUrl": "",
      "wordCount": ".layui-bg-red@text"
    },
    "ruleContent": {
      "content": ".content p!-1@text"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".layui-bg-cyan@text",
      "bookList": ".list li",
      "bookUrl": ".bookname a@href",
      "coverUrl": "img@src",
      "intro": ".intro@text",
      "kind": ".layui-btn-radius@text",
      "lastChapter": "p.data.1@a@text",
      "name": ".bookname a@text"
    },
    "ruleToc": {
      "chapterList": ".read li[chapter-id] a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option!0@value"
    },
    "searchUrl": "/search.html,{\n  \"body\": \"searchkey={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "类型: 文本 在线阅读\n切换: 文件 可以下载",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爱久久小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.aijjxs.com",
    "bookUrlPattern": "https?://m.aijjxs.com/txt/\\d+.html",
    "customButton": false,
    "customOrder": 167,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "穿越::/txt/chuanyue/<,index_{{page}}.html>\n重生::/txt/chongshengxiaoshuo/<,index_{{page}}.html>\n架空::/txt/lsjs/<,index_{{page}}.html>\n总裁::/txt/qinggan/<,index_{{page}}.html>\n现言::/txt/young/<,index_{{page}}.html>\n修仙::/txt/wuxia/<,index_{{page}}.html>\n纯美::/txt/dmtr/<,index_{{page}}.html>\n玄幻::/txt/xuanhuan/<,index_{{page}}.html>\n都市::/txt/dushi/<,index_{{page}}.html>\n惊悚::/txt/kongbu/<,index_{{page}}.html>\n女生::/e/action/toplist.php?page={{page-1}}&class=1&line=10&tempid=6&ph=1&andor=and&orderby=2&myorder=0\n男生::/e/action/toplist.php?page={{page-1}}&class=2&line=10&tempid=6&ph=1&andor=and&orderby=2&myorder=0",
    "header": "@js:\nJSON.stringify({\n\t\"referer\": source.key,\n\"x-requested-with\": \"mark.via\",\n\"accept-language\": \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\",\n\"user-agent\": \"Mozilla/5.0 (Linux; Android 10; PACM00 Build/QP1A.190711.020) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.5359.79 Mobile Safari/537.36\"})",
    "lastUpdateTime": 1784382606246,
    "respondTime": 7077,
    "ruleBookInfo": {
      "author": ".jie@span.2@a@text",
      "coverUrl": ".pic@img@src##^##https:",
      "downloadUrls": "text.下载TXT电子书@href\n<js>\nurl=book.origin+result[0];\njava.ajax(url);\n</js>\ntext.txt电子书下载地址@href\n##$##,{\"type\": \"txt\"}",
      "intro": ".novelinfo@text",
      "kind": ".jie@span.1:3:4:5@text\n##类别：|大小：|进度：|时间：",
      "name": ".jie@h1@text",
      "tocUrl": ".read@a@href##$##,{'webView': true}"
    },
    "ruleContent": {
      "content": "#Content@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".list_a",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": ".intro@text",
      "kind": "span.-2@text",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": "option",
      "chapterName": "text",
      "chapterUrl": "value"
    },
    "searchUrl": "/e/search/index.php,{\n  \"body\": \"show=writer,title&keyboard={{key}}&Submit22=搜索\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "三八小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.38xs.com#",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 168,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "",
    "lastUpdateTime": 1734979709597,
    "respondTime": 2000,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "init": "@put:{n:\"[property$=book_name]@content\",\na:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property$=latest_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"[property$=image]@content\"}",
      "intro": "@get:{i}##.*观看小说:",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}"
    },
    "ruleContent": {
      "content": "#content@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##喜欢.*请大家收藏.+更新速度全网最快。"
    },
    "ruleExplore": {
      "author": ".s4@text",
      "bookList": "ul li",
      "bookUrl": "a.0@href",
      "kind": "span.0:-text##\\[|\\]",
      "lastChapter": "a.1@text",
      "name": ".s2@text"
    },
    "ruleSearch": {
      "author": "span.0@text",
      "bookList": "#sitembox dl",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": "dd.-2@text",
      "kind": "span.-3:-4:-1@text",
      "lastChapter": "a.-1@text",
      "name": "h3@text",
      "wordCount": "span.-2@text"
    },
    "ruleToc": {
      "chapterList": "#list dd a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/search.html,{\n  \"body\": \"searchtype=all&searchkey={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "24.12.29 Buding\n修复目录，增加发现页，详情页",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "淘小说优",
    "bookSourceType": 0,
    "bookSourceUrl": "https://tybook.taoyuewenhua.net",
    "customButton": false,
    "customOrder": 169,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"男生分类\",\"url\":\"\",\n\"style\":{\"layout_flexGrow\":0,\n\"layout_flexBasisPercent\":1}},\n{\"title\":\"推荐榜\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/book_mall/book_rank?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&brtype=100&ctype=1&optype=1&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649403462595&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完本榜\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/book_mall/book_rank?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&brtype=110&ctype=1&optype=1&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649403462595&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气榜\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/book_mall/book_rank?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&brtype=10&ctype=1&optype=1&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649403462595&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"热搜榜\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/book_mall/book_rank?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&brtype=80&ctype=1&optype=1&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649403462595&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏榜\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/book_mall/book_rank?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&brtype=20&ctype=1&optype=1&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649403462595&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/book_mall/book_rank?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&brtype=30&ctype=1&optype=1&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649403462595&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"题材\",\"url\":\"\",\n\"style\":{\"layout_flexGrow\":0,\n\"layout_flexBasisPercent\":1}},\n{\"title\":\"都市\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&categoryId=105000&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649399854751&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"玄幻\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&categoryId=101000&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649399854751&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"历史\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&categoryId=106000&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649399854751&uid=52557650&version_code=269\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"系统\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=系统&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"娱乐圈\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=娱乐圈&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"穿越\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=穿越&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"无敌\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=无敌&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"迪化流\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=迪化流&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"签到\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=签到&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"军事\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&categoryId=107000&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649399854751&uid=52557650&version_code=269\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"奇闻怪谈\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&categoryId=108000&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649399854751&uid=52557650&version_code=269\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"N次元\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=N次元&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"角色\",\"url\":\"\",\n\"style\":{\"layout_flexGrow\":0,\n\"layout_flexBasisPercent\":1}},\n{\"title\":\"战神\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=战神&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"赘婿\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=赘婿&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女总裁\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=女总裁&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"神医\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=神医&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"奶爸\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=奶爸&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"多女主\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=多女主&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"姐姐\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=姐姐&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女帝\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=女帝&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"皇子\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=皇子&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"神豪\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=神豪&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"兵王\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=兵王&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"搞怪\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=搞怪&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"情节\",\"url\":\"\",\n\"style\":{\"layout_flexGrow\":0,\n\"layout_flexBasisPercent\":1}},\n{\"title\":\"重生\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=重生&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"大唐\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=大唐&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"荒岛\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=荒岛&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"游戏\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=游戏&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"英雄联盟\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=英雄联盟&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"透视\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=透视&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"末世\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=末世&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"三国\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=三国&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"复苏流\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=复苏流&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"盗墓\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=盗墓&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"日常文\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=日常文&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"开局流\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=开局流&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"其他\",\"url\":\"\",\n\"style\":{\"layout_flexGrow\":0,\n\"layout_flexBasisPercent\":1}},\n{\"title\":\"诸天万界\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=诸天万界&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"脑洞\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=脑洞&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"修真\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=修真&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"洪荒\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=洪荒&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"仙帝\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=仙帝&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"火影\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=火影&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"种田\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=种田&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"仙侠\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=仙侠&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"西游\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=西游&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"鉴宝\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=鉴宝&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"武侠\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=武侠&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"传承\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=传承&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"惊悚\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=惊悚&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"复仇\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=复仇&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"战争\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=战争&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"天才\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=天才&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"现实人生\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=现实人生&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"神奇宝贝\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=神奇宝贝&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"爱情\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=爱情&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"高手\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=高手&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"风水\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=风水&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"武道\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=武道&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"网游\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=网游&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"科幻\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=科幻&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"电竞\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=电竞&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"明朝\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=明朝&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"剑道\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=剑道&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"星际\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=星际&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"魔法\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=魔法&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"王者荣耀\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=王者荣耀&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"年代\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=年代&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"无限流\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=无限流&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"悬疑\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=悬疑&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"江湖恩怨\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=江湖恩怨&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"同人\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=同人&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"全球\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=全球&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"美食\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=美食&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推理\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=推理&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"召唤\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=召唤&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"爽文\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=1&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=爽文&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":0,\n\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"女生分类\",\"url\":\"\",\n\"style\":{\"layout_flexGrow\":0,\n\"layout_flexBasisPercent\":1}},\n{\"title\":\"推荐榜\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/book_mall/book_rank?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&brtype=100&ctype=2&optype=1&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649403462595&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完本榜\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/book_mall/book_rank?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&brtype=110&ctype=2&optype=1&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649403462595&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气榜\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/book_mall/book_rank?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&brtype=10&ctype=2&optype=1&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649403462595&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"热搜榜\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/book_mall/book_rank?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&brtype=80&ctype=2&optype=1&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649403462595&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏榜\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/book_mall/book_rank?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&brtype=20&ctype=2&optype=1&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649403462595&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/book_mall/book_rank?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&brtype=30&ctype=2&optype=1&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649403462595&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"题材\",\"url\":\"\",\n\"style\":{\"layout_flexGrow\":0,\n\"layout_flexBasisPercent\":1}},\n{\"title\":\"现代言情\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&categoryId=204000&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649399854751&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"古代言情\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&categoryId=203000&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649399854751&uid=52557650&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"总裁\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=总裁&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"种田\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=种田&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"重生\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=重生&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"团宠\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=团宠&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"虐文\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=虐文&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"快穿\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=快穿&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"掉马甲\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=掉马甲&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"甜宠\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=甜宠&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"追妻\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=追妻火葬场&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"年代\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=年代&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"角色\",\"url\":\"\",\n\"style\":{\"layout_flexGrow\":0,\n\"layout_flexBasisPercent\":1}},\n{\"title\":\"医妃\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=医妃&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"大叔\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=大叔&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"超A女主\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=超A女主&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"萌宝\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=萌宝&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"皇叔\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=皇叔&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"锦鲤\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=锦鲤&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女配\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=女配&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女战神\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=女战神&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"反派\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=反派&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"萌系\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=萌系&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"病娇\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=病娇&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"双男主\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=双男主&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"情节\",\"url\":\"\",\n\"style\":{\"layout_flexGrow\":0,\n\"layout_flexBasisPercent\":1}},\n{\"title\":\"穿越\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=穿越&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"穿书\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=穿书&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"先婚后爱\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=先婚后爱&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"空间\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=空间&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"奇闻怪谈\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=奇闻怪谈&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女扮男装\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=女扮男装&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"仙侠\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=仙侠&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"虐渣\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=虐渣&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"养娃\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=养娃&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"宫斗文\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=宫斗文&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"兽世\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=兽世&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"末世\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=末世&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"其他\",\"url\":\"\",\n\"style\":{\"layout_flexGrow\":0,\n\"layout_flexBasisPercent\":1}},\n{\"title\":\"师徒\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=师徒&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"娱乐圈\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=娱乐圈&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"婚恋\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=婚恋&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"玄学\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=玄学&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"王妃\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=王妃&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"搞笑欢脱\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=搞笑欢脱&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"系统\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=系统&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"神医\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=神医&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"校园\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=校园&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"浪漫青春\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=浪漫青春&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"嫡女\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=嫡女&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"美食\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=美食&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"农家女\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=农家女&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女强\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=女强&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"权谋\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=权谋&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"复仇\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=复仇&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"契约结婚\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=契约结婚&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"职场\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=职场&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"暴富\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=暴富&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"皇后\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=皇后&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"庶女\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=庶女&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"前妻\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=前妻&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"悬疑\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=悬疑&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"落魄千金\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=落魄千金&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"电竞\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=电竞&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"逆袭\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=逆袭&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"民国\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=民国&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"影后\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=影后&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"将军\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=将军&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"王爷\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=王爷&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推理\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=推理&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"惊悚\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=惊悚&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"轻松\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=轻松&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"校草\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=校草&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"宅斗\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=宅斗&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"清穿\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=清穿&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"爱情\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=爱情&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"游戏\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=游戏&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"反套路\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=反套路&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"病娇\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=病娇&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"前世今生\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=前世今生&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"玄幻\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=玄幻&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"脑洞\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=脑洞&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"真假千金\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=真假千金&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"法医\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=法医&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"网游\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=网游&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"爽文\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=爽文&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"打脸\",\"url\":\"@js:q=\\\"https://tybook.taoyuewenhua.net/ty/search_by_category?\\\";n=page-1;w=\\\"&key=mibook_123456\\\";t=\\\"appid=mibook&freeType=2&from=2&optype=1&order=0&ostype=0&osversion=7.1.2&page=\\\"+n+\\\"&pageSize=10&status=0&t=1649400758613&tags=打脸&version_code=269&version_name=8.2.3\\\";i=t+w;y=\\\"&sign=\\\";u=java.md5Encode(i).toUpperCase();q+t+y+String(u)\",\n\"style\":{\"layout_flexGrow\":1,\n\"layout_flexBasisPercent\":0.25}}\n]",
    "header": "{\"User-Agent\":\"okhttp/3.12.1\"}",
    "lastUpdateTime": 1787334472221,
    "respondTime": 3029,
    "ruleBookInfo": {
      "author": "$.authorName",
      "coverUrl": "$.coverUrl",
      "init": "$.data",
      "intro": "<br>\n🎗 标签：{{$.site}}🔸{{$.tagList##\\s##，}}\n👤 主角：{{$.roleList##\\s##，}}\n🕰 更新：{{String(java.timeFormat(java.getString('$.latestChapterUpdateTime'))).replace(/\\//g,\"-\").replace(/\\s/g,\"🔸\")}}\n📂 简介：\n{{$.intro}}",
      "kind": "{{$.categoryName}}\n{{java.getString('$.status')=='50'?'完结':'连载'}}\n{{r=String(Math.round(java.getString('$.score'))/10);r=='0'?'':r+ '分'}}",
      "lastChapter": "$.latestChapter",
      "name": "$.title",
      "tocUrl": "@js:\ntry{\ntime=Date.now();\nsign=java.md5Encode(\"appid=mibook&bid={{$.bid}}&brand=HUAWEI&channel=Tencent&device_id=22f71e7a68a04e8a8e6618ace8804404&model=vmos&optype=1&ostype=0&osversion=7.1.2&package_name=com.martian.ttbook&t=\"+time+\"&token=54338ca6-a8eb-4662-9ae4-ae1f871b0825&uid=45090208&version_code=266&version_name=8.1.9&key=mibook_123456\").toUpperCase();\n\n\"http://tybook.taoyuewenhua.net/tf/chapter_list?appid=mibook&bid={{$.bid}}&brand=HUAWEI&channel=Tencent&device_id=22f71e7a68a04e8a8e6618ace8804404&model=vmos&optype=1&ostype=0&osversion=7.1.2&package_name=com.martian.ttbook&t=\"+time+\"&token=54338ca6-a8eb-4662-9ae4-ae1f871b0825&uid=45090208&version_code=266&version_name=8.1.9&sign=\"+sign;\n}\ncatch(e){\n\t\"https://tfbook-1251592799.file.myqcloud.com/chapters/bid={{$.bid}}.json\"\n\t\n}",
      "wordCount": "$.allWords"
    },
    "ruleContent": {
      "content": "$.data.content"
    },
    "ruleExplore": {
      "bookUrl": "sourceId@js:\ntime=Date.now();\nsign=java.md5Encode(\"appid=mibook&bid=\"+result+\"&brand=HUAWEI&channel=Tencent&device_id=22f71e7a68a04e8a8e6618ace8804404&model=vmos&optype=1&ostype=0&osversion=7.1.2&package_name=com.martian.ttbook&t=\"+time+\"&token=54338ca6-a8eb-4662-9ae4-ae1f871b0825&uid=45090208&version_code=266&version_name=8.1.9&key=mibook_123456\").toUpperCase();\n\n\"/tf/book?appid=mibook&bid=\"+result+\"&brand=HUAWEI&channel=Tencent&device_id=22f71e7a68a04e8a8e6618ace8804404&model=vmos&optype=1&ostype=0&osversion=7.1.2&package_name=com.martian.ttbook&t=\"+time+\"&token=54338ca6-a8eb-4662-9ae4-ae1f871b0825&uid=45090208&version_code=266&version_name=8.1.9&sign=\"+sign;"
    },
    "ruleSearch": {
      "author": "$.authorName",
      "bookList": "$.data.bookList",
      "bookUrl": "sourceId@js:\ntime=Date.now();\nsign=java.md5Encode(\"appid=mibook&bid=\"+result+\"&brand=HUAWEI&channel=Tencent&device_id=22f71e7a68a04e8a8e6618ace8804404&model=vmos&optype=1&ostype=0&osversion=7.1.2&package_name=com.martian.ttbook&t=\"+time+\"&token=54338ca6-a8eb-4662-9ae4-ae1f871b0825&uid=45090208&version_code=266&version_name=8.1.9&key=mibook_123456\").toUpperCase();\n\n\"/tf/book?appid=mibook&bid=\"+result+\"&brand=HUAWEI&channel=Tencent&device_id=22f71e7a68a04e8a8e6618ace8804404&model=vmos&optype=1&ostype=0&osversion=7.1.2&package_name=com.martian.ttbook&t=\"+time+\"&token=54338ca6-a8eb-4662-9ae4-ae1f871b0825&uid=45090208&version_code=266&version_name=8.1.9&sign=\"+sign;",
      "coverUrl": "$.coverUrl",
      "intro": "$.intro",
      "kind": "{{$.categoryName}}\n{{java.getString('$.status')=='50'?'完结':'连载'}}\n{{r=String(Math.round(java.getString('$.score'))/10);r=='0'?'':r+ '分'}}",
      "name": "$.title",
      "wordCount": "$.allWords"
    },
    "ruleToc": {
      "chapterList": "$.data.chapterList",
      "chapterName": "$.title",
      "chapterUrl": "@js:\ntime=Date.now();\nsign=java.md5Encode(\"appid=mibook&bid={{$.bid}}&brand=HUAWEI&channel=Tencent&cid={{$.cid}}&device_id=22f71e7a68a04e8a8e6618ace8804404&model=vmos&optype=1&ostype=0&osversion=7.1.2&package_name=com.martian.ttbook&t=\"+time+\"&token=54338ca6-a8eb-4662-9ae4-ae1f871b0825&uid=45090208&version_code=266&version_name=8.1.9&key=mibook_123456\").toUpperCase();\n\n\"https://tybook.taoyuewenhua.net/tf/chapter_content?appid=mibook&bid={{$.bid}}&brand=HUAWEI&channel=Tencent&cid={{$.cid}}&device_id=22f71e7a68a04e8a8e6618ace8804404&model=vmos&optype=1&ostype=0&osversion=7.1.2&package_name=com.martian.ttbook&t=\"+time+\"&token=54338ca6-a8eb-4662-9ae4-ae1f871b0825&uid=45090208&version_code=266&version_name=8.1.9&sign=\"+sign;",
      "updateTime": "{{$.words}} 字 发布于  {{java.timeFormat(java.getString('$.modifiedOn'))}}"
    },
    "searchUrl": "@js:\ntime=Date.now();\nsign=java.md5Encode(\"appid=mibook&brand=HUAWEI&channel=Tencent&ctype=1&device_id=22f71e7a68a04e8a8e6618ace8804404&keywords=\"+key+\"&model=vmos&optype=1&ostype=0&osversion=7.1.2&package_name=com.martian.ttbook&page=0&pageSize=10&searchType=1&sourceName=yw&t=\"+time+\"&token=54338ca6-a8eb-4662-9ae4-ae1f871b0825&uid=45090208&version_code=266&version_name=8.1.9&key=mibook_123456\").toUpperCase();\n\n\"/authopt/ty/search_books?appid=mibook&brand=HUAWEI&channel=Tencent&ctype=1&device_id=22f71e7a68a04e8a8e6618ace8804404&keywords=\"+key+\"&model=vmos&optype=1&ostype=0&osversion=7.1.2&package_name=com.martian.ttbook&page=0&pageSize=10&searchType=1&sourceName=yw&t=\"+time+\"&token=54338ca6-a8eb-4662-9ae4-ae1f871b0825&uid=45090208&version_code=266&version_name=8.1.9&sign=\"+sign;",
    "weight": 0
  },
  {
    "bookSourceComment": "全部 status=0\n连载 status=30\n完结 status=50",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "全免小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://qmbook.taoyuewenhua.net/#@遇知",
    "customButton": false,
    "customOrder": 170,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"🔖男频🍁榜单🔖\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"推荐\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完本\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=110&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=10&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"热搜\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=80&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=20&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=30&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n\n{\"title\":\"🔖男频🍁分类🔖\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"玄幻\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=玄幻&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"奇幻\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=奇幻&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"武侠\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=武侠&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"仙侠\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=仙侠&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"都市\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=都市&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"历史\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=历史&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"军事\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=军事&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"奇闻怪谈\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=奇闻怪谈&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"科幻\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=科幻&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"游戏\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=游戏&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"体育\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=体育&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"N次元\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=N次元&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"现实\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=现实&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"——\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"——\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n\n\n\n\n\n{\"title\":\"🔖女频🍁榜单🔖\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"推荐\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完本\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=110&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=10&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"热搜\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=80&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=20&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=30&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n\n\n{\"title\":\"🔖女频🍁分类🔖\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"玄幻言情\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=玄幻言情&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"仙侠奇缘\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=仙侠奇缘&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"古代言情\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=古代言情&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"现代言情\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=现代言情&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"浪漫青春\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=浪漫青春&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"奇闻怪谈\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=奇闻怪谈&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"科幻空间\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=科幻空间&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"游戏竞技\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=游戏竞技&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"N次元\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=N次元&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"同人纯爱\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=同人纯爱&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"短篇\",\"url\":\"@js:\ntime=Date.now();\nt=\\\"appid=qmbook&brand=XIAOMI&brtype=100&category=短篇&channel=Tencent&ctype=2&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\\\"+(page-1)+\\\"&pageSize=10&status=0&t=\\\"+time+\\\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\\\";\nsign=java.md5Encode(t).toUpperCase(); r=String(t).replace(/key=tfbook_free/,'sign=')+sign; \\\"http://qmbook.taoyuewenhua.net/book_mall/book_rank?\\\"+r;\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"——\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}\n]",
    "header": "{\n\t\"User-Agent\":\"okhttp/3.12.1\"\n\t}",
    "lastUpdateTime": 1787425822615,
    "respondTime": 2295,
    "ruleBookInfo": {
      "author": "$.authorName",
      "coverUrl": "$.coverUrl",
      "init": "$.data",
      "intro": "<br>\n🎗 标签：{{$.site}}🔸{{$.tagList##\\s##，}}\n👤 主角：{{$.roleList##\\s##，}}\n🕰 更新：{{String(java.timeFormat(java.getString('$.latestChapterUpdateTime'))).replace(/\\//g,\"-\").replace(/\\s/g,\"🔸\")}}\n📂 简介：{{$.intro}}",
      "kind": "{{$.categoryName}}\n{{$.subCategoryName}}\n{{java.getString('$.status')=='50'?'完结':'连载'}}",
      "lastChapter": "$.latestChapter",
      "name": "$.title",
      "tocUrl": "@js:\ntry{\ntime=Date.now();\nt=\"appid=qmbook&bid={{$.bid}}&brand=XIAOMI&channel=Tencent&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&t=\"+time+\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\";\nsign=java.md5Encode(t).toUpperCase();\n\nr=String(t).replace(/key=tfbook_free/,'sign=')+sign;\n\n\"http://qmbook.taoyuewenhua.net/tf/chapter_list?\"+r;\n}\ncatch(e){\n\t\"http://tfbook-1251592799.file.myqcloud.com/chapters/{{$.bid}}.json\"\n\t}",
      "wordCount": "$.allWords"
    },
    "ruleContent": {
      "content": "$.data.content"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.authorName",
      "bookList": "$.data.bookList",
      "bookUrl": "@js:\ntime=Date.now();\nt=\"appid=qmbook&bid={{$.sourceId}}&brand=XIAOMI&channel=Tencent&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&t=\"+time+\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\";\nsign=java.md5Encode(t).toUpperCase();\n\nr=String(t).replace(/key=tfbook_free/,'sign=')+sign;\n\n\"http://qmbook.taoyuewenhua.net/tf/book?\"+r;",
      "coverUrl": "$.coverUrl",
      "intro": "$.intro",
      "kind": "{{$.categoryName}}\n{{$.subCategoryName}}\n{{java.getString('$.status')=='50'?'完结':'连载'}}\n{{r=String(Math.round(java.getString('$.score'))/10);r=='0'?'':r+ '分'}}",
      "lastChapter": "$.latestChapter",
      "name": "$.title",
      "wordCount": "$.allWords"
    },
    "ruleToc": {
      "chapterList": "$.data.chapterList",
      "chapterName": "$.title",
      "chapterUrl": "@js:\ntime=Date.now();\nt=\"appid=qmbook&bid={{$.bid}}&brand=XIAOMI&channel=Tencent&cid={{$.cid}}&device_id=17af4cb0a45440e5b5bcba1798d760c6&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&t=\"+time+\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\";\nsign=java.md5Encode(t).toUpperCase();\n\nr=String(t).replace(/key=tfbook_free/,'sign=')+sign;\n\n\"http://qmbook.taoyuewenhua.net/tf/chapter_content?\"+r;",
      "updateTime": "{{String(java.timeFormat(java.getString('$.modifiedOn'))).replace(/\\//g,\"-\")}} 字数:{{$.words}}"
    },
    "searchUrl": "@js:\ntime=Date.now();\nt=\"appid=qmbook&brand=XIAOMI&channel=Tencent&ctype=1&device_id=17af4cb0a45440e5b5bcba1798d760c6&keywords=\"+key+\"&model=10X&optype=3&ostype=0&osversion=7.1.2&package_name=com.martian.qmbook&page=\"+(page-1)+\"&pageSize=10&searchType=1&sourceName=tf&t=\"+time+\"&token=489fecb8-532b-4ad9-b89f-4213768599bf&uid=74514329&version_code=410&version_name=1.5.9&key=tfbook_free\";\nsign=java.md5Encode(t).toUpperCase();\n\nr=String(t).replace(/key=tfbook_free/,'sign=')+sign;\n\n\"http://qmbook.taoyuewenhua.net/authopt/ty/search_books?\"+r;",
    "weight": 0
  },
  {
    "bookSourceComment": "●♛七猫▪︎API▪︎ by.渊呀\nby.渊呀",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "七猫免费（+++）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://api-bc.wtzw.com#md",
    "customButton": false,
    "customOrder": 171,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"■■■■■■■■   男  生   ■■■■■■■■\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市人生\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=203&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异术超能\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=219&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"玄幻奇幻\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=202&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠仙侠\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=205&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"奇闻异事\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=204&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 二 次 元 \",\"url\":\"https://www.baidu.com/category/gender=2&category_id=207&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=56&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=75&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=64&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"体育\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=206&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"影视\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=539&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"穿越\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=373&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"鉴宝\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=47&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"重生\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=779&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"血脉\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=426&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"签到\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=565&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"复仇\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=790&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"丹药\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=428&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"医生\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=156&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战神\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=527&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女婿\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=36&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"皇帝\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=62&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"弃少\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=525&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"热血\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=1&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"爽文\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=570&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现实\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=12&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"悬疑\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=27&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女总裁\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=89&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"无限流\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=557&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"强者回归\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=402&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"■■■■■■■■   女  生   ■■■■■■■■\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=1&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"总裁豪门\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=8&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=2&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"种田经商\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=16&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宫闱宅斗\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=209&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"幻想言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=4&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"奇闻异事\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=204&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"影视原著\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=539&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"日久生情\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=700&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"重生\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=779&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女强\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=620&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"年下\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=631&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"空间\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=345&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"穿越\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=373&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"隐婚\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=481&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"系统\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=782&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"快穿\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=335&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"虐渣\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=739&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"皇后\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=106&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"王爷\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=125&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"学霸\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=781&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"毒妃\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=109&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"校草\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=701&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女配\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=191&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"甜宠\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=21&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"搞笑\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=788&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"虐恋\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=16&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"治愈\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=17&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"短篇\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=541&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"■■■■■■■■   图  书   ■■■■■■■■\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=260&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=259&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春文学\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=265&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"影视原著\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=539&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"悬疑推理\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=262&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠小说\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=289&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科幻未来\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=261&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史小说\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=264&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"仙侠奇缘\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=276&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"仙侠玄幻\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=288&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现实小说\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=266&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代军旅\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=290&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文学艺术\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=240&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人物传记\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=247&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人文科社\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=241&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"少儿教育\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=258&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经管励志\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=242&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经典文学\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=243&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1786228165999,
    "respondTime": 2566,
    "ruleBookInfo": {
      "author": "author",
      "coverUrl": "image_link",
      "init": "data.book",
      "intro": "intro",
      "kind": "book_tag_list[*].title",
      "lastChapter": "{{$.latest_chapter_title}}·{{java.timeFormat(java.getString('$.update_time')*1000)}}",
      "name": "title@put:{bid:id}",
      "tocUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':{{$.id}}}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }  \n  }  \n  return paramStr;  \n};\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\n\"https://api-ks.wtzw.com/api/v1/chapter/chapter-list?\"+urlEncode(params)+\",\"+java.get(\"headers\")",
      "wordCount": "words_num"
    },
    "ruleContent": {
      "content": "@js:\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n    Packages.java.lang,\n    Packages.javax.crypto.spec,\n    Packages.javax.crypto,\n    Packages.java.util\n);\nwith(javaImport) {\n    function decode(content) {\n        var ivEncData = Base64.getDecoder().decode(String(content));\n        var key = SecretKeySpec(String(\"242ccb8230d709e1\").getBytes(), \"AES\");\n        var iv = IvParameterSpec(Arrays.copyOfRange(ivEncData, 0, 16));\n        var chipher = Cipher.getInstance(\"AES/CBC/PKCS5Padding\");\n        chipher.init(2, key, iv);\n        return String(chipher.doFinal(Arrays.copyOfRange(ivEncData, 16, ivEncData.length)));\n    }\n}\n\n\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':String(java.get('bid')),'chapterId':String(baseUrl.split(\"/\").pop())}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }\n  }\n  return paramStr;\n};\n\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\nurl=\"https://api-ks.wtzw.com/api/v1/chapter/content?\"+urlEncode(params)\ndecode(JSON.parse(java.ajax(url+','+java.get(\"headers\"))).data.content)\n\n"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "<js>\ngender=baseUrl.match(/gender=(\\d+)/)?baseUrl.match(/gender=(\\d+)/)[1]:\"\"\ncategory_id=baseUrl.match(/category_id=(\\d+)/)?baseUrl.match(/category_id=(\\d+)/)[1]:\"\"\nneed_filters=baseUrl.match(/need_filters=(\\d+)/)?baseUrl.match(/need_filters=(\\d+)/)[1]:\"\"\npage=baseUrl.match(/page=(\\d+)/)?baseUrl.match(/page=(\\d+)/)[1]:\"\"\nneed_category=baseUrl.match(/need_category=(\\d+)/)?baseUrl.match(/need_category=(\\d+)/)[1]:\"\"\ntag_id=baseUrl.match(/tag_id=(\\d+)/)?baseUrl.match(/tag_id=(\\d+)/)[1]:\"\"\nsign_key='d3dGiJc651gSQ8w1'\nheaders={'app-version':'51110','platform':'android','reg':'0','AUTHORIZATION':'','application-id':'com.****.reader','net-env':'1','channel':'unknown','qm-params':''}\nheaders['sign']=String(java.md5Encode(Object.keys(headers).sort().reduce((pre,n)=>pre+n+'='+headers[n],'')+sign_key))\n\n\nvar urlEncode = function (param, key, encode) {\n  if(param==null) return '';\n  var paramStr = '';\n  var t = typeof (param);\n  if (t == 'string' || t == 'number' || t == 'boolean') {\n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);\n  } else {\n    for (var i in param) {\n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);\n      paramStr += urlEncode(param[i], k, encode);\n    }\n  }\n  return paramStr;\n};\n\nvar category = function () {\n  params={'gender':gender,'category_id':category_id,'need_filters':need_filters,'page':page,'need_category':need_category}\n  params['sign']=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\n  url=\"https://api-bc.wtzw.com/api/v4/category/get-list?\"+urlEncode(params)\n  return java.ajax(url+','+java.put(\"headers\",JSON.stringify({\"headers\":headers})))\n};\n\nvar tag = function () {\n  params={'gender':gender,'need_filters':need_filters,'page':page,'tag_id':tag_id}\n  params['sign']=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\n  url=\"https://api-bc.wtzw.com/api/v4/tag/index?\"+urlEncode(params)\n  return java.ajax(url+','+java.put(\"headers\",JSON.stringify({\"headers\":headers})))\n};\n\n\nif(baseUrl.match(/category/)){\n  category()\n}else {\n  tag()\n}\n</js>\n$.data.books",
      "bookUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':{{$.id}},'imei_ip':'2937357107','teeny_mode':0}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }  \n  }  \n  return paramStr;  \n};\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\n\"https://api-bc.wtzw.com/api/v4/book/detail?\"+urlEncode(params)+\",\"+java.get(\"headers\")",
      "coverUrl": "$.image_link",
      "intro": "$.intro",
      "kind": "$.ptags",
      "name": "$.title",
      "wordCount": "$.words_num"
    },
    "ruleSearch": {
      "author": "original_author",
      "bookList": "data.books",
      "bookUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':{{$.id}},'imei_ip':'2937357107','teeny_mode':0}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }  \n  }  \n  return paramStr;  \n};\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\n\"/api/v4/book/detail?\"+urlEncode(params)+\",\"+java.get(\"headers\")",
      "coverUrl": "image_link",
      "intro": "intro",
      "kind": "ptags",
      "name": "original_title",
      "wordCount": "words_num"
    },
    "ruleToc": {
      "chapterList": "data.chapter_lists",
      "chapterName": "title",
      "chapterUrl": "id",
      "updateTime": "{{$.words}} 字"
    },
    "searchUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nheaders={'app-version':'51110','platform':'android','reg':'0','AUTHORIZATION':'','application-id':'com.****.reader','net-env':'1','channel':'unknown','qm-params':''}\n\nparams={'gender':'3','imei_ip':'2937357107','page':page,'wd':key}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }  \n  }  \n  return paramStr;  \n};\n\nheaderSign=String(java.md5Encode(Object.keys(headers).sort().reduce((pre,n)=>pre+n+'='+headers[n],'')+sign_key))\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nheaders['sign']=headerSign\nparams['sign']=paramSign\nbody=urlEncode(params)\n\n\"/api/v5/search/words?\" +body+\",\"+java.put(\"headers\",JSON.stringify({\"headers\":headers}))",
    "weight": 0
  },
  {
    "bookSourceComment": "by狼崽儿 //2026.8.25\n本书源的特点是将正文里面的简介移至详情页简介，使之更加规范清晰。",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "新福书网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.fushuw.org",
    "customButton": false,
    "customOrder": 172,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "古代架空::@js:var c='gudaijiakong';var b=source.bookSourceUrl;page==1?b+'/'+c+'/':b+'/'+c+'/index_'+(page-1)+'.html';\n现代都市::@js:var c='xiandaidushi';var b=source.bookSourceUrl;page==1?b+'/'+c+'/':b+'/'+c+'/index_'+(page-1)+'.html';\n穿越重生::@js:var c='chuanyuechongsheng';var b=source.bookSourceUrl;page==1?b+'/'+c+'/':b+'/'+c+'/index_'+(page-1)+'.html';\n玄幻灵异::@js:var c='xuanhuanlingyi';var b=source.bookSourceUrl;page==1?b+'/'+c+'/':b+'/'+c+'/index_'+(page-1)+'.html';\n推理悬疑::@js:var c='tuilixuanyi';var b=source.bookSourceUrl;page==1?b+'/'+c+'/':b+'/'+c+'/index_'+(page-1)+'.html';\n网游竞技::@js:var c='wangyoujingji';var b=source.bookSourceUrl;page==1?b+'/'+c+'/':b+'/'+c+'/index_'+(page-1)+'.html';\nBL同人::@js:var c='BLtongren';var b=source.bookSourceUrl;page==1?b+'/'+c+'/':b+'/'+c+'/index_'+(page-1)+'.html';\nGL百合::@js:var c='GLbaihe';var b=source.bookSourceUrl;page==1?b+'/'+c+'/':b+'/'+c+'/index_'+(page-1)+'.html';\n本站推荐::@js:var c='bztuijian';var b=source.bookSourceUrl;page==1?b+'/'+c+'/':b+'/'+c+'/index_'+(page-1)+'.html';\n热门排行::@js:var c='bzremen';var b=source.bookSourceUrl;page==1?b+'/'+c+'/':b+'/'+c+'/index_'+(page-1)+'.html';\n周排行榜::@js:var c='bzremenweek';var b=source.bookSourceUrl;page==1?b+'/'+c+'/':b+'/'+c+'/index_'+(page-1)+'.html';\n月排行榜::@js:var c='bzremenmonth';var b=source.bookSourceUrl;page==1?b+'/'+c+'/':b+'/'+c+'/index_'+(page-1)+'.html';",
    "header": "{\n    \"User-Agent\": \"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\"\n  }",
    "lastUpdateTime": 1787671904312,
    "respondTime": 2200,
    "ruleBookInfo": {
      "author": "@js:var doc=org.jsoup.Jsoup.parse(result);var el=doc.select('td.info_text span, div.title_info_right p').first();var t=el!=null?el.text():'';t.indexOf('作者：')==0?t.substring(3):t;",
      "coverUrl": "div.title_info_left img@data-original",
      "intro": "@js:\nvar doc = org.jsoup.Jsoup.parse(result);\nvar el = doc.select('#text').first();\nvar t = el != null ? el.text() : '';\nvar a1 = t.indexOf('简介：');\nvar a2 = t.indexOf('文案：');\nvar a = a1 >= 0 && (a2 < 0 || a1 < a2) ? a1 : a2;\nvar b = t.indexOf('第1章');\nvar r = (a >= 0 && b > a) ? t.substring(a + 3, b).trim() : '';\nr.split(' 　　').join('\\n');",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "@js:\nvar doc = org.jsoup.Jsoup.parse(result);\nvar el = doc.select('#text').first();\nvar html = el != null ? el.html() : '';\nvar i = html.indexOf('<p>第');          // ① 从本章标记开始（切掉《书名》作者：+简介整段）\nif (i >= 0) { html = html.substring(i); }\nvar k = html.indexOf('id=\"goto-pl\"');   // ② 截断页脚噪音（评论/JS/推荐/分页导航）\nif (k >= 0) { html = html.substring(0, k); }\nvar j = html.indexOf('耽美小说');       // ③ 删章末水印\nif (j >= 0) { html = html.substring(0, j); }\nhtml;"
    },
    "ruleExplore": {
      "author": "@js:var s=result.select('span').get(1).text();var i=s.indexOf('作者：');i>=0?s.substring(i+3):s;",
      "bookList": "li.book-li",
      "bookUrl": "a@href",
      "name": "h4.book-title@text"
    },
    "ruleSearch": {
      "author": "span[style]@text",
      "bookList": "@js:\nvar m = result.match(/searchid=(\\d+)/);\nif (m != null) { cookie.setCookie(source.bookSourceUrl + '/e/search/result/', m[0]); }\njava.setContent(result);\njava.getElement('h2.r');",
      "bookUrl": "a.l@href",
      "name": "a.l@text"
    },
    "ruleToc": {
      "chapterList": "@js:\nvar url = baseUrl;\nvar prefix = url.substring(0, url.lastIndexOf('/') + 1);\nvar bid = url.substring(url.lastIndexOf('/') + 1, url.length - 5);\nvar b = java.ajax(url);\nvar i = b.indexOf('<b>');\nvar j = i >= 0 ? b.indexOf('</b>', i) : -1;\nvar total = (i >= 0 && j > i) ? parseInt(b.substring(i + 3, j)) : 1;\nvar list = [];\nfor (var k = 0; k < total; k++) {\n  list.push(JSON.stringify({title: '第' + (k + 1) + '页', url: k == 0 ? url : prefix + bid + '_' + k + '.html'}));\n}\nlist;",
      "chapterName": "$.title",
      "chapterUrl": "$.url"
    },
    "searchUrl": "@js:\nvar sid = cookie.getCookie(source.bookSourceUrl + '/e/search/result/');\nvar s = sid.indexOf('searchid=') >= 0 ? sid.substring(sid.indexOf('searchid=') + 9) : '';\npage == 1 ? source.bookSourceUrl + '/e/search/index.php?searchget=1&keyboard=' + encodeURIComponent(key) + '&show=title&tempid=1&tbname=article' : source.bookSourceUrl + '/e/search/result/index.php?page=' + (page - 1) + '&searchid=' + s;",
    "weight": 0
  },
  {
    "bookSourceComment": "//笔趣阁m.biqugec.com\n//26.06.14 根据网站实际结构制作\n//已过滤广告：域名提示、浏览器模式提示\n//并发率2000：每2秒最多1次请求，避免CDN拦截",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.biqugec.com",
    "concurrentRate": "2000",
    "customButton": false,
    "customOrder": 173,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"═══ 🔥 排行榜 ═══\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"日排行榜\",\n    \"url\": \"https://m.biqugec.com/sort/dayvisit_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"周排行榜\",\n    \"url\": \"https://m.biqugec.com/sort/weekvisit_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月排行榜\",\n    \"url\": \"https://m.biqugec.com/sort/monthvisit_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总排行榜\",\n    \"url\": \"https://m.biqugec.com/sort/allvisit_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"═══ 📚 分类浏览 ═══\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻修真\",\n    \"url\": \"https://m.biqugec.com/sort/lastupdate_1_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"title\": \"重生穿越\",\n    \"url\": \"https://m.biqugec.com/sort/lastupdate_2_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"title\": \"都市小说\",\n    \"url\": \"https://m.biqugec.com/sort/lastupdate_3_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"title\": \"军史小说\",\n    \"url\": \"https://m.biqugec.com/sort/lastupdate_4_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"title\": \"网游小说\",\n    \"url\": \"https://m.biqugec.com/sort/lastupdate_5_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"title\": \"科幻小说\",\n    \"url\": \"https://m.biqugec.com/sort/lastupdate_6_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"title\": \"灵异小说\",\n    \"url\": \"https://m.biqugec.com/sort/lastupdate_7_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"title\": \"言情小说\",\n    \"url\": \"https://m.biqugec.com/sort/lastupdate_8_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"title\": \"其他小说\",\n    \"url\": \"https://m.biqugec.com/sort/lastupdate_9_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"title\": \"═══ 🆕 最新入库 ═══\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"最新入库\",\n    \"url\": \"https://m.biqugec.com/sort/postdate_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.5\n    }\n  },\n  {\n    \"title\": \"总收藏榜\",\n    \"url\": \"https://m.biqugec.com/sort/goodnum_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.5\n    }\n  }\n]",
    "header": "User-Agent: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36",
    "lastUpdateTime": 1785665997326,
    "respondTime": 27653,
    "ruleBookInfo": {
      "author": "meta[property=og:novel:author]@content",
      "coverUrl": "meta[property=og:image]@content",
      "intro": "meta[property=og:description]@content",
      "kind": "meta[property=og:novel:category]@content",
      "lastChapter": "meta[property=og:novel:latest_chapter_name]@content",
      "name": "meta[property=og:novel:book_name]@content",
      "tocUrl": "a.abt3@href"
    },
    "ruleContent": {
      "content": "<js>\nvar bes = result.match(/PHA\\+[A-Za-z0-9+\\/]+={0,2}/g);\n//java.log(String(bes))\nif (!bes) {\n    var ml = java.webView(null,baseUrl,null);\n    var txt = java.getString(\"#txt@html\",ml);\n    java.longToast(\"正文解密失败，转为webView动态加载。\");\n} else {\nvar result = [];\nfor (var i = 0; i < bes.length; i++) {\n    // 遍历数组，使用阅读内置Base64解码方法\n    var bsej = java.base64Decode(bes[i]);\n    var txtt = String(bsej);\n    result.push(txtt);\n      }\n\tvar txt = result.join('\\n');\n}\ntxt;\n</js>"
    },
    "ruleExplore": {
      "author": "span.s4@text",
      "bookList": "ul.sort_list@li",
      "bookUrl": "span.s2 a@href",
      "kind": "span.s1@text##\\[|\\]",
      "lastChapter": "span.s2 a@title",
      "name": "span.s2 a@text"
    },
    "ruleSearch": {
      "author": "span.s5@text##^\\s*",
      "bookList": "ul.sort_list@li",
      "bookUrl": "span.s2 a@href",
      "name": "span.s2 a@text"
    },
    "ruleToc": {
      "chapterList": "ul.chapter-list@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "@js:\nvar body = 's=' + encodeURIComponent(key);\nvar option = {\n  'method': 'POST',\n  'body': body,\n  'headers': {\n    'Content-Type': 'application/x-www-form-urlencoded'\n  }\n};\nresult = 'https://m.biqugec.com/search.html,' + JSON.stringify(option);",
    "weight": 0
  },
  {
    "bookSourceComment": "by狼崽儿  //2026.8.23\n这个网站分别在不同的分类装了搜索页，所以搜索时是一条一条地试。为了避免停留在错误的搜索url里，尽可能搜作品全名。",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "白鹿书院",
    "bookSourceType": 0,
    "bookSourceUrl": "https://s.bailushuyuan.org",
    "customButton": false,
    "customOrder": 174,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "言情小说::https://s.bailushuyuan.org/言情小说\n武侠小说::https://s.bailushuyuan.org/武侠小说\n现代小说::https://s.bailushuyuan.org/现代小说\n外国小说::https://s.bailushuyuan.org/外国小说\n侦探小说::https://s.bailushuyuan.org/侦探小说\n科幻小说::https://s.bailushuyuan.org/科幻小说\n古典小说::https://s.bailushuyuan.org/古典小说\n军事小说::https://s.bailushuyuan.org/军事小说\n纪实小说::https://s.bailushuyuan.org/纪实小说",
    "header": "{  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1787416195129,
    "loginUrl": "https://s.bailushuyuan.org",
    "respondTime": 5895,
    "ruleBookInfo": {
      "author": "meta[property=\"og:book:author\"]@content",
      "coverUrl": "@js:\nvar doc = org.jsoup.Jsoup.parse(result);\nvar img = doc.select('main img[alt$=小说封面]').first();\nif (img == null) { img = doc.select('main img[alt$=照片]').first(); }\nimg ? ('https://s.bailushuyuan.org' + img.attr('src')) : ''",
      "intro": "@js:\nvar doc = org.jsoup.Jsoup.parse(result);\nvar all = doc.getAllElements();\nvar ol = doc.select('ol.text-body-tertiary').first();\nvar olIdx = (ol != null) ? all.indexOf(ol) : -1;\nvar ps = doc.select('p.mb-2');\nvar txt = [];\nfor (var j = 0; j < ps.size(); j++) {\n  var pi = all.indexOf(ps.get(j));\n  if (olIdx < 0 || pi < olIdx) { txt.push(ps.get(j).text()); }\n}\ntxt.join('\\n');",
      "kind": "@js:var doc=org.jsoup.Jsoup.parse(result);\nvar p=doc.select('p.mb-2').first();\nvar a=p?p.select('a').last():null;\na?a.text():''",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "@js:\nvar doc = org.jsoup.Jsoup.parse(result);\nvar el = doc.select('#chaptersShowContent').first();\nvar h1 = doc.select('h1').first();\nel ? el.html() : ('请在此书源重新搜索' + (h1 ? h1.text() : '该作品'));"
    },
    "ruleExplore": {
      "bookList": "main div.row.gx-1.gy-3.mb-3.text-center a",
      "bookUrl": "@js:var href=result.attr('href');var t=result.attr('title');\nvar u='https://s.bailushuyuan.org'+href;var ru=u;\nif(!t){try{var b=java.ajax(u);var j=b.indexOf('<a title=');\nif(j>=0){var k=b.indexOf('href=',j);if(k>=0){var q=b.charAt(k+5);\nvar k2=b.indexOf(q,k+6);\nif(k2>k){ru='https://s.bailushuyuan.org'+b.substring(k+6,k2);\n}}}}catch(e){}}t?u:ru",
      "name": "div.text-truncate@text"
    },
    "ruleSearch": {
      "bookList": "main div.row.gx-1.gy-3.mb-3.text-center a",
      "bookUrl": "@js:var href=result.attr('href');var t=result.attr('title');\nvar u='https://s.bailushuyuan.org'+href;var ru=u;\nif(!t){try{var b=java.ajax(u);var j=b.indexOf('<a title=');\nif(j>=0){var k=b.indexOf('href=',j);if(k>=0){var q=b.charAt(k+5);\nvar k2=b.indexOf(q,k+6);\nif(k2>k){ru='https://s.bailushuyuan.org'+b.substring(k+6,k2);\n}}}}catch(e){}}t?u:ru",
      "checkKeyWord": "犬与鬼",
      "name": "div.text-truncate@text"
    },
    "ruleToc": {
      "chapterList": "@js:\nvar doc = org.jsoup.Jsoup.parse(result);\nvar ols = doc.select('ol.text-body-tertiary li a');\nvar mainAs = doc.select('main a[title]');\nvar list = [];\nif (ols.size() > 0) {\n  for (var i = 0; i < ols.size(); i++) {\n    list.push(JSON.stringify({title: ols.get(i).text(), url: 'https://s.bailushuyuan.org' + ols.get(i).attr('href')}));\n  }\n} else {\n  for (var j = 0; j < mainAs.size(); j++) {\n    list.push(JSON.stringify({title: mainAs.get(j).attr('title'), url: 'https://s.bailushuyuan.org' + mainAs.get(j).attr('href')}));\n  }\n}\nlist;",
      "chapterName": "$.title",
      "chapterUrl": "$.url"
    },
    "searchUrl": "@js:\nvar any = '';\nvar exact = '';\nvar enc = encodeURIComponent(key);\nfor (var i = 1; i <= 9; i++) {\n  var u = 'https://s.bailushuyuan.org/novel/traditional/categories/' + i + '?name_cont=' + enc;\n  try {\n    var body = java.ajax(u);\n    if (body.indexOf('row gx-1 gy-3 mb-3 text-center') !== -1) {\n      if (!any) { any = u; }\n      if (body.indexOf('href=\"/' + enc + '\"') !== -1) { exact = u; break; }\n    }\n  } catch(e) {}\n}\nexact || any || ('https://s.bailushuyuan.org/novel/traditional/categories/1?name_cont=' + enc);",
    "weight": 0
  },
  {
    "bookSourceComment": "by狼崽儿 //2026.7.30\n主要是优质出版小说，兼部分网络小说。\n如果没有出正文，就再刷新一次。该网站有时连接速度很慢，甚至连接不上，都是正常情况，过段时间再连就行了。",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "品书斋🌟",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.pinshuzhai.com ",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 175,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "书香文库::/bookcat/shuxiangwenku/page/{{page}}\n中国文学::/bookcat/zhongguowenxue/page/{{page}}\n世界文学::/bookcat/shijiewenxue/page/{{page}}\n经典名著::/bookcat/jingdianmingzhu/page/{{page}}\n悬疑推理::/bookcat/xuanyituili-2/page/{{page}}\n散文集::/bookcat/sanwenji/page/{{page}}\n传记::/bookcat/zhuanji/page/{{page}}\n以下是网络小说分类 \n网络小说总类::/bookcat/wangluoxiaoshuo/page/{{page}}                          \n玄幻奇幻::/bookcat/xuanhuanqihuan/page/{{page}}\n武侠仙侠::/bookcat/wuxiaxianxia/page/{{page}}\n恋爱言情::/bookcat/lianaiyanqing/page/{{page}}\n都市生活::/bookcat/dushishenghuo/page/{{page}}\n悬疑推理::/bookcat/xuanyituili/page/{{page}}\n恐怖灵异::/bookcat/kongbulingyi/page/{{page}}\n科学幻想::/bookcat/kehuan/page/{{page}}\n历史军事::/bookcat/lishijunshi/page/{{page}}\n穿越重生::/bookcat/chuanyuechongsheng/page/{{page}}",
    "header": "{  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1785388614165,
    "respondTime": 5552,
    "ruleBookInfo": {
      "author": "@XPath://meta[@property='og:novel:author']/@content",
      "coverUrl": "@XPath://meta[@property='og:image']/@content@js:encodeURI(result) + ',{\"headers\":{\"Referer\":\"https://www.pinshuzhai.com\"}}'",
      "intro": ".docspt@text##作品简介：",
      "kind": ".catb a@text&&",
      "name": "@XPath://meta[@property='og:novel:book_name']/@content",
      "wordCount": ".nif span@text"
    },
    "ruleContent": {
      "content": "#chapter@html@js:\nvar html = result;\nvar t = html.indexOf('class=\\\"tjlm\\\"');\nif (t > -1) {\n  var d = html.indexOf('</div>', t);\n  if (d > -1) html = html.substring(0, t - 6) + html.substring(d + 6);\n}\nvar box = html.indexOf('readcons');\nif (box === -1) box = html.indexOf('readconss');\nif (box === -1) box = html.indexOf('duboxs');\nif (box === -1) box = html.indexOf('chapterbo');\nif (box === -1) box = html.indexOf('reakuang');\nif (box > -1) {\n  var bs = html.indexOf('>', box) + 1;\n  var be = html.indexOf('</div>', bs);\n  if (be > -1) html = html.substring(bs, be);\n}\n// 跳过来源行（支持 shidp / shid / hid 三种）\nvar srcEnd = -1;\nvar si = html.indexOf('shidp');\nif (si > -1 && si < 100) {\n  var pe = html.indexOf('</p>', si);\n  if (pe > -1) srcEnd = pe + 4;\n}\nif (srcEnd === -1) {\n  si = html.indexOf('shid');\n  if (si === -1) si = html.indexOf('hid');\n  if (si > -1 && si < 100) {\n    var ae = html.indexOf('</article>', si);\n    if (ae > -1) srcEnd = ae + 10;\n  }\n}\nif (srcEnd > -1) html = html.substring(srcEnd);\nhtml = html.split('</p>').join('\\\n');\nhtml = html.split('<br/>').join('\\\n');\nhtml = html.split('<br>').join('\\\n');\nvar out = '';\nvar inTag = false;\nfor (var ci = 0; ci < html.length; ci++) {\n  var ch = html.charAt(ci);\n  if (ch === '<') { inTag = true; continue; }\n  if (ch === '>') { inTag = false; continue; }\n  if (!inTag) out += ch;\n}\nvar lines = out.split('\\\n');\nvar clean = [];\nfor (var li = 0; li < lines.length; li++) {\n  var l = lines[li];\n  var trimmed = l.replace(/\\\\u3000/g, '').replace(/ /g, '');\n  if (trimmed && trimmed !== '→') clean.push(l);\n}\nresult = clean.join('\\\n');",
      "replaceRegex": ""
    },
    "ruleExplore": {
      "author": ".bookinfo .author a@text",
      "bookList": ".catdanlist ul li",
      "bookUrl": ".bookinfo h4 a@href",
      "coverUrl": "div:first-child a img@src@js:encodeURI(result) + ',{\"headers\":{\"Referer\":\"https://www.pinshuzhai.com\"}}'",
      "intro": ".bookinfo p:last-of-type@text",
      "kind": ".bookinfo .cats@text",
      "name": ".bookinfo h4 a@text"
    },
    "ruleSearch": {
      "author": ".bookinfo .author a@text",
      "bookList": ".catdanlist ul li",
      "bookUrl": ".bookinfo h4 a@href",
      "coverUrl": "div:first-child a img@src@js:encodeURI(result) + ',{\"headers\":{\"Referer\":\"https://www.pinshuzhai.com\"}}'",
      "intro": ".bookinfo p:last-of-type@text",
      "kind": ".bookinfo .cats@text",
      "name": ".bookinfo h4 a@text"
    },
    "ruleToc": {
      "chapterList": ".newzxzj .zjlist a",
      "chapterName": "@text",
      "chapterUrl": "@href"
    },
    "searchUrl": "page/{{page}}?s={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "by狼崽儿 //2026.8.19\n融合了好几个有名漫画网站资源的漫画网站。bug未知，如果有问题先从登录处进去搜索查看漫画，走一遍真人搜索流程。\n有些线路或者有些漫画本身资源有问题，线路问题换线路，漫画显示章节下架就说明看不了了。",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "🌟卡拉漫画",
    "bookSourceType": 2,
    "bookSourceUrl": "https://www.kalamanhua.com",
    "customButton": false,
    "customOrder": 176,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvar result = [];\nvar push = function(title, url, size) {\n    result.push({\n        title: title,\n        url: url,\n        style: {\n            layout_flexGrow: 1,\n            layout_flexBasisPercent: size\n        }\n    });\n};\nvar regions = [\n    {name: '全部', code: '26'},\n    {name: '韩漫', code: 'Kc'},\n    {name: '日漫', code: 'Jc'},\n    {name: '中漫', code: 'Cc'},\n    {name: '欧美漫', code: 'Ec'},\n    {name: '其他', code: 'Oc'}\n];\nvar types = [\n    'All', '恋爱', '冒险', '生活', '校园', '热血', '魔法', '悬疑', '科幻',\n    '运动', '都市', '耽美', '搞笑', '单女主', '纯爱', '总裁', '奇幻', '恐怖',\n    '灵异', '异能', '穿越', '剧情', '古风', '言情', '玄幻', '复仇', '多女主',\n    '霸总', '虐恋', '青春', '真人', '重生', '甜宠', '游戏竞技', '家庭', 'BL',\n    '民国', '同人', '系统', '爱情', '美人', '喜剧', '纯真', '腹黑', '财阀',\n    '后宫', '战争', '修真', '其他'\n];\nfor (var r = 0; r < regions.length; r++) {\n    var region = regions[r];\n    for (var t = 0; t < types.length; t++) {\n        var type = types[t];\n        var isAll = (t === 0);\n        var base;\n        if (isAll) {\n            base = '/type/' + region.code;\n        } else {\n            var encodedType = (type === 'All' || type === 'BL') ? type : encodeURIComponent(type);\n            base = '/type/' + region.code + '--' + encodedType;\n        }\n        var url;\n        if (isAll) {\n            url = '@js:var base=\"' + base + '\";if(page==1){base+\"-----.html\";}else{base+\"---\"+page+\"--.html\";}';\n        } else {\n            url = '@js:var base=\"' + base + '\";if(page==1){base+\"---.html\";}else{base+\"-\"+page+\"--.html\";}';\n        }\n        var title;\n        if (isAll) {\n            title = '📌 ' + region.name + '·全部';\n        } else {\n            title = region.name + '·' + type;\n        }\n        var size = isAll ? 1 : 0.35;\n        push(title, url, size);\n    }\n}\nJSON.stringify(result);",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\",\n  \"Referer\": \"https://www.kalamanhua.com\",\n  \"Cookie\": \"cf_human_passed=true\"\n}",
    "lastUpdateTime": 1787135922026,
    "loginCheckJs": "",
    "loginUrl": "https://www.kalamanhua.com",
    "respondTime": 6681,
    "ruleBookInfo": {
      "author": "##作者：([^<]+)<##$1###",
      "coverUrl": ".stui-content__thumb img@data-original@js:result + ',{\"headers\":{\"Referer\":\"https://www.kalamanhua.com\"}}'",
      "intro": "@js:\nvar names = [];\nvar tm = result.match(/data-toggle=\"tab\"[^>]*>([^<]+)</g);\nif (tm) {\n    for (var i = 0; i < tm.length; i++) {\n        var mm = tm[i].match(/>([^<]+)</);\n        if (mm) names.push(mm[1]);\n    }\n}\nvar n = names.length;\nif (n === 0) {\n    n = (result.match(/<ul class=\"stui-content__playlist/g) || []).length;\n    for (var z = 0; z < n; z++) {\n        names.push('线路' + (z + 1));\n    }\n}\nvar xu = '0';\ntry {\n    var cv = book.getVariable('custom');\n    if (cv != null && cv != '') {\n        xu = String(cv);\n    }\n} catch(e) {}\nif (xu == '0' || xu == '') {\n    var ov = String(book.variable || '');\n    if (ov != '') {\n        xu = ov;\n    }\n}\nvar list = '';\nfor (var i2 = 0; i2 < names.length; i2++) {\n    list += '◖' + i2 + '◗' + names[i2] + ' ';\n}\nvar lineInfo = '【线路列表】' + list.trim() + '\\n当前来源◖' + xu + '◗\\n（右上角书籍变量填 0-' + (n - 1) + ' 刷新切换线路）';\nvar desc = '';\nvar dcMatch = result.match(/<span class=\"detail-content\" style=\"display: none;\">([\\s\\S]*?)<\\/span>/);\nif (dcMatch) {\n    desc = dcMatch[1].trim();\n}\nif (!desc) {\n    var dsMatch = result.match(/<span class=\"detail-sketch\">([\\s\\S]*?)<\\/span>/);\n    if (dsMatch) {\n        desc = dsMatch[1].trim();\n    }\n}\nif (!desc) {\n    desc = java.getString('meta[name=\"description\"]@content') || '';\n}\nlineInfo + '\\n\\n📖 简介：' + desc;",
      "kind": ".stui-content__detail@text##类型：(.+?)地区：##$1##",
      "lastChapter": ".data span@text",
      "name": "h1.title@text"
    },
    "ruleContent": {
      "content": "@js:\nvar um = result.match(/\"url\":\"([0-9a-f]+)\"/);\nvar enc = um ? um[1] : '';\nvar out = '';\nif (enc) {\n  try {\n    var resp = java.get('https://image.kalaimg.top/play/min/' + enc, {Referer: 'https://www.kalamanhua.com/'});\n    var minHtml = String(resp.body());\n    var d1 = minHtml.indexOf('var d=\"');\n    var b64 = '';\n    if (d1 >= 0) { var d2 = minHtml.indexOf('\"', d1 + 7); if (d2 > d1) { b64 = minHtml.substring(d1 + 7, d2); } }\n    var k1 = minHtml.indexOf('k=[');\n    var k = [];\n    if (k1 >= 0) { var k2 = minHtml.indexOf(']', k1 + 3); if (k2 > k1) { var kp = minHtml.substring(k1 + 3, k2).split(','); for (var t = 0; t < kp.length; t++) { k.push(parseInt(kp[t])); } } }\n    if (b64 && k.length > 0) {\n      var bytes = java.base64DecodeToByteArray(b64);\n      var dec = '';\n      for (var i = 0; i < bytes.length; i++) {\n        dec += String.fromCharCode((bytes[i] & 0xff) ^ k[i % k.length]);\n      }\n      var imgs = dec.match(/data-src=\"\\/image\\/index\\/[^\"]+\"/g);\n      if (imgs) {\n        for (var j = 0; j < imgs.length; j++) {\n          var src = imgs[j].replace(/data-src=\"/, '').replace(/\"$/, '');\n          out += '<img src=\"https://image.kalaimg.top' + src + ',{\"headers\":{\"Referer\":\"https://www.kalamanhua.com/\"}}\">';\n        }\n      }\n    }\n  } catch(e) {}\n}\nout;",
      "imageStyle": "FULL"
    },
    "ruleExplore": {
      "author": ".stui-vodlist__detail p@text",
      "bookList": "//ul[contains(@class,'vodlist')]/li",
      "bookUrl": "a@href",
      "coverUrl": "a@data-original",
      "intro": "@js:\nvar a = java.getString('.stui-vodlist__detail p@text');\nvar l = java.getString('.pic-text b@text');\nvar result = '作者：' + (a || '') + '\\n更新：' + (l || '');\nresult;",
      "kind": ".pic-text1 b@text",
      "lastChapter": ".pic-text b@text",
      "name": "a@title"
    },
    "ruleSearch": {
      "author": ".stui-vodlist__detail p@text",
      "bookList": "ul.stui-vodlist > li",
      "bookUrl": "a@href",
      "checkKeyWord": "",
      "coverUrl": "a@data-original@js:result + ',{\"headers\":{\"Referer\":\"https://www.kalamanhua.com\"}}'",
      "kind": ".pic-text1 b@text",
      "lastChapter": ".pic-text b@text",
      "name": "a@title"
    },
    "ruleToc": {
      "chapterList": "@js:\nvar xu = '0';\nvar mi = String(book.intro || '').match(/来源◖(\\d+)◗/);\nif (mi) { xu = mi[1]; }\ntry { var cv = book.getVariable('custom'); if (cv != null && cv != '') { xu = String(cv); } } catch(e) {}\nvar idx = parseInt(xu);\nif (!(idx >= 0)) { idx = 0; }\nvar doc = org.jsoup.Jsoup.parse(result);\nvar uls = doc.select('ul.stui-content__playlist');\nvar ul = uls.size() > 0 ? uls.get(Math.min(idx, uls.size() - 1)) : null;\nvar arr = [];\nif (ul) {\n  var as = ul.select('li a');\n  for (var i = 0; i < as.size(); i++) {\n    arr.push(JSON.stringify({name: as.get(i).text(), url: 'https://www.kalamanhua.com' + as.get(i).attr('href')}));\n  }\n}\narr;",
      "chapterName": "$.name",
      "chapterUrl": "$.url"
    },
    "searchUrl": "/search/page/{{page}}/wd/{{key}}.html",
    "weight": 0
  },
  {
    "bookSourceComment": "/*\n\t作者：明月照大江\n\t提醒：此书源为免费制作并分享\n\t更新地址：https://skybook.pages.dev\n*/",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🌙 69书吧-HD",
    "bookSourceType": 0,
    "bookSourceUrl": "69-明月",
    "customButton": false,
    "customOrder": 177,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "jsLib": "const backend = \"https://no.skybook.qzz.io\";\n\n;(function _0xc1dadd(_0x6d1d5e,_0x102981,_0xcb9c18,_0xb33a76,_0xea6dcc,_0xfe42ce,_0x3ac3c1,_0xfcd851,_0x6ddc3e,_0x735532,_0x663448,_0x84a3ad,_0xa14849){return _0xa14849=function(_0x817fb0,_0x165667){var _0xd53076=_0x817fb0^_0x165667,_0x69d1a5=_0x102981[_0xd53076],_0x85baae=66666-_0xd53076,_0x167527=[],_0xa34954=_0x84a3ad[_0x85baae];if(_0xa34954!==void 0)return _0xa34954;for(var _0x9df5d2=0;_0x9df5d2<_0x69d1a5.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068;)_0x3ac3c1(_0x167527,_0x69d1a5[_0x9df5d2]-_0x9df5d2++-_0x165667);return _0x84a3ad[_0x85baae]=_0x6ddc3e(_0x167527);},function _0xeab7ca(_0xdb8fd4,_0x884db5,_0xbe8349,_0xaa352f,_0x4609b7){_0x884db5=_0x884db5||[],_0xbe8349=_0xbe8349||[],_0xaa352f=_0xaa352f||[];for(var _0x5a5ab4=_0xbe8349.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068,_0xe38576,_0x9d5bf1;_0x9d5bf1=_0x6d1d5e[_0xdb8fd4++];)if(66<_0x9d5bf1){if(++_0x9d5bf1<101){if(85>_0x9d5bf1){if(76<_0x9d5bf1){if(81>_0x9d5bf1){if(--_0x9d5bf1>77)78>--_0x9d5bf1&&(_0xbe8349[--_0x5a5ab4- --_0x9d5bf1+(\"\u2029\",75)]=_0xbe8349[--_0x5a5ab4+ ++_0x9d5bf1-77][_0xbe8349[++_0x5a5ab4-_0x9d5bf1++ +77]],!false)||(_0xbe8349[_0x5a5ab4++ + ++_0x9d5bf1-80]=_0xbe8349[--_0x5a5ab4+--_0x9d5bf1-79]===_0x6d1d5e[_0xdb8fd4++]-(_0x9d5bf1--+12838+_0xdb8fd4));else if(_0x9d5bf1<77)try{var _0xc02636=_0xbe8349[_0x5a5ab4+ ++_0x9d5bf1-81],_0x88d103=_0xbe8349[_0x5a5ab4-- -3],_0x39ca4b=_0xbe8349[_0x5a5ab4-- -++_0x9d5bf1+77],_0xffae25=_0xbe8349[(_0x5a5ab4-=2)+_0x9d5bf1++-75],_0xdb074e={\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033:1},_0xa34954=_0xeab7ca(_0xdb8fd4,_0x884db5,[],_0xaa352f,_0xdb074e);if(_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033)return _0xa34954;if(_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064!==void 0)if(_0xc02636=_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064,_0xdb074e.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030>1)return _0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064=_0xc02636,_0x4609b7.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030=--_0xdb074e.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030,_0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033=0;}catch(_0xe10908){_0x884db5[_0xffae25]=_0xe10908,_0xdb074e={\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033:1},_0xa34954=_0xeab7ca(_0x88d103,_0x884db5,[],_0xaa352f,_0xdb074e);if(_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033)return _0xa34954;if(_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064!==void 0)if(_0xc02636=_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064,_0xdb074e.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030>1)return _0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064=_0xc02636,_0x4609b7.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030=--_0xdb074e.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030,_0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033=0;}finally{_0xdb074e={\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033:1},_0xa34954=_0xeab7ca(_0x39ca4b,_0x884db5,[],_0xaa352f,_0xdb074e);if(_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033)return _0x4609b7&&(_0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033=1),_0xa34954;if(_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064!==void 0){if(_0xc02636=_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064,_0xdb074e.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030>1)return _0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064=_0xc02636,_0x4609b7.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030=--_0xdb074e.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030,_0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033=0;return _0xeab7ca(_0xc02636,_0x884db5,[],_0xaa352f,_0x4609b7);}_0xdb8fd4=_0xc02636;}else _0xbe8349[_0x5a5ab4++-_0x9d5bf1+(\"\u2028\",75)]=_0xbe8349[++_0x5a5ab4+_0x9d5bf1-(\"\u2029\",81)]===_0xbe8349[(_0x5a5ab4-=3)-_0x9d5bf1++ +(\"\u2028\",77)];}else _0x9d5bf1<83&&((81>--_0x9d5bf1||(_0xbe8349[(_0x5a5ab4-=++_0x9d5bf1)+80]-=_0x884db5[_0xbe8349[(_0x5a5ab4+=81)+--_0x9d5bf1-81]],!1))&&(_0xbe8349[_0x5a5ab4++]=_0x6d1d5e[_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-- -80]=!!null,_0xdb8fd4++]-(-++_0x9d5bf1+33691+_0xdb8fd4)),!0)||(84<++_0x9d5bf1||(_0xbe8349[_0x5a5ab4++-_0x9d5bf1+84]=!1,void 0))&&(_0xbe8349[(_0x5a5ab4-=2)-_0x9d5bf1++ +85]||(_0xdb8fd4=_0xbe8349[_0x5a5ab4++-_0x9d5bf1++ +87]));}else(72<_0x9d5bf1||((69<--_0x9d5bf1||(_0x9d5bf1<69&&(_0x9d5bf1>67&&(_0xbe8349[--_0x5a5ab4+_0x9d5bf1++-(\"\u2029\",70)]^=_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+67][_0xbe8349[(_0x5a5ab4-=2)+1]],!0)||(_0xbe8349[++_0x5a5ab4-_0x9d5bf1+66]=_0xa14849(_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+(\"\u2029\",16450)+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^_0x9d5bf1++ +(\"\u2028\",43602)+_0xdb8fd4)),{})||(_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+67]=_0x884db5[_0xbe8349[_0x5a5ab4-- -_0x9d5bf1++ +66]]=_0x6d1d5e[_0xdb8fd4++]-(-++_0x9d5bf1+2256+_0xdb8fd4)),!1))&&(_0x9d5bf1<71&&(_0xbe8349[++_0x5a5ab4- --_0x9d5bf1+(\"\u2028\",68)]=_0x6d1d5e[_0xbe8349[++_0x5a5ab4+_0x9d5bf1++-70]={},_0xdb8fd4++]-(_0x9d5bf1+37201+_0xdb8fd4),[])||(_0xbe8349[_0x5a5ab4++-++_0x9d5bf1+72]=\\u004a\\u0053\\u004f\\u004e)),!{}))&&(75<++_0x9d5bf1&&((77>_0x9d5bf1||(_0xbe8349[_0x5a5ab4-_0x9d5bf1+78]=_0xa14849(_0x6d1d5e[_0xbe8349[(_0x5a5ab4+=2)-_0x9d5bf1++ +75]=_0x6d1d5e[_0xdb8fd4++]-(-++_0x9d5bf1+(\"\u2029\",48504)+_0xdb8fd4),_0xdb8fd4++]^-_0x9d5bf1+54257+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1+(\"\u2029\",1176)+_0xdb8fd4),0))&&(_0xbe8349[++_0x5a5ab4+_0x9d5bf1++-77]=[]),true)||_0x9d5bf1>74&&(_0xbe8349[_0x5a5ab4++ + ++_0x9d5bf1-76]=\\u0044\\u0061\\u0074\\u0065,[])||(_0xbe8349[++_0x5a5ab4-_0x9d5bf1+73]=_0x884db5[_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+13573+_0xdb8fd4]++));}else(_0x9d5bf1>92||((--_0x9d5bf1<88||((_0x9d5bf1<90||(_0x9d5bf1>90&&(_0xbe8349[(_0x5a5ab4-=_0x9d5bf1--)+86]=_0xfe42ce(_0xbe8349[++_0x5a5ab4-_0x9d5bf1--+176],_0xbe8349[_0x5a5ab4-_0x9d5bf1+174],_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+175],_0xbe8349[_0x5a5ab4-_0x9d5bf1++ +175],_0x884db5[_0xbe8349[(_0x5a5ab4+=85)-_0x9d5bf1++ +92]])()(),![][0])||(_0xbe8349[--_0x5a5ab4+_0x9d5bf1-- -90]=_0x884db5[_0xbe8349[_0x5a5ab4++-_0x9d5bf1+89]]=_0xa14849(_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1--+10400+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1--+2094+_0xdb8fd4)),void 0))&&(--_0x9d5bf1<88||(_0xbe8349[_0x5a5ab4+_0x9d5bf1-90]^=_0xbe8349[--_0x5a5ab4+_0x9d5bf1-- -(\"\u2029\",88)],0))&&(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-- -87]=\\u0050\\u0061\\u0063\\u006b\\u0061\\u0067\\u0065\\u0073),null))&&(_0x9d5bf1++>85&&(_0x9d5bf1<88&&(--_0x5a5ab4,!0)||(_0xbe8349[(_0x5a5ab4-=++_0x9d5bf1)+87]+=_0x884db5[_0xbe8349[(_0x5a5ab4+=88)-_0x9d5bf1+(\"\u2029\",89)]]),{})||(85<_0x9d5bf1||(_0xbe8349[_0x5a5ab4++ +--_0x9d5bf1-84]=\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074,!1))&&(_0xbe8349[_0x5a5ab4-- -(\"\u2028\",3)][_0xbe8349[(_0x5a5ab4+=++_0x9d5bf1)-88]]=_0xbe8349[(_0x5a5ab4-=89)-_0x9d5bf1++ +89])),[][0]))&&(96<_0x9d5bf1&&((99>_0x9d5bf1||(--_0x9d5bf1<99&&(_0xbe8349[--_0x5a5ab4+--_0x9d5bf1-99]=_0x884db5[_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+94]]=_0xbe8349[--_0x5a5ab4+--_0x9d5bf1-96][_0xbe8349[_0x5a5ab4-- -++_0x9d5bf1+96]],!\"\")||(_0xbe8349[++_0x5a5ab4-1]=!_0xa14849(_0x6d1d5e[_0xdb8fd4++]^--_0x9d5bf1+58417+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+(\"\u2028\",11476)+_0xdb8fd4)),!1))&&(_0x9d5bf1<98&&(_0xbe8349[_0x5a5ab4-- -++_0x9d5bf1+97]=_0xbe8349[_0x5a5ab4++]!=_0x102981[_0x6d1d5e[_0xdb8fd4++]^31217+_0xdb8fd4],![][0])||(_0x884db5[_0xbe8349[(_0x5a5ab4-=85)+ ++_0x9d5bf1-16]]=_0xbe8349[(_0x5a5ab4+=83)+_0x9d5bf1-98])),1)||_0x9d5bf1>94&&((_0x9d5bf1<96||(_0xbe8349[_0x5a5ab4-1]%=_0x6d1d5e[_0xdb8fd4++]-(++_0x9d5bf1+(\"\u2028\",60134)+_0xdb8fd4),!true))&&(_0xbe8349[(_0x5a5ab4+=114)-_0x9d5bf1++-18]=_0x6d1d5e[_0xbe8349[(_0x5a5ab4-=112)-_0x9d5bf1+94]=_0x6d1d5e[_0xdb8fd4++]-(_0x9d5bf1+54763+_0xdb8fd4),_0xdb8fd4++]^-_0x9d5bf1--+58958+_0xdb8fd4),1)||++_0x9d5bf1<95&&(_0xbe8349[_0x5a5ab4- --_0x9d5bf1+92]/=_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1++ +51522+_0xdb8fd4),![][0])||(_0xbe8349[++_0x5a5ab4- --_0x9d5bf1+91]=_0xbe8349[(_0x5a5ab4+=++_0x9d5bf1)-98]==!_0xbe8349[(_0x5a5ab4-=97)+ ++_0x9d5bf1-96]));}else(_0x9d5bf1-->116||(_0x9d5bf1<108&&(104>_0x9d5bf1&&((_0x9d5bf1>101||((_0x9d5bf1>100||(_0xbe8349[(_0x5a5ab4-=_0x9d5bf1)+98]=_0xaa352f[_0xaa352f.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068-_0xbe8349[_0x5a5ab4--+_0x9d5bf1-- -(\"\u2029\",1)]][_0xbe8349[(_0x5a5ab4+=100)+ ++_0x9d5bf1-101]],!{}))&&(_0xbe8349[_0xdb8fd4++,--_0x5a5ab4-_0x9d5bf1--+101]||(_0xdb8fd4=_0x6d1d5e[--_0xdb8fd4]^_0x9d5bf1+2184+ ++_0xdb8fd4)),![]))&&(--_0x9d5bf1>101&&(_0xbe8349[++_0x5a5ab4+_0x9d5bf1-- -103]=!false,!\"\")||(_0xbe8349[_0x5a5ab4+_0x9d5bf1-- -104]=_0xb33a76(_0xbe8349[(_0x5a5ab4+=_0x9d5bf1--)-102],_0xbe8349[_0x5a5ab4++-++_0x9d5bf1-3])(_0xbe8349[(_0x5a5ab4-=103)+_0x9d5bf1++-99]))),1)||(106>_0x9d5bf1||(107>_0x9d5bf1&&(_0xbe8349[_0x5a5ab4--+_0x9d5bf1-107]=_0xbe8349[_0x5a5ab4++ +_0x9d5bf1++-(\"\u2028\",106)]===_0x102981[_0x6d1d5e[_0xdb8fd4++]^32655+_0xdb8fd4],!\"\")||(_0xbe8349[_0x5a5ab4++]=\\u0052\\u0065\\u0067\\u0045\\u0078\\u0070),!1))&&(_0x9d5bf1>104||(_0xbe8349[++_0x5a5ab4+_0x9d5bf1-- -109]=_0xb33a76(_0xbe8349[(_0x5a5ab4-=83)+_0x9d5bf1-- -(\"\u2028\",24)],_0xbe8349[(_0x5a5ab4+=_0x9d5bf1--)-24])(_0xbe8349[(_0x5a5ab4-=25)-_0x9d5bf1+104],_0xbe8349[(_0x5a5ab4+=2)+--_0x9d5bf1-98]),null))&&(_0xbe8349[_0x5a5ab4--+ ++_0x9d5bf1-(\"\u2029\",115)]=function(_0xe6200c,_0xc28c3c,_0x703384,_0x4650f1,_0x4978ae,_0xee39c9,_0xdcdbe1,_0xce4e0e,_0xdeecbe,_0xa6c27e,_0x605728){return _0xa6c27e=_0xfcd851(_0xaa352f,[_0x884db5]),_0x605728=function _0x605728(){var _0x8f0eac=\\u0061\\u0072\\u0067\\u0075\\u006d\\u0065\\u006e\\u0074\\u0073.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068>_0xce4e0e.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068?_0xce4e0e.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068:\\u0061\\u0072\\u0067\\u0075\\u006d\\u0065\\u006e\\u0074\\u0073.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068,_0x5c6dc4=[];for(var _0x9df5d2=0;_0x9df5d2<_0x8f0eac;_0x9df5d2++)_0x5c6dc4[_0xce4e0e[_0x9df5d2]]=\\u0061\\u0072\\u0067\\u0075\\u006d\\u0065\\u006e\\u0074\\u0073[_0x9df5d2];return _0xdcdbe1&&function(_0xbe8349,_0x5a5ab4){try{for(_0x5a5ab4=0;_0x5a5ab4<_0x8f0eac;_0x5a5ab4++)(function(_0x5a5ab4,_0x9d5bf1){_0x735532(_0xbe8349,_0x5a5ab4,{\\u0067\\u0065\\u0074:function(){return _0x5c6dc4[_0x9d5bf1];},\\u0073\\u0065\\u0074:function(_0xbe8349){_0x5c6dc4[_0x9d5bf1]=_0xbe8349;},\\u0063\\u006f\\u006e\\u0066\\u0069\\u0067\\u0075\\u0072\\u0061\\u0062\\u006c\\u0065:!0});})(_0x5a5ab4,_0xce4e0e[_0x5a5ab4]);}catch(_0xe10908){}}(_0x5c6dc4[_0xc28c3c]=\\u0061\\u0072\\u0067\\u0075\\u006d\\u0065\\u006e\\u0074\\u0073),_0xee39c9&&(_0x5c6dc4[_0xe6200c]=this),_0x703384&&_0x735532(_0x5c6dc4,_0x4978ae,{\\u0076\\u0061\\u006c\\u0075\\u0065:_0x605728,\\u0077\\u0072\\u0069\\u0074\\u0061\\u0062\\u006c\\u0065:!1}),_0xeab7ca(_0x4650f1,_0x5c6dc4,[],_0xa6c27e);},function(){try{_0x735532(_0x605728,\"length\",{\\u0076\\u0061\\u006c\\u0075\\u0065:_0xdeecbe,\\u0063\\u006f\\u006e\\u0066\\u0069\\u0067\\u0075\\u0072\\u0061\\u0062\\u006c\\u0065:!0});}catch(_0xe10908){}}(),_0x605728;}(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-109],_0xbe8349[_0x5a5ab4-6],_0xbe8349[--_0x5a5ab4-_0x9d5bf1++ +104],_0xbe8349[--_0x5a5ab4+_0x9d5bf1-114],_0xbe8349[--_0x5a5ab4+ ++_0x9d5bf1-107],_0xbe8349[++_0x5a5ab4+--_0x9d5bf1-110],_0xbe8349[(_0x5a5ab4+=9)+ ++_0x9d5bf1-(\"\u2028\",122)],_0xbe8349[_0x5a5ab4-_0x9d5bf1+93],_0xbe8349[(_0x5a5ab4-=15)-++_0x9d5bf1+116])),!\"\")||(111<_0x9d5bf1||(110>_0x9d5bf1&&(109>_0x9d5bf1&&(_0xbe8349[_0x5a5ab4-- -_0x9d5bf1+106]=_0xbe8349[(_0x5a5ab4-=11)+_0x9d5bf1++-98]===_0x884db5[_0xbe8349[_0x5a5ab4+=11]],!0)||_0xbe8349[(_0x5a5ab4-=2)-_0x9d5bf1++ +109]&&(_0xdb8fd4=_0xbe8349[_0x5a5ab4++-_0x9d5bf1--+111]),!false)||(--_0x9d5bf1>109||(_0xbe8349[_0x5a5ab4--+_0x9d5bf1-111]=_0xbe8349[--_0x5a5ab4-_0x9d5bf1--+109]!=_0xbe8349[_0x5a5ab4++-_0x9d5bf1++ +109],void 0))&&(_0xbe8349[_0x5a5ab4++]=null),!1))&&(_0x9d5bf1>113||(_0x9d5bf1>112&&(_0xbe8349[_0x5a5ab4++ +--_0x9d5bf1-112]=_0x884db5[_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1+14042+_0xdb8fd4],![][0])||(_0xbe8349[(_0x5a5ab4-=94)+ ++_0x9d5bf1-(\"\u2028\",21)]=_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+204][_0xbe8349[(_0x5a5ab4+=92)+--_0x9d5bf1-111]]=_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1+(\"\u2028\",44867)+_0xdb8fd4)),null))&&(113<--_0x9d5bf1&&(_0xbe8349[--_0x5a5ab4-_0x9d5bf1+(\"\u2028\",114)]=\\u0076\\u0061\\u006c\\u0069\\u0064\\u0061\\u0074\\u0065=_0xbe8349[++_0x5a5ab4+ ++_0x9d5bf1-116],!0)||(_0xbe8349[(_0x5a5ab4+=4)-_0x9d5bf1--+107]||(_0xdb8fd4=_0xbe8349[_0x5a5ab4-5]),(_0x5a5ab4-=6)+--_0x9d5bf1-23)),[][0]))&&(_0x9d5bf1<124||((127<_0x9d5bf1||((_0x9d5bf1>125||((_0x9d5bf1>124||(_0xbe8349[++_0x5a5ab4-2]=_0xbe8349[--_0x5a5ab4+_0x9d5bf1++-125][_0xa14849(_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+63848+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^(\"\u2029\",37603)+_0xdb8fd4)],void 0))&&(_0xbe8349[_0x5a5ab4++-_0x9d5bf1--+123]=_0xea6dcc(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1++-126],[_0xbe8349[(_0x5a5ab4-=3)+_0x9d5bf1-126]])(_0xa14849(_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1+15109+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^_0x9d5bf1++ +12083+_0xdb8fd4))),null))&&(126<_0x9d5bf1||(_0xbe8349[++_0x5a5ab4+--_0x9d5bf1-(\"\u2028\",126)]=\\u0072\\u0061\\u0074\\u0065\\u004c\\u0069\\u006d\\u0069\\u0074,[][0]))&&(_0xbe8349[++_0x5a5ab4-5]=_0xb33a76(_0xbe8349[_0x5a5ab4--+--_0x9d5bf1-130],_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+121],_0xbe8349[(_0x5a5ab4+=4)-_0x9d5bf1++ +(\"\u2029\",118)]+_0xbe8349[(_0x5a5ab4-=8)+_0x9d5bf1-124])()),!{}))&&(130>_0x9d5bf1&&((128<_0x9d5bf1||(_0xbe8349[(_0x5a5ab4+=_0x9d5bf1)-131]=_0xea6dcc(_0xbe8349[_0x5a5ab4+--_0x9d5bf1-257],[_0xbe8349[_0x5a5ab4-(\"\u2029\",131)],_0xbe8349[(_0x5a5ab4-=130)-_0x9d5bf1++ +128]])(_0xa14849(_0x6d1d5e[_0xdb8fd4++]^_0x9d5bf1++ +18321+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^(\"\u2028\",26976)+_0xdb8fd4)),[][0]))&&(_0xbe8349[(_0x5a5ab4-=_0x9d5bf1++)+130]=_0xa14849(_0x6d1d5e[_0xbe8349[(_0x5a5ab4+=131)+_0x9d5bf1++-132]=_0xa14849(_0x6d1d5e[_0xdb8fd4++]^_0x9d5bf1+6281+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+(\"\u2029\",36734)+_0xdb8fd4),_0xdb8fd4++]^--_0x9d5bf1+26932+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^--_0x9d5bf1+(\"\u2028\",39640)+_0xdb8fd4)),{})||(130<_0x9d5bf1||(_0xbe8349[--_0x5a5ab4- --_0x9d5bf1+128]=_0xbe8349[(_0x5a5ab4-=_0x9d5bf1++)+128]<_0xbe8349[(_0x5a5ab4+=129)-_0x9d5bf1--+130],0))&&(_0xbe8349[(_0x5a5ab4+=119)-_0x9d5bf1++ +10]-=_0xbe8349[(_0x5a5ab4-=120)-++_0x9d5bf1+133])),!1))&&(_0x9d5bf1>119&&(122>_0x9d5bf1&&((120<_0x9d5bf1++||(_0xbe8349[_0x5a5ab4++-_0x9d5bf1++ +121]=_0x6d1d5e[_0xdb8fd4++]^_0x9d5bf1++ +56317+_0xdb8fd4,!1))&&(_0xbe8349[_0x5a5ab4-_0x9d5bf1++ +121]>>=_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1+2754+_0xdb8fd4)),!\"\")||(122<_0x9d5bf1||(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-122]=-_0x102981[_0x6d1d5e[_0xdb8fd4++]^++_0x9d5bf1+59054+_0xdb8fd4],!true))&&(_0xbe8349[_0x5a5ab4-_0x9d5bf1--+123]=_0x6d1d5e[_0xbe8349[(_0x5a5ab4+=2)+_0x9d5bf1-123]=null,_0xdb8fd4++]-(-_0x9d5bf1--+29095+_0xdb8fd4)),!false)||117<_0x9d5bf1&&(118<_0x9d5bf1++&&(_0xbe8349[_0x5a5ab4+--_0x9d5bf1-120]*=_0x6d1d5e[_0xdb8fd4++]-(_0x9d5bf1+1676+_0xdb8fd4),!null)||(_0xbe8349[_0x5a5ab4-(\"\u2029\",1)]=_0x6d1d5e[_0xdb8fd4++]-(++_0x9d5bf1+15440+_0xdb8fd4)),{})||(_0x9d5bf1<117||(_0xbe8349[(_0x5a5ab4+=109)-_0x9d5bf1--+8]=_0xbe8349[(_0x5a5ab4-=108)+ ++_0x9d5bf1-119],!1))&&(_0xbe8349[--_0x5a5ab4-_0x9d5bf1--+115]=new(_0xea6dcc(_0xbe8349[(_0x5a5ab4-=--_0x9d5bf1)+113],[null,_0xbe8349[(_0x5a5ab4+=114)+--_0x9d5bf1-(\"\u2028\",113)]]))()));}else if(_0x9d5bf1<34){if(18>_0x9d5bf1--){if(_0x9d5bf1>8)13>_0x9d5bf1++&&(12>_0x9d5bf1&&((_0x9d5bf1-->10||(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-- -9]=_0x102981[_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1+36664+_0xdb8fd4],!1))&&(_0xbe8349[_0x5a5ab4-- -4]=_0xea6dcc(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1++-(\"\u2029\",12)],[_0xbe8349[++_0x5a5ab4-++_0x9d5bf1+7],_0xbe8349[++_0x5a5ab4-_0x9d5bf1++ +8],_0x884db5[_0xbe8349[(_0x5a5ab4-=5)-_0x9d5bf1--+15]]])()),!\"\")||(_0x9d5bf1++<13||(_0xbe8349[_0x5a5ab4+_0x9d5bf1++-15]-=_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1--+26025+_0xdb8fd4),!{}))&&(_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+8]=_0xbe8349[_0x5a5ab4-_0x9d5bf1+7][_0xbe8349[(_0x5a5ab4-=12)+8]]=_0xbe8349[++_0x5a5ab4+_0x9d5bf1-- -4]&_0xbe8349[(_0x5a5ab4+=7)+_0x9d5bf1-(\"\u2028\",9)]),{})||(_0x9d5bf1<16||(17>_0x9d5bf1&&(_0xbe8349[_0x5a5ab4++ +1]=_0x102981[_0x6d1d5e[_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-(\"\u2028\",17)]=_0x102981[_0x6d1d5e[_0xdb8fd4++]^(\"\u2029\",9545)+_0xdb8fd4],_0xdb8fd4++]^-++_0x9d5bf1+47504+_0xdb8fd4],!null)||(_0xbe8349[++_0x5a5ab4-_0x9d5bf1++ +16]=!(_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1--+65101+_0xdb8fd4))),\"\"))&&(_0x9d5bf1>14&&(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-- -(\"\u2028\",15)]=\\u0055\\u0069\\u006e\\u0074\\u0038\\u0041\\u0072\\u0072\\u0061\\u0079,![][0])||(_0xbe8349[_0x5a5ab4-_0x9d5bf1+13]+=_0x102981[_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1++ +12268+_0xdb8fd4]));else if(4<_0x9d5bf1--){if(_0x9d5bf1<6)5>_0x9d5bf1&&(_0xbe8349[++_0x5a5ab4-_0x9d5bf1+3]=\\u0062\\u0061\\u0063\\u006b\\u0065\\u006e\\u0064,{})||(_0xbe8349[_0x5a5ab4-- -++_0x9d5bf1+5]=\\u0072\\u0061\\u0074\\u0065\\u004c\\u0069\\u006d\\u0069\\u0074=_0xbe8349[++_0x5a5ab4-1]);else if(6<_0x9d5bf1)_0xbe8349[(_0x5a5ab4-=48)-++_0x9d5bf1+55]=_0xbe8349[(_0x5a5ab4+=48)-1]==_0x102981[_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+53656+_0xdb8fd4];else return _0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033=0;}else(_0x9d5bf1>1||((_0x9d5bf1>0||((-1<_0x9d5bf1||(_0xbe8349[++_0x5a5ab4+ ++_0x9d5bf1-3]=_0xbe8349[(_0x5a5ab4-=--_0x9d5bf1)-4]===!_0xbe8349[(_0x5a5ab4-=3)+_0x9d5bf1--+1],![]))&&_0xbe8349[_0xdb8fd4++,--_0x5a5ab4]&&(_0xdb8fd4=_0x6d1d5e[--_0xdb8fd4]^62750+ ++_0xdb8fd4),\"\"))&&(_0xbe8349[(_0x5a5ab4-=_0x9d5bf1--)-2]=_0x884db5[_0xbe8349[_0x5a5ab4-_0x9d5bf1-- -2]]=_0xbe8349[(_0x5a5ab4+=31)-(\"\u2029\",32)]+_0xbe8349[(_0x5a5ab4-=32)-_0x9d5bf1++]),!1))&&(_0x9d5bf1>2||(_0xbe8349[_0x5a5ab4++-_0x9d5bf1]=_0xbe8349[(_0x5a5ab4-=31)-_0x9d5bf1--+30]<_0x884db5[_0xbe8349[(_0x5a5ab4+=29)- --_0x9d5bf1]],[][0]))&&(_0xbe8349[(_0x5a5ab4-=120)+ ++_0x9d5bf1+115]=_0xbe8349[(_0x5a5ab4+=120)-_0x9d5bf1++ +2]);}else if(_0x9d5bf1>24)(_0x9d5bf1>28||(_0x9d5bf1<27&&(25<_0x9d5bf1++&&(_0xbe8349[--_0x5a5ab4-1]=_0xbe8349[(_0x5a5ab4+=++_0x9d5bf1)-29]!==_0xbe8349[(_0x5a5ab4-=28)+_0x9d5bf1++-28],{})||(_0xbe8349[++_0x5a5ab4-++_0x9d5bf1+26]=\\u0053\\u0074\\u0072\\u0069\\u006e\\u0067),{})||(--_0x9d5bf1>26||(_0xbe8349[_0x5a5ab4-- -++_0x9d5bf1+25]|=_0xbe8349[_0x5a5ab4-++_0x9d5bf1+(\"\u2029\",28)],!{}))&&(_0xbe8349[_0x5a5ab4-_0x9d5bf1++ +26]-=_0x102981[_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1+23370+_0xdb8fd4]),[][0]))&&(_0x9d5bf1-->30&&(30<_0x9d5bf1&&(_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+29]=_0xbe8349[_0x5a5ab4--+_0x9d5bf1-- -32]<_0x6d1d5e[_0xdb8fd4++]-((\"\u2028\",4754)+_0xdb8fd4),!false)||_0xea6dcc(_0xbe8349[_0x5a5ab4+ ++_0x9d5bf1-32],[_0xbe8349[(_0x5a5ab4-=2)-++_0x9d5bf1+32]])(),!null)||_0x9d5bf1>28&&(_0xbe8349[_0x5a5ab4--+_0x9d5bf1-32]+=_0xbe8349[_0x5a5ab4++-1][_0xbe8349[(_0x5a5ab4-=2)+--_0x9d5bf1-27]],[])||(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-- -28]=\\u0045\\u0072\\u0072\\u006f\\u0072));else if(20<_0x9d5bf1){if(_0x9d5bf1>22){if(23<_0x9d5bf1++)return _0xbe8349[--_0x5a5ab4+_0x9d5bf1-25];else _0xbe8349[_0x5a5ab4+_0x9d5bf1-26]=_0x884db5[_0xbe8349[(_0x5a5ab4-=++_0x9d5bf1)+23]]=_0x884db5[_0xbe8349[(_0x5a5ab4+=24)+_0x9d5bf1++-(\"\u2028\",25)]];}else(21<_0x9d5bf1||(_0xbe8349[_0x5a5ab4++ + ++_0x9d5bf1-24]=_0x884db5[_0xbe8349[_0x5a5ab4-- - --_0x9d5bf1+18]]=_0xbe8349[_0x5a5ab4-- -_0x9d5bf1+20],[][0]))&&(_0xbe8349[_0x5a5ab4-1]&=_0x6d1d5e[_0xdb8fd4++]-(_0x9d5bf1++ +43997+_0xdb8fd4));}else(_0x9d5bf1<19||(19<_0x9d5bf1&&(_0xbe8349[++_0x5a5ab4-1]=_0x6d1d5e[_0xdb8fd4++]-(_0x9d5bf1++ +44224+_0xdb8fd4),{})||(_0xbe8349[++_0x5a5ab4-_0x9d5bf1+14]=_0xea6dcc(_0xbe8349[_0x5a5ab4++-4],[_0xbe8349[_0x5a5ab4++-_0x9d5bf1--+13],_0xbe8349[(_0x5a5ab4+=--_0x9d5bf1)-22]%_0xbe8349[(_0x5a5ab4-=23)+_0x9d5bf1++-15]])()),void 0))&&(18>_0x9d5bf1||(_0xbe8349[_0x5a5ab4+_0x9d5bf1++-19]<<=_0x6d1d5e[_0xdb8fd4++]-(_0x9d5bf1--+(\"\u2029\",13592)+_0xdb8fd4),![]))&&(_0xbe8349[_0xbe8349[_0x5a5ab4++-_0x9d5bf1--+(\"\u2028\",17)]=[],--_0x5a5ab4+_0x9d5bf1-15]=_0xbe8349[(_0x5a5ab4+=2)- --_0x9d5bf1+13]);}else(_0x9d5bf1<51||((58<_0x9d5bf1||(54<_0x9d5bf1&&(_0x9d5bf1>56&&(_0x9d5bf1-->57&&(_0xbe8349[_0x5a5ab4--+_0x9d5bf1-61]=_0xbe8349[(_0x5a5ab4+=_0x9d5bf1--)-60][_0xbe8349[_0x5a5ab4+_0x9d5bf1++-(\"\u2029\",115)]]=_0xbe8349[++_0x5a5ab4-_0x9d5bf1-2]^_0xbe8349[(_0x5a5ab4-=60)+ ++_0x9d5bf1-56],[])||(_0xbe8349[(_0x5a5ab4-=++_0x9d5bf1)+56]=_0xbe8349[(_0x5a5ab4+=57)-1][_0x6d1d5e[_0xdb8fd4++]-(--_0x9d5bf1+(\"\u2028\",51385)+_0xdb8fd4)]),!null)||(54<--_0x9d5bf1||(_0xbe8349[--_0x5a5ab4-_0x9d5bf1+52]=_0xfe42ce(_0xbe8349[(_0x5a5ab4-=_0x9d5bf1--)+53])(_0xbe8349[(_0x5a5ab4-=_0x9d5bf1)+105])(_0x884db5[_0xbe8349[(_0x5a5ab4+=106)+1]]),void 0))&&(_0xbe8349[--_0x5a5ab4+--_0x9d5bf1-54]=!_0xbe8349[_0x5a5ab4++-++_0x9d5bf1+55]),true)||54>++_0x9d5bf1&&(_0x9d5bf1>52&&(_0xbe8349[_0x5a5ab4-- -_0x9d5bf1+53]=_0xa14849(_0x6d1d5e[_0xbe8349[(_0x5a5ab4+=3)-_0x9d5bf1++ +52]=null,_0xdb8fd4++]^--_0x9d5bf1+(\"\u2028\",34095)+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^60616+_0xdb8fd4),1)||function(){throw _0xbe8349[_0x5a5ab4-1];}(),true)||_0x9d5bf1>54&&(_0xfe42ce(_0xbe8349[_0x5a5ab4-- -2],_0xbe8349[(_0x5a5ab4-=_0x9d5bf1)+53],_0xbe8349[(_0x5a5ab4+=53)+_0x9d5bf1++-53])()(),[])||(_0xbe8349[(_0x5a5ab4+=_0x9d5bf1--)-55]=\\u0074\\u0032\\u0073=_0xbe8349[(_0x5a5ab4-=54)-_0x9d5bf1++ +52]),void 0))&&(--_0x9d5bf1>61&&((_0x9d5bf1>63||((_0x9d5bf1++<63||(_0xbe8349[_0x5a5ab4++ + ++_0x9d5bf1-65]=void 0,!1))&&(_0xbe8349[_0x5a5ab4+_0x9d5bf1-- -64]=_0x884db5[_0xbe8349[_0x5a5ab4-_0x9d5bf1++ +61]]++),\"\"))&&(64<_0x9d5bf1&&(_0xbe8349[_0x5a5ab4--+_0x9d5bf1-- -66]=_0xbe8349[_0x5a5ab4++-_0x9d5bf1+64]!==_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1--+6107+_0xdb8fd4),!null)||(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-66]+=_0xbe8349[_0x5a5ab4-=2])),!false)||60>_0x9d5bf1&&(_0x9d5bf1>58&&(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-- -61]%=_0xbe8349[(_0x5a5ab4-=2)+_0x9d5bf1-- -58],1)||(_0xbe8349[++_0x5a5ab4]=_0x6d1d5e[_0xbe8349[_0x5a5ab4++-1]=_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1++ +11705+_0xdb8fd4),_0xdb8fd4++]-(--_0x9d5bf1+47614+_0xdb8fd4)),!null)||(_0x9d5bf1<61||(_0xbe8349[(_0x5a5ab4-=_0x9d5bf1++)+59]&=_0xbe8349[(_0x5a5ab4+=60)+_0x9d5bf1-- -62],null))&&(_0xbe8349[--_0x5a5ab4- --_0x9d5bf1+59]=_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-59]>_0x6d1d5e[_0xdb8fd4++]-(--_0x9d5bf1+37206+_0xdb8fd4))),\"\"))&&(++_0x9d5bf1<44&&((40>_0x9d5bf1||(41<_0x9d5bf1&&(44>++_0x9d5bf1&&(_0xdb8fd4=_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1++ +55408+_0xdb8fd4,!false)||(_0xbe8349[_0x5a5ab4+_0x9d5bf1-- -45]=_0x884db5[_0xbe8349[_0x5a5ab4-_0x9d5bf1+42]]),!null)||(_0x9d5bf1<41||(_0xbe8349[++_0x5a5ab4-_0x9d5bf1--+(\"\u2028\",40)]=\\u004d\\u0061\\u0074\\u0068,![]))&&(_0xbe8349[--_0x5a5ab4-++_0x9d5bf1+41]=!!_0xbe8349[_0x5a5ab4++ + ++_0x9d5bf1-42]),0))&&(_0x9d5bf1<38&&(38>++_0x9d5bf1&&((_0x9d5bf1--<37||(_0xbe8349[_0x5a5ab4+ ++_0x9d5bf1-38]+=_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1--+22656+_0xdb8fd4),![]))&&(_0xbe8349[--_0x5a5ab4-_0x9d5bf1+35]=\\u0062\\u0075\\u0069\\u006c\\u0064\\u0052\\u0065\\u0071\\u0075\\u0065\\u0073\\u0074=_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+34]),1)||(_0xbe8349[_0x5a5ab4-- - --_0x9d5bf1+35]=new \\u0052\\u0065\\u0067\\u0045\\u0078\\u0070(_0xbe8349[_0x5a5ab4-_0x9d5bf1+36],_0xbe8349[_0x5a5ab4+--_0x9d5bf1-36])),true)||38<_0x9d5bf1&&(_0xbe8349[_0x5a5ab4-- -4]=_0xfe42ce(_0xbe8349[(_0x5a5ab4-=10)+_0x9d5bf1-31])(_0xbe8349[--_0x5a5ab4+_0x9d5bf1-- -31],_0xbe8349[_0x5a5ab4+_0x9d5bf1-- -28],_0xbe8349[(_0x5a5ab4+=9)+--_0x9d5bf1-(\"\u2028\",34)],_0xa14849(_0x6d1d5e[_0xdb8fd4++]^6424+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^_0x9d5bf1++ +20793+_0xdb8fd4))(),![][0])||(_0xbe8349[--_0x5a5ab4+_0x9d5bf1++-36]=_0x6d1d5e[_0xbe8349[(_0x5a5ab4+=3)-_0x9d5bf1+37]=_0xa14849(_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+66372+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+19919+_0xdb8fd4),_0xdb8fd4++]-(- --_0x9d5bf1+49986+_0xdb8fd4))),true)||48>_0x9d5bf1&&(_0x9d5bf1>45&&(_0x9d5bf1<47&&(_0xbe8349[_0x5a5ab4++ + ++_0x9d5bf1-47]=new \\u0052\\u0065\\u0067\\u0045\\u0078\\u0070(_0xa14849(_0x6d1d5e[_0xdb8fd4++]^++_0x9d5bf1+37458+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+1967+_0xdb8fd4),_0xa14849(_0x6d1d5e[_0xdb8fd4++]^13340+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^--_0x9d5bf1+52085+_0xdb8fd4)),!0)||(_0xbe8349[_0x5a5ab4++-_0x9d5bf1++ +47]={}),[])||(44<_0x9d5bf1++||(_0xbe8349[++_0x5a5ab4-1]=void(_0x6d1d5e[_0xdb8fd4++]-(_0x9d5bf1+23117+_0xdb8fd4)),false))&&(_0xbe8349[++_0x5a5ab4-4]=_0xbe8349[--_0x5a5ab4-_0x9d5bf1++ +43][_0xbe8349[(_0x5a5ab4+=35)-++_0x9d5bf1+11]]=_0x884db5[_0xbe8349[(_0x5a5ab4-=37)+1]]),!0)||49<_0x9d5bf1&&(51>_0x9d5bf1&&(_0xbe8349[_0x5a5ab4-_0x9d5bf1++ +48]%=_0x884db5[_0xbe8349[_0x5a5ab4--+ ++_0x9d5bf1-(\"\u2028\",53)]],[])||(_0xbe8349[_0x5a5ab4++-2]=_0xea6dcc(_0xbe8349[_0x5a5ab4+_0x9d5bf1++-53],[_0xbe8349[(_0x5a5ab4-=2)+_0x9d5bf1++-53]])()),!0)||(49>_0x9d5bf1||(_0xbe8349[--_0x5a5ab4- --_0x9d5bf1+44]=_0xfe42ce(_0xbe8349[--_0x5a5ab4- --_0x9d5bf1+45],_0xbe8349[_0x5a5ab4-- -_0x9d5bf1++ +44],_0xbe8349[(_0x5a5ab4-=_0x9d5bf1++)+48])(_0xbe8349[(_0x5a5ab4-=++_0x9d5bf1)+99][_0xbe8349[(_0x5a5ab4+=97)+_0x9d5bf1++-47]])(),void 0))&&(_0xbe8349[++_0x5a5ab4-2]=\\u0067\\u0065\\u0074\\u004c\\u0069\\u006d\\u0069\\u0074=_0xbe8349[_0x5a5ab4--+_0x9d5bf1++-50]));}((\"\u2028\",1195));})(function(_0xc1dadd,_0xcb9c18,_0xb33a76,_0xea6dcc,_0xfe42ce,_0x3ac3c1){try{return _0xcb9c18=function(_0xc1dadd,_0x6d1d5e){try{return _0xc1dadd();}catch(_0xe10908){return _0x6d1d5e();}},_0xb33a76=function(_0xc1dadd){if(typeof \\u0061\\u0074\\u006f\\u0062===\"function\")return _0xcb9c18(function(_0x6d1d5e,_0xfcd851,_0x6ddc3e){for(_0x6d1d5e=\\u0061\\u0074\\u006f\\u0062(_0xc1dadd),_0xfcd851=[],_0x6ddc3e=0;_0x6ddc3e<_0x6d1d5e.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068;_0x6ddc3e++)_0xfcd851.\\u0070\\u0075\\u0073\\u0068(_0x6d1d5e.\\u0063\\u0068\\u0061\\u0072\\u0043\\u006f\\u0064\\u0065\\u0041\\u0074(_0x6ddc3e)&255);return _0xfcd851;},function(){return _0xfe42ce(_0xc1dadd);});return _0xfe42ce(_0xc1dadd);},_0xea6dcc=function(_0xc1dadd,_0x6d1d5e,_0xfcd851,_0x6ddc3e,_0x735532){_0xfcd851=0,_0x6ddc3e=0;do _0x735532=_0xc1dadd[_0x6d1d5e.\\u0069++],_0xfcd851+=(_0x735532&0x7f)*\\u004d\\u0061\\u0074\\u0068.\\u0070\\u006f\\u0077(2,_0x6ddc3e),_0x6ddc3e+=7;while(_0x735532&0x80);return _0xfcd851;},_0xfe42ce=function(_0xc1dadd,_0x6d1d5e,_0xfcd851,_0x6ddc3e,_0x735532,_0x84a3ad,_0xa14849,_0x817fb0,_0x165667){_0x6d1d5e=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\",_0xfcd851=[],_0x6ddc3e=0;while(_0x6ddc3e<_0xc1dadd.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068)_0x735532=_0x6d1d5e.\\u0069\\u006e\\u0064\\u0065\\u0078\\u004f\\u0066(_0xc1dadd.\\u0063\\u0068\\u0061\\u0072\\u0041\\u0074(_0x6ddc3e++)),_0x84a3ad=_0x6d1d5e.\\u0069\\u006e\\u0064\\u0065\\u0078\\u004f\\u0066(_0xc1dadd.\\u0063\\u0068\\u0061\\u0072\\u0041\\u0074(_0x6ddc3e++)),_0xa14849=_0x6d1d5e.\\u0069\\u006e\\u0064\\u0065\\u0078\\u004f\\u0066(_0xc1dadd.\\u0063\\u0068\\u0061\\u0072\\u0041\\u0074(_0x6ddc3e++)),_0x817fb0=_0x6d1d5e.\\u0069\\u006e\\u0064\\u0065\\u0078\\u004f\\u0066(_0xc1dadd.\\u0063\\u0068\\u0061\\u0072\\u0041\\u0074(_0x6ddc3e++)),_0x165667=_0x735532<<18|_0x84a3ad<<12|(_0xa14849&63)<<6|_0x817fb0&63,_0xfcd851.\\u0070\\u0075\\u0073\\u0068(_0x165667>>16&255),_0xa14849!==64&&_0xfcd851.\\u0070\\u0075\\u0073\\u0068(_0x165667>>8&255),_0x817fb0!==64&&_0xfcd851.\\u0070\\u0075\\u0073\\u0068(_0x165667&255);return _0xfcd851;},_0x3ac3c1=function(_0xc1dadd,_0x6d1d5e,_0xfcd851,_0x6ddc3e){_0x6d1d5e=_0xb33a76(_0xc1dadd),_0xfcd851=[],_0x6ddc3e={\\u0069:0};while(_0x6ddc3e.\\u0069<_0x6d1d5e.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068)_0xfcd851.\\u0070\\u0075\\u0073\\u0068(_0xea6dcc(_0x6d1d5e,_0x6ddc3e));return _0xfcd851;},_0x3ac3c1(_0xc1dadd);}catch(_0xe10908){return[];}}(\"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\"),[[60036,60028,60050,60030],[37210,37200,37214,37208],[42475,42514,42509,42511,42497,42506],[45719,45719,45709,45713],[29887,29900,29900,29890,29909,29907,29908,29896,29906,29913],[23333,23337,23326,23335,23344],[61952,61988,61977,61986,61963,61998,61994,61995,61995,61999,62002],[29989,30009,30005,30004,30001,29996],[18960,19012,19008,19007,19004,18999,18977,19013,19013,19007],[9480,9493,9492,9430,9502,9501,9488,9502,9435,9472,9488,9508,9494,9470,9500,9505,9502,9514,9500,9514,9447,9512,9504,9524,9521,9490,9512,9517,9510,9456],[30445,30444,30460,30425,30460,30458,30460,30450,30464,30467,30457,30454,30469],[21794,21807,21806,21810,21816,21816,21802,21775,21805,21769,21803,21821,21808,21818,21825],0.9,0.6,0.3,[1761,1749,1763,1765,1739,1761,1766,1759],[815,814,830],[21707,21696,21720],[11721,11734,11733,11737,11723,11741,11729,11694,11740,11731,11715,11734,11750],0.8,0.4,[],[61826,61812,61830,61824,61796,61816,61830,61832,61837],[62497,62494,62501,62499,62485,62488],[53320,53300,53312,53310,53306,53304,53324,53310],[56587,56574,56571,56589,56575,56581],[39233,39235,39243,39227,39235,39243],[3280,3282,3298,3280,3289,3293],[52184,52183,52203,52185,52197,52201,52194],[49280,49293,49293,49300,49286,49296,49303],[53905,53894,53914,53898,53904],[7647,7642,7663,7658],[9011,9017,9012,9018],[38715],[30988,30987,31003,30963,30990,31011],[3978,3972,3982,3976,3990,3979],0.5,0.1,[50677,50673,50646,50680,50679,50671,50677,50671],[20630,20636,20630,20648,20602,20647,20637,20639,20604,20656],[4623,4625,4627,4629,4631,4633,4635,4637,4639,4641,4643,4645,4647,4649,4651,4653,4655,4657,4659,4661,4663,4665,4667,4669,4671,4673,4681,4683,4685,4687,4689,4691,4693,4695,4697,4699,4701,4703,4705,4707,4709,4711,4713,4715,4717,4719,4721,4723,4725,4727,4729,4731,4658,4660,4662,4664,4666,4668,4670,4672,4674,4676,4663,4668],[40130,40131],[43243],[15127,15125,15122,15120,15132],[31895],[5454,5461,5465,5466,5470],[42537,42539,42548],[16173,16187,16178,16193,16191,16186,16182,16156,16184],[57090,57091,57080,57076],[24391,24384,24399,24377,24378,24388,24327,24340,24337,24335,24341,24336,24337,24338,24340],[7194,7192,7196,7150,7197,7148,7164,7199,7155,7201,7157,7202,7206,7160,7207,7158,7156,7208,7212,7154,7213,7163,7163],[15604,15610,15631,15634,15602,15634,15653,15640,15594,15593],[51104,51142,51131,51134,51119,51109,51103,51089,51093,51095],[32550,32550,32569,32556,32510,32509,32526,32560,32559,32572,32562,32564,32548,32576,32532,32588,32584,32570,32535,32585,32586,32570,32595],[28665,28667,28683,28691,28683,28688],[44604,44594,44599,44592,44607,44609,44591,44604,44608],[21277,21290,21290,21280,21279,21299],[32209,32289,32201,32272,32270,32267,32271,32273,32287,32289,32209,32234],[32196,32198,32197,32189,32195,32189,32192,32190,32210],[61926],0.7,1.3,[32572,32526,32523,32512,32565,32577,32559,32540,32533,32549,32580,32575,32542,32550,32587,32516,32549,32522,32520,32555,32578,32547,32556,32557,32550,32536,32594,32591,32547,32539,32567,32589,32543,32585,32560,32570,32572,32566,32597,32606,32594,32602,32565,32558],[62102,62116,62117,62114,62091,62120,62127,62125,62111,62114,62081,62126,62125,62126,62119,62129,62136],[13488,13481,13496,13474,13488,13489,13486],[42678,52557,42173,42703,62742,5441,571,63515,12826,64255,42448,3959,5123,63721,15896,5008,8861,3062,42431,42697,12983,63758,1602,42723,42796,42809,42810,42807,42811,42755,42745,42746,42815,42808,42823,42801,42815,42816,42813,42753,42820,42806,42813,42812,42827,42759,42814,42816,42834,42749,3538,3215],[23734,23738,23738,23732,23714,23742,23729,23748,23750],1.2,[24963,34177,18381,63951,63952,63953],[47805,47791,47809,47811,47798],[12374,12384,12376,12400],[51688,51759,51758,51745,51759,51693,51762,51764,51746,51766,51766,51715,51758,51754,51716],[8342,8422,8420,8412,8369],[23559,13603,40169,49383,38678,34726,13586,38212,50775,52648,13638,13613],[24793,24791,24796,24793,24805],[5109,29150,35093,5160,5135],[55092,55091,55078,55078],[63198,18750,17967,63249,63224],[10210,10198,10207,10196,10205,10211,10207,10213,10207],[14320,4293,42431,40086,4034],[5610,5603,5618,5619,5602,5609,5608],[38792,38780,38792,38789,38779,38782,38785],[24207,24209,24235,24171,24221,24169,24170,24168,24216,24242,24183,24229,24230,24231,24223],[27025],[5218,5153,5219],[14434],[48056],[35642,5155,5207,37890,26635,36335,41968,25191,25438,29970,25234,25168,27438,25323,5221,5170],[50597,16755,16769],[23155,23207,45420,48423,44526,49294,49278,44453,55657,44641,47165,60077,58920,53821,43937,23223,23172,53660],[13288,13302,47133],[13760],[60843],[52804,28667,28719,51001,1628,28387,60158,53148,52255,49905,49654,48663,52341,2221,1751,1,52071,51448,28737,28686],[48394,28337,28351],[57813],[42613],[61990,62042,22933,21361,30582,25855,17360,62050,61999,16934],[40912,40926,9591],[23357,23358],[16781,16782]],function(_0xcb9c18){try{return _0xcb9c18=typeof \\u0067\\u006c\\u006f\\u0062\\u0061\\u006c\\u0054\\u0068\\u0069\\u0073!==\"undefined\"?\\u0067\\u006c\\u006f\\u0062\\u0061\\u006c\\u0054\\u0068\\u0069\\u0073:typeof \\u0073\\u0065\\u006c\\u0066!==\"undefined\"?\\u0073\\u0065\\u006c\\u0066:typeof \\u0077\\u0069\\u006e\\u0064\\u006f\\u0077!==\"undefined\"?\\u0077\\u0069\\u006e\\u0064\\u006f\\u0077:typeof \\u0067\\u006c\\u006f\\u0062\\u0061\\u006c!==\"undefined\"?\\u0067\\u006c\\u006f\\u0062\\u0061\\u006c:\\u0046\\u0075\\u006e\\u0063\\u0074\\u0069\\u006f\\u006e(\"return this\")(),typeof \\u0065\\u0078\\u0070\\u006f\\u0072\\u0074\\u0073!=='undefined'&&(_0xcb9c18.\\u0065\\u0078\\u0070\\u006f\\u0072\\u0074\\u0073=\\u0065\\u0078\\u0070\\u006f\\u0072\\u0074\\u0073),typeof \\u0072\\u0065\\u0071\\u0075\\u0069\\u0072\\u0065!=='undefined'&&(_0xcb9c18.\\u0072\\u0065\\u0071\\u0075\\u0069\\u0072\\u0065=\\u0072\\u0065\\u0071\\u0075\\u0069\\u0072\\u0065),typeof \\u006d\\u006f\\u0064\\u0075\\u006c\\u0065!=='undefined'&&(_0xcb9c18.\\u006d\\u006f\\u0064\\u0075\\u006c\\u0065=\\u006d\\u006f\\u0064\\u0075\\u006c\\u0065),typeof \\u005f\\u005f\\u0066\\u0069\\u006c\\u0065\\u006e\\u0061\\u006d\\u0065!=='undefined'&&(_0xcb9c18.\\u005f\\u005f\\u0066\\u0069\\u006c\\u0065\\u006e\\u0061\\u006d\\u0065=\\u005f\\u005f\\u0066\\u0069\\u006c\\u0065\\u006e\\u0061\\u006d\\u0065),typeof \\u005f\\u005f\\u0064\\u0069\\u0072\\u006e\\u0061\\u006d\\u0065!=='undefined'&&(_0xcb9c18.\\u005f\\u005f\\u0064\\u0069\\u0072\\u006e\\u0061\\u006d\\u0065=\\u005f\\u005f\\u0064\\u0069\\u0072\\u006e\\u0061\\u006d\\u0065),_0xcb9c18;}catch(_0xe10908){return typeof _0xcb9c18!==\"undefined\"?_0xcb9c18:{};}}(),\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074.\\u0063\\u0061\\u006c\\u006c.\\u0062\\u0069\\u006e\\u0064(\\u0041\\u0072\\u0072\\u0061\\u0079.\\u0062\\u0069\\u006e\\u0064),\\u0041\\u0072\\u0072\\u0061\\u0079.\\u0061\\u0070\\u0070\\u006c\\u0079.\\u0062\\u0069\\u006e\\u0064(\\u004e\\u0075\\u006d\\u0062\\u0065\\u0072.\\u0062\\u0069\\u006e\\u0064),\\u004e\\u0075\\u006d\\u0062\\u0065\\u0072.\\u0062\\u0069\\u006e\\u0064.\\u0062\\u0069\\u006e\\u0064(\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074.\\u0062\\u0069\\u006e\\u0064),\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074.\\u0063\\u0061\\u006c\\u006c.\\u0062\\u0069\\u006e\\u0064([].\\u0070\\u0075\\u0073\\u0068),\\u0041\\u0072\\u0072\\u0061\\u0079.\\u0063\\u0061\\u006c\\u006c.\\u0062\\u0069\\u006e\\u0064([].\\u0063\\u006f\\u006e\\u0063\\u0061\\u0074),\\u004e\\u0075\\u006d\\u0062\\u0065\\u0072.\\u0061\\u0070\\u0070\\u006c\\u0079.\\u0062\\u0069\\u006e\\u0064(\\u0053\\u0074\\u0072\\u0069\\u006e\\u0067.\\u0066\\u0072\\u006f\\u006d\\u0043\\u0068\\u0061\\u0072\\u0043\\u006f\\u0064\\u0065,null),\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074.\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0050\\u0072\\u006f\\u0070\\u0065\\u0072\\u0074\\u0079.\\u0062\\u0069\\u006e\\u0064(\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074),\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074.\\u0067\\u0065\\u0074\\u004f\\u0077\\u006e\\u0050\\u0072\\u006f\\u0070\\u0065\\u0072\\u0074\\u0079\\u0044\\u0065\\u0073\\u0063\\u0072\\u0069\\u0070\\u0074\\u006f\\u0072.\\u0062\\u0069\\u006e\\u0064(\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074),[]);\n",
    "lastUpdateTime": 1780890858475,
    "loginUi": "[\n{\"name\":\"查询用量\",\"type\":\"button\",\"action\":\"getLimit(\\\"69\\\")\"},\n{\"name\":\"赞助支持\",\"type\":\"button\",\"action\":\"java.startBrowser('https://skybook.qzz.io/file/image/25/sponsorship.png','')\"}\n]",
    "loginUrl": "function login() {}",
    "respondTime": 1673,
    "ruleBookInfo": {
      "coverUrl": "@js:\n(() => {\n    if (String(book.coverUrl || \"\")) return;\n    let html = java.get(\"detail\");\n    // let img = String(java.getString(\"$.img\", html))\n    // if (img) return desc\n\n    let books = Array.from(org.jsoup.Jsoup.parse(html).select(\".res-book-item\"));\n    let item = books.find((x) => {\n        let title = java.getString(\"h3@text\", x);\n        return title == book.name;\n    });\n\n    if (item) return java.getString(\"a > img@src\", item);\n})();",
      "init": "@js:\nif (String(book.name) && (!String(book.intro) || !book.coverUrl)) {\n    let u = `https://www.qidian.com/so/${book.name}.html`;\n    let html = java.ajax(u); //java.log(html)\n    if (/fffffffffffffffffff/.test(html)) {\n        java.webView(null, u, \"document.cookie\");\n        java.log(\"已更新cookie\");\n        html = java.ajax(u);\n    }\n    java.put(\"detail\", html);\n}\nresult;",
      "intro": "@js:\n(() => {\n    if (String(book.intro || \"\")) return;\n    let html = java.get(\"detail\");\n    // let desc = String(java.getString(\"$.description\", html))\n    // if (desc) return desc\n\n    let books = Array.from(org.jsoup.Jsoup.parse(html).select(\".res-book-item\"));\n    let item = books.find((x) => {\n        let title = java.getString(\"h3@text\", x);\n        return title == book.name;\n    });\n\n    if (item) return java.getString(\".intro@text\", item);\n})();"
    },
    "ruleContent": {
      "content": "@js:\ncinfo = java.hexDecodeToString(result).split(\"/\");\nbid = cinfo[0];\ncid = cinfo[1];\nresult = java.ajax(buildRequest(`${backend}/69/content?book_id=${bid}&chapter_id=${cid}`));\nresult = JSON.parse(result).data;",
      "replaceRegex": "##新..书吧|吧书69新|\\(\\)|loadAdv\\(10,0\\);|^第.{0,8}章.*|\\(本章完\\)|阅读(sto55[\\.．][CＣ][OＯ])?[MМＭ]|教你记<i\\(爱\\)75\\(奇书\\)wu\\(屋\\)\\.com>|.🅆.|\\(-_-\\)　\\(-_-\\)|[^\\u4e00-\\u9fa5\\r\\n，。！？“”‘’（）《》【】、：；「」『』——……·]*[^\\x00-\\x7F\\u4e00-\\u9fa5\\s\\u3000，。！？“”‘’（）《》【】、：；「」『』——……·][^\\u4e00-\\u9fa5\\r\\n，。！？“”‘’（）《》【】、：；「」『』——……·乂]*"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.list",
      "bookUrl": "$.articleid\n@js:\n`data:;base64,${java.base64Encode(result)},{\"type\":\"my69s\"}`",
      "checkKeyWord": "兼程1995",
      "coverUrl": "$.imgUrl",
      "intro": "$.intro",
      "kind": "$.keywords",
      "lastChapter": "$.lastchapter",
      "name": "$.articlename",
      "wordCount": "$.words"
    },
    "ruleToc": {
      "chapterList": "<js>\nbid = java.base64Decode(baseUrl.split(\",\")[1]);\n//java.log(bid)\nresult = java.ajax(buildRequest(`${backend}/69/catalog?book_id=${bid}`));\n\nJSON.parse(result).list.reduce((arr, item) => {\n    title = item.chaptername;\n    url = item.articleid + \"/\" + item.chapterid;\n    arr.push(\n        JSON.stringify({\n            title,\n            url: `data:;base64,${java.base64Encode(url)},{\"type\":\"my69c\"}`,\n        })\n    );\n    return arr;\n}, []);\n</js>",
      "chapterName": "$.title",
      "chapterUrl": "$.url"
    },
    "searchUrl": "@js:\nbuildRequest(`${backend}/69/search?key={{key}}&page={{page}}`)",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁¹",
    "bookSourceType": 0,
    "bookSourceUrl": "www.xbiquge.la",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 178,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "玄幻小说::http://www.xbiquge.la/fenlei/1_{{page}}.html\n修真小说::http://www.xbiquge.la/fenlei/2_{{page}}.html\n都市小说::http://www.xbiquge.la/fenlei/3_{{page}}.html\n穿越小说::http://www.xbiquge.la/fenlei/4_{{page}}.html\n网游小说::http://www.xbiquge.la/fenlei/5_{{page}}.html\n科幻小说::http://www.xbiquge.la/fenlei/6_{{page}}.html",
    "header": "",
    "lastUpdateTime": 1769000062749,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 6302,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作    者：",
      "canReName": "",
      "coverUrl": "id.fmimg@tag.img@src",
      "init": "",
      "intro": "id.intro@tag.p.1@text",
      "kind": "",
      "lastChapter": "id.info@tag.p.3@title",
      "name": "id.info@tag.h1.0@text",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "id.content@textNodes",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "tag.span.2@text",
      "bookList": "class.l@tag.ul@tag.li",
      "bookUrl": "tag.span.0@tag.a@href",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "tag.span.1@tag.a@text",
      "name": "tag.span.0@tag.a@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "class.even.1@text",
      "bookList": "class.grid@tag.tbody@tag.tr!0",
      "bookUrl": "class.even.0@tag.a@href",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "class.odd.0@tag.a@text",
      "name": "class.even.0@tag.a@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "http://www.xbiquge.la/modules/article/waps.php?searchkey={{key}}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "📚QQ浏览器",
    "bookSourceType": 0,
    "bookSourceUrl": "https://novel.html5.qq.com/",
    "customButton": false,
    "customOrder": 179,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "模拟::https://so.html5.qq.com/ajax/real/search_result?tabId=360&q=模拟\n推演::https://so.html5.qq.com/ajax/real/search_result?tabId=360&q=推演\n随机::https://so.html5.qq.com/ajax/real/search_result?tabId=360&q=随机\n萝莉::https://so.html5.qq.com/ajax/real/search_result?tabId=360&q=萝莉\n系统::https://so.html5.qq.com/ajax/real/search_result?tabId=360&q=系统\n重生::https://so.html5.qq.com/ajax/real/search_result?tabId=360&q=重生",
    "header": "@js:\nJSON.stringify({\n    \"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 13; zh-cn; V2183A Build/TP1A.220624.014) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/89.0.4389.72 MQQBrowser/13.4 Mobile Safari/537.36 COVC/046223\",\n    \"Referer\": source.bookSourceUrl,\n    \"Q-GUID\": \"0ee63838b72eb075f63e93ae0bc288cb\",\n    \"QIMEI36\": \"8ff310843a87a71101958f5610001e316a11\"\n})",
    "lastUpdateTime": 1771503491545,
    "respondTime": 2528,
    "ruleBookInfo": {
      "author": "$..author",
      "coverUrl": "$..picurl",
      "intro": "$..summary",
      "kind": "$..resourceID",
      "lastChapter": "$..lastSerialname",
      "name": "$..resourceName",
      "tocUrl": "https://novel.html5.qq.com/qbread/api/book/all-chapter?bookId={{book.kind}}",
      "wordCount": "$..contentsize"
    },
    "ruleContent": {
      "content": "$.data.Content[0].Content"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$..author",
      "bookList": "$.data.state[*]",
      "bookUrl": "https://novel.html5.qq.com/qbread/api/novel/bookInfo?resourceId={{book.kind}}",
      "coverUrl": "$..cover_url",
      "intro": "$..abstract",
      "kind": "$.groupID##.*_##",
      "name": "$..title",
      "wordCount": "$..label_text"
    },
    "ruleToc": {
      "chapterList": "$..rows[*]",
      "chapterName": "$.serialName",
      "chapterUrl": "$.serialID\n@js:\nlet data = JSON.stringify({\n  ContentAnchorBatch: [{\n    BookID: book.kind,\n    ChapterSeqNo: [\n      result\n    ]\n  }],\n  Scene: \"chapter\"\n})\nlet option = {\"method\":\"POST\",\"body\":data}\n\"https://novel.html5.qq.com/be-api/content/ads-read,\"+JSON.stringify(option)"
    },
    "searchUrl": "https://so.html5.qq.com/ajax/real/search_result?tabId=360&q={{key}}",
    "weight": 100
  },
  {
    "bookSourceComment": "// http://download.yichnmedia.com\n// http://download.biqugexsapp.com\n// http://ddxs.xsappxz.com\n_path = {\n    DownApp: \"/client/version\",\n    GetHost: \"/client/config/value?key=landing_page_domain\",\n    LoginID: \"/auth/third; post; type=5&openid= ${R32} &firstBoot=1\"\n};\nsetv = (json) => source.setVariable(JSON.stringify(json, null, \"\\t\"));\ntry {\n    $ = JSON.parse(source.getVariable());\n} catch (err) {\n    $ = {\n        time: 20240202,\n        domains: [\n            // old aes\n            [\"longchunbajiao\", 0],\n            [\"yybhsl\", 0],\n            [\"wzyjxf\", 0],\n            [\"zjlzgg\", 0],\n            [\"sxwlyhzp\", 0],\n            [\"anwaben\", 0],\n            [\"basusan\", 0],\n            [\"myweipin\", 0],\n            [\"lemiyigou\", 0],\n            // new aes\n            [\"xingliangglobal\", 1],\n            [\"fangweicong\", 1],\n            [\"yuanxifayi\", 1],\n            [\"xqjcool\", 1],\n        ]\n    }\n    setv($);\n}\n_reg = /http:\\/\\/api\\.(.+)\\.com/i\ngetHost = i => {\n    [domain, uType] = $.domains[i];\n    [aesKey, Authorization] = [\n        [\"f041c49714d39908\", \"bearereyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOlwvXC9hcGkubXl3ZWlwaW4uY29tXC9hdXRoXC90aGlyZCIsImlhdCI6MTcwNjg0NjM2NiwiZXhwIjoxODAwMTU4MzY2LCJuYmYiOjE3MDY4NDYzNjYsImp0aSI6IjRVbU5BZVpHQ1hvaGNpSEgiLCJzdWIiOjc3MDg5OSwicHJ2IjoiYTFjYjAzNzE4MDI5NmM2YTE5MzhlZjMwYjQzNzk0NjcyZGQwMTZjNSJ9.lOpKG-vWne5Ub8g6byvF53iQjldPUC1-BMoO-OuhOlA\"],\n        [\"4395daa50ad6baf7\", \"bearereyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOlwvXC9hcGkueGluZ2xpYW5nZ2xvYmFsLmNvbVwvYXV0aFwvdGhpcmQiLCJpYXQiOjE3MDY4NjA2NzcsImV4cCI6MTgwMDE3MjY3NywibmJmIjoxNzA2ODYwNjc3LCJqdGkiOiJxdXBGbWo5cnJRMHFoTFVIIiwic3ViIjozMjY4ODcsInBydiI6ImExY2IwMzcxODAyOTZjNmExOTM4ZWYzMGI0Mzc5NDY3MmRkMDE2YzUifQ.CQsDsiDJyyriPmJuT6A38KIvGgq6BEOMWl8H5plqArQ\"]\n    ][uType];\n    headers = \",\" + JSON.stringify({\n        \"headers\": {\n            \"client-device\": java.md5Encode(aesKey),\n            \"Authorization\": Authorization\n        }\n    });\n    host = `http://api.${domain}.com`;\n}\ngetData = (uri) => {\n    url = host + uri + headers;\n    // java.log(url);\n    data = java.ajaxAll([url])[0];\n}\nvuri = \"/search?keyword=深空彼岸\";\ntime = +java.timeFormatUTC(new Date(), 'yyyyMMdd', 8);\narr1 = []; // 成功\narr2 = []; // 失败\narr3 = []; // 新增\nif ($.time < time && 0) {\n    java.toast(\"检测更新中\");\n    try {\n        for (i in $.domains) {\n            arr1.push($.domains[i]);\n            arr2.push($.domains[i]);\n            getHost(i);\n            try {\n                // java.toast(\"正在校验：\"+host);\n                getData(vuri); //校验搜索\n                if (data.code() == 200) {\n                    arr2.length = arr2.length - 1;\n                    try {\n                        getData(_path.GetHost);\n                        domain = JSON.parse(data.body())\n                            .data.landingPageDomain;\n                        arr3.push([\n                            domain.match(_reg)[1],\n                            uType\n                        ]);\n                    } catch (err) {}\n                } else {\n                    arr1.length = arr1.length - 1;\n                }\n            } catch (err) {\n                arr1.length = arr1.length - 1;\n            }\n        }\n        array = arr1.concat(arr3);\n        $.domains = array.filter(function(item, index) {\n            return array.findIndex(function(value) {\n                return value[0] === item[0] && value[1] === item[1];\n            }) === index && arr2.findIndex(function(value) {\n                return value[0] === item[0] && value[1] === item[1];\n            })\n        });\n        $.time = time\n        setv($);\n        java.toast(\"接口更新成功\");\n    } catch (err) {\n        java.toast(\"未知错误：\" + err);\n    }\n}\nrun = Path => {\n    for (i in $.domains) {\n        getHost(i);\n        try {\n            getData(java.hexDecodeToString(result));\n            if (data.code() == 200)\n                return $$ = JSON.parse(data.body())[Path];\n        } catch (err) {}\n    }\n    return $$ = {};\n}\neurl = Path => `data:;base64,${java.base64Encode(Path)},{\"type\":\"maoyankanshu\"}`;",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "猫眼看书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://download.biqugexsapp.com",
    "customButton": false,
    "customOrder": 181,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type)=>sort.push({\n\t\t\t\ttitle: title,\n\t\t\t\turl: url,\n\t\t\t\tstyle: {\n\t\t\t\t\t\tlayout_flexGrow: 1,\n\t\t\t\t\t\tlayout_flexBasisPercent: type\n\t\t\t\t\t}\n\t\t\t});\n$$=(a,b,c)=>{\n\t\turi = c ? `/module/${a}channel=${b}` : `/novel?sort=${a}&categoryId=${b}`;\n\t\treturn `data:;base64,{{java.base64Encode(\"${uri}&page=\"+page)}\\},{\"type\":\"maoyankanshu\"}`;\n\t}\n;[\n\t\t[\"男\",[[\"玄幻\",\"lejRej\"],[\"武侠\",\"nel5aK\"],[\"都市\",\"mbk5ez\"],[\"仙侠\",\"vbmOeY\"],[\"军事\",\"penRe7\"],[\"历史\",\"xbojag\"],[\"游戏\",\"mep2bM\"],[\"科幻\",\"zbq2dp\"],[\"轻小说\",\"YerEdO\"]]],\n\t\t[\"女\",[[\"现代言情\",\"9avmeG\"],[\"古代言情\",\"DdwRb1\"],[\"幻想言情\",\"7ax9by\"],[\"青春校园\",\"Pdy7aQ\"],[\"唯美纯爱\",\"kazYeJ\"],[\"同人衍生\",\"9aAOdv\"]]]\n].map(([title,list],channel)=>{\n\t\tchannel++;\n\t\tpush(\"༺ˇ»`ʚ \"+title+\"生频道 ɞ´«ˇ༻\",null,1);\n\t\tpush(\"༺ˇ»`ʚ 榜单 ɞ´«ˇ༻\",null,1);\n\t\t[\"必读榜\",\"完本榜\",\"更新榜\",\"搜索榜\",\"潜力榜\",\"评论榜\",\"人气完本\",\"新书速递\"].map((title,i)=>{\n\t\t\t\ti++\n\t\t\t\tif(i<7){\n\t\t\t\t\t\ti = \"rank?type=\"+i+\"&\";\n\t\t\t\t\t}\n\t\t\t\telse{\n\t\t\t\t\t\ti = i<8?\"mep2bM?\":\"YerEdO?\";\n\t\t\t\t\t}\n\t\t\t\tpush(title,$$(i,channel,1),0.25);\n\t\t\t});\n\t\tpush(\"༺ˇ»`ʚ 分类 ɞ´«ˇ༻\",null,1);\n\t\tlist.map([title,B]=>{\n\t\t\t\tpush(\"༺ \"+title+\" ༻\",$$(1,B,0),1);\n\t\t\t\t[\"热度\",\"更新\",\"评分\",\"新书\"].map((title,A)=>{\n\t\t\t\t\t\tA++;\n\t\t\t\t\t\t[\"[\"+title+\"]\",\"连载\",\"完结\"].map((title,C)=>{\n\t\t\t\t\t\t\t\tC=C?\"&isComplete=\"+(C-1):\"\";\n\t\t\t\t\t\t\t\tpush(title,$$(A,B+C,0),0.25);\n\t\t\t\t\t\t\t});\n\t\t\t\t\t});\n\t\t\t});\n\t}); \nJSON.stringify(sort);",
    "header": "{\n    \"client-version\": \"2.3.0\",\n    \"client-brand\": \"HONOR\",\n    \"client-source\": \"android\",\n    \"client-name\": \"app.maoyankanshu.novel\",\n    \"User-Agent\": \"okhttp/4.9.2\"\n}",
    "lastUpdateTime": 1766340904814,
    "respondTime": 3916,
    "ruleBookInfo": {
      "author": "$.authorName",
      "coverUrl": "$.cover",
      "init": "@js:\neval(String(source.bookSourceComment));\nrun(\"data\");\n$$.cover = $$.cover.replace(_reg, host);\n$$.tocUrl = eurl('/novel/'+$$.novelId+'/chapters');\nJSON.stringify($$);",
      "intro": "{{'\\n&lrm;\\n'}}🏷️ 标签：{{$..className&&$..tagName##\\n##, }}\n{{'\\n&lrm;\\n'}}📑 简介：{{$.summary}}",
      "kind": "{{$.averageScore}}分\n{{$..className}}\n连载中{{$.isComplete}}已完结\n{{$.lastChapter.decTime}}\n##连载中1|0已完结",
      "lastChapter": "{{$.lastChapter.chapterName}} • {{$.lastChapter.decTime}}",
      "name": "$.novelName",
      "tocUrl": "$.tocUrl",
      "wordCount": "$.wordNum"
    },
    "ruleContent": {
      "content": "@js:\neval(String(source.bookSourceComment));\nrun(\"content\");"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.authorName",
      "bookList": "@js:\neval(String(source.bookSourceComment));\nrun(\"data\").map(($$,i)=>{\n$$.cover = $$.cover.replace(_reg, host);\n$$.bookUrl = eurl('/novel/'+$$.novelId);\nreturn JSON.stringify($$);\n});",
      "bookUrl": "$.bookUrl",
      "checkKeyWord": "深空彼岸",
      "coverUrl": "$.cover",
      "intro": "$.summary||$.rankInfo",
      "kind": "{{$.averageScore}}分\n{{$..className}}\n连载中{{$.status}}已完结\n{{$.lastChapter.decTime||$.createdAt##\\s.*}}\n##连载中2|1已完结|连载中已完结",
      "lastChapter": "{{$.lastChapter.chapterName}} • {{$.lastChapter.decTime}}##^•$",
      "name": "$.novelName",
      "wordCount": "$.wordNum"
    },
    "ruleToc": {
      "chapterList": "@js:\neval(String(source.bookSourceComment));\n\nList = run(\"data\").list;\n\nCipher = java.createSymmetricCrypto(\"AES/CBC/PKCS5Padding\", aesKey, \"0123456789abcdef\");\n\nList.map($$=>{\n\tpath = Cipher.decryptStr($$.path);\ntry{\n\tpath = String(path).split(_reg)[2];\n}catch(err){}\n\treturn {\n\t\tname: $$.chapterName,\n\t\tpath: eurl(path),\n\t\tinfo: `章节字数：${$$.wordNum}　更新时间：${$$.updatedAt}`\n\t\t}\n});",
      "chapterName": "name",
      "chapterUrl": "path",
      "updateTime": "info"
    },
    "searchUrl": "data:;base64,{{java.base64Encode(\"/search?keyword=\"+key+\"&page=\"+page)}},{\"type\":\"maoyankanshu\"}",
    "weight": 0
  },
  {
    "bookSourceComment": "epub服务器接口和token加群或者tg拿，免费！\n纯本地七猫四合一书源（除了epub需要服务器解密返回正文，阅读无法实现直接解密），免费看全部\n1045801523群号\n纯免费，盗版源\ntg：https://t.me/+1F9ippiIxbVmZmM1",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "七猫四合一本地版",
    "bookSourceType": 0,
    "bookSourceUrl": "七猫四合一本地版",
    "customButton": false,
    "customOrder": 182,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\n(function () {\n  var items = []\n  var mode = qmExploreMode.call(this)\n  function section(title) { items.push({title:title,url:null,style:{layout_flexGrow:1,layout_flexBasisPercent:1}}) }\n  function add(title, rank, tab) { items.push({title:title,url:'@js:\\nqmExploreUrl(' + JSON.stringify(rank) + ',' + JSON.stringify(tab) + ')',style:{layout_flexGrow:1,layout_flexBasisPercent:0.31}}) }\n  function addList(title, kind, id, gender) { items.push({title:title,url:'@js:\\nqmExploreListUrl(' + JSON.stringify(kind) + ',' + JSON.stringify(id) + ',' + JSON.stringify(gender || '2') + ',page)',style:{layout_flexGrow:1,layout_flexBasisPercent:0.24}}) }\n  function addHome(title, kind) { items.push({title:title,url:'@js:\\nqmExploreHomeUrl.call(this,' + JSON.stringify(mode) + ',page,' + JSON.stringify(kind || '') + ')',style:{layout_flexGrow:1,layout_flexBasisPercent:0.31}}) }\n  function addMedia(title, keyword) { items.push({title:title,url:'@js:\\nqmExploreMediaSearchUrl.call(this,' + JSON.stringify(mode) + ',' + JSON.stringify(keyword) + ',page)',style:{layout_flexGrow:1,layout_flexBasisPercent:0.31}}) }\n  if (mode == 'novel') {\n    section('男频榜单')\n    add('推荐榜','rec_list','1'); add('大热榜','hot_list','1'); add('新书榜','new_list','1')\n    add('完结榜','end_list','1'); add('飙升榜','up_list','1'); add('好评榜','good_comment_list','1')\n    add('热搜榜','hot_search_list','1'); add('必读榜','must_read_list','1'); add('礼物榜','reward_value_list','1')\n    section('女频榜单')\n    add('推荐榜','rec_list','2'); add('大热榜','hot_list','2'); add('新书榜','new_list','2')\n    add('完结榜','end_list','2'); add('飙升榜','up_list','2'); add('好评榜','good_comment_list','2')\n    add('热搜榜','hot_search_list','2'); add('必读榜','must_read_list','2'); add('礼物榜','reward_value_list','2')\n    section('分类与标签')\n    addList('现代言情','category','1','2'); addList('古代言情','category','2','2'); addList('幻想言情','category','4','2'); addList('玄幻奇幻','category','202','2')\n    addList('都市人生','category','203','2'); addList('武侠仙侠','category','205','2'); addList('历史','category','56','2'); addList('科幻','category','64','2')\n    addList('种田','tag','317','2'); addList('快穿','tag','335','2'); addList('脑洞','tag','526','2'); addList('系统','tag','782','2')\n  } else if (mode == 'publish') {\n    section('出版图书')\n    addHome('图书精选','')\n    addList('文学艺术','category','240','2'); addList('人文社科','category','241','2'); addList('人物传记','category','247','2'); addList('经典文学','category','243','2')\n    addList('经管励志','category','242','2'); addList('出版小说','category','257','2'); addList('少儿教育','category','258','2'); addList('青春文学','category','265','2')\n    addList('科幻未来','category','261','2'); addList('悬疑推理','category','262','2'); addList('仙侠玄幻','category','288','2'); addList('历史小说','category','264','2')\n  } else if (mode == 'audio') {\n    section('听书首页')\n    addHome('听书精选',''); addMedia('热门听书','都市'); addMedia('经典听书','经典'); addMedia('有声小说','小说')\n  } else {\n    section('短剧 / 漫剧视频')\n    addHome('热门短剧','drama'); addHome('热门漫剧','animated')\n    addMedia('都市视频','都市'); addMedia('古装视频','古装'); addMedia('悬疑视频','悬疑')\n  }\n  return JSON.stringify(items)\n})()",
    "jsLib": "\nvar QM_APP_VERSION = '80400'\nvar QM_CHANNEL = 'qm-guanfang_lf'\nvar QM_APP_ID = 'com.kmxs.reader'\nvar QM_EPUB_SERVICE_BASE = 'https://qm.aadcn.cn'\nvar QM_SECRET = 'd3dGiJc651gSQ8w1'\nvar QM_AES_KEY = '242ccb8230d709e1'\nvar QM_B64 = '+/0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'\nvar QM_PARAM_MAP = 'PXMUlErYWbdJ9saI0oy_HGitgNA8Fk3hfRqC4pmBOuc6Kx5T-2zSZ1VvjQ7DwnLe'\nvar QM_CONTENT_MAP = '5NhEilDnz01JC67qSmT89-FkGKor4stuHvBwxOILcdMeAfgPQRbyU2p3VjWX_YZa'\nvar QM_EMOJI_DATA = {\"[微笑]\":\"data:image/png;base64,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\",\"[狗头]\":\"data:image/png;base64,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\",\"[歪头笑哭]\":\"data:image/png;base64,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\",\"[眯眼笑]\":\"data:image/png;base64,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\",\"[呲牙]\":\"data:image/png;base64,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\",\"[鬼脸]\":\"data:image/png;base64,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\",\"[哈哈]\":\"data:image/png;base64,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\",\"[神评]\":\"data:image/png;base64,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\",\"[假笑]\":\"data:image/png;base64,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\",\"[眯眼吐舌]\":\"data:image/png;base64,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\",\"[星星眼]\":\"data:image/png;base64,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\",\"[色]\":\"data:image/png;base64,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\",\"[飞吻]\":\"data:image/png;base64,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\",\"[嘟嘴]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAHsUExURUxpcaSGVqWHWrCJYqOLVr6kWaSJVcPDw6qqVbaRbaWMUqqRVaaJU/PFC+KdAO28A/jeX/PHAd2VAu+5B9eQCvrYOdqQAO65AOakCPC/AN+XAPrLN/uzHNOeGtyTAfC9A/S9Gvq8IeqjDb+MLvTDBeyoEdWZD72OLPbIAPXIAPCyDuqyAOGeA8yPGe+oEfrMMtSdFfatF/qvGParE/zlbM6dJO65APzlZfTFALCNQvjOG/PHAOGjEd+hBPvCKOSqAfi6H/vgVO66AfvndeqyA/fJAP/QANCOEdeQBvC/APvXR/+0Hf/ue//XQP/IJP/RMv/FIf/PLf/MKP/lYv/qcf/NK//tef+2Hv/rdP/sd//bS//eUf/vfv/jXv/hWv/nav/aSP/KJv/xg//wgP/ZRP/mZ//cTv+9Hv/zhv/UOP/VO//TNf/MLf/fVP+6H//CH/++If+/H/+5Hv/gV1gdBP/QL//SOmMhA//pbf7ILP/AI//pb3coAP/DJP/FKF4gA3EmAWgjAv64HmwlAeirAP/IKP7OM//XSP/UQX8wAmowDPbJANyQAOrHUaFkHrR4HMKYQ9auRKFwK7KHNJJWGodBDMqOHJ1XENu6V9GfLua9Qr+QN5JLDPG9J45hKfDTXn5MGnU9ErB8L/PFMlCxdUcAAABLdFJOUwAiEQ0aCS4BAwcoFTTJ8CH84NvTpsf1/Nrp+v78OupG1vThTC/dgFbpmuLv4Xnm3WHw+OvzKozpeEHD+P6r8sPr3Kz8lmUWk8jB7/iwSigAAAgmSURBVHja7dX3V1PpFgbgC2lASEgFDEgH6V0c+1imZiQQAgFCCEWJM0AoI0gomVCCQxyadAHb/Ufvu/f5OIdZLNR759f7mrVSJI/v3t/h+K//559H831aUVHa95p/QOjSviszlL4WKTWUfZem+x+U3LLS1+ZbdvuDG42PHjXeeGC33zK/Li3L1en+G0Xzjfm2wX7D09XZ1dHR8Qs9urq6PDfshtvmbzS6r2dKzfbGOU8XKyIdoDo9nka7uRTU1w1lNtsDc55OOL+Q09PTM9jTg5dMzQXsZjMG/HKdstu3TMKBAmNwkCEu1UmS6dbtMpT6wkkZzA+ekQOoi9rAGRwYGAQlpoP07IHZkPbZUrqiKwZTW0AuBGaAwpK8p0CgzWS4UgTpc05vW1tgxoNGDMF5PvD8OUkohy3RcDOBNn8vS5fOBcffRpN56Nx5Qc9FIGFN5KDSM5Yum06X9JPBp0Bd+B6tR4YgiSUx5DP8lEzSRUfXdOVnhjCZaATnb5A4txmGfr7SlAToopObUeMbxYr40EQjxQFE25Yb+X2+mozci5KOFtTt88lQZwcf/nmoh3cECVBb76ivm9d0YUEPra+GfL8T9PdTG2BGOLyjGYZ+9w29sj5MEpJSqCijhiE/QVSJlwRJpKcHECYTkJ+hmowieTil0J+vuhlqI4gkcUkOoo24HtmZw3VE0Gj3qz+tD8XJKRvKqCFoFBAqmXY+xOPvDs9+Y9lBtt/F4x+2TDSZHzsCVJORxpWUQk3WaYZ4tsP4C84bqgQLAfPonfTpx3WejKFpaxNVUgppKvIA9Q0R5D9++YfIm/P3o3dnny5u+wka6gOUV6FCJaVQbkYWNRqiSuuLL+UcihsknraUT+PvqdAQNcria0mBHlsBPe1jaG9xcXFv6/3hLp4/8r22C4/GON6+WX+/tYbnDYb6ngKyPsZs8mTJ5XlZ00+e9lGl7eXl5Q0TndwOXm3zjQn37q3l5egWHf37XXy8zoWePpnOyivXUCVRKC3j3uo0KkEa3YxGN8TF9Cka/dQpshGNbs3xJdS7G40ejw51U6Hp1XsZ15MVqLYiDEiqtDF/0tvG0szcxvwbT6eHHp7d+U+emRk+edPe/KaPoCeAwhW18my65CYrQb+xdHSwThcTpMCM6XjdI2Xu8DgwEyAHR//2YJudJ9Orq2HrY8wmCiXft4ZHqJLUia8Bv0QhnjmMhAiGLyF2qNBI2HpfJUOazDwFkiSUwnjPYJ0Fb7iO5ChQXmZi8hmkqgA04sJsskSluJUcKkN1FOc3TAaoQoaS1SvfhsMjLtevikSlAJFFMZn8gLiO4vzqghP+diVBhq6v5KPRlGtYkmhPXIosUKadjy9exHfwlurQfiRn2DU1MhLOX7muSRLQ1ZV7kTBDLNHGiSIL2XkpfoXRBgztmR2GwpF7K1fPQbMEtQqJx2MK1voHGH+w9JYYHkt2AM1egEZa0WlYkgSF7L74cPx2dP0joE8SIznDwy5Xq4BUCpQfYcnloj1JpfrYGlpHD2STbipYjlSH9iOcSD5ByrIXImE39s0SShElWSK7uHvscBseSzgjscgClg1IPv7ZSCzsbm/lTlSKKVgiR3DiWcRwHXZa293hWGQWxy9DemP5+EIk5m7HmkQpplhDsjaXFxfjRxIj6sBpp0Kz5Ua1At0vHp9diLndWBNKTYEiS2Dbe9HF5ejGWyCkgIEzhcHcbjjjxfcVKPFuJqBIDJ0ATckULORofnkZUBYUwUzhpzCYO0ZQ5l21RoZKKkNUiTq1t7aDggQLGGX6aC0ajZ6sQgGCqaYwlnBmQ5UlehlSXb2TD2ihud/tdrdTK94VY5x/k7RPDBCEGHd/pAWF8u8UylCSSm0sD7EU6ycJrYTFHLI/Px89wGYIoTpgYs0LcMbLjQnKbUSjvpsZGofU3NwsSQRxsc39KWoBaP6APwHDffCj5ISwonOQvtaRzVJLS3M/U1wL0F70ZP/09M4eoM12VqSxmptb2Ml21OLQAIltJ1QWT5IEqJkpWJzTk3mRtVOh9Lv7yWkhZ6m4MkWvASQvqcSYvRQKyhIogcU214Ag+0AQViQnGFrKNpbQiggSs2mNxV7qNAaJKSxL5HTzZG3t4I5bMP3MtIyhz6S32KhVq5T/1zAbKtV7vaHgxAQoWIxRM/4jnmBwwIxNoI+3HoXEZPJsKZZMpzeEUhNjglI0RBiiDdeZ9DozLSl0ZucgrLsQw3mXQqFgUFDA5CiI1CYYwlwY7FqCfGZypYRaR7XTuzQZQqkJtjhMKhkDMyExzmpHrVJIqaROKXE0OL2gUGqcKIEpCCvjwSAYOA2OEu25DSkHl5BiM9Y5QWHAIIJe4OTwW3wMZgmMs85o02IwuZB8cBhOa3MUOJmaDC0FKewJgjYDhNs4nQUOm5YGUwopw0GqSq+slyh8Y3IS/7rggECRmfrK9CpyMBhDF6VCS06Dkyhg0PBVFpfYQPAXSEOOpRCO/qIDSEipNoel2inilSMMTrXFYUu9zGGJ9pSiLbSl5xRkOy9JdkFOuq0wVZuAuXjRl0h6dYo29eYPOemWgrqLWF2BJT3nh5uoQw73uUzSJFIpbWqVLeevdEtmQXVDXX12dn1dQ3VBpiX9rxxbVSozelXypQ4kUBqUYir1WpXtR3xXCtQfbVXXoBCDOrLzuVJEsYXcLLyGFN7kN1rBcB04n5OYUiWq1QmMKYGRQoqe2og6X6aSVYnoBQxJIYCiJkWlkdt8FQULvaDp9WoET4mJKpUGytcywhIYuLPgdRKUy5j/AMjNl1sJeyMnAAAAAElFTkSuQmCC\",\"[满意]\":\"data:image/png;base64,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\",\"[二哈]\":\"data:image/png;base64,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\",\"[大笑]\":\"data:image/png;base64,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\",\"[焦虑]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAINUExURUxpcaWHWrCJTqqIVbKZZqKHVqKGVf///6qqVbaRSKqRVaOOW6mKVKeIV92TALyNL+m4CuumDu22BvnYVvuyGvPFAfTKFOOfBvPDBeOzFPjZOdqQAPC/APrAI+KeAfC9A/PFANyUA9yTAe26APrROdaQCeG6E9eYC9WYD/avF9uVAoeqhf/naPbIAPLDAOqzA8yPGe+oEfWrE/S8GuuvAFqjr9OgG7qZQEKhxO63APTHALCNQvvlYvPHAO+6Beq1AfK4Gs6VGeCgA9KQEfvXR7WtV7qgNf/OLP+0Hf/uev/MKP/vff/td//sc//qcf/XQP+/H//DIP+5Hv+2Hv/aSP/dUf/fVP/jX/+8Hv/hWv/lY//IJf/VOf/HJP/xg//wgP/KJv/pbf/zhv/FIv/cTv/QL//ZRf/nav7RMtl4GP/gV/7bS//mZ2ciAm0kAf7SO2EgA/7ILHEmAVsfBP/bTP/SNf64Hv7NNCKg4Cqp5S2u6DvA8HcpADe67v/BJSal4zGy6v/LLkDH8ja26t2BHumrAPPBTOOtJn8xBCig2plgHUXP8+PPX4tUGdWmPVceBGm0tfHPVHs+C/bJAPvfbknW9e60ROWXMOqpPL+OM/nILOvGP8ypSZK4kGmnpICwlti6R7iBH86RHbBwFcjIbqV8NfK+LJlnJZBICUXB5L6/Zlm6y8uiJlatwD+s1YwoQL8AAABHdFJOUwARDR4KLyQBAwcVGTQp/FEv4NX++t/G3sklx/Xp8e5GnN7q/d2kGq6B8ND+7+l9lHnm69Pr/kH8/vH+QeD4YbfgY/uU7/TYQBtDIwAACC5JREFUeNrt1flfklkbBvCRVUARUAQ0913TXMv2ZRZJAlIRFTMjd7EcHNNMM81cRxt1HLPMpWXam79xrvucZ/EzpjXv/PpeosXDw9frPudE3/0//z26bIfJ5MjW/QdCazqXai889TvLqUJ76jmT9n9QUlILT1njExLOnDnqdh89cyYhId56qjA1Rav9N4qiyHo2PuGox+2+cpnnCuI5mhB/1lqk0H4roysqtELxcMV12eXCT6LcbljWwiKd9tuGsloTuoJgrgBykeNqdRFGlCfYlWC1YsCv10k9Gx+QnMswWvFwIXiGTu5gVyD+bOrXSmkddmtmHzliITit168DI4kqoVNfptXuOLSU1nTEHos+8mBAkH9KgVj7EROkQ5z4pgANxhq5mHPz+s2bkACJCw6ooSn+EEmbDach0McgcYFuCoGErSPH4+nqY1L2AZI20m6vZxDuRSEaDI0kqFUejaB6u133RUmrLTryg58gFBIawdkLQWKjBQny/3CkKFL7JSclI7OeIHHTCJIdQOyEi6M1+OszM1L2S1paoEFAAQFyrz15tOZy7YXWHj1ZwwuAWKP6wf3LRAuUavEBEhfbs/6op2dNnI3v/1pPz6N1D1+jQFNv/aDPkhopSHIhU0ZmZ7u/l0PBGTA963z/eWj313tAzQSDYqPOzAyTMJxc6Lzd6wvVA2oIrGwQ07Mhnmy0aeXHaKOHqI2VQAMgf8jntZznOycXcmRkEuSP3XgChf1mcpjkIod/mMwILz7ZiEUjnzczw8EqyYWOWfq9tEbrwo0zQfFfrRCgdKyDM8IvWmdQv+UYVZILqU6W9Xs7fVik2JmZmdgufpT2fx6x48hu6fW3+zq9/WUnFagkF0o5OQwo1F7v7+UHYPHEiUU3UcB4yKGrwp7569tDgIZP8rMkTwYIjRZfs+Xu+/M35E83KLIo5PCrdBoZ5CNIno0m05WXMej18sctSIHnv7A8d1MYQmOJVwVnkEFl5SpUEgs5MpKG+/u9i8t//LHchEoLP7O8dXvcUjyet/zqAoPaQ+T0DydlOHQydK48DGhl+VdAsai0dItlyYO46cEiXmWFRChcfk6aTas7ZiFo6z1Bi1jvhdssC0F8VkoJilelweAMT1qOYTahkO68JTw5/OHjr8jHRezc0wGWp11BooJAkC7xqtiHoMmw5bxCglSWsvDk5vLDh4Dev8YZWJkbQ+ZW+vq6pPT1iVfJGZSgMkuEToQU5RfCk1tTDynvt0KQHs/hHY8bcKSkBAIN/KrkXKPJwhfKJUiXPZ0U3v08yqDRndAgpNjHj2NxoPAQwp7QVdm5dqe7KhxOms6WIAegnanRUTCjo8uLPkhYqN4mOgkAiEDwtBfLQ+sjOh2Tk4AcqkgBMk0n7X6+DwS5/9frTl+onSiy5JBCDO0XORwKtyRNmyTo+PT4ztR9SHDuT215IXEKlhQ/Z0K0X6JTBWh8+vgeaPfzBCTK1ETFprdTpIDxABEZcsDc6QYUZpBCHq3gHiBipibu/fXB60UpH7NI4wZTfHKd7u6qSRSi0STIcWn73sTEFAJnZH7nmpcosgZDocHQIP3kChjJwWBUKGk6SoKUnyrvQULgjDzYxp2cgiWnU2a4U1VNUN60RoL0JypHIOGLnLsVd65xCtl88XZpdXVp4cUmnhAj1umoAgRn/EKyQYZ+qhyBhJBzd7u7+w4s5NPSL1JWn+ICb8Odyerqlpbxq5Z8GYrIqXgwgoCBM7/T3cGoYfaxJGfpjcxQn+pmFGq05RhUEpRbMP/gARhy7lZ+6OiA1D27eusfGZsFAkZyGJSrlyDF8U8VQIhBoYLhqirc/Gz11m2WgYHbA7d5xt6QwpnqGzRYY9yl4xIUqVAm/1gxD4Sc7WdVLK8GkHevXs5SXr5YWB2A+KpKYpqb22rGGxsvJGvkjxGVIce2u105j1QUbFZXs5vfjc29QAE5s6/mxt4xhqDm5pYaFKq15Sj3QPqLl+LePC8oKPhx99mNG7gNN8++RDWaQ86zl7NksD4tbTVX4cRduohNAySsttJmrq1tvFrT1tbS3EwUYfvDkeob5LRRnyGzTaNXARIXyZCbPDQE6SqXBIpVEwmhCynN1KeGnKHkXJoMkDibOtlcV0tSTU0Lo5rJ2h/8DoGBU1tnTlYrFfL/azRbbnJcXd0Qk9AKFjBqRl/iHzCgtIjOUF1ccq4wmTybJt/mRCcugSJL1BAYogJG6OO05UezyWQIlWKMZlQC1UhUTVsLMOJEAd9AoNDqNNbCqTMbYzR6cc/kSheNJU5IjZBQi9LGApIHCCsDhxhnifGiVGhvpehcY6mTlZIozuHBDSgiA6fUmKves0Lyximjs4x5TlBSLc7JBim0OENgnHnGLLXGoBALyRun0GvUOUazkyisOjC8Sw6vgq2iNrjJbMxR02ByIXk4g0ZdnGiLczIL78CMePAAQSQmzpZYTA4GA/QlKSY/vZRJsKDhrUwcYgaCF5DS9PwYOPr9DiAuRUdlGdNKnDyEyXGKKUkzZkUd5HBJYVBGq2OyEtPNGPDLiTOnJ2bFRKk1mIst9AGSXqlRR53+Pj0xzZy3X8kzpyWmf38adTQGYX0OklQ0nlodVZyTbkxMs5lLSvPikLzSErMtLdGYnlMcRYxSr9Ad6EACpUIpRkXFFGfl4708UPOzimOgEIM6knNYKb1Bwy3kdAzLafYECmOozqEOJEYpIgxK9IqGJocQKHpqI9T5OqVTRKCXEpocpdIARaGS2nwTBQu9oOn1Bj1LRIRCoYLyzQy3BAycGPw9EspBzN+M+3KMsz8MrgAAAABJRU5ErkJggg==\",\"[笑哭]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAI9UExURUxpcaWMVaOOW6aKWK6GUKeKV6ORW////59/X6qqVaeMV6eIV92RAPTJEN6UA92RAfesFey6C//WSLuQMuKbAPfGAPLHAPTEAvC8AO24Ae69BNylEeOeBNmYC/PIM+ioCumkDPCpEfC7E/vna+26AvmyGNGRE7iRPfrZQsaTJNuhG+uyAPjRLO25AfbEJdeUB/PHAPPFAGCfpdSvSPffX9yXBey1A/vkZvTGAPvhWNSPCvrPOuKdAZyuePHDAHSbjVmgq+qxAbmmPVWgsqmjSP/kX/+zHf/tef///3QnAv/ue//rc/+3Hv/vff/qcP/sdv/JJf/CIf/EIv+9Hv/hWv/cTP/wgP/fVXcoAv/AIP/mZ//xg/+6H//OLHEmAv/lZP/nam4lA//obS2p6WMhA//zhv/HImgjA2sjAzOz7P/dUTW27f/LKP+1HVkeBDGw6//WQv/PNv/ZRje57jCt6v+5HTvA8Ph1dUDI8v/UPTmv4vhoaEbQ814gBH8xC/bJADOp4kCp1M2RHGitrnkvBvVcW/v6+oJQIPXx77uLNeC9U6JvJ3+rkm+poJ49JejTY8/BWM2hQKxqE2y3tZFMDu7n41asvo+2kPLRS/7ILVqir4ZCDseuo6BcEHE3DmYsC+avIowxFNSjKKu8e5lqLObc197PyPG6JHtFFriXiNTBt0++2LB8K6FzX3k8GoK1nujGRpJZG/uBgeO4PpBbQrZTQrS5aM/La7rDcu27Mj245edxbKyEcbt6FcxMQL8Y+foAAABFdFJOUwAzGS4TIw4BCAMdKf3I4fDuFf5M+ecp2vbfPmbdl/3a4eXQ+HP2gDrMWv77xaHatveJnPz7xc/opuGp5+77vVrNuODY/UV+atAAAAhuSURBVHja7dT5X1NXGgbwScISCFkggbCvsq/K4q5tZwimRHYMWBJlqQtLJSBUGKUEqOw7AoIConVf625t/7Z53nMO9+ZTBpl++us8BlRy+fK87z2Xf/w/fz/qwBAkUP03CN+QPQe0wT+JBB/LjAjx/euKX/iB4J/M2oyUg/sTSksT9h9MyQAavDfc969gvoF7g3O0KQnFpaVFRd9+W1SEV1FpafH+FG2OeY/a939ncswpCSXFUGDwCKpkf0Zw8B4/ULszvhHB5pSGBjilTDl58uQpfIBiUkNCRrAWA+5e50BOxumGEuYUQSHmFEkwmVRyNk+bsxeldrlTZvPB02fRBxC1AXLqu+8giU7F6HT2TErwsUCU+sJY4aHavDPMEYXA8IDaqtRw+sxBrRnSF52qQrmQcL7/niC0KpIqFdq15hBIO81FDqASQKIQGBZWCY04dBrSzp18fcK09qrCM1g1g6iRDEGi2QgqIaiq2XzAj0nbB8s0BwlINMJk5IhGf4Lsh0P5gdp+fkIPN/+pESBJEtuWoeaMUJyn7Q4WVM0hzx3JK2KQvCNA1dqw7Wvy9TsWH1RttxcC4neNV4JEd40tW9w1GQoKw8HcfucPE1TlCUnnCIx8jggq5FBWqFRJKlQQ3w6oit1+edskAUHo5pPDDyRB1dVB7WGZUiW5EKBmggpz7w0/Hx6fBgSJLPlZm7k3/HB4fAyQnRq1oxIkz0KZ8T0EodLs2g8s1+4lMIow8aRND//A83CsikbraHeF4deTpxOYntXT3gHIPt4kcu3aMCT59xGcNemtplE7G80VH6ZGJRmKCHMRVN083nT+/PkL+IM03WNPLr3Yfh7SW/y9pvOjzdXUKDo9xBNSfx3vcvUQNFQ/9Gp0dmws9+lQfX39WGkRKARM6Si+sDqaOzY2+3TBeuEVTdbjotlIEoV80rNcPazSy9fYNzsCCaN91vFiAMAoxavW1Vncen7LXi9ToXaXK77AEwpPj3aJ2eyAxKnMGx0r9kju7Fnh0KbhsEZZ6V4ypN4TdpOg5Q8vBufnB/MAkdRQgmwx9O8G7hROr8zPzy+9XyboZnq4dN/81JkFgF4uDbpbuq9cffJedGKUiGCYU3X305WrV68+mb+7DEhaEiZTF8TfjH432HuxpRPQizwxHaMaBAIGdZhjnx7EZURNzrhuFmR6QGFZ0RPuxksMmp/GaRIULBEogqnCmX6/SNCV7s7Fo9HxX/tIkDI9d7K/8TKDnnzAxoVEq5ICBgFDi176dAXp7u50T8TH+KgFpE7eXOlvFNAg7iskQcESKWQM+rAbNr3Y3U1SZ0vvSpqXBBnRR0CfXnR0kMQpWCJCAcNufNBgZzfS2dnS0juhFJCfep+7kUP48t32Dk69nH06/urh2vo6PcDr62vDr8ZHZ5fBwOlof9HSiQC6eHHxuNpPNPqqX0AXAeFctm+Or9azh/MaFBE8qcjawtPXONHtS72Q4ADq3SdB/2zkEKTeDz2bt4cu4MF8/ubzo1v3f7kxcv3E9ZGRG788vvXo2Zt1emz75j72AOKRIYz2FYdIcs9s4tkc/vx45MR/zY1bz57X1w99PNqL+gy65AHt69+CLi3OzDnr35z4UkasTufAjBv1WS65j/tsQcdXGIT0LjkGnE7n5xs7O/ff4IKN6Ml+/FhyLk96S5DyX24+XP9gtCN6yIofOfXs0a3HbEPXsaPrbEv3aU3PnU6rdcHhmFnEAMjllW+U0rK9Yo/Siex3T7x0OBxzVgQ/FbvCzptEsOX6eicUyoAD0mQ/RnAPfpPtAeXHvD46MTnxLtqBbODKGqKEJBjh0HurDkr0O3zL3Y8xUV4yFBVTV1teUVbW2upAbtfUkETUBRwEinCg4FWziYtaHa1lZRXltXVHIjygVFNdZW15GSQHqAd9gEhinRAw3IGC3HYQ1Fp2Dk6twZQsP2s+GpOBKlWcA4WLBuhyeTwoYCSn7wFj0AdOXUykvwT5+SizY+og8elAzdVQ2Mr7+qDgMxwBpW05NJgtMsrfR4LUXklHbDRcBSSysCY22523P/76629T7PPbIe4MgIGDucprK+sSTUal9IsNS9IcibPV1cpS2RyNNvWjZ367A2hogBTeB44tJtIbuwYkluQfFWmzYTpIWBRRv6PS23975ucpa01fWhk5584JJ9EU4e8B4Wwnm1CJpuMrRzYWrNa+qT9+FvljCrPOPWBvEcMcFNLwyaTZvKOOWGxEQQLFrAFQ2NOdqak7fVbkdhpTBAOHConJpNmUKl1MG6TKyvLainJIzEqbg+VErEMLvz8gBQFDdeC0ReZr6J7JkB8qpZrieCeajyiulW+kDQykbYAlA2UYwxxLjN7IC0kQVfJOMhna2kgiiixI+OCfQTAG7+B9Vqct1pSKQgKSK/lrovQGC8azdVErfAdtnl4VIsTX1pLTBccSZ4pQiUIyxIZTZesTSerq4rUo5SIgKKIN6lgMpiSVt1LakFwJwymy9XEWC+bDrlALER4EhHVBGWzHYokNiFJ5i8G2S6qkgEhchFptXWhWiWZbHv2HEJTBBYk6PeZiZ1GG5OEgpep0BkahF02JBkTa8DeLhRhLnD7fqNJIznbJ31uVnB3AKdIsNgQgb0IGY3QBUQq5zzaJT6dRGA8F6GItOyUxVq+PMsJRCmcHiUopjFF6fWSsYbtiiNUF6JKSFSoN7hd3viRpVIrkpGx9gF4XGRtnMCSihsEQFxupCwjQHYpQgMFYwtlJkimFIjXpUL4uQARq/qEko4IzqCM5O5cCpfSGBQxJNhpTU43GZPyTK2jjtQsjJE75wwIGjguIhhSlF29Dzi4UbwVL6Q9Njr+/Egoxcp3dKViEIQABIIRwRWZ2pwTmGSBQdmL+A1aPbtLBcZdiAAAAAElFTkSuQmCC\",\"[哭泣]\":\"data:image/png;base64,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\",\"[挑眉]\":\"data:image/png;base64,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\",\"[调皮]\":\"data:image/png;base64,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\",\"[吐舌]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAIQUExURUxpcaeKV6OIUZ+PX6aQWL+fX6qRVf///39/f5mZZqOJVqSIVaeIV/XKEuW0EeulEOKeAOxST/bJAPPFAfrAI9qQAOm/B/C/APuzGt+WA/evFuGaAO+4DMCMKvLMRv/oafPEAPC9A+++AK+ISt2SAfCuFdWZD9uYB9aQDPrhaPW9GtWVIPbIAPbZW/jaP+qzA+22A/W6CeqyANGgGOinB/LEB+KfBMyPGfLCAPjWMPveU+u0APrKMuuzAetsPfXHAOVgVPJTUu1UUOKlAtCOEfnQNPC/AP/td//qcXYnAf/hWv/bS//jXv/uev/eUXspAf/rdP/fVP/vfv+0Hf/gV3ImAf7TN//pbv/EIf/NLP/xg//cTv/wgGUiA//zhv/mZ//IJf+2Hv+6H/7LKv/nav/EJv/XQP/ufP/aSP/AIP/kYv/YRv/PL28lAmwkAv/JJ/+4HvhpafdiYv/GJP/UO/ZXV1gdBP+9H//lZPl5eWkjAmEgA/+9Iv/ILHkoAX4qAvhlZf/RMf/YQ/p+fl0fBPdbW/hubvlxcf/AJPuFhf7NNPdeXuirAPl1dfFiYJdNDKdlFXQwB4Y0ButYVIBBEfrEJ4tSG7OFM8qaLp5eHPp4WZJlLMGPLei+QuTHXsWfSdazUI45HvGyJc1hVc2OGdeqM7FxHOtpZdqjJfuhOKV2M7mYSfuNU71TQOd6dsB+F4kOGAIAAACqdFJOUwAjHBALCBUBAgUyLSnGL9/w/f7f8vck6frZ7vrSTvvtnUb8OuvkgKyk/dZi6fvJlNsa7z7YzeB5fsPc+uC27mqC5b7Nk9bB///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+VmyF+AAACKNJREFUeNrt1/dXWtsWBeCHgogNFSH23nuMLT25TSwRlYiaaFAUUbDl6o3RgERjbM9EwF7Se277F99ce3POUR8jcbz765sWcCvfmGsBJyP/+n/+eRTndVFRuvOKf0AoddfTI4tj/SmOTL+uU/4PSkZ6cawm8mLppbS0lpa0tEulFyM1scXpGUpgZ1fk1zWxkaVp+rqWurpbLHWIPq00MlZTK1eelVHUFmsupnXo8Vgwtls2G74T1aLXp13UFNcqlGcbSqMpHejQt3DGZmtra+tuawPGqI6BUo0GA36/TnpmZIHo3ILR3c0gSIBIKojMTP9eKaWuSnPJTA6HqE1395073UTxSpDMlzRVum+WUkadqyp5ONAByO8AQZhkk6SHJVXnoiB9w4lssAPSs0ZYD5x7d+7dIwnlGNRCUFND5Dck5Xk4TXYzQXD4gu6xwOKV4Oj1A2Y7SedDlYEd1S9Vzcchm43WI0AYDuvmoxHUXPWLKmAnZWjtudTWhqaHZjhCozsnIDRio3WYMVtr6rlaVArgZGT+3NyKFfEnjSDbsUKAbGIjQE2tzT9nZkA67dCCGiUIEnvyRYg3QiFIgOwNrc2NAdaEQunljsbm2w12vqOO3w+/vrTx2cBw5/Xh4Sv/juwNt5sbHeXpWNMpJyrziuNu623sCFBHwdYD5Pc2knjQbpfOdoRlE3QlMyr0FKS6mjyIRoDsdkB4DNJTYAPVjTbU5+UDllcdHQN2globHYPJV1VMkgrpMq8MDmFHgKjS1iLLK/YegUX72eVnhx1mrKiJdjQ0eCVTdxJSlZVPMQiVsCRzzyOWr1g4SiG4mBzyMy89aVSoGY1M5WVUSSokryg0DTqG2JKwpZc9PDvHr0db/sMCOATdHXIMThVWyE9AGZfXprCju6hEz9vr2dmxsbHZ2Z06RLhCenFGhyWYjArdbQS0djlDFXp8suQ109TCECC27tdjo5SxrZY6KV5+NvYShRg0tDBoWksuUyiVYiFFeSEaLQw1+qUX7Tw7LQghLXglbvGz0RI4vNACGhWWy1UipNJdjkMjLKmRb6mknmdf3yJGv8PPvHa+oUZakWkt7rIOswlQUYVLgJqZNDc3Z5ibq/9Kb1/6pOzXzxkMc/VbvJAAuSqKFMK6QxVlyQRNLTgcfmnf4MaH4TWulTy4fWWgI8PHY87U2lpXcpmcIL6iq8muLqq0IKzphc+N7OM1Doo+kYINOvOl+p0FrNq01uVKvkpL4pPJKwUIw/klz8bGUYHZPMBipi9zye7Gxke/g0JYNUGFlcG0JA5VFLq6Rky8EpcwHvLwoVmMHc86rUdwBskZAVQRrBCgoPU4l2tkHpLYCaVA2WEhdnzh1QUGdY71Mc13uVxx6zKFku9apQPUNQKJd6I9sVJkQcMHAoXVof1gQcwZ6eoCFIVGDFJErcdZIQFinRyQiCJLCinEwHGwuRjksgKSC9CFdStBfomPxylYPFAYw8cSHUDW9QtylQitWF39kEwkvdj7IFLAeICIzIe9F8yZHxnpd1lXREhJo1ElDDc/b/rsbR/z7h+lDjGLNG5wJfVo3zs26v1smqdC/f1WjHYa6ufSBt6Xo7habHn2UmFJcaTuebZmZ3FhaG/fQB8MhkK0IxEKWk9csY6z4QDV13Opp+eRd8eze7T34cPe0a5nx/uop4c7gGguOOPWlcR1mQiFROc4rdZxqjQy8rEeUjuuOyQtLj7gWVwE04NLGxj8wUf8IQqNW60rOdFB4rJDflQ7VwD1U6fPc1waZRIoWGD8Tjsc5DN3UMip/jFEgvIqAU2Og8KvfYZ6TvHxYIHxj8WdOR/9HRyCKvMkKDi32gKJQ11/G3ApkiQE36Wx4Mz9TQ4rtGKpzg0RXpCq4AtJ8YCsvYza9gkSxnvz1+rqp0+rq3+9YVsmxWDwbdNYvZOTKBSflBKiEN/9QdE5Fkl6b0D4ptxPVldXnz/HtyduPpUBeY86veO91s4VpzMnWnYMwpIsTlpTL6M8uDxy6t0qh5B31IYct6drvH+8t5f6OC2VeUHi9QjbLkqKhzTcOUlU//aGwe0m6M0TyuYmu3kDGIxhYxsMzTUMJz6pKIiukMK2ZdXqCYtzeLizc7IX1PYGGiHvCJjZ3Jyh23dsLDjjvXA6O1eGnZYJdbUshCBxSbnRExOWaSeTkG2PG518M+QAejYzM/NkxkeOZxu/Rp/OYee0ZWIiOhcrUkpQSHi0ug+dmMSo9z634c8ZyvLm5jK786fB7Xvfy+t0Dk+jT586OgyTif+uYTZUiu/rs0zTdNx66zF8mqEsbW4u4ebZzCeD5y2VYc7wNJx4FOKTSZVkCdXGPosFFCxQsN4+Y7kfE3Of33vLFc7AMVYnRATh0k+QVCkFw/VNQBJbfVlmeR4T85zf+4JjzjAHg6XwQmJCqVJRUo6xb4JTzPpjaXlpeXmJINzihz9IERljTlIRCgmrlipF5CYlGvuImubUwRKFQywHnKHtwElMyg0XC53YUkR+dKIRFA1I2MF9FoL4vQMcUhuqY0yMzmdO6EmIDReel6Q2+ilgeCiX4PAAgUKMUZ2UFyYTN31yOEg12oR4I7PwgMf/FZGJT9DWhEUE0WAcOrUmWXhKQnYik4x9gH59/KsY/PAYx2AwVnZCCncC/WdExaSsfG1CjpFFIKTw85wEbX5WuCywQ5UgYeNhKfnabDUNePDvUzmgodTZ2vyUMMkJLMlDUCos66dsbYI68cvTU/mSqE7QZv+UFRYeIQsJ5k5ACZQc40WAqsnL1mqv/YY8/e0pPun2mlabnVdDDNVRiE5gCaUYFRaWUpMPScq1/JoUHBPD6whO4PGoFCiykKKbAhNzI4wUP6P4jsNLqeTyEGZFhIdn3fjhZkzMzR9uZMGIkMmCzsBIFAZELWDQpBACBYySM2ejYMmDoUkJJgRlhDZntZSEIXIeBQwVUwIz/wEwBK6JZxbYFgAAAABJRU5ErkJggg==\",\"[惊呆]\":\"data:image/png;base64,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\",\"[歪嘴]\":\"data:image/png;base64,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\",\"[冷漠]\":\"data:image/png;base64,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\",\"[害怕]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAJbUExURUxpcaKHVqqRVaWJWap/VaqUVaWHWv///6qqVaqNVaeMV6aJU6OOW6GIV6KLVb+PLOi2DPu/JOG3EO64DNuqE/jCANuRAPuxGeSgB/GpEuukDvevF96XAOPJI/PFAPPAD/CtE9+oD2m/s9yTAd+XBeOfAdaQCtuZB9WZD/XGAPPCAO20AJTc8KDi66jh1vPIA+aqBMyPGduTAsrEQe+7Ae+/AeqyAOq0Aa/cr3HBrLnWkvXFALCNQuOgAPy3HbjIaO27A/XAH/XHAKvfxNXPVl7E0umyAdDVZqHYvNKQEdeQBoTU1JzCfP////+0Hf/PLf+4Hv/RMf/LKP/IJTe96f/EIv/NK/+/Hzu/6v/GIz3B6yCw4P+8Hv+6H1nO8//dT//bS//aSP/UOP/JJv/CHzG652DQ9UHC7f/XQv/VPFJkcP/MKWfU9//WPy645W7W+P/ZRP/SNXXZ+kTE7lLL8v/NMSu25P+9IkvI8BcPAii14//IKnzc+ySz4TW86EfG7//AJP7KLf/fVTS75//EKBqt3v/mZW4kAf7PN//hWWgiAoPf/f/EIfv9/mEgA1XH69yRAD+64lsfBP/0xv/iX/bJAOipAH07CXInAUa/5+uvAEmkw1BtfGhjWsns+EyLo1B1h97d3O/6/YfY8eq1KOD0+nHS7lGEmCAYC9HPzKmmof/wr//ohf/ldP/87t+rJ4lTFbmDIO/CNNCYIbNzFfjHLJfFi1KatE9+kuLRVtXPX5RNCkK2xvfVRoPCnFC01pSQiubl5L27t8aQI8fo7LbNeJdhGaBmGP/42pB10xAAAABNdFJOUwAvFSUGDBEBAwkdNBkpIVAu8iTTPRP1+t/o4e735OXe3l3+6t7upKyAmcLx/v769tJ52Nn7geSX5fvd60H7+NlI1G/s3fq11uqUyPfggA71NQAAB51JREFUeNrt1flDk3UcB/B2Prs3BoxxjG3CuOXG+74qDRhbY2IsuSqR7lqLKARbOgsbC2RcggaileZtHqnd9Wf1+Xy/3+d5JkOg+rU3suOzZy/fn+8En/k//z3qdLPJZE5P/w8EZ9pVXJJ7hqXCXlLsNHP/XEkr3nzG9uym3eXlayHl5bs3bNpjO5NbnKbi/oGSviu34tndZV8sTtmGPRW5u9K5VTLqus22DXMfL525DbaKulVR3A677bl3l8tztlwnx61Yp7hi08JbK2RTRfEKpThzie3A6yvngM1uXq4UZ8qtWXh1NVmoyTWJUrKzefvLq832zU+VuPTc7e+zPP7h4t2LP0TfT0iUjB4Lz7fb05eWOFVJTfRDksfnjpJMfZiQKTo7xw+jNSVylJKdOlv0GGZilr1lduIYDRsz/iIb77XXqbglnB21e9/DxPD66dmpifeSMjE1O40vxujTjbWmJImDA3rhNUxsGuu/9tRMnUOJPobleEksVFwzcQhz9+j01KFlMzV99C59tLd2B4NEx1S75iAmNj0bO7hCYrPT7JoX+EoitC/1xX+RNbVpBBIdc+2e/v5P+z8VcjAaPdTPgnO46YfZQbxnM0zqelJJhNan3n8lIdGZ0/X1p2eiy84wO0ulAImOunTn/TfFzMFbMKfLxFkZP5tjA5JIqVOuSoB2lAbvfSBkoV7IHD+bE2cL4pWxSOp6tViJk69PjUQ+4hP7WnzT6Qk6m8A+LF/HhEsfRXauUwAkbLZuZ7Dj0ScsZXj1N2fPfoP3a+lsbeKs7BM+94Ipk2bcjUHmyZRgx8MfX6KZgWt/vtTbe+k8PLhAZxfg4Xmc/UxmLHcikWCpU81x/GbO0sFgpPsek3Czb3shP+FudIab/YSzb3E33umOBAdT64RDUsERAdTR/fDOj59B8G//RXjTZyQC/gs2wslLG+93dyC0Dw+JHdE+gEB648jb936/s/G3esjZ3t6zWGOGQjNYDmf42m9rHv1+/+GRN8ABqFIpV/FQpQC1t7UdvlyPOX+e3JVvXIMpT5xdPtzW1v42g+zrREhRau+D3SLdTBqpF/LXCZa/xNkIc7rR6bNPStUMkmsmUwBqaupg0uj39SzfX+GhK+JslDkd7zQ1DvbB588gldzMoHeo1N52nHUaOTE6OnoCvvCOn51qa+edpiBCJgEyTaaE+wYbASISlDp85buRke8un3oil3F25TDUIQ6B+sIpk2kKBqnTxsII8RI9KMjx48dPkW92gzOyFnNws/DAWCI0QCBYDrfDUoxCDIMIY7AO7oVO8AmIU5vGUrBSECQ8J1qqHS0WQWmndfB8mBNOAUjOIDOBPASi6yFFLTGoAIN1qNMY9BDIJECasWzYrc/TDNvR9RiFFgsqyJA61Gn29MFm2WMyAZK6HCGfl0K0FFJoHblx/c9r8fi1P67fOAIKMqwOOACFfQN2l45BKrW00hEaCHs9nsFGCKGI1X3z2ldC4r92EwUYcCCDHo83PBByVOqET01ZWBka8IU7O6ETQDwV+ePLJ3LtBjLUwcU8fV7fQKiyUIDkyiJrACQvdGpubmxm1Hz880UZvyoozcwZCFiLpGoBStu6DSCft9Pj6QGK7Hc7/vnJxYnfbiQOMp5ObwsU2rbVKP7QKjQuB1bCTlAKKMBunRwfH39w69erV+fnr968/mccnp68BQgwPch4feCEHC6DkodUCl0h7EaWY6UAejAev36jCbthC7iZvxUff9CIDPaBS9EJWAs1Cb/YpM6t24jU0uLtRAounr95uzExQNy+Od/c0wN1sE8LcbZtdcKnL/zOVhqsDncg5O/ytUAnoHo8PdALwiNsJQww1PGHAm6HVSbF39n8IemKXG53oBU7MQoswLAaCTwCAkaoANPi6wq1BtxuVxEcEYcQ203icoAUCvl9jPJ6COShX+wPlKGOz+fHPm6HS6tRiP9Bwm6aIlcGdvLDekCBRXslBg0sA0yX3499MlxFbDNxN1m1tcEdCARAQopYqNHg6RIFywx1gRMAp8FarcfPTITgp0RjzMlqcAPV2opUF1qE6yQeEHgwoPiAaW0lTlaOkRYSosJKzpxMkIAK+aEWZAgwKMdu4XtoiJTxIwNOZo4TCvFHLVbSF+VkNyCFpRjVBe/1gegbQoQoWAeZhuycIomBLyRKCqlBX4ASoxBDToifIoxBp0Aig3+MiyE5SJJCOCdGuVsJhhwj2MlQBs6nUCKDxQRHlJQ6maTKkp9BKYrh2bMEUOGdjHxLlURPHAESjwklY3VeJkrUSg59LTOv2giOlCy2GKKSXlswnI8US5KBTP5wgRb2SnZYJZQMeomxwJKXBQsunYysPEuBER2l6CRLCqlGJtFueT7Pkp+VnaxkZ+Vb8p7fopXoDTqlmneSJfzsSCmJtqowb9iSb83KzMzOgGRnZmZZ8y3DeYVVWmBwLbUKnadLWIpQWmNVwf5qyzCLpXp/QZURFGR0ZC3eWXo9oJRSnUGGFmaLkWQLPkZFbwAG66CznEQoWFADlh40iJbcIiIDRZrErEBBLw1oQgyAEAWXYszKFFqAgSaV6qQk8EQBilxos1oLi4EGUQAAkSPy1DZ/Az858HHIWpUcAAAAAElFTkSuQmCC\",\"[震惊]\":\"data:image/png;base64,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\",\"[龇牙咧嘴]\":\"data:image/png;base64,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\",\"[无辜]\":\"data:image/png;base64,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\",\"[困惑]\":\"data:image/png;base64,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\",\"[吃惊]\":\"data:image/png;base64,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\",\"[呵呵哒]\":\"data:image/png;base64,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\",\"[可爱]\":\"data:image/png;base64,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\",\"[鄙视]\":\"data:image/png;base64,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\",\"[流汗]\":\"data:image/png;base64,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\",\"[沉默]\":\"data:image/png;base64,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\",\"[嘘]\":\"data:image/png;base64,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\",\"[眨眼]\":\"data:image/png;base64,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\",\"[悔恨]\":\"data:image/png;base64,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\",\"[晕]\":\"data:image/png;base64,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\",\"[心烦]\":\"data:image/png;base64,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\",\"[生气]\":\"data:image/png;base64,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\",\"[愤怒]\":\"data:image/png;base64,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\",\"[难过]\":\"data:image/png;base64,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\",\"[失望]\":\"data:image/png;base64,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\",\"[失落]\":\"data:image/png;base64,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\",\"[无语]\":\"data:image/png;base64,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\",\"[闭嘴]\":\"data:image/png;base64,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\",\"[得意]\":\"data:image/png;base64,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\",\"[咒骂]\":\"data:image/png;base64,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\",\"[痛苦]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAHvUExURUxpcaGGV6KLVqeMV6mKVaWHWqqRVf///6qqVbaRbaSKVaOOW6WOWqaJU9uTAOOyE+y0CeOfAeumD/PFAfPGDPCtD76OMNaRCvasFd2TA/uxGeKqHO65APq/I/HABPC/ANSWEOKdAPPEAO+/Ar6VMfW9G92SAfTDBfviZ+afCvbIAPjWMvLDAOqzA+qyANOgG/rNMd6aA8uRGPvbQ/zlZf/ma/PHAPjOG/vgVPi6H9ukEN+hBOuzAfu3HPndWPfJANCOEfvXR76MKv/ue//JJf+0Hf/MKP/NK//qcf/rdP+7Hv/fVP/PLv/bS//sdv/FIv/vfv/teP/ZRf/aSP+3Hv+/H//WP/+2Hv7RMf/xg//CIP/hWv/wgP/pbv/zhv/eUf/GI//MLf/lY9l4GP/cTv/XQv/IK//gV//jX//namojAv/VO2IiA//mZ/+9HmUhAnEmAf7UOP+9Iv7SNV0fA//ROf/AJG4kAXUnAP/FKP/DJv7ONOirAFgdBHAwCP7UQvfJN/7pdZFVFPDCS3wtAfbJAOWXL306CdyQAO2wQJZNCtOjNdauRMeOHtyjIOmnOu69LM6bK6htHvTQXfnZZXI2C8CUON2BH+nMWnpEE1McBKN3Mt+6R8ijRpdpJemyJaNhE7eFI4U+CvnGK7p/F56xti0AAABDdFJOUwAmLB0LERUBAwcwGSI09ibU6+DfxeRPp+7d+hv88tHpf/mdRjvW6y/92+nFfJTvQd3Ocsnp8PjD3Otdq7b4+GWT71sOMf5kAAAIVUlEQVR42u3V91daaRcF4BEVxIIUQaxRY29RUydtmqCAvURjNIoaLINRMSqWIKDRsdcYTS/zh377nJfca2Ql4/rm19nBBEGftc957yU//Zd/H3VaYkFBYpr6XxCqxF9ykopfhFKclPNLour/UC7nFL8w3Cy5euva9UDg+rVbV0tuGl4U51xWAbu4ElVquJF09Vqgwdbc/Aenubmhofba1aQbhtIo1UUZdWmxoeR6T21Dg2AkymarvV5iKC5Vqy42lMFQMtJTa4PDQlNTU3dTE56gVKC2Z6TEYMCA/1wn58bNQtmB0d3NEEKdbD0jhTdv5KDUP5xUpuHWGDk2zEVt4HQ/fNgNiivZatFp7JYhM/GHpVQFlzLv94+IQuwAQUgCFJJGRvrvZ14qgPQDJ+lRfz+cEETO44ePH5OEcgzZUKl/+FHSDyRVGpzh/jGG4PCCHnNgiUpohEpjLKXFsBTuxCRlOr6B/qD1SBAkAfUw5MhMUnOncKf00m8MwQEkJguHMFoPQ79dKqVK4c7l9AqHAysSh9YcWF8NnCkEKLC6HpAaDTt6K9Ivh0sqWlB9rwwdvhoYOGpqOgsdDQy8OrRBAtT/yOGo5zWFFcrJbKmXGh2uDgwM7Eqzhc5/Fy+uHqIRQUOO+pbMnBiV6pxTkF7RMugYoh0VLoPBrwSk6wih0w+I15cLeUeAKtILYs5Dd7VLLfWAlndXMRSyHsC6iepGG3E9Ym/81qvV3WWGlrR31SzJTmJ6xVIrdoSf5B/dPeIrUtyx7IgPgKPdVwOcdUdvfetSRXriOagsc5ohx/L67vryEV9JQoKFsCNutSP+EQeglqXpzDKqJDvq8rzppZZWXpK4JCGFfR7xRSQOH7sebAWUVx7FkHwN+R9gR4O9kPjcqJKNKFgyQ4W+nlnvIDXy41qKOTuZdmH6ARoRNHxyclhIEiAbJASM5BQenpwME4RGD6YXtGW4UeTJjHmAnrRypePXr18/P33/roc7cS2Agnn3/vQ53j7mQgzlGWk2+cwyAGFJ9djSlvs5x/fmxAaLw8zJG594x72FDcFZApSRnqiOkaDb5S5q1CIq3T8+fcZxvynEgPRACt+4xaunx/dDhZ4AcpXfls4tRl2mBSRJWNNW0M3xva0V6Xnre8avBLewINlZcGnLeDaxortal3Nh+s+z0to44na/xNb58dI9Tln7xplecLq0d2UoSpsnQyQtB0c54+O+kVB84+PiteAyOQz9SVCeNpqXxFA5IOeUJG36ZkVGfe/GQnnnG50V8W3KTh2gcglSpy3+7HI5OxcmhbQ/QVk7ON5axmUugot5eev4YI3f2hfO5BQKuX5eTFOrQrtOXMxAo7rOKZY2vRMT3uAmNvUI9wso/KHg2yHHZpDe3RROZ53T6cpY5PNnKHcxY87FECT/mtf7eXOwFzfwECw5Q0O4UXsHNz97vWt+OAy55jIWc6O+QlcWZwgS0kev92AJiyIKlhQHM1jP0oHX+zHkAJpZvHIOgjQ1NTW5sbL9pAWbYgoYhREwvOWWJ9srG5NTU53nIRWNNs9SZ2fnlN+PRWHnrWyxxgYrrdgy1uP3T3WGCsmjAUpkyOp0AhKLIootOawQI9bDfayuuXksG5B0/DPzLpe1RnTC4QkKlhwogsFxCafG6nLNz+D4JUipM3pQiSGmJpmCRdrb9+/fkgGFGVGnrq6mhgrNGHVx0rKVlVoPKlmtVmcdLIzv/3R64AeGfHLjc+PTA0b8B6efFjrZcWIwKxyPtlKGou8QNFddba2po3Ruv8THxct99PIHn3GCYCf3+eVtOFTIikIE3TkDZensJM1ZrTU1dTU7a25k3D0e3Nv3jYfi298LukXWdjBWyJmx67KUEhR1JfseoHlUIiqIG/3z2igyMUrx4X79+s3aZ3wkBImxVs/1odC97CtK+e6P1BmpUqOQPvy986Xuy8fZ2QnOxt7eBv07OzE7+/GL88vO3x+Iqa5ubJzxeIy6+GgZirtTZPdA6qsOlaJdba94kZVtHKT0XBxWDUN9XXDsRXciZUitvJ19D1JXY99Xipb1YWNlZWMP54js0fMPpCDM9M13wbmXfRu7lj6zo+N1+ja7p72rsRESUdzLtbNTR+Gz3NkBH2LgYK52j71Nr4tQEiTNlqXraLPbPSxJlKjGsZ5VqE9jl8dub+vQZWFFKhlSKnR6SB6WJCoszPCaG7uoT4deFxsZJf+/htkis3Sp1Kkd47HFCUO4TB8x7dQnVZcVmkyeLaKyyNJhZ4kpsuQAEUo1KV3CabMUVSpwZgzJlUzZ+g7q9PQpUThADnNM8GIoYJ4+pT4d+mxTPBeSEkOVqrKNlo42otpRC6Fe+BJ/U0tW8CYxbR0WY3YVCkmrlipFZGWbLR1nKVEND4QNKBgq5JizsxTnComDi1cka8wWlAIFCxhzHCAczMRKh8Vi1iTHRsRFqc9DaiHpLRbRii2EPSZIkRiLnhxp098OFxevqNIUpVqEBUxo9GBCKMykpmiqyMFggMKlCIUpJd/MkrCYw1ebCBAwGCs/xQQHC0Kh81BISkjWpBgtIsDksMAxpmiSE8IduRL2hOliTcmafH2q5TtJ1edrkk0JCppLXlC4pIxEqdxf8zUpenM4ZtanaPJ/zU2IVcTHRct9wqeDhJVHKGITqpLz/9KkFOmNZnMqYjYb9UUpmr/yk6sSwNBYana+K3EpphJMWcmV+F0RqJXJWSZSFPGRcTyW5HxvvGgltYJFyTWZfv/dZMrFU1YiQozk/LAUBkStCAU0KQogpCgvwMgUaqFXZGR8PDwOnkWywkMxcyEKFnpBUyrjlJxoGFFqlJHaXNDiYkgUwgQj323zP9SWVbbMe/ThAAAAAElFTkSuQmCC\",\"[好吃]\":\"data:image/png;base64,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\",\"[流口水]\":\"data:image/png;base64,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\",\"[泪]\":\"data:image/png;base64,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\",\"[汗]\":\"data:image/png;base64,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\",\"[睡觉]\":\"data:image/png;base64,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\",\"[瞌睡]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAJqUExURUxpcaaKWLCJYqWHVbKZTKmRVqWHWt3Bwb9/f7aRSKWJWaeMV6KLVaeIV9yTAKaJWPTGAfyyGt6WBPHAAPK6EeukD/q+JPC/B/TFF8KPLfPEAPC9A9yTAeG6E/PGBeyzAPTDBdOiGvC7CvCqFtaQCuCdAK+OR+OhCPi+J/vgY/bIAPnaP/jNF72LL/3lYeqzA++8APatF9eaD/WrFM6dJO6vDt+bAnemlPbJAPjWMP/na/nUS/THAPHBAOq1AfrLMuetAOirBciPH82PFteRCuCmDd+hBEWmyK6qXPzkXG2dlVifrtCPEYGWfdeQBvnQNPvbTYOXdrqdMYiecP/ue//qcP/MKP+3Hf/sdf/OLP/sd//wgP/bS//RMP+0Hf/vff/qcv/najS27f+zHf/teP/dUf/hWv/xg//aSP/mZ//IJf/zhv/EIf/KJv++H//pbf/cTv/gV//XQi+s6v/GI/+6HmQhAv/UOf/CIP/kYv7SNTGx6//ZRP/lZP/UPWwkAf/jXzCv6/+/H3QnAP/WP//LLf+7Hje57jOz7P/iXf/fVP/ILP/eVP7NNHEmAWkjAv/FKP/BJP/RO//XSDSq43koANyRAOjQX18gA//EJT7F8fbJAFwfAzu/8MKEGeeoAEbQ81cdBOmtAELK8p9dGHs0B0Gq1PHLO4JNG3lBFJ5qIY5GDGenqMeVMd+/QIg8COHHWEK54VmjtHyxn5+6g1HB2EnX9q16IsObQTuw4dCxVLS8bl6tubZ0FeWzM9GVHdSnPOStI/nbWbrGevjGLIiwjdPNamS7wmy0scTBY7WOQOy0AJS7k++2KKQlVdUAAACSdFJOUwAuDTMKFREBBAclHSEp9Rrf+t/p2OHuJMtLnUbqGsrxLzrM5qTzPd/6/enJxVbslP3wgOsq2NL9bMPw9/iBt+Dn13B7rVys/fzamuSTPcjW3WX80f/////////////////////////////////////////////////////////////////////////////////+SXnuJgAACLFJREFUeNrt1fdXE/kaBvCbEAiBEAISkI4UqSKggL3rur2JJEhdCIKFABowCBFpCgkdDK4sWOhi772Xbf/Tfd5vvjOTczlwOXd/vQ+EJHPM5zzvO5PxX//PP48qPCgqKihc9Q8IZdCGkIikSzxJESEbgpT/gxIaknRJm7Ix+cvUTXr9ptQvkzemaC8lhYQqgS1fkW/QbklJTi3W6/PKDrCU5eXlFacmp2zRbpArl8sotiZpN27KKYbCGU7pi3M2bdQmbVUolzeUVptcYgLD2hQdKCoqOlRUJFCmkmStdhkDKlUhW1ISJQfGIaSIS3qSElO2hFCppc9UhPaHypIcNlceHMYcPkyUMJ2ppPIHbUTQkqWUUSsiUptKAFEhcoAgrlJOTklJU2rEiihISzgryy1NJSYUQiOnc/Tw0aNcEis1NZevXEJShsPptPDJUIjmOsoC6xBtiZaESpWWTkjhi0hKz+gIY3mzANGGaD0iRBI1YlBzuTEiWkXSQke5dcVme3lzU6VJanT4P6AyBpkqMZt984qtnoAWOqFp3xvtnZYmZ6My1khyAB0QoBJAnXbj92mhCyUlLSjfBdI7dyRCfDQ9hyyA8heuiRYUEjCYb6wpt2BHJgbxswYKDHeEC8liKa8x5g8GhHhySSoUlbZ9sNpeU96JRlgSO/1M4nFeR2iEFbFl19jzB7enRfHhpELboq2D+QRZLIBQiW8JQRuEO8UEWSydDLJGb+OVxEJBadtrMVoXIFZJ/K6hFAu7AZQBokJNgLowWu32tCBUci20NmDACohVIohJeVwqQvgpQyGCUIgg60DAWrqYpEKKyJWAKqq7asqbcSUxqThvwf1Iz51mmqy6YrB2YGWkHJWkQqGR3VaMVm2EZOGVsCZQ3CpzOhyyUKFqjGbtjgwlSJosunvA2ljBoGYX6amjDMnDr+MpHNdCxuqKRutAd7Q0GyZT7VjZPdBWW4FK9pq3fN85OU9nr8xQLSwnb+bK7NMc7jS/dRZqbBvoDtihQCWhUNCfgWjU1gipa2Zkdu7x7cREx+OZ0dHRP/Q8f4yOjM48diQm3n48Nzs601WdX9HYhkaBf65XSdDeSBugWoKMc3UumTUV85hmXY/PGQmqBWSL3CvOplStzbR1C1L+RO8ZIZO3c8Q4JoWjvb0T1YLT3Z65FrPxQqpt0bb27ob6NmenG5OtLD3XHSaEFHp2XOeHJ284+7QNNHS326K3yUVIsTNAgiBtvjFxffLWxOvKysoSMXjzeuIWDt/YDIdB9QQF7PRQCZA8EpChocHKJVwEuMI7cWk2VYqx4Gx14ruKEy85BkCRIqQKvxposxkKGuolCd+V8s5mCyzEggeuLjC4ELsEx1rfUGCw2QKvhovQekDthgJBoj2xUmRBI68TChhcP7QfwSlobwe0XuHJoVVXE/ogAWISbZwossS8fffR4XB8fHf/r/vvfndgrvr6hoaCdltfwtVVLlA/g0jCxmk8Rtnt9hoh9x48+PTp04M7d+48eTL1/N6zaSpkANTvCo0LUANNh1ICBayry96F/PXg4cOHl6/9+utv58798sv5qfln0xwaXyWXoIS+vvZ2ovh4tClmQWOpdny+DAgSQZDOTt27iY/09SW4QOvHAy+iEiBBIopZUj4+v4yIlU6fHrr77L2t72Lg+HoR8h4P7EelgwYm0XicgiXl9udrl69xCNL5syemPkz39QeOq0XIfUdMFVUyQALEdg4KVq319aNHc49u3GzE69v37nDoHEGnz54Ymk/oD9jhK0FZmVX9F/sOHhQoBFS9dfrRmZHRK8jo5NzLtvrp+w/gMAgSoBND2QmZWRLksW8noIvHjx88SBJrRdRYa29dHUmjI3V1vddf1tc/e/6bCDFpav/Ofe4KEcqIN0M6coQ6cQp50Uq3jBGWOtxbWscKCu7fAcMbnSZpPj5DguTB435V/ZBQCZ04NTaMW0YvOlF6e8/gDvKiYPozd/hsJ774KViEPOXecTFUCZ04Rdb14eHWnp4zvQjq9PS0Dg/fKjDcYwgfjba0Xy3dRhTu++LNJJ10lcaGIRGFgIEz/MJg+CA5GA3Qz96u0N44P3NVVf+xkyeP0Mqd2JsXrBRCzq2Jsb9x8P4TPhcg1ugrnDRAfNvq+Mxcc1XLKZJECnn/5tUY8urVm/f0Fkd/f3L+POoAgkM7+hErAsSX5JsRl5tr7kAnJnGKNHiMEDL9HCPRWHAI+lqGyQAJs8nidJCqqlqOcYota2GOH/8wBITCnKmvvOXS/2uYzTsjzo86tWA8ULCAUTP64U/QkZvzQ2d5sKGvv+WTCbO5e2XFF+aazbQoopjFNQQGCw4fu3l3iAzqM3T3WzpnLhAqBcfpCtEJ4xF1iiyRQ/ACCOXUzeypoRPEfJH9o5e7cM6kSrviYiDldnSAguUshgf/iwcpp1paqhL2Z8/fvTuf/dMuH6mQVMknI25dIVFmkUIxhP6wZyhgOjrM5ty/X76M0WTI1NKGpBOn9onVpBdyChYwcGLoHQ6CwT8oLC1M18TKvHzlQiHpxMnd1bI9Gl0pp8iCRhwn8NaMMsQUFpbqNHtkXhhMKiQN5+sl263x9+MUw/ArxExhx8H4+Wt2y7AgDMaghVJwVti60lI0J4uFPs0AjoApXReWFQzHfaEDiEtusRf8Y0phUTgnGaSUxvhfiF2NuURnoSTHxmXBsZownR9ZKMZFesYP4qcL08QGu8Hhcy0meaPU6m/CNP669NIFSdf5a8K+We0m81H7cmcxSeHhq/YBtWtP2AWNf7wuZl26H5K+LkYX76+5ELZnFzEYS65a1IEESoFSoGRubmt2x36HzzoD9bvY3Wvc3JyMh0J0lirl7qv2IouyOngNErwaL0nBUGCozpIOJEbJPdy9YQEDxwUYPl5qb1/Whtf575RK7oFe3tDEqAlBGYXYZlkULPSCxgPCQy5XQFkuwy2OgROC155QFmP+DZVTUIpPWCxtAAAAAElFTkSuQmCC\",\"[捂嘴]\":\"data:image/png;base64,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\",\"[想一想]\":\"data:image/png;base64,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\",\"[抱抱]\":\"data:image/png;base64,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\",\"[恶心]\":\"data:image/png;base64,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\",\"[呕吐]\":\"data:image/png;base64,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\",\"[快哭了]\":\"data:image/png;base64,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\",\"[便便]\":\"data:image/png;base64,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\",\"[发财]\":\"data:image/png;base64,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\",\"[发烧]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAJ2UExURUxpcaKGVaaQWKqNVaKLXKqKVaKHVsXFxaqqVbaRbaORW6OLVaiLVvbJE/THAb6OL/3ncdySAOylD+q6DfC7CvyzHN6WBP/iONWXEfHAAOKcAfPECdyTAeahCNaQC/TDBeyrDvDAA/u/Iv/nZvjWMuKiAfLDAPW6CfatF/qvGduTBPLEB/CoEvWrFM2RGtOgG+GaAOuvAPrNMu+8APOzF82hHe67APvbQ/bHAPzlb/zfU7CNQvTGAN+hBfm9IuuzANeRCtigE+u0Adrn59rm593j4+TauPfJANCPEf/lY/zXR/3hWdzo6Nrn6NfHk9rn6P2NIf+0Hf/sd/+6Hv+3Hv/LKP/NK//ue//rdP/tef/qcP+/IP/hW//wgP/PLv/yg//IJP/KJv/FIv/vff/BH//RMf/fVP/dUf/navVRUf/DIf/////0h//jXv/lZP/mZ//ZSP/gV//kYf+8Htl4GP/HI/7NL//bS//WQP/JK//qcl0fA//cTv/pbW4lAf/YRWQiA/+8ImgjAv/AJHMnAf/DJf/HJ+zz8//EKHopAP/UO/zQO/v8/P/SNtx/HeLkyPmOjlgdBNyRAOioAPZbW9/q6/bJAP/ZTf7LOHVAFvXca5BYHt6GI+CXK1RmcvjYXf2qLP3Z2f3PTvLGVow3BX87CaJ1MfbQY/PFSv/FRP+4POqpP/T3+Oy9MqRUDbF1H/3CMbOFNYxJEN3l2f7k5P65L/2XJfzCwrqjdZmbovuqqtPa3aVhGNyvMu6ycrKvtfdoaLvBwMiLHNCnR85qFlQcBPSFH+20SujgqPmKiuLMfp92YK+TcOHHye/dhG9+iPWtnO/fiFFAn5sAAABQdFJOUwAkFxILHC8BAwcOKjXG4FH+9eEl0/veCYDp753q2KQv2UX07MXmfBrw99HN5utyQfn+3f3gNLvJ6/fcQfir7OytXJOZ6C7+ZZP37/F/0k62OQFPWAAACL9JREFUeNrt1PdfU1kaBvClhCAlJHSpKqB0wd7LWKbvmlAMCTIIkmSICaGlSeiBiJFRGQZEAaVIEewFBl2nt92Z2f2P9jnn3Jt7P6Oou/PrPgS4ucCX531P4C//z59P3Kao1NSoTXF/gpBGvZsYLvuCiyw88d0o6f+grE/chR9O37knbbdcvjttz850oLsS10ul/40St1G2L3xnmlOlVpWVlZ0kD5VK5UzbGb5PtjFO+vbMLll6mtypogqXMlBqpyYtXbYL1NsNJZOlG1xOtUqFIierT1ZXV5+qrsYlpeSGdJkMA765TuK+8Pc5B0VgnEKA0VJqtdNleD98XyJKveGkcmR76gwajRqQCg5lPvmEUPx0LkPdHllO1GtLSVPX5nxoNgCiheAAQcSSRmMwmD/MWZsK6TVOeHmD2eDS0Ml45+xZnwRILXcZzA3l4a+RpJvgmBowGYFwYGSusyyQqrEyMhsq1TWYIG1aRZIG78jRCxDZEFmPD4JUJoL0OTvWvFKSSjeu/UBXbjLXuTRy1mj3DB2MSadmdtNzw5JcdZhN98HajcHSVznrt27R67Ai36H92N80csrXaKSp/0cVIKccjcwmk06/Zet6QRIcLGhIBKknrzc1XVfB4aAy8nwSX8BotJF+SFiTeEGJ0ZYhfT2FMNvkaFNTU/+M+NRm+nFrdFKucVGoXj9kiU4MppK4UOrWLW0tunqyo/HZ2/gZ/P4Zev4sOP0ZdIJ+e3YcoxGobcvWVDac+MSi7RabHtAsEPYDcvICQNAGwZnJb/NfmwWks1ns0fTkxIWiUAgQTm1i9Hp//+jtSTn7W0MpGlzj9OWTt0f7+6+PTpiwI5sFlaJQSVzoneg+O3ZEZ8OS2CsJFJWqETjsVURXRAphR/YL0YnHUEkoFHcw/IK9zUKX1MBLL/0/Ii8itmoCtVjahn56ODh49EicUGh94XCfvc3WQioRaOTW1au3RjiKPkgddpdApFCLbeRhr9do9PYePSaabJg20rNK41cvI1dHVIzCu4o47O44ClFo/OGC8enPl54aFz4O5iZbc5BBNk66f47mPl7geCDks5q/yzm2n3qNlz5FvjT2fsQViio8MHyxj0oEMl1rp7mmdqp9cTr5uya6IZvlofcmGOTRwt846PBBh/VCn1DpWifNNQ12DgEPp0au4e9yhSyDxi8Z9NR7lEFr3ol2WC/2UWlobm5+/lkrzS2XRhTXLXb32fz83NyQzfJvEfQxK7RmByBIdvvwjRMk33XTfGtwIRRBDN+yu9/Rb7nxy6CXg77y9h5hUOA6Dnp8gsvUeeSBua7O4EtdnfkBuTvFvuOfYyvGm59T55F38BiDQg5uI9DF4RN8frgzNXV3vMEMio/Z3DB+d2rqzg/0G/6+PDYG5+dHjx4ZvYMfcSuSFB5wOKw1NZhLlAmTqaEBFgsuTaYJ3GbOoPfF8uefXjIaFxZ6B48Ec1BU4YZXQHPl5eUmYDS4wNM57ktL2M9N6vQ+PP7LXwN5aHvhBg9m+2MjXX19uSj19boJfj/LvPPZ8IbC7T5o84DH43BUVDwWO0/0ep0OFh880euf0Lm+Hhv7lXc8noHNIqgLkLXC+kQEzbe06BEdF3Ld0jLP9rOyzDkXHJ4uEbR9YAMqlVqt9wTnhsVis7UgAIiB2GwWy40TSyvYj+B4NgxsD/Etm0JkS9Yb3Fz37G1tFlii4Glbm31p7PcFwXF43GJIMnCgy9PjKCm1VtRY7z1+fA//nJA2WMjs8+ezFqKAsf+28vvYC94pcfR4ug4M+PmggIxtWnePw0Egkov4u+sjkn3x7nT75e+/v3zu6t1FYv826F3wOaWlKNS1LUMiQMnrOrrcPSUlpaUVsAhFrcU7rZ34B3T5Mj60dz5Y7Fv6WrSfUkdJj7urY12yf6AP2k8gjwPDVVRU1PDU6HR3a2d7+znCtHe2tp5fGhtbEZySkh4K7RdB8RkdWlRinUqtjPrm/PnuVioxp/sfgy/Glv/gdHVkxAtQyOaBmA6t291zGhIdD9Lz84AgTU8/eDDd3Ukcr/FX355LSk73uN3ajpiBzQE8FBwiSdjWgeHclTwF7A6gO98sWmto7o3eF++HMJXu2q6Ojm0JfgFrpBwU6L8/uYgM19xTySTs6tn03UXsC93oR7xNHv9K6FPZ01zbpe0oSt4vCRFBhwtiIGlrq6oqTzOKaZgSD/rZipoT//LyfZqr3Fo4MQWHcfqAuG1LMtYVk05VVc2VlBIshH5kz8c/Oz5ccvp0ZXNVFelTvC7DD7sGxC8pPiGmuKhRq+UkUBwmDr0JpRIO5mosKo5JiJdgRYD42UITIotJpzO1tc2UwrJeFfwOytSeIX2KIxOC2IoYhNlQKQtSI5HQChYw0oy88Z9gQGlmTiOcrIR4bjKhkl92srK4qKhIqz1zpgoUtaBxgcErlNEWwVEmZ4fSyQQIlSIwHJPQqqq2qhkYzyG4AAKFMMzBYBFCIX7d/n75BbnKYr4UJsSMNCBpGIJwjDK3IF8oJKoUGl+QBwkUTg8Y08ARsZZHsJxG5uQVxAcJhYQtQUpRZCo5qrGRWEzDOwtuNfKMMlORAieELyQcHIYLOqSIVDKKWtAaiUZIeo3bHKOMVBwK8sNgrJC4EpXyFbFZSoRSwDgPwaWIyYpV5AdhQRhMgARJ4hcUkZ2URyVYTBNC7uALSF5SdsSrHUBMCg1LuRKbq0QoJ46ST27slZQwzCU4L0v+ktCgiBRFUmSMcpXERCYpUlCHOHTRq0kYL2jve0mK2MjMl5XMyFhF0nt7w+D4c31WkwIDMF5QUFj+oaQritjkyNy8zKyYmKzMvNzI5FjFlaRD+WGEkeDcV3UggQpEKUqFRcSnZONnWaBmp8RHQCEM6gjO6qVC0AoWMGRvBM1eXFJFYOC8VmKUvwS9QqGJAsRPgqHAcHXeTFELGKrxgYEuASFCm7eiqBUSEACOJQBGSCCUt2aYxWHg+OA6GMpqzH8AQg4kbmrVN2AAAAAASUVORK5CYII=\",\"[擦鼻涕]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAINUExURUxpcaqIVamQZ7CJTraRSLKZTKKHVv///39/f6eQWJmZZqWJWaaJU6eIV+2zCeOzFPPHAfPGD7qLLtyVAN6XAvrYOfm+I+m5CvuyGfC/APjeavnHN+OhBfPEAPC9A+y4AOu1AeulDtaPCvWsFfW9G+OhAd++UPHAA//naPbIAPbUUfLCAPW6CfrNMeqyANOfF/GzDtWaD82QGdvn6LySNvnAJdySAeDMkdbh3/TFAPjOG/vfU+uzAe+oENqjEN+hBOKfANrn6O3Pddji4vfJANjJn7+vf9ji4vrlZ9KTDfC/APzhWNzbwNeQBv///9rn6P/ue//tdv/qcf/rdP/kX//XQP+0Hf/wgP/LKP/vff/xg//ZRv/JJf/hWv/dUf/oav7OLf/bS//pbv/fVP+5Hv+2Hv+8Hv/cTvj7+//lZP/zhf/FIv7RMv/gV//mZ//aSP7SNuHr7P7+/v/NKmwjAf+/H3UoAFkdBOvy8//PL/7SPP/UOf7LLfL29//CH//HKf/EJ//VO//AJP/GI/+8I18gA2ciAv/ILWMiA/7ONJhhIeXu73AlAX07DdyQAPbJAOipAP/0idzm4f7eWuPiv8ufPb6BG97k1PDAP+bKXebfr+rfn5FMD9SgLIdCDJlYFLeQOoBQHuqtAGouCvTNSO7dkfThgaJ2M6l0JKZiEIpYLOGrI8KNJ8bGwaiQg/fGOMMAAABOdFJOUwAeEQ0HCi8BAhYFJTQp1SXgx1L22sfvMPrq/v7fnUb8keCp7tbt/dDv6fr5Gt3vQOKBdu09+Or4i3jD3LbmXKv71/41ZdNQs+aawfL6yHCcX0sAAAg0SURBVHja7dX5W1J5GwbwFwEPkAGKqIH7vqSpqe3r7OtJQHNFcEPTVBgkJFAjEsGhzD330vZm/sZ5nu/5nnNwmBxn5tf3vqor9epz3c99jva//+e/R3ZWk5mpOSv7DwSj+TInteIZTUVqzpca5l8ouTkVz7SX9for35abzOXfXtHrL2ufVeTkMsw/UaSXtFWp+nJTs7n5DpdmiKlcn1qlvSRlTsrIL1Vo9eW9pmaqCJTZBJa24pKcOdlRWq2+p9dkbiZQ+5329va77e081duj12pPcCAjy6m6bBAdMO5CACOtzCgZLlfl/F0pRlOmvTKGDkLgANNxt6MDKJSwEkhjV7RlmmNLMZlnUn8Y7gFIcDowR6WenuEfUs9kgnScs2wZBodAnHOv4949KoHDHTdsWT5OYs6iYxkjEA6E89yj6bjLN4JKYxaUziqYv3ZU35dZCWQijRDCRs+fPycQSnQkhKxl38uwU6KjyD9T2ddtGR6DQnyjDoQgFKLPrXds2NLdV3kmHyslOrlV1VaE+IfGQVCGOADdgXCnAWTps1ZX5SZKDA5kj4PM9DR+InoafAEhbGS1J86EhXLKOh3W+wgdfWodyPAO3Qih+1ZHZ1mOgs4kOpl51Z2OPhHCRkSioe+R+QhUnZep+DN0tayl046N8D1Cia4E6cA/SCHOwfcIoD57Z4v6qopIoqPJq24ZJxvFr42diAVLY8TLcCOAqvM0f4Ly1T5sJN5GVqJSOwQZzqGXEcinzpeBJDrymmKAxslIgpTw80hcCCHHOEDFNdIjUG6eERs5sFLpy5cvo/ulcB1SAgYMOKX7UfhyKRZyYCNjXq5KIUKqfHXE54NGCO0/IDl4+8LcDBRYGHRevD3gvraPEDTy+SJwG8MIhWS1xRE8zc5JsQdcPiBlJggyH+inY/u0EDSKFNfK4TbxmWVEJojErVQanX+CmX9rMNMY3tJPRUu5hew40UQkI08jUwiXXa8J85CVSJYXsXnMk6jJbMJfpigYkNgLC3GsPBSuuS48N4UsX41QnLQac8+55+bm5g9MNAfzcxh3bFV0YKJIWJ2Pt9GJrqrD/sjEwxYqVUbdNHNReMt78eWJuvlEK6mDhfxh9VWpAMnVcZDdcbjr/hXi2Y6+WzX00BhW30W3Pfh59+6hw06ghwgVq5NkCgpJa4rD/qmJiUdEOtwFxBNdXYZXc3hMyDC8hsurUQ9gu4fEeTQRmQKoRoBkklcZM2Hb6OhDIu0Bs7dxvxs3B4vGgunuvr+x54EvEwcK2cIzGa8kMobbWqUByD81NTqB0iePJ7ZjhcmBAktMNzAws3Un5vF8Is7olN8PkEauoA8t81XjTNiPEEi7nu0Nu8MBFDy+N1sr6yy7vkUVYBwO+8a2ZxccAoVnGl81CNC5xeAsQJy0s+YjkzuW32wuOb2BIZdraGEFFWTIzL61Hc6x+cOzwcVzR6AZvw0lvA6G6rS+WVlaCLh+5uJyvrFaeQbmwbsmRkenpvwzCEn5sTMXG2ehEhw3ijs9ajFssqiI8b52EGV8nDC4Dzh+cGYbFxukKgppFjNmZ2faoBNKna/XnbwiQpwCDNZBBw9rAyhjUSNAksUMuC3cZgOpc2vJOyQKNAuvQQGG1uEcW1sYLstYlAiQsqQ2FJyZafvF5ttiBcYltnKxhhaSjU9GWgf6kELB2hIlQmRsZbo6FITb2m4veYV943sF2FXs4nv35MH8OyPnwGEABUPqdKVUQaGkGwjNGjed/D8e8pK/uujHzt/mo8ZHO7EnmIM1GzC2X8Ah0A2lXIDqsgdDQeM61KEMy/2Vthpif3fPxfbmaObfA0Od4GB2nQhJz93MChnXA5RZYGmzgJNOzX5w/+rGeHY+ru3F1pBp63r8OBgMZd08x0OMSgprD2556U2sM8AvE6CFlrY9JNuNNjwKna6urpGRYChUWyIRf4zIlTeyN9iAayiwwALj4h2nixbatK2hs0YYPAuhx9Pg9GffkCSpROj6zdsshjIYL8vyC7EGm+3j+/cfSRmeeTyCTtbN6/D0GXTI2pLsC4QRHrkLHC/9PmOXIqSJjSjIgAN3TYYG+wuyT8FECNGR6kpFBls4WXaBv5DdQgERqpA+06HBwf6BkjqYiEGI3pZ8IY5xBbCdiz+MPSSCwODMI5OTof7+gYKSFKVU/H8Nbru44DpSh+U/hvlXeISWgbOmJyehzkBWSR29jL/tCyfvuOA1gvDvJnar7OpChChdqEyjA31as9NPw2VxkOIbr/CtIY5OD1uhBA6DAQbWwUIFurRTSik4QhS3WG8gEFgABRNwxR9ZiQAa+BvLoANM6zVd/Wk6tVDpPBsXbCc6myPTABADFcqAU6SrS5bQhYTcSoSos2REAA2CYAgDznfJcJjqKHRRZHAh+kpibhMACW6Zfo5pLdAVgkOXFpNEbhM7DQVwdTxskE8/KAKTla6rT4aB4DACifmCl5YuxIsroX4xA4gAA2c1paeBo5SLh4mdLt46z57/5uLXhSCJzoCYVj7X0p8WpiSfSnCElwl+wiklp5PTvuLLvQ61JiSroElXmJaC+1Dnc9Kp5JSvv/pxff3HCxsJSlFBuq7pu4YUPEt0EiVGoZInYanklPrCpqe69OyCa0VFWZCiomsF2em6p02F9SnAwFnwrYrOMZJUyVEpafWFP8G/5QLqT4X1aaAAQ+t8zqHnYSk4EC1MQxpJA/kgmTJYhzrHlMJWcCBYgAlBAxCJEtoIzN9SMpk0CXqhJkSCCJQBhqHMCSi0oBdoQpKSpFK5XKYS2pzUIsWA4yOTIfLZNn8AIzXBsbq5BBcAAAAASUVORK5CYII=\",\"[感冒]\":\"data:image/png;base64,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\",\"[受伤]\":\"data:image/png;base64,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\",\"[骷髅]\":\"data:image/png;base64,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\",\"[魔鬼]\":\"data:image/png;base64,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\",\"[眼镜脸]\":\"data:image/png;base64,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\",\"[思考]\":\"data:image/png;base64,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\",\"[说谎]\":\"data:image/png;base64,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\",\"[牛仔帽脸]\":\"data:image/png;base64,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\",\"[天使]\":\"data:image/png;base64,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\",\"[爆炸]\":\"data:image/png;base64,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\",\"[小七_高兴]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcf///93c3f///////////////////////////////////1dWUbCwr19eV/39/f7+//Dw8f///1tbUru6uf///////////////9fX1////1JTUP////j4+P///////////////3FxcFRTT////8jHyFBQTVZVU/////7+/qmqqlFQT9PT03+AfT8+PEpKSJKRkOnp6f///0NDQXZ2dv///4eGhExMSVZWU5ycm2hoZufo6GBgWEREO6CgoP///3x7fP39/4iJhv///2hpZ1BPRS4uKjc2NZybmmVkYZKSkHJxcScmJVVVVB0eHJqZlzY3NBcXERgZExkYEhsZFRoZExYWEBgWERoYEx0bFh8eFxoaExsbFSYlHRwcFRkZFSQkHiQkHB4cFyUkGiAgGyIiGB8fGR0eFyclHCUmHCAhFyMkGRQWDxERDCgoHCcnHiMiGyEhGR0dFCAfFSEgFycpJBITDRUUEBsbGA4PCyoqHzY3LDEyKCooHf//Qi4vJhsaFiEiHiorIx0dGv/OMv//Vf//ThgXDQsLCP//RxgXE///OyUmIRUUDjAwITk6L///S//BHjIzLi0tISwsHSAkIv/GID8/Mf/3Nzo7Nvy7Hf/7OQcHBP/iKOiqEkZFNDY1JhYYGP/iODU3NPOzEf/yNh0aEP/oK//uMaJ2BP/aORIVFSwsKikfC//YLDkpCP/MIVxCBT07I7SEB//pNRccHyswMjgwFv/aIPW2Ifi4E2VdJFJCENieDqt9B4llBu6vGsq5K0g1B0VFIv/vPJFsDf34QdzXOsGMBefQLD43Gm1nKCwoGO/qO1JRHs/INaKTPkxMPG1MBeGkEkFBOnNUBdzIKv7zV6ObLM2XCpKCLOepJEc8IufiPHNeF+rHJoZ1K8+nHOi6GLKiKFdRMHtsNP/lSmVQFP7CO6uLMbiSFffPHfjtM7SXQ//NQvrvR5N6HfzCLMeVF+6zMVtaIPbcKrepMyEnL2ZdNP/XTuDNP5t4IZqMMreyR92yGseWMyIpWrYAAABRdFJOUwAblRQsWk2BLQJyB+ml6AOGiyDooSd7fmqZZdI3iIR4PWDI9BCc6fNuDKz0l7fs2LkB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\",\"[小七_斜眼笑]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcf///////6qrqP///////////////////6enpv7+/uzs7f///////////0JCQP///////////9DQ0Z6enf///////////v///////6iopvb29v///9zc3P///+Xl5v7//////3FwcP///////4uLiK6vrS8wL////1hXVP///8DAwUJDRMnIx6SloZSUkrq6ukhJSDQ1MbOzs2ppbcrJyWdmYzw9N0tLSGxsav///1ZVQpeWl1taVSkqJyMjHmBfXEtLTY2Nk4SDf4SCgU1NQX17d7i4uDU1O1VVWoqJhSgpNkdFQGFiZT8/ST09N3+Ag4SBeRgWERcWDxYWERYUEBUXERUVEBgYExscFRoaEx4dFyYmGxcYERUTDxoYExgXEh0aFh0cFRMSDx4eGR0cFxoZESMiGiEhGB8fFyUmGSQkGSMjGBgZEiAeGCIhHBUVDiMjHCEiGhMTDSQkGxAQCyEgGBsbEhISDRQUER8fGiEfFioqHSQlHRscFx4dFSEgGhoZFg0NCScnICgnGS0sIRcUEC8wJRscGhgZGScnHDIyJ0dGOj09Ly0uJSAiHjU1JhQWFv//Sf/mOBsdHQMEAv/WLEtKPBkYDhEREiorITc3KjM0LP/eLggIBh4gHzs7LP/NKP/jL//zNUJCMfO3G//5RCIjIFFPPyMkJTAwH//bKEJDOf/xPkZGM//tNP/rLCUnKjg6MTw+OywvLP/+PP/QH//tO2RgSf/3OtijE3ZbDoFgCEEzEV5DB5RwDVNPIDM1N0I+Hh0dEZ99Eko3C2xSDF1cJKyjNiUeB7GACC4jB/a9Ic+aEmFMEnp2JjgzHf/7Mv7GIzkrBdTROuPcQOuxGcSSEP/JHca/Ok5FGvn1Q5mSMHZrJfvxLU9PRxkUBGthH+KuGS8qFbuOD//VI46IK2NjMXRuNScjEtG2Jo1rCzYuEb64NPXjKz84CYdyGPLLGdXBK+bPI6eTIM3IPe3mPFJRNf75Ur6qI//cFrOPF25sVcqoHvbTK9nJKirSmhAAAABSdFJOUwBoVK9/AQJqg7CGjFoGCvNBYUiYriEWEDROp4kcknuOZTvFdm22rvRx1y2h/pmxrp/8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\",\"[小七_笑哭]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcebm57CwsP///v////////////////Hx8f39/v/+/////v////7+/v///////7m4uf7+/v///////////////8PDw52dnf///////09PRtjY2v////////////v49////09OPXNzcYeHiKWkpMrLzWtraDk5N39/flFQTP///kZHQ//+/np6eKqqq1VWU1tbWY+Pj2hoZpWUlCwsK/H092RjXomIhURFOkNCQF1cV9bx/oSFgiQkIo6OiM/O0I6Oi3vd/XefuC4uLJmZmL7p/jpqh4bb/C+DrJfB25/W9fjVYHPK7FV/m0hiaRQWFXG15Hzn/1ew0+DFdGbO/02u+TmFr3tyVTyp4hgXEhoYFBkXExsaFR0dFBsbEx0dFyEhGCAgFxwcERwbFh8fFCYmHh8eFxYWECgoHSMhGSQkGCYmGiwsHxoaESoqHSUkHCgoICgnGhUVDyoqICAfGSgmHRMTDiIiGywtIhARDA8PCS8tIDAvIywrIR0dGhkYDi0uICspHzQ0Jv/jJjw9LwYGBjMxIQwMCC8vLSUnI0JCNjU2K//9P//+Sf/pKSEhH//nMTs6J//3Nf7EIiQiFP/fIi0vJv/XJ///Uj9BQP/uK0s5C//vNUNCLzY4NBMVE//QJklJOP/LI//4PiktKj+v6lhXREK6+x0hKf/dLTyp4DCb0P/ZG2pZGv/hN455Iv/RGT0tBP7ySHJlIlXL/TGh3VxVLDw3GVlOHmVjTOGpEUO08FbD972RERcZHdSiEsmVDC0jAoJhC+i0GNa1Jf//Xe3jO027809GIV9HCDs8OCQpKXBUB//qO7OHDi8tGfLNJ/XuPcS7O2ZfLF7P/wgRFiORyzFMVP28FPO2Ev3JDvDEH6GVLntwJwtdjIxrDQccJ5mAF6l/CkvD/2vf/8/KNwotOhp7qxuAtMmgGRpqhb6rK7SrNFW85Y6GLB+GvytARyRVb5JzCtrGL6Suk4N7P5KMXeTWPhRyoaeiStvWTGq1xt/gYMLBb6TEpFay2bXmK4AAAABZdFJOUwCPo2pcCXeBAYVwYyMMAhKiezJQVn6fsgQd9ZUXPyqFQ/7Qvamd3u3A3Un5Ocyu89W5z7HvjOa2/uXrmsz2tpXH78H2vqfy2vqsr9Hd2e36vP71yOzi5ef3w/6bQwAAEuFJREFUeNrtmndYVHe6x6UIjCC9ioI1NBsqSYxxTUzP9tueZ4AplBmmMIVhKlOYGRAYihQFCaAgYiKxY42xxRZ7T+wxujEmm55sNsnubd/3zEFMcvfK3ufc5/5x/TDnjKg5H97ye3/njBnxkIc85CH/h4wkRo8eHTY2ASRNHc+SHh3sxzDKb3z8//TiQUFBofEkIEdIEoicmh5FRPsz1wYRgTyQnOUzyJTw6dPj4uJmZ07PShqGIzRsrJeEpEgGUkQDvwgvMYEMyT6JiVOmTImlqxPPPvXktGkTJz7y6IwZM8aAjIzHH68ljteOmZL+YG+YfwBgBFnsD584JTY2Njx8+rNPTUolcPFHH33iCVyfmLDyccZAJ6KSZQVRV1NT01e3Ijw66IHxRvvgR3/S+8N7BVC8+uoEXB+GWlx9+fLl3qMSNDfX1dW53TbCai4t1ZYyaD2eNWvWeGzNRy9suaDt840OfZB49Ki4N4hXiQnQrVwJCRmgcAMytJnNzmIzcJrNdqfdDpNLq3WptZJ7eGQ7b1w//925VfUN55afGJb4F6RCHDV9fW3uKpsXK14MZqvTCiOEOIqLS0uL1S4XwpRptTLWq2HYsaejZRVRf277CV//4YiPb7lz58758z9c//xGs42E5HQ66bCZi+G2w2g32+126ErVajVJgcHAeA2MWdIoP3CtqelUV1dX0/Y1wxPXbKwnVq3q2LPDCbFzCG+K7cWA8msna6lWq8Uhk5AYUlYs8ew9drACZhJPDo5/sPixmo0tSNKpU2cP5MuqIEbUzmInXiTG2Q6z3Q41geKilQCb5iFg7tzV3wS2r8kcNXIY4r6NLQi369rJInUVMRSy1W43O+0spHaVMsgMJKYkS+iFYnvVMLdWNFVcWDMpYJjilhbyOhkvgmaS67QjYlBsRvTFFGyxy4VgXS7k2QC8IculIpGp0eN17+082FoxbPGJjS1di8+e1JHX7aY11AYTXFZaQmyNYXap1S47OsulNcgk0Gq1JpFQqG/0nKja0gy1Ri7X7D12tXXZ8MUdFZsO6NTQYlG57QqxWK6028xmKzoLyTZDq4YYfpdahpamYGWyUk+Jxl1Ze3zFiuPbzx257myUKORiE//mpk3bhy1evO52ucJa5Yb2xvYVlW2e3G6+yUwNDht8wIWIQakMidbCW9rWuP46zZza43V/+vOR9obzO0xKhVjvyN8P8XBr3LrvLVOxtaqubeedI9/+GRer6/N4jjbbqqxW1uxyIdMGA7KtBeT1bDl3HhNvQu0KEh9ub7+zw6SR6xtR5u1rUocj/kXfxqvHcjEz3H1bjtR/98O/vvHqysq6vprznzTX2Kx2DCsMLMTqkslcLpnahRWsLSZvO8T0V2tWbD/X0N7e8KkMVdbrcw4cHV7EGCCny2VWa1Xb0bMtDUe+/eHVCSRe8ZcGMiNQgCWklgH0M3WW2ubZeaT98F+Q6eXN5hNrtmNaNjQM3HBoxHl5+nxN3zDEI0fNXrG+MxeJdrsPtdS3n7sA7/K6thPLBw4PfNLcZnORkcTkd5HYoHaad3zTfvjwwPaVy5ud4sa9Wzq6umD+psqkEOdJRSZ75jDEfnG1dYUlZ6zuthsdqxraG76dgCicksYL7YfbB65DjPwCvKlxYlawy2a+Xn/4cHvDhcrKKkX+3nduLV7c1TUwMLClUSmHWaOdNEwxuqfK3YyAUanPa1c225SOvZ+vGmhv2HDBbCWjzAA9nbUGUGzeeQ4BN9R/bmu2LtV1q/a1VmB/GBj4pBEDRSzVeIYhDg2eXltnRaLbNi5uqW9oqP/U2exUCPfyP+k6NdA+cKjZXIyNATYZQTNLpjZbD1EzrWr55oytJN9Y3dm7bFl//4YNA99VeTSYApIHi4F/+ON1Tixh98cdLfX1LS1HdmgVqu53dpxlYtiw0WxDrKSVKEuUEqUMXs+WLtJ2NTWtdxiyjYtubepZ5lXvbKTJqfWkDkMcHZtRZ4P46NkOGtmLF9/qFhotizY2bWjasOHUqWtH2+xqQ4kSKJQayGX2Nuuh+nrS9vcf2tHdvajzypLe3t6enp5lG7Y4kGu5RJIaMSyxu6qq2b1+3WKiovVs56JFizrP9iMCmDdsPGFVG8irUWiwBZeWmk/sbFrV1dS/bFlPb+++zvzOXZevXL68BPT23Djx5aVLl76smZU87gHmkeNGhWe88gr+8pazSFdPT++SJbuOvXVsF12G8rfhkM0OsURSUmJAnu0ebZvnVkf/st4lVw7u2rd/3/7b+/fv2bNn//79+w7927//9T8+27116+7P/uE5XnDIf+dN8uM996vPdhOf/fVP53d9vH/P6du3T5/ec3rP/n37Dl65sqSnd6fWZZBpNHYnJrfHsfOox/XxwX17bn998+TJY8c6wWaWFXe3vb116x+IrVtfmBcQ+be9UyPmvfDBBxe37n77zdWrt33x1ZnNm99i2dzZeezYyQNfn951wGOXnLl1wSqRNGp2bDyypdHeufmtcmPZIBaWsurqD//47urXGP6w9el5EX8z5pCI557+4OJF0m5b+9FX7y9aVI3LsJfTlZeX5+cvXbp5h71UUnKo4c6n1z89f6S+AmKPKa+wsFCQfx9CoVAgLC+r/vDu66vffJPUMPuNDUuInBoZmRA0aAwLYfCbB+9ueF/f9u73Hy6qNqoKB1m6dGlJifqMlbYntVJS8jFmGljV1LNeYzcoFfjzwvsQAJyFuur3/7iWVV98IRDwkpN5geNZb2REDAPvhQ+Q5bdXw/ve+9U6vmCpQoFLsihgVuMWQFailCn3rGpvh7erv2e9Xl2iMImxG7BSqZTEhEggLKp+h8yr34T74kI8nODB54np7K1fvF/sI8TMX+/e+jbSTN53qvmiPGVJSYlScQ/61kC/pSxVnMZUo7Xb37teb8CfyeVQQ45Dr5fm5UmleIlEotyiMjK/vhq89nxdJTheOTFgrDfRAU+9gS1o5dHnKdrXt62FtyxXr0CAgESERqNUYv0y37pMtzu8M2PZEgwruULsdeNLXigW451+DKlImJvN15F52+u47uqvSnCvYjKZZkWEseKJlXV4Jjpziaxr3/3ivXcWdTvgxZ0lpVZmIJtCAytjVkB8a3FLS8fipgqIETF5GbWChHK9icToL1EeNPqi9++uZfjQ0t3dnds4JzNgtHfvD8hMmT9/vkO35ou17777xUfvvb/I6NDIZExNrcVqqJUwaxQ4AQVF/HVFVwfE/SQuUYhNjNiESKGWU8ACoUIjLlQZy6ox9z78/u7dux89n5Y62dc3PDYxefBpeXxgcuKCBb6zH1v44kd3v4e32pjrULisuL0tKXEWyyDWkI/EBjK7xDchXlxR0d9DEWtMJrlGocALIZvkJhPc/GoYierqaqyq53+9cOECHi/APzoqfVxSPCsOSpianu6fPO/ll2NfWrjwN1i9NAWY1VsmRa4NZFRAToWmXxlMB1o7hsRyEyA7xAoTgFlq1Om6u/lFOl0R8vvbWCyj3/3zcwFYwj9latbTH7z2ElbZLyyW7vzCQiwPNGaOgYpMJb4fQ+PJdfeLmTCZJGNh6cVUYpOWnjVwU+/I5XdbulMXJL+07eI/ZSHJPyV93u9//9rvkgOTU3O6s8UGmctuw1O4SFysLoFYgQai6xEQO45top2rYtmgmFoazQUhukus14v13RajTigQSMVyPD+aPDVzn1998bXnguN/HvG8p7du+5fHZqa4ceMjM4mQJaPRWKQxKOS4kkhUkJur4qtyVERBd+dZ8pJ4pwldDSX1FbG0EF69VK8v0FnKmCJbjOUCjLdLWMwvJ/tF/lgdGhKc9attH12qs6nziizUF/RfFPGFQj6fX0Q/g+V+qjdfuyeWGJg1fI88eGmC6LGShUUk756bNqegsO/FtS/OmBjLC04KHfKOjQ5MnPabr15pc3T/dk7aHIfD0djY6PH09dWAtpqf03zwPrESSSHklGUCVhpddBaoyrpn+fAWzJ45f82XfTXHMyZO4UWPZLXx4yN8Js3APbFp75yZk314Pk9mHPfyyn9BRkbGmBljDpG4FeKjWhJTyDQvyQpEOAiRQGVxzMoKjowaxVswLUUoNa84nvEUbxwrHseLm7Gy1myaM8vXJ8ZvfJI/L3baI48+Qkyc9mRm5rP4+Gx6eCwxJXYKSPRJ/GUFI+69NiQmtVd3z1uQbfFM4wWHYUol+Uf4zJ7rELsrM2KDWXGw78pap3BOamKg33haaEFJfoGDxMRERATg80K/YP/o6CiW9PSIX7ZWtLZCfHCH1ltjPbJMCS5EegWoldThKCjgW2oyef6j2XqOD0ieneKQVT5LuxPhF7dc3DgzMSY6JH4w+WNDWBLCRoL4+PjQ0KChxT8u+R/XDYrpnp2CpTTTjigS4SWS0jrgW+bE8aJgYRmNmk6bo30yIIwVz9anTOb5J4wYLpGBcTfWtYKeJfvOGDSIl7xAIGCMACdVkTEjPHAceniIsKiYxMd8/dgAg2MnJgZEhv4d3skZO6+1rlu3rmfJnhIDeQGWrohwCAQFWPTZ2TpLypSIn93hJURF3PvNpIDAYGzNw/bGTJ5Qd2bfOtC75LQJYj15gciBeJFioCqHNzwmacTPCQsb+uXY+L/H6zumWWI67RXfdBhMJEU3FULqjRb7P24AUsIj4OWMEPIaNI4DVzdt2tR7GaNajE6mNkZ54YUV3iJj9RyKlzvGBsTCKxaLOq9AvORgp16eVwgxsiwVoJ8RcHZOTpGuev70mEgOvWGjEtOaZQrsmEv3X4X446VyeR6zfACs5MVw15XpMwO59I4M9nm0Uq1AjHkFB65evXr5Jh8BY17AChhvNnl1E3njOfQGRfFmrbQpFHDlifBUeHlXZ7acGVQ4obOor3IQsKUsLSs6nkPxVF7qSjcGRp4UNyi5B67suqlDqHDC642XCsw3Vqck+o3mtKGnT6iTSVBVIHUUnjyZn4OWIikrFgphLiqbHx6RwGWB/RaMaZYpMZqhxdOCqNuYI2UyjIMqLGAGVraRPw2NxSHpPDSWUsHuf8xTkl6K2/YCsjITixEXWWZmRQVxmujMWptSYyIvxJRinJDcXIGwgBLNziwLxwWOD04c4zYocRMJKGCIMS+EuVRaOPHF9JZRFBcTMoLTjp7VLBvcASlgtqmoo0iJArOJxp0Nh4QFTF7uxBMYlderhROHsACP/1AyeRaq+GVzEoPjOe2srDS3BlYw9OSdDzG+YKVgYebrLKmBCVx6x0ZkVqqZjzrglQrIzCIkLY5sKjC/LMUnegSXRPuMsZn0UhLjkLJeEZpLQN1MM5q8Rn5mxFguvQkxk9wGvR6hMnmmEhNYusLBZQRyiiwpPulcekOjExEw5VhQiDSzVhIDb4VV2Bz4RsdsjgMOnFZpyBP8CBpVIgEihhfBwovdcG4yNkMOSfcZ4zZJf+RlwxUKqa8AzEWWgriAMG7X8OxKtVz0E7GDrS6JyUsB87gNeBwPa5gNOJ8OnCjFJCYYMT3KZuJzJE6ndHilmc00pHTQKhry5rIBP5MYNYLb1prolkHMgoYSkleYn8vCrKQio2VmYAjHrTXXphDfE6OqtOVDn40tCbAVtjTimYjTTPtNrisl72CucwsE+Sgx5Zjh3lrijeM407Nsyjx2agjz8yFFrgezTAHzqbUs/EloLS6Z6jPXbsK4Yncj7/brFQ9FjAo/k+gfyqnYP9btEkMML/VzAfYjElMzk5Ui5pM4jRfJqXd0QGqpMo9dSZRmkuHwvgCdUWL+JHwmyyVJgWky02C8qnyhKjtbSHKGIbGxMTw4iOPFlIKAvQMrH/XNVqnIy4wNHIwaRcaGyO24DPUPb1NIhVAyWrqvIhXCpjf2BbGO6+mBf8hWikW5iLbAUZAPMQlVkKlUQ9lGczkmjeK2xGExs0xSoYrSzGyCgEkwO7Dw8ornh/uP4JSQwDSxQIWm8jY0eQGdICYz3mh+cHvPA6Ymp4jzSSxUwSkccqO1+BiVZKaBmcYL4VYcFfuMSViuUmFkkJi0KgqYUkyJxgFvUdGswLHciv1928TC8vJcilUISMzmGa974pyJMWHcrqbg2XYSM03sFXu1ZCYgpoALuJ5bo0elyvIg5qvKhZgcQlKSV5VDahrSTKJ1+sl+IzkV41/hJCRWUU0Rds6gmU01xNDqjI3Tg+O5FUfMUublI2KqJr8cUuSWra33BgAno9Ho8Q0O5fguYKYmT6UqhwViktLBLmC2rxCxri/cP4jb+cFLUwj4/HIVn4HkbMhMstkKG3U1/wtisRAW5BrAC9g35uytsFH3TGz0CE5JykrLy0ZQaKJyVLqIgWTsO4DXYnlmCsTcRjzTRJ2L2LK9AdI3DNgsWApyG2dm0W7M7ae1viyT42bHxU1m8L2fcBDrMwqDi1MSovxZ6P9LD2bx/zHRUVPh5ZpQlvhBQn/OiIc85CEP+f/AfwJxmPdOO/p7KwAAAABJRU5ErkJggg==\",\"[小七_神评]\":\"data:image/png;base64,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\",\"[小七_OK]\":\"data:image/png;base64,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\",\"[小七_星星眼]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcf////////79/Pz8/P////7///////////////////////////7+//////////7+/z1AQP////7+///+/7q6uf39//7+/9LS1fX19Xl6dv////f5//7+//7//7Kyr////5aWlqqqqOrq6v/66bW1s/7//2hoZ7KxsICAf+7w///XH6+vrWFhYODg4Ds6OP/3SPn6/1paVvLz/0JCPqOjov/wrqSlopucmomJiNfX2E9OS87Nzfn5//Hz///30UdHN01NRmxsazExLjc2MnFwa//3lZCPjsTDw0hIR//5Uf/lPfvYbP/ofh8fG//iTmFhXYODgSsqJ/vsOf/7xVlaS/3imffWM1FRT/rku/zRVf/8a//xcSYmInFxcf3TM/rINzQ1NPzEHf/tWP3kYNepL+neOBcXEhcVERgXERgWExkYFBYXEB4eFxYWDx4dFRMSDiIiGRgYEhsZFSAgGCEgGxUVERQUDxwbFhkXESUkGhgVEh4eGhsaEyMjGxERDCEiHSMhFyQhHP///ygoJCgnGx0fHiUmHiopHissIRsbGS4vJP//SP//QEFBPAQEAiIjH///UTIzJDc5K/+/EAkJBw4NCUtKPywsKRsXD0VFPP/sMv/MDxYYF//lIf/fIP/DGf6wB//3M//mLx8iJf66Cv/EB//dGd6cBzAxMf/+Nf/OKP/WEz4/MDg5Nv/gSf/kGf/XLP/MHTU2Mjw9OfW5EUYzDc2PBCIcEEM7If/fO+KlC//gLQ8SFndXEuWsFnFJB//2O5RhBv+lB7B2BP+7Ie+tCd+QBJeGJU9AF1ZRIf/zKf+uF//WOOqkB998Ac96AdSZCOjdNdTQNTIhCmNDDP6cAaZuBdSKA/799PSeBMfBM///W1Q5CbaCB/7yyv/LNP/vHf/01+eTBaiSIqqhK3l0JTsuE/7sQ/+0Qv/85fSMAYZdB8B2Af/KX2hjIv/kib6KDP/2o4d7KL2wJptxCcaGBLOwMdjDHP/1g8SZF//hbv7Wk/3ioP7qsP7suPvRjpIAAABndFJOUwB9UoYBa4EJZweDGHddJh9I9gRxDaAtOJuJwxJlTTKwBrGyjY2uPtmlvXz9ssqS5P5Z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\",\"[小七_色]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcfT09D48Nf////////////////39/v///////////////+Tk5f///////////////1lYV////////////////////+3t7aGgof///09OTmFgX42Mi////0pHSayrq////////97e3v///////////////0JBPf///////yMhIrS0s7u7utHR0ZqZl2tqaE5NTP///3BvcP///////8vKzB4cGv///1ZWVkRBQsfGyHp5eH9+fj07O9jX2EZFQzMyMCknJ3NybiYlJv///2FgXmpoaTk4NZWUlsHAwaenpurq6l9cVb29vhgWFYiHhlZUTLW0tTYzMk9NPS0sLzMxKfz8/3dqLRgRDhcRDhgUDhYQDBYSDRkSDxYUDhwYERQPDBkWDxYTDhcWDxoXERMPChQRDBgSDxkUEBcUDx4YFBoVEBgTDxwWER8bFR4aERwYFBQRDyIfFhwcFSQfGSAcFxAOCw4LCDQyJiYiHf9fXgkHBSkmHf9jYiIcFBEOEDAtIyYjGS0rHhoVE/9mXxkWGP9rav9pYxwbGjc2MRcUFP9waP9mZv9tZf+GgiooIjk2K/96cP+Vi/9zbf98eP9eWv+Nhv+Cff92ahMSFSwhFSAdHP91cv/nLjAuLP9zef9pbv+flP/dIP/uOP+DdP5YVzYrD/9rdP+Le9pGUPJSVf+Mnf+Lk//+SOZPUP+gi/+Tlf+Zn7hNNv+pm5t8EP+Fj76vJv/4O/voQUU+Gf96fsxESHhcEbSIEf3SFigpK/tQUfhYWf+ynf+UqkhFNVk2NP9/lumAhEA1EGlWEmEpJ0woIX9sFIpvFfFVaf+Eo8WbE//UYv95h7B4JKKLHOZRXlpME9+xErmnKubUKz0eGNlMOzwpJf+WfvPCD9C+JP9fatFlW7GiI9GkFN7HI4syL7dBQnlEQZVOVKhSKvtfcPtdXLVjXc9LVsVtMtKeIv/uVnYxK5I5PJ9uGs6FFthpQq6ZIf+6eaI2MONmdf6qYePROqlqEuiCTOamNN9dUOBlvD0AAABYdFJOUwCK/gEGEgmFgnt4HpBoLwI10WMWJm1+jaor1M+3Ud2mPUuTR1RgXPsNWPykoJm42+1C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\",\"[小七_狗头]\":\"data:image/png;base64,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\",\"[小七_伤心]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcf///0tLR728u21wduHh4f///+7u7/////z8/P///////zAwLP7+/v///2tuc/////////////b29////////////////////0FBO////////////////+jo6f39/f///////0dHQ////3Ryca+ur////////0hHRYuKjikoJKSjonR1eU1OScnHxv///+fm5js7N2dmZYaFhJ+dnkNCP9DPzpKSjpqbm0ml0GVmY9XX2t3d3GlqYzMzLnFycKirrLy9u3t6eWNjYI2Mi7W0tIOEgPT09FdWU93e3IB+gEd9jVhYVVNUSWG36jU0MY2NkZjX+dLn9mNschkYExcWEBoZEx0cFxsZExYVEB4eFxkXEhwcFRgXEhwbFBsbFRcWER4cFRwZFB8eGCEfGRoZFRQTDRcYFCMjHSAeFyEhGzs7N0ZJSxoUDiwsJiooIDg4NS8vKSUlHRoaFx8dFScmJiQiGSclHywsIB0YEP/vJy8vJjU0KElLTDM0LyAfIB0eHA0MCjg3LDAwMjw8LTM2NiEjIzAuIf/3Lf/eGRoaHCsqLRYWGP/sHf/oJDg2Ov/WCz8/NVJTURUYHP/lEzM0ISQlKUxLOFNTPTo5Qv/mGxgcI+3DCiA6Pn35/f/eI1pbWP7SIVtcQmHZ///fDBETGGZnSURCMPX49KmqpsihD//9ME+78Dqbv5D+/2fl/2z1/0q65u3x7S4wPHZkEywlEzBkcpn9/0RHSZ99DY97FToxEa2MDoltEkpBGDJ0iKr//3nv/9bIKJCRjv3AE66CCh4qLlrT/lPE/Mq8Gv/9Jru+vNjb1kpJLz81FfrMB1hLE9zYJmm4uWLM+nHh/yZMU87CIM3QzW5wbN7g3OPm5GlWEoXz/2BZG+jr59SnBv/1FjJ+njOOsUWx38LsqpialHbT1i5UYrigEtfdaufUR4zy6OSwEXZ5c8/QN1aks3rl5qKdIq/uwuzgKbTgl8SyM6mnMaz537713GhsQMj3jp769JLhsIisrY+pmcPeyh7ta/QAAABUdFJOUwBF1p74j4SOIIc+SvgFe/lRQEKJAoEKVnj+cWsnEJMWYC7+ZcWlWxvew/aq9f6cNo/s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\",\"[小七_黑人问号]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcf////////7+/v////////////////7+//////v7/f///////////////////////////////////+3s7f///31+e////5GRj/Hx8v////b29////9/e3v///2JhXre3t////////8TDxK2sq8/P0P///9XV1f///83Nz3V0daCfoJSWnEFBP21rZ1FRTPf3+F5fWIOCgv///+bl5tnZ3DIyLf///0dGR+np6zc4Mzo5N1lYVGloaIKBe3t6cb6/x0tKP1RUVKShnScnJo2LhWFhU5iapDIyMVhWT0JAN01MRS4tLHRzbmtpW4qLlqWlqYCBhGBfT4mLjK2utLi5v5+hp5GToB4gGlVTRB8fFx4eFyAgGR4eGSMkHCQlHSEgGwYGBCMhHCUjHQICACAeGhweFxwcFxoaFSEhGSIjGicoICcnHBkZEywrHgkKCBQUESYkHxYXEiMjHy0tIhERDikoICopHR0dFSorJIqLiHdzY3JybSUmJHZ1ayYlGTMzJzY2K3JvY36BjR4eHnNzan97ZlBQUy4uJw0NC3p3ZIuKjY2Mhnt5a2pnX3BwaGRjX21sZW5ubH1+hjk4MYuKf4KCdzExIo6NgYSHkDk4J3d4eEpKO3x5ZX98bY2NkHRxaXp6f4SBbG5sYHR0cYF9aHN1hHNzempsfG9vcG5xgWVjVENCOYOFgD09LGxpWXh4cVRTSTAxNHF0gEFCMFVWVYOAcHFxdXNvXR4hI1lZXEdGM//mGT09NH19cjM1PV5eWYeGeklJUFNSPWZnbP/9N3Z5hVxcYf/xLYSEiZCRlVxZRkQ3Fv/SFP/ECXd7ixcYFv/vHnRzZoyIdkBAR//nKDcxGkhDIf/cFV9gZ//dISorLWlqc0pKRoqFcf79RhcaH//7J1ZBDpduCFZQJ+mlA+vdLlNTXfizBNmvDXpiEK57BC8qF1dLF5qLIYJ0GL+KA9SWAqyQFMGnInVTCuy7C2NNEWVfKMK2JvPRGMaiEeTQHfTrMtfHKfneJYN+PXtiPVQAAABadFJOUwBPdQl8BRKDhn8BRS0WOGVwKHgyiiL+HbWLaotakhnRpA0+n6iXVJhKp8Gq/ePZ4IfZ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\",\"[小七_鄙视]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcdXU1P/////////////+/xYVDv///////8TFxkBDOP////////r6+0dIOMTDwv///////////7/Awf///+Xk5f7+//////////////7+/u7u7tDQz////zo8Jv///xkbHMnIyfT09P///0RHO////x4eGomJiDc4M62usMrKyP///05PTf///6Skpf///////iMoND4/QB4eFlRWUNvb2////39+eWVmYrq4t0REQpubmf///yUnJDU3JDU5P////2NjYHd2cJaUjjIzMW5xe2FePkxKNltdXW5taXR2f1lZVyowPpiZnFdUPD09MGRgT6elnGFgRkZJRE1MPioqKDg5OIyKenp9iH56Yi4vIXRvUxAQCRIPCBMRCRIRCQ4PCRMPCRYUCw8QBxITCRASBxQSChENBxQTDBYVDRcWDR0cEw4OBRwaEhEOChQRDB8gEw8RCRkXDxUVDBsYERkZEiQjDxoaDxwZDhoYDB0gEB8cDBERChgWERYXDx4eFRQVCBgYCxocEhsdDSQgDxgaDiAeEBgWCRYXDCAiExobCi4vHSEjDignFSUmHCMkFBQUECkqGwYHAwoLCw8PDyopITIxHg0LAwkKBCcjES4vKBcVFBwaFP/sPhIWDCksHTo7Jf/mPDg5MDI0NxwXCP/FATc0HDEyLi0oEv/qOUpKMwICAf/sJP7vQxodJP/dJv/hNCIiG//ZGqSLBSsrFjI0IEE+IyQlKDovCP//Sf/RCGxlPf/XDP/1P0REMUNEJf//Uj4+MisuMBITFP/lLVVECTU2Kv/nNVBNMyYeBjk5Of7lFzEuEqGVJtSYADIlBf/2M1VUNJp8AEtGKEw6BFVQKo1zBEM2C8GfC//7QP/4TUZAD2NbNWZKBIdkAnRYBPXrNequADs9SsaNAPO3APW+AKt9AntpB21cEv7eG///XZaKMc66J3VrPd+lAF1EBK+UD5+GBvLSI+rJD4J2F9rKI350QkJDVF5WLpVsAm1oLMjGR6uqN7aHAeW5BoqCHUzUo88AAABcdFJOUwCYIhR8gftThZ33UkOF95pWD0+ecY9BAjMFCouXbPN4/p2KK/cY9bf0pphG01yoZ2P9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\",\"[小七_问号]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcf/////////////////////+/////////09OTf////////f39/////////////Dw8f////////39/dTU1P///0VENf////////////////////////////7+/v///////////////+rq6////1NSQ9vb2////////8fHyM/Ozk1MPm1sbvv6+8LCwefm51lZVf///zU1NISDgf///3h4cTAxMigoJTIyL////////6Oio6ysrqCfmrGxrXx8e7Ozs5iXlTs8OWhnZ/////////f394SDepGRkV9gYFhXSuHg4m5sZLm5t729vI6NiUREQnNzdD9AP6Cfny0uKjk5OmRiVllaWqiopkZGQoiIh0tLSiIiHnBvZGZlWpSTkPHx8SssJ1JRVVFRT05NSz9ARP///0VHSXp6eCgoIF1cTzU1Lf7+/2trb2VrdhkZExgYEhkXEhkYExoYEhcXEh0cFxoaEyEgGRwcFRoZFBsbFyMiGh0dGCEgFyMiGCIhGBsbEyQkGx4dFSUlHRsaFR8fFh8dGhQTDyQjGScnHhYVEB8gGCYnISMjHSclGyEhGh8fGxwdHREQDRYVFBobGysrIjAwJh8hHSkpHzo6LSYkF0FBMy4tI//cKz4+LyMjIjM0KDY2KhYXGUlJOv//S//IH//TIv/OIvW3IP/DHy4rGh8gIgwLCf/iNCYnJ//lJP/rKdmeEf/xP//ZIP/3LPzGJ//WKv/gIu6zHf/mOv/tNv/aNGdQEv/xKuqtGDowFs+YEv/OK//+Kvq+HUlDHHpeEf//Wg8QFvq+Jv//NP/5ReOpGE48EvW7FbiRGEtKMcWRDohjDP7OGujIH96jF2lfIJSJMldVN62kNnZ0N8ahIU5MJqiUH7qHCpNrCX1vHqJ3DFdHGGlmMDc7OlxRHV5eQkE4GP3yI9PBIDc0HsWxJv3pQWdnSPPsSnBrIpp8Gv/+QI1xFdGnEranIs7HP/3VG//2O/HqKNCrHoiALZ2ZNrm1QuzTN/TlPebhNeTaRUSmiaYAAADqdFJOUwAYLXEEfoCFgtJMGgIjeV6LEg8GlTP/dWh8JzlRYwgUAR5Gjgz7k1ZCmpj9x4Whj9I76btJzv338Vlrr6O2qrqhr+fJbT+HyrLO85HUpZ6/6cLfq/716t2p3bTm+d3fu4bz4+nZ8Ar1w/rs+G/X0////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////gQKK1MAABeVSURBVHjavZsHQFP39scZklyjDGWEMERBtshSBMUBKm7ce9WtrX0JITuX7ED2YCQBwpKCVRT33qtq3XVvq9Xu9nW9rvfe/39+NwbH69O0Td+X5Oa68skZv3PO797o8ce03LNLF8+orh7/Y/WiDMSwFIzmH778f4nt0c8ndcio/uP7L+yLrfb6S1E9e3R9jptDHvxmbHNtbW1I7Py+WPRf5u/eYdH+oZEJvp2e/jqaPCq5ukou18vVVU0rFpLT/xpsVD9vLKbvkAkxmL+n4zf8BofYcbZEq+dqcaX60SC/qL/Cx8HUmEHz34yNjX2z/ziqrwcoOODNRpzNzF45emiGVsaRLwmg/AXcdGzIjOb6Rovd0li9JImKbKYkNalknPwkn9U+iRlijiRr1sAebgcHY4Niq21GmVIsFsunLUmN6IrAq3gSfS61VydfWqZUxmhYSYtye3ypQ5LtEg5Hu2iAWGgUTstECC/ymEWLhpJhGQUOHGRRMtqGk9wOjg6Y0SShs6bkJSX2sUlL5IuxcMDFFyQlpVAgx0dimY1KhrWPj7vBPVbPqlZLmPnjqBH+WJpKaVwWFIGqZTqFEtzJozcF4mBh0NvyVrunfHXq3qV7T+KsC228Ray15npHwWfIM4i10xMR2CHfESkLY+tlxYKMcRHuwHZLiPTGqFCDEdhn5nqRMSuunwcCq5X4c+Bgn6D5yU1KiaBhtE+XP4/tTvEr6Dt44uC+5FBfBE4TK/HFAcEeHmHYeDWHtyw12sklTZjRXCWTCeYNJSf8ea6Xd8Dg+bHJzSHN45NoYR49vKdyy1iTSV08eoQmThfT6WMw36d+Jg0ZWytV4oKMqWQ31OpgUuGC5Hq7Ta2uskzq693dI5w8p/PwuMhOHunkBTYJ3ZobGehoxqFJY6tlbHzemCBa+J/n9vKZEFtvM5YIpVKxyjKzYKRH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\",\"[小七_流泪]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcf/29f/8/P////7+/v/+/v7+/v/////z87r//////v/+/sL8///////+/f/9/f/+/p6fov/9/drZ3f///////v///////zU3Pvz+/vPy9P///42NlC0tMjs9SM7O0v///2FiZtv+/09OWlZYX4KDh7+/xHV1ev///+jo65z//5v9/21uddT//4f//rnz/6+wtU1PT+L9/0NFTf/39679/4vp/+7+/43//zM1O4Xc337s9FKdr//19Lb9/ykpKS8wL4Xp/qTr+3FyaUFBQxgYGAAAABkaHyQlLxscIh8eJXP//1rg/3T//x8hJyEiLRcWIUrQ/232/1PX/x8fKYX//3D3/3H//1fa/27//2Hj/3H6/3f//xgZJV7e/1Ta/2Dg/3r//xweJEnM/3D9/yIjKkvU/w0RHmv6/1je/3///xESGWPl/4r//wwPFUXT/276/0/R/xITHigqNBYXHVra/yYnKSIjJV3g/xYVGVDV/ycpLZD//07X/1bY/xsdJyQoNAgMDwUICWPc/2fl/yEjMRIVI3n1/3Hq/x8fIIH5/23m/2Tj/1ve/2Pf/0nW/1zk/3Xv/1fV/0DP/wIDBCksOVDO/xMTEGXp/2/v/2zj/0XN/2Ho/1TT/2jh/1jj/2vq/x0cGpb//w4OC3br/17a/3r6/y4wPHrv/07a/1Le/4Hy/3T0///9SSstHSUmFRwaDT/U/wwXG2fw/0yuxF/t/xgfLjM1IkBBJ2DX/2P0/3Lm//74MVjn/+nFII76/9DBMRYuO0ChuSY4SeTTLzUvFlG41DmAjBEhJGfa80jJ91vG5D2PqzVqfixkbSxvjCZUaFPK3EnO+l7W4kOMmT6z2zVPXmrn81VVLYv0/zV/mlzR8iVJUmtmK/HZKU3T+3Z0OWexwvr5ZyY1OLuuM5qPKm3j6mjK1ojZx4l9JFNBD2hpPezrU0wtClDF7qKgP6+4WMyNCILZ0bnIa4vTv5fSr4pfCoOBSqd0C7e2WI69m4LQwtrbVpGJiLyiF26jhFAIMmAAAADndFJOUwCAZQiDfgMMbbRuIbAaSF9XrVCTdzU9EP6Jiii3/faXLtCg4tm8n8MUjv7R07D1u6Xnmu9yzsyR5+v9+/x6weLx6MT52fD//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////k79drsAABYESURBVHja7doJVJTnuQdwhQEMIDvKIgIqi9Eag1o10cSkLZtswqAwyIDIoKyyzADDCMO+DwIXHCCssioIFFBQrGvc6hJNjCZqYrZmbZK2t9tte2/v/3m/D2KT3uNUkvSce/JnhoGZz/nN867fDM76IT/kh/y/jrbuv4U1MNbXN7Z0/d5dBx17J1NzgY7xvLnfa+HzBCvXj2csdFzgLBBozTPQ/r5610xgukkxPpyu6F242MV5qUDfxGH+9+DqGQtc7BSKcbVXWUZ6mp3V045odAsTy/nfcaPrmtk4KhTp6ePqKD8vpZ8kXWFntWq5qf133uF6OqYKRUZG+nm1MGNiIiPcj7MXLnFyXqqjb2TwnTX6fIFLejrgQbXw/MsnPnhnXKn0J7q31+rp5azRHfR0vxvYEbBf+qDc+/yvT5w4/Osv30hX+qWnpysUab29qxwX2AssvoNGB6zjqEDFgKM+BQz68N++fCNDkpEhkUg8gU81uq3rt4vPFRDsDdjrjcNQkRNvfzAu9PMTCoXe6HHPtDS+0bWMvs0p7iBYQvDgoLyDh0/+8bxUKPGL8hN6R0VF+cFGj1utYsuLhZnDt7WuWgpWUVMPDsk73iL4xJ+HisNRL8FKyN7efhLqb9gL2TSz+JbWNkub9XDLBoc6Ot4B/Panu4qV3oifn7cSMP2EvpZ4ehJuV48et7fB2jbz9cXIZj0qLhsf6vD45PCJlz/dFeAR5V0GEyKu1NSQKcDTPXMx1Be7sA3FcmZD3cSch8s6fnXi9Hm4Hl5eXlEgvRmOCBmbIfH3z/AT+tNow/qywNlGR9/M1vXxYWcrBg+XeXxw8nyxlwcHs/CwhL4o/t7eQqE/4plWjw1l+Uo21Oc+Xo8br7RSSAj29vjV58XegOEinE5uhh8fjHTIoIX+frB7rdhQR4+bPcZupqu1speDPbw7pN5RgAF6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\",\"[小七_叹气]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcf7+/P7+/////////+fq8f/////////////////////////+/+fm5////1pZVZuboaOkqP///v////Dv8O7u7/f39////4qJjoeHg4KCezY1Li4tJ5+gpfz8/P///////4iJj////5iXlP///8fGxv///728vWRkYf////////v8+////7a0tEpKQvj4+GFfW62sqpKQlf///6akovn5+IeEgv///3x6eZaUj6moolFQS9/e4D07N6WloP///3V1bnt7dt3d3VJRT6CfnIKAfIeFgtPS0WhnYpOUmoqJiENDPnp6d15cXZ2cmkNBR0hGQ4qKiW9tbCAeG5WUjJOTkYaFfnl5dG1sblFQTCkoJHNyblxbVVtaY4qKh5iXkCYkH5uckaKhncDAt3BxWlFPWCwqKrCyqOHh5BIRCxIRCRUTChERChMSChcVDhUVChkYDxITChUUDREPCQ8PBxcXDxgYERYWDRMTCxsaERIQChYWChMQCBsbDh0dERMSDhkYCyQkGA0NBRcWCxoXDRwcFE9QWDEzKDg6OCkpGSAgGRoYEBYVERYXFiIjFCUlHBMTByAfEywsGh0eFQ4OEhMRCxwbGhoZFjY3Ni4uJh8bDS8vICUkJUxNVSAfHzY2JhMUExAPDRARFRAQEf/JAwcHAiIhKBEUGTAxGCkqITk6JP/nPSYlKikoLzg4LC4tNP/kOD0yDSgmEf/8TlNTN1paNjM0IU1OLf/aJP/mIv/pRDY3HD4/LKeRDv3uQ//3S//TGDMzNf/eLC0sLGFhPf/hM3BYCP/QCv/oM0ZHL0ZIOURFKBgYI04/Cv/cDv/nKpl/DDIyLj8/JDMrDQoKDP/uOSQeDv/zUWprQf/CAD4/Mzw8PP/jF0dFFryOAv/vJsKgCebBDlRUU+7LGqmfHaucD+ixAZNtAv/2QnpjCmVdG9ilAM6tCmJPCVNPE29mHbSXFYl3FKSGCq2VFIRgA5GGGNW2FoNzDKR2ANy3Bu/TIfq1AN7YM6eYHNG+JsC4KqRMz48AAABpdFJOUwAJfYKGAjR+hxoUF2+SC9bUxnscBY8Hc8a4/e7syyppeLc4LE2gPablRVgjXab9htew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\",\"[小七_流汗]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcfr6+v///////////////3p6d////////////319ev///////////ycnId7e3f////Hx8f///9fX1////////yorJP///3FwcPX29//////////+/XR1dFNTUv///7S1szQ0Lv///zExLnZ0dPv7+0VFQunp6v///2RjYzQ0M////5ybnGtoaT4+O////6enpigmLP///8HBwM/Pz2trb////8fHx////42LjP///0pKSS4uNGxrbBsbGmTI+lpbWiUlI4WFgv///k9PTrW0tP///3t6er+/v+Hg4HBwbSEgH1FRRldWVJ2dmFVVSq3W+Vu2/JWUjyopKIyOi33e9lNWTtLo/m9uZTs6Q3Z3clteV35+eKCmrWNiXXe/+GVoY0t2hZTZ/f/485Da/WWn1RISDRcWEBMRDBQTDRQSDxgYExkZFBcXEhMRDhITDhoZEhERCxscEhERDBUTDxAPChUWEBsaFRQSDhwaExwbFR8fFRgVERMUDh4eExoYEh0cExgYER0dFRYUDxYUERUUDhMSDh8eFyEgFxsYFA0NCBgZFgoKBxkcGhwbFiAgExYYGhUXFv/5NhMVGTg4Ly8vJxEQDh0dGSMiGBITEgUGAyEfGjExKrm1KhweHRMWDy0sIyYlHDQzKtmkFiIiFSIjHP/pJyMjIycnJxUVFD09MREREd2oG0JCNw4NDLSxJ//7MP/lLWzT/f/uJCsrH9eiFSclFjMvGf/7O1K7xEZHP766LG/c/z81F27o/JaFIP/WHv/rMf/jIeHbNjuWpFS12Hnw/4d/IdO/Iip7jt6lE//cK+XSIpX9/1nDzhdEVUuoz0lKO6P8/2nK23tsHEw/EKeEFP/1L6umJEmstmDD2GzR5VvB6Ifq+CpdXY5vFJD0/uKwEpuRJGxVGM6fEmJbG8i+J2DF8SxnZixPXEiku2Xd5bX7/zaItlCv7FpHEv3HI7uHGX53HPfQGuzBGNTOKxw0MU1KGkOdxry6KCBqcQooLbmhGIK/vcTJaJPQrrOUzL4AAABmdFJOUwAEfH8Wgc55FITPSEwP/Y8BigiUUxv5LcaJWThk0c9pq/4n8MOH4I1fyek0qsjoO6n8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\",\"[小七_在吗]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcfv7++no6P/////////+//////////////////7+/v///////////////////////////4KCgf///////4yMipqalu7t7v////7+/v///z8+O////359e/////////////n4+f///////////////4iHhX19ecbGx////////////7W0sv7+/uHh4fPz8////6uqqNzb22JiX0BAOKOioCAgGpOSj1hZVikpI5KRj////zo6M////////2pqaTMzMbi4t3t6d////9PT0js6NiMjJP///0VDQCMjHlRUSr++vrKysf///////3NycNjY2P///0VFPmJhXf///87Oz////1FRT1xbWZWVlJCQjejn5x8hH1NSUZqZlcvLyXBwbE5ORC4uK21sZRoaF0xNSCgpMkpJSMC/voqJhDs7NV1aS2ZlWEhJQSQlLXp5cqakoFtYQ1lZU7y7u2JfTISCepSUjhkZExgXERcXDxQTDh0bFRsZExsbEh0cFx0eFxUUDhcVEBQUDBEQChISDBYVDx8eGBsaFBkXEiUkHRwcFR4eGRwbFxoZERUUEBgYECAgGCIiGRkZFg0NCSAgGgoKBh4eFBYWDRERDSsqHycnHh8fFiAeFiEhFjk4LxYXFSUkGQYGAxcZGjU1KzIxJQ8RExMUGBMUFP//Kv//NDQzKTcuDxobH1JQPTg3KC0tI//SHSgoG//4M//YCkRDNEA1Ef/vI//HFz4+Lf/uEP/QB//+Hi8vH//sMf/BBP61BlI9C//5GS4lEEpKNP3xGGFYGbCZEP/bJP/fDP/+P//nH/yvB1ZSHY5pCf7nDk5HGP/0LUZBFHNqGEhIPduXAce7IyUgENCPAv/HA//kK8CNBcesF+7ADGBICWpjIhwWCLN+BP+7CdygAkE+IXlcCIqBGuHYKe3oMaqHCdPJGuakAvWlAgYLDn5yFtjRIKynJ5F1DeS4CqV9BG5pSLOpF+zpHu/dFJSPFdOxCMOeC/jLD25UCuTEDZOQJ5+YOYN6Je668XYAAADUdFJOUwABjYF2gm1zhAaHRnARCXccer8jQ7mxjBcOauVhw2Z9T4kLSyV/vLybWlQpqA+SixOrlc34rvu92Pm2Xfg9LcjqosUxmOj+V+P4756jNzrFkgP12TSXDNvPs7CR/tO9ndHy8tz54ffYosbv/ezp+9K2/uqm+8/L///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+CGiOxwAAFkZJREFUeNrtmwdcU/faxxUIOQICARkCMooiS6agCIgyBGRJUZG6cNVdrW3vySDhZJGQQRIICUlAYmRPUVDce7SuqrVWa/dub8dte3vnO57/CVK1tk36ct/3/Xxuf3KSnEM83/M8//E8/8G43/X/UjEFjpMeluMjQldSXf8VXHeXaBuQF8jmZxQdMHXsucV+mdvWPP2QZv6oFKSZKTN3RQX/Cwy23THcpdfrq6ur9Y8ILqjUaqXBYJCWRheMPTg8bk2fXq1WS6uU8KpSVcMPIIFZJa2SckS4XLEiwW7imHOn2m4ebNFXq5qUVWCeEh3AVCMuiMOqoDNaS4Mcx5w7wT9zzbBOr1I1NQIH/FpVBYdSqYQzsJfFEjMEz+U5LR1z8GJsx9kWnVHVZEDcRoNUyuFwpOgzaS+nQqFtjccWjzl3MjWyFww2KpWGESPh36g44Gl5w9olPhPGmjs+0GvbWVTCagCrkZUPUZHFrIqanhBb97F3NGVzbx8qYTBXKlWTQNLXHBBwRSJFe2nQ2Ldhb5f5Wwf79cYmJVmfRywlJYGDZXb02Nespf5x23pbdGRTApOBTFLBUA5HxpLJWCy5YEWZbcSY95XZ0euQo40qJdJofZKJRBIJRyITVYiI9ngHxzHnBmNToEZDH4XA6lGwCEqWJeNIRLiY2ZAT5T/mji7EZgEXmdtkALC56UrBySLwsQzsZQjq5oXaxYw5l7Jz66DO2ATUxkaD2V5Um0kmi4W49c/mj3k4HJ9KiX3x7LHqJo2mqRHAlQ/ALNJaqM8K/p4VZZTFY12+jtjOF3tb9CqgInAlCeaASLJIVEHn1/d4YKn/I4hz8U8iQyA268XePr3KoDFAbGjkSKCnBHPNkklEFWJ+/QIPzHG8RQTXxd5PuDoxm5o8d8KjHXQYtgq4UMAGjQbcLJFIACcjrUUvIhHOr392DuZYbBE2MABzmvHT66nRO1djPgUxD33T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\",\"[小七_打卡]\":\"data:image/png;base64,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\",\"[小七_+1]\":\"data:image/png;base64,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\",\"[小七_互关]\":\"data:image/png;base64,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\",\"[小七_嗑死我了]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcf///8PCwuvq6v////7//x4dF/////////////39/f////z8/P////////Hx8fz8/P7//v7//6KioP///////yMiG////ywrJEdGQf///8jIx////9DQ0NnZ2Tc2MDMzKM7Ozf///zY2Lbu7uv///4eGhHR0bq2sqrSzsv///1ZVUP7///7//9bW1v///+Li4UdGP////yoqK////+Li4Y+PjWBgXP////////r29ykoIpiYlkpJQv///////1pZVf///3Z1cTAuKDw7M3t8dh8eGGlpZX19elJQS////z4+OCUkHv///29vbFNRSqioplhZUWhnYvj4+JybmF1dVupdgD4+OYODfxkYEjQzKvrS3bm6t42MiIaHgf+8z0NCOp5aac1kfOt5lPWMq/6UsP+xx/ujuxkYExoZFBkXEx0dFxsbFCAgGCAgFhsbFRYWER4eGSEgEyMiFRsYFCAeFhgXEyIhGSQkGSMjGx8eEh0cFRwbERcVDCgoHBMTDiUlGhoZDh0dDxEQCvd3jBkYECYlHSgpIgoLBS0tIPp9k/dyiS8vJfZzhvl4kvyAlfVwg/3AGf/gG/+Onv+JmP7pFPl9je5lfv6HoiAfD+tcdfyEnf6KpvuAmf+Yr/Rrf//IGf+RtPx7jiAgG//TGf6QrndWCeqvEv+Pp/+Zuvi4GP6Ckf+WpjklIeFWdfFrgvO1FPl4h1xDCf/IIf+uxv2EmUo3C/RqjeKlD2c9QP/2E+hUa9WdDdVOXf+lwCggDNtOaHZvGqN3BzcrDJFpBvHIGTw3F446SfPYLf3yNEcrKP2itf+80PhgfSIUCuJ6POOUHu2oFsSTEHhFTFQsLeqFN/CITfasK+NjX2ZPC55KVa6EErhsepp1E8VWZrVPZotWXemCm/q9J/3cLMxNStPSPU5LI3BxNVxdK9GGle2UMuJsUMt2hdFhOaqaItqvD//8IcfHQPKNqWIzIPOgPuGbrJNgZOzfPra4RrRkRv/nPb+mK//fTO97Zd+LKoJZOPGJzzAAAAC1dFJOUwANloxWevqEgWAIfgQVh4kBEXembGf2Me/YOppTmZXl/pRQ/Zstsc+ioR/LdHGQS5DuRvcZi67HQV2K96rqWiXTKLzm9s34xrfVNd7vIsDoquXWhLTe/e69+vKepr3Iv/b9/t7S5uLD//////////////////////////////////////////////////////////////////////////////////////////////////////7JN24rAAAXoUlEQVRo3uxWWVMiSxZGWTIBrWItWWwLBNmK/bKpqC2LgCCoQLQa2uHrvBATmUNIl1Q1VTewwwj+AP92jt47PnTf7rtNzNNkRL3Uqcov85zv+87RaP6//thas1qtudzK/wDItLKey+WOTk89ntKh0+mIx216fby0BjETRM42PCmn8XTNEjte/y/CmkpGp0NvxgjtsSyrfXcbHXz8+LEeHqBTjSnr0L8G0re3SHeI9vQp09+AWtk53YH/ra/HX9tkb88Hd/VwY9g7OMjc1wKBxWLxLD/deHWaEnsOR7i8OLgP1AZIGx4OUGojtbP213BjCYZlDk+Ncb3OqtHkzBXf87MsT+hYJISMYInTqaJInFe35rTLs9mEUghMavnmaBRYxew7tP2XkC3Gd5e9K4TeDQbstkZzxLQkVVEJpVMJ1lSk9KRTrfLtEKT60MtJigKxx+trt1Yg9Cd/sHdfR9mXfazrJsufqOhxFjdFWvs4rC0WdodJs5Kw865qR3x4bHcrlVCTI6TVZ9k+1gO5jsyRbqXBUbEV9fZxm5AqW5So7w4fa1YOzWab7vSPsm0jgbT+BhnNZFH63Inqs1bNcZzNsxWFju0MQijvEkctvFlKlWJQ/xRGDLN6Qh9DyHiIeTLiUfBkRGvBXZNOexUebDGAbf29u8Y2cus2b71XW1DIa0co+DHLOE0a68YhaonE5cfaPgZg4sbZXYwTx5odNKjf2RuEfrIjRwJXIYRQ8+fxPKSP2bpPD8/3l+dpFNftfF/za0epOEZ6J3ZTUZJESvh8f+s8fNFFOxA99O9T4hteHAzv8rB7G+NkPey1rWST+/KXxTMdycO7wW0EkvEeYSxwQl6X0ws/KyKZ+TL1qBbZtr+DnTPidLR+OUBYOHEJBUEkN+GL2oJILrak0ZzhLuSAjgidfLG3RcL3o5mZ3OtvZJOGV7ZROpGffYEZoQeDYDLpRfhozbkldObS9FH85MuEz7dQIhX7VuLriXQ945MngXPc92v76Qals9lU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\",\"[小七_名场面]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcf7+/P7+//////7///////////7+/v7+//////////X19f////////////////////7+/9PT0v///v///////+7u7f7+//////////7+/////////3h3dNvb2v///0RDPeXl5P7+/+vr666trP7+/+Hh4aWkov7+/pGRjsXFxF9eW21taf///8/PzjQyLf7+/oGBfvn6/76+vi8vKLe3tTo5MyIgGCUjHYmJhxYVDz49OJqZl05NSDIxKionHi4sJ5OTkP/+8R8cE////0hIQkZFQldXU318d0dFPVFQTCAdFUxLRFJQSsbGxKWlokVEPSYlIaCfnf3YK/P0/2ZlYYmIhL6+vFVSSzo5Mba2sz48NmFgWl9eWhcWFFNSSTIwKVtYUiorL/T1/1dWUImIhf/+kf/91V5dV3RzbkxKMGtqZPbzSv78YU5LRHBwbPju1K+urP35tmRlYfjgi//+e/3jWvzomvvWQv//rdXKi/nXUK2hVvzpr+TDTu/JXffOVQ0MBwsLBhISDCMeEyQfFBUUDg8NCQ4NCBYWDxMTDhIRCxAPChgXEBUUECEdESAcEB0dFCAfEwkJBSMhGBoZEiEeFh4ZDhsYDRYTCSEgFiYiFhwcESknHRkVCyQjG///PD89NSwrIv//Rzk4MCglGf//Qv//Tv//VwUFA//3IPC5FDUzKv/9Iv/hGP/+Kg8QD///M//oFzIwIwwMDBsbG/e/F0w9DyUdCy0lDTQrDv/TFf/wGf7aFzwuDeiyFP/sH9ypEWpUEv3DFTAtG8KXFHJpIj03Fl5LEP/KDqB8FZiLJdXQPdCgE0A9JFZDDoJiEvz1OODcQbeyPf/LHK2GE+CyHPDIH6GXKV5ZIU1IHv/uLtOpH9m/JCEiJbmSF3x1IvrlMVRPI4eAKGhgJMfCR8KiHOvhLsbDN/39Y5V0E4h1HVhXU7GmKmpkQkVHWP36SJaTOfDpQaWfOuHTK8C0KldSNzY4RrKbLIJ+PX54Z+y7IpSCFXVxXIl/U9/cX0xgW2QAAACBdFJOUwABhyZ8dwWAgoQgh3E3CW0wS5YWG0GMY0YPZzwrt5Jf/pJaiaJWi6ESqpfCvFCR4QyxbJj+nN7x7a7516bR7fbku436U+/Qxc72yvb9/aCu2Oe5+YLAyqX0+Kvv5tvy5/Xw/Xvivcec7Nz/3/3v58uVsqvQutndtem4y9zzo/bL09krt0IAABs8SURBVGje7FdrTyJpFuZWVL1Qxf2mAspdLoLIINCgYKS9gNo2WS+tznabdCdtTNyY+Qvv+2HTmVQtMV2FJWwg8s1v/ME9hfZM72Rc7fTMZj9spSgI7+V5zznPec4pler/1//EZZiLOA36/z4uR/ttLhQx/d7Y/FR9zqv+c3C99KuXW6f7RotKpdb/BkPvRjY/sv4p3jBQiWPCf172U5MLZrgW6oavDsX8tHn4gdGqDB4PZ3BM/IG2e3X+tzLGV++Pjg6OLluXl0cBnfOX0TlbE7eXbVNaOuAyIoadrlstdpNe/Ufgpi8AFw/7/du+8rntnx7o7A+j6oXYNeaX/U537uX2ydn+5Y7fxdA6c8TwnbB6Tpe4GPKYYMLzvCCMH/J7o/YLtai9Gyzsaqbgm5Dh4HZz++PZfusyoOO+y2hHEIU3h5gIvV6vA3enwxNCxPID8CxXp5dEIqzrtNTeJ0kUBb4ttIeDu/7HHdrwXea6PryRMZGKjcZSI5lsrJcFAJZK1KwybmeNAWZXwLxP542EUou1wmpPusGYb/PDtwHrfSy8c1bL7Lfhqj3o1dsB7NMrpzU0RVG0JnSB4RgN5BmPB/3vTz/eQvg/IDpYp3ShdK609BkTxSnV9NzDHrYAoua0898APMGW7mQBC53j1o5Rx81axvQmvVpoepy2el1WsZ/g4czJCqN1WGlkfPW2i2VZlDJxxjJORbo0c7hx5EJmj+PZQZ+lUh2wr7C0eTtz5mc9lO19t02EZvje0So95euIPMHX1+3hm9CkmbbtH97JBIudTNxIceM5U6Hltjzon+7vIF2Qe6bL1fVQuddZzKUkvj043dEcXHSBZi/i9BdK1/2NWgHYdiOJ1ZDraGNzAHknfqr5jAtTEw9ia8x0BIw/D2bOWzZE1bUTz0Gen3RlsyEU+6tEcPdwQ6G3tOpDll9c4mbQnnTN1xq1bOJtf4Ah7cRa5S+IdWrn7x07YbalMi96gD0czZxdBhBbf06xmZ9jWQ+nqxR6BMsDotA7xlhnZ78sVU+h3ZtrIYVolJTwONvvzlsHNr+R0UUc4yl2s46urBV7okL1Wwi3kZmcega2yaQyWVG6JpA27Ctl0ohmKYqNPCiXha7dtPk4y1F7HVA3AJa7o/7W6clGKzBmgnaSohmEorGlwicwm3T7Jys7RtrtfYrl6okpM+3fP1Y2xXi032q1Vvb3LwPsPbLHX+TbzXBQ7c4XX0hANJ6Hm29fde9OXJBzdsr2YWWHZgA7nWoqKdC+Gs2cvwow5oj2P5g9zwUp5mDj5UixBvJmcHsH12jUP3dx95mcq7bb1URd5aWisYxIxOaqSIggwCkHYbdKZXVddAebZy0bQMe7ivZI7TYe3p7uH7iY6Ue1zcsaba2T/oDwY1EgitH3P9/YxvXJtFCBPzMhsG1KE65ioZgr3RC+CJEh1cQcKHlFWTO82zo/2jmGdb3GeqEDR4MMO2kFdI5H7GUPfty8k3nFWqEzvno//yyJ4PVqYqxdJtYnymQNTdu9uvwxwVKW2cVkNRwXCZ8xcioLWoLVkOv8sL8JuSiu0SjtKzchKES+e+9yPtIAMOtKZHkBnoX1vZQvlcrG46XkZ0K6OVBivcNCN8C2nwIBikq8lElvF8VlIi4ySXB6krGrgokqT1bLhR4exwr/EEYMw9CJ9WJHwsJy6BHgCVAmEOpmQSD8ckhnhvZj0u2m86tQ//IRlSlI06Fd/lrePDyJhl8OiVhMh8CfUhxleCgkrB42EAmu0ekkHA8rDt46b0UZoHm00ig2s8wjQVZbXWsvisl0SgLHuZx6vd4EquCOAXA3H1RZAxvnH+/I1ZVMBql3Q9DSmCYFBpfpaBXjJnCLQ2UeTKeRjwfFe9ED1gOvNo5CgM34E4znMV7Pu405PyxTIhbgHv5UgHE1F9SbSwBJZFnGYjX5SegVKpr4D4Rv5jWV1Xa7FrWq3ekqRDyG6LKA/xGPrb+GXkHh1ccVG01F5iyPVw0TB+30Qgn8tWybdnqcTo/VSsXGrobUjUtAOqnXKyyWQo3X5Zwm/4aQTgoxyZu20EBaO+ODIC3SKNbkIVYaFF3EUENk4NXWhtHzZDewUIK0XE64AgEXfAKuCuSjHJtWOUOZ3ovCWqqSpqkFXZRBiWOZSItGNpRpE9FH6TnXokBEOMj6DUjpyYrN9o6QVRAaRVnzZtNToskqVffu9PDw8PRwe2t7e6ZL5GHMrZ5l075KiKEmrd4JlYVFiQuZCIWceTL3z2siKGqWu4IMyjPG5TbhBXm0ddolQjlUKQsy6YYnn9JrkzkrjkMpk6t7GYFfwzD0AvaIedrpmFc28E7SK5sQ7EKMdep80BjWQpyB2ROwmIHqNsR84fWnHuDJYhZp9hQPuqzPcLWo9DKiCM2cJMFTOQIYpIw9zNEyOz+OYE4hpmEno8dYBirbPf5l4PQeYpbgKxvNrimlu5hmostYyfKne0F3DEIk1RZ318q7S42ltcWOwAv5yNeUnEu8g8BLxVx+5WDnb8D11bzbxMZBXpsJlK628SiMkAayWUwilP18jZt589OVse6v/X1112akabh1Ojq09Lq4buS+nuLxv+7hXi2n8XVnZkaQyxmGM6DGPaezYGh35uyVDai2WmHoNYEIGZp7Rm9N2cJ5l9lrcBgMDofD4GYCfib4bwe2s4nF4rrfzMYlqIugnSXdRD36DholH2IAiO8J3dvNEZSPKDgAIrFHPacFsjvhfejXwq03cNxva6l9EhmZ4EQk1+xJkNkp5JygSiCSg40AyDXfXGt2oLbIYoNBkNsQgOAf9WZn8nLQz1iYSnKtXI7Da6vXuMsD/0fbh7IS2XSyBqQGFQstgnwu/dq3fQuGw8Jxv9+6qLkFiqZpFt6bPP/izMqDmkzP+GISSAhCAiTIIQQXFFQ8KKK2ui1RRpjl0CVVsTq2ouAiKKWe1Z1tVbKiICSbRHNB7sQMSTahjBCBSZmYuCaDAlUT0C1yCCj3odVZd/t86NLdQVD65I98mXz5fu/ze3/P9cb70wKIa3AT4u8AGTtvPQ8qNx63pBw0Henh+X+MNV6Q4fE4D6LPDMty90WeSvr4d9wSwTo6lF4+NHnbUzaWMAW/x+GWC6DGekfNfUj3w+1KOBgfvyc1FEOYbTTwwSzdum354tWxn3JhU/mVlIoC5qYwnFsspNOtWNRccVHo4ASxhFEsYEniw9yCZr3Vy20xOsQDu3ThSqQgIvkuPZW8QQ5BvmHOTAehd+w0X123bNnGlezi9PcQ5ooiuH+0CkXE4Jcs21Z8BZCFsp3xBUhTFDhH3AjM0kT+puWLsWgsfkPsRm/ih/2K5IeGyrC2DMEGh69sQfvMEZhI3luyNhIX7u7jHojBY718P3Te9SF5YFdE/ubXZQjjgiUBM4rDN4o0NaX8/GQpjF8a6fbmjMGfgPKcU5yHe2HXbNlUwCqJxZNm7OOjqdQ32xCxICSKSEL5+E+uY7P3lvW4OexPBIowP2jqmMaT4LFibSnvyuqZmSZSj+X7IVCuAaEpK7yDcRiPgCh4hHsAxivwg8dr/3AMLpQ8D71oqgASsMvXcrcFb56R6IxT0sxoJIsHzTuULRbH7zmSkBqMx2Mxfn6bA31cP+wQyzWEHLcn/vCeA95T3aQrERu8filmJmm4hlNz9cdoyNeBoYlmoVAiqZRREuP3H4kLW+FNRmM8QhYQUD7vG/f8sQuFAgGbIYlPxS14u1QXd2hafGfKxOG0TJEuF9lkl6g1FY2Wro5Gs9lcCcNajOwPiXuPLDywJpiMReADkTO8GYHRq9d9Env4k0KOLA73v+rr6TJDOxtNo2Yq9TpRfgYUkJAlQotUJOrpbRlxWs3gukQCBFQ2Zu/dcyRuRygZ7+YVsIg4333VO9h3IWHJZByOvHqdID0VPXuO9AyhZuVn5ipFOo0uN59GdMfEyTv1Go1GpxcNj7ZY5eU8a5djotdubxlpb01PjD+4PS41JRTnhsaEBBKCfH/Jvos7iUQgRLn96o+8xGC/WTsdX+yJHIVIr9chWMOZ1AzsX+QOAFar1bq2Rxb5eattXCRSiMAU0mZHa2WlRBKTnrj/UELcjmAyHu3ht4g039f/l2yi0JFyYQJuVpc9A6hHT2tr1ZOm0edk4mLNEzodAJvu360vrWlvRhClCoBWKAC6nV+OmFASU0GJ37s7IW5XCh6Pw0RPim+K/UDcRmZ68Ox53Z8YjTuapq2trTVp626kHc//xGoH99V19+q5DOMAoCqVSmnOaA6AI+gOPocFBthCBF0mFiceTIj7bMck+35RgUHuES4fuXot4QlTvd4XBETaiTSDyVD34Msv8rCLf3v9MeA+uFt2iW2cEElVKlW3zdLR2mFxNCsQG6hhTAK/MbkQMUmFOH7/7oTPUrxDIfbA/QDyyqKwgPf//0A7bjDUnc6jBRA9UsvvtKnV929x6ezSAb1C1Wd/+fzlYDJFJqto7GyWKqUiRylvEpk1+YJ3+CCHdzOEPuXw7s+3p+4Kxc9bGunmQQwE+l1nnRy+0GrT8qJRrjA1XelSG55c57IZ9HadXqrqHnz9+seR5CSxWEyRddiB9ibL+XI+6ydD3GZx2DUdnS29vRCDXY2SGHHSwc/jdu1ICSVP0k8KmvFMk0RNu3GU5o6cCCwvsxnuVdOZBQxrDwC3DL56daZv7HmSWCamJFM67Cql1F6PIPLA3lLOMLb3NikQDUqlw/ZOKwMUECOmUHYiB+hh3qF4dDhk41Xu0xtrFO74SRzRBTl53XjV9pRLZ3JYJQ6IZXvH6x+6+1TNTrFYJqMk91O6clSq4WclBSwWh/NWZeV8y7j+TbyBKUSKZsvVKmQ9kpgYRH2Jfzq0PTQKRv55XtOQIzJOnMiAykXAfLyVb+TSGcwClrVHo2vqevljXx842euE/ClO6k8Wj6n6VHYjB8GdhC5nGR1NSKgplEoQohKBbnLUcFh8OYtThVi5pIICCp9PPUUlTC8rVGwg0iZmBacLeUwOAJd0qXU6u7Wr0w5u6EWjI1aQblLS0GBOn+pxA5vz1gpYNQMgfaUyp7fT4nS2j9mHkagfqKmytnS3jFicrVY5gxXz5wDPgKy+rPDp9Xs+pBlPqFF/lch5HA6TWXDeBkzbzNnZTrtI32OzOM2wcjFlKBmYb7OVMX5CLnHoJ0Ouq7FDDNTGNLY3gwAVA/zzz9og7Ypymu0j5n3BUUTcMemp6Hd1MD7EaFqmogUhkQkPrBnQaES3hI3ZjZ268VvCcgaTB5smezE0phpu+/dVxluy2RadXqkC9SUPdj+XgQCTKB0twLiovfjqUyQt1ao1o637FmfQTilFx2iod+bO/GMKXY/zCjgDgjVOaDRNVl5lY4XzsaVcyGKw2SBWyYsXnYom003kJgSZXT+uESlVI4OvBltynLJJASZnI8g91ovV9wy1JkAet6bnZWWq9LrcrGiC63R95Y8i6brNZmRweCyO8ZFa3VNP55srW/9jZPEEhRcvA3TVvn2WtjbDw2oBh1fA4nEKn2l0IunY4KsfWoYVnZWg4aT+/qTsZpVK9P25izX/NJhMteoJZzdS/tQ6UW4WLSRi+v8veae1hgdPHK1sJpPHND6qre0xnhXIhWYrU1BML7rApV8uZH9X9cxk0j6sQRbHQpYHSmjuONM9Cilt1CmMQVzuH3o5rJSOG+lf3XlgAmRHzZmT4Du4pVdlUqdVS9eggLy0bxuqy4oFAiaTUX3TYDDduXYOrgH23IVr3K5L35y7yL58D4rJzVIA5jBY7AbYQl17Y2fvMMSxfnSsA9JmUv9Qf7dS2dZQVMi9rQXkZ1XrqV/+C660dVCEMjzfkUZOPzQyGAJBKQCXPTUYam3Xii4VlnEvFZ39+4V2e9nZoqJvuE+giN2mM+A+Nqf0e9icnuuNzztsTXpdz4TNYo4BtoeGRoaVTbeLii/X3zcZtA3fhbnR/lan1Z48modHL5hKn54+KBTKN8IVSSNn+AVMAYMJXtIb6rSGRzX/KCq6VHTh62vXB9r0tuoLX31d/6Duxrd3Afi/rZtrTBvZFcdD8BNMIDzCwxBaXgmP8AiQDc9NVwlI+dANInyIIlxEkkaKVGWlbFfbVLuSPc3YM+OZrpk4mMSEFm0aud4ib9bGNg52A2FjHBFIyqPaEChqSyuidqtVu4mUquq5MzZgm7Ai5sxIDM/fnHP+59w7dy56SLlj+e7d3/3d+ejChQf/+fyZ/ZcG3dVeaFYvvv7nN7cfL3fTNDU1fGduaKEyJ+e91oEP3ztzVL7atqPiZAJ4sIaJZGpa/M5zXVe6UDFBeN2zQH5u0SqVShXLKu1zwy//0qNmfS7XuMetR1y9zvnszt3fPrz5xaNH9/+85KV1egJJf6Hz62+f3H78zEnQhGNx4Nknjd9PiZZ80PrRmfXrTTHidy+1t7dfgolsQaz04rUrvwAyhNpomHEND8zZLRoVGGsy+UZMasbqnXONj/sMHFevd85CPp6rb93/4tbIQ4MeJzES0LaFFxee/AvADEFo3a+W8QZJTPqZ9z84GbTsk1LQgeoWSvSz02d/cOzW1S7OADw55xoenndbrSoO/aDHyjD2V67xUc8kbfSD7w3cuftf9pMbt7qGnBim1WiUWozRL7z49ZPHTxEYx5RTX1qKxbtE2efPB/ctee7xliMtLYffonFaV9Xbe+Nal64LpNPV5fBNu1yuebvFCqZRqqyMfmR2enrUvOJ3mKYdE5COZU2P0Wjo0WohJSbnVyzFLHR+9benS/MOnMBJqsfAlAhFO2JSU4MX9sqzJQW5BQWlRfsKm+saUadGYwQyo3t5dHp6/NWUU4vQFvqBb3B6dNC8OKT3c2nDDKdALYVRCAsJ+eNDk5K02f60tNS6aMCRUaSt/uRGj1+iGHmcXJ5yIPugQFJZhTq1jgd3GSfnB0fBZle8k5PeEd/s4OCg2TxmByaHpWlyCnQw7LUiAQL35pf/WPq3nVUz+pdLra3PKRwnCPB6ofq8eJPn8ihRsqy+F9oC4l6HQ2fsnlz0mIEGbprNCOrx3Fu0+71FxtjNQF7u1gAVTOl+OdD60s5aoQSG5+wYYAFNfnr5p+9sushVLquA0UGnQ2MEd2HEh3zzsx6Px4wMqBNjK0P0enMsggxcUxYrTzYNzY6wrJWCr04vdhPIcNJ64Se3z2+6rJckKAZndTqeC6E26rFu78zEPb9NjPkmDXgQmBgZHB93me1Q7hBrFeuEvmrpmZqenn7l1XBcqufBH371mx+fTNlkMSFa0kTSemjOiHsN9U69gaAck1MzY2NjizO+qUmHlg42wuED8vis3QJoq8qK62y2Gysg/cGZmxRO0Izj+V+/+RyG7J9Js8tf8yYzLl+2s4bRYJAVvVGn47h6vVFPEwan2253Ox03MYIONYtzzDw6Ou6ZumGxWiwWmGFNjiHuvFuF/hLe7V0euPP7p4/hsWyjJ5r9CUeFsT+szzr7WR9NaWoVtRhFAYVri0ajkYZGoMVwOtwIQmWfMCPtj03ZHVfuu72+V6jk5kdYCoEJXO3wuQbutP78/XdSw1dnEPXcj0716bW1R5qy9pUmVta01ZUdrlVpAAd85PsGUJpLIuud8CDND3omJibmPajkPPMjSi0JhuMkyZz6eODDjyQnBXEhA3FCvDQRUQmtoi4rL1YMj/0pRzOEYnFpXmFxU4uiVqtSabm7J8LcRUZq7TOgPL/0Qfue2TEvhUHbhhMaCHPscuvlgoKCWOHBtPXz6gRJdfupfp22tqytVCrMiUvm7iuqPDkhLQe9+s7dV9HcdEQBQ4VSrSVxnKf53eXJaifIbwLE75nltL/ihh9EDnNgW+f/Pv5eZ8fps1nv7pElrV9B67hKqBTNRbHCAzEhwhOVJ2XKAS/I3Vtd0VzXolBCk1BrqVU+X6mYRjk0soLYE2OLvhF3D7pBjow+Lix8+i3IjrHZFo6tW5GEpzSVStFWKsnPTH/tq/vkaHl+vECcW7QvqxlSj7EsZB/wHBYQMFVQ3Ryye70jk0MGpdWCeAiMwwWzcLGwsKIEklbL2CrXXuRE5SQeL9kr/u4tUVHp0XEHsmUCSWxlfVtDWYtFCV0YtWLUnKAIYEhUW9VqKy8qFGrEhrMTbUaTCeH3aurXrzrvzxa8buV9A/qu/Qgv3imuP9R3ze8wzmFQAZIYxocXHGVwhve7USoXiXaVJyUcyMgOWmcXfee6WehwliIoLX67/ypN8FDeORRahuFgDH8wXKYtpyWZ4Yuzb7TvShZb0tjfa+Sd9YuIZzMMGgUZNCYx/E2QpKVdkrxjGywmQ1J/qL//2mqUyVUwg2jwdYRkuE848DlpQuT7Gct3iytPVPVf90eZXMcFEjfqIzCBUozzYOZioiQjbldk3GhZLkS5jw5ylWsUJIlCjIAAJrgoI/dh4mOr6riUJ5GlRIAWpYmr6/p79UHMABrDuabC8J0FxZovNEvjW1ZbZ3ueVJbwptpKypZkdfTqcGy9cR0ZlRFMqBkuvRyR8VcUpilLrGxW8OjsNxNZnCCxof86DuUKhqEjxHAOF4BzVaVVn9gry5FUHyctts5LicLorWN3pUkLT/caqXBDjcNPZgLthK9sTFNbEnswOSozW1J/hGWgU2dsOdHpqbFZVVdxCj3B+YFrV6u3wPVmvkdD8NWaQ3nS3ag5RSXI9hTXWm2XxFsNdnT83oZePWDDjb+HABqjAmKjlOBufOZqGUryjrDF4i2+9coUFJ24RWs3t7UbQDJQqsqqJQfSgyoxb0/+1jqJXLyv8ToWwlHDqfafYaZhWypyZcFbv9PjcuRbSnFUirSwwxjgqjmOWq1Bh0a9eoEuA6ZhVQ0FwrT0yJqVaLe0ooqmVv3k/zSChRh/C/A9pUmRJc1J2hExt6QfDzjLexhiyuDPVKa6IoE80mFBlCPN6sP9IeZc3diU/AnGWppzMyIeB0Vp0rY+cs3dDbwFloY7uEuVSVEjzS+PlBu1G/wlA9jQIK/hVk1lKqsUJ0S+l14OXCygqfDw8uR1xrJNuRkxkU82osWFvXhAymGiCsWqVCYLqLk8cm6ysPptfE3NGyQ3hKuokaRswz9tiFKLGvGArjb2dRWuQtyWSkHCjm2wNGkD1zdCuUp/goPdBVkVCWO2gxsjrjFSr4uzMgxsKiuI35ZZbHl85WHM35XDqzeYirhNBRnl28HdIZfU9awW8KZczt9Duanp28JNElTosUCC16OVYYEGh02HtsvfqPy9h7E1RatD6ii0fg+XZmyPv6CsNnxNWaHVFOIvq6gWJm0PF21Fw/xDoSakZ4UJmrVWbHmr1v8Bkou5Lk/YFYgAAAAASUVORK5CYII=\",\"[小七_求必读票]\":\"data:image/png;base64,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\",\"[小七_裂开]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcenp6fn5+f///////+fo5////////////////////////////////////////////////////////8LDwv////39/v///////////97e3f7+/v////j4+BMUEO7u7v7+/////ywtKdPT0vPz8////////////////////7m6uP///5mamd3d3f///////01OS6mqqMnKyTAyLTs8OElLRkRHQQ4PC6GioCgqJbGxsdLS0CAhHjs8Obi4uEtNRCMlIYODgf39/VdZVP///xobF46PjVdYVf///ygrJHd4dz5BO0BAP2BiXmhrZomLh5SVk8zNzHJ0bzI0MLGyrn+BfEFDO0VGRG5ubDQ1MqOjo6OmoYyOh4CBfZyemGVlY1FUTVxfW1BRUGJkYXR2c4iIhlpbWGdpY15gVr6/vMjJx3N1b/78/xAQCQ0NCA0PCA8OCBQVDw8PCQsMBhAPChITDA0MBw4QCAoKBRMTDhcZERcXERARCxYWDx0eFwkJBBwcFRgYEhkZEwcIAhESCxUVER0eFBMUDCMkGAUFARkZERobFBERDSIiF///KR8fFh8hFxwdEyIkHP//LgICAR8gGyUnHf/ZGv//NRgXGBISExYWExQUGP//O//pJQ8RGP//QBobGf/uJf/TGf//Mi0vKA4OFP/eIf/gGv/2IhweIf//R/O2Dv/oHQICDzMrEv/7JCEjIiUmIjk6MBkbIv/kIQoKEP/JGP/OGzM1Kv/vHv/+IsqZBCwtIf/0KUs7DyYgEkJEHqqBBf77L+qwCX9iCf7CGrSIBL2NBPLvKzQ2PP7wL//0Gj4zEJp0B0xLHL+9I/zzP6ujG+fiIjg5HP/fMf/6T///WMvKKfm8EWpWDa6tI9SlBeDUHP/QKOGmBFxKDh8ZEi4pFVlWHv7lEpOVJP/+bIZ4EWNgHG9sG3p6JeW8D/TkHZ2cKvTYDMa9F6mQEamlNsCWBpeFFYOFI9bIFU5NVtjYKvXyGt7dPo2RLGRkTPLFCZOSTsPARfXfMsFSRrUAAABtdFJOUwABBQuAj2eFg0NVcH1YLhYeewJrn0+IG2E8lREyifmPbibtmIl4NwddSqZHro8Yddmq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\",\"[小七_害羞]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcf7///7///////7///7+///////////////////+/v////7//21rZ93d3P////7///7///7///7///3+//////////7///z///3//31+d+3q6oqMglJRTiMiHEhHQ5qZl/7//z8+Og8OCUxLRv///9PS0Ofm5Ts8MxcWEfz//0dHQf7///X19aampGFgXP7///98i/////7s78XFw7y8uLCwrLGxsDMuJyoqJTEwKzU0LfnY3fb//v7+/v3///P//V1dV////3RzcP+drouLiZiWkERDPPKDkHx7ectNXOdSY2pmYf+Ln/6+xeq4vlNTTf7N1f6NlEFANdaAitpcbNlfZphcYOypsdNndP+kr6KineuZpPNiee9vgb1lbw4NBhEQCBAQBw8PBxAPCRERCRAQChsbFBQTDBoZDxcWDhgXERMSDBgXDxUVDQ4NCRoaEhkZERoaERwbERERCwkJAgwLBPa4MhUVDx4dEh8fFSEZEicdFgYFATclHw0LDP/dRC4gGf/cPv/mRf/8U0EqJRsVDhAOEf/uRyUlGP/hR//zShEPDP/qSolPTxYRD0guKv/5TndHRwkICf//WWQ8Ov/gQPK1L//qQl05N///YPzDOP//U//7WdSfJ4FKSjEwHZBTVf9tflc1Mf/uT3FCQumuKv3LOP/4VFExLignIv9ja//YQ+yxMZ5aXf/lSvm+M//0UZptH6deY6OdOP/VO+KpK/Baav13eP/lP0AuEv93g/9oei4qFx4eHf+Fmfi5N/9vdGlAPvBxcv5ic/lgbW9RF2dJFplVV1Q9FNlpbUA8HevNNHFeJrOAHrFhZ0k1EsFkaO7rU4huK5SOMtxTY/CuO11VJsSMIP7cOOVsb8lobrVlbH55L+SiOpeBMbaUK4FdFTUkEN2hJYmCLnxpKMuWI9/SP+hbacyvMvPWOqWJKP5XadCON+zAMeC7NKeUKZpgRc5hZObjUcS/RF9CILR0Rl1AD8WeK0lFLLiyPXRtOdPSVvHnRGZaO918WCgNpHkAAABgdFJOUwA/fgOBewaDCS2GeF7IkBAWOChFdAxtE2daxo3AzO7RqGLY/Ogxlo3n91fqS4ikxiP+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\",\"[小七_晕了]\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURUxpcf///////////////////////////////0JCQf///0lJRf7+/v///////////////1laWfT09P///////0ZHQMHBwP///zo8Nf///+zs7Nra2f///+Li4f///////////zs7NMrKyf///////////zQ2MNPT0jAxLP///35+fHl5dh0dGv///////56env///////2BgXj9BOisrKf///0BBPVJSUcjIxtDQzyorJmVlYyMjIP///0xMSZCQj1ZXU////w8PDampqIeHhrCvrxMTEU5NTP///y8wKm5ubDY4Mh8gG7a2tRYXFEpLSFVVUjY2NHFychIRDBARChESCxYWEBISDhISDBEQChAQDBUWDxcXEBERChAPCRUUDx4eFwYGAh4eFBESDR0dFxoZFA4OCRobFBMVDxMUDRgWESAgFh8gGRgYEh4gFxscFhgYERMTDxUTDhsbFQwMByQlHAIDACEhFxUPAhscEhkaEhkZFAkJBCIiHSIjGSYnIBMSDSorIyAYAhUTBxENAxsaDi8fBBsVA///UzUlBf/+NP//Xf//PhkXCiATAP/2JyYYAv//Rf/mJv/+ThoOAC4vI0w4DQ8HAP/oOTcxDIdmF/7EIf/kMT8tCCggB//dIHRaFkcyCiIeBpWMK/7ILeq3LiEeEGhhIP/ZLv//Zf/1M//vOsadLv/wL4t1JmtTF5Z5KLSPM//sJouCLfvQRiwmB0I7DqegO//2RPy/Hf/3O//QKubAO/b0XrCJI2BGEFY/DP/fT920M09GEH9lH/e9ImRPGKeCHtypJv/9Jp13HP/OHeC9T15WF5t9Jf7NNr+4Pv/LHKmILv/oVf/WHOivIyUjE///btLNTfPZUt7VQuThUvC3IP/SHs+jKNa4QZRyGPLRPLqlQP/ePTArCrmXL/7tR8a/Se/sYHNgI/7lR8OWHvDJUPXEO9GrNnpyIp+NNMatOe3iN9/IRdHGOOvnW+LPT1hEEqSVK/LIJbWjLb6RKf7pYuDWXP/vWufiQwBECdUAAABTdFJOUwCEKS6AGn6BCtFu0AdZGRdQxod9aOidhfNgiZITj00EVOGcSQF595n4DbW28j4ernEj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\"}\n\nfunction qmSourceOf(ctx) {\n  try { if (ctx && ctx.source) return ctx.source } catch (e) {}\n  try { if (typeof source != 'undefined') return source } catch (e2) {}\n  return null\n}\n\nfunction qmCallable(obj, name) {\n  try { return !!obj && typeof obj[name] == 'function' } catch (e) { return false }\n}\n\nfunction qmJavaOf(ctx) {\n  var candidate = null\n  try { candidate = ctx && ctx.java ? ctx.java : null } catch (e) {}\n  if (candidate && (qmCallable(candidate, 'ajax') || qmCallable(candidate, 'base64Encode') || qmCallable(candidate, 'showBrowser'))) return candidate\n  try { candidate = typeof java != 'undefined' ? java : null } catch (e2) {}\n  if (candidate && (qmCallable(candidate, 'ajax') || qmCallable(candidate, 'base64Encode') || qmCallable(candidate, 'showBrowser'))) return candidate\n  return null\n}\n\nfunction qmBase64Encode(ctx, value) {\n  var runtimeJava = qmJavaOf(ctx)\n  if (qmCallable(runtimeJava, 'base64Encode')) {\n    try { return String(runtimeJava.base64Encode(String(value))) } catch (e) {}\n  }\n  try {\n    var bytes = new Packages.java.lang.String(String(value)).getBytes('UTF-8')\n    return String(Packages.android.util.Base64.encodeToString(bytes, 2))\n  } catch (e2) { return '' }\n}\n\nfunction qmDataUrl(ctx, value, type, extra) {\n  var encoded = qmBase64Encode(ctx, value)\n  if (!encoded) return ''\n  var option = {type:String(type || 'text')}\n  Object.keys(extra || {}).forEach(function (key) { option[key] = String(extra[key]) })\n  return 'data:;base64,' + encoded + ',' + JSON.stringify(option)\n}\n\nfunction qmHexDecodeAscii(value) {\n  value = String(value || '').replace(/\\s+/g, '')\n  if (!value || value.length % 2) return ''\n  var out = ''\n  for (var i = 0; i < value.length; i += 2) {\n    var code = parseInt(value.slice(i, i + 2), 16)\n    if (!isFinite(code)) return ''\n    out += String.fromCharCode(code)\n  }\n  return out\n}\n\nfunction qmCacheOf(ctx) {\n  try { if (ctx && ctx.cache) return ctx.cache } catch (e) {}\n  try { if (typeof cache != 'undefined') return cache } catch (e2) {}\n  return null\n}\n\nfunction qmBookOf(ctx) {\n  try { if (ctx && ctx.book) return ctx.book } catch (e) {}\n  try { if (typeof book != 'undefined') return book } catch (e2) {}\n  return null\n}\n\nfunction qmChapterOf(ctx) {\n  try { if (ctx && ctx.chapter) return ctx.chapter } catch (e) {}\n  try { if (typeof chapter != 'undefined') return chapter } catch (e2) {}\n  return null\n}\n\nfunction qmBookVariable(ctx, key) {\n  var runtimeBook = qmBookOf(ctx)\n  try { return runtimeBook && runtimeBook.getVariable ? String(runtimeBook.getVariable(key) || '') : '' } catch (e) { return '' }\n}\n\nfunction qmCommentsAllowed(ctx, baseUrl) {\n  var runtimeBook = qmBookOf(ctx)\n  var type = 0\n  try { type = Number(runtimeBook && runtimeBook.type || 0) } catch (e) {}\n  if ((type & 4) || (type & 32) || (type & 64)) return false\n  var contentMode = qmBookVariable(ctx, 'qm_content_mode')\n  if (!contentMode) {\n    var modeMatch = String(baseUrl || '').match(/[\"&?]qm_content_mode(?:\"\\s*:|=)\"?([^\",&#}]+)/)\n    if (modeMatch) contentMode = String(modeMatch[1] || '')\n  }\n  if (contentMode && contentMode != 'novel') return false\n  var readerType = qmBookVariable(ctx, 'qm_reader_type')\n  if (!readerType) {\n    var match = String(baseUrl || '').match(/[\"&?]qm_reader_type(?:\"\\s*:|=)\"?([^\",&#}]+)/)\n    if (match) readerType = String(match[1] || '')\n  }\n  return !readerType || readerType == '0'\n}\n\nfunction qmMd5(value) {\n  return String(Packages.cn.hutool.crypto.digest.DigestUtil.md5Hex(String(value)))\n}\n\nfunction qmSign(value) {\n  return qmMd5(String(value) + QM_SECRET)\n}\n\nfunction qmUrlSign(data) {\n  var keys = Object.keys(data || {}).sort()\n  var text = ''\n  keys.forEach(function (key) { text += key + '=' + String(data[key]) })\n  return qmSign(text)\n}\n\nfunction qmMapChars(value, from, to) {\n  var out = ''\n  value = String(value)\n  for (var i = 0; i < value.length; i++) {\n    var index = from.indexOf(value.charAt(i))\n    out += index >= 0 ? to.charAt(index) : value.charAt(i)\n  }\n  return out\n}\n\nfunction qmParamEncode(value) {\n  var bytes = new Packages.java.lang.String(String(value)).getBytes('UTF-8')\n  var b64 = String(Packages.android.util.Base64.encodeToString(bytes, 2)).replace(/[=\\r\\n]/g, '')\n  return qmMapChars(b64, QM_B64, QM_PARAM_MAP)\n}\n\nfunction qmContentLayerDecode(value) {\n  var b64 = qmMapChars(String(value), QM_CONTENT_MAP, QM_B64)\n  while (b64.length % 4) b64 += '='\n  try {\n    var bytes = Packages.android.util.Base64.decode(b64, 0)\n    return String(new Packages.java.lang.String(bytes, 'UTF-8'))\n  } catch (e) {\n    return ''\n  }\n}\n\nfunction qmRandomHex(length) {\n  var value = String(Packages.java.util.UUID.randomUUID().toString()).replace(/-/g, '')\n  while (value.length < length) value += String(Packages.java.util.UUID.randomUUID().toString()).replace(/-/g, '')\n  return value.slice(0, length)\n}\n\nfunction qmPad(value, length) {\n  value = String(value)\n  while (value.length < length) value = '0' + value\n  return value\n}\n\nfunction qmDateStamp() {\n  var d = new Date()\n  return d.getFullYear() + qmPad(d.getMonth() + 1, 2) + qmPad(d.getDate(), 2) + qmPad(d.getHours(), 2) + qmPad(d.getMinutes(), 2) + qmPad(d.getSeconds(), 2)\n}\n\nfunction qmDevice() {\n  var runtimeSource = qmSourceOf(this)\n  var data\n  try { data = JSON.parse(String(runtimeSource && runtimeSource.get('qm_device') || '{}')) } catch (e) { data = {} }\n  if (!data.uuid) data.uuid = String(Packages.java.util.UUID.randomUUID().toString())\n  if (!data.device_id) data.device_id = qmDateStamp() + qmRandomHex(48)\n  if (!data.source_uid) data.source_uid = qmRandomHex(16)\n  if (!data.mac) data.mac = '02:' + qmRandomHex(10).match(/../g).join(':')\n  data.gender = '0'\n  data.static_score = '0.4'\n  data.sys_ver = '12'\n  data.phone_level = 'M'\n  data.app_version = QM_APP_VERSION\n  data.brand = 'Redmi'\n  data.make = 'Redmi'\n  data.model = '23117RK66C'\n  if (runtimeSource) runtimeSource.put('qm_device', JSON.stringify(data))\n  return data\n}\n\nfunction qmBuildParams() {\n  var d = qmDevice.call(this)\n  var fields = [\n    ['gender', d.gender], ['static_score', d.static_score], ['uuid', d.uuid],\n    ['device-id', d.device_id], ['mac', d.mac], ['sourceuid', d.source_uid],\n    ['sys-ver', d.sys_ver], ['phone-level', d.phone_level], ['app_ver', d.app_version],\n    ['imei', ''], ['model', d.model], ['wlb-imei', ''], ['wlb-uid', d.source_uid],\n    ['client-id', d.source_uid], ['brand', d.brand], ['make', d.make], ['net_env', '1']\n  ]\n  var parts = fields.map(function (item) { return JSON.stringify(item[0]) + ':' + JSON.stringify(String(item[1])) })\n  return qmParamEncode('{' + parts.join(',') + '}')\n}\n\nfunction qmHeaderSign(token, qmParams) {\n  var values = {\n    'AUTHORIZATION': token || '', 'app-version': QM_APP_VERSION,\n    'application-id': QM_APP_ID, 'channel': QM_CHANNEL, 'is-white': '0',\n    'net-env': '1', 'platform': 'android', 'qm-params': qmParams, 'reg': ''\n  }\n  var order = ['AUTHORIZATION','app-version','application-id','channel','is-white','net-env','platform','qm-params','reg']\n  var text = ''\n  order.forEach(function (key) { text += key + '=' + values[key] })\n  return qmSign(text)\n}\n\nfunction qmDay() {\n  var d = new Date()\n  return d.getFullYear() + qmPad(d.getMonth() + 1, 2) + qmPad(d.getDate(), 2)\n}\n\nfunction qmHeaders(token) {\n  var runtimeSource = qmSourceOf(this)\n  var qmParams = qmBuildParams.call(this)\n  var now = Math.floor(Date.now() / 1000)\n  var uid = String(runtimeSource && runtimeSource.get('qm_uid') || '')\n  return {\n    'authorization': token || '', 'app-version': QM_APP_VERSION,\n    'application-id': QM_APP_ID, 'channel': QM_CHANNEL, 'is-white': '0',\n    'net-env': '1', 'platform': 'android', 'qm-params': qmParams, 'reg': '',\n    'sign': qmHeaderSign(token || '', qmParams), 'qm-uaf': qmDay() + '-' + uid,\n    'qm-it': String(now), 'qm-ii': String(now % 10000000000), 'no-permiss': '3',\n    'user-agent': 'webviewversion/0',\n    'qm-request-id': qmSign(String(Date.now()) + qmRandomHex(8))\n  }\n}\n\nfunction qmParse(text) {\n  text = String(text == null ? '' : text).replace(/^\\uFEFF/, '').trim()\n  if (!text) throw new Error('七猫接口返回空响应')\n  var value\n  try {\n    value = JSON.parse(text)\n  } catch (e) {\n    throw new Error('七猫接口返回非 JSON，请检查网络或压缩响应')\n  }\n  if (value && value.v) {\n    var plain = qmContentLayerDecode(value.v)\n    if (plain) {\n      try { value = JSON.parse(plain) }\n      catch (e2) { throw new Error('七猫加密响应解码后不是 JSON') }\n    }\n  }\n  return value\n}\n\nfunction qmForm(data) {\n  return Object.keys(data).sort().map(function (key) {\n    return encodeURIComponent(key) + '=' + encodeURIComponent(String(data[key]))\n  }).join('&')\n}\n\nfunction qmParseJwt(token) {\n  try {\n    var part = String(token).split('.')[1].replace(/-/g, '+').replace(/_/g, '/')\n    while (part.length % 4) part += '='\n    var bytes = Packages.android.util.Base64.decode(part, 0)\n    return JSON.parse(String(new Packages.java.lang.String(bytes, 'UTF-8')))\n  } catch (e) { return {} }\n}\n\nfunction qmLogin(force) {\n  var runtimeSource = qmSourceOf(this)\n  var runtimeJava = qmJavaOf(this)\n  if (!runtimeSource || !runtimeJava) throw new Error('七猫运行上下文缺少 source/java')\n  var token = String(runtimeSource.get('qm_token') || '')\n  var exp = Number(runtimeSource.get('qm_exp') || 0)\n  if (!force && token && exp > Math.floor(Date.now() / 1000) + 60) return token\n  var form = {cancell_check:'1', gender:'0'}\n  form.sign = qmUrlSign(form)\n  var headers = qmHeaders.call(this, '')\n  headers['content-type'] = 'application/x-www-form-urlencoded'\n  var option = {method:'POST', headers:headers, body:qmForm(form)}\n  var response = qmParse(runtimeJava.ajax('https://xiaoshuo.wtzw.com/api/v1/login/tourist,' + JSON.stringify(option)))\n  token = String(response.data && response.data.token || '')\n  if (!token) throw new Error('七猫游客登录失败')\n  var jwt = qmParseJwt(token)\n  var user = jwt.user || {}\n  runtimeSource.put('qm_token', token)\n  runtimeSource.put('qm_exp', String(jwt.exp || Math.floor(Date.now() / 1000) + 3600))\n  runtimeSource.put('qm_uid', String(user.uid || response.data.id || ''))\n  if (user.deviceId) {\n    var device = qmDevice.call(this)\n    device.device_id = String(user.deviceId)\n    runtimeSource.put('qm_device', JSON.stringify(device))\n  }\n  return token\n}\n\nfunction qmRequest(method, url, params, form) {\n  var runtimeJava = qmJavaOf(this)\n  if (!runtimeJava) throw new Error('七猫运行上下文缺少 java')\n  var token = qmLogin.call(this, false)\n  params = params || {}\n  var fullUrl = url\n  var option = {method:method, headers:qmHeaders.call(this, token)}\n  if (form) {\n    var body = {}\n    Object.keys(form).forEach(function (key) { body[key] = String(form[key]) })\n    body.sign = qmUrlSign(body)\n    option.headers['content-type'] = 'application/x-www-form-urlencoded'\n    option.body = qmForm(body)\n  } else {\n    var query = {}\n    Object.keys(params).forEach(function (key) { query[key] = String(params[key]) })\n    var parts = Object.keys(query).sort().map(function (key) { return encodeURIComponent(key) + '=' + encodeURIComponent(query[key]) })\n    parts.push('sign=' + qmUrlSign(query))\n    fullUrl += '?' + parts.join('&')\n  }\n  return qmParse(runtimeJava.ajax(fullUrl + ',' + JSON.stringify(option)))\n}\n\nfunction qmGet(url, params) { return qmRequest.call(this, 'GET', url, params, null) }\nfunction qmPostForm(url, form) { return qmRequest.call(this, 'POST', url, {}, form) }\n\nfunction qmRequestUrl(method, url, params, form) {\n  var token = qmLogin.call(this, false)\n  params = params || {}\n  var fullUrl = url\n  var option = {method:method, headers:qmHeaders.call(this, token)}\n  if (form) {\n    var body = {}\n    Object.keys(form).forEach(function (key) { body[key] = String(form[key]) })\n    body.sign = qmUrlSign(body)\n    option.headers['content-type'] = 'application/x-www-form-urlencoded'\n    option.body = qmForm(body)\n  } else {\n    var query = {}\n    Object.keys(params).forEach(function (key) { query[key] = String(params[key]) })\n    var parts = Object.keys(query).sort().map(function (key) { return encodeURIComponent(key) + '=' + encodeURIComponent(query[key]) })\n    parts.push('sign=' + qmUrlSign(query))\n    fullUrl += '?' + parts.join('&')\n  }\n  return fullUrl + ',' + JSON.stringify(option)\n}\n\nfunction qmGetUrl(url, params) { return qmRequestUrl.call(this, 'GET', url, params, null) }\nfunction qmPostFormUrl(url, form) { return qmRequestUrl.call(this, 'POST', url, {}, form) }\n\nfunction qmUrlValue(url, key) {\n  var match = String(url || '').match(new RegExp('[?&#]' + key + '=([^&#,]+)'))\n  if (!match) return ''\n  try { return decodeURIComponent(match[1]) } catch (e) { return match[1] }\n}\n\nfunction qmLoginValue(key, fallback) {\n  var runtimeSource = qmSourceOf(this)\n  try {\n    var map = runtimeSource && runtimeSource.getLoginInfoMap ? runtimeSource.getLoginInfoMap() : null\n    var value = map && (map.get ? map.get(key) : map[key])\n    if (value !== null && value !== undefined && String(value).trim() !== '') return String(value)\n  } catch (e) {}\n  try {\n    var saved = runtimeSource && runtimeSource.get(key)\n    if (saved !== null && saved !== undefined && String(saved).trim() !== '') return String(saved)\n  } catch (e2) {}\n  return fallback == null ? '' : String(fallback)\n}\n\nfunction qmToggle(key, fallback) {\n  var value = qmLoginValue.call(this, key, '')\n  if (!value) return !!fallback\n  value = String(value).trim().toLowerCase()\n  return value == '✅' || value == '1' || value == 'true' || value == '开' || value == '开启'\n}\n\nfunction qmCommentConfig() {\n  var height = Number(qmLoginValue.call(this, '◎ 半屏高度', '80'))\n  if (!isFinite(height)) height = 80\n  if (height > 1) height = height / 100\n  if (height <= 0 || height > 1) height = 0.8\n  var color = qmLoginValue.call(this, '◎ 段评颜色', qmLoginValue.call(this, '段评气泡颜色', '#000000'))\n  if (!/^#[0-9a-fA-F]{6}$/.test(color)) color = '#000000'\n  var splitColor = qmLoginValue.call(this, '◎ 段评分色', '#E34B4B')\n  if (!/^#[0-9a-fA-F]{6}$/.test(splitColor)) splitColor = '#E34B4B'\n  if (color.toUpperCase() == '#E34B4B' && splitColor.toUpperCase() == '#E08A24') {\n    color = '#000000'\n    splitColor = '#E34B4B'\n  }\n  var hotColor = qmLoginValue.call(this, '◎ 热评颜色', '#E23B3B')\n  if (!/^#[0-9a-fA-F]{6}$/.test(hotColor)) hotColor = '#E23B3B'\n  var splitCount = parseInt(qmLoginValue.call(this, '◎ 分色数值', '45'))\n  if (!isFinite(splitCount) || splitCount < 1) splitCount = 45\n  var svgSize = qmLoginValue.call(this, '◎ SVG大小', 'text')\n  if (svgSize != 'TEXT' && svgSize != 'text') svgSize = 'text'\n  var template = qmLoginValue.call(this, '◎ 模板', '起点')\n  if (!/^(起点|样式一|样式二|样式三)$/.test(template)) template = '起点'\n  return {paragraph:qmToggle.call(this, '段评开关', false),god:qmToggle.call(this, '神评开关', false),split:qmToggle.call(this, '段评分色', false),\n    chapter:qmToggle.call(this, '本章说', false),book:qmToggle.call(this, '书评开关', false),hot:qmToggle.call(this, '热门评论', false),\n    replies:true,images:qmToggle.call(this, '评论图片', false),height:height,color:color,splitColor:splitColor,hotColor:hotColor,splitCount:splitCount,\n    svgSize:svgSize,template:template,theme:qmLoginValue.call(this, '◎ 评论主题', '自动')}\n}\n\nfunction qmDecryptChapterBytes(value) {\n  var raw = Packages.android.util.Base64.decode(String(value), 0)\n  if (!raw || raw.length <= 16) throw new Error('七猫章节密文无效')\n  var iv = Packages.java.util.Arrays.copyOfRange(raw, 0, 16)\n  var encrypted = Packages.java.util.Arrays.copyOfRange(raw, 16, raw.length)\n  var key = new Packages.javax.crypto.spec.SecretKeySpec(new Packages.java.lang.String(QM_AES_KEY).getBytes('UTF-8'), 'AES')\n  var ivSpec = new Packages.javax.crypto.spec.IvParameterSpec(iv)\n  var cipher = Packages.javax.crypto.Cipher.getInstance('AES/CBC/PKCS5Padding')\n  cipher.init(2, key, ivSpec)\n  return cipher.doFinal(encrypted)\n}\n\nfunction qmDecodeTextBytes(bytes) {\n  if (!bytes) return ''\n  var charset = 'UTF-8'\n  try {\n    var headSize = Math.min(Number(bytes.length || 0), 512)\n    var head = String(new Packages.java.lang.String(bytes, 0, headSize, 'ISO-8859-1'))\n    var match = head.match(/(?:encoding|charset)\\s*=\\s*[\"']?\\s*([A-Za-z0-9._-]+)/i)\n    if (match && match[1]) charset = String(match[1])\n    var b0 = Number(bytes[0]) & 255\n    var b1 = Number(bytes[1]) & 255\n    if (b0 == 255 && b1 == 254) charset = 'UTF-16LE'\n    else if (b0 == 254 && b1 == 255) charset = 'UTF-16BE'\n  } catch (detectError) {}\n  try {\n    return String(new Packages.java.lang.String(bytes, charset)).replace(/^\\uFEFF/, '')\n  } catch (charsetError) {\n    return String(new Packages.java.lang.String(bytes, 'UTF-8')).replace(/^\\uFEFF/, '')\n  }\n}\n\nfunction qmDecryptChapter(value) {\n  var bytes = qmDecryptChapterBytes(value)\n  if (bytes.length > 3 && (Number(bytes[0]) & 255) == 80 && (Number(bytes[1]) & 255) == 75) {\n    throw new Error('EPUB 已改为服务器解密，请配置服务地址并刷新书籍目录')\n  }\n  return qmDecodeTextBytes(bytes)\n}\n\nfunction qmReaderType(ctx, baseUrl) {\n  var value = qmBookVariable(ctx, 'qm_reader_type')\n  if (!value) {\n    var match = String(baseUrl || '').match(/[\"&?]qm_reader_type(?:\"\\s*:|=)\"?([^\",&#}]+)/)\n    if (match) value = String(match[1] || '')\n  }\n  return String(value || '0')\n}\n\nfunction qmEpubServiceBase() {\n  return QM_EPUB_SERVICE_BASE\n}\n\nfunction qmEpubRemoteDecrypt(value) {\n  var runtimeJava = qmJavaOf(this)\n  if (!runtimeJava || !qmCallable(runtimeJava, 'ajax')) throw new Error('阅读端缺少网络请求能力')\n  value = String(value || '')\n  if (!value) throw new Error('七猫 EPUB 章节密文为空')\n  var headers = {'content-type':'application/json; charset=utf-8','accept':'text/plain'}\n  var token = qmLoginValue.call(this, '◎ EPUB服务密钥', '').trim()\n  if (!token) throw new Error('请填写EPUB服务密钥')\n  headers['X-Qimao-Token'] = token\n  var option = {method:'POST',headers:headers,body:JSON.stringify({content:value})}\n  var text = String(runtimeJava.ajax(qmEpubServiceBase.call(this) + '/decrypt,' + JSON.stringify(option)) || '').trim()\n  if (!text) throw new Error('EPUB 解密服务返回空正文')\n  if (/^(decrypt failed|unauthorized|not found|request body)/i.test(text)) throw new Error('EPUB 解密服务：' + text)\n  return text\n}\n\nfunction qmBookRequest(mode, id, readerType) {\n  if (mode == 'video') return qmGetUrl.call(this, 'https://api-gw.wtzw.com/playlet/api/info', {playlet_id:id})\n  if (mode == 'audio') return qmGetUrl.call(this, 'https://api-bc.wtzw.com/api/v2/album/detail', {album_id:id})\n  return qmGetUrl.call(this, 'https://api-bc.wtzw.com/api/v1/reader/detail', {ab_type:'2',id:id})\n}\n\nfunction qmLocalUrlMarker(url, key, value) {\n  url = String(url || '')\n  var comma = url.indexOf(',')\n  if (comma < 0) return url\n  try {\n    var option = JSON.parse(url.slice(comma + 1))\n    option[String(key)] = String(value)\n    return url.slice(0, comma + 1) + JSON.stringify(option)\n  } catch (e) { return url }\n}\n\nfunction qmSearchUrl(key, page) {\n  key = String(key || '').trim()\n  page = String(Number(page || 1) || 1)\n  var mode = 'novel'\n  if (/^[nN]/.test(key)) key = key.slice(1).trim()\n  else if (/^[vV]/.test(key)) { mode = 'video'; key = key.slice(1).trim() }\n  else if (/^[aA]/.test(key)) { mode = 'audio'; key = key.slice(1).trim() }\n  if (mode == 'video') {\n    return qmGetUrl.call(this, 'https://api-bc.wtzw.com/search/v1/playlet', {\n      wd:key,read_preference:'4',page:page,track_id:qmDevice.call(this).source_uid + Date.now()\n    })\n  }\n  if (mode == 'audio' && /^\\d+$/.test(key)) {\n    return qmGetUrl.call(this, 'https://api-bc.wtzw.com/api/v2/album/detail', {album_id:key})\n  }\n  return qmGetUrl.call(this, 'https://api-bc.wtzw.com/search/v1/words', {\n    extend:'',tab:mode == 'audio' ? '1' : '3',gender:'0',refresh_state:'8',\n    track_id:qmDevice.call(this).source_uid + Date.now(),page:page,book_id:'',book_privacy:'1',\n    wd:key,read_preference:'4',is_short_story_user:'0'\n  })\n}\n\nfunction qmLegacySearchUrl(key, page) {\n  return qmGetUrl.call(this, 'https://api-bc.wtzw.com/api/v5/search/words', {\n    gender:'3',imei_ip:'2937357107',page:String(Number(page || 1) || 1),wd:String(key || '').trim()\n  })\n}\n\nfunction qmPlainText(value) {\n  return String(value == null ? '' : value)\n    .replace(/<[^>]*>/g, '')\n    .replace(/&nbsp;/gi, ' ')\n    .replace(/&amp;/gi, '&')\n    .replace(/&lt;/gi, '<')\n    .replace(/&gt;/gi, '>')\n    .trim()\n}\n\nfunction qmItemId(x, mode) {\n  x = x || {}\n  if (mode == 'audio') return String(x.album_id || x.id || '')\n  if (mode == 'video') return String(x.playlet_id || x.id || '')\n  return String(x.id || x.book_id || '')\n}\n\nfunction qmIsCandidate(x, mode) {\n  x = x || {}\n  if (!qmItemId(x, mode) || !(x.title || x.original_title)) return false\n  if (mode == 'audio') {\n    return !!(x.album_id || x.data_type == 'album' || x.data_type == 'audio' ||\n      x.audio_num || x.chapter_list_desc || x.actors || x.thumb_image_link)\n  }\n  if (mode == 'video') {\n    return !!(x.playlet_id || x.data_type == 'playlet' || x.data_type == 'video' ||\n      x.total_num || x.play_num || x.video_url || x.play_list)\n  }\n  return !!(x.data_type == 'book' || x.book_type != null || x.reader_type != null ||\n    x.author || x.original_author || x.latest_chapter_id || x.latest_chapter_title || x.words_num)\n}\n\nfunction qmRememberVideoMeta(x) {\n  x = x || {}\n  var id = String(x.playlet_id || x.id || '')\n  var runtimeCache = qmCacheOf(this)\n  if (!id || !runtimeCache) return\n  var meta = {id:id,title:x.title || x.original_title || '',intro:x.intro || x.description || x.desc || x.summary || '',\n    tags:x.tags || x.ptags || '',content_type:x.content_type || '',total_num:x.total_num || x.latest_num || ''}\n  try { runtimeCache.putMemory('qm-video-meta-' + id, JSON.stringify(meta)) } catch (e) {}\n}\n\nfunction qmVideoMeta(id) {\n  var runtimeCache = qmCacheOf(this)\n  if (!runtimeCache || !id) return {}\n  try {\n    var saved = runtimeCache.getFromMemory('qm-video-meta-' + id)\n    return saved ? JSON.parse(String(saved)) : {}\n  } catch (e) { return {} }\n}\n\nfunction qmVideoTags(raw) {\n  var tags = []\n  if (raw.tags) tags = tags.concat(String(raw.tags).split(/[,/\\s]+/))\n  ;(raw.playlet_tag_list || raw.tag_list || []).forEach(function (x) {\n    var title = typeof x == 'string' ? x : x.title || x.name || x.tag_name\n    if (title) tags.push(String(title))\n  })\n  var seen = {}\n  return tags.filter(function (x) { x = String(x || '').trim(); if (!x || seen[x]) return false; seen[x] = 1; return true })\n}\n\nfunction qmVideoIntro(raw, cached) {\n  raw = raw || {}\n  cached = cached || {}\n  var text = raw.intro || raw.description || raw.desc || raw.summary || raw.story_intro || cached.intro || ''\n  if (text) return String(text)\n  var total = raw.total_num || raw.latest_num || cached.total_num || ''\n  var type = String(raw.content_type || cached.content_type || '') == '2' ? '漫剧' : '短剧'\n  return '七猫官方' + type + (total ? '，共 ' + total + ' 集。' : '。')\n}\n\nfunction qmNormalizeBook(x, mode, contentMode) {\n  var ctx = this\n  x = x || {}\n  if (!qmIsCandidate(x, mode)) return null\n  if (mode == 'audio') {\n    var aid = qmItemId(x, mode)\n    return {title:x.original_title || qmPlainText(x.title),author:x.original_author || qmPlainText(x.author || x.actors) || '七猫听书',\n      cover:x.image_link || x.thumb_image_link,intro:qmPlainText(x.intro || x.sub_title),kind:'听书',\n      last_chapter:x.chapter_list_desc || x.audio_num || '',word_count:x.audio_num || '',\n      url:qmBookRequest.call(ctx,'audio',aid,'0')}\n  }\n  if (mode == 'video') {\n    var vid = qmItemId(x, mode)\n    qmRememberVideoMeta.call(ctx, x)\n    var videoType = String(x.content_type || '') == '2' ? '漫剧' : '短剧'\n    return {title:x.original_title || qmPlainText(x.title),author:'七猫' + videoType,cover:x.image_link,\n      intro:qmPlainText(qmVideoIntro(x, {})),kind:videoType,last_chapter:x.total_num || '',word_count:x.play_num || '',\n      url:qmBookRequest.call(ctx,'video',vid,'0')}\n  }\n  var id = qmItemId(x, mode)\n  var detailUrl = qmBookRequest.call(ctx,'novel',id,String(x.reader_type || '0'))\n  detailUrl = qmLocalUrlMarker(detailUrl, 'qm_content_mode', contentMode == 'publish' ? 'publish' : 'novel')\n  return {title:x.original_title || qmPlainText(x.title),author:x.original_author || qmPlainText(x.author),cover:x.image_link,\n    intro:qmPlainText(x.intro || x.read_reason),kind:x.ptags || x.sub_title || x.tags,\n    last_chapter:x.latest_chapter_title || x.latest_chapter_id || '',word_count:x.words_num || x.sub_title || '',\n    url:detailUrl}\n}\n\nfunction qmSearchBooks(text, baseUrl) {\n  var ctx = this\n  var runtimeJava = qmJavaOf(ctx)\n  var payload = qmParse(text)\n  var data = payload.data || {}\n  var list = []\n  if (data.book && data.book.album_id) list = [qmNormalizeBook.call(ctx, data.book, 'audio')]\n  else {\n    var mode = String(baseUrl).indexOf('/playlet') >= 0 ? 'video' : (qmUrlValue(baseUrl, 'tab') == '1' ? 'audio' : 'novel')\n    var books = data.books || []\n    if (!books.length && mode == 'novel' && String(baseUrl).indexOf('/search/v1/words') >= 0) {\n      var keyword = qmUrlValue(baseUrl, 'wd')\n      var currentPage = qmUrlValue(baseUrl, 'page') || '1'\n      if (keyword) {\n        try { books = (qmParse(runtimeJava.ajax(qmLegacySearchUrl.call(ctx, keyword, currentPage))).data || {}).books || [] } catch (e) {}\n      }\n    }\n    list = books.map(function (x) {\n      var itemMode = mode\n      if (x.album_id || x.data_type == 'album' || x.data_type == 'audio') itemMode = 'audio'\n      return qmNormalizeBook.call(ctx, x, itemMode)\n    }).filter(function (x) { return !!x && !!x.title && !!x.url })\n  }\n  return JSON.stringify({data:list})\n}\n\nfunction qmExploreUrl(rankType, tabType) {\n  return qmGetUrl.call(this, 'https://api-bc.wtzw.com/api/v1/leader-board', {\n    rank_type:rankType,category_id:'0',tab_type:tabType,category_type:'0',read_preference:'4',\n    from:'6',new_user:'1',refresh_state:'4',book_privacy:'1'\n  })\n}\n\nfunction qmExploreListUrl(kind, id, gender, page) {\n  page = String(Number(page || 1) || 1)\n  if (kind == 'search') return qmLegacySearchUrl.call(this, id, page)\n  if (kind == 'tag') {\n    return qmGetUrl.call(this, 'https://api-bc.wtzw.com/api/v4/tag/index', {\n      gender:String(gender || '2'),need_filters:'1',page:page,tag_id:String(id)\n    })\n  }\n  return qmGetUrl.call(this, 'https://api-bc.wtzw.com/api/v4/category/get-list', {\n    gender:String(gender || '2'),category_id:String(id),need_filters:'1',page:page,need_category:'0'\n  })\n}\n\nfunction qmExploreMode() {\n  var runtimeSource = qmSourceOf(this)\n  var mode = String(runtimeSource && runtimeSource.get('qm_explore_mode') || 'novel')\n  return /^(novel|publish|audio|video)$/.test(mode) ? mode : 'novel'\n}\n\nfunction qmVideoState(kind) {\n  var runtimeCache = qmCacheOf(this)\n  if (!runtimeCache) return {pages:{}}\n  try {\n    var saved = runtimeCache.getFromMemory('qm-video-pages-' + kind)\n    var state = saved ? JSON.parse(String(saved)) : null\n    if (state && state.pages) return state\n  } catch (e) {}\n  return {pages:{}}\n}\n\nfunction qmResetVideoState(kind) {\n  var runtimeCache = qmCacheOf(this)\n  try { if (runtimeCache) runtimeCache.deleteMemory('qm-video-pages-' + kind) } catch (e) {}\n}\n\nfunction qmVideoUploadIds(kind, page) {\n  page = String(Number(page || 1) || 1)\n  if (page == '1') {\n    qmResetVideoState.call(this, kind)\n    return []\n  }\n  var state = qmVideoState.call(this, kind)\n  var ids = []\n  Object.keys(state.pages || {}).sort(function (a, b) { return Number(a) - Number(b) }).forEach(function (key) {\n    if (Number(key) < Number(page)) ids = ids.concat(state.pages[key] || [])\n  })\n  var seen = {}\n  return ids.filter(function (id) { id = String(id); if (!id || seen[id]) return false; seen[id] = 1; return true }).slice(-120).map(function (id) {\n    return {id:String(id),item_type:kind == 'animated' ? '14' : '11',ts:String(Date.now()),type:'0'}\n  })\n}\n\nfunction qmRememberVideoPage(kind, page, items) {\n  var runtimeCache = qmCacheOf(this)\n  if (!runtimeCache) return items\n  page = String(Number(page || 1) || 1)\n  var state = qmVideoState.call(this, kind)\n  var prior = {}\n  Object.keys(state.pages || {}).forEach(function (key) {\n    if (key != page) (state.pages[key] || []).forEach(function (id) { prior[String(id)] = 1 })\n  })\n  var current = []\n  var local = {}\n  var filtered = items.filter(function (item) {\n    var id = qmItemId(item, 'video')\n    if (!id || local[id] || prior[id]) return false\n    local[id] = 1\n    current.push(String(id))\n    return true\n  })\n  state.pages[page] = current\n  Object.keys(state.pages).forEach(function (key) { if (Number(key) < Number(page) - 8) delete state.pages[key] })\n  runtimeCache.putMemory('qm-video-pages-' + kind, JSON.stringify(state))\n  return filtered\n}\n\nfunction qmExploreMarker(url, kind, page) {\n  var comma = String(url).indexOf(',')\n  if (comma < 0) comma = String(url).length\n  return String(url).slice(0, comma) + '#qm_video=' + encodeURIComponent(kind) + '&qm_page=' + encodeURIComponent(String(page)) + String(url).slice(comma)\n}\n\nfunction qmExploreHomeUrl(mode, page, dramaKind) {\n  page = String(Number(page || 1) || 1)\n  if (mode == 'publish') {\n    return qmPostFormUrl.call(this, 'https://api-bc.wtzw.com/api/v7/book-store', {\n      book_id:'',book_privacy:'1',count:'3',new_num:'4',new_user:'1',part:page == '1' ? '1' : '2',\n      publish_tab_ab_test:'1',read_preference:'0',refresh_state:page == '1' ? '4' : '7',scene_num:'5',\n      select_num:'6',tab_type:'3',upload_ids:'[]'\n    })\n  }\n  if (mode == 'audio') {\n    return qmPostFormUrl.call(this, 'https://api-bc.wtzw.com/api/v3/album/index', {\n      book_privacy:'1',cache_ver:'',read_preference:'0',real_person_num:'6',refresh_state:'4',upload_ids:'[]',user_state:''\n    })\n  }\n  if (dramaKind == 'drama') {\n    var dramaUrl = qmPostFormUrl.call(this, 'https://api-gw.wtzw.com/playlet/api/v2/list-by-tagId', {\n      page:page,playlet_privacy:'1',read_preference:'0',refresh_state:page == '1' ? '4' : '7',tag_id:'',upload_ids:JSON.stringify(qmVideoUploadIds.call(this, 'drama', page))\n    })\n    return qmExploreMarker(dramaUrl, 'drama', page)\n  }\n  var animatedUrl = qmPostFormUrl.call(this, 'https://api-gw.wtzw.com/playlet/api/v1/animated/index', {\n    change_tag:'0',page:page,playlet_privacy:'1',read_preference:'0',refresh_state:page == '1' ? '4' : '7',tag_id:'',upload_ids:JSON.stringify(qmVideoUploadIds.call(this, 'animated', page))\n  })\n  return qmExploreMarker(animatedUrl, 'animated', page)\n}\n\nfunction qmExploreMediaSearchUrl(mode, keyword, page) {\n  page = String(Number(page || 1) || 1)\n  if (mode == 'audio') {\n    return qmGetUrl.call(this, 'https://api-bc.wtzw.com/search/v1/words', {\n      extend:'',tab:'1',gender:'0',refresh_state:'8',track_id:qmDevice.call(this).source_uid + Date.now(),page:page,\n      book_id:'',book_privacy:'1',wd:String(keyword),read_preference:'4',is_short_story_user:'0'\n    })\n  }\n  return qmGetUrl.call(this, 'https://api-bc.wtzw.com/search/v1/playlet', {\n    wd:String(keyword),read_preference:'4',page:page,track_id:qmDevice.call(this).source_uid + Date.now()\n  })\n}\n\nfunction qmCollectExplore(node, mode, output, seen, depth) {\n  var ctx = this\n  if (node == null || depth > 8) return\n  if (Array.isArray(node)) {\n    node.forEach(function (item) { qmCollectExplore.call(ctx, item, mode, output, seen, depth + 1) })\n    return\n  }\n  if (typeof node != 'object') return\n  var itemMode = mode == 'publish' ? 'novel' : mode\n  var id = qmItemId(node, itemMode)\n  if (id && String(id) != '0' && qmIsCandidate(node, itemMode)) {\n    var key = mode + '-' + id\n    if (!seen[key]) {\n      seen[key] = 1\n      output.push(qmNormalizeBook.call(ctx, node, itemMode, mode))\n    }\n  }\n  Object.keys(node).forEach(function (key) {\n    if (!/^(meta|stat_params|track_id|tag_items|category_list|rank_list)$/.test(key)) {\n      qmCollectExplore.call(ctx, node[key], mode, output, seen, depth + 1)\n    }\n  })\n}\n\nfunction qmExploreBooks(text, selectedMode, baseUrl) {\n  var ctx = this\n  var data = qmParse(text).data || {}\n  var mode = selectedMode || qmExploreMode.call(ctx)\n  var list = []\n  var seen = {}\n  if (mode == 'novel') {\n    list = (data.books || []).map(function (x) { return qmNormalizeBook.call(ctx, x, 'novel') })\n  } else if (mode == 'video' && /\\/playlet\\/api\\/v(1\\/animated\\/index|2\\/list-by-tagId)/.test(String(baseUrl || ''))) {\n    var kind = String(baseUrl).indexOf('/animated/index') >= 0 ? 'animated' : 'drama'\n    var contentType = kind == 'animated' ? '2' : '1'\n    var page = qmUrlValue(baseUrl, 'qm_page') || '1'\n    var rawVideos = (data.playlet_list || []).filter(function (x) { return String(x.content_type || '') == contentType })\n    rawVideos = qmRememberVideoPage.call(ctx, kind, page, rawVideos)\n    list = rawVideos.map(function (x) { return qmNormalizeBook.call(ctx, x, 'video') })\n  } else {\n    qmCollectExplore.call(ctx, data, mode, list, seen, 0)\n  }\n  return JSON.stringify({data:list.filter(function (x) { return !!x && !!x.title && !!x.url })})\n}\n\nfunction qmDateText(value) {\n  var seconds = Number(value || 0)\n  if (!seconds) return ''\n  var date = new Date(seconds > 9999999999 ? seconds : seconds * 1000)\n  function two(number) { return number < 10 ? '0' + number : String(number) }\n  return date.getFullYear() + '-' + two(date.getMonth() + 1) + '-' + two(date.getDate()) + ' ' + two(date.getHours()) + ':' + two(date.getMinutes())\n}\n\nfunction qmExtraInfoText(item) {\n  item = item || {}\n  if (item.value === null || item.value === undefined || String(item.value) === '') return ''\n  return String(item.value) + String(item.unit || '')\n}\n\nfunction qmNovelInfo(raw) {\n  raw = raw || {}\n  var info = {}\n  Object.keys(raw).forEach(function (key) { info[key] = raw[key] })\n  var tags = (raw.book_tag_list || []).map(function (x) { return String(x.title || '') }).filter(function (x) { return !!x })\n  var attribute = raw.attribute || {}\n  var extras = attribute.extra_info_list || []\n  function findExtra(pattern) {\n    for (var i = 0; i < extras.length; i++) {\n      if (pattern.test(String(extras[i].sub_title || extras[i].title || ''))) return qmExtraInfoText(extras[i])\n    }\n    return ''\n  }\n  var score = attribute.score || findExtra(/评分|评价/)\n  if (score && String(score).indexOf('分') < 0) score = String(score) + '分'\n  var reading = ''\n  var readingList = attribute.reading_info_list || []\n  if (readingList.length > 2) reading = qmExtraInfoText(readingList[2]) || String(readingList[2].title || readingList[2].text || '')\n  if (!reading) reading = findExtra(/正在阅读|在线/)\n  var lines = []\n  var updated = qmDateText(raw.update_time)\n  if (updated) lines.push('🧭 更新：' + updated)\n  if (raw.category_over_words) lines.push('📒 关于：' + raw.category_over_words)\n  if (score) lines.push('💯 分数：' + score)\n  if (reading) lines.push('👁️ 在线：' + reading)\n  if (tags.length) lines.push('🏷️ 标签：' + tags.join(' / '))\n  if (raw.characters) lines.push('👥 角色：' + raw.characters)\n  if (raw.publisher) lines.push('🏢 出版：' + raw.publisher)\n  if (raw.isbn) lines.push('🔖 ISBN：' + raw.isbn)\n  var copyright = raw.statement || raw.source_name\n  if (copyright) lines.push('📍 版权来源：' + copyright)\n  if (raw.intro) lines.push('📄 简介：' + raw.intro)\n  info.id = String(raw.id || '')\n  info.author = raw.author || raw.author_name || ''\n  info.image_link = raw.big_image_link || raw.image_link || raw.thumb_image_link || ''\n  info.intro = lines.join('\\n')\n  info.kind = [raw.category_over_words].concat(tags).filter(function (x) { return !!x }).join(',')\n  info.last_chapter = raw.latest_chapter_title || raw.chapter_list_desc || ''\n  info.words_num = raw.words_num || raw.word_count || ''\n  return info\n}\n\nfunction qmBookInfo(text, baseUrl) {\n  var ctx = this\n  var runtimeBook = qmBookOf(ctx)\n  var payload = qmParse(text)\n  var raw = payload.data || {}\n  var mode = 'novel'\n  var info\n  if (String(baseUrl).indexOf('/playlet/api/info') >= 0) {\n    mode = 'video'\n    raw = raw.playlet || raw.playlet_info || raw\n    var playletId = String(raw.playlet_id || qmUrlValue(baseUrl, 'playlet_id') || '')\n    var cachedVideo = qmVideoMeta.call(ctx, playletId)\n    if (!raw.intro && !raw.description && !raw.desc && !raw.summary && playletId) {\n      try {\n        var detailData = qmGet.call(ctx, 'https://api-gw.wtzw.com/playlet/api/detail', {\n          playlet_id:playletId,playlet_privacy:'1',read_preference:'0'\n        }).data || {}\n        Object.keys(detailData).forEach(function (key) { if (raw[key] === null || raw[key] === undefined || raw[key] === '') raw[key] = detailData[key] })\n      } catch (detailError) {}\n    }\n    var contentType = String(raw.content_type || cachedVideo.content_type || '')\n    var videoKind = contentType == '2' ? '漫剧' : '短剧'\n    var videoTags = qmVideoTags(raw)\n    if (!videoTags.length && cachedVideo.tags) videoTags = String(cachedVideo.tags).split(/[,/\\s]+/).filter(function (x) { return !!x })\n    var creator = typeof raw.creator == 'object' && raw.creator ? raw.creator.nickname || raw.creator.name || '' : raw.creator || ''\n    info = {id:playletId,title:raw.title || cachedVideo.title,author:creator || '七猫' + videoKind,image_link:raw.image_link,\n      intro:'🎬 剧情：' + qmVideoIntro(raw, cachedVideo),kind:[videoKind].concat(videoTags).join(','),\n      last_chapter:'共 ' + String(raw.total_num || cachedVideo.total_num || 0) + ' 集',words_num:String(raw.play_num || ''),\n      toc_url:qmGetUrl.call(ctx, 'https://api-gw.wtzw.com/playlet/api/info',{playlet_id:playletId})}\n    qmRememberVideoMeta.call(ctx, {playlet_id:playletId,title:info.title,intro:info.intro.replace(/^🎬 剧情：/,''),tags:videoTags.join(','),content_type:contentType,total_num:raw.total_num || cachedVideo.total_num})\n    try { if (runtimeBook) runtimeBook.type = 4 } catch (e) {}\n  } else if (String(baseUrl).indexOf('/album/detail') >= 0) {\n    mode = 'audio'\n    raw = raw.book || {}\n    info = {id:String(raw.album_id || ''),title:raw.title,author:raw.author || raw.actors,image_link:raw.image_link || raw.thumb_image_link,\n      intro:raw.intro,kind:(raw.book_tag_list || []).map(function (x) { return x.title }).join(','),\n      last_chapter:raw.chapter_list_desc,toc_url:qmGetUrl.call(ctx, 'https://api-ks.wtzw.com/api/v1/album/chapter-list',{album_id:String(raw.album_id || ''),source:'0'})}\n    try { if (runtimeBook) runtimeBook.type = 32 } catch (e) {}\n  } else {\n    info = qmNovelInfo(raw)\n    var readerTypeValue = String(raw.reader_type || '0')\n    var requestedMode = qmUrlValue(baseUrl, 'qm_content_mode')\n    if (!requestedMode) {\n      var requestedModeMatch = String(baseUrl || '').match(/[\"&?]qm_content_mode(?:\"\\s*:|=)\"?([^\",&#}]+)/)\n      if (requestedModeMatch) requestedMode = String(requestedModeMatch[1] || '')\n    }\n    mode = requestedMode == 'publish' || readerTypeValue != '0' || raw.publisher || raw.isbn ? 'publish' : 'novel'\n    info.reader_type = readerTypeValue\n    info.toc_url = qmGetUrl.call(ctx, 'https://api-ks.wtzw.com/api/v1/chapter/chapter-list', {\n      id:String(raw.id || ''),chapter_ver:'0',reader_type:readerTypeValue\n    })\n    try {\n      if (runtimeBook) {\n        runtimeBook.type = 8\n        if (runtimeBook.putVariable) runtimeBook.putVariable('qm_reader_type', readerTypeValue)\n        if (runtimeBook.putVariable) runtimeBook.putVariable('qm_content_mode', mode)\n      }\n    } catch (e) {}\n  }\n  if (mode == 'novel' && info.id && qmCommentsAllowed(ctx, baseUrl) && qmCommentConfig.call(ctx).book) {\n    try { info.intro = String(info.intro || '') + qmBubbleImage.call(ctx, 'book', String(info.id), '', '', qmBookReviewCount.call(ctx, String(info.id)), '本书书评') } catch (e) {}\n  }\n  info.mode = mode\n  return {data:info}\n}\n\nfunction qmToc(text, baseUrl) {\n  var ctx = this\n  var runtimeBook = qmBookOf(ctx)\n  var payload = qmParse(text)\n  var data = payload.data || {}\n  var list = []\n  if (String(baseUrl).indexOf('/playlet/api/info') >= 0) {\n    try { if (runtimeBook) runtimeBook.type = 4 } catch (e) {}\n    list = (data.play_list || []).filter(function (x) { return !!(x.video_url || x.video_url_h265) }).map(function (x, index) {\n      var sort = x.sort === null || x.sort === undefined ? index + 1 : x.sort\n      var playUrl = String(x.video_url || x.video_url_h265 || '')\n      var url = qmDataUrl(ctx, playUrl, 'video', {playlet_id:String(data.playlet_id || ''),qm_sort:String(sort)})\n      return {title:'第' + sort + '集',info:'时长 ' + (x.duration || '-') + ' 秒 · 评论 ' + (x.comment_count || 0),url:url}\n    })\n  } else if (String(baseUrl).indexOf('/album/chapter-list') >= 0) {\n    try { if (runtimeBook) runtimeBook.type = 32 } catch (e2) {}\n    var aid = qmUrlValue(baseUrl, 'album_id')\n    var chapters = data.chapter_list || data.list || data.chapters || []\n    list = chapters.map(function (x, index) {\n      var chapterId = x.id || x.chapter_id\n      return {title:x.title || x.chapter_title || ('第' + (x.index || index + 1) + '集'),info:'时长 ' + (x.duration || '-') + ' 秒',url:qmGetUrl.call(ctx, 'https://api-ks.wtzw.com/api/v1/album/info', {\n        album_id:aid,chapter_id:String(chapterId),new_user:'0'\n      })}\n    })\n  } else {\n    var bid = qmUrlValue(baseUrl, 'id')\n    var readerType = String(data.reader_type || qmUrlValue(baseUrl, 'reader_type') || '0')\n    var contentMode = qmBookVariable(ctx, 'qm_content_mode') || (readerType == '0' ? 'novel' : 'publish')\n    try {\n      if (runtimeBook) {\n        runtimeBook.type = 8\n        if (runtimeBook.putVariable) runtimeBook.putVariable('qm_reader_type', readerType)\n      }\n    } catch (e3) {}\n    list = (data.chapter_lists || []).map(function (x) {\n      var params = {id:bid,chapterId:String(x.id)}\n      if (readerType == '4') params.reader_agent = '1'\n      var chapterUrl = qmGetUrl.call(ctx, 'https://api-ks.wtzw.com/api/v1/chapter/content',params)\n      var comma = chapterUrl.indexOf(',')\n      if (comma >= 0) {\n        try {\n          var option = JSON.parse(chapterUrl.slice(comma + 1))\n          option.qm_reader_type = readerType\n          option.qm_content_mode = contentMode\n          chapterUrl = chapterUrl.slice(0, comma + 1) + JSON.stringify(option)\n        } catch (optionError) {}\n      }\n      return {title:x.title,info:'字数 ' + (x.words || '-'),url:chapterUrl}\n    })\n  }\n  return list\n}\n\nfunction qmEsc(value) {\n  return String(value == null ? '' : value).replace(/[&<>\"']/g, function (c) {\n    return {'&':'&amp;','<':'&lt;','>':'&gt;','\"':'&quot;',\"'\":'&#39;'}[c]\n  })\n}\n\nfunction qmEmojiData(input) {\n  input = input || {}\n  var tokens = input.tokens || []\n  if (!Array.isArray(tokens)) tokens = [tokens]\n  var result = {}\n  tokens.slice(0, 6).forEach(function (token) {\n    token = String(token || '')\n    if (QM_EMOJI_DATA[token]) result[token] = QM_EMOJI_DATA[token]\n  })\n  return JSON.stringify(result)\n}\n\nfunction qmCommentItem(item, hot, allowUnknownReplies) {\n  item = item || {}\n  var cfg = qmCommentConfig.call(this)\n  var user = item.user_info || item.user || {}\n  var medal = user.on_medal || item.on_medal || {}\n  var badgeInfo = user.badge_info || item.badge_info || {}\n  var honorInfo = user.honor_info || item.honor_info || {}\n  var levelValue = user.level != null ? user.level : (item.level != null ? item.level : '')\n  var levelNumber = Number(levelValue || 0)\n  var levelIcon = String(user.level_icon || item.level_icon || '')\n  if (!levelIcon && levelNumber > 0) levelIcon = 'https://cdn.wtzw.com/bookimg/free/images/app/1_0_0/level/level_icon_' + levelNumber + '.png'\n  var circleLevel = badgeInfo.circle_level != null ? badgeInfo.circle_level : (item.circle_level != null ? item.circle_level : '')\n  var circleNumber = Number(circleLevel || 0)\n  var badgeIcon = String(badgeInfo.icon_url || item.badge_icon || '')\n  if (!badgeIcon && circleNumber > 0) {\n    var circleTier = Math.min(8, Math.floor((circleNumber - 1) / 5) + 1)\n    badgeIcon = 'https://cdn.wtzw.com/bookimg/free/circle/circle_level_img_' + ['zero','one','two','three','four','five','six','seven','eight'][circleTier] + '.png'\n  }\n  var authorLevel = user.author_level != null ? user.author_level : (item.author_level != null ? item.author_level : '')\n  var role = user.role != null ? user.role : item.role\n  var isAuthor = String(user.is_author != null ? user.is_author : (item.is_author != null ? item.is_author : '0')) == '1' || String(role || '') == '1'\n  var avatarBox = String(user.avatar_box || item.avatar_box || '')\n  var nicknameColor = String(user.nickname_color || item.nickname_color || '')\n  var nicknameColorNight = String(user.nickname_color_night || item.nickname_color_night || '')\n  var pics = []\n  var emoji = ''\n  var picInfo = item.pic_info || {}\n  var picUrl = String(picInfo.url_orig || picInfo.url_s || '')\n  if (picUrl) {\n    if (String(picInfo.pic_type || '') == '2') emoji = picUrl\n    else pics.push(picUrl)\n  }\n  var rawPics = item.image_list || item.pic_list || item.comment_pic || []\n  if (!Array.isArray(rawPics)) rawPics = rawPics ? [rawPics] : []\n  rawPics.forEach(function (x) {\n    var url = typeof x == 'string' ? x : x.url_orig || x.url || x.image_link\n    if (!url) return\n    if (typeof x != 'string' && String(x.pic_type || '') == '2' && !emoji) emoji = String(url)\n    else pics.push(String(url))\n  })\n  if (!cfg.images) pics = []\n  var replyValue = item.reply_count != null ? item.reply_count : item.sub_comment_count\n  var replies = cfg.replies ? (replyValue == null && allowUnknownReplies ? -1 : Number(replyValue || 0)) : 0\n  return {id:String(item.comment_id || item.id || ''),name:String(user.nickname || user.user_name || item.nickname || '七猫用户'),\n    avatar:String(user.avatar || user.head_image || item.avatar || ''),avatarBox:avatarBox,content:String(item.content || item.comment_content || ''),time:String(item.comment_time || item.create_time || item.time || ''),\n    likes:Number(item.like_count || 0),replies:replies,\n    pics:pics,emoji:emoji,hot:!!hot,god:String(item.is_god || item.god_flag || '0') == '1',\n    levelIcon:levelIcon,level:String(levelValue || ''),\n    medalIcon:String(medal.icon_url || ''),medalEffectIcon:String(medal.special_effect && medal.special_effect.pic_url || ''),medalTitle:String(medal.alias_name || ''),\n    badgeIcon:badgeIcon,badgeTitle:String(badgeInfo.badge || item.badge || ''),badgeLevel:String(circleLevel || ''),badgeColor:String(badgeInfo.center_color || badgeInfo.start_color || ''),\n    honorIcon:String(honorInfo.bg_url || ''),honorTitle:String(honorInfo.tag_title || ''),honorColor:String(honorInfo.tag_title_color || ''),\n    honorType:String(honorInfo.type || ''),honorTextEmbedded:String(honorInfo.type || '') == '2',\n    honorPaddingLeft:String(honorInfo.padding_left || ''),honorPaddingRight:String(honorInfo.padding_right || ''),\n    isAuthor:isAuthor,authorLevel:String(authorLevel || ''),role:String(role == null ? '' : role),nicknameColor:nicknameColor,nicknameColorNight:nicknameColorNight,\n    vip:String(user.is_vip != null ? user.is_vip : item.is_vip || '0') == '1',yearVip:String(user.year_vip_show != null ? user.year_vip_show : item.year_vip_show || '0') == '1',\n    reference:item.reference && (item.reference.user_info && item.reference.user_info.nickname || item.reference.nickname || item.reference.content) ? {\n      name:String(item.reference.user_info && item.reference.user_info.nickname || item.reference.nickname || ''),\n      content:String(item.reference.content || '')\n    } : null}\n}\n\nfunction qmCommentNext(data, zone, rawList) {\n  data = data || {}\n  zone = zone || {}\n  rawList = rawList || []\n  var next = zone.next_id || data.next_id || zone.list_extra || data.list_extra || ''\n  var total = Number(zone.comment_count || data.comment_count || 0)\n  if (!next && total > rawList.length && rawList.length) {\n    var last = rawList[rawList.length - 1] || {}\n    next = last.next_id || last.list_extra || last.comment_id || last.id || ''\n  }\n  return String(next || '')\n}\n\nfunction qmUniqueComments(list) {\n  var seen = {}\n  return list.filter(function (x) { var key = x.id || x.name + x.content; if (seen[key]) return false; seen[key] = 1; return true })\n}\n\nfunction qmCommentPageData(input) {\n  try {\n    input = input || {}\n    var ctx = this\n    var cfg = qmCommentConfig.call(ctx)\n    var kind = String(input.kind || 'paragraph')\n    var cursor = String(input.cursor || '')\n    var response\n    var data\n    var list = []\n    var tags = []\n    var total = ''\n    var next = ''\n    if (kind == 'book') {\n      var bookId = String(input.bookId || '')\n      var bookHot = String(input.hot || '0') == '1'\n      var bp = {circle_id:bookId,need_common:'0',tag_id:String(input.tag || '1'),book_id:bookId,sort:bookHot ? '0' : '1'}\n      if (cursor) bp.next_id = cursor\n      response = qmGet.call(ctx, 'https://api-cmnt.wtzw.com/api/v2/community/book-evaluates', bp)\n      data = response.data || {}\n      list = (data.list || []).map(function (x) { return qmCommentItem.call(ctx, x, bookHot, false) })\n      var evaluateInfo = data.evaluates_info || {}\n      if (!cursor) total = String(evaluateInfo.eval_comment_count || data.comment_count || list.length)\n      next = String(data.next_id || '')\n      tags = (evaluateInfo.tag_list || data.tag_list || []).map(function (x) { return {id:String(x.id || x.tag_id || '1'),title:String(x.title || x.name || '全部'),count:String(x.count || x.comment_count || '')} })\n    } else {\n      var hot = String(input.hot || '0') == '1' ? '1' : '0'\n      var params = {book_id:String(input.bookId || ''),chapter_id:String(input.chapterId || '')}\n      if (kind == 'paragraph') params.paragraph_id = String(input.paragraphId || '')\n      params.hot = hot\n      if (kind == 'paragraph') params.check_cmt_id = String(input.checkId || '')\n      var firstUrl = kind == 'paragraph' ? 'https://api-cmnt.wtzw.com/api/v2/paragraph/first' : 'https://api-cmnt.wtzw.com/api/v2/chapter-comment/first'\n      var moreUrl = kind == 'paragraph' ? 'https://api-cmnt.wtzw.com/api/v2/paragraph/more' : 'https://api-cmnt.wtzw.com/api/v2/chapter-comment/more'\n      if (cursor) {\n        params.next_id = cursor\n        response = qmGet.call(ctx, moreUrl, params)\n      } else {\n        params.exposed_ids = ''\n        params.need_common = hot == '1' ? '1' : '0'\n        if (kind == 'chapter') params.extra = ''\n        response = qmPostForm.call(ctx, firstUrl, params)\n      }\n      data = response.data || {}\n      if (cursor) {\n        list = (data.comment_list || []).map(function (x) { return qmCommentItem.call(ctx, x, false) })\n        next = String(data.next_id || '')\n      } else {\n        var hotZone = data.hot_zone || {}\n        var timeZone = data.time_zone || {}\n        var hotList = hotZone.comment_list || []\n        var timeList = timeZone.comment_list || []\n        list = hotList.map(function (x) { return qmCommentItem.call(ctx, x, true) })\n          .concat(timeList.map(function (x) { return qmCommentItem.call(ctx, x, false) }))\n        next = qmCommentNext(data, timeZone, timeList)\n        total = String(timeZone.comment_count || hotZone.comment_count || list.length)\n      }\n    }\n    return JSON.stringify({ok:true,kind:kind,items:qmUniqueComments(list),next:next,total:total,tags:tags})\n  } catch (e) {\n    return JSON.stringify({ok:false,error:String(e && e.message || e),items:[],next:''})\n  }\n}\n\nfunction qmReplyPageData(input) {\n  try {\n    input = input || {}\n    var ctx = this\n    var cursor = String(input.cursor || '')\n    var kind = String(input.kind || 'paragraph')\n    var params = {book_id:String(input.bookId || ''),comment_id:String(input.commentId || ''),from:'',next_id:cursor,size:cursor ? '5' : '3'}\n    var response\n    if (kind == 'paragraph') {\n      response = qmPostForm.call(this, 'https://api-cmnt.wtzw.com/api/v1/paragraph/detail', params)\n    } else {\n      params.chapter_id = String(input.chapterId || '')\n      params.exclude_reply_ids = ''\n      response = qmGet.call(this, 'https://api-cmnt.wtzw.com/api/v1/comment/detail', params)\n    }\n    var data = response.data || {}\n    var list = qmUniqueComments((data.reply_list || data.comment_list || []).map(function (x) { return qmCommentItem.call(ctx, x, false) }))\n    var next = String(data.next_id || '')\n    if (next && next == cursor) next = ''\n    return JSON.stringify({ok:true,items:list,next:next})\n  } catch (e) { return JSON.stringify({ok:false,error:String(e && e.message || e),items:[],next:''}) }\n}\n\nfunction qmCommentHtml(kind, bid, cid, pid, heading, checkId) {\n  var cfg = qmCommentConfig.call(this)\n  var initial = JSON.stringify({kind:kind,bookId:String(bid || ''),chapterId:String(cid || ''),paragraphId:String(pid || ''),checkId:String(checkId || ''),cursor:'',tag:'1',hot:cfg.hot ? '1' : '0'})\n  var title = heading || (kind == 'book' ? '七猫书评' : kind == 'paragraph' ? '七猫段评' : '本章说')\n  var themeStyle = cfg.theme == '深色' ? '<style>:root{color-scheme:dark;--bg:#121315!important;--panel:#1c1e21!important;--text:#eceff3!important;--sub:#9ba3ad!important;--line:#34383e!important;--reply:#25282d!important;--soft:#2b2022!important}</style>' : cfg.theme == '浅色' ? '<style>:root{color-scheme:light;--bg:#f5f6f8!important;--panel:#fff!important;--text:#1f2328!important;--sub:#68707a!important;--line:#e4e7eb!important;--reply:#f7f8fa!important;--soft:#fff3f3!important}</style>' : ''\n  var identityStyle = '<style>.nameLine{display:flex;align-items:center;flex-wrap:wrap;gap:5px;min-height:22px}.name{color:var(--name-color,inherit)}.identityList{display:inline-flex;align-items:center;flex-wrap:wrap;gap:4px;min-width:0}.identityAsset{display:inline-flex;align-items:center;flex:0 0 auto;min-width:0}.identityAsset img{display:block;object-fit:contain}.levelIcon{width:auto;height:18px;max-width:58px}.medalIcon{width:18px;height:18px}.medalEffectIcon{width:auto;height:20px;max-width:106px}.badgeIcon{width:22px;height:20px;object-fit:contain}.assetFallback{display:none;align-items:center;height:19px;padding:0 5px;border:1px solid var(--line);border-radius:3px;font-size:10px;line-height:17px;white-space:nowrap}.identityAsset.failed>img{display:none}.identityAsset.failed>.assetFallback{display:inline-flex}.honorImage{width:auto;height:20px;max-width:126px;object-fit:contain}.honorTag{position:relative;isolation:isolate;overflow:hidden;height:20px;min-width:40px;padding:0 8px;border:0;color:#fff;text-shadow:0 1px 1px #555}.honorBg{position:absolute;z-index:-1;inset:0;width:100%;height:100%;object-fit:fill}.honorText{position:relative;z-index:1}.avatarWrap{position:relative;width:38px;height:38px;flex:0 0 38px}.avatarWrap .avatar{position:absolute;inset:0}.avatarFrame{position:absolute;inset:-4px;width:46px;height:46px;object-fit:contain;pointer-events:none}.userTag{display:inline-flex;align-items:center;height:19px;padding:0 5px;border:1px solid var(--line);border-radius:3px;font-size:10px;line-height:17px;white-space:nowrap}.vipTag{color:#946313;border-color:#c8a45d;background:rgba(200,164,93,.08)}.authorTag{color:#d14a3c;border-color:#d14a3c}.circleTag{padding-left:2px;gap:2px}.medalTag{gap:3px;padding-left:2px;color:var(--sub)}.medalText{line-height:17px}.replyHead{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}.replyIdentity{display:flex;align-items:center;flex-wrap:wrap;gap:5px;min-width:0}@media(prefers-color-scheme:dark){.name{color:var(--name-color-night,var(--name-color,inherit))}}</style>'\n  return '<!doctype html><html><head><meta charset=\"utf-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\">' + themeStyle + identityStyle +\n    '<style>:root{color-scheme:light dark;--bg:#f5f6f8;--panel:#fff;--text:#1f2328;--sub:#68707a;--line:#e4e7eb;--accent:#d64545;--reply:#f7f8fa;--soft:#fff3f3}*{box-sizing:border-box}body{margin:0;background:var(--bg);color:var(--text);font:15px/1.6 system-ui,sans-serif}header.top{position:sticky;top:0;z-index:5;display:flex;align-items:baseline;justify-content:space-between;gap:12px;background:var(--panel);border-bottom:1px solid var(--line);padding:14px 16px 12px;box-shadow:0 2px 8px rgba(23,28,35,.05)}h1{min-width:0;margin:0;font-size:17px;font-weight:700}.summary{flex:0 0 auto;font-size:12px;color:var(--sub);white-space:nowrap}.sort{display:flex;gap:0;overflow:auto;background:var(--panel);border-bottom:1px solid var(--line);padding:3px 12px 0}.sort button{min-width:64px;border:0;border-bottom:2px solid transparent;background:transparent;color:var(--sub);padding:9px 16px 8px;font-weight:600}.sort button.active{border-bottom-color:var(--accent);color:var(--accent);background:var(--soft)}.tags{display:flex;gap:7px;overflow:auto;padding:9px 12px 0}.tags button{flex:0 0 auto;border:1px solid var(--line);background:var(--panel);color:var(--sub);padding:6px 11px;border-radius:6px}.tags button.active{border-color:var(--accent);color:var(--accent);background:var(--soft)}button{font:inherit;cursor:pointer}.hidden{display:none!important}main{width:100%;max-width:920px;margin:0 auto;padding:10px}.comment{background:var(--panel);padding:14px;margin-bottom:10px;border:1px solid var(--line);border-radius:7px;box-shadow:0 2px 7px rgba(23,28,35,.035)}.user{display:flex;align-items:flex-start;gap:10px}.avatar{width:38px;height:38px;border-radius:50%;object-fit:cover;background:var(--line)}.who{flex:1;min-width:0;padding-top:1px}.name{font-size:14px;font-weight:650}.time{margin-top:1px;font-size:11px;color:var(--sub)}.likes{flex:0 0 auto;padding-top:2px;color:var(--sub);font-size:12px;white-space:nowrap}.body{white-space:pre-wrap;margin:10px 0 5px;line-height:1.72;word-break:break-word}.badge{display:inline-block;color:var(--accent);border:1px solid var(--accent);border-radius:3px;font-size:11px;line-height:17px;padding:0 4px;margin-right:6px;vertical-align:1px}.hot{color:var(--accent);font-size:12px;font-weight:600;margin-right:6px}.emoji{width:22px;height:22px;object-fit:contain;vertical-align:-5px;margin:0 2px}.emoji.xiaoqi{width:29px;height:29px;vertical-align:-8px}.emojiToken{white-space:nowrap}.sticker{display:block;max-width:96px;max-height:96px;object-fit:contain;margin-top:8px}.pics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:6px;margin-top:9px}.pics img{width:100%;aspect-ratio:1;object-fit:cover;border-radius:6px}.reference{border-left:2px solid var(--accent);background:var(--reply);padding:6px 9px;margin:8px 0;color:var(--sub);font-size:13px}.replies{margin-top:10px;padding:2px 10px;background:var(--reply);border-left:2px solid var(--accent);border-radius:4px}.reply{padding:10px 0;border-bottom:1px solid var(--line)}.reply:last-child{border:0}.reply .body{margin:6px 0 2px;font-size:14px}.emptyReply{text-align:center;color:var(--sub);padding:12px}.replyBtn{display:block;width:100%;margin:9px 0 0;padding:8px 12px;border:0;border-top:1px solid var(--line);border-radius:0;background:transparent;color:var(--accent);font-weight:600}.replyBtn:disabled{color:var(--sub)}.footer{padding:10px 14px max(20px,env(safe-area-inset-bottom))}.loadState{text-align:center;color:var(--sub);font-size:12px;padding:11px}.empty,.error{text-align:center;color:var(--sub);padding:48px 10px}.error{color:#b42318}@media(max-width:480px){header.top{padding-left:13px;padding-right:13px}.sort{padding-left:8px;padding-right:8px}main{padding:8px}.comment{padding:12px}.identityList{gap:3px}}@media(prefers-color-scheme:dark){:root{--bg:#121315;--panel:#1c1e21;--text:#eceff3;--sub:#9ba3ad;--line:#34383e;--reply:#25282d;--soft:#2b2022}.comment{box-shadow:none}header.top{box-shadow:none}}</style></head>' +\n    '<body><header class=\"top\"><h1>' + qmEsc(title) + '</h1><div id=\"summary\" class=\"summary\">正在加载</div></header><div id=\"sort\" class=\"sort\"><button data-hot=\"1\">热门</button><button data-hot=\"0\">最新</button></div><div id=\"tags\" class=\"tags\"></div><main id=\"list\"></main><div class=\"footer\"><div id=\"more\" class=\"loadState\">正在加载</div></div>' +\n    '<script>var state=' + initial.replace(/</g, '\\\\u003c') + ';var loading=false;var first=true;var pending=[];var seen={};var batchSize=20;' +\n    'function e(v){return String(v==null?\"\":v).replace(/[&<>\"\\u0027]/g,function(c){return{\"&\":\"&amp;\",\"<\":\"&lt;\",\">\":\"&gt;\",\"\\\\\\\"\":\"&quot;\",\"\\u0027\":\"&#39;\"}[c]})}' +\n    'function rich(v){return e(v).replace(/\\\\[[^\\\\]\\\\r\\\\n]{1,24}\\\\]/g,function(t){return\"<span class=\\\\\\\"emojiToken\\\\\\\" data-token=\\\\\\\"\"+e(t)+\"\\\\\\\">\"+e(t)+\"</span>\"})}' +\n    'function parse(v){try{return JSON.parse(String(v||\"{}\"))}catch(x){return{ok:false,error:String(x)}}}' +\n    'function sourceCall(name,arg){var bridge=window.qmRun;if(typeof bridge!==\"function\")return Promise.reject(new Error(\"阅读端没有注入 run 桥接\"));return bridge(name+\".call(this,\"+JSON.stringify(arg)+\")\").then(parse)}' +\n    'function hydrateEmoji(root){var nodes=Array.from((root||document).querySelectorAll(\".emojiToken:not([data-loading])\"));var grouped={};nodes.forEach(function(n){n.dataset.loading=\"1\";var t=n.dataset.token||\"\";(grouped[t]||(grouped[t]=[])).push(n)});var keys=Object.keys(grouped);function batch(i){if(i>=keys.length)return;var part=keys.slice(i,i+6);sourceCall(\"qmEmojiData\",{tokens:part}).then(function(data){part.forEach(function(t){var u=data[t];if(!u)return;(grouped[t]||[]).forEach(function(n){var img=document.createElement(\"img\");img.className=\"emoji \"+(t.indexOf(\"[小七_\")===0?\"xiaoqi\":\"\");img.src=u;img.alt=t;n.replaceWith(img)})});batch(i+6)}).catch(function(){batch(i+6)})}batch(0)}' +\n    'function media(x){var emoji=x.emoji?\"<img class=sticker loading=lazy src=\\\\\\\"\"+e(x.emoji)+\"\\\\\\\">\":\"\";var pics=(x.pics||[]).map(function(u){return\"<img loading=lazy src=\\\\\\\"\"+e(u)+\"\\\\\\\">\"}).join(\"\");return emoji+(pics?\"<div class=pics>\"+pics+\"</div>\":\"\")}' +\n    'function cssColor(v,d){v=String(v||\"\");return /^#[0-9a-fA-F]{3,8}$/.test(v)?v:d}' +\n    'function nameStyle(x){return\"--name-color:\"+cssColor(x.nicknameColor,\"inherit\")+\";--name-color-night:\"+cssColor(x.nicknameColorNight,cssColor(x.nicknameColor,\"inherit\"))}' +\n    'function asset(url,imgClass,label,title){var text=String(title||label||\"\");if(!url)return label?\"<span class=\\\\\\\"assetFallback\\\\\\\">\"+e(label)+\"</span>\":\"\";return\"<span class=\\\\\\\"identityAsset\\\\\\\"><img class=\\\\\\\"\"+imgClass+\"\\\\\\\" loading=lazy src=\\\\\\\"\"+e(url)+\"\\\\\\\" alt=\\\\\\\"\"+e(text)+\"\\\\\\\" title=\\\\\\\"\"+e(text)+\"\\\\\\\">\"+(label?\"<span class=\\\\\\\"assetFallback\\\\\\\">\"+e(label)+\"</span>\":\"\")+\"</span>\"}' +\n    'function honor(x){if(!x.honorTitle)return\"\";if(x.honorIcon&&x.honorTextEmbedded)return asset(x.honorIcon,\"honorImage\",x.honorTitle,x.honorTitle);if(!x.honorIcon)return\"<span class=\\\\\\\"userTag\\\\\\\">\"+e(x.honorTitle)+\"</span>\";return\"<span class=\\\\\\\"userTag honorTag\\\\\\\" style=\\\\\\\"color:\"+cssColor(x.honorColor,\"#fff\")+\"\\\\\\\"><img class=\\\\\\\"honorBg\\\\\\\" loading=lazy src=\\\\\\\"\"+e(x.honorIcon)+\"\\\\\\\"><span class=\\\\\\\"honorText\\\\\\\">\"+e(x.honorTitle)+\"</span></span>\"}' +\n    'function medal(x){if(x.medalEffectIcon)return asset(x.medalEffectIcon,\"medalEffectIcon\",x.medalTitle||\"勋章特效\",x.medalTitle||\"勋章特效\");if(!x.medalIcon)return x.medalTitle?\"<span class=\\\\\\\"userTag medalTag\\\\\\\"><span class=\\\\\\\"medalText\\\\\\\">\"+e(x.medalTitle)+\"</span></span>\":\"\";return\"<span class=\\\\\\\"userTag medalTag\\\\\\\">\"+asset(x.medalIcon,\"medalIcon\",\"\",x.medalTitle||\"勋章\")+(x.medalTitle?\"<span class=\\\\\\\"medalText\\\\\\\">\"+e(x.medalTitle)+\"</span>\":\"\")+\"</span>\"}' +\n    'function identity(x){var s=\"\";if(x.isAuthor)s+=\"<span class=\\\\\\\"userTag authorTag\\\\\\\">作者</span>\";if(x.vip)s+=\"<span class=\\\\\\\"userTag vipTag\\\\\\\">\"+(x.yearVip?\"年费VIP\":\"VIP\")+\"</span>\";if(x.levelIcon)s+=asset(x.levelIcon,\"levelIcon\",\"LV\"+String(x.level||\"\"),\"阅读等级 \"+String(x.level||\"\"));s+=honor(x);if(x.badgeTitle||x.badgeIcon){s+=\"<span class=\\\\\\\"userTag circleTag\\\\\\\" style=\\\\\\\"border-color:\"+cssColor(x.badgeColor,\"#888\")+\";color:\"+cssColor(x.badgeColor,\"#666\")+\"\\\\\\\">\"+(x.badgeIcon?asset(x.badgeIcon,\"badgeIcon\",\"\",\"圈子等级 \"+String(x.badgeLevel||\"\")):\"\")+e(x.badgeTitle)+(x.badgeLevel?\" LV\"+e(x.badgeLevel):\"\")+\"</span>\"}s+=medal(x);return s?\"<span class=\\\\\\\"identityList\\\\\\\">\"+s+\"</span>\":\"\"}' +\n    'function reference(x){return x.reference?\"<div class=reference>回复 \"+e(x.reference.name)+\"：\"+rich(x.reference.content)+\"</div>\":\"\"}' +\n    'function badges(x){return(x.god?\"<span class=badge>神评</span>\":\"\")+(x.hot?\"<span class=hot>热门</span>\":\"\")}' +\n    'function card(x){var id=e(x.id),rc=Number(x.replies)||0;return\"<article class=comment><div class=user><div class=avatarWrap><img class=avatar src=\\\\\\\"\"+e(x.avatar)+\"\\\\\\\">\"+(x.avatarBox?\"<img class=avatarFrame loading=lazy src=\\\\\\\"\"+e(x.avatarBox)+\"\\\\\\\">\":\"\")+\"</div><div class=who><div class=nameLine><span class=name style=\\\\\\\"\"+nameStyle(x)+\"\\\\\\\">\"+e(x.name)+\"</span>\"+identity(x)+\"</div><div class=time>\"+e(x.time)+\"</div></div><div class=likes>♡ \"+e(x.likes)+\"</div></div><div class=body>\"+badges(x)+rich(x.content)+\"</div>\"+reference(x)+media(x)+(rc!==0?\"<div class=\\\\\\\"replies\\\\\\\" hidden></div><button class=replyBtn data-id=\\\\\\\"\"+id+\"\\\\\\\" data-cursor=\\\\\\\"\\\\\\\" onclick=loadReplies(this)>\"+(rc>0?\"查看 \"+e(rc)+\" 条回复\":\"查看回复\")+\"</button>\":\"\")+\"</article>\"}' +\n    'function replyCard(x){return\"<div class=reply data-reply-id=\\\\\\\"\"+e(x.id)+\"\\\\\\\"><div class=replyHead><div class=replyIdentity><b class=name style=\\\\\\\"\"+nameStyle(x)+\"\\\\\\\">\"+e(x.name)+\"</b>\"+identity(x)+\"</div><span class=time>\"+e(x.time)+\"</span></div><div class=body>\"+badges(x)+rich(x.content)+\"</div>\"+reference(x)+media(x)+\"</div>\"}' +\n    'function resetList(){state.cursor=\"\";first=true;pending=[];seen={};loading=false;document.getElementById(\"list\").innerHTML=\"\";document.getElementById(\"summary\").textContent=\"正在加载\";loadMore()}' +\n    'function drawSort(){Array.from(document.querySelectorAll(\"#sort button\")).forEach(function(b){b.className=b.dataset.hot==state.hot?\"active\":\"\";b.onclick=function(){if(state.hot==b.dataset.hot)return;state.hot=b.dataset.hot;drawSort();resetList()}})}' +\n    'function drawTags(tags){if(!tags||!tags.length)return;var box=document.getElementById(\"tags\");if(box.children.length)return;tags.forEach(function(t){var b=document.createElement(\"button\");b.textContent=t.title+(t.count?\" \"+t.count:\"\");b.dataset.id=t.id;b.className=t.id==state.tag?\"active\":\"\";b.onclick=function(){Array.from(box.children).forEach(function(x){x.className=\"\"});b.className=\"active\";state.tag=t.id;resetList()};box.appendChild(b)})}' +\n    'function commitBatch(){var box=document.getElementById(\"list\"),status=document.getElementById(\"more\"),items=pending.splice(0,batchSize);if(first&&!items.length)box.innerHTML=\"<div class=empty>暂无评论</div>\";if(items.length){var old=box.querySelector(\".empty\");if(old)old.remove();box.insertAdjacentHTML(\"beforeend\",items.map(card).join(\"\"));hydrateEmoji(box)}first=false;loading=false;status.textContent=(pending.length||state.cursor)?\"继续下拉加载\":\"没有更多评论了\";setTimeout(function(){if(document.documentElement.scrollHeight<=window.innerHeight+120&&(pending.length||state.cursor))loadMore()},60)}' +\n    'function fetchUntilBatch(){var before=state.cursor;sourceCall(\"qmCommentPageData\",state).then(function(d){if(!d.ok)throw new Error(d.error||\"加载失败\");drawTags(d.tags);if(d.total!==undefined&&String(d.total)!==\"\")document.getElementById(\"summary\").textContent=\"共 \"+d.total+\" 条\";(d.items||[]).forEach(function(x){var k=x.id||x.name+x.content;if(!seen[k]){seen[k]=1;pending.push(x)}});state.cursor=d.next||\"\";if(state.cursor&&state.cursor==before)state.cursor=\"\";if(pending.length<batchSize&&state.cursor)fetchUntilBatch();else commitBatch()}).catch(function(err){loading=false;var status=document.getElementById(\"more\");status.textContent=\"加载失败，点击重试\";status.dataset.error=e(err.message||err)})}' +\n    'function loadMore(){if(loading||(!first&&!pending.length&&!state.cursor))return;loading=true;document.getElementById(\"more\").textContent=\"加载中\";if(pending.length>=batchSize||(!state.cursor&&pending.length))commitBatch();else fetchUntilBatch()}' +\n    'function loadReplies(btn){if(btn.disabled)return;btn.disabled=true;var box=btn.previousElementSibling,before=btn.dataset.cursor||\"\";sourceCall(\"qmReplyPageData\",{kind:state.kind,bookId:state.bookId,chapterId:state.chapterId,commentId:btn.dataset.id,cursor:before}).then(function(d){if(!d.ok)throw new Error(d.error||\"回复加载失败\");box.hidden=false;box.removeAttribute(\"hidden\");box.classList.remove(\"hidden\");var known={};Array.from(box.querySelectorAll(\"[data-reply-id]\")).forEach(function(n){known[n.dataset.replyId]=1});var items=(d.items||[]).filter(function(x){var k=String(x.id||x.name+x.content);if(known[k])return false;known[k]=1;return true});if(!items.length&&!before)box.innerHTML=\"<div class=emptyReply>暂无回复</div>\";else if(items.length)box.insertAdjacentHTML(\"beforeend\",items.map(replyCard).join(\"\"));hydrateEmoji(box);var next=String(d.next||\"\");if(next==before)next=\"\";btn.dataset.cursor=next;btn.disabled=!next;btn.textContent=next?\"加载更多回复\":items.length?\"回复已全部加载\":\"暂无回复\"}).catch(function(){btn.disabled=false;btn.textContent=\"回复加载失败，点击重试\"})}' +\n    'document.addEventListener(\"error\",function(ev){var img=ev.target;if(!img||img.tagName!==\"IMG\")return;var assetNode=img.parentNode;if(assetNode&&assetNode.classList&&assetNode.classList.contains(\"identityAsset\"))assetNode.classList.add(\"failed\");else img.style.display=\"none\"},true);' +\n    'drawSort();document.getElementById(\"more\").onclick=loadMore;window.addEventListener(\"scroll\",function(){if(window.scrollY+window.innerHeight>=document.documentElement.scrollHeight-280)loadMore()});loadMore();</script></body></html>'\n}\n\nfunction qmOpenComment(kind, bid, cid, pid, heading, checkId) {\n  var html = qmCommentHtml.call(this, kind, bid, cid, pid, heading, checkId)\n  var cfg = qmCommentConfig.call(this)\n  var runtimeJava = qmJavaOf(this)\n  if (!qmCallable(runtimeJava, 'showBrowser')) return false\n  runtimeJava.showBrowser('https://api-cmnt.wtzw.com/', html, 'window.java=java;window.cache=cache;window.source=source;window.qmRun=run;window.qmLocalCommentPage=true;', JSON.stringify({state:4,isHideable:true,heightPercentage:cfg.height,widthPercentage:1.0,dismissOnTouchOutside:true,skipCollapsed:true,expandedCornersRadius:16,isGestureInsetBottomIgnored:true,hardwareAccelerated:true,webViewInitialScale:100}))\n  return true\n}\n\nfunction qmSvg(kind, bid, cid, pid, count, label, checkId, hot) {\n  var normalizedKind = String(kind || '')\n  var cfg = qmCommentConfig.call(this)\n  var color = cfg.color\n  count = Number(count || 0)\n  if (count <= 0) return ''\n  if (normalizedKind == 'paragraph' && cfg.split) color = hot ? cfg.hotColor : count >= cfg.splitCount ? cfg.splitColor : cfg.color\n  count = Math.min(count, 999)\n  var svg\n  if (normalizedKind == 'paragraph') {\n    var displayText = String(Math.min(count, 999))\n    var custom = cfg.template == '起点' ? '' : qmLoginValue.call(this, cfg.template.replace('样式', '◎ 气泡'), '')\n    svg = custom.trim() ? custom.replace(/\\$\\{qpyscolor\\}/g, color).replace(/\\$\\{qpwzcolor\\}/g, color).replace(/\\$\\{font\\}/g, 'Arial').replace(/\\$\\{displayText\\}/g, displayText) :\n      '<svg viewBox=\"5 14 45 36\" xmlns=\"http://www.w3.org/2000/svg\" width=\"180\" height=\"144\"><path d=\"M44 48 Q48 48 48 44 L48 20 Q48 16 44 16 L20 16 Q16 16 16 20 L16 24 S16 28 10 30 Q6 32 10 34 Q16 36 16 38 L16 44 Q16 48 20 48 Z\" fill=\"none\" stroke=\"' + color + '\" stroke-width=\"0.7\"/><text x=\"32\" y=\"38\" text-anchor=\"middle\" font-family=\"Arial\" font-weight=\"600\" font-size=\"18\" fill=\"' + color + '\" dominant-baseline=\"middle\">' + displayText + '</text></svg>'\n  } else if (normalizedKind == 'book' || normalizedKind == 'chapter') {\n    svg = '<svg width=\"1000\" height=\"128\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"6\" y=\"6\" width=\"988\" height=\"116\" rx=\"12\" fill=\"none\" stroke=\"' + color + '\" stroke-width=\"3\"/><text x=\"48\" y=\"79\" font-family=\"sans-serif\" font-size=\"38\" fill=\"' + color + '\">' + qmEsc(label) + '</text><text x=\"950\" y=\"79\" text-anchor=\"end\" font-family=\"Arial\" font-size=\"34\" fill=\"' + color + '\">' + count + ' 条 ›</text></svg>'\n  } else {\n    svg = '<svg width=\"1000\" height=\"800\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"150\" y=\"150\" width=\"665\" height=\"525\" rx=\"175\" fill=\"none\" stroke=\"' + color + '\" stroke-width=\"18\"/><text x=\"480\" y=\"535\" font-family=\"Arial\" text-anchor=\"middle\" font-size=\"298\" fill=\"' + color + '\">' + count + '</text></svg>'\n  }\n  var encoded = qmBase64Encode(this, svg)\n  if (!encoded) return ''\n  var call = 'qmOpenComment.call(this,' + [normalizedKind, bid, cid, pid, label || '', checkId || ''].map(function (x) { return JSON.stringify(String(x || '')) }).join(',') + ')'\n  var style = normalizedKind == 'paragraph' ? qmCommentConfig.call(this).svgSize : 'FULL'\n  return 'data:image/svg+xml;base64,' + encoded + ',' + JSON.stringify({style:style,type:'qmpl',click:call})\n}\n\nfunction qmBubbleImage(kind, bid, cid, pid, count, label, checkId, hot) {\n  var data = qmSvg.call(this, kind, bid, cid, pid, count, label, checkId, hot)\n  return data ? '<img src=\"' + data + '\">' : ''\n}\n\nfunction qmGodImage(bid, cid, pid, gid, text) {\n  text = String(text || '').replace(/[\\r\\n]+/g, ' ').trim()\n  if (!gid || !text) return ''\n  if (text.length > 18) text = text.slice(0, 18) + '...'\n  var svg = '<svg width=\"1000\" height=\"120\" xmlns=\"http://www.w3.org/2000/svg\">' +\n    '<rect x=\"2\" y=\"0\" width=\"996\" height=\"100\" fill=\"rgba(255,255,255,0.25)\" rx=\"35\" stroke=\"#888\" stroke-width=\"1\"/>' +\n    '<rect x=\"32\" y=\"22\" width=\"140\" height=\"56\" rx=\"20\" fill=\"#FF4444\"/>' +\n    '<text x=\"102\" y=\"64\" font-size=\"32\" font-family=\"Segoe UI,Arial,Helvetica,sans-serif\" fill=\"#FFF\" text-anchor=\"middle\" font-weight=\"bold\">神评</text>' +\n    '<text x=\"196\" y=\"64\" font-size=\"38\" font-family=\"Segoe UI,Arial,Helvetica,sans-serif\" fill=\"#000\" font-weight=\"bold\">' + qmEsc(text) + '</text></svg>'\n  var encoded = qmBase64Encode(this, svg)\n  if (!encoded) return ''\n  var call = 'qmOpenComment.call(this,' + ['paragraph', bid, cid, pid, '七猫神评', gid].map(function (x) { return JSON.stringify(String(x || '')) }).join(',') + ')'\n  var data = 'data:image/svg+xml;base64,' + encoded + ',' + JSON.stringify({style:'FULL',type:'qmpl-god',click:call})\n  return '<img src=\"' + data + '\">'\n}\n\nfunction qmChapterReviewCount(bid, cid) {\n  var runtimeCache = qmCacheOf(this)\n  var key = 'qm-count-chapter-' + bid + '-' + cid\n  var saved = runtimeCache && runtimeCache.getFromMemory(key)\n  if (saved != null) return Number(saved || 0)\n  var data = qmGet.call(this, 'https://api-cmnt.wtzw.com/api/v1/comment/chapter-end-comment', {book_id:bid,chapter_ids:cid}).data || {}\n  var comments = data.comments || []\n  var count = comments.length ? Number(comments[0].count || 0) : 0\n  if (runtimeCache) runtimeCache.putMemory(key, String(count))\n  return count\n}\n\nfunction qmBookReviewCount(bid) {\n  var runtimeCache = qmCacheOf(this)\n  var key = 'qm-count-book-' + bid\n  var saved = runtimeCache && runtimeCache.getFromMemory(key)\n  if (saved != null) return Number(saved || 0)\n  var data = qmGet.call(this, 'https://api-cmnt.wtzw.com/api/v2/community/book-evaluates', {circle_id:bid,need_common:'0',tag_id:'1',book_id:bid,sort:'0'}).data || {}\n  var count = Number(data.evaluates_info && data.evaluates_info.eval_comment_count || data.comment_count || 0)\n  if (runtimeCache) runtimeCache.putMemory(key, String(count))\n  return count\n}\n\nfunction qmNovelContent(text, baseUrl) {\n  var ctx = this\n  var raw = qmParse(text).data || {}\n  var bid = qmUrlValue(baseUrl, 'id')\n  var cid = qmUrlValue(baseUrl, 'chapterId')\n  var cfg = qmCommentConfig.call(ctx)\n  var readerType = qmReaderType(ctx, baseUrl)\n  var content = readerType == '3' ? qmEpubRemoteDecrypt.call(ctx, raw.content || '') : qmDecryptChapter(raw.content || '')\n  if (!qmCommentsAllowed(ctx, baseUrl)) return content\n  var marks = {}\n  if (cfg.paragraph || cfg.god) {\n    try {\n      var bubbleResponse = qmPostForm.call(ctx, 'https://api-cmnt.wtzw.com/api/v1/paragraph/bubbles', {\n        book_id:bid,chapters:JSON.stringify([{chapter_id:cid,chapter_md5:String(raw.content_md5 || '')}])\n      })\n      var chapters = bubbleResponse.data && bubbleResponse.data.chapters || []\n      var bubbles = chapters.length ? chapters[0].bubbles || [] : []\n      bubbles.forEach(function (item) {\n        var count = Number(item.c || 0)\n        if (count > 0 || item.gid || item.gtxt) marks[String(item.p)] = {count:count,hot:String(item.hot || '') == '1',gid:String(item.gid || ''),gtxt:String(item.gtxt || '')}\n      })\n    } catch (bubbleError) {}\n  }\n  var lines = String(content).split('\\n')\n  lines.forEach(function (line, index) {\n    var pid = qmMd5(line).slice(0, 8)\n    var mark = marks[pid]\n    if (!mark || !line) return\n    var bubble = cfg.paragraph ? qmBubbleImage.call(ctx, 'paragraph', bid, cid, pid, mark.count, mark.hot ? '热门段评' : '七猫段评', mark.gid, mark.hot) : ''\n    if (bubble) lines[index] += bubble\n    var god = cfg.god ? qmGodImage.call(ctx, bid, cid, pid, mark.gid, mark.gtxt) : ''\n    if (god) lines[index] += '\\n' + god\n  })\n  if (cfg.chapter) try { var chapterBubble = qmBubbleImage.call(ctx, 'chapter', bid, cid, '', qmChapterReviewCount.call(ctx, bid, cid), '本章说'); if (chapterBubble) lines.push(chapterBubble) } catch (chapterError) {}\n  if (cfg.book) try { var bookBubble = qmBubbleImage.call(ctx, 'book', bid, '', '', qmBookReviewCount.call(ctx, bid), '本书书评'); if (bookBubble) lines.push(bookBubble) } catch (bookError) {}\n  return lines.join('\\n')\n}\n\nfunction qmContentTitle(value, baseUrl) {\n  var text = String(value || '')\n  var runtimeChapter = qmChapterOf(this)\n  try { if (runtimeChapter) runtimeChapter.putImgUrl(null) } catch (e) {}\n  return text\n}\n\nfunction qmReadContent(text, baseUrl) {\n  if (/^data:;base64,/.test(String(baseUrl)) && /[\"']type[\"']\\s*:\\s*[\"']video[\"']/.test(String(baseUrl))) {\n    return qmHexDecodeAscii(text)\n  }\n  if (String(baseUrl).indexOf('/playlet/api/info') >= 0) {\n    var video = qmParse(text).data || {}\n    var playList = video.play_list || []\n    var sort = qmUrlValue(baseUrl, 'qm_sort')\n    var runtimeChapter = qmChapterOf(this)\n    if (!sort) {\n      try {\n        var titleMatch = String(runtimeChapter && runtimeChapter.title || '').match(/第\\s*(\\d+)\\s*集/)\n        if (titleMatch) sort = titleMatch[1]\n      } catch (titleError) {}\n    }\n    var item = playList.filter(function (x) { return sort && String(x.sort) == String(sort) })[0]\n    if (!item) {\n      var chapterIndex = -1\n      try { chapterIndex = Number(runtimeChapter && runtimeChapter.index) } catch (indexError) {}\n      if (chapterIndex >= 0) item = playList[chapterIndex]\n    }\n    if (!item) item = playList.filter(function (x) { return !!(x.video_url || x.video_url_h265) })[0] || {}\n    return String(item.video_url || item.video_url_h265 || '')\n  }\n  if (String(baseUrl).indexOf('/album/info') >= 0) {\n    var audio = qmParse(text).data || {}\n    var voices = audio.voice_list || []\n    return voices.length ? String(voices[0].voice_url) : '本集暂无可播放音频'\n  }\n  return qmNovelContent.call(this, text, baseUrl)\n}\n",
    "lastUpdateTime": 1786458394650,
    "loginUi": "[\n  {\n    \"name\": \"游客身份与直连状态\",\n    \"type\": \"button\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"name\": \"直连登录测试\",\n    \"type\": \"button\",\n    \"action\": \"testQmLogin()\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.48\n    }\n  },\n  {\n    \"name\": \"重置游客身份\",\n    \"type\": \"button\",\n    \"action\": \"resetQmLogin()\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.48\n    }\n  },\n  {\n    \"name\": \"EPUB服务器解密（请填写EPUB服务密钥）\",\n    \"type\": \"button\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"name\": \"◎ EPUB服务密钥\",\n    \"type\": \"password\",\n    \"default\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.64\n    }\n  },\n  {\n    \"name\": \"测试EPUB服务\",\n    \"type\": \"button\",\n    \"action\": \"testQmEpubServer()\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.34\n    }\n  },\n  {\n    \"name\": \"发现页模式（点击后返回发现页）\",\n    \"type\": \"button\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"name\": \"小说\",\n    \"type\": \"button\",\n    \"action\": \"setQmExploreMode('novel')\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.24\n    }\n  },\n  {\n    \"name\": \"图书\",\n    \"type\": \"button\",\n    \"action\": \"setQmExploreMode('publish')\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.24\n    }\n  },\n  {\n    \"name\": \"听书\",\n    \"type\": \"button\",\n    \"action\": \"setQmExploreMode('audio')\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.24\n    }\n  },\n  {\n    \"name\": \"短剧/漫剧\",\n    \"type\": \"button\",\n    \"action\": \"setQmExploreMode('video')\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.24\n    }\n  },\n  {\n    \"name\": \"评论设置\",\n    \"type\": \"button\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"name\": \"段评开关\",\n    \"viewName\": \"' 段评开关'\",\n    \"type\": \"toggle\",\n    \"action\": \"commentRefreshTip()\",\n    \"chars\": [\n      \"🔳\",\n      \"✅\"\n    ],\n    \"default\": \"🔳\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"name\": \"神评开关\",\n    \"viewName\": \"' 神评开关'\",\n    \"type\": \"toggle\",\n    \"action\": \"commentRefreshTip()\",\n    \"chars\": [\n      \"🔳\",\n      \"✅\"\n    ],\n    \"default\": \"🔳\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"name\": \"段评分色\",\n    \"viewName\": \"' 段评分色'\",\n    \"type\": \"toggle\",\n    \"action\": \"commentRefreshTip()\",\n    \"chars\": [\n      \"🔳\",\n      \"✅\"\n    ],\n    \"default\": \"🔳\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"name\": \"本章说\",\n    \"viewName\": \"' 本章说'\",\n    \"type\": \"toggle\",\n    \"action\": \"commentRefreshTip()\",\n    \"chars\": [\n      \"🔳\",\n      \"✅\"\n    ],\n    \"default\": \"🔳\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"name\": \"书评开关\",\n    \"viewName\": \"' 书评开关'\",\n    \"type\": \"toggle\",\n    \"action\": \"commentRefreshTip()\",\n    \"chars\": [\n      \"🔳\",\n      \"✅\"\n    ],\n    \"default\": \"🔳\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"name\": \"热门评论\",\n    \"viewName\": \"' 热门评论'\",\n    \"type\": \"toggle\",\n    \"action\": \"commentRefreshTip()\",\n    \"chars\": [\n      \"🔳\",\n      \"✅\"\n    ],\n    \"default\": \"🔳\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"name\": \"评论图片\",\n    \"viewName\": \"' 评论配图'\",\n    \"type\": \"toggle\",\n    \"action\": \"commentRefreshTip()\",\n    \"chars\": [\n      \"🔳\",\n      \"✅\"\n    ],\n    \"default\": \"🔳\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.33\n    }\n  },\n  {\n    \"name\": \"◎ 段评颜色\",\n    \"type\": \"text\",\n    \"default\": \"#000000\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.48\n    }\n  },\n  {\n    \"name\": \"◎ 段评分色\",\n    \"type\": \"text\",\n    \"default\": \"#E34B4B\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.48\n    }\n  },\n  {\n    \"name\": \"◎ 热评颜色\",\n    \"type\": \"text\",\n    \"default\": \"#E23B3B\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.48\n    }\n  },\n  {\n    \"name\": \"◎ 分色数值\",\n    \"type\": \"text\",\n    \"default\": \"45\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.48\n    }\n  },\n  {\n    \"name\": \"◎ SVG大小\",\n    \"type\": \"select\",\n    \"chars\": [\n      \"text\",\n      \"TEXT\"\n    ],\n    \"default\": \"text\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.48\n    }\n  },\n  {\n    \"name\": \"◎ 模板\",\n    \"type\": \"select\",\n    \"chars\": [\n      \"起点\",\n      \"样式一\",\n      \"样式二\",\n      \"样式三\"\n    ],\n    \"default\": \"起点\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.48\n    }\n  },\n  {\n    \"name\": \"◎ 半屏高度\",\n    \"viewName\": \"' ◎ 半屏高度(%)'\",\n    \"type\": \"text\",\n    \"default\": \"80\",\n    \"action\": \"saveQmCommentSettings()\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.48\n    }\n  },\n  {\n    \"name\": \"◎ 评论主题\",\n    \"type\": \"select\",\n    \"chars\": [\n      \"自动\",\n      \"浅色\",\n      \"深色\"\n    ],\n    \"default\": \"自动\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.48\n    }\n  },\n  {\n    \"name\": \"保存评论样式\",\n    \"type\": \"button\",\n    \"action\": \"saveQmCommentSettings()\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.48\n    }\n  },\n  {\n    \"name\": \"自定义气泡\",\n    \"type\": \"button\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"name\": \"◎ 气泡一\",\n    \"type\": \"text\",\n    \"default\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"name\": \"◎ 气泡二\",\n    \"type\": \"password\",\n    \"default\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"name\": \"◎ 气泡三\",\n    \"type\": \"password\",\n    \"default\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  }\n]",
    "loginUrl": "function login() {}\nfunction testQmLogin() {\n  try {\n    var token = qmLogin(true)\n    java.longToast(token ? '七猫直连游客登录成功' : '七猫登录失败')\n  } catch (e) { java.longToast('七猫直连失败：' + e.message) }\n}\nfunction resetQmLogin() {\n  source.put('qm_token', '')\n  source.put('qm_exp', '0')\n  source.put('qm_uid', '')\n  source.put('qm_device', '')\n  java.longToast('七猫游客身份已重置，下次请求会自动注册')\n}\nfunction testQmEpubServer() {\n  try {\n    var base = qmEpubServiceBase.call(this)\n    var token = String(result['◎ EPUB服务密钥'] || '').trim()\n    if (!token) return java.longToast('请填写EPUB服务密钥')\n    var saved = new Packages.java.util.HashMap()\n    saved.put('◎ EPUB服务密钥', token)\n    java.upLoginData(saved)\n    var headers = {'accept':'text/plain'}\n    if (token) headers['X-Qimao-Token'] = token\n    var response = String(java.ajax(base + '/health,' + JSON.stringify({headers:headers})) || '').trim()\n    java.longToast(response == 'ok' ? 'EPUB 解密服务连接成功，请刷新书籍目录和正文' : 'EPUB 服务响应异常：' + response)\n  } catch (e) { java.longToast('EPUB 服务连接失败：' + e.message) }\n}\nfunction setQmExploreMode(mode) {\n  mode = /^(novel|publish|audio|video)$/.test(String(mode)) ? String(mode) : 'novel'\n  source.put('qm_explore_mode', mode)\n  java.longToast('发现页已切换为：' + ({novel:'小说',publish:'图书',audio:'听书',video:'短剧/漫剧'}[mode]) + '，请返回发现页刷新')\n}\nfunction commentRefreshTip() {\n  java.longToast('\\n评论开关不会实时生效\\n修改后请退出配置页，返回阅读页手动刷新正文')\n}\nfunction saveQmCommentSettings() {\n  var color = String(result['◎ 段评颜色'] || '#000000').trim()\n  if (!/^#[0-9a-fA-F]{6}$/.test(color)) return java.longToast('颜色格式应为 #000000')\n  var splitColor = String(result['◎ 段评分色'] || '#E34B4B').trim()\n  var hotColor = String(result['◎ 热评颜色'] || '#E23B3B').trim()\n  if (!/^#[0-9a-fA-F]{6}$/.test(splitColor) || !/^#[0-9a-fA-F]{6}$/.test(hotColor)) return java.longToast('分色和热评颜色应为 #E34B4B 格式')\n  var splitCount = Number(result['◎ 分色数值'] || 45)\n  if (!isFinite(splitCount) || splitCount < 1) return java.longToast('分色数值请输入大于 0 的整数')\n  var height = Number(result['◎ 半屏高度'] || 80)\n  if (!isFinite(height) || height < 20 || height > 100) return java.longToast('半屏高度请输入 20 到 100')\n  var map = new Packages.java.util.HashMap()\n  map.put('◎ 段评颜色', color)\n  map.put('◎ 段评分色', splitColor)\n  map.put('◎ 热评颜色', hotColor)\n  map.put('◎ 分色数值', String(Math.floor(splitCount)))\n  map.put('◎ 半屏高度', String(height))\n  map.put('◎ SVG大小', String(result['◎ SVG大小'] || 'text'))\n  map.put('◎ 模板', String(result['◎ 模板'] || '起点'))\n  map.put('◎ 评论主题', String(result['◎ 评论主题'] || '自动'))\n  try { java.upLoginData(map) } catch (updateError) { return java.longToast('评论设置保存失败：' + updateError.message) }\n  java.longToast('评论颜色、分色、主题和窗口高度已保存，刷新正文后生效')\n}",
    "respondTime": 3053,
    "ruleBookInfo": {
      "author": "data.author",
      "coverUrl": "data.image_link",
      "init": "@js:\nJSON.stringify(qmBookInfo.call(this, result, baseUrl))",
      "intro": "data.intro",
      "kind": "data.kind||data.ptags||data.tags",
      "lastChapter": "data.last_chapter||data.latest_chapter_title",
      "name": "data.title",
      "tocUrl": "data.toc_url",
      "wordCount": "data.words_num"
    },
    "ruleContent": {
      "content": "@js:\nqmReadContent.call(this, result, baseUrl)",
      "imageDecode": "result",
      "title": "@js:\nvar qmTitleValue = '';\ntry { qmTitleValue = typeof title !== 'undefined' ? title : ''; } catch (e) {}\ntry { if (!qmTitleValue && chapter && chapter.title) qmTitleValue = chapter.title; } catch (e2) {}\nqmContentTitle.call(this, qmTitleValue || result, baseUrl)"
    },
    "ruleExplore": {
      "author": "author",
      "bookList": "<js>\nqmExploreBooks.call(this, result, qmExploreMode.call(this), baseUrl)\n</js>\n$.data[*]",
      "bookUrl": "url",
      "coverUrl": "cover",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "last_chapter",
      "name": "title",
      "wordCount": "word_count"
    },
    "ruleSearch": {
      "author": "author",
      "bookList": "<js>\nqmSearchBooks.call(this, result, baseUrl)\n</js>\n$.data[*]",
      "bookUrl": "url",
      "coverUrl": "cover",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "last_chapter",
      "name": "title",
      "wordCount": "word_count"
    },
    "ruleToc": {
      "chapterList": "@js:\nqmToc.call(this, result, baseUrl)",
      "chapterName": "title",
      "chapterUrl": "url",
      "updateTime": "info"
    },
    "searchUrl": "@js:\nqmSearchUrl.call(this, key, page)",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "无错",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.wcshuba.com",
    "customButton": false,
    "customOrder": 184,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1786333297987,
    "loginUrl": "/",
    "respondTime": 17180,
    "ruleBookInfo": {
      "tocUrl": ".bookchaptermore@href"
    },
    "ruleContent": {
      "content": ".content@html"
    },
    "ruleSearch": {
      "author": "dd:last-of-type a@text",
      "bookList": ".content > dl",
      "bookUrl": "dt.cover-wrapper a@href",
      "coverUrl": "img@src",
      "intro": "dd:first-of-type@text",
      "name": "dt a@title"
    },
    "ruleToc": {
      "chapterList": ".bookchapter>ul>li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "a:contains(下一页)@href"
    },
    "searchUrl": "https://www.wcshuba.com/search/?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "// 原作者：夜明空＆zimushui\n// 2026/4/5/ By sjshb57\n修复章节名称显示，删除括号内内容并移除前置序号\n// 2026/4/6/ By sjshb57\n移除正文内容显示首行标题＆同时修复目录（上）（下）单字括号内容被误删的问题，并且优化显示，（上）→ (上)，中文括号 → 空格+英文括号，符合审美",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "🌙 得奇小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.deqixs.co/",
    "bookUrlPattern": "https?:\\/\\/www\\.deqixs\\.co\\/(books|index)\\/\\d+.*",
    "customButton": false,
    "customOrder": 185,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻小说\",\"url\":\"/sort/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市小说\",\"url\":\"/sort/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙侠小说\",\"url\":\"/sort/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史小说\",\"url\":\"/sort/4/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻小说\",\"url\":\"/sort/5/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"诸天无限\",\"url\":\"/sort/6/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"悬疑小说\",\"url\":\"/sort/7/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"体育小说\",\"url\":\"/sort/8/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏小说\",\"url\":\"/sort/9/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"综合其他\",\"url\":\"/sort/10/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"总点击榜\",\"url\":\"https://www.deqixs.co/top/allvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月点击榜\",\"url\":\"https://www.deqixs.co/top/monthvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周点击榜\",\"url\":\"https://www.deqixs.co/top/weekvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日点击榜\",\"url\":\"https://www.deqixs.co/top/dayvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总推荐榜\",\"url\":\"https://www.deqixs.co/top/allvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月推荐榜\",\"url\":\"https://www.deqixs.co/top/monthvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周推荐榜\",\"url\":\"https://www.deqixs.co/top/weekvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日推荐榜\",\"url\":\"https://www.deqixs.co/top/dayvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总月票榜\",\"url\":\"https://www.deqixs.co/top/allvipvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"本月票榜\",\"url\":\"https://www.deqixs.co/top/monthvipvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"前月票榜\",\"url\":\"https://www.deqixs.co/top/previpvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周月票榜\",\"url\":\"https://www.deqixs.co/top/weekvipvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日月票榜\",\"url\":\"https://www.deqixs.co/top/dayvipvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总鲜花榜\",\"url\":\"https://www.deqixs.co/top/allflower/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月鲜花榜\",\"url\":\"https://www.deqixs.co/top/monthflower/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周鲜花榜\",\"url\":\"https://www.deqixs.co/top/weekflower/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日鲜花榜\",\"url\":\"https://www.deqixs.co/top/dayflower/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总鸡蛋榜\",\"url\":\"https://www.deqixs.co/top/allegg/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月鸡蛋榜\",\"url\":\"https://www.deqixs.co/top/monthegg/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周鸡蛋榜\",\"url\":\"https://www.deqixs.co/top/weekegg/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日鸡蛋榜\",\"url\":\"https://www.deqixs.co/top/dayegg/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总销售榜\",\"url\":\"https://www.deqixs.co/top/allsale/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月销售榜\",\"url\":\"https://www.deqixs.co/top/monthsale/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周销售榜\",\"url\":\"https://www.deqixs.co/top/weeksale/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日销售榜\",\"url\":\"https://www.deqixs.co/top/daysale/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月勤更榜\",\"url\":\"https://www.deqixs.co/top/monthwords/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周勤更榜\",\"url\":\"https://www.deqixs.co/top/weekwords/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日勤更榜\",\"url\":\"https://www.deqixs.co/top/daywords/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最近更新\",\"url\":\"https://www.deqixs.co/top/lastupdate/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最新入库\",\"url\":\"https://www.deqixs.co/top/postdate/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最新上架\",\"url\":\"https://www.deqixs.co/top/signtime/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"收藏榜\",\"url\":\"https://www.deqixs.co/top/goodnum/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"字数榜\",\"url\":\"https://www.deqixs.co/top/words/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"编辑推荐\",\"url\":\"https://www.deqixs.co/top/toptime/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"新书榜\",\"url\":\"https://www.deqixs.co/top/newhot/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\",\"Accept-Language\":\"zh-CN,zh;q=0.9\"}",
    "lastUpdateTime": 1776137191747,
    "loginUrl": "/",
    "respondTime": 11593,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "{{@@[property~=update_time|status|category]@content##(\\d+):(\\d+):(\\d+)}},{{@@.booktag@.blue.1@text}}",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "wordCount": ".booktag@.blue.0@script@all##.*\\('(\\d+)'\\).*##$1"
    },
    "ruleContent": {
      "content": "@js:\nvar url = String(baseUrl);\nvar match = url.match(/\\/(\\d+)\\/(\\d+)\\.html/);\nvar content = '';\nif (match) {\n    var origin = url.match(/(https?:\\/\\/[^\\/]+)/)[1];\n    var jsUrl = origin + '/scripts/chapter.js.php?aid=' + match[1] + '&cid=' + match[2] + '&referrer=' + encodeURIComponent(url);\n    var scriptStr = java.ajax(jsUrl);\n    var token = scriptStr.match(/chapterToken\\s*=\\s*['\"]([^'\"]+)['\"]/);\n    var ts = scriptStr.match(/timestamp\\s*=\\s*['\"]?([^'\";\\s]+)/);\n    var nc = scriptStr.match(/nonce\\s*=\\s*['\"]([^'\"]+)['\"]/);\n    if (token && ts && nc) {\n        var ajaxUrl = origin + '/modules/article/ajax2.php?aid=' + match[1] + '&cid=' + match[2] + '&token=' + token[1] + '&timestamp=' + ts[1] + '&nonce=' + nc[1];\n        var opt = JSON.stringify({\"charset\": \"gbk\", \"headers\": {\"X-Requested-With\": \"XMLHttpRequest\", \"Referer\": url}});\n        var res = java.ajax(ajaxUrl + ',' + opt);\n        try {\n            content = JSON.parse(res).data.content;\n        } catch(e) {}\n    }\n}\ncontent ? content : java.getString('#rtext@html');",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "@js:\nconst FILTER_RULES = [\n  /更新不易.+?看最新章节！/g,\n  /更新不易.+?看最新无错章节！/g, \n  /更新不易.+?最新小说章节！/g,\n  /速.?读.?谷/g, \n  /本章节未完.+?请订阅/g,\n  /↑返回顶部↑/g,\n  /[（(]本章.+?完[）)]/g,\n  /^.+\\n/,\n]\n\nfor(let reg of FILTER_RULES){\n\tresult = result.replace(reg, \"\")\n}\nresult;"
    },
    "ruleExplore": {
      "author": "class.author.0@text##作者[：:]",
      "bookList": "class.bookbox",
      "bookUrl": "class.bookname@a@href",
      "coverUrl": "class.bookname@a@href\n@js:\nvar m = String(result).match(/\\/(\\d+)\\/?$/);\nvar id = m ? m[1] : '0';\nvar p = id.length <= 3 ? '0' : id.slice(0, -3);\nreturn 'https://www.deqixs.co/files/article/image/' + p + '/' + id + '/' + id + 's.jpg';",
      "intro": "class.update@textNodes##简介[：:]",
      "kind": "class.author.2@text##阅读量[：:]",
      "lastChapter": "class.cat@a@text",
      "name": "class.bookname@a@text",
      "wordCount": "class.author.1@html\n@js:\nvar m = String(result).match(/towan\\('(\\d+)'\\)/);\nif(m) { return m[1]; }\nreturn String(result).replace(/<[^>]+>/g, '').replace(/字数[：:]/g, '').trim();"
    },
    "ruleSearch": {
      "author": "class.author.0@text##作者[：:]",
      "bookList": "class.bookbox",
      "bookUrl": "class.bookname@a@href",
      "coverUrl": "class.bookname@a@href\n@js:\nvar m = String(result).match(/\\/(\\d+)\\/?$/);\nvar id = m ? m[1] : '0';\nvar p = id.length <= 3 ? '0' : id.slice(0, -3);\nreturn 'https://www.deqixs.co/files/article/image/' + p + '/' + id + '/' + id + 's.jpg';",
      "intro": "class.update@textNodes##简介[：:]",
      "kind": "class.author.2@text##阅读量[：:]",
      "lastChapter": "class.cat@a@text",
      "name": "class.bookname@a@text",
      "wordCount": "class.author.1@html\n@js:\nvar m = String(result).match(/towan\\('(\\d+)'\\)/);\nif(m) { return m[1]; }\nreturn String(result).replace(/<[^>]+>/g, '').replace(/字数[：:]/g, '').trim();"
    },
    "ruleToc": {
      "chapterList": "#list-chapterAll@dd@a",
      "chapterName": "text@js:result.replace(/^(\\d+\\.|第.+?章)\\s*/, '').replace(/[（(][^）)]*[）)]/g, m => ['上','下','中'].includes(m.slice(1,-1)) ? ' (' + m.slice(1,-1) + ')' : '').replace(/[（(][^）)]*$/, '')",
      "chapterUrl": "href",
      "nextTocUrl": "<js>\nvar txt = java.getString(\"#pagestats@text\");\nvar max = 0;\nvar m = txt.match(/\\/(\\d+)/);\nif (m) max = parseInt(m[1]);\nvar idMatch = baseUrl.match(/(?:index|books)\\/(\\d+)/);\nvar id = idMatch ? idMatch[1] : \"\";\nvar list = [];\nif (id && max > 1) {\n    for (var i = 2; i <= max; i++) {\n        list.push(\"https://www.deqixs.co/index/\" + id + \"/\" + i);\n    }\n}\nlist;\n</js>"
    },
    "searchUrl": "https://www.deqixs.co/modules/article/search.php,{\n  \"charset\": \"utf-8\",\n  \"method\": \"POST\",\n  \"body\": \"searchkey={{key}}&searchtype=all\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "🎨再漫画💓",
    "bookSourceType": 2,
    "bookSourceUrl": "https://www.zaimanhua.com",
    "bookUrlPattern": "https://.*/app/v1/comic/detail/\\d+",
    "customButton": false,
    "customOrder": 186,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/再漫画/exploreUrl.js')));\n</js>",
    "header": "<js>\nvar Proxy = Map('代理：').split(\",\");\nheaders={\n    \"User-Agent\": \"Dart/3.4 (dart:io)\",\n    \"proxy\": Proxy.some(value => parseInt(value, 10) == parseInt(Get('ci0'), 10)) ? '' : Proxy[0],\n}\ncache.put(java.md5Encode16(Get('url') + \"headers\"),JSON.stringify(headers));\nJSON.stringify(headers);\n</js>",
    "jsLib": "{\"再漫画\":\"https://qyyuapi.com/sy/js/再漫画/jsLib.js\"}",
    "lastUpdateTime": 1774925344639,
    "loginUi": "[\n  { name: \"代理：\", type: \"text\" },\n  { name: \"账号：\", type: \"text\" },\n  { name: \"密码：\", type: \"password\" },\n  {\n    name: \"💡登录账号💡\",\n    type: \"button\",\n    action: \"Login()\",\n    style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45}\n  },\n  {\n    name: \"💡源站测试💡\",\n    type: \"button\",\n    action: \"test(1)\",\n    style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45}\n  },\n  { name: \"查看当前\", type: \"button\", action: \"look(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"查看历史\", type: \"button\", action: \"look(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"恢复默认\", type: \"button\", action: \"test(-1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"繁体搜索\", type: \"button\", action: \"search_TC()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"繁简转换\", type: \"button\", action: \"TC_to_SC()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"目录整理\", type: \"button\", action: \"settle()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n\n  /*{ name: \"༺ˇ»`ʚ  榜单分类切换  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"全部\", type: \"button\", action: \"t(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"热血\", type: \"button\", action: \"t(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"少年\", type: \"button\", action: \"t(2)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"搞笑\", type: \"button\", action: \"t(3)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"少女\", type: \"button\", action: \"t(4)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"后宫\", type: \"button\", action: \"t(5)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"四格\", type: \"button\", action: \"t(6)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },*/\n\n  { name: \"༺ˇ»`ʚ  榜单时间切换  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"今日\", type: \"button\", action: \"u(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"本周\", type: \"button\", action: \"u(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"本月\", type: \"button\", action: \"u(2)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"总排行\", type: \"button\", action: \"u(3)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n\n  { name: \"༺ˇ»`ʚ  标签取向切换  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"全部\", type: \"button\", action: \"o(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"少年\", type: \"button\", action: \"o(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"少女\", type: \"button\", action: \"o(2)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"青年\", type: \"button\", action: \"o(3)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"女青\", type: \"button\", action: \"o(4)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n\n  { name: \"༺ˇ»`ʚ  标签进度切换  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"全部\", type: \"button\", action: \"p(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"连载\", type: \"button\", action: \"p(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"完结\", type: \"button\", action: \"p(2)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"短篇\", type: \"button\", action: \"p(3)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n\n  { name: \"༺ˇ»`ʚ  标签地区切换  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"全部\", type: \"button\", action: \"q(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"日本\", type: \"button\", action: \"q(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"韩国\", type: \"button\", action: \"q(2)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"欧美\", type: \"button\", action: \"q(3)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"港台\", type: \"button\", action: \"q(4)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"内地\", type: \"button\", action: \"q(5)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"其它\", type: \"button\", action: \"q(6)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n\n  { name: \"༺ˇ»`ʚ  标签排序切换  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"热门人气\", type: \"button\", action: \"r(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n  { name: \"更新时间\", type: \"button\", action: \"r(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n\n  { name: \"页数：\", type: \"text\" },\n\n  { name: \"༺ˇ»`ʚ  点击评论排序  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"最新\", type: \"button\", action: \"v(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n  { name: \"最热\", type: \"button\", action: \"v(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n \n  {\n    name: \"清除网站Cookie缓存\",\n    type: \"button\",\n    action: \"deleteCookie()\",\n    style: {layout_flexGrow: 1, layout_flexBasisPercent: 1}\n  },\n\n  { name: \"清除远程代码标识\", type: \"button\", action: \"DeleteYckey()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n\n  {\n    name: \"💡　　 源　　 站　　 打　　 印　　 💡\",\n    type: \"button\",\n    action: \"test()\",\n    style: {layout_flexGrow: 1, layout_flexBasisPercent: 1}\n  }\n]",
    "loginUrl": "eval(String(Reload('https://qyyuapi.com/sy/js/再漫画/loginUrl.js')));",
    "respondTime": 66367,
    "ruleBookInfo": {
      "author": "author",
      "canReName": "reName",
      "coverUrl": "cover",
      "downloadUrls": "durl",
      "init": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/再漫画/ruleBookInfo.js')));\n</js>",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "latest",
      "name": "name",
      "tocUrl": "url",
      "wordCount": "word"
    },
    "ruleContent": {
      "content": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/再漫画/ruleContent.js')));\n</js>",
      "imageStyle": "FULL"
    },
    "ruleExplore": {
      "author": "author",
      "bookList": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/再漫画/ruleExplore.js')));\n</js>",
      "bookUrl": "url",
      "coverUrl": "cover",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "latest",
      "name": "name",
      "wordCount": "word"
    },
    "ruleSearch": {
      "author": "author",
      "bookList": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/再漫画/ruleSearch.js')));\n</js>",
      "bookUrl": "url",
      "checkKeyWord": "妖神记",
      "coverUrl": "cover",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "latest",
      "name": "name",
      "wordCount": "word"
    },
    "ruleToc": {
      "chapterList": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/再漫画/ruleToc.js')));\n</js>",
      "chapterName": "title",
      "chapterUrl": "link",
      "updateTime": "time"
    },
    "searchUrl": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/再漫画/searchUrl.js')));\n</js>",
    "variableComment": "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",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "少年梦阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "https://api.shaoniandream.com#🎃",
    "customButton": false,
    "customOrder": 187,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "{\"version\": \"v3\", \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36\"}",
    "lastUpdateTime": 1782463439736,
    "loginUi": "[\n    {\n        \"name\": \"账号\",\n        \"type\": \"text\"\n    },\n    {\n        \"name\": \"密码\",\n        \"type\": \"password\"\n    }\n]",
    "loginUrl": "<js>\n  function login() {\n    const user = String(source.getLoginInfoMap().get(\"账号\"))\n    const pw = String(source.getLoginInfoMap().get(\"密码\"))\n    let sign = java.md5Encode(`isDevice=Android&password=${pw}&phone=${user}&regDevice=2&key=87ac02d392a8d3566fe7748c8de00af3&secrect=57dcuidu8aa8062bfe8042ea65310669`).toString().toUpperCase()\n    let data = JSON.stringify({\n      isDevice: \"Android\",\n      password: pw,\n      phone: user,\n      regDevice: \"2\",\n      sign: sign\n    })\n    let op = JSON.stringify({\n      method: \"POST\",\n      body: data\n    })\n    let res = java.ajax(`https://api.shaoniandream.com/Login/login,${op}`)\n    let $ = JSON.parse(res)\n    if($.status != 1) java.toast($.msg)\n    java.put(\"uid\",$.data.id)\n    source.putLoginHeader(JSON.stringify({\n      logintoken: $.data.logintoken\n    }))\n  }\n</js>",
    "respondTime": 429,
    "ruleBookInfo": {
      "author": "AuthorObj.penName",
      "coverUrl": "http://alioss.shaoniandream.com{{$.picture}}",
      "init": "data",
      "intro": "jianjie",
      "kind": "sortName",
      "lastChapter": "ChapterName##连载至",
      "name": "title",
      "tocUrl": "<js>\n  let uid =  java.get(\"uid\") != \"undefined\" ? java.get(\"uid\") : \"-1\"\n  let sign = java.md5Encode(`BookID={{$.id}}&UserID=${uid}&isDevice=Android&regDevice=2&key=87ac02d392a8d3566fe7748c8de00af3&secrect=57dcuidu8aa8062bfe8042ea65310669`).toString().toUpperCase()\n  let data = JSON.stringify({\n    BookID: {{$.id}},\n    UserID: uid,\n    isDevice: \"Android\",\n    regDevice: \"2\",\n    sign: sign\n  })\n  let op = JSON.stringify({\n      method: \"POST\",\n      body: data\n    })\n  \"https://api.shaoniandream.com/Booklibrary/readdir,\" + op\n</js>",
      "wordCount": "FontCount"
    },
    "ruleContent": {
      "content": "<js>\n  let $ = JSON.parse(result)\n  let content = $.data.show_content.map((item)=>{\n    return java.base64Decode(item.content)\n  }).join(\"\\n\").trim()\n  let img = $.data.chapterpic.map((item)=>{\n    return `<img src=\"http://alioss.shaoniandream.com${item.url}\" />`\n  }).join(\"\\n\").trim()\n  let miaoshu = java.base64Decode($.data.miaoshu)\n  let txt = \"\"\n  if(miaoshu != \"\")\n    txt = `${content}\\n${img}\\n作者有话说：\\n${miaoshu}`\n  else txt = `${content}\\n${img}`\n  txt\n</js>"
    },
    "ruleSearch": {
      "author": "penName",
      "bookList": "data",
      "bookUrl": "<js>\n  let uid =  java.get(\"uid\") != \"undefined\" ? java.get(\"uid\") : \"-1\"\n  let sign = java.md5Encode(`BookID={{$.BooksID}}&UserID=${uid}&isDevice=Android&regDevice=2&key=87ac02d392a8d3566fe7748c8de00af3&secrect=57dcuidu8aa8062bfe8042ea65310669`).toString().toUpperCase()\n  let data = JSON.stringify({\n    BookID: {{$.BooksID}},\n    UserID: uid,\n    isDevice: \"Android\",\n    regDevice: \"2\",\n    sign: sign\n  })\n  let op = JSON.stringify({\n      method: \"POST\",\n      body: data\n    })\n  \"https://api.shaoniandream.com/Booklibrary/bookdetail,\" + op\n</js>",
      "coverUrl": "http://alioss.shaoniandream.com{{$.picture}}",
      "intro": "jianjie",
      "kind": "SortObj.cname",
      "lastChapter": "",
      "name": "title",
      "wordCount": "FontCount"
    },
    "ruleToc": {
      "chapterList": "<js>\n  let $ = JSON.parse(result)\n  let uid = java.get(\"uid\") != \"undefined\" ? java.get(\"uid\") : \"-1\"\n  let array = []\n  $.data.chapterList.forEach((booklet) => {\n    array.push({\n    \t name: booklet.title,\n    \t isv: true\n    })\n    booklet.chapterList.forEach((chapter) => {\n    \t let sign = java.md5Encode(`BookID=${$.data.id}&UserID=${uid}&chapter_id=${chapter.id}&isDevice=Android&isMarket=true&regDevice=2&key=87ac02d392a8d3566fe7748c8de00af3&secrect=57dcuidu8aa8062bfe8042ea65310669`).toString().toUpperCase()\n    \t let data = JSON.stringify({\n    \t   BookID: $.data.id,\n    \t   UserID: uid,\n    \t   chapter_id: chapter.id,\n    \t   isDevice: \"Android\",\n    \t   isMarket:\"true\",\n    \t   regDevice: \"2\",\n    \t   sign: sign\n    \t })\n      let op = JSON.stringify({\n        method: \"POST\",\n        body: data\n      })\n      array.push({\n        name: chapter.title,\n        url: \"https://api.shaoniandream.com/Booklibrary/readchapter,\" + op,\n        time: java.timeFormat(chapter.release_time_now * 1000),\n        vip: chapter.isFree == 1,\n        buy: chapter.lock == 1\n      })\n    })\n  })\n  array\n</js>",
      "chapterName": "name",
      "chapterUrl": "url",
      "isPay": "buy",
      "isVip": "vip",
      "isVolume": "isv",
      "preUpdateJs": "",
      "updateTime": "time"
    },
    "searchUrl": "<js>\n  let sign = java.md5Encode(`count=10&isDevice=Android&keywords=${key}&page=1&regDevice=2&key=87ac02d392a8d3566fe7748c8de00af3&secrect=57dcuidu8aa8062bfe8042ea65310669`).toString().toUpperCase()\n  let data = JSON.stringify({\n    count: 10,\n    isDevice: \"Android\",\n    keywords: key,\n    page: 1,\n    regDevice: \"2\",\n    sign: sign\n  })\n  let op = JSON.stringify({\n      method: \"POST\",\n      body: data\n    })\n  \"https://api.shaoniandream.com/Booklibrary/index,\" + op\n</js>",
    "weight": 88
  },
  {
    "bookSourceComment": "①\nhttp://api.jmlldsc.com/search?keyword={{key}}&page={{page}}\n②\nhttp://api.lfdapengu.com/search?keyword={{key}}&page={{page}}\n③：http://api.jxgtzxc.com/search?keyword={{key}}&page={{page}}\n④：http://api.lemiyigou.com/search?keyword={{key}}&page={{page}}\n⑤：http://api.myweipin.com/search?keyword={{key}}&page={{page}}",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "猫眼看书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://api.jmlldsc.com##@曦灵",
    "customButton": false,
    "customOrder": 188,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\": \"男频榜单\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"必读榜\",\"url\": \"/module/rank?type=1&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"潜力榜\",\"url\": \"/module/rank?type=5&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"完本榜\",\"url\": \"/module/rank?type=2&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"更新榜\",\"url\": \"/module/rank?type=3&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"搜索榜\",\"url\": \"/module/rank?type=4&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"评论榜\",\"url\": \"/module/rank?type=6&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"男频全部\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"玄幻\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=lejRej\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"武侠\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=nel5aK\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"都市\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=mbk5ez\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"仙侠\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=vbmOeY\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"军事\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=penRe7\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=xbojag\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"游戏\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=mep2bM\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=zbq2dp\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"轻小说\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=YerEdO\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"男频完结\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"玄幻\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=lejRej&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"武侠\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=nel5aK&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"都市\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=mbk5ez&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"仙侠\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=vbmOeY&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"军事\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=penRe7&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=xbojag&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"游戏\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=mep2bM&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=zbq2dp&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"轻小说\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=YerEdO&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"男频连载\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"玄幻\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=lejRej&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"武侠\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=nel5aK&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"都市\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=mbk5ez&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"仙侠\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=vbmOeY&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"军事\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=penRe7&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=xbojag&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"游戏\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=mep2bM&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=zbq2dp&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"轻小说\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=YerEdO&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"女频榜单\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"必读榜\",\"url\": \"/module/rank?type=1&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"潜力榜\",\"url\": \"/module/rank?type=5&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"完本榜\",\"url\": \"/module/rank?type=2&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"更新榜\",\"url\": \"/module/rank?type=3&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"搜索榜\",\"url\": \"/module/rank?type=4&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"评论榜\",\"url\": \"/module/rank?type=6&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"女频全部\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=9avmeG\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古代言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=DdwRb1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"幻想言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=7ax9by\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"青春校园\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=Pdy7aQ\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"唯美纯爱\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=kazYeJ\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"同人衍生\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=9aAOdv\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"女频完结\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=9avmeG&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古代言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=DdwRb1&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"幻想言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=7ax9by&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"青春校园\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=Pdy7aQ&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"唯美纯爱\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=kazYeJ&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"同人衍生\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=9aAOdv&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"女频连载\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=9avmeG&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古代言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=DdwRb1&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"幻想言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=7ax9by&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"青春校园\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=Pdy7aQ&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"唯美纯爱\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=kazYeJ&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"同人衍生\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=9aAOdv&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}}\n]",
    "header": "{\n'User-Agent': 'okhttp/4.9.2','client-device': '0cdeb38dd0f2a381b06c0a02926ee317','client-brand': 'vivo','client-version': '2.3.0','client-name': 'app.maoyankanshu.novel','client-source': 'android','Authorization': 'bearereyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOlwvXC9hcGkuam1sbGRzYy5jb21cL2F1dGhcL3RoaXJkIiwiaWF0IjoxNzIzNzI2NTkyLCJleHAiOjE4MTcwMzg1OTIsIm5iZiI6MTcyMzcyNjU5MiwianRpIjoiMHJaS05IdlRVelR4Vm15SCIsInN1YiI6ODAyMzcyLCJwcnYiOiJhMWNiMDM3MTgwMjk2YzZhMTkzOGVmMzBiNDM3OTQ2NzJkZDAxNmM1In0.w9vCdsWWqnD5pTz5aluSDb8WxeLZqrZsqX06CYC_J1A'\n}",
    "lastUpdateTime": 1784115028505,
    "loginUrl": "http://api.jmlldsc.com/auth/me",
    "respondTime": 4305,
    "ruleBookInfo": {
      "author": "$.authorName",
      "coverUrl": "$.cover",
      "init": "$.data",
      "intro": "&nbsp;&nbsp;\n📕书名：{{$.novelName}}\n👩‍💻作者：{{$.authorName}}\n🔥热度：{{$.hotInfo}}，{{$.readInfo}}人在读\n💮更新：共{{$.chapterNum}}章\n最新章节：{{$.lastChapter.chapterName}}\n更新时间：{{$.lastUpdatedAt}}\n📖简介：{{$.summary}}",
      "kind": "$.categoryNames.className",
      "lastChapter": "{{$.lastChapter.chapterName}}  {{$.lastChapter.decTime}}",
      "name": "$.novelName",
      "tocUrl": "/novel/{{$.novelId}}/chapters",
      "wordCount": "$.wordNum"
    },
    "ruleContent": {
      "content": "$.content"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.authorName",
      "bookList": "$.data[*]",
      "bookUrl": "/novel/{{$.novelId}}?isSearch=1",
      "checkKeyWord": "我不是戏神",
      "coverUrl": "$.cover",
      "intro": "$.summary",
      "kind": "$.categoryNames.className",
      "name": "$.novelName",
      "wordCount": "$.wordNum"
    },
    "ruleToc": {
      "chapterList": "$.data.list[*]",
      "chapterName": "$.chapterName",
      "chapterUrl": "$.path@js:java.aesBase64DecodeToString(result,\"f041c49714d39908\",\"AES/CBC/PKCS5Padding\",\"0123456789abcdef\")",
      "updateTime": "{{$.updatedAt}}  字数：{{$.wordNum}}"
    },
    "searchUrl": "http://api.jmlldsc.com/search?keyword={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "🎨热辣漫画💞",
    "bookSourceType": 2,
    "bookSourceUrl": "https://mapi.hotmangasd.com",
    "bookUrlPattern": "https://.*/api/v3/comic2/.*_update=.*",
    "customButton": false,
    "customOrder": 189,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/热辣漫画/exploreUrl.js')));\n</js>",
    "header": "<js>\nvar Proxy = Map('代理：').split(\",\");\nheaders={\n    \"User-Agent\": \"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36 EdgA/127.0.0.0\",\n    \"version\": \"2024.04.28\",\n    \"platform\": \"3\",\n    \"webp\": \"1\",\n    \"proxy\": Proxy.some(value => parseInt(value, 10) == parseInt(Get('ci0'), 10)) ? '' : Proxy[0]\n}\ncache.put(java.md5Encode16(Get('url') + \"headers\"),JSON.stringify(headers));\nJSON.stringify(headers);\n</js>",
    "jsLib": "{\"热辣漫画\":\"https://qyyuapi.com/sy/js/热辣漫画/jsLib.js\"}",
    "lastUpdateTime": 1747867204940,
    "loginUi": "[\n  { name: \"代理：\", type: \"text\" },\n  { name: \"账号：\", type: \"text\" },\n  { name: \"密码：\", type: \"password\" },\n  {\n    name: \"💡　　 账　　 号　　 登　　 录　　 💡\",\n    type: \"button\",\n    action: \"Login()\",\n    style: {layout_flexGrow: 1, layout_flexBasisPercent: 1}\n  },\n  { name: \"查看当前\", type: \"button\", action: \"look(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"查看历史\", type: \"button\", action: \"look(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"恢复默认\", type: \"button\", action: \"test(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"繁体搜索\", type: \"button\", action: \"search_TC()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"繁简转换\", type: \"button\", action: \"TC_to_SC()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"目录整理\", type: \"button\", action: \"settle()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n\n  { name: \"༺ˇ»`ʚ  点击切换源站  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"①热辣漫画❶\", type: \"button\", action: \"$(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n  { name: \"②热辣漫画❷\", type: \"button\", action: \"$(2)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n  { name: \"③热辣漫画❸\", type: \"button\", action: \"$(3)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n  { name: \"④热辣漫画❹\", type: \"button\", action: \"$(4)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n  { name: \"⑤热辣漫画❺\", type: \"button\", action: \"$(5)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n  { name: \"⑥热辣漫画❻\", type: \"button\", action: \"$(6)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n  { name: \"⑦热辣漫画❼\", type: \"button\", action: \"$(7)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n  { name: \"⑧热辣漫画❽\", type: \"button\", action: \"$(8)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n\n  { name: \"༺ˇ»`ʚ  点击切换分类  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"全部\", type: \"button\", action: \"o(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"日本\", type: \"button\", action: \"o(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"韩国\", type: \"button\", action: \"o(2)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"欧美\", type: \"button\", action: \"o(3)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"完结\", type: \"button\", action: \"o(4)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n\n  { name: \"༺ˇ»`ʚ  点击切换排序  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"热门人气\", type: \"button\", action: \"p(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n  { name: \"更新时间\", type: \"button\", action: \"p(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n\n  { name: \"页数：\", type: \"text\" },\n\n  {\n    name: \"清除网站Cookie缓存\",\n    type: \"button\",\n    action: \"deleteCookie()\",\n    style: {layout_flexGrow: 1, layout_flexBasisPercent: 1}\n  },\n\n  { name: \"清除远程代码标识\", type: \"button\", action: \"DeleteYckey()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n\n  {\n    name: \"💡　　 源　　 站　　 打　　 印　　 💡\",\n    type: \"button\",\n    action: \"test()\",\n    style: {layout_flexGrow: 1, layout_flexBasisPercent: 1}\n  }\n]",
    "loginUrl": "eval(String(Reload('https://qyyuapi.com/sy/js/热辣漫画/loginUrl.js')));",
    "respondTime": 64354,
    "ruleBookInfo": {
      "author": "author",
      "canReName": "reName",
      "coverUrl": "cover",
      "downloadUrls": "durl",
      "init": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/热辣漫画/ruleBookInfo.js')));\n</js>",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "latest",
      "name": "name",
      "tocUrl": "url",
      "wordCount": "word"
    },
    "ruleContent": {
      "content": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/热辣漫画/ruleContent.js')));\n</js>",
      "imageStyle": "FULL"
    },
    "ruleExplore": {
      "author": "author",
      "bookList": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/热辣漫画/ruleExplore.js')));\n</js>",
      "bookUrl": "url",
      "coverUrl": "cover",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "latest",
      "name": "name",
      "wordCount": "word"
    },
    "ruleSearch": {
      "author": "author",
      "bookList": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/热辣漫画/ruleSearch.js')));\n</js>",
      "bookUrl": "url",
      "checkKeyWord": "秘密",
      "coverUrl": "cover",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "latest",
      "name": "name",
      "wordCount": "word"
    },
    "ruleToc": {
      "chapterList": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/热辣漫画/ruleToc.js')));\n</js>",
      "chapterName": "title",
      "chapterUrl": "link",
      "nextTocUrl": "@js:\nvar num = Math.floor(java.get(\"total\") / 500); \nvar res = String(baseUrl).match(/(.*offset=)\\d+(.*)/) || ['',''];\nvar data = [];\nfor(i = 1;i <= num; i++){\n    data.push(res[1] + (i*500) + res[2]);\n}\ndata;",
      "preUpdateJs": "if (!String(book.bookUrl).includes(Get('url'))) {\n    book.bookUrl = String(book.bookUrl).replace(/.*\\/\\/[^\\/]+/, Get('url'));\n    book.tocUrl = String(book.tocUrl).replace(/.*\\/\\/[^\\/]+/, Get('url'));\n    java.refreshTocUrl();\n}",
      "updateTime": "time"
    },
    "searchUrl": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/热辣漫画/searchUrl.js')));\n</js>",
    "variableComment": "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",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "小说屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.xiaoshuo5.com",
    "customButton": false,
    "customOrder": 190,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\"title\":\"玄幻小说\",\"url\":\"/list1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},\n  {\"title\":\"武侠小说\",\"url\":\"/list2/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},\n  {\"title\":\"都市小说\",\"url\":\"/list3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},\n  {\"title\":\"历史小说\",\"url\":\"/list4/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},\n  {\"title\":\"网游小说\",\"url\":\"/list5/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},\n  {\"title\":\"科幻小说\",\"url\":\"/list6/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},\n  {\"title\":\"言情小说\",\"url\":\"/list7/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},\n  {\"title\":\"其他小说\",\"url\":\"/list8/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},\n  {\"title\":\"总排行榜\",\"url\":\"/top/all_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},\n  {\"title\":\"完本小说\",\"url\":\"/full/0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}}\n]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; Pixel 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\"\n}",
    "lastUpdateTime": 1784381200000,
    "respondTime": 18877,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "[property=\"og:novel:read_url\"]@content"
    },
    "ruleContent": {
      "content": "article@html",
      "nextContentUrl": "@js:\nvar nextUrl = String(org.jsoup.Jsoup.parse(result).select('#next1').attr('href'));\nif (nextUrl.indexOf('_') > -1) {\n    nextUrl;\n} else {\n    \"\";\n}",
      "replaceRegex": "##第\\(\\d+/\\d+\\)页"
    },
    "ruleExplore": {
      "author": ".book_other:contains(作者) span@text||.author a@text||span.update:contains(作者)@text##作者：##",
      "bookList": ".box.hot .row > div:has(h3)",
      "bookUrl": "h3 a@href",
      "coverUrl": "img@src",
      "kind": "h3 a@text##^\\s*\\[([^\\]]+)\\].*##$1###.book_other:contains(状态)@text",
      "lastChapter": ".book_other:contains(最新) a@text||.book_other:contains(最新章节) a@text",
      "name": "h3 a@text##\\[.*\\]##"
    },
    "ruleSearch": {
      "author": ".book_other:contains(作者) a@text",
      "bookList": ".box.hot .row > div:has(h3)",
      "bookUrl": "h3 a@href",
      "coverUrl": "img@src",
      "kind": "h3 a@text",
      "lastChapter": ".book_other:contains(最新) a@text",
      "name": "h3 a@text"
    },
    "ruleToc": {
      "chapterList": ".book_list2 ul li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "@js:\nvar tocUrls = [];\nvar totalText = String(org.jsoup.Jsoup.parse(result).select('.book_list2').prev('h2').text());\nvar totalMatch = totalText.match(/共\\s*(\\d+)\\s*章/);\nif(totalMatch) {\n    var totalChapters = parseInt(totalMatch[1]);\n    var totalPages = Math.ceil(totalChapters / 100);\n    for(var i = 1; i <= totalPages; i++) {\n        tocUrls.push(baseUrl + 'index_' + i + '.html');\n    }\n}\ntocUrls;"
    },
    "searchUrl": "/search.php?q={{key}}&p={{page}}",
    "weight": 10
  },
  {
    "bookSourceComment": "by二月无雪\n交流群：756138903",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "淘小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://betam.taoyuewenhua.com",
    "customButton": false,
    "customOrder": 191,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js: var result = []\nvar push = (title, url, size) => result.push({\n  title: title,\n  url: url,\n  style: {\n    layout_flexGrow: 1,\n    layout_flexBasisPercent: size\n  }\n})\npush(\"男生\", null, 1);\npush(\"玄幻\", \"/ajax/book_mall/categories/101000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"奇幻\", \"/ajax/book_mall/categories/102000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"武侠\", \"/ajax/book_mall/categories/103000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"仙侠\", \"/ajax/book_mall/categories/104000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"都市\", \"/ajax/book_mall/categories/105000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"历史\", \"/ajax/book_mall/categories/106000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"军事\", \"/ajax/book_mall/categories/107000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"奇闻怪谈\", \"/ajax/book_mall/categories/108000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"科幻\", \"/ajax/book_mall/categories/109000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"游戏\", \"/ajax/book_mall/categories/110000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"体育\", \"/ajax/book_mall/categories/111000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"N次元\", \"/ajax/book_mall/categories/112000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"现实\", \"/ajax/book_mall/categories/113000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"诸天无限\", \"/ajax/book_mall/categories/115000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"女生\", null, 1);\npush(\"玄幻言情\", \"/ajax/book_mall/categories/201000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"仙侠奇缘\", \"/ajax/book_mall/categories/202000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"古代言情\", \"/ajax/book_mall/categories/203000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"现代言情\", \"/ajax/book_mall/categories/204000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"浪漫青春\", \"/ajax/book_mall/categories/205000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"奇闻怪谈\", \"/ajax/book_mall/categories/206000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"科幻空间\", \"/ajax/book_mall/categories/207000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"游戏竞技\", \"/ajax/book_mall/categories/208000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"N次元\", \"/ajax/book_mall/categories/209000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"同人纯爱\", \"/ajax/book_mall/categories/210000?page={{page-1}}&pageSize=20\", 0.25);\npush(\"短篇\", \"/ajax/book_mall/categories/211000?page={{page-1}}&pageSize=20\", 0.25);\nJSON.stringify(result);",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36\",\"Accept\":\"application/json, text/plain, */*\",\"Referer\":\"http://betam.taoyuewenhua.com/\",\"X-Requested-With\":\"XMLHttpRequest\"}",
    "lastUpdateTime": 1787424182707,
    "respondTime": 22902,
    "ruleBookInfo": {
      "author": "$.data.authorName",
      "coverUrl": "$.data.coverUrl",
      "intro": "$.data.intro",
      "kind": "$.data.categoryName",
      "lastChapter": "$.data.latestChapter",
      "name": "$.data.title",
      "tocUrl": "@js:var m = String(baseUrl).match(/sourceId=([^&]+)/); '/ajax/or/authopt/ty/chapter_list?sourceName=tf&sourceId=' + m[1] + '&page=0&pageSize=100'",
      "wordCount": "$.data.allWords"
    },
    "ruleContent": {
      "content": "$.data.content##本章未完.*|请收藏.*|看书.*|本章节未.*|\\n{3,}"
    },
    "ruleExplore": {
      "author": "$.authorName",
      "bookList": "$.data.bookList[*]",
      "bookUrl": "/ajax/or/ty/book?sourceName={{$.sourceName}}&sourceId={{$.sourceId}}",
      "coverUrl": "$.coverUrl",
      "intro": "$.intro",
      "kind": "$.categoryName",
      "name": "$.title",
      "wordCount": "$.allWords"
    },
    "ruleSearch": {
      "author": "$.authorName",
      "bookList": "$.data.bookList[*]",
      "bookUrl": "/ajax/or/ty/book?sourceName={{$.sourceName}}&sourceId={{$.sourceId}}",
      "coverUrl": "$.coverUrl",
      "intro": "$.intro",
      "kind": "$.categoryName",
      "name": "$.title",
      "wordCount": "$.allWords"
    },
    "ruleToc": {
      "chapterList": "$.data.chapters[*]",
      "chapterName": "$.chapterTitle",
      "chapterUrl": "@js:var m = String(book.bookUrl).match(/sourceId=([^&]+)/); '/ajax/or/authopt/ty/chapter_content?sourceName=tf&sourceId=' + m[1] + '&chapterId=' + String(result.chapterId)",
      "nextTocUrl": "@js:var json = JSON.parse(result); var chapters = json.data.chapters || []; if (chapters.length < 100) { ''; } else { var url = String(baseUrl); var pageMatch = url.match(/page=(\\d+)/); var currentPage = pageMatch ? parseInt(pageMatch[1]) : 0; url.replace(/page=\\d+/, 'page=' + (currentPage + 1)); }"
    },
    "searchUrl": "/ajax/or/authopt/ty/search_books?keywords={{key}}&page={{page-1}}&pageSize=20&ctype=1",
    "weight": 0
  },
  {
    "bookSourceComment": "*By_聆听月与悦-2025/1/24\n*By_\n//这里提供部分接口\n*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-\nhttp://api.myweipin.com\nhttp://api.lfdapengu.com\nhttp://api.jmlldsc.com\nhttp://api.lemiyigou.com\nhttp://api.lfdapengu.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "猫眼看书（+++）",
    "bookSourceType": 0,
    "bookSourceUrl": "http://api.lfdapengu.com",
    "customButton": false,
    "customOrder": 192,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\": \"💮        ཽ 猫眼阅读 ཽ        💮\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"↓    ༺ 男频榜单 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"必读榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=1&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"潜力榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=5&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"完本榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=2&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"更新榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=3&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"搜索榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=4&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"评论榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=6&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"↓    ༺ 男频全部 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"玄幻\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=lejRej\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"武侠\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=nel5aK\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"都市\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=mbk5ez\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"仙侠\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=vbmOeY\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"军事\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=penRe7\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=xbojag\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"游戏\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=mep2bM\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=zbq2dp\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"轻小说\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=YerEdO\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"↓    ༺ 男频完结 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"玄幻\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=lejRej&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"武侠\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=nel5aK&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"都市\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=mbk5ez&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"仙侠\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=vbmOeY&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"军事\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=penRe7&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=xbojag&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"游戏\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=mep2bM&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=zbq2dp&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"轻小说\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=YerEdO&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"↓    ༺ 男频连载 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"玄幻\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=lejRej&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"武侠\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=nel5aK&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"都市\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=mbk5ez&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"仙侠\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=vbmOeY&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"军事\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=penRe7&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=xbojag&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"游戏\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=mep2bM&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=zbq2dp&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"轻小说\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=YerEdO&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"↓    ༺ 女频榜单 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"必读榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=1&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"潜力榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=5&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"完本榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=2&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"更新榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=3&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"搜索榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=4&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"评论榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=6&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"↓    ༺ 女频全部 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=9avmeG\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古代言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=DdwRb1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"幻想言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=7ax9by\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"青春校园\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=Pdy7aQ\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"唯美纯爱\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=kazYeJ\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"同人衍生\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=9aAOdv\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"↓    ༺ 女频完结 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=9avmeG&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古代言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=DdwRb1&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"幻想言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=7ax9by&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"青春校园\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=Pdy7aQ&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"唯美纯爱\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=kazYeJ&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"同人衍生\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=9aAOdv&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"↓    ༺ 女频连载 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=9avmeG&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古代言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=DdwRb1&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"幻想言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=7ax9by&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"青春校园\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=Pdy7aQ&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"唯美纯爱\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=kazYeJ&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"同人衍生\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=9aAOdv&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}}]",
    "header": "{\n\"User-Agent\": \"okhttp/4.9.2\",\n\"client-device\": \"0cdeb38dd0f2a381b06c0a02926ee317\",\n\"client-brand\": \"vivo\",\n\"client-version\": \"2.3.0\",\n\"client-name\": \"app.maoyankanshu.novel\",\n\"client-source\": \"android\",\n\"Authorization\": \"bearereyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOlwvXC9hcGkuanhndHp4Yy5jb21cL2F1dGhcL2xvZ2luYnltb2JpbGUiLCJpYXQiOjE3MzU2MTQ3NzEsImV4cCI6MTgyODkyNjc3MSwibmJmIjoxNzM1NjE0NzcxLCJqdGkiOiI1VEdjdXpoOHNSNVk5WlNjIiwic3ViIjo4MTEzMzQsInBydiI6ImExY2IwMzcxODAyOTZjNmExOTM4ZWYzMGI0Mzc5NDY3MmRkMDE2YzUifQ.-dT55vUMI-JJyfl3a9__Ii-DjxbyvnlOMoXWdG1c8JA\"\n}",
    "lastUpdateTime": 1786690122847,
    "respondTime": 6894,
    "ruleBookInfo": {
      "author": "$.authorName",
      "canReName": "true",
      "coverUrl": "$.cover",
      "downloadUrls": "http://api.jxgtzxc.com/",
      "init": "$.data",
      "intro": "&nbsp;&nbsp;\n📕书名：{{$.novelName}}\n✏️作者：{{$.authorName}}\n🔥热度：{{$.hotInfo}}，{{$.readInfo}}人在读\n💮更新：共{{$.chapterNum}}章\n📃最新章节：{{$.lastChapter.chapterName}}\n⏳更新时间：{{$..decTime}}\n📖简介：{{$.summary##(^|[。！？]+[”」）】]?)##$1<br>}}",
      "kind": "$..className",
      "lastChapter": "{{$.lastChapter.chapterName}}•{{$.lastUpdatedAt}}",
      "name": "$.novelName",
      "tocUrl": "{{source.bookSourceUrl}}/novel/{{$.novelId}}/chapters",
      "wordCount": "$.wordNum"
    },
    "ruleContent": {
      "content": "$.content",
      "replaceRegex": "##一秒记住.*精彩阅读。|7017k"
    },
    "ruleExplore": {
      "author": "$.authorName",
      "bookList": "$.data[*]",
      "bookUrl": "{{source.bookSourceUrl}}/novel/{{$.novelId}}?isSearch=1,{\n  \"js\": \"java.toast('正在加载详情页，请稍等！')\"\n}",
      "coverUrl": "$.cover",
      "intro": "$.summary",
      "kind": "{{source.bookSourceUrl}}/novel/{{$.novelId}}?isSearch=1<js>java.ajax(result)</js>$..className",
      "name": "$.novelName"
    },
    "ruleSearch": {
      "author": "$.authorName",
      "bookList": "$.data[*]",
      "bookUrl": "{{source.bookSourceUrl}}/novel/{{$.novelId}}?isSearch=1",
      "checkKeyWord": "开局圣人修为，女帝成了前妻",
      "coverUrl": "$.cover",
      "intro": "$.summary",
      "kind": "{{$.averageScore}}分\n{{$..className}}\n连载中{{$.status}}已完结\n{{$.lastChapter.decTime||$.createdAt##\\s.*}}\n##连载中2|1已完结|连载中已完结",
      "name": "$.novelName",
      "wordCount": "$.wordNum"
    },
    "ruleToc": {
      "chapterList": "$.data.list[*]",
      "chapterName": "$.chapterName",
      "chapterUrl": "$.path\n@js:java.aesBase64DecodeToString(result,\"f041c49714d39908\",\"AES/CBC/PKCS5Padding\",\"0123456789abcdef\");",
      "updateTime": "{{$.updatedAt}} | {{$.wordNum}}字"
    },
    "searchUrl": "{{source.bookSourceUrl}}/search?keyword={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "7.2@ys4568\n请求头，jsLib借于辞神",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "MYCOMIC",
    "bookSourceType": 2,
    "bookSourceUrl": "https://mycomic.com",
    "customButton": false,
    "customOrder": 193,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\n    let result=[],\n    push=(title,url,size)=>result.push({\n        \"title\": title,\n        \"url\": url,\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": size\n        }\n    });\n    let bu=source.key+\"/cn/comics\",\n    aj=java.ajax(bu),\n    a=org.jsoup.Jsoup.parse(aj);\n    let b=a.select('.flex-none [class=\"group/disclosure\"]'),\n    s=b.select('[class^=\"text-sm\"]'),\n    icons=['🍒','🍊','🥝','🍑','🍅','🍇',];\n    push(`🍈全部漫画🍈`,`${bu}<,?page={{page}}>`,1);\n    for (i=0;i<s.length;i++){\n    \t    push(icons[i]+s[i].text()+icons[i],'',1);\n    \t    let c=b[i].select('[class^=\"h-10\"]');\n    \t    for (n=1;n<c.length;n++){\n    \t    \t    let url=String(c[n].attr('href'));\n    \t    \t    push(c[n].text(),`${url}<,&page={{page}}>`,0.25);    \t    \t    \t\n    \t    \t};\n    };\n    JSON.stringify(result);",
    "header": "@js:\nJSON.stringify({\n  'User-Agent': \"Mozilla/5.0 (Linux; Android 15; V2304A Build/AP3A.240905.015.A2; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/132.0.6834.163 Mobile Safari/537.36\",\n  'sec-ch-ua-platform': \"\\\"Android\\\"\",\n  'origin': baseUrl,\n  'x-requested-with': \"cn.mujiankeji.mbrowser\",\n  'Referer': baseUrl,\n  'Accept-language': \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"\n})",
    "jsLib": "s = '皑蔼碍爱翱袄奥坝罢摆败颁办绊帮绑镑谤剥饱宝报鲍辈贝钡狈备惫绷笔毕毙闭边编贬变辩辫鳖瘪濒滨宾摈饼拨钵铂驳卜补参蚕残惭惨灿苍舱仓沧厕侧册测层诧搀掺蝉馋谗缠铲产阐颤场尝长偿肠厂畅钞车彻尘陈衬撑称惩诚骋痴迟驰耻齿炽冲虫宠畴踌筹绸丑橱厨锄雏础储触处传疮闯创锤纯绰辞词赐聪葱囱从丛凑窜错达带贷担单郸掸胆惮诞弹当挡党荡档捣岛祷导盗灯邓敌涤递缔点垫电淀钓调迭谍叠钉顶锭订东动栋冻斗犊独读赌镀锻断缎兑队对吨顿钝夺鹅额讹恶饿儿尔饵贰发罚阀珐矾钒烦范贩饭访纺飞废费纷坟奋愤粪丰枫锋风疯冯缝讽凤肤辐抚辅赋复负讣妇缚该钙盖干赶秆赣冈刚钢纲岗皋镐搁鸽阁铬个给龚宫巩贡钩沟构购够蛊顾剐关观馆惯贯广规硅归龟闺轨诡柜贵刽辊滚锅国过骇韩汉阂鹤贺横轰鸿红后壶护沪户哗华画划话怀坏欢环还缓换唤痪焕涣黄谎挥辉毁贿秽会烩汇讳诲绘荤浑伙获货祸击机积饥讥鸡绩缉极辑级挤几蓟剂济计记际继纪夹荚颊贾钾价驾歼监坚笺间艰缄茧检碱硷拣捡简俭减荐槛鉴践贱见键舰剑饯渐溅涧浆蒋桨奖讲酱胶浇骄娇搅铰矫侥脚饺缴绞轿较秸阶节茎惊经颈静镜径痉竞净纠厩旧驹举据锯惧剧鹃绢杰洁结诫届紧锦仅谨进晋烬尽劲荆觉决诀绝钧军骏开凯颗壳课垦恳抠库裤夸块侩宽矿旷况亏岿窥馈溃扩阔蜡腊莱来赖蓝栏拦篮阑兰澜谰揽览懒缆烂滥捞劳涝乐镭垒类泪篱离里鲤礼丽厉励砾历沥隶俩联莲连镰怜涟帘敛脸链恋炼练粮凉两辆谅疗辽镣猎临邻鳞凛赁龄铃凌灵岭领馏刘龙聋咙笼垄拢陇楼娄搂篓芦卢颅庐炉掳卤虏鲁赂禄录陆驴吕铝侣屡缕虑滤绿峦挛孪滦乱抡轮伦仑沦纶论萝罗逻锣箩骡骆络妈玛码蚂马骂吗买麦卖迈脉瞒馒蛮满谩猫锚铆贸么霉没镁门闷们锰梦谜弥觅绵缅庙灭悯闽鸣铭谬谋亩钠纳难挠脑恼闹馁腻撵捻酿鸟聂啮镊镍柠狞宁拧泞钮纽脓浓农疟诺欧鸥殴呕沤盘庞国爱赔喷鹏骗飘频贫苹凭评泼颇扑铺朴谱脐齐骑岂启气弃讫牵扦钎铅迁签谦钱钳潜浅谴堑枪呛墙蔷强抢锹桥乔侨翘窍窃钦亲轻氢倾顷请庆琼穷趋区躯驱龋颧权劝却鹊让饶扰绕热韧认纫荣绒软锐闰润洒萨鳃赛伞丧骚扫涩杀纱筛晒闪陕赡缮伤赏烧绍赊摄慑设绅审婶肾渗声绳胜圣师狮湿诗尸时蚀实识驶势释饰视试寿兽枢输书赎属术树竖数帅双谁税顺说硕烁丝饲耸怂颂讼诵擞苏诉肃虽绥岁孙损笋缩琐锁獭挞抬摊贪瘫滩坛谭谈叹汤烫涛绦腾誊锑题体屉条贴铁厅听烃铜统头图涂团颓蜕脱鸵驮驼椭洼袜弯湾顽万网韦违围为潍维苇伟伪纬谓卫温闻纹稳问瓮挝蜗涡窝呜钨乌诬无芜吴坞雾务误锡牺袭习铣戏细虾辖峡侠狭厦锨鲜纤咸贤衔闲显险现献县馅羡宪线厢镶乡详响项萧销晓啸蝎协挟携胁谐写泻谢锌衅兴汹锈绣虚嘘须许绪续轩悬选癣绚学勋询寻驯训讯逊压鸦鸭哑亚讶阉烟盐严颜阎艳厌砚彦谚验鸯杨扬疡阳痒养样瑶摇尧遥窑谣药爷页业叶医铱颐遗仪彝蚁艺亿忆义诣议谊译异绎荫阴银饮樱婴鹰应缨莹萤营荧蝇颖哟拥佣痈踊咏涌优忧邮铀犹游诱舆鱼渔娱与屿语吁御狱誉预驭鸳渊辕园员圆缘远愿约跃钥岳粤悦阅云郧匀陨运蕴酝晕韵杂灾载攒暂赞赃脏凿枣灶责择则泽贼赠扎札轧铡闸诈斋债毡盏斩辗崭栈战绽张涨帐账胀赵蛰辙锗这贞针侦诊镇阵挣睁狰帧郑证织职执纸挚掷帜质钟终种肿众诌轴皱昼骤猪诸诛烛瞩嘱贮铸筑驻专砖转赚桩庄装妆壮状锥赘坠缀谆浊兹资渍踪综总纵邹诅组钻致钟么为只凶准启板里雳余链泄';\nt = '皚藹礙愛翺襖奧壩罷擺敗頒辦絆幫綁鎊謗剝飽寶報鮑輩貝鋇狽備憊繃筆畢斃閉邊編貶變辯辮鼈癟瀕濱賓擯餅撥缽鉑駁蔔補參蠶殘慚慘燦蒼艙倉滄廁側冊測層詫攙摻蟬饞讒纏鏟産闡顫場嘗長償腸廠暢鈔車徹塵陳襯撐稱懲誠騁癡遲馳恥齒熾沖蟲寵疇躊籌綢醜櫥廚鋤雛礎儲觸處傳瘡闖創錘純綽辭詞賜聰蔥囪從叢湊竄錯達帶貸擔單鄲撣膽憚誕彈當擋黨蕩檔搗島禱導盜燈鄧敵滌遞締點墊電澱釣調叠諜疊釘頂錠訂東動棟凍鬥犢獨讀賭鍍鍛斷緞兌隊對噸頓鈍奪鵝額訛惡餓兒爾餌貳發罰閥琺礬釩煩範販飯訪紡飛廢費紛墳奮憤糞豐楓鋒風瘋馮縫諷鳳膚輻撫輔賦複負訃婦縛該鈣蓋幹趕稈贛岡剛鋼綱崗臯鎬擱鴿閣鉻個給龔宮鞏貢鈎溝構購夠蠱顧剮關觀館慣貫廣規矽歸龜閨軌詭櫃貴劊輥滾鍋國過駭韓漢閡鶴賀橫轟鴻紅後壺護滬戶嘩華畫劃話懷壞歡環還緩換喚瘓煥渙黃謊揮輝毀賄穢會燴彙諱誨繪葷渾夥獲貨禍擊機積饑譏雞績緝極輯級擠幾薊劑濟計記際繼紀夾莢頰賈鉀價駕殲監堅箋間艱緘繭檢堿鹼揀撿簡儉減薦檻鑒踐賤見鍵艦劍餞漸濺澗漿蔣槳獎講醬膠澆驕嬌攪鉸矯僥腳餃繳絞轎較稭階節莖驚經頸靜鏡徑痙競淨糾廄舊駒舉據鋸懼劇鵑絹傑潔結誡屆緊錦僅謹進晉燼盡勁荊覺決訣絕鈞軍駿開凱顆殼課墾懇摳庫褲誇塊儈寬礦曠況虧巋窺饋潰擴闊蠟臘萊來賴藍欄攔籃闌蘭瀾讕攬覽懶纜爛濫撈勞澇樂鐳壘類淚籬離裏鯉禮麗厲勵礫曆瀝隸倆聯蓮連鐮憐漣簾斂臉鏈戀煉練糧涼兩輛諒療遼鐐獵臨鄰鱗凜賃齡鈴淩靈嶺領餾劉龍聾嚨籠壟攏隴樓婁摟簍蘆盧顱廬爐擄鹵虜魯賂祿錄陸驢呂鋁侶屢縷慮濾綠巒攣孿灤亂掄輪倫侖淪綸論蘿羅邏鑼籮騾駱絡媽瑪碼螞馬罵嗎買麥賣邁脈瞞饅蠻滿謾貓錨鉚貿麽黴沒鎂門悶們錳夢謎彌覓綿緬廟滅憫閩鳴銘謬謀畝鈉納難撓腦惱鬧餒膩攆撚釀鳥聶齧鑷鎳檸獰甯擰濘鈕紐膿濃農瘧諾歐鷗毆嘔漚盤龐國愛賠噴鵬騙飄頻貧蘋憑評潑頗撲鋪樸譜臍齊騎豈啓氣棄訖牽扡釺鉛遷簽謙錢鉗潛淺譴塹槍嗆牆薔強搶鍬橋喬僑翹竅竊欽親輕氫傾頃請慶瓊窮趨區軀驅齲顴權勸卻鵲讓饒擾繞熱韌認紉榮絨軟銳閏潤灑薩鰓賽傘喪騷掃澀殺紗篩曬閃陝贍繕傷賞燒紹賒攝懾設紳審嬸腎滲聲繩勝聖師獅濕詩屍時蝕實識駛勢釋飾視試壽獸樞輸書贖屬術樹豎數帥雙誰稅順說碩爍絲飼聳慫頌訟誦擻蘇訴肅雖綏歲孫損筍縮瑣鎖獺撻擡攤貪癱灘壇譚談歎湯燙濤縧騰謄銻題體屜條貼鐵廳聽烴銅統頭圖塗團頹蛻脫鴕馱駝橢窪襪彎灣頑萬網韋違圍爲濰維葦偉僞緯謂衛溫聞紋穩問甕撾蝸渦窩嗚鎢烏誣無蕪吳塢霧務誤錫犧襲習銑戲細蝦轄峽俠狹廈鍁鮮纖鹹賢銜閑顯險現獻縣餡羨憲線廂鑲鄉詳響項蕭銷曉嘯蠍協挾攜脅諧寫瀉謝鋅釁興洶鏽繡虛噓須許緒續軒懸選癬絢學勳詢尋馴訓訊遜壓鴉鴨啞亞訝閹煙鹽嚴顔閻豔厭硯彥諺驗鴦楊揚瘍陽癢養樣瑤搖堯遙窯謠藥爺頁業葉醫銥頤遺儀彜蟻藝億憶義詣議誼譯異繹蔭陰銀飲櫻嬰鷹應纓瑩螢營熒蠅穎喲擁傭癰踴詠湧優憂郵鈾猶遊誘輿魚漁娛與嶼語籲禦獄譽預馭鴛淵轅園員圓緣遠願約躍鑰嶽粵悅閱雲鄖勻隕運蘊醞暈韻雜災載攢暫贊贓髒鑿棗竈責擇則澤賊贈紮劄軋鍘閘詐齋債氈盞斬輾嶄棧戰綻張漲帳賬脹趙蟄轍鍺這貞針偵診鎮陣掙睜猙幀鄭證織職執紙摯擲幟質鍾終種腫衆謅軸皺晝驟豬諸誅燭矚囑貯鑄築駐專磚轉賺樁莊裝妝壯狀錐贅墜綴諄濁茲資漬蹤綜總縱鄒詛組鑽緻鐘麼為隻兇準啟闆裡靂餘鍊洩';\nfunction tzs(z){\n\tconst {java} = this;\n\t//安卓L不支持解构\n\t//const java = this.java;\n\tvar a = '';\n\tvar l = z.length;\n\tfor(var i=0; i<l; i++){\n\t\tvar c = z.charAt(i);\n\t\tvar p = t.indexOf(c);\n\t\ta += p < 0 ? c : s.charAt(p);\n\t}\n\treturn java.t2s(a);\n}",
    "lastUpdateTime": 1769592103645,
    "respondTime": 8570,
    "ruleBookInfo": {
      "author": "[class^=\"hover:underline\"].0@text",
      "intro": "&nbsp;\n📖 书名：{{book.name}}\n👤 作者：{{@@[class^=\"hover:underline\"].0@text}}\n🕰 更新：{{@@time@text}}\n🏷️ 类型：{{@@.grid@div.-2@span@text}}\n🌐 地区：{{@@.grid@div.-1@a@text}}\n📄 简介：{{@@[class^=\"md:w-4/5\"]@text}}",
      "kind": ".grow.1@div.3:1@text"
    },
    "ruleContent": {
      "content": ".page@img@html\n@js:\n    let pics=result.match(/http[^\"]*/g),\n    hd=JSON.stringify({\"headers\":{\"Referer\":baseUrl}}),\n    p=pics.map(i=>`<img src=\"${i},${hd}\">`).join('\\n');\n    p;",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": "<js>tzs(result)</js>\n.group",
      "bookUrl": "a.0@href",
      "checkKeyWord": "姐姐",
      "coverUrl": "img@data-src",
      "lastChapter": ".text-white@text",
      "name": "img@alt"
    },
    "ruleToc": {
      "chapterList": "<js>\n    let list=[],\n    push=(text,href,vol)=>list.push({\n        \"text\": text,\n        \"href\": href,\n        \"vol\": vol\n    });\n    let c=result.match(/\\[\\{\"id\"[\\s\\S]*?\\]/g),\n    v=java.getElements('[class^=\"text-lg\"]>div');\n    for (i=0;i<c.length;i++){\n    \t    push(v[c.length-(i+1)].text(),'',true);\n    \t    let j=JSON.parse(c[c.length-(i+1)]);\n    \t    j.reverse().forEach(n=>{\n    \t        push(n.title,'/cn/chapters/'+n.id,false);\n    \t    });\n    \t};\n    \tlist;\n</js>",
      "chapterName": "text",
      "chapterUrl": "href",
      "isVolume": "vol"
    },
    "searchUrl": "/cn/comics?q={{key}}<,&page={{page}}>",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "香书小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xbiqugu.la",
    "customButton": false,
    "customOrder": 194,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻小说\",\"url\":\"/fenlei/1_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"修真小说\",\"url\":\"/fenlei/2_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市小说\",\"url\":\"/fenlei/3_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越小说\",\"url\":\"/fenlei/4_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游小说\",\"url\":\"/fenlei/5_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻小说\",\"url\":\"/fenlei/6_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1786212248997,
    "respondTime": 2431,
    "ruleBookInfo": {
      "author": "//meta[@property='og:novel:author']/@content",
      "coverUrl": "//meta[@property='og:image']/@content",
      "intro": "//meta[@property='og:description']/@content",
      "kind": "[property~=status|category|update_time]@content&&id.info@p.2@text##.*：",
      "lastChapter": "id.info.0@tag.a.-1@text",
      "name": "//meta[@property='og:novel:book_name']/@content"
    },
    "ruleContent": {
      "content": "id.content.0@textNodes",
      "replaceRegex": "##.*第.*章.*\\s"
    },
    "ruleExplore": {
      "author": "class.s5.0@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2.0@tag.a.0@href",
      "lastChapter": "class.s3.0@tag.a.0@text",
      "name": "class.s2.0@tag.a.0@text"
    },
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "tag.tbody.0@tag.tr.!0",
      "bookUrl": "tag.td.0@tag.a.0@href",
      "coverUrl": "tag.td.0@tag.a.0@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\nsource.bookSourceUrl + 'files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "tag.td.1@text",
      "name": "tag.td.0@text"
    },
    "ruleToc": {
      "chapterList": "id.list.0@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/waps.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "手机小说🎃#3",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.shoujixs.net#🎃",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 195,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻\",\"url\":\"/xhqh_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/wx_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"仙侠\",\"url\":\"/xx_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/ds_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"军事\",\"url\":\"/js_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/ls_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"游戏\",\"url\":\"/yxty_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/kh_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"灵异\",\"url\":\"/ly_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"二次\",\"url\":\"/ecy_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/yq_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}]",
    "header": "",
    "lastUpdateTime": 0,
    "loginCheckJs": "",
    "loginUrl": "",
    "respondTime": 8477,
    "ruleBookInfo": {
      "author": "id.muluzuoceh@p.0@text",
      "coverUrl": "id.fmimg@img@src",
      "intro": "id.shojixsinto@p.0@text##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": ".shoujixsml2@a.2@text&&id.muluzuoceh@p.1@text##小说|.*：|\\s..:.*",
      "lastChapter": "id.muluzuoceh@a@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "id.muluzuoceh@h1@text",
      "wordCount": "id.muluzuoceh@p.3@text##.*："
    },
    "ruleContent": {
      "content": "id.zjny@html"
    },
    "ruleExplore": {
      "author": ".s5@text",
      "bookList": ".shoujixsl@li",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.+\\D((\\d+)\\d{3})\\D##https://images.shoujixs.net/$2/$1/$1s.jpg###",
      "intro": "",
      "kind": "",
      "lastChapter": "a.1@text",
      "name": "a.0@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "p.1@text##.*作者.",
      "bookList": ".hot_sale",
      "bookUrl": "a@href##^##https://www.shoujixs.net",
      "checkKeyWord": "",
      "coverUrl": "a@href##.+\\D((\\d+)\\d{3})\\D##https://images.shoujixs.net/$2/$1/$1s.jpg###",
      "intro": "",
      "kind": "p.1:2@text##小说|\\s.*",
      "lastChapter": "p.2@text##.*更新.",
      "name": "p.0@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "id.lbks@dd@a",
      "chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "href",
      "nextTocUrl": ".right@a@href"
    },
    "searchUrl": "https://wap.shoujixs.net/s.php,{\n  \"method\": \"post\",\n  \"body\": \"keyword={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "🎨如漫画💓",
    "bookSourceType": 2,
    "bookSourceUrl": "https://www.rumanhua.com",
    "bookUrlPattern": "https?:\\/\\/[^\\/]+\\/[^\\/]+\\/",
    "customButton": false,
    "customOrder": 196,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/如漫画/exploreUrl.js')));\n</js>",
    "header": "<js>\nvar Proxy = Map('代理：').split(\",\");\nheaders={\n    \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36 Edg/127.0.0.0\",\n    \"proxy\": Proxy.some(value => parseInt(value, 10) == parseInt(Get('ci0'), 10)) ? '' : Proxy[0],\n}\ncache.put(java.md5Encode16(Get('url') + \"headers\"),JSON.stringify(headers));\nJSON.stringify(headers);\n</js>",
    "jsLib": "{\"如漫画\":\"https://qyyuapi.com/sy/js/如漫画/jsLib.js\"}",
    "lastUpdateTime": 1760175765924,
    "loginUi": "[\n  { name: \"代理：\", type: \"text\" },\n  {\n    name: \"💡　　 源　　 站　　 测　　 试　　 💡\",\n    type: \"button\",\n    action: \"test(1)\",\n    style: {layout_flexGrow: 1, layout_flexBasisPercent: 1}\n  },\n  { name: \"查看当前\", type: \"button\", action: \"look(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"查看历史\", type: \"button\", action: \"look(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"恢复默认\", type: \"button\", action: \"test(-1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"繁体搜索\", type: \"button\", action: \"search_TC()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"繁简转换\", type: \"button\", action: \"TC_to_SC()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"目录整理\", type: \"button\", action: \"settle()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n\n  { name: \"༺ˇ»`ʚ  点击切换地区  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"全部\", type: \"button\", action: \"o(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"国产\", type: \"button\", action: \"o(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"日本\", type: \"button\", action: \"o(2)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"韩国\", type: \"button\", action: \"o(3)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"欧美\", type: \"button\", action: \"o(4)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n\n  { name: \"༺ˇ»`ʚ  点击切换进度  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"全部\", type: \"button\", action: \"p(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"连载\", type: \"button\", action: \"p(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"完结\", type: \"button\", action: \"p(2)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n\n  { name: \"༺ˇ»`ʚ  点击切换排序  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"热门人气\", type: \"button\", action: \"q(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n  { name: \"更新时间\", type: \"button\", action: \"q(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.45} },\n\n  {\n    name: \"清除网站Cookie缓存\",\n    type: \"button\",\n    action: \"deleteCookie()\",\n    style: {layout_flexGrow: 1, layout_flexBasisPercent: 1}\n  },\n\n  { name: \"清除远程代码标识\", type: \"button\", action: \"DeleteYckey()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n\n  {\n    name: \"💡　　 源　　 站　　 打　　 印　　 💡\",\n    type: \"button\",\n    action: \"test()\",\n    style: {layout_flexGrow: 1, layout_flexBasisPercent: 1}\n  }\n]",
    "loginUrl": "eval(String(Reload('https://qyyuapi.com/sy/js/如漫画/loginUrl.js')));",
    "respondTime": 63505,
    "ruleBookInfo": {
      "author": "author",
      "canReName": "reName",
      "coverUrl": "cover",
      "downloadUrls": "durl",
      "init": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/如漫画/ruleBookInfo.js')));\n</js>",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "latest",
      "name": "name",
      "tocUrl": "url",
      "wordCount": "word"
    },
    "ruleContent": {
      "content": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/如漫画/ruleContent.js')));\n</js>",
      "imageStyle": "FULL"
    },
    "ruleExplore": {
      "author": "author",
      "bookList": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/如漫画/ruleExplore.js')));\n</js>",
      "bookUrl": "url",
      "coverUrl": "cover",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "latest",
      "name": "name",
      "wordCount": "word"
    },
    "ruleSearch": {
      "author": "author",
      "bookList": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/如漫画/ruleSearch.js')));\n</js>",
      "bookUrl": "url",
      "checkKeyWord": "我的",
      "coverUrl": "cover",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "latest",
      "name": "name",
      "wordCount": "word"
    },
    "ruleToc": {
      "chapterList": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/如漫画/ruleToc.js')));\n</js>",
      "chapterName": "title",
      "chapterUrl": "link"
    },
    "searchUrl": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/如漫画/searchUrl.js')));\n</js>",
    "variableComment": "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",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "九五书包#2",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.95dushu.net",
    "customButton": false,
    "customOrder": 197,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787467083272,
    "respondTime": 5115,
    "ruleBookInfo": {
      "author": ".author@a@text",
      "coverUrl": ".con_limg@img@src",
      "intro": ".r_cons@text##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": ".txt_nav@a.1@text&&.lastrecord@ownText##小说|.*\\(|\\).*",
      "lastChapter": ".lastrecord@a@text",
      "name": ".info@h1@text",
      "tocUrl": ".r_tools@a.1@href"
    },
    "ruleContent": {
      "content": "id.content@textNodes",
      "replaceRegex": "##\\.pbtxt."
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "td.2@text",
      "bookList": "tbody@tr!0",
      "bookUrl": "a.0@href",
      "checkKeyWord": "道观",
      "coverUrl": "a.0@href##.+\\D((\\d+)\\d{3})\\D##/files/article/image/$2/$1/$1s.jpg###",
      "kind": "td.5:4@text",
      "lastChapter": "td.1@text",
      "name": "td.0@text",
      "wordCount": "td.3@text"
    },
    "ruleToc": {
      "chapterList": ".novel_list@dd@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php?ie=gbk&searchkey={{key}}&ct=2097152",
    "weight": 0
  },
  {
    "bookSourceComment": "半废了。但还可用。\n大概最新的十章+不能看。\nby.Thomas哟\n小说交流群462030508。\nA群637775313不加人。若家炸了查看此群群资料找新家。\n✱✱资源取自网络，仅供学习参考，请同学们在24小时内删除✱✱\n🆙💯Dragon Quest QB\n{{book.origin}}/wenxue/buy/ad-chapter/v4?apn=1&resourceId={{baseUrl.match(/bookId=(\\d+)/)[1]}}&serialId={{$.serialID}}\n",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "●QB女生kd♛",
    "bookSourceType": 0,
    "bookSourceUrl": "DragonQuestQBkd1",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 198,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"✲　　　　　　✲ 现代言情 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"婚恋情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=婚恋情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"豪门世家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=豪门世家\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市生活\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=都市生活\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"娱乐明星\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=娱乐明星\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市异能\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=都市异能\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"商战职场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=商战职场\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"民国情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=民国情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"官场沉浮\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=官场沉浮\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 古代言情 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典架空\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=古典架空\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"穿越奇情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=穿越奇情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古代情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=古代情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宫闱宅斗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=宫闱宅斗\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经商种田\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=经商种田\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女尊王朝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=女尊王朝\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"热血江湖\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=热血江湖\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"上古蛮荒\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=上古蛮荒\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 悬疑侦探 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"推理侦探\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=推理侦探\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"悬疑探险\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=悬疑探险\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神秘文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=神秘文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"恐怖惊悚\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=恐怖惊悚\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"幽冥情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=幽冥情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 仙侠奇缘 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典仙侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=古典仙侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"仙侣奇缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=仙侣奇缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=武侠情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=现代修真\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"远古洪荒\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=远古洪荒\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 玄幻言情 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"东方玄幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=东方玄幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异世大陆\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=异世大陆\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"魔法幻情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=魔法幻情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异能超术\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=异能超术\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异族恋情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=异族恋情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"西方奇幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=西方奇幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"远古神话\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=远古神话\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 浪漫青春 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春校园\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=青春校园\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春纯爱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=青春纯爱\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春疼痛\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=青春疼痛\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"叛逆成长\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=叛逆成长\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 科幻空间 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时空穿梭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=时空穿梭\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"末世危机\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=末世危机\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"未来世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=未来世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"星际恋歌\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=星际恋歌\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"超级科技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=超级科技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"进化变异\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=进化变异\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武机甲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=古武机甲\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 游戏竞技 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"网游情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=网游情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电子竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=电子竞技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏异界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=游戏异界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"体育竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=体育竞技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 纯爱 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"婚恋情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=婚恋情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时空穿梭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=时空穿梭\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"穿越奇情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=穿越奇情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典架空\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=古典架空\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古代情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=古代情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市生活\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=都市生活\",\"style\":{\"layout_flexGrow\":1}}]",
    "header": "{\n\t\"user-agent\":\"Mozilla/5.0 (Linux; Android 10; MI 8 Build/QKQ1.190828.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.101 Mobile Safari/537.36\",\n\t\"Referer\":\"https://bookshelf.html5.qq.com/qbread\"\n\t}",
    "lastUpdateTime": 1764985540013,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 3729,
    "ruleBookInfo": {
      "author": "$.author",
      "canReName": "",
      "coverUrl": "$.picurl",
      "init": "$.data.bookInfo",
      "intro": "<p>{{(t=String(java.getString('$.tag'))).length?'🏷️ '+t.replace(/\\|/g,', '):''}}</p>{{'\\n&lrm;'}}\n<p>{{$.summary}}</p>",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{java.put('time',String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,''))}}",
      "lastChapter": "{{$.lastSerialname}} • {{java.get('time')}}",
      "name": "$.resourceName",
      "tocUrl": "https://bookshelf.html5.qq.com/qbread/api/book/all-chapter?bookId={{$.resourceID}}",
      "wordCount": "$.contentsize"
    },
    "ruleContent": {
      "content": "<p>{{$.data.Content[0].Content}}</p>",
      "nextContentUrl": ""
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.rows[*]",
      "bookUrl": "https://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{$.resourceID}}",
      "coverUrl": "$.picurl",
      "intro": "$.summary",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,'')}}",
      "lastChapter": "$.lastSerialname",
      "name": "$.resourceName##（.*",
      "wordCount": "$.contentsize"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.data.state[?(@.dataName == 'novel_search_list')].items[*]",
      "bookUrl": "https://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{$.docId##.*_}}",
      "checkKeyWord": "大王饶命",
      "coverUrl": "$.cover_url",
      "intro": "$.abstract",
      "kind": "{{$.tag_views##\\s+##,}}\n{{java.getString('$.is_finished')==1?'已完结':'连载中'}}",
      "lastChapter": "",
      "name": "$.title",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "$.rows",
      "chapterName": "$.serialName",
      "chapterUrl": "https://novel.html5.qq.com/be-api/content/ads-read,{\n\t\"method\": \"POST\",\n\t\"body\": {\n\t\t\"Scene\": \"chapter\",\n\t\t\"ContentAnchorBatch\": [{\n\t\t\t\t\"BookID\": \"{{baseUrl.match(/bookId=(\\d+)/)[1]}}\",\n\t\t\t\t\"ChapterSeqNo\": [{{$.serialID}}]\n\t\t\t}]\n\t},\n\t\"headers\": {\n\t\t\"Q-GUID\": \"4aa27c7cf2d9aca3359656ea186488cb\"\n\t}\n}",
      "isPay": "$.isFree",
      "isVip": "//删掉这行字，vip章节会显示🔓\n$.isFree",
      "isVolume": "",
      "nextTocUrl": "",
      "preUpdateJs": "",
      "updateTime": ""
    },
    "searchUrl": "https://so.html5.qq.com/ajax/real/search_result?tabId=360&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "🎨皮皮漫画💞",
    "bookSourceType": 2,
    "bookSourceUrl": "http://www.pipimanhua.net",
    "bookUrlPattern": "https://.*/book/\\d+",
    "customButton": false,
    "customOrder": 199,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/皮皮漫画/exploreUrl.js')));\n</js>",
    "header": "<js>\nvar Proxy = Map('代理：').split(\",\");\nheaders={\n    \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36 Edg/127.0.0.0\",\n    \"proxy\": Proxy.some(value => parseInt(value, 10) == parseInt(Get('ci0'), 10)) ? '' : Proxy[0],\n}\ncache.put(java.md5Encode16(Get('url') + \"headers\"),JSON.stringify(headers));\nJSON.stringify(headers);\n</js>",
    "jsLib": "{\"皮皮漫画\":\"https://qyyuapi.com/sy/js/皮皮漫画/jsLib.js\"}",
    "lastUpdateTime": 1735706129545,
    "loginUi": "[\n  { name: \"代理：\", type: \"text\" },\n  { name: \"查看当前\", type: \"button\", action: \"look(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"查看历史\", type: \"button\", action: \"look(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"恢复默认\", type: \"button\", action: \"test(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"繁体搜索\", type: \"button\", action: \"search_TC()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"繁简转换\", type: \"button\", action: \"TC_to_SC()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"目录整理\", type: \"button\", action: \"settle()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n\n  { name: \"༺ˇ»`ʚ  点击切换源站  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"①皮皮❶\", type: \"button\", action: \"$(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"②皮皮❷\", type: \"button\", action: \"$(2)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"③皮皮❸\", type: \"button\", action: \"$(3)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"④皮皮❹\", type: \"button\", action: \"$(4)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"⑤皮皮❺\", type: \"button\", action: \"$(5)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"⑥皮皮❻\", type: \"button\", action: \"$(6)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n\n  { name: \"༺ˇ»`ʚ  点击切换地区  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"全部\", type: \"button\", action: \"o(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"国漫\", type: \"button\", action: \"o(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"日本\", type: \"button\", action: \"o(2)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n  { name: \"韩国\", type: \"button\", action: \"o(3)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.2} },\n\n  { name: \"༺ˇ»`ʚ  点击切换进度  ɞ´«ˇ༻\", type: \"button\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n  { name: \"全部\", type: \"button\", action: \"q(0)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"连载\", type: \"button\", action: \"q(1)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n  { name: \"完结\", type: \"button\", action: \"q(2)\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 0.25} },\n\n  {\n    name: \"清除网站Cookie缓存\",\n    type: \"button\",\n    action: \"deleteCookie()\",\n    style: {layout_flexGrow: 1, layout_flexBasisPercent: 1}\n  },\n\n  { name: \"清除远程代码标识\", type: \"button\", action: \"DeleteYckey()\", style: {layout_flexGrow: 1, layout_flexBasisPercent: 1} },\n\n  {\n    name: \"💡　　 源　　 站　　 打　　 印　　 💡\",\n    type: \"button\",\n    action: \"test()\",\n    style: {layout_flexGrow: 1, layout_flexBasisPercent: 1}\n  }\n]",
    "loginUrl": "eval(String(Reload('https://qyyuapi.com/sy/js/皮皮漫画/loginUrl.js')));",
    "respondTime": 71655,
    "ruleBookInfo": {
      "author": "author",
      "canReName": "reName",
      "coverUrl": "cover",
      "downloadUrls": "durl",
      "init": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/皮皮漫画/ruleBookInfo.js')));\n</js>",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "latest",
      "name": "name",
      "tocUrl": "url",
      "wordCount": "word"
    },
    "ruleContent": {
      "content": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/皮皮漫画/ruleContent.js')));\n</js>",
      "imageStyle": "FULL"
    },
    "ruleExplore": {
      "author": "author",
      "bookList": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/皮皮漫画/ruleExplore.js')));\n</js>",
      "bookUrl": "url",
      "coverUrl": "cover",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "latest",
      "name": "name",
      "wordCount": "word"
    },
    "ruleSearch": {
      "author": "author",
      "bookList": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/皮皮漫画/ruleSearch.js')));\n</js>",
      "bookUrl": "url",
      "checkKeyWord": "秘密",
      "coverUrl": "cover",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "latest",
      "name": "name",
      "wordCount": "word"
    },
    "ruleToc": {
      "chapterList": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/皮皮漫画/ruleToc.js')));\n</js>",
      "chapterName": "title",
      "chapterUrl": "link",
      "preUpdateJs": "if (!String(book.bookUrl).includes(Get('url'))) {\n    book.bookUrl = String(book.bookUrl).replace(/.*\\/\\/[^\\/]+/, Get('url'));\n    book.tocUrl = String(book.tocUrl).replace(/.*\\/\\/[^\\/]+/, Get('url'));\n    java.refreshTocUrl();\n}"
    },
    "searchUrl": "<js>\neval(String(Reload('https://qyyuapi.com/sy/js/皮皮漫画/searchUrl.js')));\n</js>",
    "variableComment": "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",
    "weight": 0
  },
  {
    "bookSourceComment": "半废了。但还可用。\n大概最新的十章+不能看。\nby.Thomas哟\n小说交流群462030508。\nA群637775313不加人。若家炸了查看此群群资料找新家。\n✱✱资源取自网络，仅供学习参考，请同学们在24小时内删除✱✱\n🆙💯Dragon Quest QB\n{{book.origin}}/wenxue/buy/ad-chapter/v4?apn=1&resourceId={{baseUrl.match(/bookId=(\\d+)/)[1]}}&serialId={{$.serialID}}",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "●QB男生<qq♛",
    "bookSourceType": 0,
    "bookSourceUrl": "DragonQuestQBall",
    "customButton": false,
    "customOrder": 200,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"✱　　　　　　✱ 都市 ✱　　　　　　✱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市生活\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=都市生活\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异术超能\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=异术超能\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"娱乐明星\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=娱乐明星\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"商战职场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=商战职场\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春校园\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=青春校园\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 玄幻 ✱　　　　　　✱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异世大陆\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=异世大陆\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"东方玄幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=东方玄幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"高武世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=高武世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"王朝争霸\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=王朝争霸\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 仙侠 ✱　　　　　　✱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"幻想修仙\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=幻想修仙\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神话修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=神话修真\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典仙侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=古典仙侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"修真文明\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=修真文明\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=现代修真\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 奇幻 ✱　　　　　　✱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"史诗奇幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=史诗奇幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"另类幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=另类幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"剑与魔法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=剑与魔法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代魔法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=现代魔法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史神话\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=历史神话\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 历史 ✱　　　　　　✱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"架空历史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=架空历史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"秦汉三国\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=秦汉三国\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"两宋元明\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=两宋元明\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"两晋隋唐\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=两晋隋唐\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史传记\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=历史传记\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"上古先秦\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=上古先秦\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"清史民国\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=清史民国\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"外国历史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=外国历史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 军事 ✱　　　　　　✱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"抗战烽火\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=抗战烽火\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战争幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=战争幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"谍战特工\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=谍战特工\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军旅生涯\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=军旅生涯\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事战争\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=军事战争\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 科幻空间 ✱　　　　　　✱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"末世危机\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=末世危机\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时空穿梭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=时空穿梭\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"进化变异\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=进化变异\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"未来世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=未来世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"星际文明\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=星际文明\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"超级科技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=超级科技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武机甲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=古武机甲\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 悬疑侦探 ✱　　　　　　✱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1508&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 游戏竞技 ✱　　　　　　✱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"虚拟网游\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=虚拟网游\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏异界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=游戏异界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电子竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=电子竞技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏系统\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=游戏系统\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏主播\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=游戏主播\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱   武    侠   ✱　　　　　　✱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"传统武侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=传统武侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=武侠幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠同人\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=武侠同人\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武未来\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=古武未来\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国术无双\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=国术无双\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 体育 ✱　　　　　　✱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"篮球运动\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=篮球运动\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"足球运动\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=足球运动\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"体育赛事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=体育赛事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱ 轻小说 ✱　　　　　　✱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"衍生同人\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=衍生同人\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"原生幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=原生幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"搞笑吐槽\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=搞笑吐槽\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱   短    篇   ✱　　　　　　✱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"短篇小说\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=短篇小说\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生活随笔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=生活随笔\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"影视剧本\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=影视剧本\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"诗歌散文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=诗歌散文\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人物传记\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=人物传记\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"美文游记\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=美文游记\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"评论文集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=评论文集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱   现    实   ✱　　　　　　✱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现实百态\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=现实百态\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"爱情婚姻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=爱情婚姻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"成功励志\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=成功励志\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"社会乡土\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=社会乡土\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=青春文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文学艺术\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=文学艺术\",\"style\":{\"layout_flexGrow\":1}}]",
    "header": "{\n\t\"user-agent\":\"Mozilla/5.0 (Linux; Android 10; MI 8 Build/QKQ1.190828.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.101 Mobile Safari/537.36\",\n\t\"Referer\":\"https://bookshelf.html5.qq.com/qbread\"\n\t}",
    "lastUpdateTime": 1769597807101,
    "respondTime": 3780,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$.picurl",
      "init": "$.data.bookInfo",
      "intro": "<p>{{(t=String(java.getString('$.tag'))).length?'🏷️ '+t.replace(/\\|/g,', '):''}}</p>{{'\\n&lrm;'}}\n<p>{{$.summary}}</p>",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{java.put('time',String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,''))}}",
      "lastChapter": "{{$.lastSerialname}} • {{java.get('time')}}",
      "name": "$.resourceName",
      "tocUrl": "https://bookshelf.html5.qq.com/qbread/api/book/all-chapter?bookId={{$.resourceID}}",
      "wordCount": "$.contentsize"
    },
    "ruleContent": {
      "content": "<p>{{$.data.Content[0].Content}}</p>"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.rows[*]",
      "bookUrl": "https://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{$.resourceID}}",
      "coverUrl": "$.picurl",
      "intro": "$.summary",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,'')}}",
      "lastChapter": "$.lastSerialname",
      "name": "$.resourceName##（.*",
      "wordCount": "$.contentsize"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.booklist[*]",
      "bookUrl": "$.bid\n<js>1100000000+parseInt(result)</js>\nhttps://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{result}}",
      "checkKeyWord": "深空彼岸",
      "coverUrl": "$.bid\n@js:\nvar s = result\nfunction gt(s){\n\tlet a = s.slice(-3)\n\tif(a<10){\n\t\t\tn = s.slice(-1)\n\t\t}\n\telse if(a<100){\n\t\t\tn = s.slice(-2)\n\t\t}\n\telse{\n\t\t\tn = a\n\t\t}\n\treturn n\n}\n\"http://wfqqreader-1252317822.image.myqcloud.com/cover/\"+gt(s)+\"/\"+s+\"/b_\"+s+\".jpg\"",
      "intro": "$.intro",
      "kind": "{{$.categoryInfoV4\n##\\d.*?\\:(.*?)\\:.*?(,|$)##$1$2}}\n{{$.updateInfo##已更新至.*##连载中}}\n##小说,",
      "lastChapter": "$.updateInfo##已更新至##第",
      "name": "$.title",
      "wordCount": "$.totalWords"
    },
    "ruleToc": {
      "chapterList": "$.rows",
      "chapterName": "$.serialName",
      "chapterUrl": "https://novel.html5.qq.com/be-api/content/ads-read,{\n\t\"method\": \"POST\",\n\t\"body\": {\n\t\t\"Scene\": \"chapter\",\n\t\t\"ContentAnchorBatch\": [{\n\t\t\t\t\"BookID\": \"{{baseUrl.match(/bookId=(\\d+)/)[1]}}\",\n\t\t\t\t\"ChapterSeqNo\": [{{$.serialID}}]\n\t\t\t}]\n\t},\n\t\"headers\": {\n\t\t\"Q-GUID\": \"4aa27c7cf2d9aca3359656ea186488cb\"\n\t}\n}",
      "isPay": "$.isFree",
      "isVip": "//删掉这行字，vip章节会显示🔓\n$.isFree"
    },
    "searchUrl": "https://newopensearch.reader.qq.com/wechat?keyword={{key}}&start={{page-1}}&end=19",
    "weight": 0
  },
  {
    "bookSourceComment": "自制系列源 错层小说网移动版，实时更新精品小说，无弹窗无错层精校版",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "错层小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.cuoceng.com",
    "customButton": false,
    "customOrder": 201,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全本::/book/finish.html\n排行::/book/ranking.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Mobile/15E148 Safari/604.1\"}",
    "lastUpdateTime": 1781425243045,
    "respondTime": 18426,
    "ruleBookInfo": {
      "author": ".booktag a.red@text",
      "coverUrl": ".bookcover img@src",
      "intro": ".bookintro@text",
      "kind": ".booktag a.blue.0@text",
      "lastChapter": ".bookchapter@text",
      "name": ".booktitle@text",
      "tocUrl": "text.查看全部章节@href",
      "wordCount": ".booktag span.0@text"
    },
    "ruleContent": {
      "content": "#content@html##错层小说网|cuoceng\\.com",
      "nextContentUrl": "#linkNext@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author@text##作者：",
      "bookList": ".bookbox",
      "bookUrl": ".bookname a@href",
      "intro": ".update@text##简介：",
      "lastChapter": ".cat a@text",
      "name": ".bookname a@text",
      "wordCount": ".author@text##字数："
    },
    "ruleToc": {
      "chapterList": "#allchapter dd a[title]",
      "chapterName": "@text",
      "chapterUrl": "@href",
      "nextTocUrl": "#linkNext@href"
    },
    "searchUrl": "/book/so/{{key}}.html",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "松鹤阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "DQuestQBall",
    "customButton": false,
    "customOrder": 202,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\" 书架 \",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"　　　　　　 都市 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"都市生活\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=都市生活\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异术超能\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=异术超能\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"娱乐明星\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=娱乐明星\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"商战职场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=商战职场\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春校园\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=青春校园\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 玄幻 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"异世大陆\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=异世大陆\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"东方玄幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=东方玄幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"高武世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=高武世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 仙侠 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"幻想修仙\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=幻想修仙\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神话修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=神话修真\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典仙侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=古典仙侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"修真文明\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=修真文明\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=现代修真\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 奇幻 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"史诗奇幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=史诗奇幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"另类幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=另类幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"剑与魔法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=剑与魔法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代魔法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=现代魔法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史神话\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=历史神话\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 历史 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"架空历史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=架空历史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"秦汉三国\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=秦汉三国\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"两宋元明\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=两宋元明\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"两晋隋唐\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=两晋隋唐\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史传记\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=历史传记\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"上古先秦\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=上古先秦\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 军事 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"抗战烽火\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=抗战烽火\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战争幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=战争幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"谍战特工\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=谍战特工\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军旅生涯\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=军旅生涯\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事战争\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=军事战争\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 科幻空间 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"末世危机\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=末世危机\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时空穿梭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=时空穿梭\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"进化变异\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=进化变异\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"未来世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=未来世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"星际文明\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=星际文明\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"超级科技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=超级科技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 游戏竞技 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"虚拟网游\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=虚拟网游\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏异界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=游戏异界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电子竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=电子竞技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏系统\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=游戏系统\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏主播\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=游戏主播\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 武侠 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"传统武侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=传统武侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=武侠幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠同人\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=武侠同人\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武未来\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=古武未来\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国术无双\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=国术无双\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 轻小说 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"衍生同人\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=衍生同人\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"原生幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=原生幻想\",\"style\":{\"layout_flexGrow\":1}}]",
    "header": "{\n\t\"user-agent\":\"Mozilla/5.0 (Linux; Android 10; MI 8 Build/QKQ1.190828.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.101 Mobile Safari/537.36\",\n\t\"Referer\":\"https://bookshelf.html5.qq.com/qbread\"\n\t}",
    "lastUpdateTime": 1773585931321,
    "respondTime": 4334,
    "ruleBookInfo": {
      "author": "$.author",
      "init": "$.data.bookInfo",
      "intro": "$.intro",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{java.put('time',String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,''))}}",
      "lastChapter": "{{$.lastSerialname}} • {{java.get('time')}}",
      "name": "$.resourceName",
      "tocUrl": "https://bookshelf.html5.qq.com/qbread/api/book/all-chapter?bookId={{$.resourceID}}",
      "wordCount": "$.contentsize"
    },
    "ruleContent": {
      "content": "<p>{{$.data.Content[0].Content}}</p>"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.rows[*]",
      "bookUrl": "https://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{$.resourceID}}",
      "coverUrl": "$.picurl",
      "intro": "$.summary",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,'')}}",
      "lastChapter": "$.lastSerialname",
      "name": "$.resourceName##（.*",
      "wordCount": "$.contentsize"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.booklist[*]",
      "bookUrl": "$.bid\n<js>1100000000+parseInt(result)</js>\nhttps://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{result}}",
      "coverUrl": "$.bid\n@js:\nvar s = result\nfunction gt(s){\n\tlet a = s.slice(-3)\n\tif(a<10){\n\t\t\tn = s.slice(-1)\n\t\t}\n\telse if(a<100){\n\t\t\tn = s.slice(-2)\n\t\t}\n\telse{\n\t\t\tn = a\n\t\t}\n\treturn n\n}\n\"http://wfqqreader-1252317822.image.myqcloud.com/cover/\"+gt(s)+\"/\"+s+\"/b_\"+s+\".jpg\"",
      "intro": "$.intro",
      "kind": "{{$.categoryInfoV4\n##\\d.*?\\:(.*?)\\:.*?(,|$)##$1$2}}\n{{$.updateInfo##已更新至.*##连载中}}\n##小说,",
      "lastChapter": "$.updateInfo##已更新至##第",
      "name": "$.title",
      "wordCount": "$.totalWords"
    },
    "ruleToc": {
      "chapterList": "$.rows",
      "chapterName": "$.serialName",
      "chapterUrl": "https://novel.html5.qq.com/be-api/content/ads-read,{\n\t\"method\": \"POST\",\n\t\"body\": {\n\t\t\"Scene\": \"chapter\",\n\t\t\"ContentAnchorBatch\": [{\n\t\t\t\t\"BookID\": \"{{baseUrl.match(/bookId=(\\d+)/)[1]}}\",\n\t\t\t\t\"ChapterSeqNo\": [{{$.serialID}}]\n\t\t\t}]\n\t},\n\t\"headers\": {\n\t\t\"Q-GUID\": \"4aa27c7cf2d9aca3359656ea186488cb\"\n\t}\n}",
      "isPay": "$.isFree",
      "isVip": "//删掉这行字，vip章节会显示🔓\n$.isFree"
    },
    "searchUrl": "https://newopensearch.reader.qq.com/wechat?keyword={{key}}&start={{page-1}}&end=19",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "齐鲁文学🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.qiluwx.com#🎃",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 203,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "{\n\t\"x-requested-with\": \"XMLHttpRequest\",\n\t\"User-Agent\": \"Mozilla/5.0 (Linux; Android 10; SK) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Mobile Safari/537.36\"\n}",
    "lastUpdateTime": 0,
    "loginUrl": "",
    "respondTime": 11106,
    "ruleBookInfo": {
      "author": "[property$=og:novel:author]@content",
      "coverUrl": "[property$=og:image]@content",
      "downloadUrls": ".addbookcase@href",
      "init": "",
      "intro": "[property$=og:description]@content",
      "kind": "[property$=og:novel:category]@content&&[property$=og:novel:status]@content&&[property$=og:novel:update_time]@content",
      "lastChapter": "[property$=og:novel:latest_chapter_name]@content",
      "name": "[property$=og:title]@content",
      "tocUrl": "[property$=og:url]@content@js:result.replace(\"_\",\"/\")",
      "wordCount": ".visible-xs.1@text##字数："
    },
    "ruleContent": {
      "content": "#booktxt@html",
      "imageStyle": "",
      "nextContentUrl": "@js:\nnext = result.match(/next_page = \"(.+)\"/) || [];\nurl = next[1];\n/_\\d+/.test(url) && url",
      "replaceRegex": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": ""
    },
    "ruleSearch": {
      "author": ".btm@a@title",
      "bookList": "#hotcontent@.item",
      "bookUrl": "a@href",
      "checkKeyWord": "副本需要我这样的人才",
      "coverUrl": ".lazy@src",
      "intro": "dl@dd@text",
      "kind": ".blue@text",
      "lastChapter": "",
      "name": "dt@a@text",
      "wordCount": ".orange@text"
    },
    "ruleToc": {
      "chapterList": "#content_1@a",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "{{cookie.removeCookie(source.getKey())}}\nhttps://www.qiluwx.com/search/,{\n  \"body\": \"keyword={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "禁止外传，内部使用！",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "丁丁小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://api.xqjcool.com",
    "customButton": false,
    "customOrder": 204,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1786861658200,
    "respondTime": 2392,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "content"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "authorName",
      "bookList": ".data[*]",
      "bookUrl": "@js:\nheaders={'client-device':'a1ea177937d2f4cc139772c98b412ae7','client-brand':'vivo','client-version':'7.6.5','client-channel':'android','client-name':'app.maoyankanshu.novel','alias-name':'dingdianapp','client-source':'android','Authorization':'bearereyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOlwvXC9hcGkueGluZ2xpYW5nZ2xvYmFsLmNvbVwvYXV0aFwvdGhpcmQiLCJpYXQiOjE3NzU0MTc5NDYsImV4cCI6MTg2ODcyOTk0NiwibmJmIjoxNzc1NDE3OTQ2LCJqdGkiOiJUbjVrTEEzU1J1cUwwN2d0Iiwic3ViIjo2Nzk4NjAsInBydiI6ImExY2IwMzcxODAyOTZjNmExOTM4ZWYzMGI0Mzc5NDY3MmRkMDE2YzUifQ.LZTk9VR25aZjOfz_A3rGuplNroU5OJaKA5vmzi2CkDc'}\n\"/novel/{{$.novelId}}/chapters,\"+java.put(\"headers\",JSON.stringify({\"headers\":headers}))",
      "checkKeyWord": "我也要当女仆吗",
      "coverUrl": "cover",
      "intro": "summary",
      "kind": "categoryNames[*].classname",
      "name": "novelName",
      "wordCount": "wordNum"
    },
    "ruleToc": {
      "chapterList": ".list[*]",
      "chapterName": "chapterName",
      "chapterUrl": "path\n<js>\nconst KEY_BASE64 = \"NDM5NWRhYTUwYWQ2YmFmNw==\";\nconst IV_BASE64 = \"NDM5NWRhYTUwYWQ2YmFmNw==\";\n\ntry {\n    var keyBytes = java.base64DecodeToByteArray(KEY_BASE64);\n    var ivBytes = java.base64DecodeToByteArray(IV_BASE64);\n    var crypto = java.createSymmetricCrypto(\"AES/CBC/PKCS5Padding\", keyBytes, ivBytes);\n    var decrypted = crypto.decrypt(result);\n    var realPath = java.bytesToStr(decrypted);\n\n    // 关键：截掉前面乱码，只取 .com/ 后面真实路径\n    var idx = realPath.indexOf(\".com/\");\n    if (idx != -1) {\n        realPath = \"http://api.xqjcool.com/\" + realPath.substring(idx + 5);\n    }\n\n    result = realPath;\n} catch (e) {\n    java.log(\"AES解密失败: \" + e.toString());\n    result = \"\";\n}\nresult\n</js>"
    },
    "searchUrl": "/search?keyword={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "无忧小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.51eshu.com",
    "bookUrlPattern": "https://(www|m).51eshu.com/shu/\\d+/",
    "customButton": false,
    "customOrder": 205,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::/XuanHuan/{{page}}.html\n奇幻::/QiHuan/{{page}}.html\n武侠::/WuXia/{{page}}.html\n都市::/DuShi/{{page}}.html\n历史::/LiShi/{{page}}.html\n军事::/JunShi/{{page}}.html\n悬疑::/XuanYi/{{page}}.html\n游戏::/YouXi/{{page}}.html\n科幻::/KeHuan/{{page}}.html\n体育::/TiYu/{{page}}.html\n古言::/GuYan/{{page}}.html\n现言::/XianYan/{{page}}.html\n幻言::/HuanYan/{{page}}.html\n仙侠::/XianXia/{{page}}.html\n青春::/QinɡChun/{{page}}.html\n穿越::/ChuanYue/{{page}}.html\n女生::/NuShenɡ/{{page}}.html\n其他::/QiTa/{{page}}.html",
    "lastUpdateTime": 1785963889790,
    "respondTime": 4980,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "init": "@put:{\n\"n\":\"[property$=book_name]@content||.detail .name strong@text\",\n\"a\":\"[property$=author]@content||.detail .author a@text\",\n\"k\":\"[property~=category|status|update_time]@content\",\n\"l\":\"[property$=latest_chapter_name]@content||.detail .new a@text\",\n\"i\":\"[property$=description]@content\",\n\"c\":\"[property$=image]@content||.detail img@src\"}",
      "intro": "@get:{i}##无忧小说网.+观看小说:",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}",
      "tocUrl": "{{baseUrl.replace('://m.', '://www.')}}"
    },
    "ruleContent": {
      "content": "id.content@p@html",
      "nextContentUrl": "id.pager_next@href",
      "replaceRegex": "##(喜欢.*请大家收藏.*小说网.*|.*下一页继续阅读.*|\\(未完待续\\)|\\(.*?小说.*?qdread.*?\\)|ps：.*?qdread.*?更多支持！|.*书友大本营.*|^\\s*第{0,1}[零一二三四五六七八九十百\\d]{1,5}章\\s*)##"
    },
    "ruleExplore": {
      "author": ".s4@a@text",
      "bookList": "li",
      "bookUrl": ".s2@a@href",
      "kind": "li:nth-of-type(n+2) span.s1@text",
      "lastChapter": ".s3@a@text",
      "name": ".s2@a@text",
      "wordCount": "li:nth-of-type(n+2) span.s5@text"
    },
    "ruleSearch": {
      "author": "dd:nth-of-type(2)@span:nth-of-type(1)@text",
      "bookList": "dl",
      "bookUrl": "h3@a@href",
      "checkKeyWord": "崔大人驾到",
      "coverUrl": "dt@a@img@src",
      "intro": "dt@dd.book_desa@text",
      "kind": "span:nth-of-type(3)@text",
      "lastChapter": ".book_other@a@text",
      "name": "h3@a@text",
      "wordCount": "span:nth-of-type(4)@text"
    },
    "ruleToc": {
      "chapterList": "id.list@dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "@js:\nvar base_url=source.getKey(),\n url=base_url + \"/search.html\",\n body=\"searchtype=all&searchkey=\"+key,\n cookies=cookie.getCookie(base_url);\nbody=String(body);\nif(cookies.indexOf('; ') < 0) cookies=\"waf_sc=5889647726; novel_87069=65248472%7C1706004912\";\npost=java.post(url,body,{\n \"Referer\": source.getKey(),\n \"Cookie\": cookies\n}).header(\"Location\");\nString(post).replace(/\\d+.html/,page+\".html\");",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "女生文学",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.wenxuem.com",
    "customButton": false,
    "customOrder": 206,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "周榜::/book/topweekvisit/0/{{page}}.html\n月榜::/book/topmonthvisit/0/{{page}}.html\n总榜::/book/topallvisit/0/{{page}}.html\n周推::/book/topweekvote/0/{{page}}.html\n月推::/book/topmonthvote/0/{{page}}.html\n总推::/book/topallvote/0/{{page}}.html\n站推::/book/toptoptime/0/{{page}}.html\n收藏::/book/topgoodnum/0/{{page}}.html\n字数::/book/topsize/0/{{page}}.html\n原创::/book/topauthorupdate/0/{{page}}.html\n转载::/book/topmasterupdate/0/{{page}}.html\n入库::/book/toppostdate/0/{{page}}.html\n近更::/book/toplastupdate/0/{{page}}.html\n玄幻::/book/sort1/0/{{page}}.html\n修真::/book/sort2/0/{{page}}.html\n言情::/book/sort3/0/{{page}}.html\n历史::/book/sort4/0/{{page}}.html\n推理::/book/sort5/0/{{page}}.html\n网游::/book/sort6/0/{{page}}.html\n科幻::/book/sort7/0/{{page}}.html\n恐怖::/book/sort8/0/{{page}}.html\n都市::/book/sort9/0/{{page}}.html\n其他::/book/sort10/0/{{page}}.html\n经部::/book/sort11/0/{{page}}.html\n史书::/book/sort12/0/{{page}}.html\n子部::/book/sort13/0/{{page}}.html\n集部::/book/sort14/0/{{page}}.html\n古典::/book/sort16/0/{{page}}.html\n诗歌::/book/sort17/0/{{page}}.html",
    "lastUpdateTime": 1784645327083,
    "respondTime": 4090,
    "ruleBookInfo": {
      "intro": "{{@@##<!--开始-->([^<]+)##$1###}}{{@@id.tuijian.0@ownText}}@js:result.replace(/.*简介.*著\\,|【展开】|【收起】/g,\"\")##(^|[。！？]+[”」）】]?)##$1<br>",
      "lastChapter": ".novel_list[-1]@tag.a.-1@text||tag.tbody.0@tag.a.-2@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "tocUrl": ".ulrow@tag.a.0@href"
    },
    "ruleContent": {
      "content": "id.clickeye_content@textNodes",
      "replaceRegex": "##.女生文学.*\\)"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "tbody@tr!0",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.a.0@href##.+\\D((\\d+)\\d{3})\\D##/files/article/image/$2/$1/$1s.jpg###",
      "kind": "tag.td.5:4@text",
      "lastChapter": "tag.td.1@text##简介.|正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "tag.td.0@text",
      "wordCount": "tag.td.3@text"
    },
    "ruleToc": {
      "chapterList": ".novel_list@li@a",
      "chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "壬二酸 目录下一页by辞暮🍏",
    "bookSourceGroup": "🔞",
    "bookSourceName": "文学壬二酸",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.po18co.com/",
    "customButton": false,
    "customOrder": 207,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1785669786770,
    "respondTime": 5555,
    "ruleBookInfo": {
      "author": "class.xx@tag.ul@tag.li.2@tag.a@text",
      "coverUrl": "class.xsfm@tag.img@src",
      "intro": "class.jianjie bk@text",
      "kind": "class.xx@tag.ul@tag.li.1@tag.a@text",
      "lastChapter": "class.xx@tag.ul@tag.li.3@tag.a@text",
      "name": "class.xx@tag.ul@tag.li.0@text",
      "tocUrl": "text.查看更多章节@href"
    },
    "ruleContent": {
      "content": "id.nr@textNodes",
      "imageStyle": "full"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.a.2@text",
      "bookList": "class.fk@tag.li",
      "bookUrl": "tag.a.1@href",
      "checkKeyWord": "不死不灭",
      "kind": "tag.a.0@text",
      "name": "tag.a.1@text##在线阅读"
    },
    "ruleToc": {
      "chapterList": "class.lb fk@tag.li!-1",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "isVolume": "voltype",
      "nextTocUrl": ".showpage a@href",
      "updateTime": "info"
    },
    "searchUrl": "/s.php,{\n  \"body\": \"submit=&type=articlename&s={{key}}\",\n  \"method\": \"POST\",\n  \"charset\": \"GBK\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "24.12.18修复by 明月",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "红叶书斋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.hongyebookzhai.com",
    "customButton": false,
    "customOrder": 208,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"榜单\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"日榜\",\"url\":\"/top-dayvisit-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"周榜\",\"url\":\"/top-weekvisit-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"月榜\",\"url\":\"/top-monthvisit-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"总榜\",\"url\":\"/top-allvisit-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"收藏\",\"url\":\"/top-goodnum-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"字数\",\"url\":\"/top-size-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"总推\",\"url\":\"/top-allvote-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"入库\",\"url\":\"/top-postdate-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/sort-1-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"仙侠\",\"url\":\"/sort-2-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/sort-3-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/sort-4-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"游戏\",\"url\":\"/sort-5-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/sort-6-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"恐怖\",\"url\":\"/sort-7-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"女生\",\"url\":\"/sort-8-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/sort-9-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"完本\",\"url\":\"/full-{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}]",
    "header": "{\n\t\"x-requested-with\": \"XMLHttpRequest\",\n\t\"User-Agent\": \"Mozilla/5.0 (Linux; Android 10; SK) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Mobile Safari/537.36\"\n}",
    "lastUpdateTime": 1787416957044,
    "respondTime": 14149,
    "ruleBookInfo": {
      "author": ".block_txt2@p.2@text",
      "coverUrl": ".block_img2@img@src",
      "intro": ".intro_info@html##免费阅读|最新更新",
      "kind": ".block_txt2@p.3:4:5@text##.*：|小说|\\s..:.*",
      "lastChapter": ".block_txt2@a.3@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": ".block_txt2@h2@text",
      "tocUrl": "text.查看目录@href"
    },
    "ruleContent": {
      "content": "#nr1@textNodes",
      "nextContentUrl": "#pb_next@href",
      "replaceRegex": "##请收藏：.*|（温馨提示：请关闭畅读或阅读模式，否则内容无法正常显示）|\\s*[\\(（]本章完[\\)）]\\s*|&nb|&n|&|.*sp; |.*/>"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "textNodes##.*/",
      "bookList": ".line",
      "bookUrl": "a.1@href",
      "checkKeyWord": "韩三千苏迎夏",
      "coverUrl": "a.1@href##.+\\D((\\d+)\\d{3})\\D##http://img.shufahouse.com/$2/$1/$1s.jpg###",
      "kind": "a.0@text##\\[|\\]|小说",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": "div.cover > ul > li >a",
      "chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "href",
      "nextTocUrl": "<js>\ntry {\n  var n = String(result).match(/第1\\/(\\d+)页/)[1];\n  var list = [];\n  if (n == 1) {\n    list;\n  } else {\n    for (var i = 2; i <= n; i++) {\n      list.push(baseUrl.replace(/\\/$/, '') + \"_\" +i);\n    }\n  }\n  list;\n} catch (e) {}\n</js>"
    },
    "searchUrl": "/s.php,{\n  \"charset\": \"gbk\",\n  \"method\": \"post\",\n  \"body\": \"s={{key}}&type=articlename&submit=\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "茶马小说 ",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.chamabooks.net",
    "bookUrlPattern": "https://www.chamabooks.net/novel_.*?.html",
    "customButton": false,
    "customOrder": 209,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nconst categories = [[\"全部\",\"\"],[\"言情\",\"2\"],[\"耽美\",\"3\"],[\"百合\",\"4\"],[\"武侠\",\"5\"],[\"玄幻\",\"6\"],[\"科幻\",\"7\"],[\"恐怖\",\"8\"],[\"推理\",\"9\"],[\"短篇\",\"12\"]];\nconst tpl = \"/main?c=$$&p={{page}}\"\n\nconst obj = (title, url, size) => ({\n  title,\n  url,\n  style: {layout_flexBasisPercent: size}\n})\n\nlet list = categories.map(([title, id]) => \n  obj(title, tpl.replace(\"$$\", id), 0.2)\n)\n\n// 在线获取书单（只获取第一页）\ntry {\n  let bookList = java.get(\"chamabooks_bookList\");\n  let bookListData = [];\n  if (bookList) {\n    try {\n      bookListData = JSON.parse(bookList);\n    } catch (e) {\n      java.log(\"缓存数据解析失败: \" + e.message);\n    }\n  }\n  \n  if (!Array.isArray(bookListData) || bookListData.length === 0) {\n    let html = java.ajax(\"https://www.chamabooks.net/main?c=100\");\n    if (html) {\n      let doc = org.jsoup.Jsoup.parse(html);\n      let bookListEl = doc.select(\".novel-item h4 a\");\n      \n      if (bookListEl && bookListEl.size() > 0) {\n        bookListData.push(obj(\"书单\", \"\", 1));\n        \n        bookListEl.forEach(el => {\n          let n = String(el.text()).trim();\n          let u = String(el.attr(\"href\"));\n          bookListData.push(obj(n, u, 0.9));\n        });\n        \n        java.put(\"chamabooks_bookList\", JSON.stringify(bookListData));\n      }\n    }\n  }\n  \n  if (bookListData.length > 0) {\n    list = list.concat(bookListData);\n  }\n  \n} catch (e) {\n  java.log(\"获取书单失败: \" + e.message);\n}\n\nJSON.stringify(list);",
    "header": "{\n\t \"User-Agent\":\"Mozilla/5.0 (iPhone; CPU iPhone OS 17_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3 Mobile/15E148 Safari/604.1\",\n\t \"Referer\": \"https://www.chamabooks.net/\"\n}",
    "lastUpdateTime": 1784112379821,
    "loginUrl": "/",
    "respondTime": 11254,
    "ruleBookInfo": {
      "author": "h1 a@text##作者:",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": ".novel-summary-content@html",
      "kind": "@js:\nconst get = (sel) => String(java.getString(sel))\nlet cat = book.kind || get(\".category@text\")\nlet count = get(\"@@.misc-value.2@text\");\ncount = count ? \",章节数：\"+count : \"\";\ncat.concat(count)",
      "lastChapter": "option.-1@value",
      "name": "h1@ownText##《|》",
      "wordCount": ".misc-value.1@text##$##字"
    },
    "ruleContent": {
      "content": "#novel-content@html##{{title}}"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".misc-value a@text",
      "bookList": ".novel-item",
      "bookUrl": "h4 a@href",
      "intro": "p.novel-desc@text",
      "kind": ".category,.upload-date@text",
      "name": "h4 a@text",
      "wordCount": ".word-count@text"
    },
    "ruleToc": {
      "chapterList": "option",
      "chapterName": "text",
      "chapterUrl": "value"
    },
    "searchUrl": "/search?s={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🌙 17k小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://api.17k.com",
    "customButton": false,
    "customOrder": 210,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\": \"男生·全部\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"人气总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=3&orderBy=1&page={{page}}&type=10&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"人气月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=2&orderBy=1&page={{page}}&type=10&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"人气周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=1&orderBy=1&page={{page}}&type=10&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"完本总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=3&orderBy=1&page={{page}}&type=11&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"完本月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=2&orderBy=1&page={{page}}&type=11&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"完本周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=1&orderBy=1&page={{page}}&type=11&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"免费总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=3&orderBy=1&page={{page}}&type=14&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"免费月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=2&orderBy=1&page={{page}}&type=14&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"免费周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=1&orderBy=1&page={{page}}&type=14&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"新人总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=3&orderBy=1&page={{page}}&type=16&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"新人月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=2&orderBy=1&page={{page}}&type=16&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"新人周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=1&orderBy=1&page={{page}}&type=16&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"新书总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=3&orderBy=1&page={{page}}&type=9&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"新书月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=2&orderBy=1&page={{page}}&type=9&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"新书周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=1&orderBy=1&page={{page}}&type=9&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"包月总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=3&orderBy=1&page={{page}}&type=8&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"包月月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=2&orderBy=1&page={{page}}&type=8&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"包月周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=1&orderBy=1&page={{page}}&type=8&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"礼物总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=3&orderBy=1&page={{page}}&type=15&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"礼物月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=2&orderBy=1&page={{page}}&type=15&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"礼物周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=1&orderBy=1&page={{page}}&type=15&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"畅销总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=3&orderBy=1&page={{page}}&type=2&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"畅销月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=2&orderBy=1&page={{page}}&type=2&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"畅销周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=2&orderTime=1&orderBy=1&page={{page}}&type=2&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"都市小说\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=3&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"都市生活\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=3&categoryId=3&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"都市异能\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=3&categoryId=87&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"都市重生\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=3&categoryId=89&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"职场励志\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=3&categoryId=90&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"现实题材\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=3&categoryId=91&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"娱乐明星\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=3&categoryId=116&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"都市激战\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=3&categoryId=92&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"商业大亨\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=3&categoryId=117&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"校园风云\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=3&categoryId=118&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"乡村乡土\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=3&categoryId=119&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"奇幻玄幻\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=21&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"异世争霸\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=21&categoryId=115&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"魔法校园\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=21&categoryId=122&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"领主贵族\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=21&categoryId=123&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"西方奇幻\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=21&categoryId=1&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"东方玄幻\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=21&categoryId=8&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"异界大陆\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=21&categoryId=83&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"艺术超能\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=21&categoryId=84&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"仙侠武侠\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=24&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"洪荒封神\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=24&categoryId=85&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"现代异侠\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=24&categoryId=96&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"历史武侠\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=24&categoryId=124&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"奇幻修真\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=24&categoryId=82&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"国术古武\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=24&categoryId=125&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"传统武侠\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=24&categoryId=2&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"现代修真\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=24&categoryId=81&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古典仙侠\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=24&categoryId=9&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史军事\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=22&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"历史穿越\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=22&categoryId=4&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"架空历史\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=22&categoryId=93&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"战争幻想\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=22&categoryId=11&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"军旅生涯\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=22&categoryId=94&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"历史传奇\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=22&categoryId=120&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"战史风云\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=22&categoryId=126&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"谍战特工\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=22&categoryId=127&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"游戏竞技\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=23&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"虚拟网游\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=23&categoryId=5&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"电子竞技\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=23&categoryId=12&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"游戏生涯\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=23&categoryId=14&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"篮球风云\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=23&categoryId=97&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"天下足球\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=23&categoryId=98&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"棋牌桌游\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=23&categoryId=99&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"游戏异界\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=23&categoryId=121&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"体育竞技\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=23&categoryId=100&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻末世\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=14&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"末世危机\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=14&categoryId=128&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"进化变异\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=14&categoryId=129&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"时空穿梭\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=14&categoryId=130&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"未来幻想\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=14&categoryId=6&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"古武机甲\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=14&categoryId=131&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"星际战争\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=14&categoryId=95&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"悬疑推理\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=29&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"民间奇谈\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=29&categoryId=179&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"恐怖悬疑\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=29&categoryId=180&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"侦探推理\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=29&categoryId=181&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"探险揭秘\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=29&categoryId=182&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"轻小说\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=30&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"爆笑幽默\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=30&categoryId=183&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"男生同人\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=30&categoryId=184&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"宅系小说\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=30&categoryId=185&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"萌系小说\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=30&categoryId=186&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"灵魂转换\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=30&categoryId=187&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"女生·全部\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"人气总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=3&orderBy=1&page={{page}}&type=10&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"人气月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=2&orderBy=1&page={{page}}&type=10&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"人气周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=1&orderBy=1&page={{page}}&type=10&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"完本总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=3&orderBy=1&page={{page}}&type=11&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"完本月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=2&orderBy=1&page={{page}}&type=11&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"完本周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=1&orderBy=1&page={{page}}&type=11&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"免费总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=3&orderBy=1&page={{page}}&type=14&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"免费月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=2&orderBy=1&page={{page}}&type=14&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"免费周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=1&orderBy=1&page={{page}}&type=14&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"新人总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=3&orderBy=1&page={{page}}&type=16&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"新人月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=2&orderBy=1&page={{page}}&type=16&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"新人周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=1&orderBy=1&page={{page}}&type=16&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"新书总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=3&orderBy=1&page={{page}}&type=9&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"新书月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=2&orderBy=1&page={{page}}&type=9&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"新书周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=1&orderBy=1&page={{page}}&type=9&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"包月总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=3&orderBy=1&page={{page}}&type=8&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"包月月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=2&orderBy=1&page={{page}}&type=8&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"包月周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=1&orderBy=1&page={{page}}&type=8&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"礼物总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=3&orderBy=1&page={{page}}&type=15&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"礼物月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=2&orderBy=1&page={{page}}&type=15&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"礼物周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=1&orderBy=1&page={{page}}&type=15&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"畅销总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=3&orderBy=1&page={{page}}&type=2&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"畅销月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=2&orderBy=1&page={{page}}&type=2&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"畅销周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=3&orderTime=1&orderBy=1&page={{page}}&type=2&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"古代言情\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=5&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"江湖侠情\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=5&categoryId=132&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"架空历史\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=5&categoryId=133&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"古代重生\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=5&categoryId=139&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"女尊女强\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=5&categoryId=140&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"空间种田\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=5&categoryId=165&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"宫斗权谋\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=5&categoryId=10&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"兽世王朝\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=5&categoryId=22&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"豪门宅斗\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=5&categoryId=7&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"现代言情\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=17&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"总裁豪门\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=17&categoryId=134&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"游戏竞技\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=17&categoryId=135&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"年代种田\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=17&categoryId=136&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"现代重生\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=17&categoryId=166&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"娱乐明星\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=17&categoryId=166&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"民国情缘\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=17&categoryId=168&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"浪漫纯爱\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=17&categoryId=169&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"婚恋职场\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=17&categoryId=16&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"蜜爱甜宠\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=17&categoryId=26&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"浪漫青春\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=20&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"青春回忆\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=20&categoryId=148&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"校园青春\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=20&categoryId=175&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"纯爱青春\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=20&categoryId=176&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"青春虐恋\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=20&categoryId=177&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"青春同人\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=20&categoryId=178&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"幻想言情\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=18&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"古典仙缘\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=18&categoryId=137&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"奇幻魔法\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=18&categoryId=138&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"未来科幻\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=18&categoryId=170&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"悬疑推理\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=18&categoryId=24&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"末世危机\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=18&categoryId=171&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"时空穿梭\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=18&categoryId=172&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"神话情话\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=18&categoryId=173&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"唯美纯爱\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=18&categoryId=437&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"出版·全部\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"出版总榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=1&orderTime=3&orderBy=1&page={{page}}&type=13&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"出版月榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=1&orderTime=2&orderBy=1&page={{page}}&type=13&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"出版周榜\",\"url\": \"http://api.17k.com/book/rank/client?classId=1&orderTime=1&orderBy=1&page={{page}}&type=13&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"畅销经典\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=1&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"最新畅销\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=1&categoryId=27&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"名家经典\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=1&categoryId=23&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"影视原著\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=1&categoryId=79&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"乡土文学\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=1&categoryId=25&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"社会纪实\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=1&categoryId=78&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"外国文学\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=1&categoryId=80&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"中短い篇\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=1&categoryId=15&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"学习强国\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=1&categoryId=174&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"文化社科\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=8&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"人物传记\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=8&categoryId=29&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"人文史地\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=8&categoryId=30&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"诗词散文\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=8&categoryId=103&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"古代典籍\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=8&categoryId=104&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"新锐学术\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=8&categoryId=105&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"时政评说\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=8&categoryId=106&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"体育荟萃\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=8&categoryId=101&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"幽默笑话\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=8&categoryId=107&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"修身养性\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=8&categoryId=108&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"经管励志\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=9&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"经营管理\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=9&categoryId=31&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"心理激励\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=9&categoryId=32&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"市场营销\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=9&categoryId=109&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"金融财会\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=9&categoryId=110&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"政治经济\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=9&categoryId=111&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"投资理财\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=9&categoryId=112&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"职场指南\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=9&categoryId=113&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"青春励志\",\"url\": \"http://api.17k.com/book/search?sort=15&page={{page}}&channelId=9&categoryId=114&cpsOpid=17Kxiaomi&_filterData=1&device_id=7470a5a9be410b17&channel=0&_versions=1240&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&width=1080&appKey=4037465544&model=MI%206&cpsSource=0&brand=Xiaomi&youthModel=0&height=1920\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}}\n]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 10; PCT-AL10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.101 Mobile Safari/537.36\"\n}",
    "lastUpdateTime": 1725943300909,
    "loginUrl": "",
    "respondTime": 9869,
    "ruleBookInfo": {
      "author": "$..authorPenName",
      "coverUrl": "$..coverImg##-.*",
      "init": "$.data[0]",
      "intro": "$..introduction",
      "kind": "{{java.timeFormat(java.getString('$..lastUpdateChapter.updateTime'))}}\n{{$..keyword.*}}##/##-",
      "lastChapter": "$..lastUpdateChapter.name",
      "name": "$..bookName",
      "tocUrl": "http://api.17k.com/book/@get:{book}/volumes?youthModel=0&_filterData=1&appKey=4037465544&clientType=1&merchant=17KH5&height=2166&cpsSource=0&platform=2&device_id=efde9b5c7749a0f7&brand=HONOR",
      "wordCount": "$..wordCount"
    },
    "ruleContent": {
      "content": "id.Context@html",
      "imageStyle": "",
      "replaceRegex": "##本书首发来自.*看正版内容！|第.*章.*",
      "sourceRegex": ""
    },
    "ruleExplore": {
      "author": "$.authorPenName||$.author_name",
      "bookList": "$.data||$.data.lists",
      "bookUrl": "http://api.17k.com/book/{{$.id}}/split1/merge?iltc=1&youthModel=0&_filterData=1&appKey=4037465544&clientType=1&merchant=17KH5&height=2166&cpsSource=0&platform=2&device_id=efde9b5c7749a0f7&brand=HONOR",
      "coverUrl": "$.coverImg||$.cover##\\?.*",
      "intro": "$.introduction||$.intro",
      "kind": "$.bookCategory.name||$.category_name_2",
      "lastChapter": "$.lastUpdateChapterName||$.last_update_chapter_name",
      "name": "$.bookName||$.book_name@put:{book:id}"
    },
    "ruleSearch": {
      "author": "$.authorPenName",
      "bookList": "$.data.lists[*]",
      "bookUrl": "http://api.17k.com/book/{{$.id}}/split1/merge?iltc=1&youthModel=0&_filterData=1&appKey=4037465544&clientType=1&merchant=17KH5&height=2166&cpsSource=0&platform=2&device_id=efde9b5c7749a0f7&brand=HONOR",
      "coverUrl": "$.coverImg##-.*",
      "intro": "$.introduction",
      "kind": "{{java.timeFormat(java.getString('$.lastUpdateChapterDate'))}}\n{{$.bookChannel.name}}\n{{$.bookCategory.name}}##/##-",
      "lastChapter": "$.lastUpdateChapterName",
      "name": "$.bookName@put:{book:id}",
      "wordCount": "$.wordCount"
    },
    "ruleToc": {
      "chapterList": "$.data.volumes..chapters[*]",
      "chapterName": "$..chapterName",
      "chapterUrl": "https://h5.17k.com/chapter/@get:{book}/{{$.chapterId}}.html?hmsr=smss,{\"webView\": true}",
      "isVip": "",
      "updateTime": "{{java.timeFormat(java.getString('$.updateTime'))}}##/##-"
    },
    "searchUrl": "http://api.17k.com/book/search/list?fuzzySearchType=1&page=1&num=20&keyword={{key}}&youthModel=0&_filterData=1&appKey=4037465544&clientType=1&merchant=17KH5&height=2166&cpsSource=0&platform=2&device_id=efde9b5c7749a0f7&brand=HONOR&_versions=1240",
    "weight": 0
  },
  {
    "bookSourceComment": "笔书网手机版：http://m.biqukun.org/\n修复内容：搜索(作者/分类提取)、详情页(精确提取各字段)、目录分页、正文清洗",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔书小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.biqukun.org/",
    "bookUrlPattern": "https?://m\\.biqukun\\.org/\\d+/\\d+/?",
    "customButton": false,
    "customOrder": 211,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n    {\n        \"title\": \"分类\",\n        \"url\": \"\",\n        \"style\": {\n            \"layout_flexGrow\": 0,\n            \"layout_flexBasisPercent\": 1\n        }\n    },\n    {\n        \"title\": \"玄幻\",\n        \"url\": \"/sort/1_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    },\n    {\n        \"title\": \"修真\",\n        \"url\": \"/sort/2_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    },\n    {\n        \"title\": \"都市\",\n        \"url\": \"/sort/3_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    },\n    {\n        \"title\": \"穿越\",\n        \"url\": \"/sort/4_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    },\n    {\n        \"title\": \"网游\",\n        \"url\": \"/sort/5_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    },\n    {\n        \"title\": \"科幻\",\n        \"url\": \"/sort/6_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    },\n    {\n        \"title\": \"全本\",\n        \"url\": \"/full/{{page}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    },\n    {\n        \"title\": \"排行榜\",\n        \"url\": \"\",\n        \"style\": {\n            \"layout_flexGrow\": 0,\n            \"layout_flexBasisPercent\": 1\n        }\n    },\n    {\n        \"title\": \"总点击榜\",\n        \"url\": \"/top/allvisit_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    },\n    {\n        \"title\": \"月点击榜\",\n        \"url\": \"/top/monthvisit_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    },\n    {\n        \"title\": \"周点击榜\",\n        \"url\": \"/top/weekvisit_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    },\n    {\n        \"title\": \"日点击榜\",\n        \"url\": \"/top/dayvisit_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    },\n    {\n        \"title\": \"总推荐榜\",\n        \"url\": \"/top/allvote_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    },\n    {\n        \"title\": \"总收藏榜\",\n        \"url\": \"/top/goodnum_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    },\n    {\n        \"title\": \"最新入库\",\n        \"url\": \"/top/postdate_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    },\n    {\n        \"title\": \"最近更新\",\n        \"url\": \"/top/lastupdate_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    },\n    {\n        \"title\": \"字数排行\",\n        \"url\": \"/top/size_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.29\n        }\n    }\n]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0 Mobile Safari/537.36\", \"Accept-Language\": \"zh-CN,zh;q=0.9\"}",
    "lastUpdateTime": 1787412052447,
    "respondTime": 19586,
    "ruleBookInfo": {
      "author": "text.作者@text##.*作者[：:]\\s*##",
      "coverUrl": ".block_img2 img@src",
      "intro": "div.intro_info@text",
      "kind": "text.分类@text##.*分类[：:]\\s*##",
      "lastChapter": "text.最新：@text##.*最新[：:]\\s*##",
      "name": "class.block_txt2@tag.h2@text"
    },
    "ruleContent": {
      "content": "<js>\nvar html = String(result);\nvar doc = Packages.org.jsoup.Jsoup.parse(html);\nvar nr = doc.selectFirst('article#nr');\nvar lines = [];\nif (nr) {\n    var rawHtml = String(nr.html());\n    rawHtml = rawHtml.replace(/<br\\s*\\/?>/gi, '\\n');\n    var parts = rawHtml.split('\\n');\n    for (var i = 0; i < parts.length; i++) {\n        var line = parts[i].replace(/<[^>]+>/g, '').replace(/&nbsp;/g, ' ').replace(/\\u00a0/g, ' ').trim();\n        if (line) {\n            if (/最新网址|m\\.biqukun|本章未完.*继续阅读/.test(line)) continue;\n            lines.push(line);\n        }\n    }\n    if (lines.length > 0 && /^第\\d+章/.test(lines[0])) {\n        lines.shift();\n    }\n}\nlines.join('\\n');\n</js>",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {
      "author": ".bk-author@text",
      "bookList": "<js>\nvar html = String(result);\nvar doc = Packages.org.jsoup.Jsoup.parse(html);\nvar uls = doc.select('ul.xbk');\nvar sb = '<html><body><ul>';\nfor (var i = 0; i < uls.size(); i++) {\n    var ul = uls.get(i);\n    var tjxs = ul.selectFirst('li.tjxs');\n    if (!tjxs) continue;\n    var nameA = tjxs.selectFirst('.xsm a');\n    if (!nameA) continue;\n    var name = String(nameA.text());\n    var url = String(nameA.attr('href'));\n    var spans = tjxs.select('span');\n    var author = '';\n    var intro = '';\n    if (spans.size() >= 2) author = String(spans.get(1).text()).replace(/.*作者[：:]\\s*/, '');\n    if (spans.size() >= 3) intro = String(spans.get(2).text()).trim();\n    var tjimg = ul.selectFirst('li.tjimg img');\n    var cover = tjimg ? String(tjimg.attr('src')) : '';\n    sb += '<li>';\n    sb += '<div class=\"bk-name\"><a href=\"' + url + '\">' + name + '</a></div>';\n    sb += '<div class=\"bk-author\">' + author + '</div>';\n    sb += '<div class=\"bk-intro\">' + intro + '</div>';\n    sb += '<div class=\"bk-cover\"><img src=\"' + cover + '\"></div>';\n    sb += '</li>';\n}\nsb += '</ul></body></html>';\nsb;\n</js>\nul li",
      "bookUrl": ".bk-name a@href",
      "coverUrl": ".bk-cover img@src",
      "intro": ".bk-intro@text",
      "name": ".bk-name a@text"
    },
    "ruleSearch": {
      "author": ".bk-author@text",
      "bookList": "<js>\nvar html = String(result);\nvar doc = Packages.org.jsoup.Jsoup.parse(html);\nvar lis = doc.select('ul.fk li');\nvar sb = '<html><body><ul>';\nfor (var i = 0; i < lis.size(); i++) {\n    var li = lis.get(i);\n    var a = li.selectFirst('a.blue');\n    if (!a) continue;\n    var name = String(a.text());\n    var url = String(a.attr('href'));\n    var fullText = String(li.text());\n    var author = '';\n    var slashIdx = fullText.indexOf('/');\n    if (slashIdx >= 0) {\n        author = fullText.substring(slashIdx + 1).trim();\n    }\n    var kind = '';\n    var bracketMatch = fullText.match(/\\[(.+?)\\]/);\n    if (bracketMatch) {\n        kind = bracketMatch[1];\n    }\n    sb += '<li>';\n    sb += '<div class=\"bk-name\"><a href=\"' + url + '\">' + name + '</a></div>';\n    sb += '<div class=\"bk-author\">' + author + '</div>';\n    sb += '<div class=\"bk-kind\">' + kind + '</div>';\n    sb += '</li>';\n}\nsb += '</ul></body></html>';\nsb;\n</js>\nul li",
      "bookUrl": ".bk-name a@href",
      "kind": ".bk-kind@text",
      "name": ".bk-name a@text"
    },
    "ruleToc": {
      "chapterList": "ul.chapter li a",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "http://m.biqukun.org/search.php?s=4532499176958073452&submit=&type=articlename&searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎃追书神器🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.zhuishushenqi.com#🎃",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 213,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "♂️玄幻::/category?gender=male&type=hot&major=%E7%8E%84%E5%B9%BB&minor=&page={{page}}\n♂️都市::/category?gender=male&type=hot&major=%E9%83%BD%E5%B8%82&minor=&page={{page}}\n♂️仙侠::/category?gender=male&type=hot&major=%E4%BB%99%E4%BE%A0&minor=&page={{page}}\n♂️游戏::/category?gender=male&type=hot&major=%E6%B8%B8%E6%88%8F&minor=&page={{page}}\n♂️历史::/category?gender=male&type=hot&major=%E5%8E%86%E5%8F%B2&minor=&page={{page}}\n♂️科幻::/category?gender=male&type=hot&major=%E7%A7%91%E5%B9%BB&minor=&page={{page}}\n♂️奇闻::/category?gender=male&type=hot&major=%E5%A5%87%E9%97%BB&minor=&page={{page}}\n♂️轻小说::/category?gender=male&type=hot&major=%E8%BD%BB%E5%B0%8F%E8%AF%B4&minor=&page={{page}}\n♂️奇幻::/category?gender=male&type=hot&major=%E5%A5%87%E5%B9%BB\"&minor=&page={{page}}\n♂️军事::/category?gender=male&type=hot&major=%E5%86%9B%E4%BA%8B&minor=&page={{page}}\n♂️武侠::/category?gender=male&type=hot&major=%E6%AD%A6%E4%BE%A0&minor=&page={{page}}\n♀️现代言情::/category?gender=female&type=hot&major=%E7%8E%B0%E4%BB%A3%E8%A8%80%E6%83%85&minor=&page={{page}}\n♀️古代言情::/category?gender=female&type=hot&major=%E5%8F%A4%E4%BB%A3%E8%A8%80%E6%83%85&minor=&page={{page}}\n♀️幻想言情::/category?gender=female&type=hot&major=%E5%B9%BB%E6%83%B3%E8%A8%80%E6%83%85&minor=&page={{page}}\n♀️科幻空间::/category?gender=female&type=hot&major=%E7%A7%91%E5%B9%BB%E7%A9%BA%E9%97%B4&minor=&page={{page}}\n♀️青春校园::/category?gender=female&type=hot&major=%E9%9D%92%E6%98%A5%E6%A0%A1%E5%9B%AD&minor=&page={{page}}\n♀️唯美纯爱::/category?gender=female&type=hot&major=%E5%94%AF%E7%BE%8E%E7%BA%AF%E7%88%B1&minor=&page={{page}}\n♀️同人衍生::/category?gender=female&type=hot&major=%E5%90%8C%E4%BA%BA%E8%A1%8D%E7%94%9F&minor=&page={{page}}\n📙飙升榜::http://www.zhuishushenqi.com/ranking/d52ca7d4ae7840f98581d688bb74c8f2?type=press&page={{page}}\n📙VIP榜::http://www.zhuishushenqi.com/ranking/e7e6a46325f2404db16c248f644e6d6a?type=press&page={{page}}\n📙热搜榜::http://www.zhuishushenqi.com/ranking/06aa21ebe73a48799dbd59bf05dd6859?type=press&page={{page}}\n📙经典榜::http://www.zhuishushenqi.com/ranking/fa449c3dd64342dfa8b4944e3e8a063b?type=press&page={{page}}\n📙出版小说::http://www.zhuishushenqi.com/category?gender=press&type=hot&major=%E5%87%BA%E7%89%88%E5%B0%8F%E8%AF%B4&minor=&page={{page}}\n📙心理励志::http://www.zhuishushenqi.com/category?gender=press&type=&major=%E5%BF%83%E7%90%86%E4%B8%8E%E5%8A%B1%E5%BF%97\n📙公版图书::http://www.zhuishushenqi.com/category?gender=press&type=&major=%E5%85%AC%E7%89%88%E4%B9%A6\n📙人文社科::http://www.zhuishushenqi.com/category?gender=press&type=hot&major=%E4%BA%BA%E6%96%87%E7%A4%BE%E7%A7%91&minor=&page={{page}}\n📙商业经济::http://www.zhuishushenqi.com/category?gender=press&type=&major=%E5%95%86%E4%B8%9A%E4%B8%8E%E7%BB%8F%E6%B5%8E\n📙文学艺术::http://www.zhuishushenqi.com/category?gender=press&type=hot&major=%E6%96%87%E5%AD%A6%E8%89%BA%E6%9C%AF&minor=&page={{page}}\n📙亲子读物::http://www.zhuishushenqi.com/category?gender=press&type=&major=%E4%BA%B2%E5%AD%90\n📙教辅教材::http://www.zhuishushenqi.com/category?gender=press&type=&major=%E6%95%99%E8%BE%85%E6%95%99%E6%9D%90",
    "header": "",
    "lastUpdateTime": 0,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "http://m.zhuishushenqi.com/login?source=/setting",
    "respondTime": 958,
    "ruleBookInfo": {
      "author": "",
      "canReName": "",
      "coverUrl": "",
      "init": "",
      "intro": "",
      "kind": "class.tags@text",
      "lastChapter": "class.book-section.1@tag.ul@tag.li.0@tag.a@text",
      "name": "",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "class.inner-text@html",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "class.author@tag.span.0@text",
      "bookList": "class.books-list@tag.a",
      "bookUrl": "href",
      "coverUrl": "class.cover@src",
      "intro": "class.desc@text",
      "kind": "class.author@tag.span.2@text",
      "lastChapter": "",
      "name": "class.name@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "class.author@text##\\|.*|\\s",
      "bookList": "class.books-list@tag.div!0",
      "bookUrl": "class.name@tag.a@href",
      "coverUrl": "class.cover@src",
      "intro": "class.desc@text",
      "kind": "",
      "lastChapter": "",
      "name": "class.name@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "class.book-section.2@tag.ul@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "/search?val={{key}}&page={{page}}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "by猿神启动",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "95590小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.95590.org",
    "bookUrlPattern": "https://www.95590.org/books/.*",
    "customButton": false,
    "customOrder": 214,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "官场小说::/?p={{page}}\n影视小说::/yingshi/?p={{page}}\n文学小说::/wenxue/?p={{page}}\n玄幻小说::/xuanhuan/?p={{page}}\n网络小说::/wangluo/?p={{page}}\n职场小说::/zhichang/?p={{page}}",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36\"}",
    "lastUpdateTime": 1782345605158,
    "respondTime": 2908,
    "ruleBookInfo": {
      "intro": "meta[name=description]@content||meta[property=og:description]@content",
      "name": "h2.entry-title a@text||h1.entry-title a@text||h1.entry-title@text",
      "tocUrl": "{{baseUrl}}"
    },
    "ruleContent": {
      "content": ".entry-content@html",
      "nextContentUrl": "a[rel='next']@href"
    },
    "ruleExplore": {
      "bookList": "article.hentry",
      "bookUrl": "h2.entry-title a@href",
      "name": "h2.entry-title a@text"
    },
    "ruleSearch": {
      "bookList": "article.hentry",
      "bookUrl": "h2.entry-title a@href",
      "name": "h2.entry-title a@text"
    },
    "ruleToc": {
      "chapterList": ".entry-content ul li a",
      "chapterName": "a@text",
      "chapterUrl": "href"
    },
    "searchUrl": "/?s={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "若雨中文",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.3yt.la#🎃",
    "customButton": false,
    "customOrder": 215,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"网络小说\",\"url\":\"/Book/LN/1079/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"玄幻魔法\",\"url\":\"/Book/LN/1094/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"武侠仙侠\",\"url\":\"/Book/LN/1095/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"都市言情\",\"url\":\"/Book/LN/1096/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"历史军事\",\"url\":\"/Book/LN/1097/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"网游竞技\",\"url\":\"/Book/LN/1098/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"科幻灵异\",\"url\":\"/Book/LN/1099/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"其他小说\",\"url\":\"/Book/LN/1100/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1720834637566,
    "loginUrl": "",
    "respondTime": 2947,
    "ruleBookInfo": {
      "author": ".w_530@a.0@text##作品集",
      "coverUrl": ".img@img@src",
      "intro": ".h_260@p@text##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": ".path@a.1@text&&.w_200@li.0@text&&.h_260@em@text##.*：|\\s...:*|小说",
      "lastChapter": ".h_260@a.0@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": ".w_530@em.0@text",
      "tocUrl": ".w_200@a.1@href",
      "wordCount": ".w_200@li.1@text##.*已完成\\s|\\s字"
    },
    "ruleContent": {
      "content": "id.BookText@textNodes"
    },
    "ruleExplore": {
      "bookList": "tbody!1:2@tr",
      "bookUrl": "a.1@href",
      "coverUrl": "a.1@href##.+\\D((\\d+)\\d{3})\\D##/files/article/image/$2/$1/$1s.jpg###",
      "kind": "td.0:4:3@text##小说",
      "lastChapter": "td.2@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "td.1@text"
    },
    "ruleSearch": {
      "author": "td.4@text",
      "bookList": "tbody@tr",
      "bookUrl": "a.1@href",
      "coverUrl": "a.1@href##.+\\D((\\d+)\\d{3})\\D##/files/article/image/$2/$1/$1s.jpg###",
      "kind": "td.0:5:3@text##小说",
      "lastChapter": "td.2@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "td.1@text"
    },
    "ruleToc": {
      "chapterList": "id.BookText@li@a",
      "chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "href"
    },
    "searchUrl": "/book/search.aspx?searchkey={{key}}&SeaButton=",
    "weight": 0
  },
  {
    "bookSourceComment": "2024.4.24\n和熊猫小说网一个模板\n2024.7.1\n修复搜索\nby墨殇",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "📃去读读小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.hongyue8.co/",
    "bookUrlPattern": "http://www.hongyue8.co/\\d+_\\d+/",
    "customButton": false,
    "customOrder": 217,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"首页\",\"url\":\"/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1.00}},{\"title\":\"排行\",\"url\":\"/rank/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月排行榜\",\"url\":\"/rank/monthvisit/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周排行榜\",\"url\":\"/rank/weekvisit/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"收 藏 榜\",\"url\":\"/rank/goodnum/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"书库\",\"url\":\"/class/{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻\",\"url\":\"/class/xuanhuan/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠\",\"url\":\"/class/wuxia/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市\",\"url\":\"/class/dushi/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史\",\"url\":\"/class/lishi/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻\",\"url\":\"/class/kehuan/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏\",\"url\":\"/class/youxi/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女生\",\"url\":\"/class/nvsheng/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他\",\"url\":\"/class/qita/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"全本\",\"url\":\"/quanben/class/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1775138538248,
    "respondTime": 4171,
    "ruleBookInfo": {
      "author": "p a.0@text",
      "coverUrl": "img@data-original",
      "intro": "#intro@text##.*精心创作的.*",
      "kind": "text.状态@text&&p.2@text&&text.最后更新@text##状态：",
      "lastChapter": "p a.1@text",
      "name": "#info@text",
      "wordCount": "text.字数@text##字数："
    },
    "ruleContent": {
      "content": "#booktxt@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##最近转码严重.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".btm a@text",
      "bookList": ".item",
      "bookUrl": "a@href",
      "coverUrl": "img@data-original",
      "intro": "dd@text",
      "kind": "em.1@text",
      "name": "dt.0@text",
      "wordCount": "em.0@text"
    },
    "ruleToc": {
      "chapterList": "#list dl>a:gt(10)",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "{{url=source.getKey();\ncookie.removeCookie(url)\njava.ajax(url).match(/search.*action=\"(.+?)\"/)[1]}}?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "69平替不确定？",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "天籁小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.picdg.co",
    "bookUrlPattern": "http://www.picdg.co/\\d+_\\d+/",
    "customButton": false,
    "customOrder": 218,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1778760400475,
    "respondTime": 3142,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content",
      "name": "[property$=book_name]@content",
      "wordCount": ".book-meta:nth-of-type(4)@text##字数："
    },
    "ruleContent": {
      "content": "#content@html",
      "nextContentUrl": ".next@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".book-author@text",
      "bookList": ".book-li",
      "bookUrl": ".book-layout@href",
      "checkKeyWord": "剑来",
      "coverUrl": "img@data-echo@src",
      "intro": ".book-desc@text",
      "kind": ".tag-small@text",
      "name": ".book-title@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "//div[@id='list']/dl/a[dt[contains(text(),'全部章节目录')]]/following-sibling::a",
      "chapterName": "text##^\\d+\\.|（.*合.*|（含.*|\\(.*合.*|\\(含.*\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节|免费章节.|章节目录)?(\\s+|_)|[\\(\\{（｛【].*[求含理更谢乐发推票盟补加字Kk\\/].*/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "chapterUrl": "href"
    },
    "searchUrl": "@js:\nres = java.connect(source.getKey())\n\nif (res.code() == 403) {\nc = res.raw().headers(\"Set-Cookie\")[0]\ncookie.setCookie(source.key, c)\nres = java.connect(source.getKey())\n}\n\nres = res.body()\n\naction = org.jsoup.Jsoup.parse(res).select(\"#post\").attr(\"action\")\noption = {\n  \"body\": `searchtype=all&searchkey=${key}`,\n  \"method\": \"POST\"\n}\nString(action + ',' +JSON.stringify(option))",
    "weight": 0
  },
  {
    "bookSourceComment": "v3.1(穷尽式修复·JS主动拉取完整目录) 书源作者：苍茫\n功能：搜索+发现+详情+目录+正文\n站点：爱笔楼 http://m.biqutu.info\n特征：OG标签全量提取、目录JS主动拉取完整页、正文直出\n维护关注：OG标签变更、完整目录页URL格式变更\n已知问题：无",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爱笔趣阁#5",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.biqutu.info",
    "bookUrlPattern": "http://m\\.biqutu\\.info/\\d+[_/]\\d+/",
    "concurrentRate": "2000",
    "customButton": false,
    "customOrder": 219,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"全部\",\"url\":\"/xclass/0/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/xclass/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"修真仙侠\",\"url\":\"/xclass/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"都市青春\",\"url\":\"/xclass/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"历史军事\",\"url\":\"/xclass/4/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"网游竞技\",\"url\":\"/xclass/5/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"科幻灵异\",\"url\":\"/xclass/6/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"其它\",\"url\":\"/xclass/7/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}\n]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 13; Mobile) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1787466841591,
    "respondTime": 26279,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "class.Readarea ReadAjax_content@html",
      "nextContentUrl": "class.Readpage@tag.a.2@href",
      "replaceRegex": "##章节错误.*\\n*|加入书签.*\\n*|最快更新.*\\n*|最新网址.*\\n*"
    },
    "ruleExplore": {
      "author": ".bookinfo .detail .author a@text",
      "bookList": "#main .hot_sale",
      "bookUrl": ".bookimg a@href",
      "coverUrl": ".bookimg img@data-original",
      "intro": "p.review@text",
      "name": ".bookinfo .detail .title@text"
    },
    "ruleSearch": {
      "author": ".author a@text",
      "bookList": ".list1 .hot_sale",
      "bookUrl": "a.0@href",
      "checkKeyWord": "系统",
      "kind": ".author@text##.*连载|.*全本",
      "lastChapter": ".author a[style]@text",
      "name": ".title@text"
    },
    "ruleToc": {
      "chapterList": "id.chapterlist@tag.p!0",
      "chapterName": "text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/SearchBook.php?keyword={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "玄幻阁吧#0",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xuanhuange.info#yc1101",
    "customButton": false,
    "customOrder": 220,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻\",\"url\":\"/sort1/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"/sort2/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/sort3/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"历史\",\"url\":\"/sort4/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"言情\",\"url\":\"/sort5/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"/sort6/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/sort7/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"恐怖\",\"url\":\"/sort8/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"/sort9/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"异界\",\"url\":\"/sort10/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"全本\",\"url\":\"/quanben/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.29}}]",
    "lastUpdateTime": 1787070058006,
    "respondTime": 1807,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content##\\s.*",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content##正文卷\\s|正文\\s",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "#content@textNodes",
      "imageStyle": "0",
      "replaceRegex": "##随机推荐.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "span.1@text",
      "bookList": "#sitebox dl",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": "dd.3@text",
      "kind": "span.2:0@text",
      "lastChapter": "a.2@text##正文卷\\s|正文\\s",
      "name": "a.1@text",
      "wordCount": "span.3@text"
    },
    "ruleToc": {
      "chapterList": "#readerlist li a",
      "chapterName": "text##正文卷\\s|正文\\s",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php?s={{key}}&searchtype=articlename",
    "weight": 0
  },
  {
    "bookSourceComment": "爱书小说网 TXT下载站书源",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爱书小说网",
    "bookSourceType": 3,
    "bookSourceUrl": "https://aswtxt.com",
    "bookUrlPattern": "https://aswtxt\\.com/txt-xx/.*/txt-\\d+\\.htm",
    "customButton": false,
    "customOrder": 221,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1785754346586,
    "respondTime": 6974,
    "ruleBookInfo": {
      "author": "a[href*=\"searchzuozhe\"] font[color=\"#0000ff\"]@text",
      "downloadUrls": "<js>try{var dl=String(result).match(/href=\"([^\"]*softdownfree[^\"]*)\"/)[1];if(dl.indexOf('http')!=0){dl='https://aswtxt.com'+dl}var h=java.ajax(dl);var u=h.match(/href=\"(https?:\\/\\/[^\"]+\\.txt)\"[^>]*>第一/)[1];u}catch(e){''}</js>",
      "intro": "<js>var doc=org.jsoup.Jsoup.parse(result);var p=doc.select('p:contains(小说简介)').first();if(p){var np=p.nextElementSibling();np?np.text().trim():''}else''</js>",
      "kind": ".crumb a:last@text",
      "name": "font[color=\"#ff0000\"]@text##[《》]##",
      "wordCount": "td:contains(小说大小) font[color=\"#0000ff\"]@text"
    },
    "ruleContent": {},
    "ruleExplore": {
      "bookList": ".book-list-container li",
      "bookUrl": "a[href*=\"txt-\"]@href",
      "kind": "a[href*=\"list\"]@text",
      "name": "a[href*=\"txt-\"]@title"
    },
    "ruleSearch": {
      "author": ".search-card-author@text##作者：##",
      "bookList": ".search-card",
      "bookUrl": ".search-card-title a@href",
      "checkKeyWord": "七零",
      "intro": ".search-card-content@text",
      "kind": ".search-card-category@text",
      "name": ".search-card-title a@title"
    },
    "ruleToc": {},
    "searchUrl": "https://aswtxt.com/search.asp?word={{key}}&page={{page}},{\"charset\":\"gb2312\"}",
    "weight": 0
  },
  {
    "bookSourceComment": "BY:溪",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔仙阁子",
    "bookSourceType": 0,
    "bookSourceUrl": "https://209.74.107.162",
    "bookUrlPattern": "https://209.74.107.162/\\w.+/\\d+",
    "customButton": false,
    "customOrder": 222,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "————————🧊分类小说🧊————————\n都市言情::/dsyq/<,index_{{page}}.html>\n武侠修真::/wxxz/<,index_{{page}}.html>\n玄幻奇幻::/xhqh/<,index_{{page}}.html>\n穿越架空::/cyjk/<,index_{{page}}.html>\n科幻竞技::/khjj/<,index_{{page}}.html>\n鬼话悬疑::/ghxy/<,index_{{page}}.html>\n军事历史::/jsls/<,index_{{page}}.html>\n官场商战::/guanchang/<,index_{{page}}.html>\n乡土风情::/xtfq/<,index_{{page}}.html>\n耽美小说::/dmtr/<,index_{{page}}.html>\n同人小说::/trxs/<,index_{{page}}.html>\n精品小说::/jqxs/<,index_{{page}}.html>\n排行榜::/sort/<,index_{{page}}.html>",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 10;  Build/QP1A.190711.020) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1783938823252,
    "loginCheckJs": "cookie.removeCookie(source.getKey())\nresult",
    "respondTime": 11694,
    "ruleBookInfo": {
      "author": ".descTip@span.2@text",
      "coverUrl": "img@src",
      "intro": ".descInfo@p@text",
      "kind": ".descTip@span.0:1:3@text##.*：|.*：|.*：",
      "name": ".desc@h1@text"
    },
    "ruleContent": {
      "content": "class.content@p@html",
      "nextContentUrl": "text.下一节@href"
    },
    "ruleExplore": {
      "author": ".tips@span.0@text",
      "bookList": ".clearfix@li",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": ".descript@a@text",
      "kind": ".tips@span.1:2@text",
      "name": ".title@a@text"
    },
    "ruleSearch": {
      "bookList": ".clearfix@li",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": ".descript@a@text",
      "kind": ".tips@span.0:1@text##[大小：时间：]",
      "name": ".title@a@text"
    },
    "ruleToc": {
      "chapterList": "class.catalog@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://209.74.107.162/e/search/indexpage.php,{\n  \"body\": \"keyboard={{key}}&show=title&classid=0\",\n  \"method\": \"POST\",\n  \"charset\": \"GBK\"\n}\n@js:\nso = String(result).replace(\"{{key}}\", key);\nvar url = java.connect(so)\n.raw().request().url();\nString(url).replace(/result.*searchid/,\n\t\"result/index.php?page={{page-1}}&searchid\");",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "漫画小屋",
    "bookSourceType": 2,
    "bookSourceUrl": "https://m.dm5.com",
    "customButton": false,
    "customOrder": 223,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1753440366301,
    "respondTime": 698,
    "ruleBookInfo": {
      "author": "p.detail-main-info-author@tag.a@text",
      "coverUrl": "img.detail-main-bg@src",
      "intro": "p.detail-desc@text",
      "kind": "p.detail-main-info-class@tag.a@text",
      "lastChapter": "ul.detail-list-select@tag,li.0@text",
      "name": "p.detail-main-info-title@text"
    },
    "ruleContent": {
      "content": "@js:header={\"Referer\":baseUrl};\nheaders={\"headers\":JSON.stringify(header)};\neval(result.match(/eval(.*?)\\{\\}\\)\\)/)[0])\nvar image_list = []\nnewImgs.map(item=>{\n    image_list.push('<img src=\"'+item+','+JSON.stringify(headers)+'\">')\n})\nimage_list.join(\"\\n\")"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.p.0@text",
      "bookList": "ul.book-list@tag.li",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.img@src",
      "intro": "p.book-list-info-desc@text",
      "name": "p.book-list-info-title@text"
    },
    "ruleToc": {
      "chapterList": "-ul.detail-list-select@li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://m.dm5.com/search?title={{key}}&language=1",
    "weight": 0
  },
  {
    "bookSourceComment": "有黄广告",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "森林文学",
    "bookSourceType": 0,
    "bookSourceUrl": "http://23.224.242.55/",
    "customButton": false,
    "customOrder": 224,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1785381374518,
    "respondTime": 1601,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:novel:update_time\"]@content&&\n[property=\"og:description\"]@content@js:'更新时间：'+result",
      "kind": "[property~=category|status|tags]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "#content@html",
      "nextContentUrl": "text.下一@a[href*=\"_\"]@href",
      "replaceRegex": "##（本章未完，请点击下一页继续阅读）|.* \\(第\\d/\\d页\\)"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".s4@text",
      "bookList": ".txt-list li!0",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href\n@js:\nvar match = result.match(/(\\d+)(?=[^\\d]*$)/);\nvar id = match ? match[1] : '';\nvar iid = parseInt(id / 1000);\n'/files/article/image/' + iid + '/' + id + '/' + id + 's.jpg';",
      "kind": ".s1@text##[\\[\\]]",
      "lastChapter": ".s3@text",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": ".section-box a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value"
    },
    "searchUrl": "/ar.php?keyWord={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "by狼崽儿 2026.6.14\n本人的技术力有限，只能实现将下载的文件当做文本阅读。\n推荐优先使用下载链接预览文本内容，在线阅读可能超时。\n如需下载，推荐点击正文链接直接访问或在外部浏览器打开下载原文件。\n❗️❗️注意，早期上传的小说因为无在线阅读页面所以可能会出现乱码现象，这种情况只能下载原小说文件查看。\n以下是备用站。\nwww.aqxsw222.com\nwww.272txt.com\nwww.727txt.com\nwww.27txt.La\nwww.527txt.com",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "爱去小说网🌟",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.aiqu225.com",
    "customButton": false,
    "customOrder": 225,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n    {\n      \"title\": \"耽美-全部\",\n      \"url\": \"/txt-xx/15/list15_{{page}}.htm\"\n    },\n    {\n      \"title\": \"耽美-现代耽美\",\n      \"url\": \"/txt-xx/dmxs/xddm/list117_{{page}}.htm\"\n    },\n    {\n      \"title\": \"耽美-古代架空\",\n      \"url\": \"/txt-xx/dmxs/gdjk/list118_{{page}}.htm\"\n    },\n    {\n      \"title\": \"耽美-穿越重生\",\n      \"url\": \"/txt-xx/dmxs/cycs/list119_{{page}}.htm\"\n    },\n    {\n      \"title\": \"耽美-玄幻科幻\",\n      \"url\": \"/txt-xx/dmxs/xhkh/list120_{{page}}.htm\"\n    },\n    {\n      \"title\": \"耽美-BL同人\",\n      \"url\": \"/txt-xx/dmxs/bltr/list121_{{page}}.htm\"\n    },\n    {\n      \"title\": \"耽美-GL百合\",\n      \"url\": \"/txt-xx/dmxs/glbh/list122_{{page}}.htm\"\n    },\n    {\n      \"title\": \"女生-都市言情\",\n      \"url\": \"/txt-xx/nsxs/dsyq/list110_{{page}}.htm\"\n    },\n    {\n      \"title\": \"女生-古代言情\",\n      \"url\": \"/txt-xx/nsxs/gdyq/list111_{{page}}.htm\"\n    },\n    {\n      \"title\": \"女生-穿越重生\",\n      \"url\": \"/txt-xx/nsxs/cycs/list112_{{page}}.htm\"\n    },\n    {\n      \"title\": \"女生-玄幻仙侠\",\n      \"url\": \"/txt-xx/nsxs/xhxx/list113_{{page}}.htm\"\n    },\n    {\n      \"title\": \"女生-青春同人\",\n      \"url\": \"/txt-xx/nsxs/qctr/list114_{{page}}.htm\"\n    },\n    {\n      \"title\": \"女生-网游科幻\",\n      \"url\": \"/txt-xx/nsxs/wykh/list115_{{page}}.htm\"\n    },\n    {\n      \"title\": \"男生-玄幻奇幻\",\n      \"url\": \"/txt-xx/nsbook/xhqh/list124_{{page}}.htm\"\n    },\n    {\n      \"title\": \"男生-武侠仙侠\",\n      \"url\": \"/txt-xx/nsbook/wxxx/list125_{{page}}.htm\"\n    },\n    {\n      \"title\": \"男生-都市重生\",\n      \"url\": \"/txt-xx/nsbook/dscs/list126_{{page}}.htm\"\n    },\n    {\n      \"title\": \"男生-历史军事\",\n      \"url\": \"/txt-xx/nsbook/lsjs/list127_{{page}}.htm\"\n    },\n    {\n      \"title\": \"男生-恐怖推理\",\n      \"url\": \"/txt-xx/nsbook/kbtl/list128_{{page}}.htm\"\n    },\n    {\n      \"title\": \"男生-科幻网游\",\n      \"url\": \"/txt-xx/nsbook/khwy/list129_{{page}}.htm\"\n    },\n    {\n      \"title\": \"男生-二次元\",\n      \"url\": \"/txt-xx/nsbook/ecy/list130_{{page}}.htm\"\n    },\n    {\n      \"title\": \"军事历史\",\n      \"url\": \"/txt-xx/25/list25_{{page}}.htm\"\n    },\n    {\n      \"title\": \"名人传记\",\n      \"url\": \"/txt-xx/22/list22_{{page}}.htm\"\n    },\n    {\n      \"title\": \"中外名著\",\n      \"url\": \"/txt-xx/28/list28_{{page}}.htm\"\n    },\n    {\n      \"title\": \"当代文学\",\n      \"url\": \"/txt-xx/27/list27_{{page}}.htm\"\n    },\n    {\n      \"title\": \"其他小说\",\n      \"url\": \"/txt-xx/30/list30_{{page}}.htm\"\n    },\n    {\n      \"title\": \"推理悬疑\",\n      \"url\": \"/txt-xx/16/list16_{{page}}.htm\"\n    },\n    {\n      \"title\": \"浪漫爱情\",\n      \"url\": \"/txt-xx/19/list19_{{page}}.htm\"\n    }\n  ]",
    "lastUpdateTime": 1781443454882,
    "respondTime": 159746,
    "ruleBookInfo": {
      "author": "@css:a[href*=searchzuozhe] font[color*=008800]@text##作者：|作者名称：",
      "downloadUrls": "",
      "intro": "@css:p:has(strong font:contains(小说简介)) + p@html@js:result.replace(/<br\\s*\\/?>/ig,'\\n').replace(/<[^>]+>/g,'').replace(/&nbsp;/g,' ')",
      "kind": "",
      "name": "title@text##[《》]|txt下载.*",
      "tocUrl": "a[href*=softdownfree]@href"
    },
    "ruleContent": {
      "content": "@js:var s=result;var a=s.indexOf('文案');if(a>-1)s=s.substring(a);var b=s.indexOf('下载本书');if(b>-1)s=s.substring(0,b);s.replace(/《[^》]+》作者[\\s\\S]*?移到底部/g,'').replace(/\\u3000\\u3000/g,'\\n')",
      "nextContentUrl": "@css:a.page-link:contains(下一页)@href",
      "replaceRegex": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "@css:div.book-item",
      "bookUrl": "a@href",
      "intro": "",
      "kind": "",
      "name": "div.book-title a@title"
    },
    "ruleSearch": {
      "author": "span.search-card-author a@text",
      "bookList": "@css:div.search-card",
      "bookUrl": "div.search-card-title a.searchtitle@href",
      "checkKeyWord": "反派龙傲天揣了我的崽GB",
      "kind": "span.search-card-category a@text",
      "name": "div.search-card-title a.searchtitle@text##[《》]"
    },
    "ruleToc": {
      "chapterList": "@css:a[href*=downbook]",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/search.asp?word={{key}}&page={{page}},{\n    \"charset\": \"gbk\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "API",
    "bookSourceGroup": "🎉 优选",
    "bookSourceName": "妙华台藏（优）",
    "bookSourceType": 2,
    "bookSourceUrl": "https://m.manhuatai.com",
    "customButton": false,
    "customOrder": 226,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"排行榜\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"人气\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=&orderby=click&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"更新\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=&orderby=date&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"评分\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=&orderby=score&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"收藏\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=&orderby=shoucang&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"标签\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"热血\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=rexue&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"机战\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=jizhan&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"运动\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=yundong&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"推理\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=tuili&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"冒险\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=maoxian&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"搞笑\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=gaoxiao&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"战争\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=zhanzhen&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"神魔\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=shenmo&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"忍者\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=renzhe&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"竞技\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=jingji&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"悬疑\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=xuanyi&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"社会\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=shehui&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"恋爱\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=lianai&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"宠物\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=chongwu&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"吸血\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=xixue&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"萝莉\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=luoli&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"后宫\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=hougong&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"御姐\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=yujie&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"霸总\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=bazong&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"玄幻\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=xuanhuan&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"古风\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=gufeng&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"历史\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=lishi&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"漫改\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=mangai&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"游戏\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=youxi&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"穿越\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=chuanyue&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"恐怖\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=kongbu&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"真人\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=zhenren&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"科幻\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=kehuan&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"都市\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=dushi&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"武侠\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=wuxia&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"修真\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=xiuzhen&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"生活\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=shenghuo&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"动作\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=dongzuo&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"防疫\",\"url\":\"https://m.manhuatai.com/api/getsortlist/?comic_sort=fangyi&orderby=&search_type=&search_key=&page={{page}}&size=48\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}}]",
    "lastUpdateTime": 1786192231798,
    "respondTime": 798,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content",
      "lastChapter": "class.chapter-list@tag.li.-1@a@text",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "$..current_chapter.chapter_img_list.[*]@js:headers={\"headers\":{\"Referer\":baseUrl}};\nresult.split(\"\\n\").map(x=>'<img src=\\\"'+x+','+JSON.stringify(headers)+'\\\">').join(\"\\n\")",
      "imageStyle": "FULL"
    },
    "ruleExplore": {
      "author": "$.comic_author",
      "bookList": "$.data.data[*]||$.data[*]",
      "bookUrl": "https://m.manhuatai.com/{$.comic_newid}/",
      "coverUrl": "$..cover_img",
      "intro": "$..cartoon_desc",
      "kind": "$.comic_type##[a-zA-Z]|\\|",
      "lastChapter": "$.last_chapter_name",
      "name": "$.comic_name@put:{bid:$.comic_id}",
      "wordCount": "@js:java.timeFormat({{$.update_time}})"
    },
    "ruleSearch": {
      "author": "$.cartoon_author_list_name",
      "bookList": "$.data||$.data.data[*]||$.data[*]",
      "bookUrl": "https://m.manhuatai.com/{$.comic_newid}/",
      "checkKeyWord": "长相思",
      "coverUrl": "https://image.yqmh.com/mh/{$.comic_id}.jpg-300x400.webp",
      "intro": "$.cartoon_desc",
      "kind": "$.comic_type##[a-zA-Z]|\\|",
      "lastChapter": "$.last_qmmh_chapter_name&&$.last_qmmh_chapter_time\n<js>result.replace(/(.*)\\s/,'$1 • ')</js>\n<js>result.replace(/\\s\\d+:\\d+:\\d+/,'')</js>",
      "name": "$.comic_name@put:{bid:$.comic_id}",
      "wordCount": "$.last_qmmh_chapter_time"
    },
    "ruleToc": {
      "chapterList": "class.chapter-list@li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href\n@js:\nvar num=result.match(/.*\\/(.*).html/)[1];\n'https://m.manhuatai.com/api/getchapterinfov2?product_id=2&productname=mht&platformname=wap&comic_id=@get:{bid}&chapter_newid='+num+'&isWebp=1&quality=low'"
    },
    "searchUrl": "https://m.manhuatai.com/api/serachcomic/?product_id=2&productname=mht&platformname=wap&serachKey={{key}}&topNumber={{page+10}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "文桑小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.wensang.net#🎃",
    "customButton": false,
    "customOrder": 228,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "奇幻玄幻::/xuanhuan/page_{{page}}.html\n武侠仙侠::/xiuzhen/page_{{page}}.html\n都市言情::/dushi/page_{{page}}.html\n历史军事::/lishi/page_{{page}}.html\n网游竞技::/wangyou/page_{{page}}.html\n科幻悬疑::/kehuan/page_{{page}}.html\n女生小说::/nvpin/page_{{page}}.html\n青春校园::/qingchun/page_{{page}}.html\n耽美同人::/bl/page_{{page}}.html\n乡村小说::/xiangcun/page_{{page}}.html\n其它小说::/qita/page_{{page}}.html\n文桑视界::/wensang/page_{{page}}.html",
    "lastUpdateTime": 1785381529891,
    "respondTime": 3431,
    "ruleBookInfo": {
      "author": ".field@a.0@text",
      "coverUrl": "id.bookCover@img@src",
      "intro": ".desc-short@text##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": ".field@span.1:2:5@text##.*：|\\s..:.*",
      "lastChapter": ".logs@a.1@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": ".infos@h1@text"
    },
    "ruleContent": {
      "content": "id.BookText@textNodes"
    },
    "ruleExplore": {
      "author": ".d1@ownText",
      "bookList": ".filter-ret@li",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": ".d2@text",
      "lastChapter": "a.2@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "a.1@text"
    },
    "ruleSearch": {
      "author": "span.1@text",
      "bookList": "id.sitebox@dl",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "kind": "span.3:2:0@text##\\s.*",
      "lastChapter": "a.4@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": ".chapter@li@a",
      "chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "href"
    },
    "searchUrl": "/home/search?type=action&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "思路客",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.silukezw.com",
    "bookUrlPattern": "http://www.silukezw.com/\\d+/\\d+/",
    "concurrentRate": "5",
    "customButton": false,
    "customOrder": 231,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"⭕分类小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"首页\",\n    \"url\": \"/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/list1/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/list2/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/list3/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/list4/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/list5/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/list6/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/list7/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/list8/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕完结小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/full/1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/full/2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/full/3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/full/4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/full/5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/full/6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/full/7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/full/8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕排行榜⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"周榜\",\n    \"url\": \"/top/week_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月榜\",\n    \"url\": \"/top/month_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总榜\",\n    \"url\": \"/top/all_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/top/all_1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/top/all_2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/top/all_3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/top/all_4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/top/all_5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/top/all_6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/top/all_7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/top/all_8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; wv) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\", \"Accept-Language\": \"zh-CN,zh;q=0.9\"}",
    "lastUpdateTime": 1785206006419,
    "respondTime": 13183,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content&&\n[property=\"og:novel:status\"]@content&&\n[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:title\"]@content##小说全文免费阅读完整版|小说全集|最新.*"
    },
    "ruleContent": {
      "content": "class.font_max@html",
      "nextContentUrl": "text.下一@href",
      "replaceRegex": "##本章未完.*|第.*[(1/2)]页|(?:[^\\u4E00-\\u9FA5\\s！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}(?<![\\.．点丶。])[\\.．点丶。]{1,2}(?![\\.．点丶。])(?:[^A-Z\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])(?:[^\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])+|(?:[^\\u4E00-\\u9FA5\\n！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}[\\.．点丶。](?:[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[oO][^\\n\\u4E00-\\u9FA5A-z]*[mM]|[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[nN]|[^\\n\\u4E00-\\u9FA5A-z]*[nN][^\\n\\u4E00-\\u9FA5A-z]*[eE][^\\n\\u4E00-\\u9FA5A-z]*[tT])(?![A-z])"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "dd.1@span.0@text",
      "bookList": ".col-md-6@dl",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "kind": "dd.2:3@text##.*：|.*：",
      "lastChapter": "dd.4@a@text",
      "name": "h3@a@text##.*\\]|小说全文阅读|小说全集"
    },
    "ruleToc": {
      "chapterList": ".book_list2 li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": ".page-link@a@href\n@js:\nnext = [];\nurl = result[0];\nlength = result.length;\np = src.match(/page-link\">1\\/(\\d+)/)||[];\npage = Number(p[1]);\nif(length < page){\n\tfor(i = 2; i <= page; i++){\n\t\tlink = String(url).replace(/_\\d+/,`_${i}`);\n\t\tnext.push(link)\n\t\t}\n\t\tnext;\n\t}else result"
    },
    "searchUrl": "/search.php?q={{key}}&p={{page}}",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "风扇枕说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://kakuyomu.jp/",
    "customButton": false,
    "customOrder": 232,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36\"}",
    "lastUpdateTime": 1786785762712,
    "respondTime": 3889,
    "ruleBookInfo": {
      "intro": "class.CollapseTextWithKakuyomuLinks_lineHeight-m__sr9Tu@text"
    },
    "ruleContent": {
      "content": "class.widget-episode-inner@tag.p@text"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.WorkTitle_workLabelAuthor__Kxy5E@children@text",
      "bookList": "class.NewBox_borderSize-bb-m__wEqyb",
      "bookUrl": "class. Gap_size-4s__F67Nf Gap_direction-x__RsHk8@tag.a@href",
      "checkKeyWord": "僕",
      "kind": "class.Meta_metaTruncatedItem__X_PoQ@text",
      "name": "class. Gap_size-4s__F67Nf Gap_direction-x__RsHk8@text",
      "wordCount": "class.WorkMetaBasicInformation_bg-none__s41TO@children@children@class.Meta_metaItemWrapper__JzV2P.3@children@text"
    },
    "ruleToc": {
      "chapterList": "class.WorkTocSection_link__ocg9K",
      "chapterName": "class.WorkTocSection_title__H2007@text##《　|　》",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/search?q={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爱乐文学",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.ailewx.com#",
    "bookUrlPattern": "https://www.ailewx.com/xiaoshuo/\\d+/",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 233,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "❀                       全 部 小 说                      ❀::\n玄幻奇幻::/store/0_1_0_{{page}}.html\n武侠仙侠::/store/0_2_0_{{page}}.html\n都市生活::/store/0_3_0_{{page}}.html\n历史军事::/store/0_4_0_{{page}}.html\n游戏竞技::/store/0_5_0_{{page}}.html\n科幻未来::/store/0_6_0_{{page}}.html\n恐怖悬疑::/store/0_7_0_{{page}}.html\n二次あ元::/store/0_8_0_{{page}}.html\n经典网文::/store/0_9_0_{{page}}.html\n古代言情::/store/0_10_0_{{page}}.html\n现代言情::/store/0_11_0_{{page}}.html\n幻想奇缘::/store/0_12_0_{{page}}.html\n青春校园::/store/0_13_0_{{page}}.html\n网络情缘::/store/0_14_0_{{page}}.html\n科幻空间::/store/0_15_0_{{page}}.html\n鬼怪灵异::/store/0_16_0_{{page}}.html\nN 次あ元::/store/0_17_0_{{page}}.html\n言情美文::/store/0_18_0_{{page}}.html\n\n❀                       排 行 榜 单                      ❀::\n总点击榜::/store/allvisit_0_0_{{page}}.html\n月点击榜::/store/monthvisit_0_0_{{page}}.html\n周点击榜::/store/weekvisit_0_0_{{page}}.html\n日点击榜::/store/dayvisit_0_0_{{page}}.html\n总推荐榜::/store/allvote_0_0_{{page}}.html\n月推荐榜::/store/monthvote_0_0_{{page}}.html\n周推荐榜::/store/weekvote_0_0_{{page}}.html\n日推荐榜::/store/dayvote_0_0_{{page}}.html\n总收藏榜::/store/goodnum_0_0_{{page}}.html\n总字数榜::/store/size_0_0_{{page}}.html\n最新入库::/store/postdate_0_0_{{page}}.html\n最近更新::/store/lastupdate_0_0_{{page}}.html\n新书榜单::/store/goodnew_0_0_{{page}}.html\n\n❀                       全 部 连 载                      ❀::\n玄幻奇幻::/store/0_1_1_{{page}}.html\n武侠仙侠::/store/0_2_1_{{page}}.html\n都市生活::/store/0_3_1_{{page}}.html\n历史军事::/store/0_4_1_{{page}}.html\n游戏竞技::/store/0_5_1_{{page}}.html\n科幻未来::/store/0_6_1_{{page}}.html\n恐怖悬疑::/store/0_7_1_{{page}}.html\n二次あ元::/store/0_8_1_{{page}}.html\n经典网文::/store/0_9_1_{{page}}.html\n古代言情::/store/0_10_1_{{page}}.html\n现代言情::/store/0_11_1_{{page}}.html\n幻想奇缘::/store/0_12_1_{{page}}.html\n青春校园::/store/0_13_1_{{page}}.html\n网络情缘::/store/0_14_1_{{page}}.html\n科幻空间::/store/0_15_1_{{page}}.html\n鬼怪灵异::/store/0_16_1_{{page}}.html\nN 次あ元::/store/0_17_1_{{page}}.html\n言情美文::/store/0_18_1_{{page}}.html\n\n❀                       全 部 完 结                      ❀::\n玄幻奇幻::/store/0_1_2_{{page}}.html\n武侠仙侠::/store/0_2_2_{{page}}.html\n都市生活::/store/0_3_2_{{page}}.html\n历史军事::/store/0_4_2_{{page}}.html\n游戏竞技::/store/0_5_2_{{page}}.html\n科幻未来::/store/0_6_2_{{page}}.html\n恐怖悬疑::/store/0_7_2_{{page}}.html\n二次あ元::/store/0_8_2_{{page}}.html\n经典网文::/store/0_9_2_{{page}}.html\n古代言情::/store/0_10_2_{{page}}.html\n现代言情::/store/0_11_2_{{page}}.html\n幻想奇缘::/store/0_12_2_{{page}}.html\n青春校园::/store/0_13_2_{{page}}.html\n网络情缘::/store/0_14_2_{{page}}.html\n科幻空间::/store/0_15_2_{{page}}.html\n鬼怪灵异::/store/0_16_2_{{page}}.html\nN 次あ元::/store/0_17_2_{{page}}.html\n言情美文::/store/0_18_2_{{page}}.html",
    "header": "{\n\"Cookie\":\"Hm_lvt_7fcb840f05292022d7891ede141cc33d=1625028707\"\n}",
    "lastUpdateTime": 1743750681337,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 8049,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@a@text",
      "canReName": "",
      "coverUrl": "id.fmimg@tag.img@src",
      "init": "",
      "intro": "id.intro@tag.p.0@text",
      "kind": "id.info@tag.p.2@text##最后更新：",
      "lastChapter": "id.info@tag.p.3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.info@h1@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "id.content@html##因某些原.*突然出现大量.*到回家的路！|喜欢.*更新速度最快。|您可以在百度.*查找最新章节！|.*最新章节地址.*|.*全文阅读地址.*|.*txt下载地址.*|.*手机阅读.*|为了方便下次阅.*下次打开书架即可看到！|喜欢.*请向你的朋友.*|本章未完.*后面更精彩！",
      "imageStyle": "",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "tag.dd.1@text",
      "bookList": "class.novelslist2@tag.dl",
      "bookUrl": "tag.dd.0@tag.a.0@href",
      "coverUrl": "tag.dt@tag.a@img@src",
      "intro": "tag.dd.2@text",
      "kind": "class.uptime@text",
      "lastChapter": "tag.dd.3@tag.a@text",
      "name": "tag.dd.0@tag.a.0@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "class.book_other.0@tag.span.0@text",
      "bookList": "id.sitembox@tag.dl",
      "bookUrl": "tag.dd@tag.h3@tag.a@href",
      "coverUrl": "tag.dt@tag.a@img@src",
      "intro": "class.book_des@text",
      "kind": "class.book_other.0@tag.span.2@text",
      "lastChapter": "class.book_other.1@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "tag.dd@tag.h3@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节",
      "wordCount": "class.book_other.0@tag.span.3@text"
    },
    "ruleToc": {
      "chapterList": "class.box_con@tag.dd!0:1:2:3:4:5:6:7:8:9:10:11",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "https://www.ailewx.com/search.html,{\r\n  \"method\": \"POST\",\r\n  \"body\": \"searchtype=all&searchkey={{key}}\"\n}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "奇人小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.qirenxing.com",
    "bookUrlPattern": "http://www.qirenxing.com/book/\\d+/\\d+/",
    "concurrentRate": "5",
    "customButton": false,
    "customOrder": 234,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"⭕分类小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"首页\",\n    \"url\": \"/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/list1/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/list2/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/list3/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/list4/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/list5/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/list6/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/list7/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/list8/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕完结小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/full/1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/full/2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/full/3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/full/4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/full/5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/full/6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/full/7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/full/8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕排行榜⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"周榜\",\n    \"url\": \"/top/week_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月榜\",\n    \"url\": \"/top/month_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总榜\",\n    \"url\": \"/top/all_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/top/all_1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/top/all_2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/top/all_3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/top/all_4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/top/all_5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/top/all_6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/top/all_7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/top/all_8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; wv) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\", \"Accept-Language\": \"zh-CN,zh;q=0.9\"}",
    "lastUpdateTime": 1785477552450,
    "respondTime": 13653,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content&&\n[property=\"og:novel:status\"]@content&&\n[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:title\"]@content##小说全文免费阅读完整版|小说全集|最新.*"
    },
    "ruleContent": {
      "content": "class.font_max@html",
      "nextContentUrl": "text.下一@href",
      "replaceRegex": "##本章未完.*|第.*[(1/2)]页|(?:[^\\u4E00-\\u9FA5\\s！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}(?<![\\.．点丶。])[\\.．点丶。]{1,2}(?![\\.．点丶。])(?:[^A-Z\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])(?:[^\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])+|(?:[^\\u4E00-\\u9FA5\\n！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}[\\.．点丶。](?:[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[oO][^\\n\\u4E00-\\u9FA5A-z]*[mM]|[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[nN]|[^\\n\\u4E00-\\u9FA5A-z]*[nN][^\\n\\u4E00-\\u9FA5A-z]*[eE][^\\n\\u4E00-\\u9FA5A-z]*[tT])(?![A-z])"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "dd.1@span.0@text",
      "bookList": ".col-md-6@dl",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "kind": "dd.2:3@text##.*：|.*：",
      "lastChapter": "dd.4@a@text",
      "name": "h3@a@text##.*\\]|小说全文阅读|小说全集"
    },
    "ruleToc": {
      "chapterList": ".book_list2 li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": ".page-link@a@href\n@js:\nnext = [];\nurl = result[0];\nlength = result.length;\np = src.match(/page-link\">1\\/(\\d+)/)||[];\npage = Number(p[1]);\nif(length < page){\n\tfor(i = 2; i <= page; i++){\n\t\tlink = String(url).replace(/_\\d+/,`_${i}`);\n\t\tnext.push(link)\n\t\t}\n\t\tnext;\n\t}else result"
    },
    "searchUrl": "/search.php?q={{key}}&p={{page}}",
    "weight": 1
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "七七书库",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.77shuku.info/#pb1101",
    "bookUrlPattern": "http://www.77shuku.info/novel/\\d+/",
    "customButton": false,
    "customOrder": 235,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/store/1_{{page}}.html\n仙侠小说::/store/2_{{page}}.html\n都市小说::/store/3_{{page}}.html\n言情小说::/store/4_{{page}}.html\n穿越小说::/store/5_{{page}}.html\n科幻小说::/store/6_{{page}}.html\n恐怖小说::/store/7_{{page}}.html\n网游小说::/store/8_{{page}}.html",
    "lastUpdateTime": 1787421011888,
    "respondTime": 5628,
    "ruleBookInfo": {
      "author": "class.options@tag.span.0@text",
      "coverUrl": "class.img_in@img@src",
      "intro": "id.intro@ownText",
      "kind": "class.update@text##.*\\（|\\）",
      "lastChapter": "class.update@a@text",
      "name": "id.info@h1@text"
    },
    "ruleContent": {
      "content": "id.ChapterContents@textNodes##txt下载地址：|手机阅读："
    },
    "ruleExplore": {
      "author": "h4@small@text",
      "bookList": "class.shu_box",
      "bookUrl": "h4@a@href",
      "coverUrl": "img@src",
      "intro": "class.intro@text",
      "name": "h4@a@text"
    },
    "ruleSearch": {
      "author": "tag.td.5@text",
      "bookList": "class.BOX@tr!0",
      "bookUrl": "tag.td.2@a@href",
      "coverUrl": "tag.td.2@a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'http://www.77shuku.info/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "tag.td.4@text",
      "lastChapter": "tag.td.3@a@text",
      "name": "tag.td.2@a@text"
    },
    "ruleToc": {
      "chapterList": "class.zjlist@dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://www.77shuku.info/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "UC小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://xiaoshuo.uc.cn",
    "customButton": false,
    "customOrder": 236,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\nvar cat1='都市,玄幻,仙侠,灵异,历史,游戏,科幻,武侠,奇幻,竞技';var list=[];\nfunction getUrl(cats,url1){cats.split(',').forEach((i)=>{list.push(i+'::'+url1+i)})};\nlist.push('男→::');\ngetUrl(cat1,'http://read.xiaoshuo1-sm.com/novel/i.php?do=is_caterank&p=17&page={{page}}&onlyCpBooks=1&status=2&firstCate=');\nlist.join('\\n')\n</js>",
    "lastUpdateTime": 1785042123409,
    "respondTime": 5758,
    "ruleBookInfo": {
      "init": "<js>\nvar bookId=java.get('bid');\nvar encryptKey=\"37e81a9d8f02596e1b895d07c171d5c9\",user_id=\"8000000\",timestamp=parseInt((new Date).getTime()/1e3);\nvar o=bookId+timestamp+user_id+encryptKey;\nvar sign=java.md5Encode(o);\nvar list={'turl':'https://ocean.shuqireader.com/api/bcspub/qswebapi/book/chapterlist?_=&bookId='+bookId+'&user_id=8000000&sign='+sign+'&timestamp='+timestamp};list\n</js>",
      "tocUrl": "turl"
    },
    "ruleContent": {
      "content": "ChapterContent@js:\nfunction p(e) {\n    return e.split(\"\").map(function (e) {\n        return e.match(/[A-Za-z]/) ? (c = Math.floor(e.charCodeAt(0) / 97), k = (e.toLowerCase().charCodeAt(0) - 83) % 26 || 26, String.fromCharCode(k + (0 == c ? 64 : 96))) : e\n    }).join(\"\")\n}\njava.base64Decode(p(result))"
    },
    "ruleExplore": {
      "author": "author",
      "bookList": "$.data",
      "bookUrl": "$.bid<js>java.put('bid',result);'http://xiaoshuo.uc.cn/#!/ct/cover/bid/'+result</js>",
      "coverUrl": "cover",
      "intro": "desc",
      "kind": "{{$.category}},{{$.tags}},读者{{$.reads}},{{$.status}}<js>result.replace(/1$/,'完结').replace(/0$/,'连载')</js>",
      "lastChapter": "$.uptime<js>java.getString('$.last_chapter_name')+' '+java.timeFormat(result*1000)</js>",
      "name": "title",
      "wordCount": "words"
    },
    "ruleSearch": {
      "author": "author",
      "bookList": "$.data",
      "bookUrl": "$.bid<js>java.put('bid',result);'http://xiaoshuo.uc.cn/#!/ct/cover/bid/'+result</js>",
      "coverUrl": "cover",
      "intro": "desc",
      "kind": "category&&tags",
      "name": "title",
      "wordCount": "words"
    },
    "ruleToc": {
      "chapterList": "$.data.chapterList[0].volumeList<js>java.put('freeUrlPre',java.getString('$.data.freeContUrlPrefix'));java.put('shortUrlPre',java.getString('$.data.shortContUrlPrefix'));result</js>",
      "chapterName": "chapterName",
      "chapterUrl": "<js>var l=java.getString('$.contUrlSuffix');if(l.indexOf('reqEncryptParam')==-1){java.get('freeUrlPre')+l}else{java.get('shortUrlPre')+java.getString('$.shortContUrlSuffix')}</js>",
      "isVip": "chapterPrice"
    },
    "searchUrl": "http://read.xiaoshuo1-sm.com/novel/i.php?do=is_serchpay&page=1&size=10&q={{key}}&filterMigu=1&p=17&shuqi_h5=&_=1619653492249",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "悠久小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.ujxsw.org/##@鱼",
    "customButton": false,
    "customOrder": 237,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n    {\n        \"title\": \"🍁排行榜🍁\",\n        \"url\": \"\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 1\n        }\n    },\n    {\n        \"title\": \"点击榜\",\n        \"url\": \"/top/allvisit_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"收藏榜\",\n        \"url\": \"/top/goodnum_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"推荐榜\",\n        \"url\": \"/top/allvote_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"最新小说\",\n        \"url\": \"/top/postdate_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"最近更新\",\n        \"url\": \"/top/lastupdate_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"字数排行\",\n        \"url\": \"/top/size_{{page}}/\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"🍁分类🍁\",\n        \"url\": \"\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 1\n        }\n    },\n    {\n        \"title\": \"玄幻奇幻\",\n        \"url\": \"/xuanhuan/{{page}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"title\": \"仙侠修真\",\n        \"url\": \"/wuxia/{{page}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"title\": \"都市青春\",\n        \"url\": \"/dushi/{{page}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"title\": \"历史穿越\",\n        \"url\": \"/lishi/{{page}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"title\": \"游戏动漫\",\n        \"url\": \"/youxi/{{page}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"title\": \"科幻灵异\",\n        \"url\": \"/kehuan/{{page}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"title\": \"女生言情\",\n        \"url\": \"/yanqing/{{page}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },\n    {\n        \"title\": \"全本完结\",\n        \"url\": \"/full/{{page}}.html\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    }\n]",
    "lastUpdateTime": 1787418122022,
    "respondTime": 7024,
    "ruleBookInfo": {
      "author": ".block_txt2 tag.a.1@text",
      "coverUrl": ".block_img2 img@src",
      "intro": "☁️ 更新时间：\n\n{{@@.block_txt2@tag.p.6@text##更新时间：}}\n\n👻  简介：\n\n{{@@.bk-intro-bd@textNodes##.*网址.*}}",
      "kind": ".block_txt2@tag.p.3@tag.a@text",
      "lastChapter": ".block_txt2 tag.a.-1@text",
      "name": "h2@text",
      "tocUrl": "text.章节目录@href",
      "wordCount": "{{@@.block_txt2@tag.p.5@text##热度：}}{{@@.block_txt2@tag.p.4@text##状态：}}"
    },
    "ruleContent": {
      "content": "#nr@html##.*悠久小说.*|.*百度.*|.*佰度.*|.*第.*页.*|.*标记书.*|.*转载自网络.*|上一章|下一章|上一页|下一页|关灯|护眼|报错|查看目录|最新网址.*|.*免费小说.*|.*入书架.*|手机版|电脑版|催更|.*联系予.*|.*继续阅读.*|\\*|.*本章完.*|.*本章节.*|.*第\\d章.*|79免费.*",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author a@text",
      "bookList": ".bookbox",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "lastChapter": "{{@@.intro_line a@text}}🔸{{@@.cat@text##时间：}}",
      "name": ".bookname a@text"
    },
    "ruleToc": {
      "chapterList": "#chapterList a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/searchbooks.php,{\n  \"body\": \"searchkey={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.miaobige.cc",
    "bookUrlPattern": "http://www.miaobige.cc/\\d+/\\d+/",
    "concurrentRate": "5",
    "customButton": false,
    "customOrder": 238,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"⭕分类小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"首页\",\n    \"url\": \"/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/list1/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/list2/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/list3/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/list4/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/list5/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/list6/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/list7/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/list8/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕完结小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/full/1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/full/2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/full/3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/full/4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/full/5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/full/6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/full/7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/full/8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕排行榜⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"周榜\",\n    \"url\": \"/top/week_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月榜\",\n    \"url\": \"/top/month_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总榜\",\n    \"url\": \"/top/all_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/top/all_1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/top/all_2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/top/all_3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/top/all_4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/top/all_5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/top/all_6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/top/all_7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/top/all_8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; wv) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\", \"Accept-Language\": \"zh-CN,zh;q=0.9\"}",
    "lastUpdateTime": 1786027326076,
    "respondTime": 11380,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content&&\n[property=\"og:novel:status\"]@content&&\n[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:title\"]@content##小说全文免费阅读完整版|小说全集|最新.*"
    },
    "ruleContent": {
      "content": "class.font_max@html",
      "nextContentUrl": "text.下一@href",
      "replaceRegex": "##本章未完.*|第.*[(1/2)]页|(?:[^\\u4E00-\\u9FA5\\s！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}(?<![\\.．点丶。])[\\.．点丶。]{1,2}(?![\\.．点丶。])(?:[^A-Z\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])(?:[^\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])+|(?:[^\\u4E00-\\u9FA5\\n！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}[\\.．点丶。](?:[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[oO][^\\n\\u4E00-\\u9FA5A-z]*[mM]|[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[nN]|[^\\n\\u4E00-\\u9FA5A-z]*[nN][^\\n\\u4E00-\\u9FA5A-z]*[eE][^\\n\\u4E00-\\u9FA5A-z]*[tT])(?![A-z])"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "dd.1@span.0@text",
      "bookList": ".col-md-6@dl",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "kind": "dd.2:3@text##.*：|.*：",
      "lastChapter": "dd.4@a@text",
      "name": "h3@a@text##.*\\]|小说全文阅读|小说全集"
    },
    "ruleToc": {
      "chapterList": ".book_list2 li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": ".page-link@a@href\n@js:\nnext = [];\nurl = result[0];\nlength = result.length;\np = src.match(/page-link\">1\\/(\\d+)/)||[];\npage = Number(p[1]);\nif(length < page){\n\tfor(i = 2; i <= page; i++){\n\t\tlink = String(url).replace(/_\\d+/,`_${i}`);\n\t\tnext.push(link)\n\t\t}\n\t\tnext;\n\t}else result"
    },
    "searchUrl": "/search.php?q={{key}}&p={{page}}",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "西瓜免费（优+）",
    "bookSourceType": 0,
    "bookSourceUrl": "🥝西瓜免费小说App🍒",
    "customButton": false,
    "customOrder": 239,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1772087585689,
    "respondTime": 2159,
    "ruleBookInfo": {
      "author": "data.book.author",
      "coverUrl": "data.book.coverWap",
      "intro": "data.book.introduction",
      "kind": "data.book.tagList",
      "lastChapter": "data.lastChapter.chapterName",
      "name": "data.book.bookName",
      "tocUrl": "<js>\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n    Packages.java.lang,\n    Packages.javax.crypto,\n    Packages.javax.crypto.spec,\n    Packages.java.security,\n    Packages.java.security.interfaces,\n    Packages.java.security.spec,\n    Packages.java.io,\n    Packages.java.util\n);\nwith(javaImport){\n    function encrypt(str){\n        var bArr = String(str).getBytes(\"UTF-8\");\n        var mac = Mac.getInstance(\"HmacSHA256\");\n        mac .init(SecretKeySpec(String(\"wj3imab73kwceuf51lf01ORHe2cmo8X0YrZwF4p2uv3WEfmqxrT2oIBwRFRNErXW20UKal15ZTDdxPKU43puZFqcuXkvrQmadhp1wn6YPEDO4WRgInp8NNNQo4uNsWF1CELOzx7yPOS4pQbhTRWB4qRm0a4ENIegN0SH7K2STbsyaCuWh7m7s3rTpb5dK3CcDdsT35vo0xNbPZI2dJmKoIeKk9p3YhBLNWp9WoZqn9Qihpvn4nvgJzVSacgy2MTo\").getBytes(\"UTF-8\"),\"HmacSHA256\"));\n        return mac.doFinal(bArr)\n    }\n  function encode(bArr) {\n        if (bArr === null) {\n            return null;\n        }\n        var length = bArr.length * 8;\n        if (length === 0) {\n            return \"\";\n        }\n        var i10 = length % 24;\n        var i11 = parseInt(length / 24);\n        var cArr = new Array((i10 !== 0 ? i11 + 1 : i11) * 4);\n        var i12 = 0;\n        var i13 = 0;\n        var i14 = 0;\n        while (i12 < i11) {\n                var i15 = i13 + 1;\n                var b10 = bArr[i13];\n                var i16 = i15 + 1;\n                var b11 = bArr[i15];\n                var i17 = i16 + 1;\n                var b12 = bArr[i16];\n                var b13 = (b11 & 15)&255;\n                var b14 = (b10 & 3)&255;\n                var i18 = b10 & -128;\n                var i19 = b10 >> 2;\n                if (i18 !== 0) {\n                    i19 ^= 192;\n                }\n                var b15 = i19 & 255;\n                var i20 = b11 & -128;\n                var i21 = b11 >> 4;\n                if (i20 !== 0) {\n                    i21 ^= 240;\n                }\n                var b16 = (i21 & 255);\n                var i22 = (b12 & -128) === 0 ? b12 >> 6 : (b12 >> 6) ^ 252;\n                var i23 = i14 + 1;\n                var cArr2 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'];\n                cArr[i14] = cArr2[b15];\n                var i24 = i23 + 1;\n                cArr[i23] = cArr2[(b14 << 4) | b16];\n                var i25 = i24 + 1;\n                cArr[i24] = cArr2[(b13 << 2) | (i22&255)];\n                cArr[i25] = cArr2[b12 & 63];\n                i12++;\n                i14 = i25 + 1;\n                i13 = i17;\n\t\t\t\t}\n        if (i10 === 8) {\n            var b17 = bArr[i13];\n            var b18 = b17 & 3;\n            var i26 = b17 & -128;\n            var i27 = b17 >> 2;\n            if (i26 !== 0) {\n                i27 ^= 192;\n            }\n            var i28 = i14 + 1;\n            var cArr3 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'];\n            cArr[i14] = cArr3[i27];\n            var i29 = i28 + 1;\n            cArr[i28] = cArr3[b18 << 4];\n            cArr[i29] = '=';\n            cArr[i29 + 1] = '=';\n\t\t}else if (i10 === 16) {\n            var b19 = bArr[i13];\n            var b20 = bArr[i13 + 1];\n            var b21 = (b20 & 15)&255;\n            var b22 = (b19 & 3)&255;\n            var i30 = b19 & -128;\n            var i31 = b19 >> 2;\n            if (i30 !== 0) {\n                i31 ^= 192;\n            }\n            var b23 = i31&255;\n            var i32 = b20 & -128;\n            var i33 = b20 >> 4;\n            if (i32 !== 0) {\n                i33 ^= 240;\n            }\n            var i34 = i14 + 1;\n            var cArr4 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'];\n            cArr[i14] = cArr4[b23];\n            var i35 = i34 + 1;\n            cArr[i34] = cArr4[(i33&255) | (b22 << 4)];\n            cArr[i35] = cArr4[b21 << 2];\n            cArr[i35 + 1] = '=';\n        }\n        return cArr.join('');\n    }\n\n}\n\nvar bookId= java.getString(\"data.book.bookId\");\n\nvar myDate = new Date();\nvar timestamp = myDate.getFullYear() + \n\"0\" + (myDate.getMonth()+1) + \n\"0\" + myDate.getDate() + \n\"0\" + myDate.getDay() + \nmyDate.getMinutes() + \nmyDate.getSeconds();\n\n\n\nvar sign = encode(encrypt(\"appId=100398183&country=CN&lang=zh_CN&ver=10009248&appVer=1.0.9.248&timestamp=\"+ timestamp +\"{\\\"chapterId\\\":\\\"\\\",\\\"needBlockList\\\":\\\"1\\\",\\\"chapterOffset\\\":\\\"666666\\\",\\\"bookId\\\":\\\"\" + bookId + \"\\\",\\\"chapterEndId\\\":\\\"\\\"}8cfaaedef7a7e24a716732ff5428958f\"))\n\nurl = \"https://xgmf.zuanqianyi.com/glory/free/111?appId=100398183&country=CN&lang=zh_CN&ver=10009248&appVer=1.0.9.248&timestamp=\" + timestamp + \",\";\npost={\n  \"method\": \"POST\",\n  \"headers\": {\n    \"pname\": \"com.dzmf.zmfxsdq\",\n    \"sign\": sign,\n    \"signType\": \"1\"\n  },\n  \"body\":'{\"chapterId\":\"\",\"needBlockList\":\"1\",\"chapterOffset\":\"666666\",\"bookId\":\"'+bookId+'\",\"chapterEndId\":\"\"}'\n}\nurl+JSON.stringify(post)\n</js>",
      "wordCount": "data.book.totalWordSize"
    },
    "ruleContent": {
      "content": "<js>\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n    Packages.java.lang,\n    Packages.java.io,\n    Packages.java.util,\n    Packages.java.security.spec,\n    Packages.java.security,\n    Packages.javax.crypto,\n    Packages.javax.crypto.spec,\n    Packages.java.security.interfaces,\n    Packages.java.security.spec\n);\nwith(javaImport){\n\tfunction encrypt(str){\n                var bArr = String(str).getBytes(\"UTF-8\");\n\t\tvar pKCS8EncodedKeySpec =PKCS8EncodedKeySpec([48,-126,4,-65,2,1,0,48,13,6,9,42,-122,72,-122,-9,13,1,1,1,5,0,4,-126,4,-87,48,-126,4,-91,2,1,0,2,-126,1,1,0,-118,121,-93,-123,61,113,-87,-20,-33,52,-70,-125,-13,67,-61,92,-49,-41,-14,60,-49,31,-68,-88,-7,-38,-52,-62,-31,-76,-123,90,-28,-70,-23,-106,93,-93,-5,-57,22,62,51,45,-88,80,-38,-55,75,-3,-73,-96,65,-15,-110,11,-121,-91,105,-91,-11,-62,-111,96,17,-68,-82,113,-116,-82,-108,51,-100,31,61,14,-26,-5,-48,14,-36,-110,-90,113,46,-31,-67,-64,95,98,95,-123,2,-83,16,-105,74,-42,-100,3,-125,53,126,-72,-72,-76,79,108,1,-71,-82,-51,0,60,-94,84,-65,73,-44,-88,-107,-81,44,3,40,-33,-87,114,88,21,-53,111,-84,-88,-83,112,41,101,-118,50,22,-74,29,47,-51,-106,-89,-26,55,44,66,118,-7,-45,-72,78,-125,-37,73,72,-80,-11,38,-82,65,54,103,9,43,-106,-88,-81,29,50,56,-127,104,122,56,-38,-93,-76,-12,-99,-17,-87,97,-128,21,118,-78,-13,-67,15,-74,-116,71,63,122,5,-59,120,93,90,-104,116,21,-13,108,10,-50,-103,-33,-21,125,113,86,-73,46,-84,-92,106,-86,8,23,7,95,-65,80,83,6,-85,53,85,-85,43,-73,41,-84,-10,76,106,-36,119,99,-125,121,-92,-122,-94,-73,-15,125,115,120,-63,2,3,1,0,1,2,-126,1,1,0,-121,-55,-103,-48,-55,28,-47,125,102,-81,37,10,-55,28,52,-47,-87,58,95,-34,-61,88,-94,-66,-84,43,-93,72,-94,-35,75,59,-125,57,-54,94,-39,-70,56,-27,-45,-24,-16,116,-96,45,-111,45,125,103,-15,-115,-93,-68,-121,-14,-24,116,10,-14,99,-39,4,-121,73,61,85,110,33,126,-5,-14,-45,-16,74,6,119,-8,-117,-32,86,-23,51,111,-97,-126,91,120,-19,-49,-32,76,-28,-1,-30,90,9,88,3,42,-22,-102,37,-122,108,16,-36,36,-44,88,73,-111,-38,-34,-102,108,50,27,-22,-3,-39,-78,41,-99,123,-110,63,108,85,22,-119,93,-85,-98,-114,70,-31,-120,-122,10,-92,-31,87,117,-119,-49,25,1,20,-42,-61,35,96,-41,-46,-50,-114,-31,-36,-21,95,-70,113,110,62,-28,62,76,36,-57,81,-21,100,36,124,-74,112,-52,-73,109,-117,37,-3,-40,-111,-102,-13,62,118,-93,-119,-118,-33,-82,20,53,64,-57,24,63,-113,-126,-61,-69,90,-72,-56,120,80,-95,-14,124,-2,74,80,53,22,3,57,61,113,-117,-5,-54,61,-1,-105,-96,-68,7,-98,-49,95,-61,-16,51,-65,82,66,-125,-66,-92,115,75,-116,32,14,68,-51,124,-126,32,-63,52,84,117,2,-127,-127,0,-15,-52,16,-109,-8,94,1,-65,14,-119,72,18,115,86,17,19,-68,-19,24,86,12,5,-97,55,-16,-75,84,110,-126,23,-33,-56,120,17,-32,-127,-106,-54,-27,54,20,40,92,70,-18,94,31,-79,-42,69,74,18,85,17,-64,-80,60,4,-102,23,36,-52,-112,124,11,-30,-15,5,-92,125,51,-42,26,109,27,-19,93,10,49,-48,-106,91,-38,12,-45,73,-44,-26,37,114,21,105,36,-38,96,39,-5,-8,-4,-70,-11,106,-107,69,68,14,-43,-123,-127,6,127,65,-25,-49,75,110,99,-50,-32,-33,-54,-26,117,125,-18,24,-89,107,2,-127,-127,0,-110,-101,-24,103,-95,2,-73,-114,-109,-97,107,126,-32,75,-124,-39,-92,-98,-127,-33,2,-65,49,-80,24,118,94,4,-117,122,-70,-41,-42,59,-90,-53,-81,-101,-57,75,-99,-67,-87,-67,-35,40,-66,53,-45,95,79,-10,-120,-111,71,-12,-110,76,-74,82,-79,83,-84,3,43,111,-44,-109,4,61,-22,3,99,113,113,-121,-15,-108,44,-32,-28,46,-83,-115,-99,-86,108,-111,3,-11,-43,121,67,-73,-68,99,107,55,-119,-77,20,-68,-77,98,-113,-21,39,-128,-21,119,113,57,-99,-30,-65,-128,-76,-100,40,8,39,-72,18,9,-17,-99,-89,-125,2,-127,-128,108,110,19,93,23,-70,-88,83,-46,35,-13,-30,-6,63,-75,70,-63,-87,29,9,-79,56,112,46,-8,-51,-120,0,74,108,-124,88,-12,-89,39,-93,85,72,-59,66,-36,5,65,100,57,-114,-111,-18,0,-27,111,-109,10,-4,-4,8,-53,-47,80,124,98,111,45,-73,-62,-24,-47,38,-77,-99,-59,-70,20,125,-85,81,101,48,-90,40,32,-43,45,-46,36,-119,-18,100,10,-108,-65,79,56,76,-119,100,68,-43,98,24,64,-25,-69,-22,-92,-37,118,26,-7,66,61,-99,3,99,-19,50,-94,-91,106,40,81,103,-55,118,96,104,67,-29,2,-127,-127,0,-121,39,-59,-77,-85,34,119,23,-80,-115,-38,42,-120,25,-10,-86,49,-15,-110,102,-122,0,-66,-116,-55,-80,109,114,33,39,-114,-110,37,-60,-82,58,-66,116,-116,-32,-17,-43,-122,99,43,60,65,70,27,-53,-107,75,0,-111,118,85,72,126,1,-30,-17,-24,-29,-3,-76,16,-113,86,-51,37,74,-45,-66,-36,57,62,-118,-3,-1,-11,127,70,108,-26,-51,-1,-21,-64,48,119,116,74,43,-100,121,-58,-23,115,-76,-76,-20,28,29,-1,114,15,-26,70,26,76,-19,-117,-95,59,5,50,96,-50,72,-75,99,-16,116,104,-58,-122,127,-125,2,-127,-127,0,-105,-116,-61,-50,-11,-71,-17,-45,114,88,67,113,51,37,-77,53,82,-22,36,70,-19,34,93,22,-103,-36,28,-47,-113,120,-57,4,-95,11,-82,-62,-127,13,115,93,104,-110,-44,39,42,-125,64,-111,53,-14,82,73,69,0,-66,37,-56,-115,3,-103,5,-69,55,75,-113,7,-18,-32,97,-56,28,85,-48,72,27,-115,119,63,1,41,115,-27,-73,24,-63,57,-72,107,-9,39,13,120,-75,-42,33,9,-39,-93,72,-122,66,33,-36,-1,-18,-102,11,-49,28,-61,-120,6,102,-37,-106,-6,5,-111,107,-76,49,78,-40,19,53,106,-37,-125]);\n\t\tvar signature = Signature.getInstance(\"SHA256WithRSA\");\n\t\tsignature.initSign(KeyFactory.getInstance(\"RSA\").generatePrivate(pKCS8EncodedKeySpec));\n\t\tsignature.update(bArr);\n\t\treturn signature.sign();        \n    }\n\tfunction encode(bArr) {\n        if (bArr === null) {\n            return null;\n        }\n        var length = bArr.length * 8;\n        if (length === 0) {\n            return \"\";\n        }\n        var i10 = length % 24;\n        var i11 = parseInt(length / 24);\n        var cArr = new Array((i10 !== 0 ? i11 + 1 : i11) * 4);\n        var i12 = 0;\n        var i13 = 0;\n        var i14 = 0;\n        while (i12 < i11) {\n                var i15 = i13 + 1;\n                var b10 = bArr[i13];\n                var i16 = i15 + 1;\n                var b11 = bArr[i15];\n                var i17 = i16 + 1;\n                var b12 = bArr[i16];\n                var b13 = (b11 & 15)&255;\n                var b14 = (b10 & 3)&255;\n                var i18 = b10 & -128;\n                var i19 = b10 >> 2;\n                if (i18 !== 0) {\n                    i19 ^= 192;\n                }\n                var b15 = i19 & 255;\n                var i20 = b11 & -128;\n                var i21 = b11 >> 4;\n                if (i20 !== 0) {\n                    i21 ^= 240;\n                }\n                var b16 = (i21 & 255);\n                var i22 = (b12 & -128) === 0 ? b12 >> 6 : (b12 >> 6) ^ 252;\n                var i23 = i14 + 1;\n                var cArr2 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'];\n                cArr[i14] = cArr2[b15];\n                var i24 = i23 + 1;\n                cArr[i23] = cArr2[(b14 << 4) | b16];\n                var i25 = i24 + 1;\n                cArr[i24] = cArr2[(b13 << 2) | (i22&255)];\n                cArr[i25] = cArr2[b12 & 63];\n                i12++;\n                i14 = i25 + 1;\n                i13 = i17;\n\t\t\t\t}\n        if (i10 === 8) {\n            var b17 = bArr[i13];\n            var b18 = b17 & 3;\n            var i26 = b17 & -128;\n            var i27 = b17 >> 2;\n            if (i26 !== 0) {\n                i27 ^= 192;\n            }\n            var i28 = i14 + 1;\n            var cArr3 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'];\n            cArr[i14] = cArr3[i27];\n            var i29 = i28 + 1;\n            cArr[i28] = cArr3[b18 << 4];\n            cArr[i29] = '=';\n            cArr[i29 + 1] = '=';\n\t\t}else if (i10 === 16) {\n            var b19 = bArr[i13];\n            var b20 = bArr[i13 + 1];\n            var b21 = (b20 & 15)&255;\n            var b22 = (b19 & 3)&255;\n            var i30 = b19 & -128;\n            var i31 = b19 >> 2;\n            if (i30 !== 0) {\n                i31 ^= 192;\n            }\n            var b23 = i31&255;\n            var i32 = b20 & -128;\n            var i33 = b20 >> 4;\n            if (i32 !== 0) {\n                i33 ^= 240;\n            }\n            var i34 = i14 + 1;\n            var cArr4 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'];\n            cArr[i14] = cArr4[b23];\n            var i35 = i34 + 1;\n            cArr[i34] = cArr4[(i33&255) | (b22 << 4)];\n            cArr[i35] = cArr4[b21 << 2];\n            cArr[i35 + 1] = '=';\n        }\n        return cArr.join('');\n    }\n\n}\n\tvar bookId = java.get(\"bookId\");\n\tvar str = baseUrl;\n\tvar chapterId = str.match(/\\d+/).toString();\n\n\n\tfunction getTransferRespond(Urltype){\n\t\t\n\t\tvar myDate = new Date();\n\t\tvar timestamp = myDate.getFullYear() + \n\t\t\"0\" + (myDate.getMonth()+1) + \n\t\t\"0\" + myDate.getDate() + \n\t\t\"0\" + myDate.getDay() + \n\t\tmyDate.getMinutes() + \n\t\tmyDate.getSeconds();\n\t\t\n\t\t\n\t\tvar url;\n\t\tvar body;\n\t\tvar body;\n\t\tif(Urltype == 1)\n\t\t{\n\t\n\t\t\tvar url = \"https://xgmf.zuanqianyi.com/glory/free/1152?appId=100398183&country=CN&lang=zh_CN&ver=10009248&appVer=1.0.9.248&timestamp=\" + timestamp;\n\n\t\t\tvar sign = encode(encrypt(\"appId=100398183&country=CN&lang=zh_CN&ver=10009248&appVer=1.0.9.248&timestamp=\"+ timestamp +\"{\\\"autoPay\\\":\\\"1\\\",\\\"chapterId\\\":\\\"\"+chapterId+\"\\\",\\\"keepShowAd\\\":1,\\\"confirmPay\\\":\\\"1\\\",\\\"bookId\\\":\\\"\"+bookId+\"\\\"}8cfaaedef7a7e24a716732ff5428958f\"))\n\n\t\t\tvar body =\n\t\t\t\"{\\\"autoPay\\\":\\\"1\\\",\\\"chapterId\\\":\\\"\"+chapterId+\"\\\",\\\"keepShowAd\\\":1,\\\"confirmPay\\\":\\\"1\\\",\\\"bookId\\\":\\\"\"+bookId+\"\\\"}\";\n\n\t\t\tvar header = {};\n\n\t\t\theader[\"uid\"]=\"1706970565\";\n\t\t\theader[\"pname\"]=\"com.dzmf.zmfxsdq\";\n\t\t\theader[\"sign\"]=sign;\n\t\t\theader[\"signType\"]=\"2\";\n\t\t\theader[\"Content-Type\"]=\"application/json; charset=UTF-8\";\n\t\t\t//header[\"Content-Length\"]=93;\n\t\t\theader[\"Host\"]=\"xgmf.zuanqianyi.com\";\n\t\t\n\t\t}else\n\t\t{\n\t\t\tvar url = \"https://xgmf.zuanqianyi.com/glory/free/1153?appId=100398183&country=CN&lang=zh_CN&ver=10009248&appVer=1.0.9.248&timestamp=\" + timestamp;\n\n\t\t\tvar sign = encode(encrypt(\"appId=100398183&country=CN&lang=zh_CN&ver=10009248&appVer=1.0.9.248&timestamp=\"+ timestamp +\"{\\\"autoPay\\\":\\\"1\\\",\\\"keepShowAd\\\":1,\\\"chapterIds\\\":[\\\"\"+chapterId+\"\\\"],\\\"bookId\\\":\\\"\"+bookId+\"\\\"}8cfaaedef7a7e24a716732ff5428958f\"))\n\n\t\t\tvar body =\n\t\t\t\"{\\\"autoPay\\\":\\\"1\\\",\\\"keepShowAd\\\":1,\\\"chapterIds\\\":[\\\"\"+chapterId+\"\\\"],\\\"bookId\\\":\\\"\"+bookId+\"\\\"}\";\n\t\t\t\n\t\t\tvar header = {};\n\n\t\t\theader[\"uid\"]=\"1706970565\";\n\t\t\theader[\"pname\"]=\"com.dzmf.zmfxsdq\";\n\t\t\theader[\"sign\"]=sign;\n\t\t\theader[\"signType\"]=\"2\";\n\t\t\theader[\"Content-Type\"]=\"application/json; charset=UTF-8\";\n\t\t\t//header[\"Content-Length\"]=79;\n\t\t\theader[\"Host\"]=\"xgmf.zuanqianyi.com\";\t\t\n\t\t}\n\t\t\n\t\tvar respond= java.post(url,body,header);\n\t\treturn respond;\n\t}\n\t\n\tvar UrltypeNum = 1;\n\t\n\tvar respond = getTransferRespond(UrltypeNum);\n\n\tvar transferHtml=respond.body();\n\n\tvar is = String(transferHtml).search(/不合法/);\n\n\twhile(is > 0){\n\t\tif(UrltypeNum == 1){UrltypeNum = 2}else{UrltypeNum = 1}\n\t\tvar respond = getTransferRespond(UrltypeNum);\n\t\tvar transferHtml=respond.body();\n\t\tvar is = String(transferHtml).search(/不合法/);\n\t}\n\t//java.log(transferHtml);\n\tvar transferJson=JSON.parse(transferHtml);\n\tvar chapterUrl =transferJson.data.chapterInfo[0].cdnUrls[0];\n\tchapterHtml = java.ajax(chapterUrl);\n\t//java.log(chapterUrl);\n\t//java.log(java.ajax(chapterUrl));\n</js>"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "author",
      "bookList": "data.searchList",
      "bookUrl": "<js>\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n    Packages.java.lang,\n    Packages.javax.crypto,\n    Packages.javax.crypto.spec,\n    Packages.java.security,\n    Packages.java.security.interfaces,\n    Packages.java.security.spec,\n    Packages.java.io,\n    Packages.java.util\n);\nwith(javaImport){\n    function encrypt(str){\n        var bArr = String(str).getBytes(\"UTF-8\");\n        var mac = Mac.getInstance(\"HmacSHA256\");\n        mac .init(SecretKeySpec(String(\"wj3imab73kwceuf51lf01ORHe2cmo8X0YrZwF4p2uv3WEfmqxrT2oIBwRFRNErXW20UKal15ZTDdxPKU43puZFqcuXkvrQmadhp1wn6YPEDO4WRgInp8NNNQo4uNsWF1CELOzx7yPOS4pQbhTRWB4qRm0a4ENIegN0SH7K2STbsyaCuWh7m7s3rTpb5dK3CcDdsT35vo0xNbPZI2dJmKoIeKk9p3YhBLNWp9WoZqn9Qihpvn4nvgJzVSacgy2MTo\").getBytes(\"UTF-8\"),\"HmacSHA256\"));\n        return mac.doFinal(bArr)\n    }\n  function encode(bArr) {\n        if (bArr === null) {\n            return null;\n        }\n        var length = bArr.length * 8;\n        if (length === 0) {\n            return \"\";\n        }\n        var i10 = length % 24;\n        var i11 = parseInt(length / 24);\n        var cArr = new Array((i10 !== 0 ? i11 + 1 : i11) * 4);\n        var i12 = 0;\n        var i13 = 0;\n        var i14 = 0;\n        while (i12 < i11) {\n                var i15 = i13 + 1;\n                var b10 = bArr[i13];\n                var i16 = i15 + 1;\n                var b11 = bArr[i15];\n                var i17 = i16 + 1;\n                var b12 = bArr[i16];\n                var b13 = (b11 & 15)&255;\n                var b14 = (b10 & 3)&255;\n                var i18 = b10 & -128;\n                var i19 = b10 >> 2;\n                if (i18 !== 0) {\n                    i19 ^= 192;\n                }\n                var b15 = i19 & 255;\n                var i20 = b11 & -128;\n                var i21 = b11 >> 4;\n                if (i20 !== 0) {\n                    i21 ^= 240;\n                }\n                var b16 = (i21 & 255);\n                var i22 = (b12 & -128) === 0 ? b12 >> 6 : (b12 >> 6) ^ 252;\n                var i23 = i14 + 1;\n                var cArr2 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'];\n                cArr[i14] = cArr2[b15];\n                var i24 = i23 + 1;\n                cArr[i23] = cArr2[(b14 << 4) | b16];\n                var i25 = i24 + 1;\n                cArr[i24] = cArr2[(b13 << 2) | (i22&255)];\n                cArr[i25] = cArr2[b12 & 63];\n                i12++;\n                i14 = i25 + 1;\n                i13 = i17;\n\t\t\t\t}\n        if (i10 === 8) {\n            var b17 = bArr[i13];\n            var b18 = b17 & 3;\n            var i26 = b17 & -128;\n            var i27 = b17 >> 2;\n            if (i26 !== 0) {\n                i27 ^= 192;\n            }\n            var i28 = i14 + 1;\n            var cArr3 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'];\n            cArr[i14] = cArr3[i27];\n            var i29 = i28 + 1;\n            cArr[i28] = cArr3[b18 << 4];\n            cArr[i29] = '=';\n            cArr[i29 + 1] = '=';\n\t\t}else if (i10 === 16) {\n            var b19 = bArr[i13];\n            var b20 = bArr[i13 + 1];\n            var b21 = (b20 & 15)&255;\n            var b22 = (b19 & 3)&255;\n            var i30 = b19 & -128;\n            var i31 = b19 >> 2;\n            if (i30 !== 0) {\n                i31 ^= 192;\n            }\n            var b23 = i31&255;\n            var i32 = b20 & -128;\n            var i33 = b20 >> 4;\n            if (i32 !== 0) {\n                i33 ^= 240;\n            }\n            var i34 = i14 + 1;\n            var cArr4 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'];\n            cArr[i14] = cArr4[b23];\n            var i35 = i34 + 1;\n            cArr[i34] = cArr4[(i33&255) | (b22 << 4)];\n            cArr[i35] = cArr4[b21 << 2];\n            cArr[i35 + 1] = '=';\n        }\n        return cArr.join('');\n    }\n\n}\n\nvar bookId= java.getString(\"bookId\");\n\nvar myDate = new Date();\nvar timestamp = myDate.getFullYear() + \n\"0\" + (myDate.getMonth()+1) + \n\"0\" + myDate.getDate() + \n\"0\" + myDate.getDay() + \nmyDate.getMinutes() + \nmyDate.getSeconds();\n\nvar sign = encode(encrypt(\"appId=100398183&country=CN&lang=zh_CN&ver=10009248&appVer=1.0.9.248&timestamp=\"+ timestamp +\"{\\\"bookId\\\":\\\"\"+bookId+\"\\\"}8cfaaedef7a7e24a716732ff5428958f\"))\n\nurl = \"https://xgmf.zuanqianyi.com/glory/free/1110?appId=100398183&country=CN&lang=zh_CN&ver=10009248&appVer=1.0.9.248&timestamp=\" + timestamp + \",\";\npost={\n  \"method\": \"POST\",\n  \"headers\": {\n    \"pname\": \"com.dzmf.zmfxsdq\",\n    \"sign\": sign,\n    \"signType\": \"1\"\n  },\n  \"body\":'{\"bookId\":\"'+bookId+'\"}'\n}\nurl+JSON.stringify(post)\n</js>",
      "coverUrl": "coverWap",
      "intro": "introduction",
      "kind": "tag",
      "name": "bookName"
    },
    "ruleToc": {
      "chapterList": "<js>\nvar obj = JSON.parse(result); \nvar chapterNameList= obj.data.chapterNameList;\nvar chapterIdList= obj.data.chapterIdList;\nvar bookId = obj.data.bookId;\nvar length = parseInt(obj.data.chapterNameList.length);\nvar list = [];\nvar ret;\nfor(var i = 0; i < length; i++)\n{ \t list.push({\"chapterName\":String(chapterNameList[i]), \"chapterId\":String(chapterIdList[i])});\n}\njava.put(\"bookId\",bookId);\n\nlist\n</js>\n",
      "chapterName": "chapterName",
      "chapterUrl": "chapterId"
    },
    "searchUrl": "<js>\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n    Packages.java.lang,\n    Packages.javax.crypto,\n    Packages.javax.crypto.spec,\n    Packages.java.security,\n    Packages.java.security.interfaces,\n    Packages.java.security.spec,\n    Packages.java.io,\n    Packages.java.util\n);\nwith(javaImport){\n    function encrypt(str){\n        var bArr = String(str).getBytes(\"UTF-8\");\n        var mac = Mac.getInstance(\"HmacSHA256\");\n        mac .init(SecretKeySpec(String(\"wj3imab73kwceuf51lf01ORHe2cmo8X0YrZwF4p2uv3WEfmqxrT2oIBwRFRNErXW20UKal15ZTDdxPKU43puZFqcuXkvrQmadhp1wn6YPEDO4WRgInp8NNNQo4uNsWF1CELOzx7yPOS4pQbhTRWB4qRm0a4ENIegN0SH7K2STbsyaCuWh7m7s3rTpb5dK3CcDdsT35vo0xNbPZI2dJmKoIeKk9p3YhBLNWp9WoZqn9Qihpvn4nvgJzVSacgy2MTo\").getBytes(\"UTF-8\"),\"HmacSHA256\"));\n        return mac.doFinal(bArr)\n    }\n  function encode(bArr) {\n        if (bArr === null) {\n            return null;\n        }\n        var length = bArr.length * 8;\n        if (length === 0) {\n            return \"\";\n        }\n        var i10 = length % 24;\n        var i11 = parseInt(length / 24);\n        var cArr = new Array((i10 !== 0 ? i11 + 1 : i11) * 4);\n        var i12 = 0;\n        var i13 = 0;\n        var i14 = 0;\n        while (i12 < i11) {\n                var i15 = i13 + 1;\n                var b10 = bArr[i13];\n                var i16 = i15 + 1;\n                var b11 = bArr[i15];\n                var i17 = i16 + 1;\n                var b12 = bArr[i16];\n                var b13 = (b11 & 15)&255;\n                var b14 = (b10 & 3)&255;\n                var i18 = b10 & -128;\n                var i19 = b10 >> 2;\n                if (i18 !== 0) {\n                    i19 ^= 192;\n                }\n                var b15 = i19 & 255;\n                var i20 = b11 & -128;\n                var i21 = b11 >> 4;\n                if (i20 !== 0) {\n                    i21 ^= 240;\n                }\n                var b16 = (i21 & 255);\n                var i22 = (b12 & -128) === 0 ? b12 >> 6 : (b12 >> 6) ^ 252;\n                var i23 = i14 + 1;\n                var cArr2 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'];\n                cArr[i14] = cArr2[b15];\n                var i24 = i23 + 1;\n                cArr[i23] = cArr2[(b14 << 4) | b16];\n                var i25 = i24 + 1;\n                cArr[i24] = cArr2[(b13 << 2) | (i22&255)];\n                cArr[i25] = cArr2[b12 & 63];\n                i12++;\n                i14 = i25 + 1;\n                i13 = i17;\n\t\t\t\t}\n        if (i10 === 8) {\n            var b17 = bArr[i13];\n            var b18 = b17 & 3;\n            var i26 = b17 & -128;\n            var i27 = b17 >> 2;\n            if (i26 !== 0) {\n                i27 ^= 192;\n            }\n            var i28 = i14 + 1;\n            var cArr3 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'];\n            cArr[i14] = cArr3[i27];\n            var i29 = i28 + 1;\n            cArr[i28] = cArr3[b18 << 4];\n            cArr[i29] = '=';\n            cArr[i29 + 1] = '=';\n\t\t}else if (i10 === 16) {\n            var b19 = bArr[i13];\n            var b20 = bArr[i13 + 1];\n            var b21 = (b20 & 15)&255;\n            var b22 = (b19 & 3)&255;\n            var i30 = b19 & -128;\n            var i31 = b19 >> 2;\n            if (i30 !== 0) {\n                i31 ^= 192;\n            }\n            var b23 = i31&255;\n            var i32 = b20 & -128;\n            var i33 = b20 >> 4;\n            if (i32 !== 0) {\n                i33 ^= 240;\n            }\n            var i34 = i14 + 1;\n            var cArr4 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'];\n            cArr[i14] = cArr4[b23];\n            var i35 = i34 + 1;\n            cArr[i34] = cArr4[(i33&255) | (b22 << 4)];\n            cArr[i35] = cArr4[b21 << 2];\n            cArr[i35 + 1] = '=';\n        }\n        return cArr.join('');\n    }\n\n}\n\n\nvar myDate = new Date();\nvar timestamp = myDate.getFullYear() + \n\"0\" + (myDate.getMonth()+1) + \n\"0\" + myDate.getDate() + \n\"0\" + myDate.getDay() + \nmyDate.getMinutes() + \nmyDate.getSeconds();\n\nvar sign = encode(encrypt(\"appId=100398183&country=CN&lang=zh_CN&ver=10009248&appVer=1.0.9.248&timestamp=\"+ timestamp +\"{\\\"size\\\":15,\\\"searchType\\\":\\\"\\\",\\\"index\\\":\"+page+\",\\\"keyword\\\":\\\"\"+key+\"\\\"}8cfaaedef7a7e24a716732ff5428958f\"))\n\nurl = \"https://xgmf.zuanqianyi.com/glory/free/1141?appId=100398183&country=CN&lang=zh_CN&ver=10009248&appVer=1.0.9.248&timestamp=\" + timestamp + \",\";\npost={\n  \"method\": \"POST\",\n  \"headers\": {\n    \"pname\": \"com.dzmf.zmfxsdq\",\n    \"sign\": sign,\n    \"signType\": \"1\"\n  },\n  \"body\":'{\"size\":15,\"searchType\":\"\",\"index\":'+page+',\"keyword\":\"'+key+'\"}'\n}\nurl+JSON.stringify(post)\n</js>",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "必去小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.ibiquw.org/",
    "bookUrlPattern": "http://www.biquw.com/book/\\d+/",
    "customButton": false,
    "customOrder": 240,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787412312104,
    "respondTime": 1348,
    "ruleBookInfo": {
      "author": "class.options@tag.span.0@text",
      "coverUrl": "class.pic@img@src",
      "intro": ".bookinfo_intro@text",
      "kind": "[property=og:novel:update_time]@content&&\n[property=og:novel:category]@content&&\n[property=og:novel:status]@content",
      "lastChapter": "class.update@a@text",
      "name": "id.info@h1@text"
    },
    "ruleContent": {
      "content": "id.htmlContent@html"
    },
    "ruleExplore": {
      "author": "tag.dd.1@span@text",
      "bookList": "class.sitebox@dl",
      "bookUrl": "h3@a@href",
      "coverUrl": "img@src",
      "intro": "tag.dd.2@text",
      "kind": "class.uptime@text",
      "lastChapter": "tag.dd.3@a@text",
      "name": "h3@a@text"
    },
    "ruleSearch": {
      "author": "class.s3@text",
      "bookList": "class.toplist@li",
      "bookUrl": "class.s1@a@href",
      "coverUrl": "class.s1@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'http://www.biquw.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "class.s5@text&&\nclass.s6@text",
      "lastChapter": "class.s2@a@text",
      "name": "class.s1@a@text",
      "wordCount": "class.s4@text"
    },
    "ruleToc": {
      "chapterList": "class.book_list@li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.ibiquw.org/modules/article/search.php?action=login&searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "阅友小说（优+）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://sma.yueyouxs.com/#♤pb",
    "customButton": false,
    "customOrder": 241,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"都市人生\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=1100&page={{page}}&\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"玄幻奇幻\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=1101&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"仙侠武侠\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=1102&page={{page}}&\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"军事历史\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=1103&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"科幻末世\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=1104&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"游戏体育\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=1105&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"现代言情\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2100&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"古代言情\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2101&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"幻想言情\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2102&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"青春校园\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2103&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"穿越时空\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2104&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"宫闱争斗\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2105&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"豪门总裁\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2106&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"婚恋爱情\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2107&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"经商种田\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2108&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"推理悬疑\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=3100&page={{page}}\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"出版读物\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=3101&page={{page}}\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}}]",
    "header": "<js>\n(()=>{\n\tvar ua = \"Mozilla/5.0 (Linux; U; Android 10; zh-Hans-CN; PCT-AL10 Build/HUAWEIPCT-AL10) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 Quark/4.0.5.137 Mobile Safari/537.36\";\n\tvar heders = {\"User-Agent\": ua};\n\treturn JSON.stringify(heders);\n})()\n</js>",
    "lastUpdateTime": 1766358843615,
    "respondTime": 1379,
    "ruleBookInfo": {
      "author": "class.v-words flex.0@text##作者：",
      "coverUrl": "class.adMessage@img@src",
      "intro": "id.intro@text",
      "lastChapter": "class.chapter-entrance flex-item@text",
      "name": "class.face-info-title@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节",
      "tocUrl": "class.sumchapter@tag.span@tag.a@href",
      "wordCount": "class.v-words flex.2@text##字数："
    },
    "ruleContent": {
      "content": "class.con@html##（本章完）|（本章未完，请翻页）|.*书友群.*|\\s",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "$.authorName",
      "bookList": "$..list[*]",
      "bookUrl": "http://sma.yueyouxs.com/b/{$.wapBookId}.html",
      "coverUrl": "$.bookPic",
      "intro": "$.intro",
      "kind": "$.classifySecondName&&\n$.updateTime&&\n$.classifyName",
      "lastChapter": "$.latestChapterName",
      "name": "$.bookName",
      "wordCount": "$.words"
    },
    "ruleSearch": {
      "author": "$.authorName",
      "bookList": "$..list[*]",
      "bookUrl": "http://sma.yueyouxs.com/b/{$.wapBookId}.html",
      "coverUrl": "$.bookPic",
      "intro": "$.intro",
      "kind": "$.classifySecondName&&\n$.updateTime&&\n$.classifyName",
      "lastChapter": "$.latestChapterName",
      "name": "$.bookName##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节",
      "wordCount": "$.words"
    },
    "ruleToc": {
      "chapterList": "class.catalog_ls@li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://sma.yueyouxs.com/api/book/search?keyword={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "by二月无雪\n交流群：756138903",
    "bookSourceGroup": "🎨漫画,🔞",
    "bookSourceName": "H禁漫画🔞",
    "bookSourceType": 2,
    "bookSourceUrl": "https://xn--drdgrjra-xx6n10qjm3s.cartoonav-01.top",
    "bookUrlPattern": "https://xn--drdgrjra-xx6n10qjm3s.cartoonav-01.top/v/\\d+",
    "customButton": false,
    "customOrder": 242,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\nvar result = [];\nvar main = infoMap[\"主分类\"] || \"人妻\";\nvar base = \"https://xn--drdgrjra-xx6n10qjm3s.cartoonav-01.top\";\nvar cats = {\n  \"人妻\": 1,\n  \"校园\": 2,\n  \"乱伦\": 3,\n  \"异世界\": 4,\n  \"巨乳\": 5,\n  \"NTR\": 7,\n  \"制服\": 8,\n  \"动漫H\": 9\n};\nvar subs = {\n  \"人妻\": [[\"全部\",\"\"],[\"御手洗しお\",\"御手洗しお\"],[\"与你交往\",\"キミとだか\"],[\"45分钟男友\",\"45分で彼\"],[\"C96第5卷\",\"C96_5\"],[\"爱上陆\",\"愛上陸\"],[\"第4卷\",\"4_\"],[\"体验\",\"体験\"],[\"催眠\",\"催眠\"]],\n  \"校园\": [[\"全部\",\"\"],[\"配信女子\",\"配信女子ナ\"],[\"生出\",\"生出\"],[\"女子\",\"女子\"],[\"粉织绝食\",\"粉織_絶食\"],[\"食系\",\"食系\"],[\"1-3话\",\"1_3\"],[\"性欲\",\"性欲\"],[\"男子\",\"男子\"]],\n  \"乱伦\": [[\"全部\",\"\"],[\"我和叔叔\",\"私、叔父、\"],[\"母女的槛\",\"母娘の檻\"],[\"夏与阿姨\",\"夏とおばさ\"],[\"你的妈妈\",\"你的媽媽\"],[\"幻乐园\",\"幻樂園\"],[\"姐姐与父亲\",\"姉は親父に\"],[\"孕母第1\",\"孕母 第1\"],[\"爷爷与夜\",\"爺わら_夜\"]],\n  \"异世界\": [[\"全部\",\"\"],[\"Circle\",\"Circl\"],[\"自拍少女\",\"自撮り少女\"],[\"COMIC\",\"COMIC\"],[\"BAVEL\",\"BAVEL\"],[\"2017\",\"2017\"],[\"少女\",\"少女\"],[\"SYG\",\"SYG -\"],[\"Sell\",\"Sell\"]],\n  \"巨乳\": [[\"全部\",\"\"],[\"Passion\",\"Passi\"],[\"17\",\"17\"],[\"C93\",\"(C93)\"],[\"侍奉\",\"奉仕\"],[\"FateGO\",\"FateG\"],[\"Order\",\"Order\"],[\"性生活\",\"性生活\"],[\"气旋\",\"サイクロン\"]],\n  \"NTR\": [[\"全部\",\"\"],[\"不可视汉化\",\"【不可视汉\"],[\"催眠\",\"催眠\"],[\"汉化\",\"汉化\"],[\"不可\",\"不可\"],[\"偷窃湿身\",\"万引き濡れ\"],[\"NTR\",\"NTR\"],[\"双重\",\"デュアルス\"],[\"WEEKLY\",\"WEEKL\"]],\n  \"制服\": [[\"全部\",\"\"],[\"向日葵之夜\",\"向日葵ハ夜\"],[\"高潮不止\",\"イキ抜きホ\"],[\"2019\",\"2019\"],[\"仓田有稀子\",\"倉田有稀子\"],[\"仓田有\",\"倉田有\"],[\"稀子\",\"稀子\"],[\"冬日某天\",\"冬のある日\"],[\"令人虚脱\",\"令人虛脫的\"]],\n  \"动漫H\": [[\"全部\",\"\"],[\"微笑酱\",\"にこびぃ_\"],[\"不情愿\",\"不情\"],[\"汉化\",\"漢化\"],[\"组汉化\",\"組漢化組\"],[\"Digital\",\"_Digi\"],[\"小姐\",\"小姐\"],[\"强欲促进\",\"強欲促進株\"],[\"促进\",\"促進\"]]\n};\nvar mainChars = [\"人妻\",\"校园\",\"乱伦\",\"异世界\",\"巨乳\",\"NTR\",\"制服\",\"动漫H\"];\nresult.push({title:\"主分类\", type:\"select\", chars:mainChars, default:main, action:\"java.refreshExplore()\", style:{layout_flexGrow:1, layout_flexBasisPercent:1}});\nvar subList = subs[main] || [];\nvar cid = cats[main];\nfor (var i = 0; i < subList.length; i++) {\n    var name = subList[i][0];\n    var wd = subList[i][1];\n    var url;\n    if (wd == \"\") {\n        url = base + \"/show/\" + cid + \"/by/time/page/{{page}}/\";\n    } else {\n        url = base + \"/s/page/{{page}}/wd/\" + encodeURIComponent(wd) + \"/\";\n    }\n    result.push({title:name, url:url, style:{layout_flexGrow:1, layout_flexBasisPercent:0.25}});\n}\nJSON.stringify(result);\n</js>",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36\",\"Referer\":\"https://xn--drdgrjra-xx6n10qjm3s.cartoonav-01.top/\"}",
    "lastUpdateTime": 1785907714932,
    "respondTime": 3735,
    "ruleBookInfo": {
      "coverUrl": "div.book-pic img@src",
      "intro": "div.content-item.custom-tag a@text",
      "kind": "div.category a@text",
      "name": "div.type-name@text"
    },
    "ruleContent": {
      "content": "@js:\nvar m = src.match(/data-screenshots=\"([^\"]*)\"/);\nif (m) {\n    var imgs = m[1].split(/[#$]/).filter(function(s){return s.length>0});\n    imgs.map(function(u){return '<img src=\"' + u + '\">'}).join(\"\\n\");\n} else {\n    \"\";\n}"
    },
    "ruleExplore": {
      "bookList": "a.video-item-col",
      "bookUrl": "href",
      "coverUrl": "img@data-src",
      "name": ".video-desc-content@text",
      "wordCount": ".video-desc-comment span.0@text##浏览"
    },
    "ruleSearch": {
      "bookList": "a.video-item-col",
      "bookUrl": "href",
      "coverUrl": "img@data-src",
      "name": ".video-desc-content@text",
      "wordCount": ".video-desc-comment span.0@text##浏览"
    },
    "ruleToc": {
      "chapterList": "<js>\n[\n  {\n    \"name\": \"正文\",\n    \"url\": baseUrl\n  }\n]\n</js>",
      "chapterName": "name",
      "chapterUrl": "url"
    },
    "searchUrl": "https://xn--drdgrjra-xx6n10qjm3s.cartoonav-01.top/s/page/{{page}}/wd/{{key}}/",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "神马小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://sma.yueyouxs.com/",
    "customButton": false,
    "customOrder": 243,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"都市人生\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=1100&page={{page}}&\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"玄幻奇幻\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=1101&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"仙侠武侠\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=1102&page={{page}}&\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"军事历史\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=1103&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"科幻末世\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=1104&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"游戏体育\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=1105&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"现代言情\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2100&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"古代言情\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2101&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"幻想言情\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2102&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"穿越时空\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2104&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"宫闱争斗\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2105&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"豪门总裁\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2106&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"婚恋爱情\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2107&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"经商种田\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=2108&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"悬疑灵异\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=3100&page={{page}}\",\"style\":{\"layout_flexGrow\":0.25,\"layout_flexBasisPercent\":-1}},\n{\"title\":\"出版读物\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=3101&page={{page}}\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"文学小说\",\"url\":\"http://sma.yueyouxs.com/api/book/classify?site_id=&classify_id=3102&page={{page}}\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}}]",
    "header": "<js>\n(()=>{\n\tvar ua = \"Mozilla/5.0 (Linux; U; Android 10; zh-Hans-CN; PCT-AL10 Build/HUAWEIPCT-AL10) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 Quark/4.0.5.137 Mobile Safari/537.36\";\n\tvar heders = {\"User-Agent\": ua};\n\treturn JSON.stringify(heders);\n})()\n</js>",
    "lastUpdateTime": 1787425809791,
    "respondTime": 1390,
    "ruleBookInfo": {
      "author": "class.v-words flex.0@text##作者：",
      "coverUrl": "class.adMessage@img@src",
      "intro": "id.intro@text",
      "lastChapter": "class.chapter-entrance flex-item@text",
      "name": "class.face-info-title@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节",
      "tocUrl": "class.sumchapter@tag.span@tag.a@href",
      "wordCount": "class.v-words flex.2@text##字数："
    },
    "ruleContent": {
      "content": "class.con@html##（本章完）|（本章未完，请翻页）|.*书友群.*|\\s",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "$.authorName",
      "bookList": "$..list[*]",
      "bookUrl": "http://sma.yueyouxs.com/b/{$.wapBookId}.html",
      "coverUrl": "$.bookPic",
      "intro": "$.intro",
      "kind": "$.classifySecondName&&$.updateTime&&$.classifyName",
      "lastChapter": "$.latestChapterName",
      "name": "$.bookName",
      "wordCount": "$.words"
    },
    "ruleSearch": {
      "author": "$.authorName",
      "bookList": "$..list[*]",
      "bookUrl": "http://sma.yueyouxs.com/b/{$.wapBookId}.html",
      "coverUrl": "$.bookPic",
      "intro": "$.intro",
      "kind": "$.classifySecondName&&$.updateTime&&$.classifyName",
      "lastChapter": "$.latestChapterName",
      "name": "$.bookName##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节",
      "wordCount": "$.words"
    },
    "ruleToc": {
      "chapterList": "class.catalog_ls@li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://sma.yueyouxs.com/api/book/search?keyword={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "APP",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "中文书城（优+）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://cxb-pro.cread.com/",
    "customButton": false,
    "customOrder": 244,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"——————出版频道——————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"文学小说\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=3100&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"经典名著\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=3200&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"经管励志\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=3300&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"生活休闲\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=3400&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"婚姻家庭\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=3500&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"科普教育\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=3600&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"纪实传记\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=3700&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"亲子育儿\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=3800&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"工具百科\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=3900&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"——————男生频道——————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"都市小说\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=1200&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"东方玄幻\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=1100&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"武侠仙侠\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=1400&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"悬疑惊悚\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=1800&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"架空历史\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=1500&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"网游竞技\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=1700&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"科幻未来\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=1600&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"西方玄幻\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=1300&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"——————女生频道——————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"古代言情\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=2100&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"幻想言情\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=2200&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"都市言情\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=2300&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"总裁豪门\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=2400&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"青春校园\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=2500&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"唯美同人\",\"url\":\"https://cxb-pro.cread.com/cx/new/catelistnew?uid=110496550&cnid=10005&version=7.6.0&flid=2600&thirdCateId=0&sortType=1&bookStatus=0&pageSize=20&curpage={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "header": "{\r\n\"uid\":\"110496550\",\r\n\"cnid\":\"10005\",\r\n\"version\":\"7.6.0\",\r\n\"packname\":\"com.mianfeizs.book\",\r\n\"oscode\":\"30\",\r\n\"vcode\":\"134\",\r\n\"channelId\":\"10005\",\r\n\"platform\":\"android\",\r\n\"appname\":\"mfzs\"\n}",
    "lastUpdateTime": 1772086079184,
    "respondTime": 3481,
    "ruleBookInfo": {
      "author": "$..bookVo.authorName",
      "intro": "$..bookVo.introduction",
      "lastChapter": "$..bookVo.lastUpdateChapterName",
      "name": "$..bookVo.bookName@put:{bookid:$..bookVo.bookId}",
      "tocUrl": "https://cxb-pro.cread.com/cx/itf/getvolume?bookId={{$..bookVo.bookId}}"
    },
    "ruleContent": {
      "content": "$..content"
    },
    "ruleExplore": {
      "author": "$.authorName",
      "bookList": "$.dataList",
      "bookUrl": "https://readbook-service-freebook.cread.com/cx/bookDetailYS?bookid={{$.bookid}}",
      "coverUrl": "$.cover",
      "intro": "$.intro",
      "kind": "$.categoryName",
      "name": "$.newBookName",
      "wordCount": "$.wordCount"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.list",
      "bookUrl": "https://readbook-service-freebook.cread.com/cx/bookDetailYS?bookid={{$.id}}",
      "coverUrl": "$.cover",
      "intro": "$.summary",
      "kind": "$.categoryName",
      "name": "$.name",
      "wordCount": "$.words"
    },
    "ruleToc": {
      "chapterList": "$..bookChapters[*]",
      "chapterName": "$.name",
      "chapterUrl": "https://cxb-pro.cread.com:443/cx/itf/chapterRead?bookId=@get:{bookid}&chapterId={{$.id}}&full=0",
      "updateTime": "$.updateDate@js:java.timeFormat(result)"
    },
    "searchUrl": "https://cxb-pro.cread.com/cx/searchbooks,{\n\"charset\": \"\",\n\"method\": \"POST\",\n\"body\": \"keyword={{key}}&pageNo={{page}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "💰 起点中文",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.qidian.com##限免部分书",
    "customButton": false,
    "customOrder": 245,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"✿男频✿\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"月票榜\",\"url\":\"/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜\",\"url\":\"/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"/majax/rank/readindexlist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"书友榜\",\"url\":\"/majax/rank/newfanslist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐榜\",\"url\":\"/majax/rank/reclist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"更新榜\",\"url\":\"/majax/rank/updatelist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"签约榜\",\"url\":\"/majax/rank/signlist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书榜\",\"url\":\"/majax/rank/newbooklist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新人榜\",\"url\":\"/majax/rank/newauthorlist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"三江推荐\",\"url\":\"/webcommon/recommend/sanjiangList?pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书强推\",\"url\":\"/majax/recommend/strongreclist?gender=male&pageNum={{page}}&catId=-1&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气免费\",\"url\":\"/majax/recommend/hotFreelist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书免费\",\"url\":\"/majax/recommend/freeNewlist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书抢先\",\"url\":\"/majax/recommend/newBooklist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销完本\",\"url\":\"/majax/recommend/bestSelllist?gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔹玄幻🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"月票榜\",\"url\":\"/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&catId=21&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜\",\"url\":\"/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&catId=21&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"/majax/rank/readindexlist?gender=male&pageNum={{page}}&catId=21&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"/majax/category/list?catId=21&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时间\",\"url\":\"/majax/category/list?catId=21&gender=male&orderBy=4&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数\",\"url\":\"/majax/category/list?catId=21&gender=male&orderBy=3&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"/majax/category/list?catId=21&gender=male&orderBy=11&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐\",\"url\":\"/majax/category/list?catId=21&gender=male&orderBy=9&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"点击\",\"url\":\"/majax/category/list?catId=21&gender=male&orderBy=1&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30万字↓\",\"url\":\"/majax/category/list?catId=21&size=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30-50万\",\"url\":\"/majax/category/list?catId=21&size=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"50-100万\",\"url\":\"/majax/category/list?catId=21&size=3&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"1-2百万\",\"url\":\"/majax/category/list?catId=21&size=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"200万↑\",\"url\":\"/majax/category/list?catId=21&size=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"———\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔸连载🔸\",\"url\":\"/majax/category/list?catId=21&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"🔸完本🔸\",\"url\":\"/majax/category/list?catId=21&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"东方玄幻\",\"url\":\"/majax/category/list?catId=21&subCatId=8&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"异世大陆\",\"url\":\"/majax/category/list?catId=21&subCatId=73&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"王朝争霸\",\"url\":\"/majax/category/list?catId=21&subCatId=58&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"高武世界\",\"url\":\"/majax/category/list?catId=21&subCatId=78&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔹奇幻🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"月票榜\",\"url\":\"/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&catId=1&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜\",\"url\":\"/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&catId=1&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"/majax/rank/readindexlist?gender=male&pageNum={{page}}&catId=1&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"/majax/category/list?catId=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时间\",\"url\":\"/majax/category/list?catId=1&gender=male&orderBy=4&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数\",\"url\":\"/majax/category/list?catId=1&gender=male&orderBy=3&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"/majax/category/list?catId=1&gender=male&orderBy=11&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐\",\"url\":\"/majax/category/list?catId=1&gender=male&orderBy=9&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"点击\",\"url\":\"/majax/category/list?catId=1&gender=male&orderBy=1&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30万↓\",\"url\":\"/majax/category/list?catId=1&size=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30-50万\",\"url\":\"/majax/category/list?catId=1&size=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"50-100万\",\"url\":\"/majax/category/list?catId=1&size=3&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"1-2百万\",\"url\":\"/majax/category/list?catId=1&size=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"200万↑\",\"url\":\"/majax/category/list?catId=1&size=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"———\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔸连载🔸\",\"url\":\"/majax/category/list?catId=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"🔸完本🔸\",\"url\":\"/majax/category/list?catId=1&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"现代魔法\",\"url\":\"/majax/category/list?catId=1&subCatId=38&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"剑与魔法\",\"url\":\"/majax/category/list?catId=1&subCatId=62&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"史诗奇幻\",\"url\":\"/majax/category/list?catId=1&subCatId=201&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"神秘幻想\",\"url\":\"/majax/category/list?catId=1&subCatId=202&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"历史神话\",\"url\":\"/majax/category/list?catId=1&subCatId=20092&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"另类幻想\",\"url\":\"/majax/category/list?catId=1&subCatId=20093&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔹武侠🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"月票榜\",\"url\":\"/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&catId=2&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜\",\"url\":\"/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&catId=2&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"/majax/rank/readindexlist?gender=male&pageNum={{page}}&catId=2&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"/majax/category/list?catId=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时间\",\"url\":\"/majax/category/list?catId=2&gender=male&orderBy=4&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数\",\"url\":\"/majax/category/list?catId=2&gender=male&orderBy=3&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"/majax/category/list?catId=2&gender=male&orderBy=11&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐\",\"url\":\"/majax/category/list?catId=2&gender=male&orderBy=9&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"点击\",\"url\":\"/majax/category/list?catId=2&gender=male&orderBy=1&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30万↓\",\"url\":\"/majax/category/list?catId=2&size=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30-50万\",\"url\":\"/majax/category/list?catId=2&size=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"50-100万\",\"url\":\"/majax/category/list?catId=2&size=3&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"1-2百万\",\"url\":\"/majax/category/list?catId=2&size=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"200万↑\",\"url\":\"/majax/category/list?catId=2&size=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"———\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔸连载🔸\",\"url\":\"/majax/category/list?catId=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"🔸完本🔸\",\"url\":\"/majax/category/list?catId=2&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"传统武侠\",\"url\":\"/majax/category/list?catId=2&subCatId=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"武侠幻想\",\"url\":\"/majax/category/list?catId=2&subCatId=30&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"国士无双\",\"url\":\"/majax/category/list?catId=2&subCatId=206&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"古武未来\",\"url\":\"/majax/category/list?catId=2&subCatId=20099&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"武侠同人\",\"url\":\"/majax/category/list?catId=2&subCatId=20100&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔹仙侠🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"月票榜\",\"url\":\"/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&catId=22&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜\",\"url\":\"/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&catId=22&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"/majax/rank/readindexlist?gender=male&pageNum={{page}}&catId=22&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"/majax/category/list?catId=22&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时间\",\"url\":\"/majax/category/list?catId=22&gender=male&orderBy=4&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数\",\"url\":\"/majax/category/list?catId=22&gender=male&orderBy=3&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"/majax/category/list?catId=22&gender=male&orderBy=11&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐\",\"url\":\"/majax/category/list?catId=22&gender=male&orderBy=9&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"点击\",\"url\":\"/majax/category/list?catId=22&gender=male&orderBy=1&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30万↓\",\"url\":\"/majax/category/list?catId=22&size=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30-50万\",\"url\":\"/majax/category/list?catId=22&size=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"50-100万\",\"url\":\"/majax/category/list?catId=22&size=3&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"1-2百万\",\"url\":\"/majax/category/list?catId=22&size=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"200万↑\",\"url\":\"/majax/category/list?catId=22&size=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"———\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔸连载🔸\",\"url\":\"/majax/category/list?catId=22&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"🔸完本🔸\",\"url\":\"/majax/category/list?catId=22&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"修真文明\",\"url\":\"/majax/category/list?catId=22&subCatId=18&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"幻想修仙\",\"url\":\"/majax/category/list?catId=22&subCatId=44&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"现代修真\",\"url\":\"/majax/category/list?catId=22&subCatId=64&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"神话修真\",\"url\":\"/majax/category/list?catId=22&subCatId=207&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"古典仙侠\",\"url\":\"/majax/category/list?catId=22&subCatId=20101&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔹都市🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"月票榜\",\"url\":\"/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&catId=4&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜\",\"url\":\"/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&catId=4&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"/majax/rank/readindexlist?gender=male&pageNum={{page}}&catId=4&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"/majax/category/list?catId=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时间\",\"url\":\"/majax/category/list?catId=4&gender=male&orderBy=4&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数\",\"url\":\"/majax/category/list?catId=4&gender=male&orderBy=3&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"/majax/category/list?catId=4&gender=male&orderBy=11&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐\",\"url\":\"/majax/category/list?catId=4&gender=male&orderBy=9&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"点击\",\"url\":\"/majax/category/list?catId=4&gender=male&orderBy=1&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30万↓\",\"url\":\"/majax/category/list?catId=4&size=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30-50万\",\"url\":\"/majax/category/list?catId=4&size=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"50-100万\",\"url\":\"/majax/category/list?catId=4&size=3&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"1-2百万\",\"url\":\"/majax/category/list?catId=4&size=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"200万↑\",\"url\":\"/majax/category/list?catId=4&size=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"———\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔸连载🔸\",\"url\":\"/majax/category/list?catId=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"🔸完本🔸\",\"url\":\"/majax/category/list?catId=4&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"爱情婚姻\",\"url\":\"/majax/category/list?catId=4&subCatId=65535&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"都市生活\",\"url\":\"/majax/category/list?catId=4&subCatId=12&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"都市异能\",\"url\":\"/majax/category/list?catId=4&subCatId=16&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"异术超能\",\"url\":\"/majax/category/list?catId=4&subCatId=74&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"青春校园\",\"url\":\"/majax/category/list?catId=4&subCatId=130&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"娱乐明星\",\"url\":\"/majax/category/list?catId=4&subCatId=151&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"商战职场\",\"url\":\"/majax/category/list?catId=4&subCatId=153&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔹现实🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"月票榜\",\"url\":\"/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&catId=15&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜\",\"url\":\"/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&catId=15&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"/majax/rank/readindexlist?gender=male&pageNum={{page}}&catId=15&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"/majax/category/list?catId=15&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时间\",\"url\":\"/majax/category/list?catId=15&gender=male&orderBy=4&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数\",\"url\":\"/majax/category/list?catId=15&gender=male&orderBy=3&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"/majax/category/list?catId=15&gender=male&orderBy=11&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐\",\"url\":\"/majax/category/list?catId=15&gender=male&orderBy=9&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"点击\",\"url\":\"/majax/category/list?catId=15&gender=male&orderBy=1&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30万↓\",\"url\":\"/majax/category/list?catId=15&size=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30-50万\",\"url\":\"/majax/category/list?catId=15&size=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"50-100万\",\"url\":\"/majax/category/list?catId=15&size=3&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"1-2百万\",\"url\":\"/majax/category/list?catId=15&size=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"200万↑\",\"url\":\"/majax/category/list?catId=15&size=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"———\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔸连载🔸\",\"url\":\"/majax/category/list?catId=15&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"🔸完本🔸\",\"url\":\"/majax/category/list?catId=15&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"时代叙事\",\"url\":\"/majax/category/list?catId=15&subCatId=20106&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"家庭伦理\",\"url\":\"/majax/category/list?catId=15&subCatId=6&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女性题材\",\"url\":\"/majax/category/list?catId=15&subCatId=20104&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"青年故事\",\"url\":\"/majax/category/list?catId=15&subCatId=20108&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"社会悬疑\",\"url\":\"/majax/category/list?catId=15&subCatId=20105&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人间百态\",\"url\":\"/majax/category/list?catId=15&subCatId=209&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"成功励志\",\"url\":\"/majax/category/list?catId=15&subCatId=20107&gender=male&pageNum=1&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔹军事🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"月票榜\",\"url\":\"/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&catId=6&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜\",\"url\":\"/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&catId=6&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"/majax/rank/readindexlist?gender=male&pageNum={{page}}&catId=6&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"/majax/category/list?catId=6&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时间\",\"url\":\"/majax/category/list?catId=6&gender=male&orderBy=4&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数\",\"url\":\"/majax/category/list?catId=6&gender=male&orderBy=3&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"/majax/category/list?catId=6&gender=male&orderBy=11&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐\",\"url\":\"/majax/category/list?catId=6&gender=male&orderBy=9&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"点击\",\"url\":\"/majax/category/list?catId=6&gender=male&orderBy=1&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30万↓\",\"url\":\"/majax/category/list?catId=6&size=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30-50万\",\"url\":\"/majax/category/list?catId=6&size=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"50-100万\",\"url\":\"/majax/category/list?catId=6&size=3&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"1-2百万\",\"url\":\"/majax/category/list?catId=6&size=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"200万↑\",\"url\":\"/majax/category/list?catId=6&size=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"———\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔸连载🔸\",\"url\":\"/majax/category/list?catId=6&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"🔸完本🔸\",\"url\":\"/majax/category/list?catId=6&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"军旅生涯\",\"url\":\"/majax/category/list?catId=6&subCatId=54&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"军事战争\",\"url\":\"/majax/category/list?catId=6&subCatId=65&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"战争幻想\",\"url\":\"/majax/category/list?catId=6&subCatId=80&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"抗战烽火\",\"url\":\"/majax/category/list?catId=6&subCatId=230&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"谍战特工\",\"url\":\"/majax/category/list?catId=6&subCatId=231&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔹历史🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"月票榜\",\"url\":\"/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&catId=5&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜\",\"url\":\"/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&catId=5&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"/majax/rank/readindexlist?gender=male&pageNum={{page}}&catId=5&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"/majax/category/list?catId=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时间\",\"url\":\"/majax/category/list?catId=5&gender=male&orderBy=4&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数\",\"url\":\"/majax/category/list?catId=5&gender=male&orderBy=3&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"/majax/category/list?catId=5&gender=male&orderBy=11&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐\",\"url\":\"/majax/category/list?catId=5&gender=male&orderBy=9&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"点击\",\"url\":\"/majax/category/list?catId=5&gender=male&orderBy=1&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30万↓\",\"url\":\"/majax/category/list?catId=5&size=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30-50万\",\"url\":\"/majax/category/list?catId=5&size=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"50-100万\",\"url\":\"/majax/category/list?catId=5&size=3&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"1-2百万\",\"url\":\"/majax/category/list?catId=5&size=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"200万↑\",\"url\":\"/majax/category/list?catId=5&size=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"———\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔸连载🔸\",\"url\":\"/majax/category/list?catId=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"🔸完本🔸\",\"url\":\"/majax/category/list?catId=5&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"架空励史\",\"url\":\"/majax/category/list?catId=5&subCatId=22&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"秦汉三国\",\"url\":\"/majax/category/list?catId=5&subCatId=48&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"↑古先秦\",\"url\":\"/majax/category/list?catId=5&subCatId=220&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"历史传记\",\"url\":\"/majax/category/list?catId=5&subCatId=32&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"两晋隋唐\",\"url\":\"/majax/category/list?catId=5&subCatId=222&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"五代十国\",\"url\":\"/majax/category/list?catId=5&subCatId=223&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"两宋元明\",\"url\":\"/majax/category/list?catId=5&subCatId=224&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"清史民国\",\"url\":\"/majax/category/list?catId=5&subCatId=225&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"外国历史\",\"url\":\"/majax/category/list?catId=5&subCatId=226&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"民间传说\",\"url\":\"/majax/category/list?catId=5&subCatId=20094&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔹游戏🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"月票榜\",\"url\":\"/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&catId=7&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜\",\"url\":\"/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&catId=7&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"/majax/rank/readindexlist?gender=male&pageNum={{page}}&catId=7&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"/majax/category/list?catId=7&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时间\",\"url\":\"/majax/category/list?catId=7&gender=male&orderBy=4&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数\",\"url\":\"/majax/category/list?catId=7&gender=male&orderBy=3&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"/majax/category/list?catId=7&gender=male&orderBy=11&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐\",\"url\":\"/majax/category/list?catId=7&gender=male&orderBy=9&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"点击\",\"url\":\"/majax/category/list?catId=7&gender=male&orderBy=1&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30万↓\",\"url\":\"/majax/category/list?catId=7&size=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30-50万\",\"url\":\"/majax/category/list?catId=7&size=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"50-100万\",\"url\":\"/majax/category/list?catId=7&size=3&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"1-2百万\",\"url\":\"/majax/category/list?catId=7&size=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"200万↑\",\"url\":\"/majax/category/list?catId=7&size=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"———\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔸连载🔸\",\"url\":\"/majax/category/list?catId=7&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"🔸完本🔸\",\"url\":\"/majax/category/list?catId=7&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"电子竞技\",\"url\":\"/majax/category/list?catId=7&subCatId=7&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"虚拟网游\",\"url\":\"/majax/category/list?catId=7&subCatId=70&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"游戏异界\",\"url\":\"/majax/category/list?catId=7&subCatId=240&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"游戏系统\",\"url\":\"/majax/category/list?catId=7&subCatId=20102&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"游戏主播\",\"url\":\"/majax/category/list?catId=7&subCatId=20103&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔹体育🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"月票榜\",\"url\":\"/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&catId=8&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜\",\"url\":\"/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&catId=8&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"/majax/rank/readindexlist?gender=male&pageNum={{page}}&catId=8&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"/majax/category/list?catId=8&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时间\",\"url\":\"/majax/category/list?catId=8&gender=male&orderBy=4&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数\",\"url\":\"/majax/category/list?catId=8&gender=male&orderBy=3&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"/majax/category/list?catId=8&gender=male&orderBy=11&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐\",\"url\":\"/majax/category/list?catId=8&gender=male&orderBy=9&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"点击\",\"url\":\"/majax/category/list?catId=8&gender=male&orderBy=1&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30万↓\",\"url\":\"/majax/category/list?catId=8&size=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30-50万\",\"url\":\"/majax/category/list?catId=8&size=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"50-100万\",\"url\":\"/majax/category/list?catId=8&size=3&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"1-2百万\",\"url\":\"/majax/category/list?catId=8&size=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"200万↑\",\"url\":\"/majax/category/list?catId=8&size=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"———\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔸连载🔸\",\"url\":\"/majax/category/list?catId=8&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"🔸完本🔸\",\"url\":\"/majax/category/list?catId=8&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"篮球运动\",\"url\":\"/majax/category/list?catId=8&subCatId=28&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"体育赛事\",\"url\":\"/majax/category/list?catId=8&subCatId=55&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"足球运动\",\"url\":\"/majax/category/list?catId=8&subCatId=82&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔹科幻🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"月票榜\",\"url\":\"/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&catId=9&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜\",\"url\":\"/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&catId=9&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"/majax/rank/readindexlist?gender=male&pageNum={{page}}&catId=9&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"/majax/category/list?catId=9&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时间\",\"url\":\"/majax/category/list?catId=9&gender=male&orderBy=4&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数\",\"url\":\"/majax/category/list?catId=9&gender=male&orderBy=3&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"/majax/category/list?catId=9&gender=male&orderBy=11&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐\",\"url\":\"/majax/category/list?catId=9&gender=male&orderBy=9&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"点击\",\"url\":\"/majax/category/list?catId=9&gender=male&orderBy=1&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30万↓\",\"url\":\"/majax/category/list?catId=9&size=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30-50万\",\"url\":\"/majax/category/list?catId=9&size=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"50-100万\",\"url\":\"/majax/category/list?catId=9&size=3&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"1-2百万\",\"url\":\"/majax/category/list?catId=9&size=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"200万↑\",\"url\":\"/majax/category/list?catId=9&size=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"———\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔸连载🔸\",\"url\":\"/majax/category/list?catId=9&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"🔸完本🔸\",\"url\":\"/majax/category/list?catId=9&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"古武机甲\",\"url\":\"/majax/category/list?catId=9&subCatId=21&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"未来世界\",\"url\":\"/majax/category/list?catId=9&subCatId=25&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"星际文明\",\"url\":\"/majax/category/list?catId=9&subCatId=68&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"超级科技\",\"url\":\"/majax/category/list?catId=9&subCatId=250&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时空穿梭\",\"url\":\"/majax/category/list?catId=9&subCatId=251&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"进化变异\",\"url\":\"/majax/category/list?catId=9&subCatId=252&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"末世危机\",\"url\":\"/majax/category/list?catId=9&subCatId=253&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔹悬疑🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"月票榜\",\"url\":\"/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&catId=10&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜\",\"url\":\"/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&catId=10&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"/majax/rank/readindexlist?gender=male&pageNum={{page}}&catId=10&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"/majax/category/list?catId=10&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时间\",\"url\":\"/majax/category/list?catId=10&gender=male&orderBy=4&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数\",\"url\":\"/majax/category/list?catId=10&gender=male&orderBy=3&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"/majax/category/list?catId=10&gender=male&orderBy=11&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐\",\"url\":\"/majax/category/list?catId=10&gender=male&orderBy=9&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"点击\",\"url\":\"/majax/category/list?catId=10&gender=male&orderBy=1&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30万↓\",\"url\":\"/majax/category/list?catId=10&size=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30-50万\",\"url\":\"/majax/category/list?catId=10&size=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"50-100万\",\"url\":\"/majax/category/list?catId=10&size=3&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"1-2百万\",\"url\":\"/majax/category/list?catId=10&size=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"200万↑\",\"url\":\"/majax/category/list?catId=10&size=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"———\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔸连载🔸\",\"url\":\"/majax/category/list?catId=10&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"🔸完本🔸\",\"url\":\"/majax/category/list?catId=10&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"诡秘悬疑\",\"url\":\"/majax/category/list?catId=10&subCatId=26&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"奇妙世界\",\"url\":\"/majax/category/list?catId=10&subCatId=35&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"侦探推理\",\"url\":\"/majax/category/list?catId=10&subCatId=57&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"探险求生\",\"url\":\"/majax/category/list?catId=10&subCatId=260&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"古今传奇\",\"url\":\"/majax/category/list?catId=10&subCatId=20095&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔹诸天无限🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"月票榜\",\"url\":\"/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&catId=20109&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜\",\"url\":\"/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&catId=20109&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"/majax/rank/readindexlist?gender=male&pageNum={{page}}&catId=20109&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"/majax/category/list?catId=20109&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时间\",\"url\":\"/majax/category/list?catId=20109&gender=male&orderBy=4&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数\",\"url\":\"/majax/category/list?catId=20109&gender=male&orderBy=3&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"/majax/category/list?catId=20109&gender=male&orderBy=11&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐\",\"url\":\"/majax/category/list?catId=20109&gender=male&orderBy=9&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"点击\",\"url\":\"/majax/category/list?catId=20109&gender=male&orderBy=1&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30万↓\",\"url\":\"/majax/category/list?catId=20109&size=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30-50万\",\"url\":\"/majax/category/list?catId=20109&size=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"50-100万\",\"url\":\"/majax/category/list?catId=20109&size=3&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"1-2百万\",\"url\":\"/majax/category/list?catId=20109&size=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"200万↑\",\"url\":\"/majax/category/list?catId=20109&size=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"———\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔸连载🔸\",\"url\":\"/majax/category/list?catId=20109&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"🔸完本🔸\",\"url\":\"/majax/category/list?catId=20109&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"无限\",\"url\":\"/majax/category/list?catId=20109&subCatId=20110&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"诸天\",\"url\":\"/majax/category/list?catId=20109&subCatId=20111&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"综漫\",\"url\":\"/majax/category/list?catId=20109&subCatId=20112&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔹轻小说🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"月票榜\",\"url\":\"/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&catId=12&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜\",\"url\":\"/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&catId=12&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"阅读榜\",\"url\":\"/majax/rank/readindexlist?gender=male&pageNum={{page}}&catId=12&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人气\",\"url\":\"/majax/category/list?catId=12&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时间\",\"url\":\"/majax/category/list?catId=12&gender=male&orderBy=4&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数\",\"url\":\"/majax/category/list?catId=12&gender=male&orderBy=3&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"/majax/category/list?catId=12&gender=male&orderBy=11&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐\",\"url\":\"/majax/category/list?catId=12&gender=male&orderBy=9&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"点击\",\"url\":\"/majax/category/list?catId=12&gender=male&orderBy=1&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30万↓\",\"url\":\"/majax/category/list?catId=12&size=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30-50万\",\"url\":\"/majax/category/list?catId=12&size=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"50-100万\",\"url\":\"/majax/category/list?catId=12&size=3&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"1-2百万\",\"url\":\"/majax/category/list?catId=12&size=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"200万↑\",\"url\":\"/majax/category/list?catId=12&size=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"———\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔸连载🔸\",\"url\":\"/majax/category/list?catId=12&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"🔸完本🔸\",\"url\":\"/majax/category/list?catId=12&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"原生幻想\",\"url\":\"/majax/category/list?catId=12&subCatId=60&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"现代幻想\",\"url\":\"/majax/category/list?catId=12&subCatId=10&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"衍生同人\",\"url\":\"/majax/category/list?catId=12&subCatId=281&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"搞笑吐槽\",\"url\":\"/majax/category/list?catId=12&subCatId=282&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"恋爱日常\",\"url\":\"/majax/category/list?catId=12&subCatId=66&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔹短篇🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"人气\",\"url\":\"/majax/category/list?catId=20076&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"时间\",\"url\":\"/majax/category/list?catId=20076&gender=male&orderBy=4&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数\",\"url\":\"/majax/category/list?catId=20076&gender=male&orderBy=3&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏\",\"url\":\"/majax/category/list?catId=20076&gender=male&orderBy=11&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐\",\"url\":\"/majax/category/list?catId=20076&gender=male&orderBy=9&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"点击\",\"url\":\"/majax/category/list?catId=20076&gender=male&orderBy=1&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30万↓\",\"url\":\"/majax/category/list?catId=20076&size=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"30-50万\",\"url\":\"/majax/category/list?catId=20076&size=2&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"50-100万\",\"url\":\"/majax/category/list?catId=20076&size=3&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"1-2百万\",\"url\":\"/majax/category/list?catId=20076&size=4&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"200万↑\",\"url\":\"/majax/category/list?catId=20076&size=5&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"———\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"🔸连载🔸\",\"url\":\"/majax/category/list?catId=20076&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"🔸完本🔸\",\"url\":\"/majax/category/list?catId=20076&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.45}},\n{\"title\":\"诗歌散文\",\"url\":\"/majax/category/list?catId=20076&subCatId=20097&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人物传记\",\"url\":\"/majax/category/list?catId=20076&subCatId=20098&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"影视剧本\",\"url\":\"/majax/category/list?catId=20076&subCatId=20075&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"评论文集\",\"url\":\"/majax/category/list?catId=20076&subCatId=20077&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"生活随笔\",\"url\":\"/majax/category/list?catId=20076&subCatId=20078&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"美文游记\",\"url\":\"/majax/category/list?catId=20076&subCatId=20079&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"短篇小说\",\"url\":\"/majax/category/list?catId=20076&subCatId=20096&gender=male&pageNum={{page}}&_csrfToken={{cookie.getKey(\\\"https://qidian.com\\\",\\\"_csrfToken\\\")}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}\n]",
    "lastUpdateTime": 1786130330854,
    "respondTime": 3135,
    "ruleBookInfo": {
      "author": "class.detail__header@class.detail__header-detail__author-link@ownText",
      "coverUrl": "https://bookcover.yuewen.com/qdbimg/349573/{{baseUrl.match(/(\\d+)/)[1]}}",
      "intro": "🏷 简介：{{@@@css:p.detail__summary__content@text}}",
      "kind": "id.monthTicket@text&&id.recTicket@text##张",
      "lastChapter": "class.detail__chapters-latest@tag.a@text##最新章节",
      "name": "class.detail__header@tag.h2@ownText",
      "wordCount": ".count@em.0@text##$##字"
    },
    "ruleContent": {
      "content": "<js>\nvar body=\"\";\nif(chapter.isVip()){\nbody=JSON.parse(result).data\n}else{\nvar cid=baseUrl.match(/\\d+\\/(\\d+)/)[1]\nbody=org.jsoup.Jsoup.parse(String(result)).select('main#c-'+cid).html();\n}\nbody\n</js>",
      "imageStyle": "full"
    },
    "ruleExplore": {
      "author": "$.bAuth",
      "bookList": "$.data.records||$.data.list",
      "bookUrl": "https://m.qidian.com/book/{{$.bid}}/",
      "coverUrl": "https://bookcover.yuewen.com/qdbimg/349573/{{$.bid}}",
      "intro": "$.desc||$.timeStr##(.*前)##$1更新",
      "kind": "$.rankCnt&&$.cat&&$.subCat&&$.state",
      "lastChapter": "$.lastVUCname",
      "name": "$.bName",
      "wordCount": "$.cnt"
    },
    "ruleSearch": {
      "author": "@css:p[class^=_searchBookAuthor]@text",
      "bookList": "@css:div.y-list__content>div.y-list__item",
      "bookUrl": "##href=\"//m.qidian.com/chapter/(\\d+)/0/\"##https://m.qidian.com/book/$1/###",
      "coverUrl": "##href=\"//m.qidian.com/chapter/(\\d+)/0/\"##https://bookcover.yuewen.com/qdbimg/349573/$1/180###",
      "intro": "@css:p[class^=_searchBookDesc]@text",
      "kind": "tag.div[-1]@tag.p@textNodes",
      "name": "tag.h2@text"
    },
    "ruleToc": {
      "chapterList": "<js>\n  var bookId=baseUrl.match(/(\\d+)/)[1]\n result=java.ajax(\"https://wxapp.qidian.com/api/book/categoryV2?bookId=\"+bookId+\"&_csrfToken=\")\n var charts=[];\nJSON.parse(result).data.vs.map(i=>{\ni.cs.map(o=>{\nvar chart={\"id\":o.id,\"title\":o.cN,\"v\":o.sS==0,\"t\":o.uT+ \"  \" + o.cnt +\"字\"}\nif(chart.v){\nchart.url=\"http://qd.yyhydb-123546.top/api/content/qd?bid=\"+bookId+\"&cid=\"+o.id+\"&deviceId=\"+java.androidId()\n}else{\nchart.url=\"https://m.qidian.com/chapter/\"+bookId+\"/\"+o.id+\"/\"\n}\ncharts.push(chart);\n})\n})\n charts;\n</js>",
      "chapterName": "title",
      "chapterUrl": "url",
      "isVip": "v",
      "updateTime": "t"
    },
    "searchUrl": "https://m.qidian.com/soushu/{{key}}.html?pageNum={{page}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "精华书阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.jhsssd.com/",
    "customButton": false,
    "customOrder": 246,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"排行榜\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"总点击\",\"url\":\"/Ranking_allvisit/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"日点击\",\"url\":\"/Ranking_dayvisit/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周点击\",\"url\":\"/Ranking_weekvisit/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月点击\",\"url\":\"/Ranking_monthvisit/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总推荐\",\"url\":\"/Ranking_allvote/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周推荐\",\"url\":\"/Ranking_weekvote/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月推荐\",\"url\":\"/Ranking_monthvote/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"收藏推荐\",\"url\":\"/Ranking_goodnum/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"字数排行\",\"url\":\"/Ranking_size/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"最新入库\",\"url\":\"/Ranking_postdate/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"最近更新\",\"url\":\"/Ranking_lastupdate/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"新书榜单\",\"url\":\"/Ranking_goodnew/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/list/1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"/list/2_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/list/3_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"/list/4_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"/list/5_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/list/6_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"灵异\",\"url\":\"/list/7_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"女生\",\"url\":\"/list/8_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"其他\",\"url\":\"/list/9_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"完本\",\"url\":\"/wanben_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}\n]",
    "lastUpdateTime": 1772730087735,
    "respondTime": 70110,
    "ruleBookInfo": {
      "author": "p.2@text##作者：",
      "intro": ".intro_info@textNodes",
      "kind": "p.3@text&&p.4@text##分类：|状态：|小说",
      "lastChapter": "p.6@text##最新：",
      "name": "h2@text"
    },
    "ruleContent": {
      "content": "id.nr1@html##阅读提示.*|本章未完.*|紧急通知.*书签！",
      "nextContentUrl": "id.pb_next@href"
    },
    "ruleExplore": {
      "author": ".xsm.0@textNodes##\\(|\\)",
      "bookList": "ul@class.xbk",
      "bookUrl": "li.0@a@href",
      "coverUrl": "img@src",
      "intro": "{{@@span.1@text}}{{@@span.-2@text}}##最新.*|简介：|作者：|\\.\\.\\.",
      "name": ".xsm.0@a@text"
    },
    "ruleSearch": {
      "author": ".author@text##作者：",
      "bookList": ".searchbook",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "kind": ".cat@text##分类：",
      "lastChapter": ".update@text最新章节：",
      "name": ".bookname@text"
    },
    "ruleToc": {
      "chapterList": "ul.1@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "/search.html?ie=utf-8&word={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "天域小说#0",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.tycqzw.info",
    "customButton": false,
    "customOrder": 248,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::/xuanhuanxiaoshuo/\n修真::/xiuzhenxiaoshuo/\n都市::/dushixiaoshuo/\n穿越::/chuanyuexiaoshuo/\n网游::/wangyouxiaoshuo/\n科幻::/kehuanxiaoshuo/",
    "lastUpdateTime": 1787069730816,
    "respondTime": 2096,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作\\s*者：",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.intro@text",
      "name": "id.info@tag.h1.0@text"
    },
    "ruleContent": {
      "content": "id.content@html"
    },
    "ruleExplore": {
      "author": "class.s5@text",
      "bookList": "ul!0:2@tag.li",
      "bookUrl": "class.s2@tag.a@href",
      "lastChapter": "class.s3@text",
      "name": "class.s2@tag.a@text"
    },
    "ruleSearch": {
      "author": "class.even.1@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "class.even.0@tag.a.0@href",
      "lastChapter": "class.odd.0@tag.a.0@text",
      "name": "class.even.0@tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd!0:1:2:3:4:5:6:7:8@tag.a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://www.tycqzw.info/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "独行TXT",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.dxtxt.cc",
    "bookUrlPattern": "http://www.dxtxt.com/noveltxt/\\w+.html",
    "concurrentRate": "5",
    "customButton": false,
    "customOrder": 250,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; wv) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1785478211272,
    "respondTime": 7479,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "downloadUrls": "text.下载@href",
      "intro": "[property$=description]@content",
      "kind": "[property~=category|status|time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content",
      "name": "[property$=book_name]@content",
      "wordCount": "{{@@#count span.1@text}}字"
    },
    "ruleContent": {
      "content": "#TextContent p@textNodes",
      "nextContentUrl": "text.下一页@text\n@js:\nif(result[0]){\n\tnext=src.match(/var u\\w+=\"(.*)\"/)[1];\n\t//java.log(next)\n\tnext;\n\t}"
    },
    "ruleSearch": {
      "bookList": "#nr",
      "bookUrl": "a.1@href",
      "checkKeyWord": "剑来",
      "coverUrl": "img@_src",
      "intro": ".book_des@text",
      "kind": "span.2:3:1@text",
      "lastChapter": "a.-1@text",
      "name": "a.1@text",
      "wordCount": "span.-1@text"
    },
    "ruleToc": {
      "chapterList": "#chapterList li a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "@js:\n\nvar url=source.getKey();\n\nvar html = java.ajax(url);\n\ntoken = org.jsoup.Jsoup.parse(html)\n.select('input[name=_token]')\n.attr('value');\n\nurl+\"/search,\"+JSON.stringify({\n  \"body\": `_token=${token}&keyword=${key}&searchtype=articlename`,\n  \"method\": \"post\"\n})",
    "weight": 1
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "悠悠小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.uuwx.la",
    "customButton": false,
    "customOrder": 251,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "lastUpdateTime": 1787418106812,
    "respondTime": 1111,
    "ruleBookInfo": {
      "author": "#info > p:nth-child(2)@text",
      "coverUrl": "#fmimg > img@src",
      "intro": "#intro > p:nth-child(1)@text",
      "kind": "#info > p:nth-child(3)@text##类  别：",
      "lastChapter": "p:nth-child(5) > a@text",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "id.content@html##最新网址：www.uuwx.la"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".odd:nth-child(3)@text",
      "bookList": "tag.tr!0",
      "bookUrl": ".odd > a@href",
      "checkKeyWord": "我的",
      "lastChapter": ".even:nth-child(2)@text",
      "name": ".odd > a@text",
      "wordCount": ".even:nth-child(4)"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/modules/article/search.php,{\n\"method\": \"post\",\n\"body\": \"searchkey={{key}}\"}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "中华典藏",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.diancang.xyz",
    "customButton": false,
    "customOrder": 252,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nu = source.key;\nsort = [];\npush = (title, url, type) => sort.push({\n  title: title,\n  url: url,\n  style: {\n    layout_flexGrow: 1,\n    layout_flexBasisPercent: type\n  }\n});\nJ = org.jsoup.Jsoup.parse(java.ajax(u));\npush(\"分类\", null, 1);\nX = J.select('.menu a');\nfor (i = 0; i < X.length; ++i) {\n  push(\n    X[i].text(),\n    X[i].attr('href') + \"<,index_{{page}}.html>\",\n    null\n  );\n};\npush(\"标签\", null, 1);\nY = J.select('.panel-default a');\nfor (i = 0; i < Y.length; ++i) {\n  push(\n    Y[i].text(),\n    String(Y[i].attr('href')).replace(/\\d+\\.html$/,'{{page-1}}.html'),\n    null\n  );\n};\npush(\"书单\", null, 1);\nK = org.jsoup.Jsoup.parse(java.ajax(u + \"/shudan\"));\nZ = K.select('.panel-warning .list-group-item a');\nfor (i = 0; i < Z.length; ++i) {\n  push(\n    Z[i].text(),\n    Z[i].attr('href'),\n    null\n  );\n};\np = K.select('.m-page .disabled').text().match(/\\/(\\d+)/)[1];\nfor (i = 2; i <= p; ++i) {\n  M = org.jsoup.Jsoup.parse(java.ajax(u + `/shudan/index_${i}.html`));\n  N = M.select('.panel-warning .list-group-item a');\n  for (o = 0; o < N.length; ++o) {\n    push(\n    N[o].text(),\n    N[o].attr('href'),\n    null\n    );\n  };\n};\nJSON.stringify(sort);",
    "lastUpdateTime": 1782367414578,
    "respondTime": 1586,
    "ruleBookInfo": {
      "author": "small@a@text",
      "canReName": "1",
      "coverUrl": ".fmpic@img@src",
      "intro": ".m-summary@text##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": ".alert@a@text",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "id.content@html||.message@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "[href*=/renwu/]@text",
      "bookList": "tr!0||.panel-body > div",
      "bookUrl": "a.0@href",
      "checkKeyWord": "修真",
      "coverUrl": "img@src",
      "intro": ".m-text@text",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": "<js>\nString(result).match(/<div class=\"clearfix\"><\\/div>([\\s\\S]*?)<div class=\"clearfix\"><\\/div>/)[1];\n</js>\n@@h3,li",
      "chapterName": "text",
      "chapterUrl": "a@href",
      "isVolume": "a@target"
    },
    "searchUrl": "/e/search/index.php,{\n  \"method\": \"post\",\n  \"body\": \"tbname=bookname&show=title,writer&tempid=1&keyboard={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爱下书网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.aixiashu.la/",
    "concurrentRate": "5",
    "customButton": false,
    "customOrder": 253,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::xuanhuanxiaoshuo/1_{{page}}.html\n武侠修真::wuxiaxiuzhen/2_{{page}}.html\n都市言情::dushiyanqing/3_{{page}}.html\n历史军事::lishijunshi/4_{{page}}.html\n科幻小说::kehuanxiaoshuo/6_{{page}}.html\n网游竞技::wangyoujingji/5_{{page}}.html\n其他小说::qitaxiaoshuo/7_{{page}}.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; wv) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\", \"Accept-Language\": \"zh-CN,zh;q=0.9\"}",
    "lastUpdateTime": 1787411584484,
    "respondTime": 2770,
    "ruleBookInfo": {
      "author": "[property$=author]@content||.row a.0@text",
      "coverUrl": "id.sidebar@id.fmimg@tag.img.0@src",
      "intro": "id.maininfo@id.intro@tag.p@textNodes",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content||.col-md-8.1@text",
      "name": "[property$=book_name]@content||h1@text"
    },
    "ruleContent": {
      "content": "id.content@textNodes",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "class.s5@text",
      "bookList": "id.newscontent@tag.ul@tag.li",
      "bookUrl": "class.s2@tag.a.0@href",
      "lastChapter": "class.s3@tag.a.0@text",
      "name": "class.s2@tag.a.0@text"
    },
    "ruleSearch": {
      "author": "class.even.1@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "class.even.0@tag.a.0@href",
      "kind": "class.odd.2@text&&class.even.2@text",
      "lastChapter": "class.odd.0@tag.a.0@text",
      "name": "class.even.0@tag.a@text",
      "wordCount": "class.odd.1@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd!0:1:2:3:4:5:6:7:8",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "modules/article/search.php?searchkey={{key}}",
    "weight": 1
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "鬼吹灯#3",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.cxzz.com#🎃",
    "customButton": false,
    "customOrder": 254,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\npush(\"全部🌊分类\",null,1,1)\npush(\"🌊全本🌊\",`http://m.cxzz958.com/wanben/{{page}}.html`,1,1)\n\tarList=[\"玄幻小说\",\"仙侠小说\",\"都市小说\",\"军史小说\",\"网游小说\",\"科幻小说\",\"恐怖小说\",\"其它小说\"]\n\tarList.map((tag,index)=>{\n\t\turl=`/fenlei/${index+1}/{{page}}.html`;\n\t\tpush(tag, url, 1, 0.25);\n\t\t});\n//java.log(JSON.stringify(sort))\nJSON.stringify(sort)",
    "header": "{'User-Agent':'Mozilla/5.0 (Linux; Android 14; V2304A; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/123.0.6312.118 Mobile Safari/537.36',\n\"Referer\":\"http://www.cxzz958.com/\"}",
    "lastUpdateTime": 1785381725229,
    "respondTime": 2777,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "#content@html",
      "replaceRegex": "##.*首发域名.*|.*\\.html"
    },
    "ruleExplore": {
      "author": "{{@@.s4@text}}{{@@##a\\>\\/(.*?)\\<\\/##$1###}}",
      "bookList": ".bd@ul@li&&.cover@p",
      "bookUrl": "a.0@href\n<js>\nif(result!=\"\"){\n\tlet pi=result.match(/\\/(.*?)\\/$/)[1];\nurl=\"http://www.cxzz958.com/\"+pi\n}\nresult=url\n</js>",
      "kind": "{{@@span.0@text##\\[|\\]}}{{@@.line@text##\\[|\\].*}}",
      "lastChapter": "span.2@a@text",
      "name": "a.0@text",
      "wordCount": "span.-1@text"
    },
    "ruleSearch": {
      "author": ".author@text",
      "bookList": ".bookbox",
      "bookUrl": "h4@a@href",
      "coverUrl": "img@src",
      "kind": ".cat@text##分类：",
      "lastChapter": ".update@text##最新章节：",
      "name": "h4@a@text"
    },
    "ruleToc": {
      "chapterList": "dl@dt:nth-of-type(2)~dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://www.cxzz958.com/s.php?ie=utf-8&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "免费小说#2",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.quanwenyuedu.io",
    "concurrentRate": "3",
    "customButton": false,
    "customOrder": 255,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "奇幻玄幻::/c/1-{{page}}.html\n武侠仙侠::/c/2-{{page}}.html\n都市官场::/c/3-{{page}}.html\n历史军事::/c/4-{{page}}.html\n言情穿越::/c/5-{{page}}.html\n灵异悬疑::/c/6-{{page}}.html\n游戏竞技::/c/7-{{page}}.html\n青春耽美::/c/8-{{page}}.html\n科幻同人::/c/9-{{page}}.html\n经典畅销::/c/10-{{page}}.html\n图书杂志::/c/11-{{page}}.html\n其它分类::/c/0-{{page}}.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; wv) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\", \"Accept-Language\": \"zh-CN,zh;q=0.9\"}",
    "lastUpdateTime": 1787069279641,
    "respondTime": 4587,
    "ruleBookInfo": {
      "author": "p.1@span@text",
      "coverUrl": "[property$=image]@content||img@src",
      "intro": ".description@text",
      "kind": "p[2,3]@span@text",
      "lastChapter": "[property$=latest_chapter_name]@content||.col-md-8.1@text",
      "name": ".title@text",
      "tocUrl": "text.目录@href"
    },
    "ruleContent": {
      "content": "#content p@textNodes",
      "replaceRegex": "##《{{book.name}}》.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "p span@text",
      "bookList": ".box .top",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": "p.1@text",
      "name": "h3@text"
    },
    "ruleToc": {
      "chapterList": ".list li a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/index.php?c=xs&a=search&keywords={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "言情小说吧",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.xs.cn",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 256,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"🍀全部🎀分类🍀\",\"url\":\"/category/f1_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"现代言情\",\"url\":\"/category/30020_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.26}},\n{\"title\":\"古代言情\",\"url\":\"/category/30013_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.26}},\n{\"title\":\"浪漫青春\",\"url\":\"/category/30031_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.26}},\n{\"title\":\"玄幻言情\",\"url\":\"/category/30001_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"仙侠奇缘\",\"url\":\"/category/30008_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"科幻空间\",\"url\":\"/category/30042_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"/category/30036_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"游戏\",\"url\":\"/category/30050_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"短篇\",\"url\":\"/category/30083_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"轻小说\",\"url\":\"/category/30055_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.22}},\n\n{\"title\":\"🎖全部榜单🎖\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"免费\",\"url\":\"/category/f1_f1_f1_1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.26}},\n{\"title\":\"VIP\",\"url\":\"/category/f1_f1_f1_0_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.26}},\n{\"title\":\"风云榜\",\"url\":\"/rank/hxyuepiao?pageNum={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.26}},\n{\"title\":\"热销榜\",\"url\":\"/rank/hotsales?pageNum={{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"新书榜\",\"url\":\"/rank/newbook?pageNum={{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"周推荐榜\",\"url\":\"/rank/recom?pageNum={{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"完本榜\",\"url\":\"/rank/finish?pageNum={{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"点击榜\",\"url\":\"/rank/click?pageNum={{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"收藏榜\",\"url\":\"/rank/collect?pageNum={{page}}\",\"style\":{\"layout_flexGrow\":1}}\n]\n",
    "header": "",
    "lastUpdateTime": 0,
    "loginUrl": "https://ptlogin.yuewen.com/login",
    "respondTime": 2088,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "downloadUrls": "",
      "intro": "[property=\"og:description\"]@content",
      "kind": "meta[property~=category|status|update_time]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "text.目录@href",
      "wordCount": "[class~=word_num|words|number]@text"
    },
    "ruleContent": {
      "content": "[class~=content|article]@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": "",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "a[class=\"name default\"]@text||a[class=\"default\"]@text",
      "bookList": ".book-img-text>ul@li||div[class=\"right-book-list\"]>ul>li",
      "bookUrl": "##<a.*?href=\"([^\"]+)\"##$1###",
      "checkKeyWord": "",
      "coverUrl": "##<img.*?src=\"([^\"]+)\"##$1###",
      "intro": "[class~=intro]@text",
      "kind": "p[class=\"author\"]>a.-1@text&&p[class=\"author\"]>span.-1@text&&p[class=\"update\"]>span.-1@text",
      "lastChapter": "p[class=\"update\"]>a.0@text",
      "name": "h4@text||div[class=\"book-img\"]>a.0@text",
      "wordCount": "span[class=\"blue\"]@text"
    },
    "ruleToc": {
      "chapterList": "div[class=\"volume\"]:gt(0)>ul[class=\"cf\"]@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": ""
    },
    "searchUrl": "https://www.xs8.cn/so/{{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "鬼吹灯#3",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.cxzz958.com#🎃",
    "customButton": false,
    "customOrder": 257,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\npush(\"全部🌊分类\",null,1,1)\npush(\"🌊全本🌊\",`http://m.cxzz958.com/wanben/{{page}}.html`,1,1)\n\tarList=[\"玄幻小说\",\"仙侠小说\",\"都市小说\",\"军史小说\",\"网游小说\",\"科幻小说\",\"恐怖小说\",\"其它小说\"]\n\tarList.map((tag,index)=>{\n\t\turl=`/fenlei/${index+1}/{{page}}.html`;\n\t\tpush(tag, url, 1, 0.25);\n\t\t});\n//java.log(JSON.stringify(sort))\nJSON.stringify(sort)",
    "header": "{'User-Agent':'Mozilla/5.0 (Linux; Android 14; V2304A; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/123.0.6312.118 Mobile Safari/537.36',\n\"Referer\":\"http://www.cxzz958.com/\"}",
    "lastUpdateTime": 1785870145423,
    "respondTime": 2671,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "#content@html",
      "replaceRegex": "##.*首发域名.*|.*\\.html"
    },
    "ruleExplore": {
      "author": "{{@@.s4@text}}{{@@##a\\>\\/(.*?)\\<\\/##$1###}}",
      "bookList": ".bd@ul@li&&.cover@p",
      "bookUrl": "a.0@href\n<js>\nif(result!=\"\"){\n\tlet pi=result.match(/\\/(.*?)\\/$/)[1];\nurl=\"http://www.cxzz958.com/\"+pi\n}\nresult=url\n</js>",
      "kind": "{{@@span.0@text##\\[|\\]}}{{@@.line@text##\\[|\\].*}}",
      "lastChapter": "span.2@a@text",
      "name": "a.0@text",
      "wordCount": "span.-1@text"
    },
    "ruleSearch": {
      "author": ".author@text",
      "bookList": ".bookbox",
      "bookUrl": "h4@a@href",
      "coverUrl": "img@src",
      "kind": ".cat@text##分类：",
      "lastChapter": ".update@text##最新章节：",
      "name": "h4@a@text"
    },
    "ruleToc": {
      "chapterList": "dl@dt:nth-of-type(2)~dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://www.cxzz958.com/s.php?ie=utf-8&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "盗墓笔记",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.daomubiji.com",
    "customButton": false,
    "customOrder": 258,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "盗墓笔记::http://www.daomubiji.com/",
    "lastUpdateTime": 1774857586277,
    "respondTime": 2590,
    "ruleBookInfo": {
      "intro": "class.focusbox-text@text"
    },
    "ruleContent": {
      "content": "class.article-content@tag.p@text"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "text##(|)",
      "bookList": "class.container@tag.li!0",
      "bookUrl": "tag.a@href",
      "name": "class.menu-item@tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": "class.excerpts-wrapper@tag.a",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "-",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "平凡小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.pfwx.com",
    "customButton": false,
    "customOrder": 260,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787069344111,
    "respondTime": 5800,
    "ruleBookInfo": {
      "author": "class.jieshaokaishi@tag.h2.0@text",
      "coverUrl": "class.jieshaoTu@tag.img@src",
      "intro": "class.jieshaokaishi@tag.h3@text##介 绍：|－－－.*",
      "lastChapter": "class.zuixin@tag.a@text",
      "name": "class.jieshaokaishi@tag.h1@text",
      "wordCount": "class.jieshaokaishi@tag.h2.1@text##更新时间："
    },
    "ruleContent": {
      "content": "id.booktext@html##<!--.*-->|★★.*朋友吧！"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.h3.0@text",
      "bookList": "class.tutui",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "tag.img@src",
      "lastChapter": "tag.a.2@text",
      "name": "tag.a.1@text"
    },
    "ruleToc": {
      "chapterList": "class.zhangjiekaishi@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.pfwx.com/modules/article/search.php?searchkey={{key}}&searchtype=articlename",
    "weight": 0
  },
  {
    "bookSourceComment": "//2025，2月14号，静白，制作教程接来自：源论坛:ysqbbs.com \n质量较差-模板雷同",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "小说阅读#4",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xyetianlian.com",
    "customButton": false,
    "customOrder": 261,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787069941999,
    "respondTime": 1008,
    "ruleBookInfo": {
      "author": "span.1@text",
      "coverUrl": "img@src",
      "intro": "class.intro@text",
      "kind": "span.2@text",
      "lastChapter": "span.last.1@text",
      "name": "h2@text",
      "wordCount": "span.4@text"
    },
    "ruleContent": {
      "content": "div#content.showtxt@text",
      "nextContentUrl": "text.下一章@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.author@text",
      "bookList": "class.bookbox",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "kind": "class.cat@text",
      "lastChapter": "class.update@text",
      "name": "class.bookname@text"
    },
    "ruleToc": {
      "chapterList": "dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://www.xyetianlian.com/s.php?ie=utf-8&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "全本小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.95dushu.info#wy18-1001",
    "customButton": false,
    "customOrder": 263,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1785891478391,
    "respondTime": 1286,
    "ruleBookInfo": {
      "author": "class.author@tag.a@text",
      "coverUrl": "class.con_img@tag.img@src",
      "intro": "class.r_cons@html",
      "name": "tag.h1@tag.a@text",
      "tocUrl": "class.r_tools@tag.a.1@href"
    },
    "ruleContent": {
      "content": "class.yuedu_zhengwen@html##最新网址：www.xfjxs.com"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.odd.1@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "class.odd.0@tag.a@href",
      "kind": "class.even.2@text",
      "lastChapter": "class.even.0@tag.a@text",
      "name": "class.odd.0@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "class.novel_list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/modules/article/search.php?ie=gbk&searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "无极书院",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.wjzxchina.com",
    "concurrentRate": "3",
    "customButton": false,
    "customOrder": 264,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻奇幻::/wuji345/\n仙侠武侠::/wuji342/\n都市重生::/wuji341/\n历史军事::/wuji348/\n科幻未来::/wuji343/\n灵异悬疑::/wuji349/\n女生言情::/wuji344/\n二次元::/wuji346/\n游戏竞技::/wuji347/",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 12; Pixel 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\",\"Referer\":\"http://m.wjzxchina.com/\",\"Accept\":\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\",\"Accept-Language\":\"zh-CN,zh;q=0.9,en;q=0.8\"}",
    "lastUpdateTime": 1784812684101,
    "respondTime": 18476,
    "ruleBookInfo": {
      "author": "class.B.b0@tag.dd.1@tag.span.0@text##作者：",
      "coverUrl": "class.B.b0@class.imgB@tag.img@src",
      "intro": "class.nrjj@class.e@text",
      "kind": "class.B.b0@tag.dd.2@tag.span.0@text##类别：",
      "lastChapter": "class.B.b0@tag.dd.-1@tag.a@text",
      "name": "class.VolumeTop@tag.h1@text"
    },
    "ruleContent": {
      "content": "class.TxtContent@html##<script[\\s\\S]*?</script>|温馨提示：亲爱的读者[\\s\\S]*?追书阅读更方便。",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {
      "author": "tag.dd.1@tag.span.0@text##作者：",
      "bookList": "class.B",
      "bookUrl": "tag.dt@tag.a@href",
      "coverUrl": "class.imgB@tag.img@src",
      "intro": "class.d2@text##简介：",
      "lastChapter": "tag.dd.-1@tag.a@text",
      "name": "tag.dt@tag.a@text"
    },
    "ruleSearch": {
      "author": "tag.dd.1@tag.span.0@text##作者：",
      "bookList": "class.B",
      "bookUrl": "tag.dt@tag.a@href",
      "coverUrl": "class.imgB@tag.img@data-src",
      "intro": "class.d2@text##简介：",
      "lastChapter": "tag.dd.-1@tag.a@text",
      "name": "tag.dt@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "class.MLlist@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/search/?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "//仅支持搜索合集准确全名\n//20250224by= =\nr=org.jsoup.Jsoup.parse(java.ajax(\"https://onehu.xyz/categories/\"))\na=r.select(\".category-item\")\nname=[];\nfor(i in a){\n\tname.push(a[i].attr(\"title\"));\n}\nJSON.stringify(name)",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "我是盐神",
    "bookSourceType": 0,
    "bookSourceUrl": "https://onehu.xyz",
    "customButton": false,
    "customOrder": 265,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\neval(String(source.bookSourceComment))\nfenl=[\n{\"title\": \"首页\",  \"url\": \"https://onehu.xyz<,/page/{{page}}/#board>\",  \"style\":{\"layout_flexGrow\": 0,  layout_flexBasisPercent: 0.45}},\n{\"title\": \"分类\",  \"url\": \"https://onehu.xyz/categories/\",  \"style\":{\"layout_flexGrow\": 0,  layout_flexBasisPercent: 0.45}}\n]\nb=name\nfor (i in b){\n\tx=String(b[i]);\nurl=\"https://onehu.xyz/categories/\"+x+\"/<,page/{{page}}/#board>\";\n fenl.push({title: x,url: url,style: {\n\t\tlayout_flexGrow: 1,\n\t\tlayout_flexBasisPercent: 0.5\t}})\n}\n\nJSON.stringify(fenl)\n</js>",
    "lastUpdateTime": 1785042174759,
    "respondTime": 2268,
    "ruleBookInfo": {
      "intro": "[property~=desc]@content",
      "kind": "time@text",
      "name": "[property$=title]@content",
      "wordCount": ".mt-1@span.0@text##\\s字"
    },
    "ruleContent": {
      "content": ".markdown-body@p@textNodes"
    },
    "ruleExplore": {
      "author": ".category-chain-item@text",
      "bookList": ".index-card||.list-group@a||.category-post-list@a",
      "bookUrl": ".index-excerpt__noimg@href||href",
      "intro": "div.0@text##{{book.name}}|{{book.author}}",
      "kind": "time@text##\\r",
      "name": "h1@a@text||.list-group-item-title@text||.list-group-item-action@title"
    },
    "ruleSearch": {
      "bookList": ".list-group a",
      "bookUrl": "href",
      "checkKeyWord": "回答",
      "intro": "href##\\/%",
      "name": ".list-group-item-title@text"
    },
    "ruleToc": {
      "chapterList": ".post-content||.markdown-body",
      "chapterName": "h1@text||p.0@text",
      "chapterUrl": "{baseUrl}"
    },
    "searchUrl": "https://onehu.xyz/categories/{{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爱笔趣阁#3",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.ibiquges.com/",
    "bookUrlPattern": "\\d+/\\d+/",
    "customButton": false,
    "customOrder": 266,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::fenlei/1_{{page}}.html\n修真小说::fenlei/2_{{page}}.html\n都市小说::fenlei/3_{{page}}.html\n穿越小说::fenlei/4_{{page}}.html\n网游小说::fenlei/5_{{page}}.html\n科幻小说::fenlei/6_{{page}}.html",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows; U; Windows NT 5.2;. en-US) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 Quark/4.6.6.164\"\n}",
    "lastUpdateTime": 1786188323550,
    "respondTime": 4840,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作    者：",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.intro@text",
      "kind": "id.info@tag.p.2@text##最后更新：",
      "lastChapter": "id.info@tag.p.3@a@text",
      "name": "id.info@tag.h1.0@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleContent": {
      "content": "id.content@html##亲,点击进去,给个好.*漂亮的老婆哦!|手机站全新改版.*广告清新阅读！",
      "webJs": "getDecode();$('#content').html();"
    },
    "ruleExplore": {
      "author": "class.s5@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "class.s2@a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\nsource.bookSourceUrl + 'files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text"
    },
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "tag.td.0@tag.a@href",
      "coverUrl": "tag.td.0@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\nsource.bookSourceUrl + 'files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "tag.td.1@tag.a@text",
      "name": "tag.td.0@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "modules/article/waps.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "\n源社区：@Mengteen 原创\n二传二创或者是其它问题请联系我。\n我邮箱:[xxxmgqxxx@vip.qq.com]",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "连连看漫画",
    "bookSourceType": 2,
    "bookSourceUrl": "https://www.hmkll.com",
    "customButton": false,
    "customOrder": 267,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\": \"连载中\",\"url\": \"/list/all_0-{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.25\n}},\n{\"title\": \"已完结\",\"url\": \"/list/all_1-{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.25\n}},\n{\"title\": \"全部\",\"url\": \"/list/index-{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.25\n}}\n]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; 22041211AC Build/SP1A.210812.016) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.104 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1784712235965,
    "respondTime": 13711,
    "ruleBookInfo": {
      "author": ".detail-main-info-author.1@text",
      "intro": "📄简介：{{@@.detail-desc@text}}",
      "kind": ".detail-main-info-class@a@text",
      "lastChapter": "ul@li.0@text",
      "name": ".detail-main-info-title@text",
      "tocUrl": "ul@li"
    },
    "ruleContent": {
      "content": "class.view-main-1 readForm@img@html",
      "imageStyle": "FULL",
      "nextContentUrl": "class.view-bottom-bar@li.2@a@href"
    },
    "ruleExplore": {
      "bookList": "ul@li",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": ".manga-list-2-tip@text",
      "kind": "🔞{{@@.level@text}}",
      "name": "p@a@text"
    },
    "ruleSearch": {
      "author": ".book-list-info-bottom-item@text",
      "bookList": "ul@li",
      "bookUrl": "a@href",
      "coverUrl": "img@data-original",
      "intro": ".book-list-info-desc@text",
      "kind": "class.book-list-info-bottom-right-font active@text",
      "name": ".book-list-info-title@text"
    },
    "ruleToc": {
      "chapterList": "-ul@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "/search?keyword={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.xyuzhaiwu2.com",
    "customButton": false,
    "customOrder": 268,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"全部\",\"url\":\"/book_lastupdate_0_0_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"校园言情\",\"url\":\"/book_lastupdate_0_1_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市言情\",\"url\":\"/book_lastupdate_0_2_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代言情\",\"url\":\"/book_lastupdate_0_3_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"罗曼史\",\"url\":\"/book_lastupdate_0_4_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"耽美\",\"url\":\"/book_lastupdate_0_5_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"百合\",\"url\":\"/book_lastupdate_0_6_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"同人\",\"url\":\"/book_lastupdate_0_7_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奇幻玄幻\",\"url\":\"/book_lastupdate_0_8_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游竞技\",\"url\":\"/book_lastupdate_0_9_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻异能\",\"url\":\"/book_lastupdate_0_10_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"恐怖灵异\",\"url\":\"/book_lastupdate_0_11_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"惊悚推理\",\"url\":\"/book_lastupdate_0_12_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠仙侠\",\"url\":\"/book_lastupdate_0_13_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史军事\",\"url\":\"/book_lastupdate_0_14_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越重生\",\"url\":\"/book_lastupdate_0_15_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"综合其他\",\"url\":\"/book_lastupdate_0_16_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"入库时间\",\"url\":\"/book_postdate_0_0_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"编辑推荐\",\"url\":\"/book_toptime_0_0_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总点击\",\"url\":\"/book_allvisit_0_0_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总推荐\",\"url\":\"/book_allvote_0_0_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总鲜花\",\"url\":\"/book_allflower_0_0_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总月票\",\"url\":\"/book_allvipvote_0_0_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"字数\",\"url\":\"/book_words_0_0_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"收藏数\",\"url\":\"/book_goodnum_0_0_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"新书上传\",\"url\":\"/book_lastupdate_0_0_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"三日内\",\"url\":\"/book_lastupdate_0_0_0_0_1_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"七日内\",\"url\":\"/book_lastupdate_0_0_0_0_2_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"半月内\",\"url\":\"/book_lastupdate_0_0_0_0_3_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"一月内\",\"url\":\"/book_lastupdate_0_0_0_0_4_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 0,
    "respondTime": 3648,
    "ruleBookInfo": {
      "author": "class.p_author@text",
      "coverUrl": "tag.img@src",
      "init": "",
      "intro": "id.bookintro@text",
      "lastChapter": "id.uptime@tag.span@text",
      "name": "class.d_title@tag.h1@text",
      "tocUrl": "text.更多目录@href"
    },
    "ruleContent": {
      "content": "id.TextContent@html"
    },
    "ruleExplore": {
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "",
      "bookList": "id.nr||id.sitebox@dl",
      "bookUrl": "a@href",
      "coverUrl": "img@_src",
      "intro": "class.book_des@text",
      "kind": "span.0:1@text",
      "lastChapter": "a.-1@text",
      "name": "h3@a.-1@text"
    },
    "ruleToc": {
      "chapterList": "class.chaw_c@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/modules/article/search.php,{\n\"method\": \"POST\",\n\"body\": \"searchkey={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "https://m.douxsw.com\nhttps://m.douyinxs.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "抖音小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.douxsw.com/#xsw8093",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 269,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "全部分类::/fenlei/<,{{page}}>\n玄奇::/fenlei/1/{{page}}/\n高武::/fenlei/2/{{page}}/\n修仙::/fenlei/3/{{page}}/\n都市::/fenlei/4/{{page}}/\n军事::/fenlei/5/{{page}}/\n历史::/fenlei/6/{{page}}/\n游体::/fenlei/7/{{page}}/\n科幻::/fenlei/8/{{page}}/\n恐怖::/fenlei/9/{{page}}/\n次元::/fenlei/10/{{page}}/\n女生::/fenlei/11/{{page}}/",
    "header": "{\n    'User-Agent': 'Mozilla/5.0 (Linux; Android 11; Pixel 3 XL Build/RQ3A.211001.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/102.0.4988.0 Mobile Safari/537.36 SearchCraft/3.9.2 (Baidu; P1 11) '\n}",
    "lastUpdateTime": 1767426257358,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 36589,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "canReName": "",
      "coverUrl": "@get:{c}",
      "init": "@put:{n:\"[property$=book_name]@content\",\n\ta:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property$=latest_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"[property$=image]@content\"}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "#chaptercontent@html",
      "imageStyle": "",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##『加入书签，方便阅读』",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "tag.p.1@text##([^（.*）]+)##$1###",
      "bookList": ".hot_sale",
      "bookUrl": "a@href",
      "coverUrl": "@js:\"https://m.douyinxs.com/static/ss_wap_bqg/nocover.jpg\"",
      "intro": "tag.p.2@text##简介：",
      "kind": "tag.p.1@text##（(.+)）##$1###",
      "lastChapter": "",
      "name": "tag.p.0@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "class.author.0@text",
      "bookList": ".bookbox",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "img@src",
      "intro": "",
      "kind": "class.author.1@text##类型：",
      "lastChapter": "tag.a.-1@text",
      "name": "h4@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "class.directoryArea.1@p",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "option@value||text.下一页@href",
      "updateTime": ""
    },
    "searchUrl": "/search/,{\n  \"body\": \"searchkey={{key}}\",\n  \"method\": \"POST\",\n  \"webView\": true\n}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "七猫小说（优+）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://api-bc.wtzw.com#♤ycb",
    "customButton": false,
    "customOrder": 270,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"男生\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"都市人生\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=203&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"异术超能\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=219&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"玄幻奇幻\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=202&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"武侠仙侠\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=205&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"奇闻异事\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=204&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"历史\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=56&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"游戏\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=75&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"科幻\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=64&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"二次元\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=207&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"体育\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=206&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"影视\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=539&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"穿越\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=373&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"鉴宝\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=47&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"重生\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=779&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"血脉\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=426&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"签到\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=565&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"复仇\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=790&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"丹药\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=428&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"无限流\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=557&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"强者回归\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=402&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"医生\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=156&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"战神\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=527&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女婿\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=36&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"皇帝\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=62&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"弃少\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=525&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女总裁\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=89&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"热血\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=1&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"爽文\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=570&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"现实\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=12&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"悬疑\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=27&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女生\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"现代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=1&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"总裁豪门\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=8&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"古代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=2&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"种田经商\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=16&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"宫闱宅斗\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=209&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"幻想言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=4&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"奇闻异事\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=204&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"影视原著\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=539&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"短篇\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=541&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"重生\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=779&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女强\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=620&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"年下\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=631&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"空间\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=345&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"穿越\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=373&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"隐婚\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=481&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"系统\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=782&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"快穿\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=335&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"虐渣\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=739&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"日久生情\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=700&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"皇后\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=106&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"王爷\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=125&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"学霸\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=781&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"毒妃\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=109&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"校草\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=701&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女配\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=191&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"甜宠\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=21&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"搞笑\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=788&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"虐恋\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=16&gender=2&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"治愈\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=17&gender=2&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"图书\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"现代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=260&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"古代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=259&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"青春文学\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=265&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"影视原著\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=539&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"悬疑推理\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=262&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"武侠小说\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=289&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"科幻未来\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=261&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"历史小说\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=264&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"仙侠奇缘\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=276&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"仙侠玄幻\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=288&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"现实小说\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=266&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"现代军旅\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=290&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"文学艺术\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=240&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人物传记\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=247&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人文科社\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=241&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"少儿教育\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=258&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"经管励志\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=242&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"经典文学\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=243&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1759294812372,
    "respondTime": 2288,
    "ruleBookInfo": {
      "author": "author",
      "coverUrl": "image_link",
      "init": "data.book",
      "intro": "intro##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "book_tag_list[*].title",
      "lastChapter": "{{$.latest_chapter_title}}·{{java.timeFormat(java.getString('$.update_time')*1000)}}",
      "name": "title@put:{bid:id}",
      "tocUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':{{$.id}}}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }  \n  }  \n  return paramStr;  \n};\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\n\"https://api-ks.wtzw.com/api/v1/chapter/chapter-list?\"+urlEncode(params)+\",\"+java.get(\"headers\")",
      "wordCount": "words_num"
    },
    "ruleContent": {
      "content": "@js:\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n    Packages.java.lang,\n    Packages.javax.crypto.spec,\n    Packages.javax.crypto,\n    Packages.java.util\n);\nwith(javaImport) {\n    function decode(content) {\n        var ivEncData = Base64.getDecoder().decode(String(content));\n        var key = SecretKeySpec(String(\"242ccb8230d709e1\").getBytes(), \"AES\");\n        var iv = IvParameterSpec(Arrays.copyOfRange(ivEncData, 0, 16));\n        var chipher = Cipher.getInstance(\"AES/CBC/PKCS5Padding\");\n        chipher.init(2, key, iv);\n        return String(chipher.doFinal(Arrays.copyOfRange(ivEncData, 16, ivEncData.length)));\n    }\n}\n\n\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':String(java.get('bid')),'chapterId':String(baseUrl.split(\"/\").pop())}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }\n  }\n  return paramStr;\n};\n\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\nurl=\"https://api-ks.wtzw.com/api/v1/chapter/content?\"+urlEncode(params)\ndecode(JSON.parse(java.ajax(url+','+java.get(\"headers\"))).data.content)\n\n"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "<js>\ngender=baseUrl.match(/gender=(\\d+)/)?baseUrl.match(/gender=(\\d+)/)[1]:\"\"\ncategory_id=baseUrl.match(/category_id=(\\d+)/)?baseUrl.match(/category_id=(\\d+)/)[1]:\"\"\nneed_filters=baseUrl.match(/need_filters=(\\d+)/)?baseUrl.match(/need_filters=(\\d+)/)[1]:\"\"\npage=baseUrl.match(/page=(\\d+)/)?baseUrl.match(/page=(\\d+)/)[1]:\"\"\nneed_category=baseUrl.match(/need_category=(\\d+)/)?baseUrl.match(/need_category=(\\d+)/)[1]:\"\"\ntag_id=baseUrl.match(/tag_id=(\\d+)/)?baseUrl.match(/tag_id=(\\d+)/)[1]:\"\"\nsign_key='d3dGiJc651gSQ8w1'\nheaders={'app-version':'51110','platform':'android','reg':'0','AUTHORIZATION':'','application-id':'com.****.reader','net-env':'1','channel':'unknown','qm-params':''}\nheaders['sign']=String(java.md5Encode(Object.keys(headers).sort().reduce((pre,n)=>pre+n+'='+headers[n],'')+sign_key))\n\n\nvar urlEncode = function (param, key, encode) {\n  if(param==null) return '';\n  var paramStr = '';\n  var t = typeof (param);\n  if (t == 'string' || t == 'number' || t == 'boolean') {\n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);\n  } else {\n    for (var i in param) {\n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);\n      paramStr += urlEncode(param[i], k, encode);\n    }\n  }\n  return paramStr;\n};\n\nvar category = function () {\n  params={'gender':gender,'category_id':category_id,'need_filters':need_filters,'page':page,'need_category':need_category}\n  params['sign']=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\n  url=\"https://api-bc.wtzw.com/api/v4/category/get-list?\"+urlEncode(params)\n  return java.ajax(url+','+java.put(\"headers\",JSON.stringify({\"headers\":headers})))\n};\n\nvar tag = function () {\n  params={'gender':gender,'need_filters':need_filters,'page':page,'tag_id':tag_id}\n  params['sign']=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\n  url=\"https://api-bc.wtzw.com/api/v4/tag/index?\"+urlEncode(params)\n  return java.ajax(url+','+java.put(\"headers\",JSON.stringify({\"headers\":headers})))\n};\n\n\nif(baseUrl.match(/category/)){\n  category()\n}else {\n  tag()\n}\n</js>\n$.data.books",
      "bookUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':{{$.id}},'imei_ip':'2937357107','teeny_mode':0}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }  \n  }  \n  return paramStr;  \n};\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\n\"https://api-bc.wtzw.com/api/v4/book/detail?\"+urlEncode(params)+\",\"+java.get(\"headers\")",
      "coverUrl": "$.image_link",
      "intro": "$.intro",
      "kind": "$.ptags",
      "name": "$.title",
      "wordCount": "$.words_num"
    },
    "ruleSearch": {
      "author": "original_author",
      "bookList": "data.books",
      "bookUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':{{$.id}},'imei_ip':'2937357107','teeny_mode':0}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }  \n  }  \n  return paramStr;  \n};\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\n\"/api/v4/book/detail?\"+urlEncode(params)+\",\"+java.get(\"headers\")",
      "coverUrl": "image_link",
      "intro": "intro",
      "kind": "ptags",
      "name": "original_title",
      "wordCount": "words_num"
    },
    "ruleToc": {
      "chapterList": "data.chapter_lists",
      "chapterName": "title",
      "chapterUrl": "id",
      "updateTime": "{{$.words}} 字"
    },
    "searchUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nheaders={'app-version':'51110','platform':'android','reg':'0','AUTHORIZATION':'','application-id':'com.****.reader','net-env':'1','channel':'unknown','qm-params':''}\n\nparams={'gender':'3','imei_ip':'2937357107','page':page,'wd':key}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }  \n  }  \n  return paramStr;  \n};\n\nheaderSign=String(java.md5Encode(Object.keys(headers).sort().reduce((pre,n)=>pre+n+'='+headers[n],'')+sign_key))\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nheaders['sign']=headerSign\nparams['sign']=paramSign\nbody=urlEncode(params)\n\n\"/api/v5/search/words?\" +body+\",\"+java.put(\"headers\",JSON.stringify({\"headers\":headers}))",
    "weight": 0
  },
  {
    "bookSourceComment": "网站正在被出售",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "多看阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.dkmi.com",
    "customButton": false,
    "customOrder": 271,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "lastUpdateTime": 1785381435301,
    "loginUrl": "https://account.xiaomi.com/fe/service/login/password?display=mobile&sid=reader&qs",
    "respondTime": 1372,
    "ruleBookInfo": {
      "kind": "$.item.tags[*]&&$.rights",
      "lastChapter": "$.item.latest",
      "tocUrl": "$.item.fiction_id@js:\"https://www.duokan.com/store/v0/fiction/detail/\"+result+\"?chapter_id=0&_t=&_c=\"",
      "wordCount": "$.item.word_count"
    },
    "ruleContent": {
      "content": "$.url@js:\nlet content=\"\"\nif(result){\nlet b64 = java.ajax(result)\nlet str=java.base64Decode(b64.match(/'(.+?)'/)[1])\nlet list=JSON.parse(str).p\nfor (i =0;i<list.length;i++){\ncontent+= list[i]+\"\\n\"\n}\n}else{\ncontent+=\"购买后继续阅读本章内容\"\n}\ncontent"
    },
    "ruleExplore": {
      "author": "$.role[0][1]",
      "bookList": "$.items[*]",
      "bookUrl": "$.source_id@js:\"https://www.duokan.com/hs/v0/android/fiction/book/\"+result",
      "coverUrl": "$.cover",
      "intro": "$.intro",
      "name": "$.title"
    },
    "ruleSearch": {
      "author": "$.role[0][1]",
      "bookList": "$.items[*]",
      "bookUrl": "$.source_id@js:\"https://www.duokan.com/hs/v0/android/fiction/book/\"+result",
      "coverUrl": "$.cover",
      "intro": "$.intro",
      "name": "$.title"
    },
    "ruleToc": {
      "chapterList": "$.item.toc[*]",
      "chapterName": "$.title",
      "chapterUrl": "$.item.fiction_id@js:\"https://www.duokan.com/store/v0/fiction/detail/\"+result+\"?chapter_id=0&_t=&_c=\"",
      "isVip": "$.free@js:result?false:true"
    },
    "searchUrl": "https://www.duokan.com/store/v0/lib/query/onebox?start=0&count=10&s={{key}}&source=2%2C5%2C6%2C7&_t=1616840245&_c=3963",
    "weight": 0
  },
  {
    "bookSourceComment": "@dy_天天的鸟蛋蛋\n//这个小说网简介里面的网站基本都是同模板。\n除了分类不一样。\n如\n请看小说网：https://www.qingkan9.com/\n笔趣阁小说网：http://www.03030.cc/\n。。。\n分类1\n[{\"title\":\"玄幻\",\"url\":\"/list1/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/list2/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/list3/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/list4/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/list5/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/list6/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/list7/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/list8/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"排行\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"周榜\",\"url\":\"/top/week_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/top/week_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/top/week_2_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/top/week_3_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/top/week_4_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/top/week_5_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/top/week_6_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/top/week_7_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/top/week_8_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}\n,{\"title\":\"月榜\",\"url\":\"/top/month_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/top/month_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/top/month_2_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/top/month_3_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/top/month_4_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/top/month_5_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/top/month_6_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/top/month_7_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/top/month_8_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"总榜\",\"url\":\"/top/all_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/top/all_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/top/all_2_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/top/all_3_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/top/all_4_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/top/all_5_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/top/all_6_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/top/all_7_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/top/all_8_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"完本\",\"url\":\"/full/0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/full/1_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/full/2_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/full/3_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/full/4_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/full/5_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/full/6_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/full/7_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/full/8_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}}]\n分类二\n[{\"title\":\"玄幻\",\"url\":\"/1/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/2/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/3/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/4/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/5/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/6/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/7/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/8/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"排行\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"周榜\",\"url\":\"/top/week_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/top/week_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/top/week_2_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/top/week_3_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/top/week_4_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/top/week_5_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/top/week_6_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/top/week_7_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/top/week_8_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}\n,{\"title\":\"月榜\",\"url\":\"/top/month_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/top/month_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/top/month_2_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/top/month_3_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/top/month_4_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/top/month_5_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/top/month_6_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/top/month_7_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/top/month_8_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"总榜\",\"url\":\"/top/all_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/top/all_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/top/all_2_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/top/all_3_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/top/all_4_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/top/all_5_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/top/all_6_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/top/all_7_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/top/all_8_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"完本\",\"url\":\"/full/0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/full/1_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/full/2_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/full/3_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/full/4_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/full/5_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/full/6_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/full/7_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/full/8_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}}]",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "大唐小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.dtxsw.com",
    "customButton": false,
    "customOrder": 272,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻\",\"url\":\"/list1/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/list2/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/list3/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/list4/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/list5/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/list6/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/list7/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/list8/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"排行\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"周榜\",\"url\":\"/top/week_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/top/week_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/top/week_2_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/top/week_3_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/top/week_4_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/top/week_5_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/top/week_6_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/top/week_7_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/top/week_8_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}\n,{\"title\":\"月榜\",\"url\":\"/top/month_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/top/month_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/top/month_2_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/top/month_3_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/top/month_4_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/top/month_5_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/top/month_6_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/top/month_7_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/top/month_8_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"总榜\",\"url\":\"/top/all_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/top/all_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/top/all_2_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/top/all_3_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/top/all_4_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/top/all_5_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/top/all_6_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/top/all_7_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/top/all_8_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"完本\",\"url\":\"/full/0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/full/1_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/full/2_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/full/3_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/full/4_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/full/5_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/full/6_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/full/7_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/full/8_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1787412810924,
    "respondTime": 11366,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "intro": "{{@@[property$=description]@content##(^|[。！？]+[”」）】]?)##$1<br>}}",
      "kind": "[property~=category|status|update_time]@content",
      "name": "[property$=book_name]@content"
    },
    "ruleContent": {
      "content": ".font_max@html",
      "nextContentUrl": "text.下一@href",
      "replaceRegex": "##第\\(\\d+\\/\\d+\\)页|dengbi.net|dmxsw.com|qqxsw.com|yifan.netshuyue.net|epzw.net|qqwxw.com|xsguan.comxs007.com|zhuike.net|readw.com|23zw.cc"
    },
    "ruleExplore": {
      "author": ".book_other:nth-child(3)@text",
      "bookList": ".row@.col-12",
      "bookUrl": "h3 > a@href",
      "coverUrl": "img@src",
      "kind": "{{@@h3 > a@text##\\[(.*)\\].*##$1}}\n{{@@.book_other:nth-child(4),\n.book_other:nth-child(5)@text##[\\u4e00-\\u9fa5]+：}}",
      "lastChapter": ".book_other:nth-child(6)@text##[\\u4e00-\\u9fa5]+：",
      "name": "h3 > a@text##\\[.*\\]"
    },
    "ruleSearch": {
      "author": ".book_other:nth-child(3)@text",
      "bookList": ".row:nth-child(2) > .col-12:nth-child(n+1)",
      "bookUrl": "h3 > a@href",
      "coverUrl": "img@src",
      "kind": "{{@@h3 > a@text##\\[(.*)\\].*##$1}}\n{{@@.book_other:nth-child(4),\n.book_other:nth-child(5)@text##[\\u4e00-\\u9fa5]+：}}",
      "lastChapter": ".book_other:nth-child(6)@text##[\\u4e00-\\u9fa5]+：",
      "name": "h3 > a@text##\\[.*\\]"
    },
    "ruleToc": {
      "chapterList": ".book_list2 .col-md-3:nth-child(n+1) > a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": ".page-item.4@a@href\n@js:\nvar resultStr = result && result.length > 0 ? result[0] : \"\";\nvar match = resultStr.match(/\\/index_(\\d+)\\.html/);\nvar n = match && match[1] ? parseInt(match[1], 10) : 1; \nvar list = [];\nfor (var i = 1; i <= n; i++) {\n    list.push(\"index_\" + i + \".html\"); \n}\nlist;"
    },
    "searchUrl": "/search.php?q={{key}}&p={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "夜伴书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.yybsw.com#🎃",
    "bookUrlPattern": "https?://www.ybswu.com/book/\\w+/",
    "customButton": false,
    "customOrder": 273,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "奇幻·玄幻::/list/qihuan<,{{page}}>.html\n科幻·游戏::/list/kehuan<,{{page}}>.html\n武侠·仙侠::/list/wuxia<,{{page}}>.html\n女生·言情::/list/yanqing<,{{page}}>.html\n都市·娱乐::/list/dushi<,{{page}}>.html\n历史·军事::/list/lishi<,{{page}}>.html\n悬疑·灵异::/list/xuanyi<,{{page}}>.html\n耽美·纯爱::/list/chunai<,{{page}}>.html\n外国文学::/list/foreign<,{{page}}>.html\n成长·励志::/list/lizhi<,{{page}}>.html\n散文·随笔::/list/sanwen<,{{page}}>.html\n现当代文学::/list/china<,{{page}}>.html\n轻小说::/list/lightnovel<,{{page}}>.html\n健康·生活::/list/health<,{{page}}>.html\n文学名著::/list/mingzhu<,{{page}}>.html\n我的书架::/readbook<,{{page}}>.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1785891069677,
    "respondTime": 6185,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "downloadUrls": "@get:{d}\n<js>\nurl=book.origin+result;\njava.ajax(url);\n</js>\n.text-center a.0@href",
      "init": "@put:{n:\"[property$=book_name]@content\",\na:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property$=latest_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"[property$=image]@content\",\nd:\".reader-bar a.-1@href\"}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}"
    },
    "ruleContent": {
      "content": "#cont-body@html",
      "nextContentUrl": "class.fa-arrow-circle-right@href"
    },
    "ruleExplore": {
      "bookList": ".media",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": ".media-info@text",
      "kind": "0",
      "name": "h4@text"
    },
    "ruleSearch": {
      "author": "td.1@text",
      "bookList": "tbody tr",
      "bookUrl": "a.0@href",
      "kind": "0",
      "name": "a.0@text##《|》"
    },
    "ruleToc": {
      "chapterList": "#all-chapter a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/plus/search.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "52shuku",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.52shuku.net/",
    "customButton": false,
    "customOrder": 274,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1784436041162,
    "respondTime": 2666,
    "ruleBookInfo": {
      "intro": ".article-content@p.1@text",
      "name": ".article-title@text"
    },
    "ruleContent": {
      "content": "#nr1@p@html##.*52shuku.*",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": ".excerpt",
      "bookUrl": "h2@a@href",
      "intro": ".note@text",
      "kind": ".muted@a@text",
      "name": "h4@text##\\d+\\."
    },
    "ruleToc": {
      "chapterList": ".mulu",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "https://www.52shuku.net/so/search.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "❤️文学书库",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.wenxuesk.la",
    "customButton": false,
    "customOrder": 275,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 10) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1779722337881,
    "respondTime": 1252,
    "ruleBookInfo": {
      "author": ".block_txt2@p.4@a@text",
      "coverUrl": ".block_img2@img@src",
      "intro": "[property=\"og:description\"]@content",
      "kind": ".block_txt2@p.3@text##分类：",
      "lastChapter": "{{@@.block_txt2@p.-1@a@text}}·{{@@.block_txt2@p.-2@text##更新：}}",
      "name": ".block_txt2@h2@text",
      "tocUrl": "text.章节目录@href"
    },
    "ruleContent": {
      "content": ".content@p@html##本章未.*点击下一.*\\d+页\\/.*\\d+页",
      "nextContentUrl": "text.下一章@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author@text##作者：",
      "bookList": ".bookbox",
      "bookUrl": ".bookimg@a@href",
      "checkKeyWord": "我的女儿我的家乡",
      "coverUrl": ".bookimg@img@src",
      "name": ".bookname@text"
    },
    "ruleToc": {
      "chapterList": ".chapter@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://m.wenxuesk.la/search/result.html?searchkey={{key}}&submit=",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "新御书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.xyushuwu.me/",
    "customButton": false,
    "customOrder": 276,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"总点击\",\"url\":\"/top/allvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月点击\",\"url\":\"/top/monthvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周点击\",\"url\":\"/top/weekvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/sort/1_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠仙侠\",\"url\":\"/sort/2_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市言情\",\"url\":\"/sort/3_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻网游\",\"url\":\"/sort/4_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"惊悚悬疑\",\"url\":\"/sort/5_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"耽美同人\",\"url\":\"/sort/6_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"穿越架空\",\"url\":\"/sort/7_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"高辣浓情\",\"url\":\"/sort/8_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"禁忌百合\",\"url\":\"/sort/9_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"精品文学\",\"url\":\"/sort/10_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"完本\",\"url\":\"/full/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\" \",\"url\":\" \",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36\"}",
    "lastUpdateTime": 1786782267939,
    "respondTime": 9148,
    "ruleBookInfo": {
      "author": ".xx a.1@text",
      "coverUrl": "img@src",
      "intro": ".jianjie@html##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": ".xx a.0@text##小说",
      "lastChapter": ".xx a.2@text##正文\\s",
      "name": ".xx li.0@text##\\_.*",
      "tocUrl": ".gengduo a@href"
    },
    "ruleContent": {
      "content": "#nr@html",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "a.2@text",
      "bookList": ".list ul",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": "span.2@text##\\s",
      "kind": "span.-1@text",
      "name": "a.1@text##\\_.*"
    },
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".fk li",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "kind": "a.0@text##\\[|\\]",
      "name": "a.1@text##\\_.*"
    },
    "ruleToc": {
      "chapterList": ".lb li a",
      "chapterName": "text##本页章节.*",
      "chapterUrl": "href",
      "nextTocUrl": ".showpage@a@href"
    },
    "searchUrl": "/s.php,{\n  \"charset\": \"gbk\",\n  \"method\": \"POST\",\n  \"body\": \"s={{key}}&type=articlename\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "小米阅读（优+）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://reader.browser.miui.com/v2#",
    "bookUrlPattern": "https://reader.browser.miui.com/api/v2/book/\\d+",
    "customButton": false,
    "customOrder": 278,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type)=>{\n\t\tjson = JSON.stringify({\n\t\t\t\ttitle: title,\n\t\t\t\turl: url?url:\"\",\n\t\t\t\tstyle: {\n\t\t\t\t\t\tlayout_flexGrow: 1,\n\t\t\t\t\t\tlayout_flexBasisPercent: type\n\t\t\t\t\t}\n\t\t\t});\n\t\treturn sort.push(json);\n\t}\npush('排行榜单',null,1);\n$$=(a,b,c)=>{\n\t\treturn `https://reader.browser.duokan.com/api/v2/ranking?len=10&page={{page}\\}&type=${a}-${b}-${c}`\n\t}\n[[\"人气榜\",\"golden\"],[\"新书榜\",\"new\"],[\"完结榜\",\"end\"],[\"热搜榜\",\"search\"]].map([title,b]=>{\n\t\tpush(''+title+'',null,1);\n\t\t[\"男频\",\"女频\"].map((title1,a)=>{\n\t\t\t\ta++\n\t\t\t\t[[\"周榜\",\"week\"],[\"月榜\",\"month\"],[\"总榜\",\"total\"]].map([title2,c]=>{\n\t\t\t\t\t\treturn push(title1+title2,$$(a,b,c),0.25);\n\t\t\t\t\t});\n\t\t\t});\n\t});\npush('书籍分类',null,1);\n$$=(sex,bookStatus,categoryId,hotChoice)=>{\n\t\treturn `https://reader.browser.duokan.com/api/v2/book/list2?len=10&page={{page}\\}&sex=${sex}&bookStatus=${bookStatus}&categoryId=${categoryId}&wordCountsInterval=0&hotChoice=${hotChoice}`\n\t}\nbookStatus=categoryId=hotChoice=0;\n[\n\t\t[\"男频\",[[\"都市\",7],[\"玄幻\",3],[\"仙侠\",6],[\"历史\",8],[\"灵异\",10],[\"科幻\",11],[\"奇幻\",4],[\"同人\",143],[\"游戏\",12],[\"武侠\",5],[\"竞技\",13]]],\n\t\t[\"女频\",[[\"现代言情\",75],[\"古代言情\",74],[\"浪漫青春\",76],[\"玄幻言情\",72],[\"仙侠奇缘\",73],[\"悬疑灵异\",77],[\"科幻空间\",78],[\"同人小说\",80],[\"游戏竞技\",79],[\"耽美小说\",81]]]\n].map(([title,list],sex)=>{\n\t\tsex++\n\t\tpush(''+title+'',$$(sex,bookStatus,categoryId,hotChoice),1);\n\t\tlist.map([title,categoryId]=>{\n\t\t\t\tpush(''+title+'',$$(sex,bookStatus,categoryId,hotChoice),1);\n\t\t\t\t[\"综合全部\",\"最新上线\",\"阅读最多\",\"点赞最高\"].map((title,hotChoice)=>{\n\t\t\t\t\t\t['['+title+']',\"连载\",\"完结\"].map((title,bookStatus)=>{\n\t\t\t\t\t\t\t\treturn push(title,$$(sex,bookStatus,categoryId,hotChoice),0.25);\n\t\t\t\t\t\t\t});\n\t\t\t\t\t});\n\t\t\t});\n\t});\n'['+sort.toString()+']'",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.2357.134 Safari/537.36\"\n}",
    "lastUpdateTime": 1758062439534,
    "respondTime": 5148,
    "ruleBookInfo": {
      "author": "$..author",
      "coverUrl": "$..imgUrl",
      "init": "$.data",
      "intro": "{{'\\n&lrm;\\n'}}🔗 源站：{{$..cpName}}\n{{'\\n&lrm;\\n'}}📆 开坑：{{java.timeFormatUTC(java.getString('$.firstChapter.updateTime')*1000,'yyyy-MM-dd',8)}}\n{{'\\n&lrm;\\n'}}📑 简介：{{$..description}}",
      "kind": "{{$..score}}分\n{{$..secondCategoryName&&$..bookStatus}}\n{{java.put('time', java.timeFormatUTC(java.getString('$.lastChapter.updateTime'),'yyyy-MM-dd',8))}}",
      "lastChapter": "{{$.lastChapter.chapterName}} ",
      "name": "$..name",
      "tocUrl": "https://reader.browser.miui.com/api/v2/chapter/list/{{$..bookId}}",
      "wordCount": "$..wordCount"
    },
    "ruleContent": {
      "content": "$..contentList[*]##——内容来自.*\n<js>\nif(result.match(/^http.+$/)){\n\t\tsrc = java.base64Decode(String(java.ajax(result)).match(/\\('([^']+)'\\)/)[1]);\n\t}\nsrc\n</js>\n$..p[*]||$..contentList[*]\n##——内容来自.*"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.data.list",
      "bookUrl": "https://reader.browser.miui.com/api/v2/book/{{$.bookId}}",
      "coverUrl": "$.imgUrl",
      "intro": "$.description",
      "kind": "{{$.score}}分\n{{$.secondCategoryName&&$.bookStatus}}\n{{java.put('time', java.timeFormatUTC(java.getString('$.updateTime')*1000,'yyyy-MM-dd',8))}}",
      "lastChapter": "最近更新：@get:{time}",
      "name": "$.name",
      "wordCount": "$.wordCount"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.related",
      "bookUrl": "https://reader.browser.miui.com/api/v2/book/{{$.id}}",
      "coverUrl": "$.image",
      "intro": "$.description",
      "kind": "$.tags",
      "lastChapter": "发布源站：{{$.cp}}",
      "name": "$.title",
      "wordCount": "$.status"
    },
    "ruleToc": {
      "chapterList": "@js:\nlet u = baseUrl.replace('list','content')\n\nlet v = [];\nlet list = [];\nJSON.parse(result).data.list.map($=>{\n\n//分卷判定\n\t\tV = $.volumeTitle\n\t\tif(v[v.length-1]!=V&&!/^\\s*$/.test(V)){\n\t\t\t\tv.push(V)\n\t\t\t\tlist.push({\n\t\t\t\t\t\tname: '📖['+V+']📖',\n\t\t\t\t\t\tvolume: true\n\t\t\t\t\t})\n\t\t\t}\n\n\t\treturn list.push({\n\t\t\t\tname: $.chapterName,\n\t\t\t\turl: u+'?chapterId='+$.chapterId+'&volumeId=1',\n\t\t\t\tinfo: '更新时间：'+java.timeFormatUTC($.updateTime*1000,'yyyy-MM-dd HH:mm',12)\n\t\t\t});\n\t});\nv.length<2?list.filter($=>!$.volume):list",
      "chapterName": "name",
      "chapterUrl": "url",
      "isVolume": "volume",
      "updateTime": "info"
    },
    "searchUrl": "https://reader.browser.miui.com/api/v2/search/word?query={{key}}&size=100",
    "weight": 0
  },
  {
    "bookSourceComment": "备用地址：https://sma.yueyouxs.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "阅友小说 #一程",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.suixkan.com#♤yc",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 279,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "[{\"title\":\"推荐\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"重磅推荐\",\"url\":\"/l/s/28/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"男生必读\",\"url\":\"/l/s/29/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"女生爱看\",\"url\":\"/l/s/30/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"小编推荐\",\"url\":\"/l/s/31/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"男频\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"都市人生\",\"url\":\"/l/f/1100/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/l/f/1101/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠仙侠\",\"url\":\"/l/f/1102/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"军事历史\",\"url\":\"/l/f/1103/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻末世\",\"url\":\"/l/f/1104/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏体育\",\"url\":\"/l/f/1105/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"热血青春\",\"url\":\"/l/f/1106/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑灵异\",\"url\":\"/l/f/1107/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"脑洞大开\",\"url\":\"/l/f/1108/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"女频\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"现代言情\",\"url\":\"/l/f/2100/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古代言情\",\"url\":\"/l/f/2101/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"幻想言情\",\"url\":\"/l/f/2102/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"\",\"url\":\"/l/f/2103/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"穿越时空\",\"url\":\"/l/f/2104/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"宫闱争斗\",\"url\":\"/l/f/2105/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"豪门总裁\",\"url\":\"/l/f/2106/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"婚恋爱情\",\"url\":\"/l/f/2107/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"经商种田\",\"url\":\"/l/f/2108/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"图书\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"出版读物\",\"url\":\"/l/f/3101/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"文学小说\",\"url\":\"/l/f/3102/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古代典籍\",\"url\":\"/l/f/3103/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "header": "",
    "lastUpdateTime": 1753731848574,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 811,
    "ruleBookInfo": {
      "author": ".face-info span.0@text##.*：",
      "canReName": "",
      "coverUrl": ".face-cover img@src",
      "init": "",
      "intro": "#intro@html",
      "kind": ".face-info span.1:3@text##.*：",
      "lastChapter": ".chapter-entrance@text",
      "name": ".face-info-title@text",
      "tocUrl": ".sumchapter a@href",
      "wordCount": ".face-info span.2@text##.*："
    },
    "ruleContent": {
      "content": ".con@html",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "##[\\(（]本章未完.*[）\\)]|[\\(（]本章完[）\\)]",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": ".v-author@text##\\s",
      "bookList": ".v-list-item",
      "bookUrl": "@onclick@js:result.match(/\\('(.*?)'\\)/)[1]",
      "coverUrl": "img@src",
      "intro": ".v-intro@text",
      "kind": "",
      "lastChapter": "",
      "name": ".v-title@text",
      "wordCount": ".v-words@text"
    },
    "ruleSearch": {
      "author": ".v-author@text##\\s",
      "bookList": ".v-list-item",
      "bookUrl": "@onclick@js:result.match(/\\('(.*?)', '', ''\\)/)[1]",
      "coverUrl": "img@src",
      "intro": ".v-intro@text",
      "kind": ".base-label@text",
      "lastChapter": "",
      "name": ".v-title@text",
      "wordCount": ".v-words@text"
    },
    "ruleToc": {
      "chapterList": ".catalog_ls li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "/s/1.html?keyword={{key}}&page={{page}}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "呗言情网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.123yqw.com",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 280,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1733304315625,
    "loginUrl": "",
    "respondTime": 6431,
    "ruleBookInfo": {
      "author": "#info@p.0@a@text",
      "coverUrl": "img@src",
      "intro": "id.intro@html",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content",
      "lastChapter": "id.info@tag.p.3@a@text",
      "name": "#info@h1@text",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "id.content@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.s4@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "checkKeyWord": "我有一剑",
      "kind": "class.s1@text##\\[|]",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text"
    },
    "ruleToc": {
      "chapterList": "id.list@dd@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://www.123yqw.com/search/{{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "东滩小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.dongtanxs.com##",
    "customButton": false,
    "customOrder": 281,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 13) AppleWebKit/537.36\"}",
    "lastUpdateTime": 1787413443390,
    "respondTime": 954,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:status\"]@content&&[property=\"og:novel:category\"]@content&&[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "#content@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author@text##.*?：",
      "bookList": ".bookbox",
      "bookUrl": "h4@a@href",
      "intro": "img@src",
      "kind": ".cat@text##.*?：",
      "lastChapter": ".update@a@text",
      "name": "h4@text"
    },
    "ruleToc": {
      "chapterList": "dl dd + dt ~ dd a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/s.php?ie=utf-8&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "精武小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.jingwuxs.com",
    "bookUrlPattern": "https://www.jingwuxs.com/book/\\d+/",
    "customButton": false,
    "customOrder": 282,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/fenlei/1/{{page}}/\n奇幻小说::/fenlei/2/{{page}}/\n武侠小说::/fenlei/3/{{page}}/\n仙侠小说::/fenlei/4/{{page}}/\n都市小说::/fenlei/5/{{page}}/\n军事小说::/fenlei/6/{{page}}/\n历史小说::/fenlei/7/{{page}}/\n游戏小说::/fenlei/8/{{page}}/\n竞技小说::/fenlei/9/{{page}}/\n科幻小说::/fenlei/10/{{page}}/\n悬疑小说::/fenlei/11/{{page}}/\n灵异小说::/fenlei/12/{{page}}/\n其他小说::/fenlei/13/{{page}}/\n古代小说::/fenlei/14/{{page}}/\n仙侠小说::/fenlei/15/{{page}}/\n现代小说::/fenlei/16/{{page}}/\n浪漫小说::/fenlei/17/{{page}}/\n玄幻小说::/fenlei/18/{{page}}/\n悬疑小说::/fenlei/19/{{page}}/\n科幻小说::/fenlei/20/{{page}}/\n游戏小说::/fenlei/21/{{page}}/\nBL  小说::/fenlei/22/{{page}}/\nGL  小说::/fenlei/23/{{page}}/\n二次小说::/fenlei/24/{{page}}/\n热门小说::/rank/allvisit/",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 10;  Build/QP1A.190711.020) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1787417758588,
    "respondTime": 9686,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content&&\n[property=\"og:novel:status\"]@content&&\n[property=\"og:novel:update_time\"]@content",
      "lastChapter": "{{@@[property$=chapter_name]@content}}･{{@@[property$=update_time]@content##\\s.*}}\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求含理更谢乐发推票盟补加字Kk\\/].*/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "text.章节目录@href",
      "wordCount": "id.info@class.visible-xs.1@text"
    },
    "ruleContent": {
      "content": "id.content@p@html",
      "nextContentUrl": "id.next_url@href",
      "replaceRegex": "##搜索.*免费阅读！|本章未完，点击下一页继续阅读。"
    },
    "ruleExplore": {
      "author": "class.btm@a@text",
      "bookList": "class.item",
      "bookUrl": "a.0@href",
      "coverUrl": "class.image@img@src||a.0@href##/book_((\\d+)\\d{3})/##http://www.5scw.com/images/$2/$1/$1s.jpg",
      "intro": "dl@dd@text",
      "kind": "class.blue@text",
      "name": "tag.dt@a@text",
      "wordCount": "class.orange@text"
    },
    "ruleSearch": {
      "author": "span.0@text",
      "bookList": ".item",
      "bookUrl": "a.0@href##www\\.xjwxsw\\.com##www.jingwuxs.com",
      "coverUrl": "img@src",
      "intro": "dd@text",
      "kind": "{{@@span.s1@text##\\[|\\]}}\n{{@@span.s5@text}}",
      "name": "a@text"
    },
    "ruleToc": {
      "chapterList": "id.content_1@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value||text.下一页@href"
    },
    "searchUrl": "/?q={{key}}&site=1,{'webView': true}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "八块小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.8kbook.com",
    "customButton": false,
    "customOrder": 284,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "言情::http://www.8kbook.com/1/{{page}}.html\n都市::http://www.8kbook.com/2/{{page}}.html\n玄幻::http://www.8kbook.com/3/{{page}}.html\n仙侠::http://www.8kbook.com/4/{{page}}.html\n武侠::http://www.8kbook.com/5/{{page}}.html\n穿越::http://www.8kbook.com/6/{{page}}.html\n历史::http://www.8kbook.com/7/{{page}}.html\n军事::http://www.8kbook.com/8/{{page}}.html\n科幻::http://www.8kbook.com/9/{{page}}.html\n恐怖::http://www.8kbook.com/10/{{page}}.html\n推理::http://www.8kbook.com/11/{{page}}.html\n游戏::http://www.8kbook.com/12/{{page}}.html\n体育::http://www.8kbook.com/13/{{page}}.html\n耽美::http://www.8kbook.com/14/{{page}}.html\n同人::http://www.8kbook.com/15/{{page}}.html\n名著::http://www.8kbook.com/16/{{page}}.html\n激情::http://www.8kbook.com/17/{{page}}.html\n其他::http://www.8kbook.com/18/{{page}}.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36\"}",
    "lastUpdateTime": 1786781091012,
    "respondTime": 26099,
    "ruleBookInfo": {
      "author": "id.author@text##上传者：",
      "coverUrl": "class.fm@tag.img.0@src",
      "intro": "id.jj@text##内容简介",
      "name": "tag.h1@text##上传者：.+"
    },
    "ruleContent": {
      "content": "class.chapter@textNodes",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {
      "author": "class.tj@tag.label.0@text##上传者：",
      "bookList": "id.sort_newbook@class.sort_list",
      "bookUrl": "class.title@tag.a@href",
      "coverUrl": "class.sort_list@tag.img@src",
      "intro": "class.intro@text##简介：",
      "kind": "class.tj@tag.label.3@text##分类：",
      "name": "class.title@tag.a@text##《|》"
    },
    "ruleSearch": {
      "author": "@js:'网友上传'",
      "bookList": "class.list@tag.tbody",
      "bookUrl": "class.name@tag.a@href",
      "coverUrl": "class.cover@tag.img@src",
      "intro": "class.intro@text##电子书简介：",
      "name": "class.name@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "class.list-item@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.8kbook.com/search.php?keyword={{key}}&submit=%CB%D1+%CB%F7,{\n\"charset\":\"gb2312\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "何以笙箫",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.yetianlian.net",
    "customButton": false,
    "customOrder": 285,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787467681799,
    "respondTime": 2779,
    "ruleBookInfo": {
      "author": "class.small@tag.span.0@text",
      "intro": "class.intro@text",
      "kind": "class.small@tag.span.1@text",
      "lastChapter": "class.last@tag.a@text",
      "name": " class.info@tag.h2@text",
      "wordCount": "class.small@tag.span.3@text"
    },
    "ruleContent": {
      "content": "class.showtxt@html",
      "nextContentUrl": "text.下一章@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.bookinfo@class.author@text",
      "bookList": "class.bookbox",
      "bookUrl": "class.bookname@tag.a@href",
      "coverUrl": "tag.img@src",
      "kind": "class.bookinfo@class.cat@text",
      "lastChapter": "class.bookinfo@class.update@tag.a@text",
      "name": "class.bookname@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "class.listmain@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.yetianlian.net/s.php?ie=utf-8&q={{key}}",
    "weight": 1
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "八零小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.80ge.info/",
    "bookUrlPattern": "http://wap.80ge.info/\\d+/",
    "customButton": false,
    "customOrder": 286,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"全本小说\",\"url\":\"/top/full-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日点击榜\",\"url\":\"/top/dayvisit-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周点击榜\",\"url\":\"/top/weekvisit-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月点击榜\",\"url\":\"/top/monthvisit-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总点击榜\",\"url\":\"/top/allvisit-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总收藏榜\",\"url\":\"/top/goodnum-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"字数排行\",\"url\":\"/top/size-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日推荐榜\",\"url\":\"/top/dayvote-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周推荐榜\",\"url\":\"/top/weekvote-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月推荐榜\",\"url\":\"/top/monthvote-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总推荐榜\",\"url\":\"/top/allvote-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最新入库\",\"url\":\"/top/postdate-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最近更新\",\"url\":\"/top/lastupdate-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"男生分类推荐\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1.00}},{\"title\":\"修真\",\"url\":\"/class3-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"魔法\",\"url\":\"/class13-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异术\",\"url\":\"/class1-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"东方\",\"url\":\"/class12-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"争霸\",\"url\":\"/class14-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠\",\"url\":\"/class15-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"未来\",\"url\":\"/class9-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"灵异\",\"url\":\"/class10-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"探险\",\"url\":\"/class22-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"传记\",\"url\":\"/class6-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"特种\",\"url\":\"/class7-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游\",\"url\":\"/class16-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"竞技\",\"url\":\"/class8-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女生分类推荐\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1.00}},{\"title\":\"女强\",\"url\":\"/class2-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"婚姻\",\"url\":\"/class4-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"百合\",\"url\":\"/class5-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"唯美\",\"url\":\"/class24-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越\",\"url\":\"/class17-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"贵族\",\"url\":\"/class18-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"校园\",\"url\":\"/class19-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"布衣\",\"url\":\"/class20-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"商战\",\"url\":\"/class21-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"间谍\",\"url\":\"/class23-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"同人\",\"url\":\"/class11-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"文集\",\"url\":\"/class25-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1787411758772,
    "respondTime": 3209,
    "ruleBookInfo": {
      "author": "text.作者@text##作者：",
      "coverUrl": "img@src",
      "intro": ".intro_info@text##最新章节推荐地址.*",
      "kind": "text.分类@text##分类：",
      "lastChapter": "p.-1@text",
      "name": "a.1@text",
      "tocUrl": "text.查看更多章节@href",
      "wordCount": "p[-2:-3]@text"
    },
    "ruleContent": {
      "content": "#nr1@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##求书网.*|txt下载.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "ownText##.*\\/",
      "bookList": ".line",
      "bookUrl": "a@href",
      "coverUrl": "a@href##/((\\d+)\\d{3})/##http://wap.80ge.info/$2/$1/$1s.jpg",
      "kind": "ownText##\\[|\\].*",
      "name": "a@text"
    },
    "ruleToc": {
      "chapterList": "dl dd a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value||text.下一页@href"
    },
    "searchUrl": "/modules/article/search.php,{\n  \"body\": \"searchkey={{key}}&searchtype=articlename\",\n  \"charset\": \"UTF-8\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "阅文集团",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.yuewen.com#🎃",
    "customButton": false,
    "customOrder": 287,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "jsLib": "const encryptKeys = {\n  headers: {\n    QDSign: {\n      key: \"{1dYgqE)h9,R)hKqEcv4]k[h\",\n      iv: \"01234567\"\n    },\n    QDInfo: {\n      key: \"0821CAAD409B84020821CAAD\",\n      iv: String.fromCharCode(0, 0, 0, 0, 0, 0, 0, 0)\n    }\n  }\n}\n\nfunction getDeviceId(java, source) {\n  if (!java || !source) {\n    java = this.java\n    source = this.source\n  }\n  let sVar = JSON.parse(!Packages.android.text.TextUtils.isEmpty(source.getVariable()) ? source.getVariable() : \"{}\")\n  if (!sVar.deviceid) {\n    let temp = \"\"\n    let chr = \"0123456789abcdef\".split(\"\")\n    for (let i = 0; i < 16; i++) { temp = temp + chr[Math.floor(Math.random() * chr.length)]}\n    java.log(temp)\n    sVar.deviceid = temp\n    source.setVariable(JSON.stringify(sVar, null, 2))\n    return temp\n  }\n  return sVar.deviceid\n}\n\nfunction QDSign(path, params, page, dmode) {\n  /*\n     为保护作者人身氨醛，本函数不包含付费正文的核心请求头检查，只有基础过检测\n    \t 基本够正常使用，如果你有实力可以把其他头(gorgon一类的)自己补全\n  */\n  const { java, source } = this\n  let a = params.sort().join(\"&\").replace(/\\$page/gi, page)\n  let t = Date.now()\n\n  // Sign参数\n  let sign = \"Rv1rPTnczce|\" + t + \"||||||\" + java.md5Encode(a.toLowerCase())\n  let Sign = java.tripleDESEncodeBase64Str(sign, encryptKeys.headers.QDSign.key, \"CBC\", \"PKCS5Padding\", encryptKeys.headers.QDSign.iv)\n\n  // Info参数\n  let id = getDeviceId(java, source)\n  let info = id + \"||||||1||999|\" + t\n  let Info = java.tripleDESEncodeBase64Str(info, encryptKeys.headers.QDInfo.key, \"CBC\", \"PKCS5Padding\", encryptKeys.headers.QDInfo.iv)\n\n  if (dmode) {\n    return {\n      url: \"https://druidv6.if.qidian.com/argus/api/\" + path + \"?\" + a,\n      headers: {\n        QDSign: Sign,\n        QDInfo: Info,\n        tstamp: String(t)\n      }\n    }\n  }\n  // Url拼接\n  return \"https://druidv6.if.qidian.com/argus/api/\" + path + \"?\" + a + \",\" + JSON.stringify({\n    headers: {\n      QDSign: Sign,\n      QDInfo: Info,\n      tstamp: String(t)\n    }\n  })\n}\n\nvar ji = new JavaImporter()\nji.importPackage(Packages.okhttp3)\nwith(ji) {\n  function getBytes(url, headers) {\n    let client = new OkHttpClient()\n\n    let requestBuilder = new Request.Builder()\n      .url(url)\n      .get()\n\n    // 添加请求头\n    for (let headerName in headers) {\n      requestBuilder.addHeader(headerName, headers[headerName])\n    }\n\n    let request = requestBuilder.build()\n    let response = client.newCall(request).execute()\n\n    try {\n      // 处理响应\n      let responseBody = response.body().bytes()\n      return responseBody\n    } finally {\n      response.close()\n    }\n  }\n}\n\nfunction dContentQD(cid, body) {\n  const { java, source } = this\n  let aid = getDeviceId(java, source)\n  let sha1 = \"0\" + aid + cid + \"2EEE1433A152E84B3756301D8FA3E69A\"\n  let key0 = java.HMacBase64(sha1, \"HMAC-SHA1\", aid).slice(0, -4)\n  let key1 = java.base64Decode(\"BjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Ng==\")\n  let key2 = java.md5Encode(key1 + key0 + aid)\n  let key3 = java.hexDecodeToByteArray(\"6c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c\" + key2)\n\n  let md5 = Packages.cn.hutool.crypto.digest.DigestUtil.md5(key3)\n  let B = Packages.android.util.Base64\n  let key = B.encodeToString(md5, B.NO_WRAP)\n  let iv = java.base64Decode(\"AAAAAAAAAAA=\")\n\n  return java.createSymmetricCrypto(\"DESede/CBC/PKCS5Padding\", key0, iv).decryptStr(java.createSymmetricCrypto(\"DESede/CBC/PKCS5Padding\", key, iv).decrypt(Array.from(body).slice(8, -16)))\n}\n\nfunction getLoginHeader() {\n  const { source } = this\n  return JSON.parse(!Packages.android.text.TextUtils.isEmpty(source.getLoginHeader()) ? source.getLoginHeader().slice(0, -1) : \"{}\")\n}\n\nfunction putLoginHeader(data) {\n  const { source } = this\n  source.putLoginHeader(\n    JSON.stringify(data) + \"_\" // prevent default: 防止阅读将登录头数据加到请求头里\n  )\n}",
    "lastUpdateTime": 1785891076969,
    "loginUi": "[\n{\n  type: \"button\",\n  name: \"                               起点相关                                 \",\n  action: \"empty()\"\n},\n{\n  type: \"button\",\n\tname: \"       [浏览器登录]       \",\n\taction: \"proxyExcWrapper(browserLogin)\"\n},\n{\n  type: \"button\",\n\tname: \"      [凭据登录]       \",\n\taction: \"proxyExcWrapper(tokenLogin)\"\n},\n{\n  type: \"text\",\n  name: \"ywguid\"\n},\n{\n  type: \"password\",\n  name: \"ywkey\"\n}\n]",
    "loginUrl": "<js>\nfunction browserLogin() {\n  try {\n    java.startBrowserAwait(\n      \"https://qidian.com\", \n      \"登录\"\n    )\n  } catch (e) {}\n  let ywkey = cookie.getKey(\"qidian.com\", \"ywkey\")\n  let ywguid = cookie.getKey(\"qidian.com\", \"ywguid\")\n  putLoginHeader({\n  \t  guid: ywguid,\n  \t  key: ywkey\n  })\n  cookie.removeCookie(\"qidian.com\")\n  // java.toast(\"没做完:(\")\n}\n\nfunction login() {}\n\nfunction tokenLogin() {\n  if (source.getLoginInfoMap() == null) {\n    java.toast(\"未获取到LoginInfoMap，请尝试重新打开登录UI再按一遍\")\n  }\n  putLoginHeader({\n    guid: source.getLoginInfoMap()[\"ywguid\"],\n    key: source.getLoginInfoMap()[\"ywkey\"]\n  })\n  java.toast(\"凭据保存成功\")\n}\n\nfunction proxyExcWrapper(fun) {\n  try {\n    fun()\n  } catch (e) {\n    java.log(e.toString() + \"\\n\" + e.stack)\n  }\n}\n\nfunction empty() {\n  java.toast(\"别点了，用来看的\")\n}\n</js>",
    "respondTime": 1311,
    "ruleBookInfo": {
      "author": "Author",
      "coverUrl": "https://bookcover.yuewen.com/qdbimg/349573/{{$.BookId}}/600.webp",
      "init": "<js>\nvar Regs = [/bookId=(\\d+)/i, /\\.com\\D+?\\/(\\d+)/i, /(\\d+)/i];\nvar bookId = \"\";\nfor (let Reg of Regs) {\n    let mat = baseUrl.match(Reg);\n    if (mat) {\n        bookId = mat[1];\n        break;\n    }\n}\njava.ajax(QDSign(\"v2/bookdetail/get\", [\n    \"bookId=\" + bookId\n]))\n</js>\n$.Data",
      "intro": "<p>{{$.Description}}",
      "kind": "{{java.getString(\"$..IsInBlackList\")==1?\"非限免\":\"限免\"}}|{{$.BookStatus##完本##完结}}|{{String(java.timeFormat(java.getString(\"LastVipChapterUpdateTime\")==0?java.getString(\"LastChapterUpdateTime\"):java.getString(\"LastVipChapterUpdateTime\"))).replace(/\\s*\\d+:\\d+/,\"\")}}\n{{(java.getString(\"$.WordsCnt\")/10000).toFixed(1)+\"万\"}}\n{{$.CategoryName}}|{{$.SubCategoryName}}\n<js>##(?m)\\|$</js>",
      "lastChapter": "{{$.LastVipUpdateChapterName||$.LastUpdateChapterName}}",
      "name": "BookName",
      "tocUrl": "BookId\n<js>java.base64Encode(result)</js>\ndata:bookId;base64,{{result}},{\"type\":\"ywc\"}"
    },
    "ruleContent": {
      "content": "<js>\nlet info = JSON.parse(java.hexDecodeToString(result))\n\nlet content = \"\"\nlet header = getLoginHeader()\n\nswitch (info.source) {\n  case \"qd\":\n    let bid = java.hexDecodeToString(java.ajax(book.tocUrl))\n    let cid = info.cid\n    if (info.isVip) {\n      let url = `https://static.yesui.me/api/content1.php?bookId=${bid}&chapterId=${cid}`\n      java.log(url)\n      result=java.ajax(url)\n      java.log(result)\n      content=JSON.parse(result).content\n      \n    } else {\n      let request = QDSign(\"v2/bookcontent/safegetcontent\", [\n        \"bookId=\" + bid,\n        \"chapterId=\" + cid\n      ], \"\", true)\n\n      let body = getBytes(request.url, request.headers)\n      let decrypt = dContentQD(cid, body)\n      let raw = JSON.parse(decrypt)\n      let cArr = raw.Content.split(\"\\r\\n\")\n      let blocks = {}\n      for (let i of raw.Blocks) {\n        blocks[i.Sort] = i\n      }\n      for (let i = 0; i < cArr.length; i++) {\n        content += cArr[i] + \"\\n\"\n        if (blocks[i + 1] && blocks[i + 1].Type == \"image\") content += `<img src=\"${blocks[i + 1].Url}\">\\n`\n      }\n    }\n}\n\ncontent\n</js>",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "AuthorName||Author",
      "bookList": ".BookCard&&Data.Books&&Data.Data.Items||Data.RankBookList",
      "bookUrl": "https://druid.if.qidian.com/argus/api/v2/bookdetail/get?bookId={{$.BookId}}",
      "coverUrl": "https://bookcover.yuewen.com/qdbimg/349573/{{$.BookId}}/600.webp",
      "intro": "Description||Desc",
      "kind": "{{$.ActionStatusString||$.BookStatus##完本##完结}}\n{{(java.getString(\"$.WordsCount\")/10000).toFixed(1)+\"万\"}}\n{{$.CategoryName}}|{{$.SubCategoryName}}\n<js>##(?m)\\|$</js>",
      "name": "BookName"
    },
    "ruleToc": {
      "chapterList": "@js:\nbookId = java.hexDecodeToString(result);\n$ = JSON.parse(java.ajax(QDSign(\"v1/chapterlist/chapterlist\", [\n    \"bookId=\" + bookId\n])))[\"Data\"];\nv_Names = {};\nc_Array = [];\nc_Json = {};\n\n\nfunction b64Url(item_id) {\n    return `data:chapterId;base64,${java.base64Encode(item_id)},{\"type\":\"ywc\"}`;\n}\n\n\nfunction push(vc, a, b, c, d, e, f) {\n    let list = c_Json[vc];\n    if(!list) c_Json[vc] = list = [];\n    // if (!e==1 || false) return\n    list.push({\n        \"ChapterName\": a || \"\",\n        \"isVolume\": b || false,\n        \"chapterUrl\": c ? b64Url(\n          JSON.stringify({\n            source: \"qd\",\n            cid: c || null,\n            isVip: e==1 || false,\n            isPay: f==1 || false,\n            ccid: null,\n            cbid: null\n          })) : \"\",\n        \"ChapterInfo\": d || \"\",\n        \"isVip\": e==1 || false,\n        \"isPay\": f==1 || false\n    });\n}\n\n\nlet t_List = $.Volumes;\nfor (let $$ of t_List) {\n\t  let Vc = $$.VolumeCode;\n    v_Names[Vc] = $$.VolumeName;\n    c_Json[Vc] = [];\n    if (t_List.length > 1) {\n        push(Vc, $$.VolumeName, true);\n    }\n}\n\n\nt_List = $.Chapters.slice(1);\nfor (let $$ of t_List) {\n    let c_name = v_Names[$$.Vc] || \"未知分卷\";\n    let c_time = java.timeFormatUTC($$.T, 'yyyy-MM-dd HH:mm:ss', 12);\n    let c_word = $$.W + \"字\";\n    let c_info = [c_name, c_time, c_word].join(\"丨\");\n    push($$.Vc, $$.N, false, $$.C, c_info, $$.V, $$.P);\n}\n\n\nfor(let i in c_Json){\nc_Array = c_Array.concat(c_Json[i]);\n}\nc_Array;",
      "chapterName": "ChapterName",
      "chapterUrl": "chapterUrl",
      "isPay": "isPay",
      "isVip": "isVip",
      "isVolume": "isVolume",
      "updateTime": "ChapterInfo"
    },
    "searchUrl": "@js:\nQDSign(\"v1/booksearch/searchbooks\", [\n    \"keyword=\" + key,\n    \"pageIndex=\" + page,\n    \"pageSize=20\"\n])",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "安保小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.2kxs.info/",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 288,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1733687272555,
    "loginUrl": "",
    "respondTime": 3217,
    "ruleBookInfo": {
      "author": "tag.h3.0@tag.a.0@text",
      "coverUrl": "class.pannel-body info@class.info1@tag.img.0@src",
      "init": "",
      "intro": "class.pannel-body info@tag.p.0@textNodes",
      "kind": ".panel-body.text-center.info3@p.0:1@text<js>##小说类别：|写作状态：|最后更新：</js><js>##\\s\\/\\s##,</js>",
      "lastChapter": "class.panel-body text-center info3@tag.p.2@a@text",
      "name": "tag.h1@text"
    },
    "ruleContent": {
      "content": "class.panel-body content-body content-ext@textNodes"
    },
    "ruleExplore": {
      "bookList": ""
    },
    "ruleSearch": {
      "author": "tag.tr@tag.p.1@tag.a.0@text||tag.h3.0@tag.a.0@text",
      "bookList": "//*[@id=\"bookcon\"]//tr",
      "bookUrl": "tag.tr@tag.p.0@tag.a.0@href",
      "coverUrl": "",
      "kind": "tag.tr@tag.p.3@text||tag.p.1@text##.*状态：",
      "lastChapter": "",
      "name": "tag.tr@tag.p.0@tag.a.0@text||tag.h1@text"
    },
    "ruleToc": {
      "chapterList": "class.list-group list-charts.0@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "modules/article/search.php?searchkey={{key}}&submit=搜索",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "阴阳代理",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xyinyangdailiren.com#🎃",
    "customButton": false,
    "customOrder": 289,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787414435300,
    "respondTime": 1124,
    "ruleBookInfo": {
      "author": "class.info@class.small@tag.span.0@text",
      "coverUrl": "class.cover@img@src",
      "intro": "class.info@ownText",
      "kind": "class.info@class.small@tag.span.4@text&&\nclass.info@class.small@tag.span.1@text&&\nclass.info@class.small@tag.span.2@text##分类：|状态：|更新时间：",
      "lastChapter": "class.info@class.small@tag.span.5@a@text",
      "name": "class.info@h2@text",
      "wordCount": "class.info@class.small@tag.span.3@text##字数："
    },
    "ruleContent": {
      "content": "id.content@html##http.*html|请记住本书首发.*org",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.author@text",
      "bookList": "class.bookbox",
      "bookUrl": "h4@a@href",
      "coverUrl": "img@src",
      "lastChapter": "class.update@a@text",
      "name": "h4@a@text"
    },
    "ruleToc": {
      "chapterList": "class.listmain@dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://www.xyinyangdailiren.com/s.php?ie=utf-8&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "恩京书房",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.enjing.net#🎃",
    "customButton": false,
    "customOrder": 290,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1720554591487,
    "respondTime": 2761,
    "ruleBookInfo": {
      "author": "p.0@text",
      "canReName": "1",
      "coverUrl": "[class$=img]@img@src",
      "intro": "[class^=describe]>:not(div)@html##.*恩.{,5}京.{,5}书,{,5}房.*",
      "kind": "p.1:2:3@text##.*：\n<js>##、##,</js>",
      "lastChapter": "p.4@a@text",
      "name": "[class*=book-describe]@h1@text",
      "tocUrl": ".downbtn@href"
    },
    "ruleContent": {
      "content": "@js:\nb = baseUrl;\nif (/download\\.php/.test(b)) {\n  String(java.getString('.download@html')).replace(/<.*?href=\"(.*?)\".*?>(.*?)<.*?>/g,'\\n$2：$1\\n');\n} else {\n  java.getString('#nr1@html');\n};",
      "nextContentUrl": ".next.0@a@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "{{\"恩京的书房\"}}",
      "bookList": ".cat-search-item,.post",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": "p.1@text",
      "kind": "p!1@a@text",
      "name": "a[target]@text"
    },
    "ruleToc": {
      "chapterList": "@js:\nb = baseUrl;\nif (/download\\.php/.test(b)) {\n  JSON.parse(`[{\"text\": \"下载地址\", \"href\": \"${b}\"}]`);\n} else {\n  java.getElements('.book-list@li@a');\n};",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/<,page/{{page}}/>?s={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "御书屋#3",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.yuzhai.info",
    "bookUrlPattern": "https://m.yuzhai.info/yu/\\d+/",
    "concurrentRate": "3",
    "customButton": false,
    "customOrder": 291,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "快穿::/tag/kc/{{page}}.html&&美攻::/tag/mg/{{page}}.html&&肉文::/tag/rw/{{page}}.html&&年下::/tag/nx/{{page}}.html&&年上::/tag/ns/{{page}}.html&&生子::/tag/sz/{{page}}.html&&人兽::/tag/rs/{{page}}.html&&强强::/tag/qq/{{page}}.html&&穿越::/tag/cy/{{page}}.html&&双性::/tag/sx/{{page}}.html&&强受::/tag/qs/{{page}}.html&&ABO::/tag/abo/{{page}}.html&&重生::/tag/cs/{{page}}.html&&HP::/tag/hp/{{page}}.html&&虐文::/tag/nw/{{page}}.html&&温馨::/tag/wx/{{page}}.html&&NP::/tag/np/{{page}}.html&&父子::/tag/fz/{{page}}.html&&兄弟::/tag/xd/{{page}}.html&&萌文::/tag/mw/{{page}}.html&&BE::/tag/be/{{page}}.html&&末世::/tag/ms/{{page}}.html&&人鱼::/tag/ry/{{page}}.html&&师生::/tag/ss/{{page}}.html&&网游::/tag/wy/{{page}}.html&&娱乐圈::/tag/ylq/{{page}}.html&&高干::/tag/gg/{{page}}.html&&金手指::/tag/jsz/{{page}}.html&&反攻::/tag/fg/{{page}}.html&&诱受::/tag/ys/{{page}}.html&&种田::/tag/zt/{{page}}.html&&SM调教::/tag/sm/{{page}}.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; wv) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1787070212768,
    "respondTime": 17024,
    "ruleBookInfo": {
      "author": "@css:.article_info_td h2@text",
      "coverUrl": "[property$=image]@content||img@src",
      "intro": "@css:#novelMain pre@text",
      "kind": "@css:.article_info_td a[title=\"BL\"]@text",
      "lastChapter": "//td[@class=\"article_info_td\"][1]/div[3]/a/text()",
      "name": "@css:.h_nav_items li:nth-of-type(2)@text",
      "tocUrl": "@css:.chapterList a[style=\"color:red;\"]@href",
      "wordCount": "//td[@class=\"article_info_td\"][2]/div[2]/text()##字数："
    },
    "ruleContent": {
      "content": "@css:#nr1 p@text",
      "nextContentUrl": "//a[@id=\"pt_next\" and text()=\"下一页\"]/@href"
    },
    "ruleExplore": {
      "author": "//p[1]/strong/text()",
      "bookList": "//*[@class=\"common-bookele\"]",
      "bookUrl": "@css:h3>a@href",
      "intro": "@css:.abstract>a@text",
      "name": "//h3/a/text()"
    },
    "ruleSearch": {
      "author": "//p[1]/strong/text()",
      "bookList": "//*[@class=\"common-bookele\"]",
      "bookUrl": "@css:h3>a@href",
      "intro": "@css:.abstract>a@text",
      "name": "//h3/a/text()"
    },
    "ruleToc": {
      "chapterList": "@css:ul a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "//select/option[not(@selected)]/@value"
    },
    "searchUrl": "/search/,{\n  \"body\": \"searchkey={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "企鹅小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.qiexs.cc",
    "bookUrlPattern": "http://www.qiexs.com/xiaoshuo/\\d+.html",
    "customButton": false,
    "customOrder": 292,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1780934857472,
    "respondTime": 7187,
    "ruleBookInfo": {
      "author": "class.booktag@tag.a.0@text",
      "coverUrl": "class.text-muted@tag.img@src",
      "intro": "class.text-muted@text##\\s+积分规则\\s*[\\u4e00-\\u9fa5]{0,4}推荐阅读",
      "kind": "class.booktag@tag.a.1@text",
      "lastChapter": "class.text-danger@text##\\s*查看全部章节",
      "name": "h1@text",
      "wordCount": "class.booktag@tag.span.0@text##字数："
    },
    "ruleContent": {
      "content": "class.panel-body contents@tag.p@text",
      "nextContentUrl": "class.btn btn-default next_ye@href",
      "replaceRegex": "##.*最新章节.*([企鹅]|[小说]|[域名]|[章节]){2,}[^\\u4e00-\\u9fa5]+|喜欢看[\\u4e00-\\u9fa5]{2,9}.*吗.*那就记住.*([章节])[^\\u4e00-\\u9fa5]+",
      "title": "class.readTitle@text"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.booktag@text",
      "bookList": "class.panel panel-default@class.col-md-10",
      "bookUrl": "class.bookTitle@tag.a@href",
      "checkKeyWord": "我的",
      "coverUrl": "class.bookTitle@tag.a@href\n@js: \nlet match = result.match(/(\\d+)/);\nlet number = match ? parseInt(match[0]) : 0;\n\nlet a;\nlet b = number - 100;\nif (b < 1000) { a = 0; } else { a = Math.floor(b / 1000); }\n\nlet jieguo = \"http://www.qiexs.com/images/\" + a + \"/\" + b + \"/\" + b + \"s.jpg\";\nlet jieguo1 = \"http://www.qiexs.com/images/\" + a + \"/\" + b + \"/\" + b + \"s.jpeg\";\nlet jieguo2 = \"http://www.qiexs.com/images/\" + a + \"/\" + b + \"/s.jpg\";\njieguo || jieguo1 || jieguo2",
      "intro": "class.text-muted hidden-xs@text",
      "lastChapter": "class.text-danger@text",
      "name": "class.bookTitle@text"
    },
    "ruleToc": {
      "chapterList": "class.panel-body panel-chapterlist.1@class.col-md-3",
      "chapterName": "tag.dd@tag.a@text",
      "chapterUrl": "class.col-md-3@tag.a@href"
    },
    "searchUrl": "{{url=source.getKey();\ncookie.removeCookie(url)}}/search/,{\n  \"body\": \"keyword={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "歌书网吧#3",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.gashuw.net",
    "customButton": false,
    "customOrder": 293,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787068831271,
    "respondTime": 1196,
    "ruleBookInfo": {
      "author": "text.作者：@text",
      "coverUrl": "img@src",
      "intro": ".tabcontent@.tabvalue.0@text",
      "kind": ".tabcontent@tbody@tr.0@td.0@text##类 别：",
      "name": "text.txt下载.-2@text##txt下载",
      "tocUrl": ".ulrow@a.0@href",
      "wordCount": ".tabcontent@tbody@tr.0@td.1@text##字 数："
    },
    "ruleContent": {
      "content": "#content@textNodes##www.gebiqu.com"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".odd.1@text",
      "bookList": "#nr",
      "bookUrl": "a.0@href",
      "kind": ".even.-1@text",
      "lastChapter": ".even.0@text",
      "name": ".odd.0@text",
      "wordCount": ".even.-2@text"
    },
    "ruleToc": {
      "chapterList": "dl dd[8:]",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://www.gashuw.net/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "若初文学#1",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.ruochu.com#嘚嘚21.0201",
    "customButton": false,
    "customOrder": 294,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "短篇::http://search.ruochu.com/web/all?sort=110&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n婚恋::http://search.ruochu.com/web/all?sort=35&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n都市::http://search.ruochu.com/web/all?sort=4&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n职场::http://search.ruochu.com/web/all?sort=11&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n豪门::http://search.ruochu.com/web/all?sort=12&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n总裁::http://search.ruochu.com/web/all?sort=13&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n架空::http://search.ruochu.com/web/all?sort=15&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n穿越::http://search.ruochu.com/web/all?sort=17&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n宫斗::http://search.ruochu.com/web/all?sort=19&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n宅斗::http://search.ruochu.com/web/all?sort=20&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n青春::http://search.ruochu.com/web/all?sort=21&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n仙侠::http://search.ruochu.com/web/all?sort=7&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n修真::http://search.ruochu.com/web/all?sort=22&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n玄幻::http://search.ruochu.com/web/all?sort=6&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n武侠::http://search.ruochu.com/web/all?sort=8&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n历史::http://search.ruochu.com/web/all?sort=3&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0\n纯爱::http://search.ruochu.com/web/all?sort=23&words=-1&free=&finish=&order=0&page={{page}}&size=100&solicitingid=0",
    "lastUpdateTime": 1786514228028,
    "respondTime": 1658,
    "ruleBookInfo": {
      "tocUrl": "text.目录@href"
    },
    "ruleContent": {
      "content": "class.page-content@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.authorname",
      "bookList": "$.data.content",
      "bookUrl": "$.id@js:\"https://www.ruochu.com/book/\"+result",
      "coverUrl": "$.iconUrlSmall@js:\"https://b.heiyanimg.com\"+result",
      "intro": "$.introduce",
      "kind": "$.sortname",
      "lastChapter": "$.lastchaptername",
      "name": "$.name"
    },
    "ruleToc": {
      "chapterList": "class.float-list fill-block@li",
      "chapterName": "html@js:if(result.match(/isvip/)){\nresult=\"🔒\"+result.match(/>([^<]+)<\\/a>/)[1];\n}else{result=result.match(/>([^<]+)<\\/a>/)[1];}",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://search.ruochu.com/web/search?queryString={{key}}&highlight=false&page=1",
    "weight": 0
  },
  {
    "bookSourceComment": "/*\n\t2024.08.23 明月照大江\n*/",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "🌙 飛天小說",
    "bookSourceType": 0,
    "bookSourceUrl": "http://s1.ftn178.com/",
    "customButton": false,
    "customOrder": 295,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n\t\"User-Agent\": \"okhttp/5.0.0-alpha.14\"\n}",
    "jsLib": "time = Math.floor(Date.now() / 1000).toString()\n\nfunction getSign (key, type, num) {\n  const { java } = this\n  const secret = 'magic2019'\n  let baseString\n\n  switch (type) {\n    case 's':\n      baseString = `channel=ft0001&gid=2&nci=1&nsc=0&query=${java.encodeURI(key)}&timestamp=${time}&secret=${secret}`\n      break\n    case 't':\n      baseString = `bid=${key}&channel=ft0001&gid=1&nci=1&nsc=1&timestamp=${time}&secret=${secret}`\n      break\n    case 'c':\n      baseString = `bid=${key}&channel=ft0001&chapterid=${num}&gid=2&nci=1&nsc=1&timestamp=${time}&secret=${secret}`\n      break\n    default:\n      throw new Error('Invalid type')\n  }\n\n  return java.md5Encode(baseString).toUpperCase()\n}",
    "lastUpdateTime": 1724669248272,
    "respondTime": 1849,
    "ruleBookInfo": {
      "author": "author",
      "canReName": "",
      "init": "data",
      "intro": "description",
      "kind": "catename",
      "lastChapter": "lastchaptertitle",
      "name": "title",
      "tocUrl": "@js:\nlet bid = java.get(\"bid\");\nlet sign = getSign(bid, \"t\");\n`http://s1.ftn178.com/v3/book/chapter.api?app=FTNovel&os=Android&pbv=v1.0.57&_t=${time}&channel=ft0001&vs=14&sign=${sign},{\n  \"body\": \"bid=${bid}&nsc=1&nci=1&gid=1&channel=ft0001&timestamp=${time}\",\n  \"method\": \"POST\"\n}`"
    },
    "ruleContent": {
      "content": "<js>\ncid = java.hexDecodeToString(result)\nbid = java.get('bid')\nsign = getSign(bid, 'c', cid)\ncu = `http://s1.ftn178.com/v3/book/content.api?bid=${bid}&timestamp=${time}&sign=${sign}&app=FTNovel`\nbody = `bid=${bid}&chapterid=${cid}&nsc=1&nci=1&gid=2&channel=ft0001&timestamp=${time}`\njava.post(cu, body, {}).body()\n</js>\n$.data.body"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "author",
      "bookList": "search",
      "bookUrl": "@js:\nlet tsign = java.get('tsign').split(',')\nlet bid = java.getString('$.bid')\njava.put('bid', bid);\n`http://s1.ftn178.com/v3/book6/detail.api?nci=1&channel=ft0001&bid=${bid}&timestamp=${tsign[1]}&nsc=1&sign=${tsign[0]}&app=FTNovel`",
      "coverUrl": "thumb",
      "intro": "description",
      "kind": "catename",
      "name": "title",
      "wordCount": "wordcount"
    },
    "ruleToc": {
      "chapterList": "data.chapters",
      "chapterName": "title",
      "chapterUrl": "@js:`data:;base64,${java.base64Encode({{$.id}})},{\"type\":\"num\"}`",
      "updateTime": "@js:java.timeFormatUTC({{$.time}}, \"yyyy-MM-dd\", 0)"
    },
    "searchUrl": "@js:\nlet sign = getSign(key, 's')\njava.put('tsign', [sign, time]);\n\n`http://s1.ftn178.com/server/v3/search?sign=${sign}&app=FTNovel&os=Android&pbv=v1.0.57&_t=${time}&channel=ft0001&vs=14,{\n  \"body\": \"nsc=0&nci=1&query=${key}&timestamp=${time}&gid=2&channel=ft0001\",\n  \"method\": \"POST\"\n}`",
    "weight": 0
  },
  {
    "bookSourceComment": "by狼崽儿 //2026.6.28\n老耽美小说文站。含港台言情、GL等其他类型的小说。",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "蛋文库（耽美）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://danwenku.cc",
    "customButton": false,
    "customOrder": 296,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n    {\"title\":\"完结新区\",\"url\":\"@js:var p=page;'/wanjie'+(p==1?'/':'/index_'+p+'.html')\"},\n    {\"title\":\"同人\",\"url\":\"@js:var p=page;'/tongren'+(p==1?'/':'/index_'+p+'.html')\"},\n    {\"title\":\"言情\",\"url\":\"@js:var p=page;'/gangtai'+(p==1?'/':'/index_'+p+'.html')\"},\n    {\"title\":\"玄幻\",\"url\":\"@js:var p=page;'/xuanhuan'+(p==1?'/':'/index_'+p+'.html')\"},\n    {\"title\":\"穿越\",\"url\":\"@js:var p=page;'/chuanyue'+(p==1?'/':'/index_'+p+'.html')\"},\n    {\"title\":\"其他\",\"url\":\"@js:var p=page;'/qita'+(p==1?'/':'/index_'+p+'.html')\"}\n  ]",
    "header": "{  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1784108882172,
    "respondTime": 7679,
    "ruleBookInfo": {
      "author": "@css:.zuozheqt@text",
      "name": "@css:h1.entry-title@text"
    },
    "ruleContent": {
      "content": "@js:\nvar startMark = '<!-- #d蛋文开 -->';\nvar endMark = '<!-- #d蛋文结 -->';\nvar a = src.indexOf(startMark);\nvar b = src.indexOf(endMark);\nvar c = a >= 0 && b > a ? src.substring(a + startMark.length, b) : '';\n\nvar nl = String.fromCharCode(10);\nc = c.split('<br/>').join(nl);\nc = c.split('<br>').join(nl);\nc = c.split('<BR>').join(nl);\nc = c.split('&nbsp;').join(' ');\nc = c.replaceAll('<[^>]+>', '');\n\n// 去掉开头的多余换行\nc = c.replace(/^\\n+/, '');\n\nc;"
    },
    "ruleExplore": {
      "author": "@css:.archive-content@text@js:var m=result.match(/作者[：:]([^\\u3000】\\\\s]+)/);m?m[1]:''",
      "bookList": "@css:article.post",
      "bookUrl": "h2.entry-title a@href",
      "intro": "@css:.archive-content@text@js:var i=result.indexOf('文案：');i>=0?result.substring(i):result",
      "kind": "@css:.comment a@text",
      "lastChapter": "@css:.date@text",
      "name": "h2.entry-title a@text@js:result.replace(/[（(].*/,'').replace(/[—–]{2}.*/,'').replace(/by.*$/,'').trim()"
    },
    "ruleSearch": {
      "author": "@css:.archive-content@text@js:var m=result.match(/作者[：:]([^【】\\\\s]+)/);m?m[1]:''",
      "bookList": "@css:article.post",
      "bookUrl": "h2.entry-title a@href",
      "intro": "@css:.archive-content@text",
      "kind": "@css:.comment a@text",
      "lastChapter": "@css:.date@text",
      "name": "h2.entry-title a@text@js:result.replace(/by[^]*$/,'')"
    },
    "ruleToc": {
      "chapterList": "@js:\nvar m = src.match(/<b>(\\d+)<\\/b>\\s*\\/\\s*<b>(\\d+)<\\/b>/);\nvar total = m ? parseInt(m[2]) : 1;\nvar base = baseUrl.replace('.html', '');\nvar arr = [];\nfor (var i = 1; i <= total; i++) {\n  arr.push({\n    title: '第' + i + '页',\n    url: base + (i == 1 ? '.html' : '_' + i + '.html')\n  });\n}\narr;",
      "chapterName": "title",
      "chapterUrl": "url"
    },
    "searchUrl": "/e/search/index.php,{\n  \"charset\": \"gbk\",\n  \"method\": \"POST\",\n  \"body\": \"show=title,newstext&keyboard={{key}}\",\n  \"headers\": {\n    \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"\n  }\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "搬山小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.banshanren.com/",
    "concurrentRate": "1000",
    "customButton": false,
    "customOrder": 297,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\n    \"title\": \"年排行\",\n    \"url\": \"https://www.banshanren.com/api/rank?range=3\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n{\n    \"title\": \"月排行\",\n    \"url\": \"https://www.banshanren.com/api/rank?range=2\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n{\n    \"title\": \"周排行\",\n    \"url\": \"https://www.banshanren.com/api/rank?range=1\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"浏览量\",\n    \"url\": \"https://www.banshanren.com/all/0-0-0-0-0-0-3-1/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n{\n    \"title\": \"收藏榜\",\n    \"url\": \"https://www.banshanren.com/api/rank?range=5\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n{\n    \"title\": \"新作榜\",\n    \"url\": \"https://www.banshanren.com/api/rank?range=4\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  }\n]",
    "header": "{\n \"User-Agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36\",\n\"Referer\":\"https://www.banshanren.com/\"\n}",
    "lastUpdateTime": 1787071334501,
    "loginUrl": "https://www.banshanren.com",
    "respondTime": 13380,
    "ruleBookInfo": {
      "author": "//div[@class='novel_brief_box']/div[@class='novel_title_box']/div[@class='info_box'][2]/span/text()",
      "coverUrl": "//div[@class='novel_brief_box']/div[@class='cover_box']/img/@data-src",
      "intro": "//div[@class='novel_brief_box']/div[@class='novel_title_box']/div[@class='novel_intro_box pc']/p[1]/text()",
      "kind": "//div[@class='novel_brief_box']/div[@class='novel_title_box']/ul[@class='novel_tag_list pc']/li/a/@title",
      "lastChapter": "//div[@class='catalog_box']/div[@class='catalog_top_box']/div[1]/p[1]/span[@class='hl']/text()",
      "name": "//div[@class='novel_brief_box']/div[@class='novel_title_box']/h1/text()",
      "wordCount": "//div[@class='novel_brief_box']/div[@class='novel_title_box']/div[@class='novel_summary_box pc']/div[4]/p/b/text()"
    },
    "ruleContent": {
      "content": "//div[@class='chapter_content_box']/p/text()"
    },
    "ruleExplore": {
      "author": "$.authors",
      "bookList": "$.model",
      "bookUrl": "@js:\n\"https://www.banshanren.com/novel/{{$.slug}}\"",
      "coverUrl": "$.coverUrl",
      "intro": "$.description",
      "kind": "$.tagNames",
      "lastChapter": "$.latestUpdate",
      "name": "$.title",
      "wordCount": "$.wordCountFormat"
    },
    "ruleSearch": {
      "author": "//div[@class='title_box']/div[@class='info_box'][2]/text()@js:\nresult.split('·')[0].trim()",
      "bookList": "//ul[@class='novel_list']/li[@class='novel_li']",
      "bookUrl": "//div[@class='title_box']/a[@class='title']/@href",
      "checkKeyWord": "琼明神女录",
      "coverUrl": "//img/@data-src",
      "intro": "//div[@class='title_box']/div[@class='novel_intro_box']/p",
      "kind": "//div[@class='title_box']/ul[@class='category_list']/li/a/@title",
      "name": "//div[@class='title_box']/a[@class='title']/text()"
    },
    "ruleToc": {
      "chapterList": "//div[@class='catalog_box']/div[@class='volume_box']/ul/li[.//a]",
      "chapterName": "//a/@title",
      "chapterUrl": "//a/@href",
      "updateTime": "//p/text()"
    },
    "searchUrl": "https://www.banshanren.com/search/index?keyword={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "BY:溪",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "神话之后",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.shenhuazhihou.com",
    "bookUrlPattern": "https://www.shenhuazhihou.com/book/\\d+/",
    "customButton": false,
    "customOrder": 298,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "小说::https://www.shenhuazhihou.com/book/<,index_{{page}}.html>",
    "lastUpdateTime": 1786188892776,
    "respondTime": 4607,
    "ruleBookInfo": {
      "author": ".m-infos@span.0@text",
      "coverUrl": "img@src",
      "intro": "p.0@text\n##(^|[。！？……]+[”」）……】]?)##$1<br>",
      "kind": ".m-infos@span.1:2@text##.*：|.*：",
      "lastChapter": ".m-upd@a@text",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "id.chaptercontent@p@html",
      "nextContentUrl": "text.下一@href"
    },
    "ruleExplore": {
      "author": "td.1@text",
      "bookList": "tbody@tr",
      "bookUrl": "a.0@href",
      "kind": "td.2@text",
      "name": "td.0@a@text"
    },
    "ruleSearch": {
      "author": ".author@text",
      "bookList": ".book-coverlist",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": ".intro@text",
      "name": "h4@a@text"
    },
    "ruleToc": {
      "chapterList": "#play_0@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://www.shenhuazhihou.com/e/search/index.php,{\n  \"body\": \"tbname=bookname&show=title,writer&tempid=1&keyboard={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "┍　　　　书源作者：萌  新　　　　┒\n├───┬────────────┤\n│！免责│本书源只提供代码进行技术│\n│！声明│交流，请于２４小时后删除│\n└────────────────┘\n*如〖http://m.uuwx.la〗\n书源交流群qq610296345\n有问题可以在群里说",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "UU小說",
    "bookSourceType": 0,
    "bookSourceUrl": "去789",
    "bookUrlPattern": "https?://m.uuwx.la/ls/[\\d_/]+",
    "customButton": false,
    "customOrder": 300,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"言情小说\",\"url\":\"{{source.bookSourceComment.match(/如〖([^〗]*)〗/)[1]}}/fenlei-1/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏竞技\",\"url\":\"{{source.bookSourceComment.match(/如〖([^〗]*)〗/)[1]}}/fenlei-2/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻小说\",\"url\":\"{{source.bookSourceComment.match(/如〖([^〗]*)〗/)[1]}}/fenlei-3/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻灵异\",\"url\":\"{{source.bookSourceComment.match(/如〖([^〗]*)〗/)[1]}}/fenlei-4/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠小说\",\"url\":\"{{source.bookSourceComment.match(/如〖([^〗]*)〗/)[1]}}/fenlei-5/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越小说\",\"url\":\"{{source.bookSourceComment.match(/如〖([^〗]*)〗/)[1]}}/fenlei-6/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"综合其他\",\"url\":\"{{source.bookSourceComment.match(/如〖([^〗]*)〗/)[1]}}/fenlei-7/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1752672683738,
    "respondTime": 4918,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content",
      "name": "[property$=book_name]@content"
    },
    "ruleContent": {
      "content": "#nr1@textNodes##{{try{title}catch(e){\"\"} }}.*\\s*\\(第\\d+.*页\\)\\s*|\\s*.?本章未完.*\\s*",
      "nextContentUrl": "text.下一@href",
      "replaceRegex": ""
    },
    "ruleExplore": {
      "author": "ownText##.*\\/",
      "bookList": ".line",
      "bookUrl": "a@href",
      "coverUrl": "@js:\"http://www.uuxs.info/modules/article/images/nocover.jpg\"",
      "kind": "ownText##\\[|\\].*",
      "name": "a@text##"
    },
    "ruleSearch": {
      "author": "p.-2@text",
      "bookList": ".block",
      "bookUrl": "a.1@href",
      "checkKeyWord": "侠盗",
      "coverUrl": "img@src",
      "kind": "p.-3@text##分类：",
      "lastChapter": "a.-1@text",
      "name": "h2@text"
    },
    "ruleToc": {
      "chapterList": "ul.1@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "{{@@text.下一页@href}}\n{{@@option@value}}"
    },
    "searchUrl": "{{cookie.removeCookie(source.getKey())}}\n{{source.bookSourceComment.match(/如〖([^〗]*)〗/)[1]}}/search.php,{\n  \"body\": \"searchkey={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "书出荒慌",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.shuhuanghuang.org#🎃",
    "customButton": false,
    "customOrder": 301,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1785951804717,
    "respondTime": 1788,
    "ruleBookInfo": {
      "author": "class.info-book@tag.p.1@tag.a@text",
      "coverUrl": "class.block-img mt0@tag.img@src",
      "intro": "class.description@text",
      "kind": "class.info-book@tag.p.2@tag.a@text&&class.info-book@tag.p.3:4@text##.*：",
      "lastChapter": "class.newest@tag.a@text",
      "name": "class.bookname@text",
      "tocUrl": "class.btn@tag.a.1@href"
    },
    "ruleContent": {
      "content": "class.content@tag.p!1:-2@html",
      "nextContentUrl": "class.menu@tag.ul@tag.a.3@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.info-book@tag.p.1@tag.a@text",
      "bookList": "class.block",
      "bookUrl": "class.info@tag.a@href",
      "coverUrl": "class.block-img mt0@tag.a@tag.img@data-original",
      "intro": "class.description@text",
      "kind": "class.info-book@tag.p.2@tag.a@text||class.zi@text##最近更新\\W|上架时间\\W",
      "name": "class.info@tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": "class.block-list@tag.ul@tag.li",
      "chapterName": "@tag.a@text",
      "chapterUrl": "@tag.a@href"
    },
    "searchUrl": "http://m.shuhuanghuang.org/search/?keywords={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "追光阅读（优）",
    "bookSourceType": 0,
    "bookSourceUrl": "http://touchlife.cootekservice.com/",
    "customButton": false,
    "customOrder": 302,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"现代都市\",\"url\":\"http://touchlife.cootekservice.com/doReader/get_books_by_classificationId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&classificationId=4\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"东方玄幻\",\"url\":\"http://touchlife.cootekservice.com/doReader/get_books_by_classificationId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&classificationId=13\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠仙侠\",\"url\":\"http://touchlife.cootekservice.com/doReader/get_books_by_classificationId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&classificationId=12\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史架空\",\"url\":\"http://touchlife.cootekservice.com/doReader/get_books_by_classificationId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&classificationId=17\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻末世\",\"url\":\"http://touchlife.cootekservice.com/doReader/get_books_by_classificationId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&classificationId=16\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏竞技\",\"url\":\"http://touchlife.cootekservice.com/doReader/get_books_by_classificationId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&classificationId=18\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"西方玄幻\",\"url\":\"http://touchlife.cootekservice.com/doReader/get_books_by_classificationId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&classificationId=9\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"豪门总裁\",\"url\":\"http://touchlife.cootekservice.com/doReader/get_books_by_classificationId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&classificationId=2\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代言情\",\"url\":\"http://touchlife.cootekservice.com/doReader/get_books_by_classificationId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&classificationId=5\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"现代言情\",\"url\":\"http://touchlife.cootekservice.com/doReader/get_books_by_classificationId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&classificationId=10\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"青春校园\",\"url\":\"http://touchlife.cootekservice.com/doReader/get_books_by_classificationId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&classificationId=6\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙侠奇缘\",\"url\":\"http://touchlife.cootekservice.com/doReader/get_books_by_classificationId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&classificationId=7\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"婚恋情缘\",\"url\":\"http://touchlife.cootekservice.com/doReader/get_books_by_classificationId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&classificationId=8\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻言情\",\"url\":\"http://touchlife.cootekservice.com/doReader/get_books_by_classificationId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&classificationId=3\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越重生\",\"url\":\"http://touchlife.cootekservice.com/doReader/get_books_by_classificationId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&classificationId=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1766349334934,
    "respondTime": 1440,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "$..chapterContent"
    },
    "ruleExplore": {
      "author": "bookAuthor",
      "bookList": "result.classificationInfoBooks[*]",
      "bookUrl": "http://touchlife.cootekservice.com/doReader/enter_bookinfo_index?_token=e72ca407-9caa-475d-a829-46e15d3d4834&bookId={$.bookId}",
      "coverUrl": "bookCoverImage",
      "intro": "bookDesc",
      "kind": "bookBClassificationName",
      "name": "bookTitle"
    },
    "ruleSearch": {
      "author": "bookAuthor",
      "bookList": "result",
      "bookUrl": "http://touchlife.cootekservice.com/doReader/enter_bookinfo_index?_token=e72ca407-9caa-475d-a829-46e15d3d4834&bookId={$.bookId}",
      "coverUrl": "bookCoverImage",
      "intro": "bookRecommendWords||bookDesc&&copyright_owner",
      "kind": "bookBClassificationName",
      "name": "bookTitle"
    },
    "ruleToc": {
      "chapterList": "result.detailedBookInfo.bookChapterAllInfo",
      "chapterName": "chapterTitle",
      "chapterUrl": "http://touchlife.cootekservice.com/doReader/get_content_by_chapterId?_token=e72ca407-9caa-475d-a829-46e15d3d4834&bookId={$.bookId}&chapterId={$.chapterId}"
    },
    "searchUrl": "http://touchlife.cootekservice.com/doReader/search_book?_token=e72ca407-9caa-475d-a829-46e15d3d4834&action=search_book&search_keyword={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.conglianhao.com/",
    "concurrentRate": "3",
    "customButton": false,
    "customOrder": 303,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"全部分类\",\"url\":\"/list/{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻魔法\",\"url\":\"/list/1_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠修真\",\"url\":\"/list/2_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市言情\",\"url\":\"/list/3_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史军事\",\"url\":\"/list/4_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻灵异\",\"url\":\"/list/5_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏竞技\",\"url\":\"/list/6_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他类型\",\"url\":\"/list/7_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; wv) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\", \"Accept-Language\": \"zh-CN,zh;q=0.9\"}",
    "lastUpdateTime": 1785663970456,
    "respondTime": 3069,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:lastest_chapter_name\"]@content",
      "name": "[property=\"og:title\"]@content"
    },
    "ruleContent": {
      "content": "[id=\"article\"]@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "@js:result\n.replace(/搜书名找不到, 可以试试搜作者哦, 也许只是改名了!/g,'')\n.replace(/如果书架和阅读记录丢失了, 可以前往.*网域,再打开书架试试!/g,'')\n"
    },
    "ruleExplore": {
      "author": "tag.a.2@text",
      "bookList": "[class=\"flex\"]@li",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "img@src",
      "intro": "tag.p.0@text",
      "kind": "tag.a.0@text",
      "name": "tag.a.1@text",
      "wordCount": "[class=\"li_bottom\"]@tag.div.-1@text"
    },
    "ruleSearch": {
      "author": "tag.p.0@textNodes",
      "bookList": "[class=\"searchresult\"]",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "img@src",
      "intro": "tag.p.-2@text",
      "kind": "tag.a.0@text",
      "lastChapter": "tag.p.-1@text",
      "name": "tag.a.1@text",
      "wordCount": "tag.p.0@tag.span.0@text"
    },
    "ruleToc": {
      "chapterList": "[id=\"ul_all_chapters\"]@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "/search/,{\n\t\"body\": \"searchkey={{key}}&searchtype=all&Submit=\",\n\t\"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "//2025.2.4 by.◎辞晨◎",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🌸轻小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://lnovel.tw/",
    "customButton": false,
    "customOrder": 304,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\narList=[[\"全🌊部\",\"\"],[\"🌊连载中🌊\",\"ongoing\"\n],[\"🌊已完结🌊\",\"completed\"]]\nmrList=[[\"校園\",\"3\"],[\"愛情\",\"1\"],[\"冒險\",\"6\"],[\"搞笑\",\"10\"],[\"奇幻\",\"15\"],[\"魔法\",\"2\"],[\"異界\",\"17\"],[\"穿越\",\"18\"],[\"偵探\",\"8\"],[\"科幻\",\"4\"],[\"後宮\",\"12\"],[\"神鬼\",\"5\"],[\"其它\",\"9\"],[\"格鬥\",\"11\"],[\"恐怖\",\"7\"],[\"百合\",\"20\"],[\"戰爭\",\"16\"],[\"異能\",\"14\"],[\"治癒\",\"21\"],[\"機戰\",\"19\"],[\"勵志\",\"23\"],[\"都市\",\"13\"],[\"歷史\",\"22\"],[\"純愛\",\"24\"]]\narList.map([title,uri]=>{\n\tpush(title,`/books?page={{page}}&q%5Bstatus_eq%5D=${uri}`,1,1)\n\tmrList.map(([tag,ure])=>{\n\t\ttag=java.t2s(tag)\n\t\turl=`/books?page={{page}}&q%5Bgenres_id_eq%5D=${ure}&q%5Bstatus_eq%5D=${uri}`;\n\t\tpush(tag,url,1,0.25)\n\t\t})\n\t\t})\njava.log(JSON.stringify(sort))\nJSON.stringify(sort)",
    "header": "@js:\nJSON.stringify({\n  'User-Agent': \"Mozilla/5.0 (Linux; Android 15; V2304A Build/AP3A.240905.015.A2; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/126.0.6478.71 Mobile Safari/537.36\",\n  'sec-ch-ua-platform': \"\\\"Android\\\"\",\n  'origin': baseUrl,\n  'x-requested-with': \"cn.mujiankeji.mbrowser\",\n  'referer': baseUrl,\n  'accept-language': \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"\n})",
    "lastUpdateTime": 1787070856493,
    "respondTime": 5201,
    "ruleBookInfo": {
      "author": "dd.0@a.0@text",
      "coverUrl": "[property=\"og:image\"]@content",
      "init": "@js:java.t2s(result)",
      "intro": "[property=\"og:description\"]@content",
      "kind": "dd!0@a@text",
      "lastChapter": "h3.-1@a.0@text",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "<js>java.t2s(result)</js>\n#chaptersShowContent@html&&.card-body.0@html",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": "<js>java.t2s(result)</js>\n.card-body@.row!0@a",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "name": "a@text"
    },
    "ruleToc": {
      "chapterList": "h3,.accordion-collapse .list-group a",
      "chapterName": "<js>java.t2s(result)</js>\ntext",
      "chapterUrl": "href",
      "isVolume": "h3@a@text"
    },
    "searchUrl": "https://lnovel.tw/books?page={{page}}&q%5Bname_cont%5D={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎉 优选",
    "bookSourceName": "夜天连看（优）",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.yetianlian.com",
    "customButton": false,
    "customOrder": 305,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1766349986713,
    "respondTime": 3041,
    "ruleBookInfo": {
      "author": "class.info@tag.span.0@text##作者：",
      "coverUrl": "class.cover@tag.img@src",
      "intro": "class.intro@text##简介：|作者.*",
      "kind": "class.info@tag.span.1@text##分类：",
      "lastChapter": "class.info@class.last.1@tag.a@text&&class.info@class.last.0@text##更新时间：|..\\:.*",
      "name": "class.info@tag.h2@text",
      "wordCount": "class.info@tag.span.3@text##字数："
    },
    "ruleContent": {
      "content": "id.content@html",
      "imageStyle": "0",
      "replaceRegex": "##http://www.yetianlian.com.*.html|请记住本书首发.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.author@text##作者：",
      "bookList": "class.bookbox",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "tag.img@src",
      "intro": "tag.p@text",
      "kind": "class.cat@text##分类：",
      "lastChapter": "class.update@tag.a@text",
      "name": "tag.h4@text"
    },
    "ruleToc": {
      "chapterList": "class.listmain@tag.dd!0:1:2:3:4:5:6:7:8:9:10:11",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.yetianlian.com/s.php?ie=gbk&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "大帝小说库",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.aikushuge.com",
    "customButton": false,
    "customOrder": 306,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::http://m.aikushuge.com/wapsort/1_{{page}}.html\n仙侠::http://m.aikushuge.com/wapsort/2_{{page}}.html\n都市::http://m.aikushuge.com/wapsort/3_{{page}}.html\n历史::http://m.aikushuge.com/wapsort/4_{{page}}.html\n网游::http://m.aikushuge.com/wapsort/5_{{page}}.html\n科幻::http://m.aikushuge.com/wapsort/6_{{page}}.html\n灵异::http://m.aikushuge.com/wapsort/7_{{page}}.html\n女生::http://m.aikushuge.com/wapsort/8_{{page}}.html\n其他::http://m.aikushuge.com/wapsort/9_{{page}}.html\n全本::http://m.aikushuge.com/wapfull/{{page}}.html",
    "lastUpdateTime": 1746750238544,
    "respondTime": 20776,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content",
      "kind": "[property$=category]@content&&[property$=status]@content&&[property$=update_time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content",
      "name": "[property$=book_name]@content",
      "tocUrl": "[property$=read_url]@content"
    },
    "ruleContent": {
      "content": "#nr1@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##.*请点击下一页继续.*|.*第.*页.*"
    },
    "ruleExplore": {
      "author": ".s3@text",
      "bookList": ".lis@li",
      "bookUrl": "a@href",
      "kind": ".s1@text##\\[|\\]",
      "name": ".s2@text"
    },
    "ruleSearch": {
      "author": ".author@text##作者：",
      "bookList": ".waps_one",
      "bookUrl": "a@href",
      "checkKeyWord": "",
      "kind": "span.2@text&&.waps_full_0@text##\\(|\\)",
      "lastChapter": "a.1@text",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": ".chapter.1@li@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "http://m.aikushuge.com/search/,{\n  \"method\": \"POST\",\n  \"body\": \"searchkey={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "丁丁小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://api.xingliangglobal.com#",
    "customButton": false,
    "customOrder": 307,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvar sort=[];\npush=(title,url,type,size)=>sort.push({\n    \"title\": title,\n    \"url\": url?url:\"\",\n    \"style\": {\n      \"layout_flexGrow\": type,\n      \"layout_flexBasisPercent\": size,\n    }\n  });\n\nbd=[\"必读榜\",\"潜力榜\",\"完本榜\",\n\"更新榜\",\"搜索榜\",\"评论榜\"];\npd=[[\"男频\",\"1\"],\n\t[\"女频\",\"2\"]].map([title,id]=>{\npush(title+'榜单', null, 1, 1);\n\t\tbd.map((title,index)=>{\t\t\t\n\t\t  \turl= `/module/rank?type=${index+1}&channel=${id}&page={{page}}`; \n\t\t\t\tpush(title, url, 1, 0.25);\t\t\t\t\t\t\t\t\t\t\n\t\t\t});\n\t});\n\nbook=[[\"男频\",\n[[\"玄幻\",\"lejRej\"],[\"都市\",\"mbk5ez\"],[\"武侠\",\"nel5aK\"],[\"仙侠\",\"vbmOeY\"],[\"军事\",\"penRe7\"],[\"历史\",\"xbojag\"],[\"游戏\",\"mep2bM\"],[\"科幻\",\"zbq2dp\"],[\"轻小说\",\"YerEdO\"]]],\n\t [\"女频\",\n[[\"现代言情\",\"9avmeG\"],[\"古代言情\",\"DdwRb1\"],[\"幻想言情\",\"7ax9by\"],[\"青春校园\",\"Pdy7aQ\"],[\"唯美纯爱\",\"kazYeJ\"],[\"同人衍生\",\"9aAOdv\"]]]].map([tit1,category]=>{\n\t \t\t[[\"连载\",\"0\"],[\"完结\",\"1\"]].map([tit2,id]=>{  \n\t    push(tit1+'•'+tit2, null, 1, 1);   \n     category.map([title,cid]=>{\t    \n\turl= `/novel?isComplete=${id}&sort=1&page={{page}}&categoryId=${cid}`;\t\n\t\t\t \tpush(title, url, 1, 0.25);\n        });\n      });\n  });\n\nJSON.stringify(sort)",
    "header": "{\n    \"client-device\": \"4d9655dc356211b2d0a86a96e3e11a54\",\n    \"client-brand\": \"vivo\",\n    \"client-version\": \"1.1.0\",\n    \"client-channel\": \"android\",\n    \"client-name\": \"app.maoyankanshu.novel\",\n    \"alias-name\": \"dingdianapp\",\n    \"client-source\": \"android\",\n    \"Authorization\": \"bearereyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOlwvXC9hcGkueGluZ2xpYW5nZ2xvYmFsLmNvbVwvYXV0aFwvdGhpcmQiLCJpYXQiOjE2OTkyNzUzOTQsImV4cCI6MTc5MjU4NzM5NCwibmJmIjoxNjk5Mjc1Mzk0LCJqdGkiOiJyYzhtYVByUUpLazlweFd6Iiwic3ViIjoxMjkyMjEsInBydiI6ImExY2IwMzcxODAyOTZjNmExOTM4ZWYzMGI0Mzc5NDY3MmRkMDE2YzUifQ.BqlcxKRH5oiBWQjSzTEHLpwUMD-dVhVe1ufcX_BZanw\",\n     \"Connection\": \"Keep-Alive\",\n    \"User-Agent\": \"okhttp/4.9.2\"\n}",
    "lastUpdateTime": 1735040095798,
    "respondTime": 6135,
    "ruleBookInfo": {
      "author": "authorName",
      "coverUrl": "cover",
      "init": "data",
      "intro": "summary",
      "kind": "categoryNames.*.className",
      "lastChapter": "lastChapter.chapterName",
      "name": "novelName",
      "tocUrl": "/novel/{{$.novelId}}/chapters",
      "wordCount": "wordNum"
    },
    "ruleContent": {
      "content": "content"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "authorName",
      "bookList": "data",
      "bookUrl": "/novel/{{$.novelId}}?isSearch=1",
      "checkKeyWord": "剑来",
      "coverUrl": "cover",
      "intro": "summary",
      "kind": "categoryNames.[*].className",
      "lastChapter": "",
      "name": "novelName",
      "wordCount": "wordNum"
    },
    "ruleToc": {
      "chapterList": "data.list",
      "chapterName": "chapterName",
      "chapterUrl": "path\n@js:\nvar data=String(result),\ntype=\"AES/CBC/PKCS5Padding\",\nkey=\"4395daa50ad6baf7\",\niv=\"0123456789abcdef\",\ncipher=java.createSymmetricCrypto(type,key,iv),\nurl=cipher.decryptStr(data);\nurl;",
      "updateTime": "{{$.updatedAt}} • {{$.wordNum}}字"
    },
    "searchUrl": "http://api.xingliangglobal.com/search?keyword={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "by关耳",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "小说笔趣",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xwbiquge.cc",
    "bookUrlPattern": "https://www.biqugexx.net/\\d+_\\d+/",
    "customButton": false,
    "customOrder": 308,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1694678214476,
    "loginUrl": "",
    "respondTime": 3856,
    "ruleBookInfo": {
      "author": "//meta[@property=\"og:novel:author\"]/@content",
      "coverUrl": "//meta[@property=\"og:image\"]/@content",
      "init": "",
      "intro": "id.intro@text",
      "kind": "//meta[@property=\"og:novel:category\"]/@content",
      "lastChapter": "//meta[@property=\"og:novel:latest_chapter_name\"]/@content##章节目录\n<js>result.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求更谢乐发推票盟补加字Kk\\/].*[\\)\\}）｝】]/g,'')</js>\n<js>\nresult.replace(/^(\\d+)、第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+\\s/,'$1 ')\n.replace(/^(\\d+)(、|. ?)/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/(章)([^\\s]+)(\\s·)*/,'$1 $2$3')\n.replace(/第([零一二三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n.replace(/第0+/,'第')\n.replace(/(第\\d+章)\\s\\d+(.*)/,'$1$2')\n</js>",
      "name": "//meta[@property=\"og:title\"]/@content",
      "tocUrl": "text.章节目录@href"
    },
    "ruleContent": {
      "content": "id.content@html##----更新快，无防盗上------|热门\\*小说txt下载|.*www.biqugexx.net.*|biqu.*net|章节报错\\(免登录\\)",
      "imageStyle": "0",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##\\s*.*?本章未完.*\\s*"
    },
    "ruleExplore": {
      "bookList": "",
      "coverUrl": "\nvar id = result.match(/_(\\d+)/)[1];\nvar iid = parseInt(id/1000);\n'/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>"
    },
    "ruleSearch": {
      "author": "class.btm@tag.a.0@text",
      "bookList": "class.item",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "img@data-original",
      "intro": "tag.dt.0@dd@text",
      "kind": "",
      "lastChapter": "tag.td.1@text\n<js>result.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求更谢乐发推票盟补加字Kk\\/].*[\\)\\}）｝】]/g,'')</js>\n<js>\nresult.replace(/^(\\d+)、第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+\\s/,'$1 ')\n.replace(/^(\\d+)(、|. ?)/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/(章)([^\\s]+)(\\s·)*/,'$1 $2$3')\n.replace(/第([零一二三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n.replace(/第0+/,'第')\n.replace(/(第\\d+章)\\s\\d+(.*)/,'$1$2')\n</js>",
      "name": "tag.dt.0@a@text",
      "wordCount": "tag.em.0@text"
    },
    "ruleToc": {
      "chapterList": "id.content_1@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "select@option@value"
    },
    "searchUrl": "http://www.xwbiquge.cc/search/?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "挂代理",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爱下书吧",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.aixiawx.com/#pb1101",
    "bookUrlPattern": "https://www.aixiawx.com/\\d+/\\d+/",
    "customButton": false,
    "customOrder": 309,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/xuanhuanxiaoshuo/1_{{page}}.html\n武侠修真::/wuxiaxiuzhen/2_{{page}}.html\n都市言情::/dushiyanqing/3_{{page}}.html\n历史军事::/lishijunshi/4_{{page}}.html\n网游竞技::/wangyoujingji/5_{{page}}.html\n科幻小说::/kehuanxiaoshuo/6_{{page}}.html\n其他小说::/qitaxiaoshuo/7_{{page}}.html\n完本小说::/wanben/1_{{page}}",
    "lastUpdateTime": 1726787788721,
    "loginUrl": "{\n  \"url\": \"null\"\n}",
    "respondTime": 5269,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作    者：",
      "coverUrl": "id.fmimg@tag.img@src",
      "init": "",
      "intro": "id.intro@tag.p@text",
      "kind": "class.con_top@tag.a.1@text&&\nid.info@tag.p.2@text##最后更新：",
      "lastChapter": "id.info@tag.p.3@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.info@tag.h1@text",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "id.content@html",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "class.s5@text",
      "bookList": "class.l@tag.ul@tag.li",
      "bookUrl": "class.s2@tag.a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "class.s3@tag.a@text",
      "name": "class.s2@tag.a@text"
    },
    "ruleSearch": {
      "author": "class.even.1@text",
      "bookList": "class.grid@tag.tbody@tag.tr!0",
      "bookUrl": "class.even.0@tag.a@href",
      "coverUrl": "class.even.0@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "",
      "lastChapter": "class.odd.0@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.even.0@tag.a@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dl@tag.dd!0:1:2:3:4:5:6:7:8",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "nextTocUrl": ""
    },
    "searchUrl": "https://www.aixiawx.com/modules/article/search.php?searchkey={{key}}&searchtype=articlename",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "全本小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.qb5.io",
    "customButton": false,
    "customOrder": 311,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"奇幻玄幻\",\"url\":\"shuku-1-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠仙侠\",\"url\":\"shuku-2-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市官场\",\"url\":\"shuku-3-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史军事\",\"url\":\"shuku-4-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏竞技\",\"url\":\"shuku-7-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻同人\",\"url\":\"shuku-9-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"经典畅销\",\"url\":\"shuku-10-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"图书杂志\",\"url\":\"shuku-11-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他\",\"url\":\"shuku-0-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "header": "@js:JSON.stringify({\"Referer\":baseUrl,\"Keep-Alive\":\"\"})",
    "lastUpdateTime": 1781280261152,
    "respondTime": 5520,
    "ruleBookInfo": {
      "author": "class.book w@p.0@text",
      "coverUrl": "class.book w@img@src",
      "intro": "class.description w@text",
      "kind": "class.book w@span[1,2]@text",
      "lastChapter": "ul.0@li.-1@text",
      "name": "class.book w@h1@text"
    },
    "ruleContent": {
      "content": "id.content@html##<h1>.*?<\\/h1>",
      "replaceRegex": "##未完.*?自动加载所有内容.*|^[^\\n]\\s*第.*章.*"
    },
    "ruleExplore": {
      "author": "p.0@span@text",
      "bookList": "class.hot@dd",
      "bookUrl": "{{@@a.0@href##.html}}/",
      "coverUrl": "a.0@img@src",
      "intro": "p.1@text",
      "name": "h4@a@text"
    },
    "ruleSearch": {
      "author": "p.0@span@text",
      "bookList": ".hot@dd",
      "bookUrl": "{{@@a.0@href##.html}}/",
      "coverUrl": "img@src",
      "intro": "p.1@text",
      "name": "h4@a@text"
    },
    "ruleToc": {
      "chapterList": "ul.0@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "?c=xs&a=sou&q={{key}}&page={{page}}",
    "weight": 63
  },
  {
    "bookSourceComment": "备用地址：https://sma.yueyouxs.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "阅友小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.suixkan.com/",
    "customButton": false,
    "customOrder": 312,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"推荐\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"重磅推荐\",\"url\":\"/l/s/28/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"男生必读\",\"url\":\"/l/s/29/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"女生爱看\",\"url\":\"/l/s/30/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"小编推荐\",\"url\":\"/l/s/31/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"男频\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"都市人生\",\"url\":\"/l/f/1100/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/l/f/1101/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠仙侠\",\"url\":\"/l/f/1102/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"军事历史\",\"url\":\"/l/f/1103/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻末世\",\"url\":\"/l/f/1104/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏体育\",\"url\":\"/l/f/1105/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"热血青春\",\"url\":\"/l/f/1106/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑灵异\",\"url\":\"/l/f/1107/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"脑洞大开\",\"url\":\"/l/f/1108/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"女频\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"现代言情\",\"url\":\"/l/f/2100/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古代言情\",\"url\":\"/l/f/2101/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"幻想言情\",\"url\":\"/l/f/2102/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"\",\"url\":\"/l/f/2103/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"穿越时空\",\"url\":\"/l/f/2104/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"宫闱争斗\",\"url\":\"/l/f/2105/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"豪门总裁\",\"url\":\"/l/f/2106/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"婚恋爱情\",\"url\":\"/l/f/2107/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"经商种田\",\"url\":\"/l/f/2108/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"图书\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"出版读物\",\"url\":\"/l/f/3101/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"文学小说\",\"url\":\"/l/f/3102/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古代典籍\",\"url\":\"/l/f/3103/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1785478073057,
    "respondTime": 2358,
    "ruleBookInfo": {
      "author": ".face-info span.0@text##.*：",
      "coverUrl": ".face-cover img@src",
      "intro": "#intro@html",
      "kind": ".face-info span.1:3@text&&#idNewIds@#chapter-ps-id@text##.*：",
      "lastChapter": "#idNewIds@.chapter-entrance@text",
      "name": ".face-info-title@text",
      "tocUrl": ".sumchapter a@href",
      "wordCount": ".face-info span.2@text##.*："
    },
    "ruleContent": {
      "content": ".con@html",
      "replaceRegex": "##[\\(（]本章未完.*[）\\)]|[\\(（]本章完[）\\)]"
    },
    "ruleExplore": {
      "author": ".v-author@text##\\s",
      "bookList": ".v-list-item",
      "bookUrl": "@onclick@js:result.match(/\\('(.*?)'\\)/)[1]",
      "coverUrl": "img@src",
      "intro": ".v-intro@text",
      "name": ".v-title@text",
      "wordCount": ".v-words@text"
    },
    "ruleSearch": {
      "author": ".v-author@text##\\s",
      "bookList": ".v-list-item",
      "bookUrl": "@onclick@js:result.match(/\\('(.*?)', '', ''\\)/)[1]",
      "coverUrl": "img@src",
      "intro": ".v-intro@text",
      "kind": ".base-label@text",
      "name": ".v-title@text",
      "wordCount": ".v-words@text"
    },
    "ruleToc": {
      "chapterList": ".catalog_ls li a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/s/1.html?keyword={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画,🎉 优选",
    "bookSourceName": "包子漫画（优）",
    "bookSourceType": 2,
    "bookSourceUrl": "https://cn.bzmgcn.com",
    "customButton": false,
    "customOrder": 314,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\nvar sort = [];\nvar push = function(title, url, type1, type2) {\n    sort.push({\n        title: title,\n        url: url,\n        style: {\n            layout_flexGrow: type1,\n            layout_flexBasisPercent: type2\n        }\n    });\n};\n\nvar typeNames = [\"全部\", \"恋爱\", \"纯爱\", \"古风\", \"异能\", \"悬疑\", \"剧情\", \"科幻\", \"奇幻\", \"玄幻\", \"穿越\", \"冒险\", \"推理\", \"武侠\", \"格斗\", \"战争\", \"热血\", \"搞笑\", \"大女主\", \"都市\", \"总裁\", \"后宫\", \"日常\", \"韩漫\", \"少年\", \"其它\"];\nvar types = [\"all\",\"lianai\",\"chunai\",\"gufeng\",\"yineng\",\"xuanyi\",\"juqing\",\"kehuan\",\"qihuan\",\"xuanhuan\",\"chuanyue\",\"mouxian\",\"tuili\",\"wuxia\",\"gedou\",\"zhanzheng\",\"rexie\",\"gaoxiao\",\"danuzhu\",\"dushi\",\"zongcai\",\"hougong\",\"richang\",\"hanman\",\"shaonian\",\"qita\"];\n\ntypeNames.forEach(function(item, index) {\n    var url = \"https://cn.bzmgcn.com/api/bzmhq/amp_comic_list?type=\" + types[index] + \"&region=all&filter=&page={{page}}&limit=36&language=cn&__amp_source_origin=https%3A%2F%2Fcn.baozimhcn.com\";\n    push(item, url, 1, 0.25);\n});\nJSON.stringify(sort)\n</js>",
    "header": "@js:\nJSON.stringify({\n\"Accept-Language\": \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"\n})",
    "lastUpdateTime": 1786769766899,
    "respondTime": 4994,
    "ruleBookInfo": {
      "author": "class.comics-detail__author@text",
      "coverUrl": "tag.amp-img.0@src",
      "init": "<js>java.t2s(result)</js>",
      "intro": "class.comics-detail__desc overflow-hidden@text",
      "kind": "class.tag-list@text",
      "lastChapter": "class.comics-chapters__item.0@text",
      "name": "class.comics-detail__title@text",
      "tocUrl": "class.pure-u-1-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 comics-chapters@tag.a@harf@class.comics-chapters__item@text"
    },
    "ruleContent": {
      "content": "@js:\nlet n =java.getElements('class.comic-contain@amp-img')\nlet c=[];\n    Array.from(n).forEach(x=>{\n    c.push({\n    link:x.attr('data-src')\n})    \n}) \nvar imgTags = c.map(item => `<img src=\"${item.link}\">`).join('\\n');\n    imgTags;",
      "imageStyle": "FULL",
      "title": "class.title"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.items[*]",
      "bookUrl": "https://cn.bzmgcn.com/comic/{{$.comic_id}}",
      "coverUrl": "https://static-tw.baozimhcn.com/cover/{{$.topic_img}}",
      "kind": "$.type_names",
      "name": "$.name"
    },
    "ruleSearch": {
      "author": "class.tags text-truncate@text",
      "bookList": "class.comics-card pure-u-1-2 pure-u-sm-1-2 pure-u-md-1-4 pure-u-lg-1-6",
      "bookUrl": "class.comics-card pure-u-1-2 pure-u-sm-1-2 pure-u-md-1-4 pure-u-lg-1-6@tag.a@href",
      "coverUrl": "tag.amp-img.0@src",
      "kind": "class.tabs cls@text",
      "lastChapter": "class.comics-chapters__item.0@text",
      "name": "class.comics-card__title text-truncate@text"
    },
    "ruleToc": {
      "chapterList": "<js>java.t2s(result)</js>\nclass.pure-u-1-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 comics-chapters",
      "chapterName": "tag.span@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://cn.bzmgcn.com/search?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "菜小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.tatays.com/allbook",
    "customButton": false,
    "customOrder": 315,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻奇幻::/xuanhuan/p{{page}}.html\n武侠修真::/wuxia/p{{page}}.html\n都市言情::/yanqing/p{{page}}.html\n历史军事::/lishi/p{{page}}.html\n科幻小说::/kehuan/p{{page}}.html\n网游小说::/wangyou/p{{page}}.html\n女生小说::/nvsheng/p{{page}}.html\n其他小说::/qita/p{{page}}.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36\"}",
    "lastUpdateTime": 1786781775918,
    "respondTime": 12666,
    "ruleBookInfo": {
      "coverUrl": "class.chapter-list-info@class.chapter-img@tag.img@src",
      "intro": "class.chapter-detail@class.info@class.intro@text",
      "kind": "class.mid@class.clearfix@tag.dd[1]@text##类型：",
      "wordCount": "class.mid@class.clearfix@tag.dd[2]@text##字数："
    },
    "ruleContent": {
      "content": "class.content-box@class.chapter-content@html"
    },
    "ruleExplore": {
      "author": "tag.p[0]@text##\\| 连载",
      "bookList": "class.list-content@class.list-box@class.list-title clears@tag.li",
      "bookUrl": "tag.a@href",
      "coverUrl": "tag.a@tag.img@src",
      "intro": "tag.p[1]@text",
      "lastChapter": "tag.p[2]@tag.a@text",
      "name": "tag.h2@text"
    },
    "ruleSearch": {
      "author": "class.three@text",
      "bookList": "class.main-wrap@class.sort-list search_words@tag.li[!0]",
      "bookUrl": "class.one@tag.a@href",
      "lastChapter": "class.two@tag.a@text",
      "name": "class.one@tag.a@text",
      "wordCount": "class.four@text"
    },
    "ruleToc": {
      "chapterList": "class.chapter-box@class.chapter-list clears@tag.ul@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "https://www.tatays.com/modules/article/search.php,\n{\n    \"webView\":true,\n    \"method\":\"POST\",\n    \"body\":\"searchtype=all&searchkey={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.qbiqus.com#🎃",
    "customButton": false,
    "customOrder": 316,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻小说\",\"url\":\"/sort/1_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙侠小说\",\"url\":\"/sort/2_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市小说\",\"url\":\"/sort/3_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史小说\",\"url\":\"/sort/4_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏小说\",\"url\":\"/sort/5_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻小说\",\"url\":\"/sort/6_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他小说\",\"url\":\"/sort/7_{{page}}/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}}]",
    "header": "{ \"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1785478377797,
    "respondTime": 4201,
    "ruleBookInfo": {
      "author": "class.block_txt2@p.2@a@text",
      "coverUrl": "img@src",
      "intro": ".intro_info@text",
      "kind": "class.block_txt2@p.3:4:5@text\n##分类：|状态：|更新：",
      "lastChapter": "class.block_txt2@p.6@a@text",
      "name": "h2@a@text",
      "tocUrl": "text.开始阅读@href##(\\/)(?!.*\\1)##_1"
    },
    "ruleContent": {
      "content": "#nr1@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".line",
      "bookUrl": "a.1@href",
      "checkKeyWord": "剑来",
      "kind": "a.0@text##\\[|\\]",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": ".chapter@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "<js>page=result.match(/\\(第\\d+\\/(\\d+)页\\)当前\\d+条\\/页/)[1];\nlist=[];for(i=2;i<=page;i++){list.push(baseUrl.replace(/_1/,'_'+i))}\nlist</js>"
    },
    "searchUrl": "/s.php,{\n  \"body\": \"type=articlename&s={{key}}\",\n  \"charset\": \"gbk\",\n  \"method\": \"post\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "容易宕机，等待它自己恢复。",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "第一版主",
    "bookSourceType": 0,
    "bookSourceUrl": "https://i.12bz.net",
    "customButton": false,
    "customOrder": 317,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"榜单\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"日点击榜\",\"url\":\"/top/dayvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周点击榜\",\"url\":\"/top/weekvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月点击榜\",\"url\":\"/top/monthvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总点击榜\",\"url\":\"/top/allvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总收藏榜\",\"url\":\"/top/goodnum_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"字数排行\",\"url\":\"/top/size_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总推荐榜\",\"url\":\"/top/allvote_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"最新入库\",\"url\":\"/top/postdate_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"最近更新\",\"url\":\"/top/lastupdate_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/sort/1_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"/sort/2_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/sort/3_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"/sort/4_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"经阁\",\"url\":\"/sort/5_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/sort/6_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"其他\",\"url\":\"/sort/7_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.29}}]",
    "lastUpdateTime": 1786845818526,
    "respondTime": 24720,
    "ruleBookInfo": {
      "author": ".block_txt2 a.2@text",
      "coverUrl": ".block_img2 img@src",
      "intro": ".intro_info@html##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": ".block_txt2 p.3:4:5@text##.*：|小说|\\s.*",
      "lastChapter": ".block_txt2 a.4@text##[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]",
      "name": ".block_txt2 a.1@text",
      "tocUrl": "text.查看目录@href"
    },
    "ruleContent": {
      "content": "#nr1@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##\\-->>.*|１Ｋ.*com|（苹果手机.*浏览器）|发布地址.*|.*收藏不迷路！|\\</ref=\"http:>"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".cover p",
      "bookUrl": "a.1@href",
      "coverUrl": "a.1@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'http://www.12bz.net/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "a.0@text##\\[|\\]|小说",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": ".chapter li a",
      "chapterName": "text##[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]",
      "chapterUrl": "href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "/s.php,{\n  \"charset\": \"gbk\",\n  \"method\": \"POST\",\n  \"body\": \"type=articlename&s={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "艾克小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.ik258.net",
    "bookUrlPattern": "http://www.ik258.net/book/\\d+/\\d+/",
    "customButton": false,
    "customOrder": 318,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "  [\n  {\n    \"title\": \"⭕分类小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"首页\",\n    \"url\": \"/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/list1/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/list2/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/list3/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/list4/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/list5/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/list6/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/list7/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/list8/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕完结小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/full/1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/full/2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/full/3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/full/4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/full/5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/full/6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/full/7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/full/8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕排行榜⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"周榜\",\n    \"url\": \"/top/week_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月榜\",\n    \"url\": \"/top/month_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总榜\",\n    \"url\": \"/top/all_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/top/all_1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/top/all_2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/top/all_3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/top/all_4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/top/all_5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/top/all_6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/top/all_7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/top/all_8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "lastUpdateTime": 1736122909599,
    "respondTime": 15494,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content&&\n[property=\"og:novel:status\"]@content&&\n[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:title\"]@content##小说全文免费阅读完整版|小说全集|小说全文免费阅读|最新.*",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "class.font_max@html",
      "nextContentUrl": "text.下一@href",
      "replaceRegex": "##本章未完.*|第.*[(1/2)]页|(?:[^\\u4E00-\\u9FA5\\s！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}(?<![\\.．点丶。])[\\.．点丶。]{1,2}(?![\\.．点丶。])(?:[^A-Z\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])(?:[^\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])+|(?:[^\\u4E00-\\u9FA5\\n！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}[\\.．点丶。](?:[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[oO][^\\n\\u4E00-\\u9FA5A-z]*[mM]|[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[nN]|[^\\n\\u4E00-\\u9FA5A-z]*[nN][^\\n\\u4E00-\\u9FA5A-z]*[eE][^\\n\\u4E00-\\u9FA5A-z]*[tT])(?![A-z])"
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "kind": "",
      "lastChapter": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "dd.1@span.0@text",
      "bookList": ".col-md-6@dl",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": "",
      "kind": "dd.2:3@text##.*：|.*：",
      "lastChapter": "dd.4@a@text",
      "name": "h3@a@text##.*\\]|小说全文阅读|小说全集|小说全文免费阅读"
    },
    "ruleToc": {
      "chapterList": ".book_list2 li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "isVolume": "",
      "nextTocUrl": ".page-link@a@href\n@js:\nnext = [];\nurl = result[0];\nlength = result.length;\np = src.match(/page-link\">1\\/(\\d+)/)||[];\npage = Number(p[1]);\nif(length < page){\n\tfor(i = 2; i <= page; i++){\n\t\tlink = String(url).replace(/_\\d+/,`_${i}`);\n\t\tnext.push(link)\n\t\t}\n\t\tnext;\n\t}else result"
    },
    "searchUrl": "/search.php?q={{key}}&p={{page}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "快眼看书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xbotaodz.info",
    "customButton": false,
    "customOrder": 319,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1788112493316,
    "respondTime": 3082,
    "ruleBookInfo": {
      "author": "class.novelinfo-l@tag.li.0@text##作者：",
      "coverUrl": "class.novelinfo-r@tag.a@tag.img@src",
      "intro": "class.novelintro@text##各位书友要是.*",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content",
      "lastChapter": "class.novelinfo-l@li@a@text",
      "name": "class.w-left@tag.h1@text"
    },
    "ruleContent": {
      "content": "id.chaptercontent@textNodes"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.info@tag.span.1@text",
      "bookList": "class.librarylist@tag.li",
      "bookUrl": "class.info@tag.span.0@tag.a@href",
      "coverUrl": "class.pt-ll-l@tag.a@tag.img@src",
      "lastChapter": "class.last@tag.a@text",
      "name": "class.info@tag.span.0@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "class.fulldir@tag.ul@tag.li@tag.a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://www.xbotaodz.info/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "//2025.1.27 by.◎辞晨◎",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "键盘小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.janpn.info",
    "customButton": false,
    "customOrder": 320,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\npush(\"全部🌊分类\",null,1,1)\n\tarList=[[\"玄幻奇幻\",\"xuanhuanqihuan/list-1-\"],[\"武侠修真\",\"wuxiaxiuzhen/list-2-\"],[\"现代都市\",\"xiandaidushi/list-3-\"],[\"历史军事\",\"lishijunshi/list-4-\"],[\"游戏竞技\",\"youxijingji/list-5-\"],[\"科幻灵异\",\"kehuanlingyi/list-6-\"],[\"女生言情\",\"nvshengyanqing/list-7-\"],[\"其他类型\",\"qitaleixing/list-8-\"]]\n\tarList.map(([tag,index])=>{\n\t\turl=`http://www.janpn.org/${index}{{page}}.html`;\n\t\tpush(tag, url, 1, 0.25);\n\t\t});\n//java.log(JSON.stringify(sort))\nJSON.stringify(sort)",
    "header": "@js:\nJSON.stringify({\n  'User-Agent': \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0\",\n  'sec-ch-ua-platform': \"\\\"Android\\\"\",\n  'origin': baseUrl,\n  'x-requested-with': \"cn.mujiankeji.mbrowser\",\n  'referer': baseUrl,\n  'accept-language': \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"\n})",
    "lastUpdateTime": 1752375337946,
    "respondTime": 3385,
    "ruleBookInfo": {
      "author": "author",
      "downloadUrls": "bookUrl",
      "init": "<js>\n$=java.getString('.leftx@html')\nn = 0; \nv = book.getVariable(\"custom\");\nx = v.match(/^\\d+$/)? v : n;\n//x = (parseInt(x) < $.length)? x : n;\njava.toast(x)\nname=java.getString('.bookTitle@text');\nauthor=`{{book.author}}`;\nlast=java.getString('#list-chapterAll@a@text')\nkind=java.getString('.col-md-12@p.1@text')\n\nif (v == 0) {\n  bookUrlz = baseUrl;\n  book.type = 8;\n  java.toast('已自动开启小说模式');\n} else if(v==1){\n  bookUrlz =String(java.getString('.leftx@a@onclick')).replace(/.*\\(\\'(.*?)\\'\\)/,'$1');\n  book.type = 128;\n  java.toast('已自动开启文件模式');\n}\nintro = \"&nbsp;简介：\" + java.getString('.bookIntro@text') + \"\\n当前源链: \" + \"\\n\"+bookUrlz+\"\\n书籍文本:🔺'+【0】+'🔻\"+'\\n'+baseUrl+\n\"\\n文件链接:🔺'+【1】+'🔻\"+'\\n'+String(java.getString('.leftx@a@onclick')).replace(/.*\\(\\'(.*?)\\'\\)/,'$1');\ndata = {\n\tname:name,\n\tauthor:author,\n\tlast:last,\n\tkind:kind,\n\tintro:intro,\n\tbookUrl:bookUrlz\n};\n\nJSON.stringify(data);\n</js>",
      "intro": "intro",
      "kind": "kind##更新时间：",
      "lastChapter": "last",
      "name": "name##\\《|》.*"
    },
    "ruleContent": {
      "content": "#htmlContent@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".shop-info.1@text##\\[.*",
      "bookList": ".list@a",
      "bookUrl": "a.0@href",
      "lastChapter": "span.-1@text",
      "name": "b@text##\\《|\\》"
    },
    "ruleToc": {
      "chapterList": ".panel-chapterlist@a[href~=html]",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "@js:\nurl = \"http://www.janpn.org/search.php?q={{key}}&s=\";\ns = org.jsoup.Jsoup.parse(java.ajax(source.key)).select('input[name=\"s\"]').attr('value');\nresult = url + s;\n",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "七七漫画",
    "bookSourceType": 2,
    "bookSourceUrl": "https://hqqh.cc",
    "customButton": false,
    "customOrder": 321,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1786785731531,
    "respondTime": 1841,
    "ruleBookInfo": {
      "author": "@css:.au-name@text##作者：",
      "coverUrl": "@css:[property=og:image]@content",
      "intro": "@css:.comic-intro@text",
      "kind": "@css:.comic-tags a@text",
      "name": "@css:.comic-name@text"
    },
    "ruleContent": {
      "content": "@css:.comic-list li.comic-page img@src@js:String(result).split('\\n').map(function(u){return '<img src=\"'+u.trim()+'\" style=\"max-width:100%;display:block\" referrerpolicy=\"no-referrer\">'}).join('')",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "@css:.comic-author@text",
      "bookList": "@css:.comic-list-item",
      "bookUrl": "@css:.cover@href",
      "checkKeyWord": "狮子",
      "coverUrl": "@css:.cover img@src",
      "kind": "@css:.comic-tags span@text",
      "lastChapter": "@css:.comic-update-at@text",
      "name": "@css:.comic-name a@text"
    },
    "ruleToc": {
      "chapterList": "@css:.catalog-list li.chapter-item",
      "chapterName": "@css:a@text",
      "chapterUrl": "@css:a@href"
    },
    "searchUrl": "/index.php/search?key={{key.length>3?key.substring(0,3):key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "茂鑫小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.tcmaoxin.org",
    "customButton": false,
    "customOrder": 322,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787418636828,
    "respondTime": 1871,
    "ruleBookInfo": {
      "author": ".fix@p:nth-of-type(1)@text",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|update_time]@content",
      "lastChapter": "p:nth-of-type(6)@a@text",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "#content@textNodes"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".s4@text",
      "bookList": ".txt-list@li!0",
      "bookUrl": ".s2@a@href",
      "kind": ".s1@text",
      "lastChapter": "{{@@.s3@a@text}} • {{@@.s5@text}}",
      "name": ".s2@a@text"
    },
    "ruleToc": {
      "chapterList": ".section-list.1@li@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": ".middle select option!0@value"
    },
    "searchUrl": "http://www.tcmaoxin.org/search.php?keyWord={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "有黄广告",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "就爱文学",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.92xs.info",
    "customButton": false,
    "customOrder": 323,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"榜单\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"总排行榜\",\"url\":\"/allvisit-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"总推荐榜\",\"url\":\"/allvote-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"月排行榜\",\"url\":\"/monthvisit-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"月推荐榜\",\"url\":\"/monthvote-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"周排行榜\",\"url\":\"/weekvisit-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"周推荐榜\",\"url\":\"/weekvote-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"最新入库\",\"url\":\"/postdate-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"最近更新\",\"url\":\"/lastupdate-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"总收藏榜\",\"url\":\"/goodnum-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"字数排行\",\"url\":\"/size-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/sort/1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/sort/2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/sort/3-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/sort/4-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"推理\",\"url\":\"/sort/5-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"游戏\",\"url\":\"/sort/6-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/sort/7-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"恐怖\",\"url\":\"/sort/8-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/sort/10-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/sort/9-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1785477405443,
    "respondTime": 3145,
    "ruleBookInfo": {
      "author": ".p_author@text",
      "coverUrl": "#bookimg img@src",
      "downloadUrls": "#button_all a.1@href",
      "intro": "#bookintro p.-1@html##【展开】.*",
      "kind": "#count span.0:3@text&&#keywords@text##.*：|小说|\\s.*",
      "lastChapter": "#newlist a.1@text",
      "name": ".d_title h1@text",
      "tocUrl": ".newrap a.0@href",
      "wordCount": "#count span.2@text"
    },
    "ruleContent": {
      "content": "#ccontent@textNodes"
    },
    "ruleExplore": {
      "author": ".rankpage_list7@text",
      "bookList": ".rankpage_list_box",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.*/(\\d+)(\\d+)(\\d+)(\\d+).*##/files/article/image/$1/$1$2$3$4/$1$2$3$4s.jpg",
      "kind": ".rankpage_list2@text&&.rankpage_list4@text&&.rankpage_list8@text##\\[|\\]|小说",
      "name": ".rankpage_list3@text",
      "wordCount": ".rankpage_list5@text"
    },
    "ruleSearch": {
      "author": ".odd.1@text",
      "bookList": "#author@tbody@tr!0",
      "bookUrl": "a.0@href##.com/##.la/",
      "coverUrl": "a.0@href##.*/(\\d+)(\\d+)(\\d+)(\\d+).*##/files/article/image/$1/$1$2$3$4/$1$2$3$4s.jpg",
      "kind": ".even.2@text&&.odd.2@text",
      "lastChapter": ".even.0@text",
      "name": ".odd.0@text",
      "wordCount": ".even.1@text"
    },
    "ruleToc": {
      "chapterList": ".ccss",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "/modules/article/search.php,{'method':'post','body':'searchtype=articlename=author&searchkey={{key}}'}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "醉读小说#1",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.imaxreader.com",
    "customButton": false,
    "customOrder": 324,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787020395467,
    "respondTime": 3522,
    "ruleBookInfo": {
      "coverUrl": "#bookimg > img@src",
      "intro": "#bookintro > p@text",
      "kind": ".count a@text",
      "lastChapter": "#newlist li:nth-child(1)@text",
      "name": "h1@text",
      "tocUrl": "strong > a@href",
      "wordCount": "ul > li:nth-child(11) > span:nth-child(1)@text"
    },
    "ruleContent": {
      "content": ".pt-read-text@html",
      "nextContentUrl": ".pt-nextchapter@href",
      "replaceRegex": "##百度一下“{{book.name}}顶点小说www.imaxreader.com”最新章节第一时间免费阅读。|本章未完，请点击下一页继续阅读！ 第\\d+页/共\\d+页"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".mr30:nth-child(1) > a@text",
      "bookList": ".pt-rank-detail:nth-child(n+2)",
      "bookUrl": ".size18@href",
      "coverUrl": "img@src",
      "kind": "span:nth-child(2) > a@text",
      "lastChapter": ".mr20@text",
      "name": ".size18@text"
    },
    "ruleToc": {
      "chapterList": "#readerlists li:nth-child(n+4)",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "/search/result.html?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "小说阅读#3",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.readnovel.com",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 325,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "风云榜::https://www.readnovel.com/rank/hxyuepiao?pageNum={{page}}\n阅文风云榜::https://www.readnovel.com/rank/ywyuepiao?pageNum={{page}}\n周推荐榜::https://www.readnovel.com/rank/recom?pageNum={{page}}\n玄幻::https://www.readnovel.com/category/20001_f1_f1_f1_f1_f1_0_{{page}}\n奇幻::https://www.readnovel.com/category/20005_f1_f1_f1_f1_f1_0_{{page}}\n武侠::https://www.readnovel.com/category/20010_f1_f1_f1_f1_f1_0_{{page}}\n仙侠::https://www.readnovel.com/category/20014_f1_f1_f1_f1_f1_0_{{page}}\n都市::https://www.readnovel.com/category/20019_f1_f1_f1_f1_f1_0_{{page}}\n现实::https://www.readnovel.com/category/20065_f1_f1_f1_f1_f1_0_{{page}}\n军事::https://www.readnovel.com/category/20032_f1_f1_f1_f1_f1_0_{{page}}\n历史::https://www.readnovel.com/category/20028_f1_f1_f1_f1_f1_0_{{page}}\n游戏::https://www.readnovel.com/category/20050_f1_f1_f1_f1_f1_0_{{page}}\n体育::https://www.readnovel.com/category/20054_f1_f1_f1_f1_f1_0_{{page}}\n科幻::https://www.readnovel.com/category/20042_f1_f1_f1_f1_f1_0_{{page}}\n悬疑::https://www.readnovel.com/category/20037_f1_f1_f1_f1_f1_0_{{page}}\n轻小说::https://www.readnovel.com/category/20059_f1_f1_f1_f1_f1_0_{{page}}\n短篇::https://www.readnovel.com/category/20076_f1_f1_f1_f1_f1_0_{{page}}\n热销榜::https://www.readnovel.com/rank/hotsales?pageNum={{page}}\n完本榜::https://www.readnovel.com/rank/finish?pageNum={{page}}\n点击榜::https://www.readnovel.com/rank/click?pageNum={{page}}\n收藏榜::https://www.readnovel.com/rank/collect?pageNum={{page}}",
    "header": "",
    "lastUpdateTime": 1786586565333,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 1482,
    "ruleBookInfo": {
      "author": "",
      "canReName": "",
      "coverUrl": "",
      "init": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": ".book-title@text",
      "tocUrl": "@js:baseUrl+'\\#Catalog'",
      "wordCount": ""
    },
    "ruleContent": {
      "content": ".ywskythunderfont@html",
      "imageStyle": "",
      "nextContentUrl": "text.下一页@href||text.下一章@href",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "h4@text||.book-mid-info@tag.p.0@class.name default@text",
      "bookList": ".right-book-list@tag.li||.book-img-text@tag.li",
      "bookUrl": ".book-img@tag.a.0@href||.red-btn@href",
      "coverUrl": ".book-img@tag.img.0@src||.book-img-box@tag.img@src",
      "intro": ".intro@text||.intro@text",
      "kind": ".org@text||.author@tag.a.1@text",
      "lastChapter": ".update@tag.a.0@text##最新更新 (.*)##$1",
      "name": "h3@text||h4@text"
    },
    "ruleSearch": {
      "author": ".book-mid-info@tag.p.0@class.name default@text",
      "bookList": ".book-img-text@tag.li",
      "bookUrl": ".red-btn@href",
      "coverUrl": ".book-img-box@tag.img@src",
      "intro": ".intro@text",
      "kind": ".author@tag.a.1@text",
      "lastChapter": ".update@tag.a.0@text##最新更新 (.*)##$1",
      "name": "h4@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": ".volume-wrap@class.volume@tag.li\n||class.volume-wrap@class.volume!0@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "https://www.readnovel.com/so/{{key}}",
    "variableComment": "",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🍀20小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.20xs.org",
    "bookUrlPattern": "https://(www|m)\\.20xs\\.org/(\\d+/|shu/\\d+\\.html)",
    "customButton": false,
    "customOrder": 326,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::/XuanHuan/{{page}}.html\n奇幻::/QiHuan/{{page}}.html\n武侠::/WuXia/{{page}}.html\n都市::/DuShi/{{page}}.html\n历史::/LiShi/{{page}}.html\n军事::/JunShi/{{page}}.html\n悬疑::/XuanYi/{{page}}.html\n游戏::/YouXi/{{page}}.html\n科幻::/KeHuan/{{page}}.html\n体育::/TiYu/{{page}}.html\n古言::/GuYan/{{page}}.html\n现言::/XianYan/{{page}}.html\n幻言::/HuanYan/{{page}}.html\n仙侠::/XianXia/{{page}}.html\n青春::/QinɡChun/{{page}}.html\n穿越::/ChuanYue/{{page}}.html\n女生::/NuShenɡ/{{page}}.html\n其他::/QiTa/{{page}}.html",
    "lastUpdateTime": 1782146117980,
    "respondTime": 4921,
    "ruleBookInfo": {
      "author": "[property$=author]@content||class.author@a@text",
      "coverUrl": "[property$=image]@content||class.detail@img@src",
      "intro": "id.intro@p.0@text",
      "kind": "[property$=category]@content||class.detail@tag.p.2@tag.a.0@text",
      "lastChapter": "[property$=latest_chapter_name]@content||class.detail@tag.p.3@tag.a@text",
      "name": "[property$=book_name]@content||class.name@text",
      "tocUrl": "@js:\nlet chapterUrl = baseUrl;\nif(baseUrl.indexOf(\"m.20xs.org\") > 0) {\n  chapterUrl = \"https://www.20xs.org/\" + baseUrl.match(/\\/(\\d+)/)[1] + \"/\";\n}\nchapterUrl"
    },
    "ruleContent": {
      "content": "id.content@p@html",
      "nextContentUrl": "id.pager_next@href",
      "replaceRegex": "##(喜欢.*请大家收藏.*小说网.*|.*下一页继续阅读.*|\\(未完待续\\)|\\(.*?小说.*?qdread.*?\\)|ps：.*?qdread.*?更多支持！|.*书友大本营.*|^\\s*第{0,1}[零一二三四五六七八九十百\\d]{1,5}章\\s*)##"
    },
    "ruleExplore": {
      "author": ".s4@a@text",
      "bookList": "li",
      "bookUrl": ".s2@a@href",
      "kind": "li:nth-of-type(n+2) span.s1@text",
      "lastChapter": ".s3@a@text",
      "name": ".s2@a@text",
      "wordCount": "li:nth-of-type(n+2) span.s5@text"
    },
    "ruleSearch": {
      "author": ".data.0@tag.a@text||.book_other.0@tag.span.0@text",
      "bookList": "id.sitembox@tag.dl||tag.ul@li",
      "bookUrl": "tag.dt@tag.a@href",
      "checkKeyWord": "末日",
      "coverUrl": "tag.dt@tag.a@tag.img@src",
      "intro": ".intro@text||.book_des@text",
      "kind": ".book_other@tag.span.2@text",
      "lastChapter": ".data.0@tag.a@href||.book_other@tag.a@text",
      "name": ".bookname@tag.a@text||tag.dd@tag.h3@text",
      "wordCount": ".book_other@tag.span.3@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dl@tag.dd||class.read@li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "@js:\nvar base_url=source.getKey(),\n url=base_url + \"/search.html\",\n body=\"searchtype=all&searchkey=\"+key;\npost=java.post(url,body,{\n \"Referer\": base_url\n}).header(\"Location\");\nString(post).replace(/\\d+.html/,page+\".html\");",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "玄幻阁吧#4",
    "bookSourceType": 0,
    "bookSourceUrl": "       http://wap.xuanyge.info",
    "customButton": false,
    "customOrder": 328,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvar sort=[];\nvar push=(title,url,size)=>sort.push({\n  \t\"title\": title,\n  \t\"url\": url,\n  \t\"style\": {\n   \"layout_flexGrow\": 1,\n   \"layout_flexBasisPercent\": size\n   }\n });\n\nvar url=source.key;\nvar fl=url+\"/sort.html\";\nvar ph=url+\"/top.html\";\nvar qb=url+\"/full-1/\";\nvar html=java.ajax(fl);\nvar src=java.ajax(ph);\nvar qbl=java.ajax(qb);\n\nif(html&&src&&qbl){\na=org.jsoup.Jsoup.parse(html).select(\".content li a\");\nb=org.jsoup.Jsoup.parse(src).select(\".content li a\");\nc=org.jsoup.Jsoup.parse(qbl).select(\".content li a\");\npush(\"🌹分类🌹\",null,1)\n    for(i in a){\n        title=a[i].text()\n        url=a[i].attr(\"href\")\n        size=0.25;\n  url=String(url).replace(\"1/\",\"{{page}}/\").replace(\"1.html\",\"{{page}}.html\")\n        push(title,url,size)\n    };\n push(\"🌹排行🌹\",null,1)\n    for(i in b){\n        title=b[i].text()\n        url=b[i].attr(\"href\")\n  url=String(url).replace(\"1/\",\"{{page}}/\").replace(\"1.html\",\"{{page}}.html\")\n        size=0.25;\n        push(title,url,size)\n    }\npush(\"🌹全本🌹\",\"/full-{{page}}/\",1)\n      \n}else{\n  java.toast(\"发现列表获取失败！\")\n}\n\nJSON.stringify(sort)\n",
    "lastUpdateTime": 1787020621143,
    "respondTime": 10832,
    "ruleBookInfo": {
      "author": ".block_txt2@a.2@text",
      "downloadUrls": "text.点击下载@href",
      "intro": ".intro_info@text",
      "kind": ".block_txt2@p.3:4:5@text",
      "lastChapter": ".block_txt2@a.-1@text",
      "name": ".block_txt2@h2@text",
      "tocUrl": "text.查看目录@href"
    },
    "ruleContent": {
      "content": "#nr1@textNodes",
      "nextContentUrl": "text.下 页@href||text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "//*[not(@class='blue')]/text()##\\[.*\\]|\\/",
      "bookList": ".line",
      "bookUrl": ".blue@href",
      "kind": "##\\[(.*)\\]##$1##",
      "name": ".blue@text"
    },
    "ruleToc": {
      "chapterList": ".chapter li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "@js:if(result.match(/\\/(\\d+)页/)){\nvar n=result.match(/\\/(\\d+)页/)[1];\nbaseUrl=baseUrl.replace(/(.+)\\//,'$1');\nvar list=[];\nfor(var i=2;i<=n;i++){list.push(baseUrl+\"_\"+i+\"/\");}\nlist\n}"
    },
    "searchUrl": "/modules/article/waps.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "by  学渣 & abyssesml & Thomas喲\n免费小说之王，小米官方全新打造移动阅读平台，实现全站小说正版永久性免费阅读。都市喧嚣，茫茫书海，愿免费小说之王可以陪伴您走过一个又一个充实的日子。在这里，海量红文、精细分类、不占空间、排版精致，我们一起，让阅读成为习惯，成为信仰。\n小米出品，品质保证。",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "小米阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "https://reader.browser.miui.com/v2",
    "bookUrlPattern": "https://reader.browser.miui.com/api/v2/book/\\d+",
    "customButton": false,
    "customOrder": 330,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type)=>{\n\t\tjson = JSON.stringify({\n\t\t\t\ttitle: title,\n\t\t\t\turl: url?url:\"\",\n\t\t\t\tstyle: {\n\t\t\t\t\t\tlayout_flexGrow: 1,\n\t\t\t\t\t\tlayout_flexBasisPercent: type\n\t\t\t\t\t}\n\t\t\t});\n\t\treturn sort.push(json);\n\t}\npush('༺ˇ»`ʚ排行榜单ɞ´«ˇ༻',null,1);\n$$=(a,b,c)=>{\n\t\treturn `https://reader.browser.duokan.com/api/v2/ranking?len=10&page={{page}\\}&type=${a}-${b}-${c}`\n\t}\n[[\"人气榜\",\"golden\"],[\"新书榜\",\"new\"],[\"完结榜\",\"end\"],[\"热搜榜\",\"search\"]].map([title,b]=>{\n\t\tpush('༺ '+title+' ༻',null,1);\n\t\t[\"男频\",\"女频\"].map((title1,a)=>{\n\t\t\t\ta++\n\t\t\t\t[[\"周榜\",\"week\"],[\"月榜\",\"month\"],[\"总榜\",\"total\"]].map([title2,c]=>{\n\t\t\t\t\t\treturn push(title1+title2,$$(a,b,c),0.25);\n\t\t\t\t\t});\n\t\t\t});\n\t});\npush('༺ˇ»`ʚ书籍分类ɞ´«ˇ༻',null,1);\n$$=(sex,bookStatus,categoryId,hotChoice)=>{\n\t\treturn `https://reader.browser.duokan.com/api/v2/book/list2?len=10&page={{page}\\}&sex=${sex}&bookStatus=${bookStatus}&categoryId=${categoryId}&wordCountsInterval=0&hotChoice=${hotChoice}`\n\t}\nbookStatus=categoryId=hotChoice=0;\n[\n\t\t[\"男频\",[[\"都市\",7],[\"玄幻\",3],[\"仙侠\",6],[\"历史\",8],[\"灵异\",10],[\"科幻\",11],[\"奇幻\",4],[\"同人\",143],[\"游戏\",12],[\"武侠\",5],[\"竞技\",13]]],\n\t\t[\"女频\",[[\"现代言情\",75],[\"古代言情\",74],[\"浪漫青春\",76],[\"玄幻言情\",72],[\"仙侠奇缘\",73],[\"悬疑灵异\",77],[\"科幻空间\",78],[\"同人小说\",80],[\"游戏竞技\",79],[\"耽美小说\",81]]]\n].map(([title,list],sex)=>{\n\t\tsex++\n\t\tpush('༺ˇ»`ʚ'+title+'ɞ´«ˇ༻',$$(sex,bookStatus,categoryId,hotChoice),1);\n\t\tlist.map([title,categoryId]=>{\n\t\t\t\tpush('༺ '+title+' ༻',$$(sex,bookStatus,categoryId,hotChoice),1);\n\t\t\t\t[\"综合全部\",\"最新上线\",\"阅读最多\",\"点赞最高\"].map((title,hotChoice)=>{\n\t\t\t\t\t\t['['+title+']',\"连载\",\"完结\"].map((title,bookStatus)=>{\n\t\t\t\t\t\t\t\treturn push(title,$$(sex,bookStatus,categoryId,hotChoice),0.25);\n\t\t\t\t\t\t\t});\n\t\t\t\t\t});\n\t\t\t});\n\t});\n'['+sort.toString()+']'",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.2357.134 Safari/537.36\"\n}",
    "lastUpdateTime": 1761886848926,
    "respondTime": 5043,
    "ruleBookInfo": {
      "author": "$..author",
      "coverUrl": "$..imgUrl",
      "init": "$.data",
      "intro": "{{'\\n&lrm;\\n'}}🔗 源站：{{$..cpName}}\n{{'\\n&lrm;\\n'}}📆 开坑：{{java.timeFormatUTC(java.getString('$.firstChapter.updateTime')*1000,'yyyy-MM-dd',8)}}\n{{'\\n&lrm;\\n'}}📑 简介：{{$..description}}",
      "kind": "{{$..score}}分\n{{$..secondCategoryName&&$..bookStatus}}\n{{java.put('time', java.timeFormatUTC(java.getString('$.lastChapter.updateTime'),'yyyy-MM-dd',8))}}",
      "lastChapter": "{{$.lastChapter.chapterName}} ",
      "name": "$..name",
      "tocUrl": "https://reader.browser.miui.com/api/v2/chapter/list/{{$..bookId}}",
      "wordCount": "$..wordCount"
    },
    "ruleContent": {
      "content": "$..contentList[*]##——内容来自.*\n<js>\nif(result.match(/^http.+$/)){\n\t\tsrc = java.base64Decode(String(java.ajax(result)).match(/\\('([^']+)'\\)/)[1]);\n\t}\nsrc\n</js>\n$..p[*]||$..contentList[*]\n##——内容来自.*"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.data.list",
      "bookUrl": "https://reader.browser.miui.com/api/v2/book/{{$.bookId}}",
      "coverUrl": "$.imgUrl",
      "intro": "$.description",
      "kind": "{{$.score}}分\n{{$.secondCategoryName&&$.bookStatus}}\n{{java.put('time', java.timeFormatUTC(java.getString('$.updateTime')*1000,'yyyy-MM-dd',8))}}",
      "lastChapter": "最近更新：@get:{time}",
      "name": "$.name",
      "wordCount": "$.wordCount"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.related",
      "bookUrl": "https://reader.browser.miui.com/api/v2/book/{{$.id}}",
      "coverUrl": "$.image",
      "intro": "$.description",
      "kind": "$.tags",
      "lastChapter": "发布源站：{{$.cp}}",
      "name": "$.title",
      "wordCount": "$.status"
    },
    "ruleToc": {
      "chapterList": "@js:\nlet u = baseUrl.replace('list','content')\n\nlet v = [];\nlet list = [];\nJSON.parse(result).data.list.map($=>{\n\n//分卷判定\n\t\tV = $.volumeTitle\n\t\tif(v[v.length-1]!=V&&!/^\\s*$/.test(V)){\n\t\t\t\tv.push(V)\n\t\t\t\tlist.push({\n\t\t\t\t\t\tname: '📖['+V+']📖',\n\t\t\t\t\t\tvolume: true\n\t\t\t\t\t})\n\t\t\t}\n\n\t\treturn list.push({\n\t\t\t\tname: $.chapterName,\n\t\t\t\turl: u+'?chapterId='+$.chapterId+'&volumeId=1',\n\t\t\t\tinfo: '更新时间：'+java.timeFormatUTC($.updateTime*1000,'yyyy-MM-dd HH:mm',12)\n\t\t\t});\n\t});\nv.length<2?list.filter($=>!$.volume):list",
      "chapterName": "name",
      "chapterUrl": "url",
      "isVolume": "volume",
      "updateTime": "info"
    },
    "searchUrl": "https://reader.browser.miui.com/api/v2/search/word?query={{key}}&size=100",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "红袖添香",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.hongxiu.com",
    "customButton": false,
    "customOrder": 331,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"现代言情\",\"url\":\"/category/30020_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代言情\",\"url\":\"/category/30013_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"浪漫青春\",\"url\":\"/category/30031_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻言情\",\"url\":\"/category/30001_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙侠奇缘\",\"url\":\"/category/30008_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"悬疑恐怖\",\"url\":\"/category/30036_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻空间\",\"url\":\"/category/30042_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏竞技\",\"url\":\"/category/30050_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"短篇小说\",\"url\":\"/category/30083_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"轻小说\",\"url\":\"/category/30055_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1785476943381,
    "loginUrl": "https://www.hongxiu.com/",
    "respondTime": 1994,
    "ruleBookInfo": {
      "author": "class.writer@tag.a@text##著",
      "coverUrl": "id.bookImg@tag.img@src",
      "intro": "class.intro@textNodes",
      "kind": "class.tag@tag.i@text",
      "lastChapter": "class.update@tag.a@text##更新至.",
      "name": "class.book-info@tag.em.2@text",
      "wordCount": "class.total@tag.span.0@text@js:result+'万字'"
    },
    "ruleContent": {
      "content": "class.read-content@tag.p@text",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "class.default@tag.a@text",
      "bookList": "class.right-book-list@tag.li",
      "bookUrl": "class.book-info@tag.a@href",
      "coverUrl": "class.book-img@tag.img@src",
      "intro": "class.intro@textNodes",
      "kind": "class.tag@tag.span.0@text&&class.tag@tag.span.1@text",
      "name": "class.book-info@tag.a.0@text",
      "wordCount": "class.tag@tag.span.2@text"
    },
    "ruleSearch": {
      "author": "class.author@tag.a.0@text",
      "bookList": "id.result-list@tag.li",
      "bookUrl": "tag.a@href",
      "coverUrl": "class.book-img-box@tag.img@src",
      "intro": "class.intro@textNodes",
      "kind": "class.author@tag.a.1@text&&class.author@tag.span@text&&class.update@tag.span@text##\\s.*",
      "lastChapter": "class.update@tag.a@text##最新更新.",
      "name": "class.book-mid-info@tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": "class.volume@tag.ul@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "search?kw={{key}}&pageNum={{page}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "爱下电子（+++）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://ixdzs8.com",
    "customButton": false,
    "customOrder": 332,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::/sort/1/index-0-0-1-{{page}}.html\n武侠::/sort/10/index-0-0-1-{{page}}.html\n修真::/sort/2/index-0-0-1-{{page}}.html\n修真::/sort/3/index-0-0-1-{{page}}.html\n灵异::/sort/6/index-0-0-1-{{page}}.html\n日榜::/hot/day/?page={{page}}\n周榜::/hot/month/?page={{page}}\n总榜::/hot/?page={{page}}",
    "lastUpdateTime": 1787423968341,
    "respondTime": 3006,
    "ruleBookInfo": {
      "downloadUrls": ".btn-solid@tag.a@href",
      "intro": "爱下电子书\n书名:《{{@class.n-text[0]@tag.h1@text}}》\n作者:{{@class.bauthor[0]@text}}\n{{@class.trend@text}}\n简介:{{@id.intro@text## 　　##\n}}",
      "kind": ".tags@tag.a@text"
    },
    "ruleContent": {
      "content": "@js:\nvar m = src.match(/token\\s*=\\s*\\x22([^\\x22]+)\\x22/);\nvar token = m != null ? m[1] : '';\nvar tourl = baseUrl + '?challenge=' + encodeURIComponent(token);\nvar sm = java.ajax(tourl).match(/<section>\\s*((?:<p>.*?<\\/p>\\s*)+)(.*?)\\s*<\\/section>/i);\nvar sectionHtml = sm != null ? sm[1] : '';\nvar text = sectionHtml.replace(new RegExp('<\\/?p>', 'g'), '\\n').trim();\ntext;"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".bauthor@tag.a@text",
      "bookList": ".u-list@tag.li",
      "bookUrl": "a@href",
      "checkKeyWord": "洪荒之龙族称霸",
      "coverUrl": "img@src\n@js:\nif (result == \"https://img22.ixdzs.com/nopic2.jpg\"){\n\tnull;\n\t}else{result}",
      "intro": ".l-p2@text",
      "kind": ".lz@text",
      "lastChapter": ".l-chapter@text",
      "name": "a@title",
      "wordCount": ".size@text"
    },
    "ruleToc": {
      "chapterList": "@js:\nvar bid = baseUrl.match(/read\\/(\\d+)/)[1];\nvar resp = java.post(source.getKey()+\"/novel/clist/\",\"bid=\"+bid,{});\nvar json = JSON.parse(resp.body()).data;\nvar page = 0;\nvar n = \"\";\nfor(var i=json.length - 1; i >= 0; i--){\n\tif(json[i].ctype === \"1\"){\n\t\tn = json[i].title;\n\t\tjson.splice(i, 1);\n\t\tcontinue;\n\t\t}\n\tpage = json[i][\"ordernum\"];\n\tjson[i][\"url\"] = source.getKey() + \"/read/\" + bid + \"/p\" + page + \".html\";\n\tjson[i][\"n\"] = n;\n\t}\njson;",
      "chapterName": "title",
      "chapterUrl": "url",
      "updateTime": "n"
    },
    "searchUrl": "/bsearch?q={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "❤️搜78🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "https://wap.sou78.com",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 333,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "玄幻奇幻::https://wap.sou78.com/sort/1_{{page}}/\n武侠仙侠::https://wap.sou78.com/sort/2_{{page}}/\n都市言情::https://wap.sou78.com/sort/3_{{page}}/\n科幻网游::https://wap.sou78.com/sort/4_{{page}}/\n惊悚悬疑::https://wap.sou78.com/sort/5_{{page}}/\n耽美同人::https://wap.sou78.com/sort/6_{{page}}/\n穿越架空::https://wap.sou78.com/sort/7_{{page}}/\n高辣浓情::https://wap.sou78.com/sort/8_{{page}}/\n禁忌百合::https://wap.sou78.com/sort/9_{{page}}/\n精品文学::https://wap.sou78.com/sort/10_{{page}}/",
    "header": "",
    "lastUpdateTime": 1769591263829,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 7258,
    "ruleBookInfo": {
      "author": "class.tab@tag.p.0@text",
      "canReName": "",
      "coverUrl": "class.tu@tag.img@src",
      "init": "",
      "intro": "class.jj@tag.p@text",
      "kind": "class.tab@tag.tab1@p.0@text",
      "lastChapter": "class.tab@tag.p.2@a@text",
      "name": "tag.h1@text",
      "tocUrl": "",
      "wordCount": "class.tab@tag.tab1@p.2@text"
    },
    "ruleContent": {
      "content": "id.novelcontent@textNodes",
      "imageStyle": "",
      "nextContentUrl": "text.下一章@href",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "class.right@class.label@tag.p.2@a@text",
      "bookList": "class.tt",
      "bookUrl": "class.right@tag.p.0@a@href",
      "coverUrl": "class.left@tag.a@img@src",
      "intro": "class.p5@text",
      "kind": "class.right@class.label@tag.p.0@text",
      "lastChapter": "",
      "name": "class.right@tag.p.0@a@text",
      "wordCount": "class.right@class.label@tag.p.1@text"
    },
    "ruleSearch": {
      "author": "tag.a.2@text",
      "bookList": "class.search_list",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "",
      "intro": "",
      "kind": "tag.a.1@text",
      "lastChapter": "",
      "name": "tag.a.0@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "class.info_chapters@class.p2.1@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "text.下一页@href",
      "updateTime": ""
    },
    "searchUrl": "https://wap.sou78.com/s.php,{\n  \"charset\": \"gbk\",\n  \"method\": \"POST\",\n  \"body\": \"s={{key}}&type=articlename\"\n}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "大米小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.damixs.info",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 334,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"✱玄幻奇幻✱\",\"url\":\"/xuanhuan/{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"更新\",\"url\":\"/xuanhuan/update/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"点击\",\"url\":\"/xuanhuan/all/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"周榜\",\"url\":\"/xuanhuan/week/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"推荐\",\"url\":\"/xuanhuan/vote/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"✱武侠仙侠✱\",\"url\":\"/xianxia/{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"更新\",\"url\":\"/xianxia/update/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"点击\",\"url\":\"/xianxia/all/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"周榜\",\"url\":\"/xianxia/week/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"推荐\",\"url\":\"/xianxia/vote/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"✱都市言情✱\",\"url\":\"/dushi/{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"更新\",\"url\":\"/dushi/update/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"点击\",\"url\":\"/dushi/all/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"周榜\",\"url\":\"/dushi/week/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"推荐\",\"url\":\"/dushi/vote/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"✱历史军事✱\",\"url\":\"/lishi/{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"更新\",\"url\":\"/lishi/update/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"点击\",\"url\":\"/lishi/all/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"周榜\",\"url\":\"/lishi/week/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"推荐\",\"url\":\"/lishi/vote/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"✱游戏竞技✱\",\"url\":\"/wangyou/{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"更新\",\"url\":\"/wangyou/update/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"点击\",\"url\":\"/wangyou/all/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"周榜\",\"url\":\"/wangyou/week/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"推荐\",\"url\":\"/wangyou/vote/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"✱科幻灵异✱\",\"url\":\"/kehuan/{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"更新\",\"url\":\"/kehuan/update/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"点击\",\"url\":\"/kehuan/all/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"周榜\",\"url\":\"/kehuan/week/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"推荐\",\"url\":\"/kehuan/vote/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"✱其他类型✱\",\"url\":\"/qita/{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"更新\",\"url\":\"/qita/update/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"点击\",\"url\":\"/qita/all/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"周榜\",\"url\":\"/qita/week/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"推荐\",\"url\":\"/qita/vote/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"✱完本小说✱\",\"url\":\"/quanben/{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"更新\",\"url\":\"/quanben/update/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"点击\",\"url\":\"/quanben/all/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"周榜\",\"url\":\"/quanben/week/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"推荐\",\"url\":\"/quanben/vote/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"✱排行总榜✱\",\"url\":\"/shuku/{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"更新\",\"url\":\"/shuku/update/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"点击\",\"url\":\"/shuku/all/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"周榜\",\"url\":\"/shuku/week/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"推荐\",\"url\":\"/shuku/vote/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}\n]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"\n}",
    "lastUpdateTime": 1732985185597,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 2774,
    "ruleBookInfo": {
      "author": "class.booktag@tag.a.0@text",
      "canReName": "",
      "coverUrl": "#bookIntro@img@src",
      "init": "",
      "intro": "class.text-muted.0@text",
      "kind": "class.breadcrumb@tag.li.1@tag.a@text&&class.booktag@tag.span.2@text",
      "lastChapter": "class.panel-body panel-chapterlist@class.col-md-4.0@tag.a.0@text",
      "name": "class.bookTitle@text",
      "tocUrl": "",
      "wordCount": "class.booktag@tag.span.0@text##字数."
    },
    "ruleContent": {
      "content": "tag.p!-1:-2@textNodes",
      "imageStyle": "0",
      "nextContentUrl": "id.linkNext@href",
      "replaceRegex": "##「如章节缺失请退出#阅#读#模#式」.*|全网首发无弹窗免费阅读ｄ.*ａ.*m.*i.*x.*s.*..*o.*r.*g.*|(.*请.*来.*大.*米.*小.*说.*看.*最.*新.*章.*节.*完.*整.*章.*节.*).*|本书作者.*|.*提醒您.*最新章节在.*|全网首发无弹窗免费阅读ｄ.*ａ.*ｍ.*ｉ.*ｘ.*ｓ.*．.*o.*r.*g.*(请来大米小%说%看最新章节%完整章节).*|.*本书作者.*提醒您.*最新章节在.*|喜欢看.*|那就记住.*|的域名ｄａｍｉxs.org.*|(请来大米小说移动.*版.*看最新章节.*完整章节).*|你看#到的#内#容#中#间#可#能#有#缺#失，退#出#阅#读#模#式，才可以#继#续#阅#读#全#文,或者请使用其它#浏#览#器，或者来：d#a#m#i#x#s#.c#o#.*|.*提醒.*免费无弹窗阅读将第一时间在.*",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "class.text-muted.1@text",
      "bookList": "class.mytable@tag.tr!0",
      "bookUrl": "a@href",
      "coverUrl": "",
      "intro": "a@href\n<js>\nvar url=book.origin+result[0];\nresult=java.ajax(url);\nresult;\n</js>\nclass.text-muted.0@text",
      "kind": "class.hidden-xs.1@text&&class.text-nowrap@text",
      "lastChapter": "class.text-muted.0@tag.a.0@text",
      "name": "a.0@text"
    },
    "ruleSearch": {
      "author": "class.booktag@tag.a@text",
      "bookList": ".col-md-10",
      "bookUrl": "class.bookTitle@tag.a@href",
      "coverUrl": "",
      "intro": "class.text-muted hidden-xs.0@text",
      "kind": "",
      "lastChapter": "tag.p.2@tag.a@text",
      "name": "class.bookTitle@tag.a@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "class.col-md-3",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "/search/,{\n'charset': 'UTF-8\"',\n'method': 'POST',\n'body': 'keyword={{key}}&searchtype=all&Submit='\n}",
    "variableComment": "",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "五五读书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.changduge.com",
    "customButton": false,
    "customOrder": 335,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "lastUpdateTime": 1787425103544,
    "respondTime": 1599,
    "ruleBookInfo": {
      "author": "class.author@text##作者：",
      "coverUrl": "class.imgbox@tag.img@data-src",
      "intro": "class.jianjie@tag.p.0@textNodes",
      "lastChapter": "class.status@tag.p.-1@tag.a@text",
      "name": "class.status@tag.h1@text",
      "tocUrl": "class.read@href"
    },
    "ruleContent": {
      "content": "class.yd_text2@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.odd.1@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "class.odd.0@tag.a@href",
      "coverUrl": "class.odd.0@tag.a@href@js:result.replace(/\\/(\\d+)\\//,'/files/article/image/$1/$2/$2s.jpg')",
      "lastChapter": "class.even.0@text##正文",
      "name": "class.odd.0@text"
    },
    "ruleToc": {
      "chapterList": "class.mulu_list@tag.li@tag.a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "modules/article/search.php?searchkey={{key}}&searchtype=articlename&submit=搜索",
    "weight": -5
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "凡人小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.washuwx.org#🎃",
    "customButton": false,
    "customOrder": 336,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787413714228,
    "respondTime": 1883,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "class.intro clearfix@text",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "text.章节列表@href"
    },
    "ruleContent": {
      "content": "@js:\nvar txt = [],\ndd = java.getElement(\"#txt dd\");\nfor(i = 0; i < dd.length-1; i++){\n\tdata = dd.select(`[data-id=${i}]`)\n\ttxt.push(data)\n\t}\ntxt.join(\"\\n\")",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##{{try{title}catch(e){\"\"} }}\\s*\\(第\\d+.*页\\)|.?本章未完.*|.*凡人小说网全文字更新,牢记网址.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a@textNodes##.*\\(|\\)",
      "bookList": "ul[class=\"bd\"]@li",
      "bookUrl": "a@href",
      "checkKeyWord": "临安不夜侯",
      "kind": "span@text##\\[|\\]",
      "name": "a@textNodes##\\(.*|\\)"
    },
    "ruleToc": {
      "chapterList": "<js>\nvar list = [],\nd=java.getElement(\".list > div\");\nfor(i = 0; i < d.length-1; i++){\n\tdata = d.select(`[data-id=${i}]`)\n\tlist.push(data)\n\t}\nlist.join(\"\\n\")\n</js>\nli a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://wap.washuwx.org/s.php,{\n\t\"method\":\"post\",\n\t\"body\":\"s={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "读书网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.dushu.com/",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 337,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "古典作品::/readbook/1206_{{page}}.html\n名家文集::/readbook/1211_{{page}}.html\n世界名著::/readbook/1217_{{page}}.html\n小说作品::/readbook/1219_{{page}}.html\n社会科学::/readbook/1220_{{page}}.html\n文学艺术::/readbook/1221_{{page}}.html\n生活少儿::/readbook/1223_{{page}}.html\n科学技术::/readbook/1224_{{page}}.html",
    "header": "{\n    \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 Edg/89.0.774.68\",\n    \"Accept-Language\":\"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\"\n}",
    "lastUpdateTime": 1765887780367,
    "loginUrl": "",
    "respondTime": 2175,
    "ruleBookInfo": {
      "author": "class.book-details@tag.tr.0@tag.a@text",
      "coverUrl": "class.book-pic@tag.img@src",
      "init": "",
      "intro": "class.textsummary.@text",
      "kind": "class.crumbs@tag.a.3@text",
      "lastChapter": "",
      "name": "class.book-title@tag.h1@text",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "class.content_txt@html",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "tag.p.0@text",
      "bookList": ".book-info",
      "bookUrl": "h3@a@href",
      "coverUrl": "img@data-original",
      "intro": "tag.p.1@text",
      "kind": "",
      "lastChapter": "",
      "name": "h3@text"
    },
    "ruleSearch": {
      "author": "tag.p.0@text",
      "bookList": "class.searchlist@tag.li",
      "bookUrl": "tag.h3@tag.a@href",
      "coverUrl": "class.img152@tag.img@data-original",
      "intro": "tag.p.1@text",
      "kind": "",
      "lastChapter": "",
      "name": "tag.h3@tag.a@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "class.booklist-table@tag.td",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "isVip": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "https://www.dushu.com/search.aspx?qd={{key}}&f=0&r=3&t=0&p={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "//琥珀川修复",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "克苏鲁公社",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.cthulhuclub.com",
    "customButton": false,
    "customOrder": 339,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "原创故事::/category/mythos-original/\n原著小说::/category/mythos-stories/\n热门文章::/category/articles/\n外神&旧日支配者::/old_ones_and_outer_gods/\n神话生物::/monsters_and_abominations/\n神秘典籍::/eldrich_mysteries/\n人物档案::/mortals/\n神话年表::/category/mythos-timeline/\n世界地理::/category/mythos-location/\n克苏鲁跑团::/call-of-cthulhu-trpg/\n跑团模组::/coc-modules/",
    "lastUpdateTime": 1771749642830,
    "respondTime": 1587,
    "ruleBookInfo": {
      "author": "//p[contains(text(),'作者：')]/text()"
    },
    "ruleContent": {
      "content": "//div[contains(@class,'et_pb_post_content')]//p"
    },
    "ruleExplore": {
      "bookList": "article.dgbm_post_item",
      "bookUrl": "h2.dg_bm_title a@href",
      "coverUrl": "div.dg-post-thumb img@src",
      "intro": "div.post-content p@text",
      "name": "h2.dg_bm_title a@text"
    },
    "ruleSearch": {
      "bookList": "article.post",
      "bookUrl": "h2.entry-title a@href",
      "coverUrl": "div.et_pb_image_container img@src",
      "intro": "div.post-content-inner p@text",
      "name": "h2.entry-title a@text"
    },
    "ruleToc": {
      "chapterList": "body",
      "chapterName": "//h1[@class='entry-title']/text()",
      "chapterUrl": "//link[@rel='canonical']/@href"
    },
    "searchUrl": "/?s={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "无忧书城",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.51shucheng.net",
    "concurrentRate": "3",
    "customButton": false,
    "customOrder": 340,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"官场\",\"url\":\"/guanchang\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"盗墓\",\"url\":\"/daomu\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"宫廷\",\"url\":\"/gongting\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"武侠\",\"url\":\"/wuxia\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"科幻\",\"url\":\"/kehuan\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"侦探\",\"url\":\"/zhentan\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"网络\",\"url\":\"/wangluo\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"影视\",\"url\":\"/yingshi\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"言情\",\"url\":\"/yanqing\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"悬疑\",\"url\":\"/xuanyituili\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"恐怖\",\"url\":\"/kongbu\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"社会\",\"url\":\"/shehui\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"架空\",\"url\":\"/jiakong\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"穿越\",\"url\":\"/chuanyue\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"古典\",\"url\":\"/gudian\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"现代\",\"url\":\"/xiandai\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"外国\",\"url\":\"/waiguo\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"传记\",\"url\":\"/zhuanji\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"诗词\",\"url\":\"/shici\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"世界\",\"url\":\"/shijiemingzhu\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"四大\",\"url\":\"/sidamingzhu\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"历史\",\"url\":\"/lishi\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"宗教\",\"url\":\"/zongjiao\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"哲学\",\"url\":\"/zhexue\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"军事\",\"url\":\"/junshi\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"自然\",\"url\":\"/renwen\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"青春\",\"url\":\"/qingchun\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"儿童\",\"url\":\"/ertong\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"经管\",\"url\":\"/jingji\",\"style\":{\"layout_flexBasisPercent\":0.213}},{\"title\":\"金融\",\"url\":\"/touzi\",\"style\":{\"layout_flexBasisPercent\":0.213}}]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\", \"Cookie\": \"0\"}",
    "lastUpdateTime": 1785042092821,
    "respondTime": 3359,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "init": "@put:{\nn:\"[property~=book_name|title]@content||.book-title@text\",\na:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content||.book-meta@a@text\",\nl:\"[property~=lastest_chapter_name|latest_chapter_name]@content\",\ni:\"[property$=description]@content||.book-intro@text\",\nc:\"[property$=image]@content\"\n}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}"
    },
    "ruleContent": {
      "content": ".content@html&&id.neirong@html",
      "replaceRegex": "##{{book.author}}.*.接着再看更方便|本章没完.*继续阅读！如果被转码.*更换浏揽器即可。|本章未完.*退出阅读模式即可，谢谢|.*提醒.*看完记得.*|\\s*温馨提示.?亲爱的读者.*\\s*|\\d+。。"
    },
    "ruleExplore": {
      "author": "class.book-meta@text##作者：",
      "bookList": "class.book-item",
      "bookUrl": "h2@a@href",
      "intro": "class.book-summary@text",
      "name": "h2@text"
    },
    "ruleSearch": {
      "bookList": ".search_result@ul@li",
      "bookUrl": "a@href",
      "checkKeyWord": "剑来",
      "coverUrl": "img@src",
      "intro": "p@text",
      "name": "h3@text"
    },
    "ruleToc": {
      "chapterList": "#book-chapter-list@ul@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "@js:\nvar su=source.getKey()\nvar htmlUrl=java.get(su,{}).headers('Location')\njava.log(`重定向：${htmlUrl[0]}`)\nvar posturl=htmlUrl[0]?htmlUrl[0]:(su.includes(\"#\")?su.match(/([^\\#]+)\\#/)[1]:su)\nposturl = posturl.slice(-1)=='/'?posturl.slice(0,-1):posturl\ncookie.removeCookie(posturl)\njava.log(`请求：${posturl}`)\n\nck=cookie.getCookie(posturl);\n\ncookie.setCookie(posturl,String(ck).replace(/ss_search_delay=.*/,\"\"));\n\nso=posturl+\"/search?q={{key}}\"\njava.put(\"url\",String(so))\nso",
    "weight": 0
  },
  {
    "bookSourceComment": "6.14@ys4568",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "九九藏书",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.sangshixs.com",
    "customButton": false,
    "customOrder": 341,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\n   let result=[];\n   let push=(title, url, size)=>result.push({\n       \"title\": title,\n       \"url\": url,\n       \"style\": {\n        \"layout_flexGrow\": 1,\n        \"layout_flexBasisPercent\": size\n       }\n});\n   bu=source.key;\n   aj=java.ajax(bu);\n   let a=org.jsoup.Jsoup.parse(aj);\n   let b=a.select('.nav li a');\n   push('💖分类💖','',1);\n   for (i in b) {\n        let url=b[i].attr('href');\n        url=url+\"<,index_{{page}}.html>\";\n        push(b[i].text(), url, 0.25);\n    }\nJSON.stringify(result);",
    "lastUpdateTime": 1785964278543,
    "respondTime": 3008,
    "ruleBookInfo": {
      "coverUrl": "[property$=image]@content",
      "intro": "&nbsp;{{@@[property$=description]@content}}",
      "kind": "[property~=category|status|update_time]@content"
    },
    "ruleContent": {
      "content": "#content@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "td.-2@text",
      "bookList": "tbody tr",
      "bookUrl": "a.0@href",
      "kind": "td.-1@text",
      "lastChapter": "a.1@text##^\\d+、",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": "#booklist li a",
      "chapterName": "text##^\\d+、",
      "chapterUrl": "href"
    },
    "searchUrl": "/e/search/index.php,{\n  \"body\": \"tbname=bookname&show=title,writer&tempid=1&keyboard={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "大家夏季",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xwurexs.com",
    "bookUrlPattern": "http://www.xwurexs.com/read/\\d+/",
    "customButton": false,
    "customOrder": 342,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"🔹排行🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"最新小说\",\"url\":\"/new/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"小说推荐\",\"url\":\"/tuijian/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"金牌推荐\",\"url\":\"/jinpaituijian/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"封推小说\",\"url\":\"/fengtui/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日排行榜\",\"url\":\"/dpaihangbang/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周排行榜\",\"url\":\"/wpaihangbang/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月排行榜\",\"url\":\"/mpaihangbang/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总排行榜\",\"url\":\"/paihangbang/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"🔹分类🔹\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"武侠仙侠\",\"url\":\"/wuxia/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市言情\",\"url\":\"/yanqing/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"耽美小说\",\"url\":\"/danmei/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻小说\",\"url\":\"/xuanhuan/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"青春校园\",\"url\":\"/qingchun/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游竞技\",\"url\":\"/wangyou/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"灵异推理\",\"url\":\"/kongbu/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"纪实文学\",\"url\":\"/jishi/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"军事历史\",\"url\":\"/lishi/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻小说\",\"url\":\"/kehuan/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"管理哲学\",\"url\":\"/zhexue/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学习资料\",\"url\":\"/xuexi/{{page==1?'':'index_'+page+'.html'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36\"}",
    "lastUpdateTime": 1772785797326,
    "respondTime": 10083,
    "ruleBookInfo": {
      "author": ".small.0@text",
      "coverUrl": "img@src",
      "init": ".detail_info",
      "intro": ".small.4@text##作者：.*|简介：",
      "kind": ".small.2@text##更新日期：",
      "lastChapter": ".small.3@text##最新章节：",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "#content@textNodes",
      "replaceRegex": "##请记住本书首发域名：.*"
    },
    "ruleExplore": {
      "author": "text.作者@text##\\s.*",
      "bookList": ".listBox ul li",
      "bookUrl": "a.0@href##(\\d+)##http://www.xwurexs.com/read/$1/###",
      "coverUrl": "a.0@href<js>\nvar id = result.match(/(\\d+)/)[1];\nvar iid = parseInt(id/1000);\n'http://www.xwurexs.com/headimgs/'+iid+'/'+id+'/s'+id+'.jpg';\n</js>",
      "intro": ".u@text",
      "kind": "text.更新@text##.*更新：",
      "lastChapter": "div@a@text",
      "name": "a.0@text##txt下载"
    },
    "ruleSearch": {
      "author": ".even.1@text",
      "bookList": ".detail_info tr!0",
      "bookUrl": ".even.0@a@href",
      "checkKeyWord": "逼我重生是吧",
      "coverUrl": ".even.0@a@href<js>\nvar id = result.match(/(\\d+)/)[1];\nvar iid = parseInt(id/1000);\n'http://www.xwurexs.com/headimgs/'+iid+'/'+id+'/s'+id+'.jpg';\n</js>",
      "kind": ".odd.2@text",
      "lastChapter": ".odd.1@text",
      "name": ".even.0@text"
    },
    "ruleToc": {
      "chapterList": ".showInfo.1@li@a",
      "chapterName": "text@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求含理更谢乐发推票盟补加字Kk\\/].*/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "chapterUrl": "href"
    },
    "searchUrl": "/so.html?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "//搜索字数6-20个字符之间",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "手机小说#5",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.sjks88.com",
    "customButton": false,
    "customOrder": 343,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"最新\",\"url\":\"/latest/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"排行\",\"url\":\"/ranking/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"鬼话\",\"url\":\"/Direct1/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"情感\",\"url\":\"/Direct2/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/xuanhuan/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"奇幻\",\"url\":\"/Direct3/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"商道\",\"url\":\"/Direct4/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"军事\",\"url\":\"/Direct5/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/Direct6/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"传记\",\"url\":\"/zhuanji/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/Direct7/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/ds/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"耽美\",\"url\":\"/danmei/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"同人\",\"url\":\"/erciyuan/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/wuxia/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"修真\",\"url\":\"/xiuzhen/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"官场\",\"url\":\"/guanchang/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/wangyou/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/kehuan/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"穿越\",\"url\":\"/chuanyue/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"悬疑\",\"url\":\"/Suspense/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"纪实\",\"url\":\"/jishi/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"精品\",\"url\":\"/xiaoshuo/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"乡土\",\"url\":\"/xt/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1787069635113,
    "respondTime": 9033,
    "ruleBookInfo": {
      "author": ".box-artic div.0@text##\\_.*",
      "intro": ".desc@html",
      "kind": ".box-artic div.2:1@text##.*：",
      "name": ".box-artic h1@text##（.*|\\(.*"
    },
    "ruleContent": {
      "content": ".content@html"
    },
    "ruleExplore": {
      "author": "span.0@text##\\_.*",
      "bookList": ".list li",
      "bookUrl": "a@href",
      "intro": "p@text",
      "kind": ".pubdate@text",
      "name": "b@text##（.*|\\(.*"
    },
    "ruleSearch": {
      "bookList": ".box ul li",
      "bookUrl": "a.0@href",
      "checkKeyWord": "洪荒：",
      "intro": "p@text",
      "kind": "a.1@text&&span@textNodes",
      "name": "a.0@text##（.*|\\(.*"
    },
    "ruleToc": {
      "chapterList": ".list li a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/e/search/index.php,{\n  \"charset\": \"gb2312\",\n  \"method\": \"post\",\n  \"body\": \"keyboard={{key}}&show=title&classid=0\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎉 优选",
    "bookSourceName": "殓师灵异（优）",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.rulianshi.org/#pb1101",
    "customButton": false,
    "customOrder": 344,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1759386366650,
    "respondTime": 1620,
    "ruleBookInfo": {
      "author": "class.info@class.small@tag.span.0@text",
      "coverUrl": "class.cover@img@src",
      "intro": "class.info@ownText",
      "kind": "class.info@class.small@tag.span.4@text&&\nclass.info@class.small@tag.span.1@text&&\nclass.info@class.small@tag.span.2@text##分类：|状态：|更新时间：",
      "lastChapter": "class.info@class.small@tag.span.5@a@text",
      "name": "class.info@h2@text",
      "wordCount": "class.info@class.small@tag.span.3@text##字数："
    },
    "ruleContent": {
      "content": "id.content@html##http.*html|请记住本书首发.*org",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.author@text",
      "bookList": "class.bookbox",
      "bookUrl": "h4@a@href",
      "coverUrl": "img@src",
      "lastChapter": "class.update@a@text",
      "name": "h4@a@text"
    },
    "ruleToc": {
      "chapterList": "class.listmain@dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://www.rulianshi.org/s.php?ie=utf-8&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "同站：\nhttp://i.12bz.net\nhttp://m.111bz.cc\nhttp://m.dybz123.com\nhttp://m.xinbanzhu.net\n御书屋：http://m.yushuwu12.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "️小版主",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.xiaobanzhu.com",
    "customButton": false,
    "customOrder": 345,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"榜单\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"日点击榜\",\"url\":\"/top/dayvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周点击榜\",\"url\":\"/top/weekvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月点击榜\",\"url\":\"/top/monthvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总点击榜\",\"url\":\"/top/allvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总收藏榜\",\"url\":\"/top/goodnum_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"字数排行\",\"url\":\"/top/size_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总推荐榜\",\"url\":\"/top/allvote_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"最新入库\",\"url\":\"/top/postdate_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"最近更新\",\"url\":\"/top/lastupdate_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻小说\",\"url\":\"/sort/1_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"修真小说\",\"url\":\"/sort/2_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市小说\",\"url\":\"/sort/3_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"穿越小说\",\"url\":\"/sort/4_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"藏经阁\",\"url\":\"/sort/5_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻小说\",\"url\":\"/sort/6_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"其他小说\",\"url\":\"/sort/7_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.29}}]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 7.1.1; Mi Note 3 Build/NMF26X; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.98 Mobile Safari/537.36\"\n}​",
    "lastUpdateTime": 1785667558034,
    "respondTime": 55322,
    "ruleBookInfo": {
      "author": ".block_txt2@p.2@a@text",
      "coverUrl": ".block_img2@img@src",
      "intro": ".intro_info@text",
      "kind": ".block_txt2@p.3@a@text",
      "lastChapter": ".block_txt2@p.5@a@text",
      "name": ".block_txt2@h2@a@text",
      "tocUrl": "text.查看目录@href",
      "wordCount": ".block_txt2@p.4@text&&.block_txt2@p.4@text"
    },
    "ruleContent": {
      "content": "#nr1@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##\\n.*本章未完.*\\n.."
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".line",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src||tag.a.0@href##.*/(\\d+)/(\\d+)/##http://www.xiaobanzhu.com/files/article/image/$1/$2/$2s.jpg",
      "kind": "a.0@text",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": ".chapter@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "/s.php,{\n  \"body\": \"type=articlename&s={{key}}&submit=\",\n  \"charset\": \"GBK\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "❤️圣墟小说🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.shengxuxu.info",
    "bookUrlPattern": "http.*shengxuxu.net/book_\\d+/",
    "customButton": false,
    "customOrder": 348,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "总点击:: /top/allvisit.html\n排行::/top/monthvisit.html\n",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1769590618925,
    "respondTime": 2110,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "init": "@put:{n:\"[property$=book_name]@content\",\n\ta:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property$=lastest_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"[property$=image]@content\"}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}"
    },
    "ruleContent": {
      "content": ".content@html",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {
      "author": ".s4@text",
      "bookList": ".librarylist li",
      "bookUrl": "a:nth-child(1)@href",
      "kind": ".info span:nth-child(2)@text",
      "lastChapter": "a:nth-child(1)@text",
      "name": ".info span:nth-child(1)@text ##.*《|》.*"
    },
    "ruleSearch": {
      "author": ".info span:nth-child(2)@text",
      "bookList": ".librarylist li ",
      "bookUrl": "a:nth-child(1)@href",
      "kind": ".info span:nth-child(3) a@text",
      "lastChapter": ".last@text",
      "name": ".info span:nth-child(1)@text ##.*《|》.*"
    },
    "ruleToc": {
      "chapterList": ".dirlist@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "option@value||text.下一页@href"
    },
    "searchUrl": "/search.html?/,{\n  \"body\": \"searchkey={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 63
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "❤️年代小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.4xiaoshuo.info",
    "customButton": false,
    "customOrder": 349,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "玄幻奇幻::/xuanhuan_{{page}}.html\n武侠仙侠::/wuxia_{{page}}.html\n都市言情::/dushi_{{page}}.html\n历史军事::/lishi_{{page}}.html\n科幻灵异::/kehuan_{{page}}.html\n网游竞技::/wangyou_{{page}}.html\n女生频道::/mm_{{page}}.html",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36\"\n}",
    "lastUpdateTime": 1769602718452,
    "respondTime": 5970,
    "ruleBookInfo": {
      "author": "class.info@class.small@tag.span.0@text##作者：",
      "coverUrl": "class.info@class.cover@img@src",
      "intro": "class.info@class.intro@text##简介：",
      "kind": "class.info@class.small@tag.span.4@text&&\nclass.info@class.small@tag.span.1@text&&&&\nclass.info@class.small@tag.span.2@text##分类：|状态：|更新时间：",
      "lastChapter": "class.info@class.small@tag.span.4@a@text",
      "name": "class.info@h2@text",
      "wordCount": "class.info@class.small@tag.span.3@text##字数："
    },
    "ruleContent": {
      "content": "id.content@html##请记住本书首发.*com"
    },
    "ruleExplore": {
      "author": "class.s4@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'http://www.xyusk.com/headimgs/'+iid+'/'+id+'/s'+id+'.jpg';\n</js>",
      "kind": "class.s5@text",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text"
    },
    "ruleSearch": {
      "author": "class.author@text##作者：",
      "bookList": "class.bookbox",
      "bookUrl": "h4@a@href",
      "coverUrl": "img@src",
      "kind": "class.cat@text##分类：",
      "lastChapter": "class.update@a@text",
      "name": "h4@a@text"
    },
    "ruleToc": {
      "chapterList": "class.listmain@tag.dd!0:1:2:3:4:5:6:7:8:9:10:11",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href@js:result+',{webView:“true”}'"
    },
    "searchUrl": "/search.php?searchkey={{key}}",
    "weight": 1
  },
  {
    "bookSourceComment": "改自@m8458246@",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "南极小说",
    "bookSourceType": 0,
    "bookSourceUrl": "🐧",
    "customButton": false,
    "customOrder": 350,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 13; zh-cn; V2183A Build/TP1A.220624.014) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/89.0.4389.72 MQQBrowser/13.4 Mobile Safari/537.36 COVC/046223\",\n\"Referer\":\"https://novel.html5.qq.com/\",\n\"Q-GUID\":\"0ee63838b72eb075f63e93ae0bc288cb\",\n\"QIMEI36\":\"8ff310843a87a71101958f5610001e316a11\"}",
    "lastUpdateTime": 1769596624312,
    "respondTime": 1559,
    "ruleBookInfo": {
      "author": ".author",
      "coverUrl": ".picurl",
      "init": "data",
      "intro": "&nbsp;{{$..summary}}\n&lrm;\n标签：{{$..tag##\\|##&nbsp;}}##\\n&lrm;\\n标签：$",
      "kind": "{{java.getString('$.isfinish')=='true'?'完结':'连载'}},{{$..subject}},{{String(java.timeFormat(java.getString(\"$..lastSerialUpdateTime\")*1000)).replace(/\\//g,\"\\-\")}},{{$..userscore}}分",
      "lastChapter": ".lastSerialname",
      "name": ".resourceName",
      "tocUrl": "/qbread/api/book/all-chapter?bookId={{$..resourceID}}",
      "wordCount": ".contentsize##$##字"
    },
    "ruleContent": {
      "content": "data.Content[0].Content"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author",
      "bookList": "data.state[*]",
      "bookUrl": "https://novel.html5.qq.com/qbread/api/novel/bookInfo?resourceId={{$..docId##.*_}}",
      "coverUrl": ".cover_url",
      "intro": ".abstract",
      "kind": "连载{{$..is_finished}}完结,{{$..tag_views##\\s##,}}##连载1|0完结",
      "name": ".title##.*\\s.*",
      "wordCount": ".label_text"
    },
    "ruleToc": {
      "chapterList": ".rows[*]",
      "chapterName": "serialName",
      "chapterUrl": "serialID\n@js:\nlet data=JSON.stringify({ContentAnchorBatch:[{BookID:baseUrl.match(/bookId=(\\d+)/)[1],ChapterSeqNo:[result]}],Scene:\"chapter\"})\nlet option={\"method\":\"POST\",\"body\":data}\n\"/be-api/content/ads-read,\"+JSON.stringify(option)"
    },
    "searchUrl": "https://so.html5.qq.com/ajax/real/search_result?tabId=360&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎉天域小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.tycqzw.com/",
    "bookUrlPattern": "https://www.tycqzw.com/\\d+_\\d+/",
    "customButton": false,
    "customOrder": 351,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"全部小说\",\"url\":\"https://m.tycqzw.com/xclass/0/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"玄幻小说\",\"url\":\"https://m.tycqzw.com/xclass/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"修真小说\",\"url\":\"https://m.tycqzw.com/xclass/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"都市小说\",\"url\":\"https://m.tycqzw.com/xclass/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"穿越小说\",\"url\":\"https://m.tycqzw.com/xclass/4/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"网游小说\",\"url\":\"https://m.tycqzw.com/xclass/5/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"科幻小说\",\"url\":\"https://m.tycqzw.com/xclass/6/{{page}}.html\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}},{\"title\":\"其他小说\",\"url\":\"https://m.tycqzw.com/xclass/7/{{page}}.html\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}}]",
    "lastUpdateTime": 1752213212070,
    "loginUrl": "",
    "respondTime": 5775,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作\\s*者：",
      "coverUrl": "id.fmimg@tag.img@src",
      "init": "",
      "intro": "id.intro@text",
      "kind": "[property=og:novel:update_time]@content&&\n[property=og:novel:category]@content&&\n[property=og:novel:status]@content",
      "lastChapter": "id.list@tag.dd.0@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.info@tag.h1.0@text"
    },
    "ruleContent": {
      "content": "id.content@html##推荐.*新书.*|手机用户.*阅读体验。"
    },
    "ruleExplore": {
      "author": "class.author@text##作者：",
      "bookList": "class.hot_sale",
      "bookUrl": "tag.a.0@href@js:\nr=result.match(/_(\\d+)/)\nid=r[1]\nvar iid = parseInt(id/1000);\n'https://www.tycqzw.com/'+iid+'_'+id+'/'",
      "coverUrl": "img@data-original",
      "intro": "class.review@text##简介：",
      "lastChapter": "",
      "name": "class.title@text"
    },
    "ruleSearch": {
      "author": "class.even.1@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "class.even.0@tag.a.0@href",
      "coverUrl": "class.even.0@tag.a.0@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.tycqzw.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "class.odd.0@tag.a.0@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.even.0@tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd@tag.a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://www.tycqzw.com/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "W漫画",
    "bookSourceType": 2,
    "bookSourceUrl": "https://www.wmanhua.com",
    "concurrentRate": "5",
    "customButton": false,
    "customOrder": 352,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\nlet categories = [];\n\nfunction add(title, url, flexBasis) {\n    categories.push({\n        title: title,\n        url: url,\n        style: { layout_flexGrow: 1, layout_flexBasisPercent: flexBasis }\n    });\n}\n\nadd(\"全部\", \"/sort?category=0&tag=0&page={{page}}\", 1);\nadd(\"日本漫画\", \"/sort?category=1&tag=0&page={{page}}\", 0.39);\nadd(\"韩国漫画\", \"/sort?category=2&tag=0&page={{page}}\", 0.39);\nadd(\"大陆漫画\", \"/sort?category=3&tag=0&page={{page}}\", 0.39);\nadd(\"港台漫画\", \"/sort?category=4&tag=0&page={{page}}\", 0.39);\n\nlet tags = [\n    \"欢乐\",\"生活\",\"爱情\",\"奇幻\",\"冒险\",\"轻改\",\"魔幻\",\"重生\",\"修仙\",\"校园\",\n    \"悬疑\",\"侦探\",\"玄幻\",\"职场\",\"搞笑\",\"格斗\",\"游戏\",\"灵异\",\"性转\",\"仙侠\",\n    \"都市\",\"后宫\",\"穿越\",\"百合\",\"转生\",\"女主\",\"热血\",\"末世\",\"异界\",\"异能\",\n    \"长篇\",\"宫廷\",\"萌系\",\"系统\",\"魔法\",\"科幻\",\"日常\",\"惊悚\",\"末日\",\"历史\",\n    \"四格\",\"音乐\",\"伪娘\",\"武侠\",\"励志\",\"机战\",\"耽美\",\"复仇\",\"养成\",\"同人\",\n    \"舰娘\",\"东方\",\"治愈\",\"美食\",\"言情\",\"逆袭\",\"竞技\",\"节操\",\"战争\",\"爆笑\",\n    \"爱看\",\"生存\",\"恐怖\",\"妹控\",\"战斗\",\"舞蹈\",\"诡异\",\"网游\",\"病娇\",\"推理\",\n    \"恋爱\",\"彩色\",\"其他\",\"TL\",\"宅系\",\"FATE\",\"C103\",\"C105\",\"欢乐向\",\"爱恋\",\n    \"探险\",\"神鬼\",\"轻小说\",\"格斗\",\"后宫\",\"C106\",\"C107\",\"穿越\"\n];\n\ntags.forEach((title, idx) => {\n    let tag = idx + 1;\n    add(title, `/sort?category=0&tag=${tag}&page={{page}}`, 0.25);\n});\n\nJSON.stringify(categories);\n</js>",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36\"}",
    "lastUpdateTime": 1786691296618,
    "respondTime": 3959,
    "ruleBookInfo": {
      "author": ".author.0@text##作者：",
      "coverUrl": "[property$=image]@content||img@src",
      "intro": "[property$=description]@content||.m-desc@html||meta[name=description]@content",
      "kind": "{{@@.author!0@a@text}},{{@@.status@text}}##状态：",
      "lastChapter": ".author.-1@text##更新：",
      "name": "h1@text",
      "tocUrl": "{{baseUrl.replace(/\\.html/,'')}},{\"method\":\"POST\",\"body\":\"{}\"}"
    },
    "ruleContent": {
      "content": "<js>\nvar data=[];\nvar url=java.hexDecodeToString(result);\nvar result=java.get(url,{}).body();\nvar page=String(result).match(/eval\\(\\\"(\\d+)\\\"\\)/)?.[1]||1;\nvar imglist=String(result).match(/pasd \\= \\\"(.*?)\\\"/)?.[1]||1;\nfor (var i = 1; i <= page; i++) {\n        data.push('<img src=\"' + imglist + i + '.webp\">');\n}\ndata.join(\"\\n\");\n</js>"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "{{\"🈚\"}}",
      "bookList": ".card-content",
      "bookUrl": "a.0@href",
      "coverUrl": "img@data-src",
      "name": "h3@text"
    },
    "ruleToc": {
      "chapterList": "<js>\nlet jsonResult = JSON.parse(result);\nlet data = [];\n\nvar Href = (contentId, id) => {\n    let base = `${source.key}/chapter/${contentId}-${id}.html`;\n    return `data:;base64,${java.base64Encode(base)},{\"type\":\"辞晨\"}`;\n};\n\nvar ChapterData = (item, isVolume) => ({\n    title: item.chapterName,\n    href: isVolume ? null : Href(item.contentId, item.id),\n    time: item.createdAt.replace(/T.*/, ' '),\n    volume: isVolume,\n    vip: false\n});\n\njsonResult.data.chapters.forEach(chapter => {\n    data.push(ChapterData(chapter, false));\n});\ndata.reverse();\nJSON.stringify(data)\n</js>\n$.[*]",
      "chapterName": "$.title",
      "chapterUrl": "$.href",
      "isVip": "$.vip",
      "isVolume": "$.volume",
      "updateTime": "$.time"
    },
    "searchUrl": "/search?query={{encodeURI(key)}}<,&page={{page+1}}>",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "顶点小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.23uswx.la",
    "bookUrlPattern": "http://www.23uswx.la/\\d+_\\d+/",
    "customButton": false,
    "customOrder": 353,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/xuanhuanxiaoshuo/?page={{page}}\n修真小说::/xiuzhenxiaoshuo/?page={{page}}\n都市小说::/dushixiaoshuo/?page={{page}}\n穿越小说::/chuanyuexiaoshuo/?page={{page}}\n网游小说::/wangyouxiaoshuo/?page={{page}}\n科幻小说::/kehuanxiaoshuo/?page={{page}}\n完本小说::/wanben/?page={{page}}",
    "lastUpdateTime": 1782368753681,
    "respondTime": 2054,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作    者：",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.intro@text",
      "kind": "[property=og:novel:update_time]@content&&\n[property=og:novel:category]@content&&\n[property=og:novel:status]@content",
      "lastChapter": "id.info@tag.p.3@a@text",
      "name": "id.info@tag.h1.0@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleContent": {
      "content": "id.content@html##最新网址.*us|顶点小说.*us|最快更新.*最新章节！",
      "replaceRegex": "##\\wx.la"
    },
    "ruleExplore": {
      "author": ".s5@text",
      "bookList": "ul li",
      "bookUrl": ".s2@a@href",
      "lastChapter": "tag.a.1@text",
      "name": ".s2@text##《|》"
    },
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "tag.td.0@tag.a@href",
      "coverUrl": "tag.td.0@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.x23us.us/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "tag.td.1@tag.a@text",
      "name": "tag.td.0@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/modules/article/search.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎉 优选",
    "bookSourceName": "全本同人（优）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.qbtr.me/",
    "customButton": false,
    "customOrder": 354,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "同人小说::/tongren/<,index_{{page}}.html>\n常规小说::/changgui/<,index_{{page}}.html>\n同人榜单::/hot/<,index_{{page}}.html>",
    "lastUpdateTime": 1758571899699,
    "respondTime": 3163,
    "ruleBookInfo": {
      "author": ".date span@text##.*：",
      "coverUrl": ".pic img@src",
      "intro": ".infos p@html",
      "kind": ".menNav a.1@text&&.date@textNodes##.*：|小说",
      "lastChapter": ".book_list a.-1@text",
      "name": ".infos h1@text##\\(\\S+"
    },
    "ruleContent": {
      "content": ".read_chapterDetail@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".booknews@ownText##.*：",
      "bookList": ".bk",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": "p@text##简介.",
      "kind": "label@text",
      "lastChapter": "h3@text##\\S+\\(|\\)",
      "name": "h3@text##\\(\\S+"
    },
    "ruleToc": {
      "chapterList": ".book_list a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/e/search/index.php,{\n  \"charset\": \"gb2312\",\n  \"method\": \"POST\",\n  \"body\": \"keyboard={{key}}&show=title&classid=0\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "有黄广告",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "三五小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.35wx.la",
    "bookUrlPattern": "https?://www.35wx.la/[\\d_]+/",
    "customButton": false,
    "customOrder": 355,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/xuanhuanxiaoshuo\n修真小说::/xiuzhenxiaoshuo\n都市小说::/dushixiaoshuo\n穿越小说::/chuanyuexiaoshuo\n网游小说::/wangyouxiaoshuo\n科幻小说::/kehuanxiaoshuo\n排行榜单::/paihangbang\n其他小说::/qitaxiaoshuo",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36",
    "lastUpdateTime": 1785042630225,
    "loginCheckJs": "cookie.removeCookie(source.getKey())\nresult",
    "loginUrl": "https://www.35wx.la/login.php",
    "respondTime": 8067,
    "ruleBookInfo": {
      "author": "id.info@p.0@text",
      "coverUrl": "img@src",
      "intro": "id.intro@p@textNodes",
      "kind": ".con_top@a.-1@text",
      "lastChapter": "id.info@p.-1@text",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "id.ccc@textNodes",
      "nextContentUrl": ":contains(下一页)@href##(^.*_\\d+.*$|^)##$1###",
      "replaceRegex": "##\\s{0,100}\\n{0,2}.*(第.*页).*\\n{0,2}\\s{0,100}"
    },
    "ruleExplore": {
      "author": "class.s5@text",
      "bookList": "class.l@li||class.r",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "a.0@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.35wx.la/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "class.s3@text",
      "name": "class.s2@a@text||class.s2 mid@text"
    },
    "ruleSearch": {
      "author": "class.odd.1@text",
      "bookList": "tbody tr!0",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.35wx.la/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": ".even@text",
      "name": "class.odd.0@text"
    },
    "ruleToc": {
      "chapterList": "dl@dd@a",
      "chapterName": "text",
      "chapterUrl": "href##$##,{'webView': true}"
    },
    "searchUrl": "https://www.35wx.la/modules/article/search.php,{\n  \"body\": \"searchkey={{key}}&type=articlename&submit=\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "篱笆文学",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.libahao2.com",
    "bookUrlPattern": "https://m.libahao2.com/book/.+",
    "customButton": false,
    "customOrder": 357,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1780884968892,
    "respondTime": 12262,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "img@src",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property～=category|status|update_time]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "[property=\"og:novel:read_url\"]@content"
    },
    "ruleContent": {
      "content": ".chapter-content@html",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleSearch": {
      "author": ".book-author@text",
      "bookList": ".book-item",
      "bookUrl": "href",
      "coverUrl": "img@src",
      "intro": ".book-description@text",
      "name": ".book-title@text"
    },
    "ruleToc": {
      "chapterList": ".chapter-list.1@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://m.libahao2.com/sou?wd={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "双零电子",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.wrlwx.com",
    "customButton": false,
    "customOrder": 358,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"✱　　　　　　✱  榜    单  ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"总排行榜\",\"url\":\"/paihangbang/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"月排行榜\",\"url\":\"/mpaihangbang/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"周排行榜\",\"url\":\"/wpaihangbang/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"最  新\",\"url\":\"/new/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"封  推\",\"url\":\"/fengtui/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"推  荐\",\"url\":\"/tuijian/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"金牌推荐\",\"url\":\"/jinpaituijian/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱  分    类  ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠仙侠\",\"url\":\"/wuxia/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市言情\",\"url\":\"/yanqing/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"耽美小说\",\"url\":\"/danmei/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"玄幻小说\",\"url\":\"/xuanhuan/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春校园\",\"url\":\"/xiaoyuan/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"网游竞技\",\"url\":\"/wangyou/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"灵异推理\",\"url\":\"/kongbu/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"纪实文学\",\"url\":\"/jishi/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事历史\",\"url\":\"/lishi/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科幻小说\",\"url\":\"/kehuan/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"管理哲学\",\"url\":\"/zhexue/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"学习资料\",\"url\":\"/xuexi/index_{{page}}.html\",\"style\":{\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1780933301551,
    "respondTime": 5524,
    "ruleBookInfo": {
      "author": "class.block_txt2@tag.p.2@text##作者：",
      "coverUrl": "img@src",
      "kind": "class.block_txt2@tag.p.2@a@text",
      "lastChapter": "class.block_txt2@tag.p.6@a@text",
      "name": "class.block_txt2@h2@a@text",
      "tocUrl": "class.block_txt2@tag.a.0@href##-(\\d+).html##http://www.wrltxt.com/read/$1/###"
    },
    "ruleContent": {
      "content": "id.content@textNodes##请记住本书.*",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "class.s@text##大小.*",
      "bookList": "//div[5]/div[2]/div/ul/li",
      "bookUrl": "class.red@href",
      "intro": "class.u@text",
      "kind": "class.s@textNodes##作者.*|大小：|星级：|更新：",
      "lastChapter": "tag.div.-1@text##最新章节：",
      "name": "tag.a.0@text##txt.*"
    },
    "ruleSearch": {
      "author": "tag.td.3@text",
      "bookList": "tbody@tr!0",
      "bookUrl": "tag.a.0@href",
      "lastChapter": "tag.td.2@text",
      "name": "tag.td.1@text"
    },
    "ruleToc": {
      "chapterList": "//div[5]/div/div[3]/div[2]/ul/li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.wrlwx.com/so.html?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "茄子免费",
    "bookSourceType": 0,
    "bookSourceUrl": "https://api-bc.wenxueapp.com",
    "customButton": false,
    "customOrder": 359,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1786329720704,
    "respondTime": 1032,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$.image_link",
      "init": "$.data.book",
      "intro": "&nbsp;&nbsp;\n📕 书名：{{$.title}}{{\"\\n\"+\"​\"}}\n✏️ 作者：{{$.author}}{{\"\\n\"+\"​\"}}\n🏷 相关标签：{{$.book_tag_list[*].title##\\s##，}}\\n{{$.category1_name}} {{$.category2_name}}{{\"\\n\"+\"​\"}}\n👥 主角：{{$.characters}}{{\"\\n\"+\"​\"}}\n⏳ 状态：{{$.chapter_list_desc}}\n💫 最新章节{{$.latest_chapter_title}}{{\"\\n\"+\"​\"}}\n🔥 热度：{{$.rank_title##[\\#]}}\\n{{$.extra_info_list[*].value[0]}}分 {{$.extra_info_list[*].sub_title[0]}}{{\"\\n\"+\"​\"}}\n👀 在读人数：{{$.extra_info_list[*].value[1]}}人在读{{\"\\n\"+\"​\"}}\n📜 简介：{{$.intro}}{{\"\\n\"+\"​\"}}\n📍{{$.statement}}",
      "kind": "$.book_tag_list[*].title##\\s##，",
      "lastChapter": "{{$.latest_chapter_title}} • {{java.timeFormat(java.getString(\"$.update_time\")*1000)}}\n<js>result.replace(/\\s\\d+:\\d+/,'')</js>\n<js>result.replace(/\\//g,'-')</js>\n<js>##[\\(（【].*?[求更谢乐发订/万字票合补加].*?[】）\\)]</js>",
      "name": "$.title@put:{bid:id}",
      "tocUrl": "<js>\nconst sign_key = \"d3dGiJc651gSQ8w1\";\nconst action = \"https://api-ks.wenxueapp.com/api/v1/chapter/chapter-list?\";\nvar book_id = {{$.id}};\n\nparams = {\n    \"id\": book_id\n};\n\nvar urlEncode = function(param, key, encode) {\n    if (param == null) return \"\";\n    var paramStr = \"\";\n    var t = typeof(param);\n    if (t == \"string\" || t == \"number\" || t == \"boolean\") {\n        paramStr += \"&\" + key + \"=\" + ((encode == null || encode) ? encodeURIComponent(param) : param);\n    } else {\n        for (var i in param) {\n            var k = key == null ? i : key + (param instanceof Array ? \"[\" + i + \"]\" : \".\" + i);\n            paramStr += urlEncode(param[i], k, encode);\n        }\n    }\n    return paramStr;\n};\n\nvar paramSign = String(java.md5Encode(\n    Object.keys(params).sort().reduce((pre, n) => pre + n + \"=\" + params[n], \"\") + sign_key\n));\n\nparams[\"sign\"] = paramSign;\n\nvar cheaper_url = action + urlEncode(params) + \",\" + java.get(\"headers\")\n\ncheaper_url\n</js>",
      "wordCount": "$.words_num"
    },
    "ruleContent": {
      "content": "<js>\nvar javaImporter = new JavaImporter();\njavaImporter.importPackage(\n    Packages.java.lang,\n    Packages.javax.crypto.spec,\n    Packages.javax.crypto,\n    Packages.java.util\n);\nwith (javaImporter) {\n    function decode(content) {\n        var ivEncryptedData = Base64.getDecoder().decode(String(content));\n        var secretKey = SecretKeySpec(String(\"242ccb8230d709e1\").getBytes(), \"AES\");\n        var ivParameter = IvParameterSpec(Arrays.copyOfRange(ivEncryptedData, 0, 16));\n        var cipher = Cipher.getInstance(\"AES/CBC/PKCS5Padding\");\n        cipher.init(2, secretKey, ivParameter);\n        return String(cipher.doFinal(Arrays.copyOfRange(ivEncryptedData, 16, ivEncryptedData.length)));\n    }\n}\n\nconst signKey = \"d3dGiJc651gSQ8w1\";\n\nvar params = {\n    \"id\": String(java.get(\"bid\")),\n    \"chapterId\": String(baseUrl.split(\"/\").pop())\n};\n\nvar urlEncode = function(param, key, encode) {\n    if (param == null) return \"\";\n    var paramStr = \"\";\n    var paramType = typeof param;\n    if (paramType == \"string\" || paramType == \"number\" || paramType == \"boolean\") {\n        paramStr += \"&\" + key + \"=\" + ((encode == null || encode) ? encodeURIComponent(param) : param);\n    } else {\n        for (var keyName in param) {\n            var newKey = key == null ? keyName : key + (param instanceof Array ? \"[\" + keyName + \"]\" : \".\" + keyName);\n            paramStr += urlEncode(param[keyName], newKey, encode);\n        }\n    }\n    return paramStr;\n};\n\nparamSign = String(java.md5Encode(\n    Object.keys(params).sort().reduce((accumulator, current) => accumulator + current + \"=\" + params[current], \"\") + signKey\n));\nparams[\"sign\"] = paramSign;\nrequestUrl = \"https://api-ks.wenxueapp.com/api/v1/chapter/content?\" + urlEncode(params);\ndecode(JSON.parse(java.ajax(requestUrl + \",\" + java.get(\"headers\"))).data.content)\n</js>"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.original_author",
      "bookList": "$.data.books",
      "bookUrl": "<js>\nconst sign_key = \"d3dGiJc651gSQ8w1\";\nconst action = \"/api/v5/book/detail?\";\nvar book_id = {{$.id}};\n\nvar params = {\n    \"id\": book_id,\n    \"imei_ip\": \"3076332568\",\n    \"teeny_mode\": 0\n};\n\nvar urlEncode = function(param, key, encode) {\n    if (param == null) return \"\";\n    var paramStr = \"\";\n    var t = typeof(param);\n    if (t == \"string\" || t == \"number\" || t == \"boolean\") {\n        paramStr += \"&\" + key + \"=\" + ((encode == null || encode) ? encodeURIComponent(param) : param);\n    } else {\n        for (var i in param) {\n            var k = key == null ? i : key + (param instanceof Array ? \"[\" + i + \"]\" : \".\" + i);\n            paramStr += urlEncode(param[i], k, encode);\n        }\n    }\n    return paramStr;\n};\n\nvar paramSign = String(java.md5Encode(\n    Object.keys(params).sort().reduce(\n        (pre, n) => pre + n + \"=\" + params[n], \"\"\n    ) + sign_key\n));\n\nparams[\"sign\"] = paramSign;\n\nvar book_url = action + urlEncode(params) + \",\" + java.get(\"headers\")\n\nbook_url\n</js>",
      "checkKeyWord": "第一瞳术师",
      "coverUrl": "$.image_link",
      "intro": "$.intro",
      "kind": "{{$.sub_title}} {{$.ptags}}",
      "name": "$.original_title",
      "wordCount": "$.words_num"
    },
    "ruleToc": {
      "chapterList": "$.data.chapter_lists[*]",
      "chapterName": "$.title",
      "chapterUrl": "$.id",
      "updateTime": "{{$.words}}字"
    },
    "searchUrl": "@js:\nconst sign_key = \"d3dGiJc651gSQ8w1\";\nconst action = \"/api/v7/search/words?\";\n\nconst headers = {\n    \"app-version\": \"51110\",\n    \"platform\": \"android\",\n    \"reg\": \"0\",\n    \"AUTHORIZATION\": \"\",\n    \"application-id\": \"com.****.reader\",\n    \"net-env\": \"1\",\n    \"channel\": 'unknown',\n    \"qm-params\": \"\"\n};\n\nvar params = {\n    \"gender\": \"0\",\n    \"imei_ip\": \"3076332568\",\n    \"page\": page,\n    \"wd\": key\n};\n\nvar urlEncode = function(param, key, encode) {\n    if (param == null) return \"\";\n    var paramStr = \"\";\n    var t = typeof(param);\n    if (t == \"string\" || t == \"number\" || t == \"boolean\") {\n        paramStr += \"&\" + key + \"=\" + ((encode == null || encode) ? encodeURIComponent(param) : param);\n    } else {\n        for (var i in param) {\n            var k = key == null ? i : key + (param instanceof Array ? \"[\" + i + \"]\" : \".\" + i);\n            paramStr += urlEncode(param[i], k, encode);\n        }\n    }\n    return paramStr;\n};\n\nvar headerSign = String(java.md5Encode(\n    Object.keys(headers).sort().reduce((pre, n) => pre + n + \"=\" + headers[n], \"\") + sign_key\n));\n\nvar paramSign = String(java.md5Encode(\n    Object.keys(params).sort().reduce((pre, n) => pre + n + \"=\" + params[n], '') + sign_key\n));\n\nheaders[\"sign\"] = headerSign;\nparams[\"sign\"] = paramSign;\nbody = urlEncode(params);\n\nvar search_url = action + body + \",\" + java.put(\"headers\", JSON.stringify({\"headers\": headers}))\n\nsearch_url",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "独步小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.dbxsn.com",
    "customButton": false,
    "customOrder": 360,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "玄幻.奇幻::nav/xh-qh-{{page}}.html\n科幻.游戏::nav/kh-yx-{{page}}.html\n仙侠.武侠::nav/xx-wx-{{page}}.html\n女生.言情::nav/ns-yq-{{page}}.html\n都市.娱乐::nav/ds-yl-{{page}}.html\n历史.军事::nav/ls-js-{{page}}.html\n悬疑.灵异::nav/xy-ly-{{page}}.html\n耽美.纯爱::nav/dm-ca-{{page}}.html\n轻小说::nav/qxs-{{page}}.html",
    "header": "{\n\t'User-Agent': \"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36 EdgA/127.0.0.0\"\n}",
    "lastUpdateTime": 1784021610831,
    "respondTime": 8688,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{i}",
      "init": "@put:{n:\"[property$=og:title]@content\",\na:\"[property$=author]@content\",\nc:\"[property~=category|status|update_time]@content\",\nl:\"[property$=latest_chapter_name]@content||[property$=lastest_chapter_name]@content\",\nd:\"class.book-detail@text\",\ni:\"[property$=image]@content\"}",
      "intro": "@get:{d}",
      "kind": "@get:{c}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}"
    },
    "ruleContent": {
      "content": "#cont-body@p@text",
      "nextContentUrl": "class.col-md-6 text-center@a.-1@href"
    },
    "ruleExplore": {
      "bookList": "class.col-md-12 b10@class.media",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": "class.media-info@text",
      "name": "class.media-title@a@text"
    },
    "ruleSearch": {
      "author": "td.1@text",
      "bookList": "tbody@tr",
      "bookUrl": "td.0@a@href",
      "name": "td.0@a@text"
    },
    "ruleToc": {
      "chapterList": "class.col-md-6 item@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/plus/search.php?q={{key}},\n{\"body\": \"id\"=\"search-form\"}",
    "weight": 2
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "精品小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.jpxs123.top/",
    "customButton": false,
    "customOrder": 361,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"最新小说\",\"url\":\"/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"精品小说\",\"url\":\"/book/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"都市小说\",\"url\":\"/dsxs/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"玄幻修真\",\"url\":\"/xuanhuan/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"历史军事\",\"url\":\"/lishi/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"科幻竞技\",\"url\":\"/khjj/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"穿越架空\",\"url\":\"/cyjk/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"鬼话悬疑\",\"url\":\"/guihua/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"同人小说\",\"url\":\"/tongren/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1784112080074,
    "respondTime": 9502,
    "ruleBookInfo": {
      "author": ".date@a@text",
      "coverUrl": ".book_info@img@src",
      "intro": "☁️  更新：\n{{@@.date@textNodes##作者：|日期：}}\n👻  简介：\n{{@@.book_info@p.-1@html}}",
      "lastChapter": ".book_list@li.-1@a@text",
      "name": ".book_info@h1@text##\\(.*"
    },
    "ruleContent": {
      "content": ".read_chapterDetail@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".booknews@textNodes##作者：",
      "bookList": ".bk",
      "bookUrl": "a@href",
      "coverUrl": ".pic@img@src",
      "intro": ".bk@p.-1@html##简介：",
      "kind": ".date@text",
      "name": "h3@text"
    },
    "ruleToc": {
      "chapterList": ".book_list@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/e/search/indexsearch.php,{\n  \"charset\": \"gb2312\",\n  \"method\": \"POST\",\n  \"body\": \"keyboard={{key}}&show=title&classid=0\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "搜索页填：@put:{savebid:$.BOOKID}\n或\n详情页填：@put:{\"savebid\":\"$.BOOKINFO[*].BOOKID\"}",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "连城读书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://h5.lc1001.com/",
    "customButton": false,
    "customOrder": 362,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.7103.24 Safari/537.36\"}",
    "lastUpdateTime": 1787418351799,
    "respondTime": 2958,
    "ruleBookInfo": {
      "author": "$.BOOKINFO[*].AUTHORNAME",
      "intro": "$.BOOKINFO[*].CONTENT",
      "kind": "$.BOOKINFO[*].STNAME",
      "lastChapter": "$.BOOKINFO[*].NEWCHAPTER",
      "name": "$.BOOKINFO[*].BOOKNAME",
      "tocUrl": "/mulu/h,{\n  \"charset\": \"UTF-8\",\n  \"method\": \"POST\",\n  \"body\":\"bID={{$.BOOKINFO[*].BOOKID}}\"\n}",
      "wordCount": "$.BOOKINFO[*].WORDNUM"
    },
    "ruleContent": {
      "content": "$..CCONTENT"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.AUTHORNAME",
      "bookList": "$.KEYLIST[*]",
      "bookUrl": "/book/h,{\n  \"charset\": \"UTF-8\",\n  \"method\": \"POST\",\n  \"body\":\"bID={{$.BOOKID}}\"\n}",
      "intro": "$.CONTENT",
      "kind": "$.TYPE",
      "lastChapter": "@put:{\"savebid\":\"$.BOOKID\"}",
      "name": "$.BOOKNAME",
      "wordCount": "$.WORDNUM"
    },
    "ruleToc": {
      "chapterList": "$..CHAPTERS[*]",
      "chapterName": "$.CNAME",
      "chapterUrl": "/chapter/i,{\n  \"charset\": \"UTF-8\",\n  \"method\": \"POST\",\n \"body\":\"bID=@get:{savebid}&cID={{$.CID}}&from=\"\n}"
    },
    "searchUrl": "/h5/query/bookquery,{\n  \"charset\": \"UTF-8\",\n  \"method\": \"POST\",\n  \"body\":\"kw={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "\"error:Unable to resolve host \"b.faloo.com\": No address associated with hostname\n★c66\"",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "飞卢小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://b.faloo.com#温暖满怀",
    "bookUrlPattern": "https://b\\.faloo\\.com/f/\\d+.html",
    "customButton": false,
    "customOrder": 363,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "原创书库::https://b.faloo.com/y/0/0/0/0/0/9/{{page}}.html\n玄幻奇幻::https://b.faloo.com/y/1/0/0/0/0/9/{{page}}.html\n武侠仙侠::https://b.faloo.com/y/6/0/0/0/0/9/{{page}}.html\n同人小说::https://b.faloo.com/y/44/0/0/0/0/9/{{page}}.html\n都市言情::https://b.faloo.com/y/4/0/0/0/0/9/{{page}}.html\n军事历史::https://b.faloo.com/y/3/0/0/0/0/9/{{page}}.html\n科幻网游::https://b.faloo.com/y/2/0/0/0/0/9/{{page}}.html\n恐怖灵异::https://b.faloo.com/y/5/0/0/0/0/9/{{page}}.html\n青春校园::https://b.faloo.com/y/7/0/0/0/0/9/{{page}}.html\n女生小说::https://b.faloo.com/y/54/0/0/0/0/9/{{page}}.html\n短篇其他::https://b.faloo.com/y/9/0/0/0/0/9/{{page}}.html\n轻の小说::https://b.faloo.com/y/97/0/0/0/0/9/{{page}}.html",
    "lastUpdateTime": 1785042263757,
    "loginUrl": "{\n  \"url\": \"https://u.faloo.com/regist/Login.aspx\"\n}",
    "respondTime": 1710,
    "ruleBookInfo": {
      "author": "class.rentouOne@text",
      "coverUrl": "class.T-L-T-Img@tag.img.0@src",
      "intro": "[name=\"og:novel:update_time\"]@content&&[property=\"og:description\"]@content##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "clasd.T-R-T-B2-Box1@text",
      "lastChapter": "class.T-L-Th-Box1@text##.*?》",
      "name": "id.novelName@text"
    },
    "ruleContent": {
      "content": "class.noveContent@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.TwoBox02_09@tag.a.0@text",
      "bookList": "class.TwoBox02_02",
      "bookUrl": "class.TwoBox02_03@tag.a.0@href",
      "coverUrl": "class.TYImg@tag.img.0@data-original",
      "intro": "class.TwoBox02_06@tag.a.0@text",
      "kind": "class.TwoBox02_05.1@tag.a.0@text",
      "lastChapter": "class.TwoBox02_05.2@tag.a.0@text",
      "name": "class.TwoBox02_08@tag.a.0@text",
      "wordCount": "class.TwoBox02_05@tag.span.4@text##字数："
    },
    "ruleToc": {
      "chapterList": "#mulu > div.DivTable > div > div > a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://b.faloo.com/l/0/1.html?t=1&k={{key}},{\n  \"charset\": \"gbk\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "//GET搜索；精确匹配会跳转详情页，搜索规则已兼容",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁#38",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.biquge.company",
    "bookUrlPattern": "https://www.biquge.company/book/\\d+\\.html",
    "customButton": false,
    "customOrder": 366,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"书库\",\"url\":\"/sort/0/1.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"全本\",\"url\":\"/quanben/1.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最近更新\",\"url\":\"/top/lastupdate/1.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最新入库\",\"url\":\"/top/postdate/1.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1787070757003,
    "respondTime": 2964,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "[property=\"og:novel:read_url\"]@content"
    },
    "ruleContent": {
      "content": ".readcontent@textNodes"
    },
    "ruleExplore": {
      "author": ".author.0@text##作者：##",
      "bookList": ".bookbox",
      "bookUrl": ".bookname a@href||.del_but@href",
      "coverUrl": "##book/(\\d+)\\.html##$1###@js:result?'https://www.biquge.company/files/article/image/'+Math.floor(result/1000)+'/'+result+'/'+result+'s.jpg':''",
      "intro": ".update@text##^简介：##",
      "lastChapter": ".cat a@text",
      "name": ".bookname a@text"
    },
    "ruleSearch": {
      "author": ".author.0@text||[property=\"og:novel:author\"]@content",
      "bookList": ".bookbox||body:has([property=\"og:novel:book_name\"])",
      "bookUrl": ".bookname a@href||[property=\"og:url\"]@content",
      "coverUrl": "##book/(\\d+)\\.html##$1###@js:result?'https://www.biquge.company/files/article/image/'+Math.floor(result/1000)+'/'+result+'/'+result+'s.jpg':''",
      "intro": ".update@text||[property=\"og:description\"]@content",
      "lastChapter": ".cat a@text||[property=\"og:novel:latest_chapter_name\"]@content",
      "name": ".bookname a@text||[property=\"og:novel:book_name\"]@content"
    },
    "ruleToc": {
      "chapterList": "#list-chapterAll dd a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://www.biquge.company/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爱奇电子书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.bingfengzw.net",
    "customButton": false,
    "customOrder": 367,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1753677649808,
    "respondTime": 2664,
    "ruleBookInfo": {
      "author": "class.info_t4@text",
      "coverUrl": "class.info_novel_img@tag.a@img@src",
      "intro": "class.info_intro@text",
      "kind": "class.info_t3@text&&class.info_t2@text&&class.info_t5@text",
      "lastChapter": "class.info_t6@text",
      "name": "class.info_t1@text"
    },
    "ruleContent": {
      "content": "id.nr1@textNodes##",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##\\n.*本章.*\\n第.*章.*第.*页.*\\n\\s\\s|.第1/.页."
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.author@tag.a@text",
      "bookList": "class.sone",
      "bookUrl": "tag.a@href",
      "checkKeyWord": "一人之下",
      "coverUrl": "tag.a@href##(.*)book/(.*)([1-9]{3,3})/##http://www.i7txt.cc/files/article/image/$2/$2$3/$2$3s.jpg####",
      "name": "tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": "tag.ul.1@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "nextTocUrl": "option@value||text.下一页@href"
    },
    "searchUrl": "/s.php?search_key={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "//填写书籍变量可开启“只看楼主”功能\n//250211by= =",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "华人论坛（须登陆）存档",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.huarenv5.com##",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 368,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "未来幻想::http://www.huarenv5.com/forum/forumdisplay.php?fid=54&filter=type&typeid=108",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\"\n}",
    "lastUpdateTime": 1743059771383,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "http://www.huarenv5.com/forum/logging.php?action=login",
    "respondTime": 2761,
    "ruleBookInfo": {
      "author": "id.threadtitle@h1@ownText||.noveltitle@p.1@text##.*作者：(.*)（.*##$1",
      "coverUrl": "class.lazy@data-original",
      "init": "<js>\nif(/forum/.test(baseUrl)){\ny=java.getString(\".postauthor.0@div.0@a@text\");}\nif(/book/.test(baseUrl)){\tyy=java.getString(\".noveltitle.0@p.0@text\");y=String(yy).replace(/ 发表.*/,\"\");\n\t}\nsource.setVariable(y);result</js>",
      "intro": "h1@html&&.firstpost@.t_msgfontfix@html&&.noveltitle.0@p.1:0@html&&.novelcontent.0@html\n<js>\n//java.log(result)\nbook.getVariable(\"custom\")!=\"\"?x=\"开启\":x=\"关闭\";\nyhm=java.getString(\".postauthor.0@div.0@a@text\");\nif(yhm==\"\") {zuozhe=java.getString(\".noveltitle.0@p.0@text\");\nyhm=String(zuozhe).replace(/ 发表.*/,\"\");}\n\"<br>本帖楼主用户名：【\"+yhm+\"】\\n在本页面右上角书籍变量内输入任意文字开启“只看楼主”功能\\n若设置失败请点击本页面右上角，检查源变量与楼主用户名是否一致\\n当前状态：【\"+x+\"】\\n————\\n\"+result.replace(/<span[^<]*<\\/span>/gi,\"\").replace(/<font[^<]*<\\/font>/gi,\"\").replace(/<li[^<]*<\\/li>/gi,\"\").replace(/\\<[^<]*<\\[^>]*\\>/gi,\"\")\n</js>",
      "kind": "",
      "name": ".noveltitle@p.1@text||title@ownText##《(.*)》.*##$1",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "<js>\n//try{\nlz=source.getVariable();\nlist=\"\";\n//获取需要显示的内容，分割为数组\nif(/forum/.test(baseUrl)){\nzuozhe=java.getString(\"td[rowspan='2']@div.0@a@text\").split(\"\\n\");\nshijian=java.getString(\".authorinfo em@text\").split(\"\\n\");\nneir=java.getString(\".postmessage@tr@td@ownText\").split(\"\\n\");\n}\nif(/books/.test(baseUrl)){\tzuozhe=java.getString(\"@@.noveltitle@p.0@text\").split(\"\\n\");\nshijian=java.getString(\".noveltitle@p.0@text\").split(\"\\n\");\nneir=java.getString(\".novelcontent@ownText\").split(\"\\n\");\n}\n\n//修整内容后依次拼接\nfor(i=0;i<zuozhe.length;i++){\ntxt=String(neir[i]).replace(/\\s/g,\"\\n\");\nzz=String(zuozhe[i]).replace(/ 发表.*/,\"\");\nsj=String(shijian[i]).replace(/.*发表/,\"发表\");\njava.log(zz+lz);\n\n//只看楼主\nif (book.getVariable(\"custom\")!=\"\"){\n  if(zz==lz){\n  list=list+\"\\n@\"+zz+\"__\"+sj+\"\\n\"+txt+\"\\n————\\n\";\n  }else{};\n}else{list=list+\"\\n@\"+zz+\"__\"+sj+\"\\n\"+txt+\"\\n————\\n\";}\n}\nlist\nif(list==\"\"){\"未获取到内容，或许是因为“只看楼主”功能开启中\\n请尝试在详情页点击右上角删除书籍变量，关闭只看楼主功能后刷新本页面\"}\n//}catch {\"代码错误\"}\n</js>",
      "imageStyle": "",
      "nextContentUrl": "",
      "payAction": ""
    },
    "ruleExplore": {
      "author": "span.0@a@text||a[href*=readnovel.php]@text##.*作者[\\:：]|（.*|\\s[(欢迎)(请勿)勿暂].*",
      "bookList": "@js:\nif(/booklist/.test(baseUrl)) a=java.getElements(\"table[cellspacing='5']@tr!0\");\nif(/forum/.test(baseUrl)) a=java.getElements(\"tbody[id~=normalthread]@tr\");\nif(/books\\/$/.test(baseUrl)) a=java.getElements(\".forumitem1_content a\");\n//java.log(a)",
      "bookUrl": "a[href*=readnovel.php]@href||a@href",
      "intro": "span.0@a@text||a[href*=readnovel.php]@text##.*（(.*)）.*?##$1",
      "kind": "em.0@text&&.attach@title&&a[href~=booklist.php]@text",
      "lastChapter": ".lastpost@text",
      "name": "span.0@a@text||a[href~=readnovel.php]@text##.*《|》.*",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "class.author@tag.a@text##.*作者.|\\【.*",
      "bookList": "class.searchlist@tag.table@tag.tbody",
      "bookUrl": "tag.a@href##highlight.*",
      "checkKeyWord": "http://www.huarenv5.com/forum/viewthread.php?tid=350681&",
      "coverUrl": "",
      "kind": "class.forum@tag.a@text##口-",
      "name": "class.subject@tag.a.0@text##\\《|\\》.*"
    },
    "ruleToc": {
      "chapterList": "@js:\n    //获取总页数\ntry{\n        a = java.getString(\".last.0@text\").match(/\\s(\\d+)/)[1];\n    }\ncatch {\n    a = java.getElements(\".pages.0@a\").length;\n    if(a) {java.log(\"有.pages，按长度\")\n    }\n    else {java.log(\"没有.pages，取末页\");\n        aa = java.getString(\"text.末页@href\");\n        a = String(aa).replace(/.*page=/, \"\");\n        java.log(a)\n    }\n}\nlist = [];\nlist.push({text: \"第1页\",href: baseUrl});\nfor(i = 2; i <= a; i++) {\n    if(/thread-/.test(baseUrl)) {java.log(\"测thread\");\n        dz1 = baseUrl.replace(/-\\d+-\\d+.html/, \"-\");\n        dz2 = baseUrl.match(/-\\d+\\.html$/);\n        //\tjava.log(dz1+i+dz2);\n        list.push({\n            text: \"第\" + i + \"页\",\n            href: dz1 + i + dz2\n        })\n    }\n    else {java.log(\"page拼接\")\n        list.push({\n            text: \"第\" + i + \"页\",\n            href: baseUrl + \"&page=\" + i\n        })\n    }\n}\njava.log(JSON.stringify(list))\nlist",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "",
      "preUpdateJs": "",
      "updateTime": ""
    },
    "searchUrl": "http://www.huarenv5.com/forum/search.php,{\n  \"charset\": \"gbk\",\n  \"method\": \"POST\",\n  \"body\": \"srchtxt={{key}}&searchsubmit=true&orderway=lastpost&srchtype=title&sch_time=all\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "/*\n星空免费小说\thttps://api-bc.zonghengxiaoshuo.com\n熊猫脑洞小说\nhttps://api-bc.xmxsapp.com\n七猫免费小说\nhttps://api-bc.wtzw.com\n*/\napi_Params = {\n\t\"imei_ip\":\"\",\n\t\"book_privacy\":\"1\",\n\t\"read_preference\":\"0\"\n\t};\n\t\n\tfunction sign($){\n\t\ts = $.replace(/&/g,\"\") + \"d3dGiJc651gSQ8w1\";\n\t\treturn String(java.md5Encode(s));\n\t};\n\t\n\tfunction body($){\n\t\tif(!/app/.test(JSON.stringify($))){\n\t\t\tif(/chapter/.test(link_Urlpath)){\n\t\t\t\tapi_Params = {};}\n\t\t\t$ = Object.assign(api_Params, $);}\n\t\telse { $ = $;}\n\ts = Object.keys($).sort().map(key=>key+\"=\"+$[key]).join('&');\n\t\treturn String(s);\n\t};\n\t\nif(headers==\"\"){\n  link_Params.sign = sign(body(link_Params));\n  burl = source.getKey();\n  if(/chapter/.test(link_Urlpath)){\n\t\t\t\tburl = burl.replace(\"api-bc\",\"api-ks\");}\n  url = burl + link_Urlpath + body(link_Params);\n  }",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "星空小说#2",
    "bookSourceType": 0,
    "bookSourceUrl": "https://api-bc.zonghengxiaoshuo.com",
    "customButton": false,
    "customOrder": 369,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\n\npush(\"榜单\", null, 1, 1); \nbd = [\n[\"推荐榜\",\"rec_list\"],\n[\"大热榜\",\"hot_list\"],\n[\"完结榜\",\"end_list\"],\n[\"新书榜\",\"new_list\"],\n[\"热搜榜\",\"hot_search_list\"],\n[\"打赏榜\",\"reward_value_list\"],\n[\"粉丝榜\",\"reward_user_list\"]\n];\nbd.map(([t2,type],index)=>{\n\t\t\t[\"男频\",\"女频\"].map((t1,tab)=>{\n\theaders = \"\";\nlink_Urlpath = \"/api/v1/leader-board?\";\nlink_Params = {\n\t\t\"rank_type\": type,\n\t  \"category_id\":\"0\",\n\t  \"tab_type\": tab+1,\n\t  \"category_type\":\"0\"\t\n\t};\n\teval(String(source.bookSourceComment));\t\t\t \t\t\n\t\t\t\tpush(t1+t2, url, 1, 0.4);\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t});\n\t});\t\n\nfunction fl(tab) {\t\t\t\n\theaders = \"\";\nlink_Urlpath = \"/api/v5/category/index?\";\nlink_Params = {\n\t \t\"gender\":\"0\",\n\t  \"category_id\":\"0\",\n\t  \"tab_type\": tab,\n\t  \"cache_ver\": \"\"\n\t};\n\teval(String(source.bookSourceComment));\t\t\t \n\thtml = java.ajax(url);\nreturn  JSON.parse(html).data.category_list; \t\t\n\t\t}\n\t\t\n\t\t[[\"男频🔸♂️\",fl(1)[0]],\n\t\t[\"男频🔸♂️\",fl(1)[1]],\n\t\t[\"女频🔸♀️\",fl(2)[0]],\n\t\t[\"女频🔸♀️\",fl(2)[1]]\n\t\t].map([title,$]=>{\t\t\t\t\t\t\t\n \t\tpush(title+$.show_title , null, 1, 1);\n \t\tlist = $.list;\n   list.map(($,index)=>{\t   \t    \t\t\nurl = `@js:headers = \"\";\nlink_Urlpath = \"/api/v5/category/get-list?\";\nlink_Params = {\n\t\t\"category_id\": ${$.category_id},\n\t  \"page\": page,\n\t  \"category_type\": ${$.category_type},\n\t  \"gender\": \"0\",\n\t   \"book_preference\": \"1\",\n\t  \"over\": \"-99\",\n\t   \"words\": \"-99\",\n\t  \"sort\": \"-99\",\n\t   \"need_filters\": \"1\",\n\t   \"from\": \"4\",\n\t   \"need_supplement\": \"\"\n\t};\n\teval(String(source.bookSourceComment));`;\t\n\t\t\t\tif(index+1 <= list.length - list.length%3)\n\t\t\t {\tpush($.title, url, 1, 0.25);}\n\t\t\t\telse{ push($.title, url, 0, 0.29);}\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t});\n\t});\n\t\t\n\t\t\nJSON.stringify(sort);",
    "header": "@js:\nif(/xmxsapp/.test(source.getKey())){\napplication = \"com.xm.freader\";\n}\nelse if(/zonghengxiaoshuo/.test(source.getKey())){\napplication = \"com.xk.qreader\";\n}\nelse if(/wtzw/.test(source.getKey())){\napplication = \"com.****.reader\";\n}\n\nheaders={ \n\t\"app-version\":\"21500\",\n\t\"net-env\":\"4\",\t\n\t\"channel\":\"pd-tengxun_lf\",\n\t\"is-white\":\"0\",\n\t\"platform\":\"android\",\n\t\"application-id\": application,\n\t\"AUTHORIZATION\": \"\",\n\t\"reg\":\"\",\n \"qm-params\":\"\"\n};\neval(String(source.bookSourceComment));\nheaders.sign = sign(body(headers));\nJSON.stringify(headers)",
    "lastUpdateTime": 1787020656186,
    "respondTime": 2717,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$.image_link",
      "init": "$.data.book",
      "intro": "<br>\n🔔 更新时间：{{java.timeFormat(java.getString('$.update_time')*1000)}}\n🏅 评分：{{$.attribute.score}}分\n🏷 标签：{{$.book_tag_list[*].title##\\s##，}}\n♠️ 来源：{{$.statement##如有疑问.*}}\n📂 简介：{{$.intro}}",
      "lastChapter": "$.latest_chapter_title",
      "name": "$.title",
      "tocUrl": "@js:\nheaders = \"\";\nlink_Urlpath = \"/api/v1/chapter/chapter-list?\";\nlink_Params = {\n\t\t\"id\": \"{{$.id}}\"\n\t};\neval(String(source.bookSourceComment));"
    },
    "ruleContent": {
      "content": "$.data.content\n@js:\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n    Packages.java.lang,\n    Packages.javax.crypto.spec,\n    Packages.javax.crypto,\n    Packages.java.util\n);\nwith(javaImport) {\n    function decode(result) {\n        var ivEncData = Base64.getDecoder().decode(String(result));\n        var key = SecretKeySpec(String(\"242ccb8230d709e1\").getBytes(), \"AES\");\n        var iv = IvParameterSpec(Arrays.copyOfRange(ivEncData, 0, 16));\n        var chipher = Cipher.getInstance(\"AES/CBC/PKCS5Padding\");\n        chipher.init(2, key, iv);\n        return String(chipher.doFinal(Arrays.copyOfRange(ivEncData, 16, ivEncData.length)));\n    }\n}\ndecode(result)"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.original_author",
      "bookList": "$.data.books",
      "bookUrl": "@js:\nheaders = \"\";\nlink_Urlpath = \"/api/v5/book/detail?\";\nlink_Params = {\n\t\t\"id\": \"{{$.id}}\",\n   \t\"teeny_mode\": \"0\",\n\t};\neval(String(source.bookSourceComment));",
      "coverUrl": "$.image_link",
      "intro": "$.intro",
      "kind": "{{r=String(java.getString('$.score'));r==''?'':r+ '分'}}\n{{$.sub_title##・\\d+.*}}##・##,",
      "name": "$.original_title||$.title",
      "wordCount": "$.words_num"
    },
    "ruleToc": {
      "chapterList": "$.data.chapter_lists",
      "chapterName": "$.title",
      "chapterUrl": "@js:\nheaders = \"\";\nlink_Urlpath = \"/api/v1/chapter/content?\";\nlink_Params = {\n\t\t\"id\": baseUrl.match(/id=(\\d+)/)[1],\n\t\t\"chapterId\":\"{{$.id}}\"\n\t};\neval(String(source.bookSourceComment));"
    },
    "searchUrl": "@js:\nheaders = \"\";\nlink_Urlpath = \"/api/v7/search/words?\";\nlink_Params = {\n\t \"book_id\":\"143185,141577,150567,215243,211615,157237\",\n  \t\"tab\":\"1\",\t\n  \t\"gender\":\"0\",\n\t\t\"page\":page,\n   \t\"wd\":key\n\t};\neval(String(source.bookSourceComment));",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "❤️帝书阁🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.xdishuge.org",
    "customButton": false,
    "customOrder": 371,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1769589973110,
    "respondTime": 2306,
    "ruleBookInfo": {
      "author": ".info@text## .*",
      "coverUrl": "img@src",
      "kind": ".info@text&&.status@text##[\\s\\S]+分类：(.*?) [\\s\\S]+##$1",
      "lastChapter": ".info.0@text##[\\s\\S]+最新：(.*)##$1",
      "name": "h1@text",
      "wordCount": ".info.0@text##[\\s\\S]+更新：(\\d+.\\d+.\\d+)[\\s\\S]+##$1"
    },
    "ruleContent": {
      "content": "#mycontent@p!0:-1@textNodes",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".info@text## .*",
      "bookList": ".bd",
      "bookUrl": "a.0@href",
      "checkKeyWord": "剑来",
      "coverUrl": "img@src",
      "kind": ".status@text&&a.2@text",
      "lastChapter": ".info.0@text##[\\s\\S]+最新：(.*)##$1",
      "name": "h1@text",
      "wordCount": ".info.0@text##[\\s\\S]+更新：(\\d+.\\d+.\\d+)[\\s\\S]+##$1"
    },
    "ruleToc": {
      "chapterList": ".bd",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "updateTime": "span@text"
    },
    "searchUrl": "http://m.xdishuge.org/search/,{\n\t\"method\":\"post\",\n\t\"body\":\"searchkey={{key}}\"}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "独行小说（优）",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.dxtxt.com",
    "bookUrlPattern": "http://www.dxtxt.com/noveltxt/\\w+.html",
    "customButton": false,
    "customOrder": 372,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻奇幻::http://www.dxtxt.com/xuanhuanqihuan/<,{{page}}>\n武侠仙侠::http://www.dxtxt.com/wuxiaxianxia/<,{{page}}>\n都市言情::http://www.dxtxt.com/dushiyanqing/<,{{page}}>\n历史军事::http://www.dxtxt.com/lishijunshi/<,{{page}}>\n科幻传奇::http://www.dxtxt.com/kehuanchuanqi/<,{{page}}>\n恐怖灵异::http://www.dxtxt.com/kongbulingyi/<,{{page}}>\n其他类型::http://www.dxtxt.com/qitaleixing/<,{{page}}>\n全本小说::http://www.dxtxt.com/quanbenxiaoshuo<,/{{page}}>",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1702230249245,
    "respondTime": 19189,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content",
      "kind": "[property~=category|status|time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content",
      "name": "[property$=book_name]@content",
      "wordCount": "{{@@#count span.1@text}}字"
    },
    "ruleContent": {
      "content": "#TextContent p@textNodes",
      "nextContentUrl": "text.下一页@text\n@js:\nnext=src.match(/var u\\w+=\"(.*)\"/)[1];\n//java.log(next)\nnext;"
    },
    "ruleExplore": {
      "bookList": "#sitebox dl",
      "bookUrl": "a.1@href",
      "coverUrl": "img@_src",
      "intro": ".book_des@text",
      "kind": "span.2:3:1@text",
      "lastChapter": "a.-1@text",
      "name": "h3 a@text",
      "wordCount": "{{@@span.-1@text}}字"
    },
    "ruleSearch": {
      "bookList": "#nr",
      "bookUrl": "a.1@href",
      "coverUrl": "img@_src",
      "intro": ".book_des@text",
      "kind": "span.2:3:1@text",
      "lastChapter": "a.-1@text",
      "name": "a.1@text",
      "wordCount": "{{@@span.-1@text}}字"
    },
    "ruleToc": {
      "chapterList": "#chapterList li a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "@js:\n\nvar url=source.getKey();\n\nvar html = java.ajax(url);\n\ntoken = org.jsoup.Jsoup.parse(html).select('input[name=_token]').attr('value');\n\nurl+\"/search,\"+JSON.stringify({\n  \"body\": `_token=${token}&keyword=${key}&searchtype=articlename`,\n  \"method\": \"post\"\n})",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "4020电子书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.wrltxt.com",
    "customButton": false,
    "customOrder": 373,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "武侠仙侠::/wuxia/index_{{page}}.html\n都市言情::/yanqing/index_{{page}}.html\n耽美::/danmei/index_{{page}}.html\n玄幻::/xuanhuan/index_{{page}}.html\n青春校园::/xiaoyuan/index_{{page}}.html\n网游竞技::/wangyou/index_{{page}}.html\n灵异推理::/kongbu/index_{{page}}.html\n纪实::/jishi/index_{{page}}.html\n军事历史::/lishi/index_{{page}}.html\n科幻::/kehuan/index_{{page}}.html\n管理哲学::/zhexue/index_{{page}}.html\n学习资料::/xuexi/index_{{page}}.html\n总排行榜::/paihangbang/index_{{page}}.html\n月排行榜::/mpaihangbang/index_{{page}}.html\n周排行榜::/wpaihangbang/index_{{page}}.html\n日排行榜::/dpaihangbang/index_{{page}}.html\n封推::/fengtui/index_{{page}}.html\n金牌推荐::/jinpaituijian/index_{{page}}.html\n电子书推荐::/tuijian/index_{{page}}.html\n最新电子书::/new/index_{{page}}.html",
    "lastUpdateTime": 1787410439692,
    "respondTime": 5155,
    "ruleBookInfo": {
      "author": "class.block_txt2@tag.p.2@text##作者：",
      "coverUrl": "img@src",
      "kind": "class.block_txt2@tag.p.2@a@text",
      "lastChapter": "class.block_txt2@tag.p.6@a@text",
      "name": "class.block_txt2@h2@a@text",
      "tocUrl": "class.block_txt2@tag.a.0@href##-(\\d+).html##http://www.wrltxt.com/read/$1/###"
    },
    "ruleContent": {
      "content": "id.content@textNodes##请记住本书.*",
      "imageStyle": "0.0"
    },
    "ruleExplore": {
      "author": "class.s@text##大小.*",
      "bookList": "//div[5]/div[2]/div/ul/li",
      "bookUrl": "class.red@href",
      "intro": "class.u@text",
      "lastChapter": "tag.div.-1@text",
      "name": "tag.a.0@text##txt.*"
    },
    "ruleSearch": {
      "author": "tag.td.3@text",
      "bookList": "tbody@tr!0",
      "bookUrl": "tag.a.0@href",
      "lastChapter": "tag.td.2@text",
      "name": "tag.td.1@text"
    },
    "ruleToc": {
      "chapterList": "//div[5]/div/div[3]/div[2]/ul/li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.wrltxt.com/so.html?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "有些内容需要登录 才会显示",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "书荒网络",
    "bookSourceType": 0,
    "bookSourceUrl": "https://shuhuangw.com",
    "customButton": false,
    "customOrder": 374,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::/library?category=1&order_by=updated_at&page={{page}}\n仙侠::/library?category=2&order_by=updated_at&page={{page}}\n都市::/library?category=3&order_by=updated_at&page={{page}}\n历史::/library?category=13&order_by=updated_at&page={{page}}\n言情::/library?category=7&order_by=updated_at&page={{page}}\n科幻::/library?category=8&order_by=updated_at&page={{page}}\n悬疑::/library?category=9&order_by=updated_at&page={{page}}\n游戏::/library?category=10&order_by=updated_at&page={{page}}\n同人::/library?category=11&order_by=updated_at&page={{page}}\n奇幻::/library?category=12&order_by=updated_at&page={{page}}",
    "lastUpdateTime": 1785953179480,
    "respondTime": 7755,
    "ruleBookInfo": {
      "author": ".meta-row@span.0@text##^\\s+",
      "coverUrl": ".detail-cover@img@data-src",
      "intro": ".description-content@text",
      "kind": "id.categoryName@text",
      "lastChapter": ".stats-row@span.3@text",
      "name": ".detail-info@h1@text##\\s*(原创|转载|外部)\\s*$",
      "wordCount": ".stats-row@span.0@text"
    },
    "ruleContent": {
      "content": ".content-body@html"
    },
    "ruleExplore": {
      "author": ".novel-author@text##作者：|原创|转载|外部",
      "bookList": ".novel-item",
      "bookUrl": ".novel-title@a@href",
      "coverUrl": ".novel-cover@img@data-src",
      "intro": ".novel-desc@text",
      "name": ".novel-title@a@text",
      "wordCount": ".novel-meta span.1@text"
    },
    "ruleSearch": {
      "author": ".search-novel-author@text",
      "bookList": ".search-novel-card",
      "bookUrl": ".search-novel-title@a@href",
      "checkKeyWord": "星渊纪元",
      "coverUrl": ".search-novel-cover@img@src",
      "intro": ".search-novel-desc@text",
      "name": ".search-novel-title@a@text",
      "wordCount": ".search-novel-meta span.1@text"
    },
    "ruleToc": {
      "chapterList": ".chapter-item",
      "chapterName": ".chapter-title-info@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "https://shuhuangw.com/search?q={{key}}&type=novel",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "️言情小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.xs8.cn",
    "customButton": false,
    "customOrder": 375,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"🍀全部🎀分类🍀\",\"url\":\"/category/f1_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"现代言情\",\"url\":\"/category/30020_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.26}},\n{\"title\":\"古代言情\",\"url\":\"/category/30013_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.26}},\n{\"title\":\"浪漫青春\",\"url\":\"/category/30031_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.26}},\n{\"title\":\"玄幻言情\",\"url\":\"/category/30001_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"仙侠奇缘\",\"url\":\"/category/30008_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"科幻空间\",\"url\":\"/category/30042_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"/category/30036_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"游戏\",\"url\":\"/category/30050_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"短篇\",\"url\":\"/category/30083_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"轻小说\",\"url\":\"/category/30055_f1_f1_f1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.22}},\n\n{\"title\":\"🎖全部榜单🎖\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"免费\",\"url\":\"/category/f1_f1_f1_1_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.26}},\n{\"title\":\"VIP\",\"url\":\"/category/f1_f1_f1_0_f1_f1_0_{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.26}},\n{\"title\":\"风云榜\",\"url\":\"/rank/hxyuepiao?pageNum={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.26}},\n{\"title\":\"热销榜\",\"url\":\"/rank/hotsales?pageNum={{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"新书榜\",\"url\":\"/rank/newbook?pageNum={{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"周推荐榜\",\"url\":\"/rank/recom?pageNum={{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"完本榜\",\"url\":\"/rank/finish?pageNum={{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"点击榜\",\"url\":\"/rank/click?pageNum={{page}}\",\"style\":{\"layout_flexGrow\":1}},\n{\"title\":\"收藏榜\",\"url\":\"/rank/collect?pageNum={{page}}\",\"style\":{\"layout_flexGrow\":1}}\n]\n",
    "lastUpdateTime": 1785478261661,
    "loginUrl": "https://ptlogin.yuewen.com/login",
    "respondTime": 8806,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "meta[property~=category|status|update_time]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "text.目录@href",
      "wordCount": "[class~=word_num|words|number]@text"
    },
    "ruleContent": {
      "content": "[class~=content|article]@html",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a[class=\"name default\"]@text||a[class=\"default\"]@text",
      "bookList": ".book-img-text>ul@li||div[class=\"right-book-list\"]>ul>li",
      "bookUrl": "##<a.*?href=\"([^\"]+)\"##$1###",
      "coverUrl": "##<img.*?src=\"([^\"]+)\"##$1###",
      "intro": "[class~=intro]@text",
      "kind": "p[class=\"author\"]>a.-1@text&&p[class=\"author\"]>span.-1@text&&p[class=\"update\"]>span.-1@text",
      "lastChapter": "p[class=\"update\"]>a.0@text",
      "name": "h4@text||div[class=\"book-img\"]>a.0@text",
      "wordCount": "span[class=\"blue\"]@text"
    },
    "ruleToc": {
      "chapterList": "div[class=\"volume\"]:gt(0)>ul[class=\"cf\"]@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "https://www.xs8.cn/so/{{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "❤️文学网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.wenxue88.com/",
    "customButton": false,
    "customOrder": 376,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1769587547643,
    "respondTime": 711,
    "ruleBookInfo": {
      "author": "class.jj izz@a@text",
      "coverUrl": "img.1@src",
      "intro": "<js>\njava.ajax(baseUrl.replace(/index/,'js'))\n</js>\ntag.p!0:1@html",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "class.hycolor.-1@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": "class.zw_txt\n<js>\nkey = java.get(\"key\");\nlist = result.toArray();\nre = new RegExp(key);\nhtml = \"\";\nfor(i in list){\n\tre.test(list[i])?html+=list[i]:\"\"\n\t}\nresult = String(html)\n</js>\na",
      "bookUrl": "href",
      "name": "text"
    },
    "ruleToc": {
      "chapterList": "class.b_bor@children@tr!0:1:2:3@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://www.wenxue88.com#{{java.put(\"key\",key)}}",
    "weight": 0
  },
  {
    "bookSourceComment": "壬二酸搜索加了个清cookie",
    "bookSourceGroup": "📚小说",
    "bookSourceName": " 同人小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://209.74.105.61",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 377,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "同人小说::/tongren/<,index_{{page}}.html>\n全本同人::/tags-150-{{page-1}}.html\n连载同人::/tags-151-{{page-1}}.html\n排行榜单::/hot/<,index_{{page}}.html>",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.96 Safari/537.36\"\n}",
    "lastUpdateTime": 1752042672615,
    "loginUrl": "",
    "respondTime": 2983,
    "ruleBookInfo": {
      "author": ".date>a@text",
      "coverUrl": ".pic img@src",
      "intro": "@css:.booktips+p@text",
      "kind": ".date@ownText",
      "name": "h1@text##\\(\\S+"
    },
    "ruleContent": {
      "content": ".read_chapterDetail@html"
    },
    "ruleExplore": {
      "author": ".booknews@ownText##作者：",
      "bookList": ".bk",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "img@src",
      "intro": "p@text",
      "kind": "label@text",
      "lastChapter": "h3@text##\\S+\\(|\\)",
      "name": "h3@text##\\(\\S+"
    },
    "ruleSearch": {
      "author": ".booknews@ownText##作者：",
      "bookList": ".bk",
      "bookUrl": "tag.a.0@href",
      "checkKeyWord": "",
      "coverUrl": "img@src",
      "intro": "p@text",
      "kind": "label@text",
      "name": "h3@text"
    },
    "ruleToc": {
      "chapterList": ".book_list a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "{{cookie.removeCookie(source.key)}}/e/search/indexsearch.php,{\n  \"charset\": \"gb2312\",\n  \"method\": \"POST\",\n  \"body\": \"keyboard={{key}}&show=title&classid=0\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "键盘小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.jianpan.la",
    "customButton": false,
    "customOrder": 378,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1772180558266,
    "respondTime": 1640,
    "ruleBookInfo": {
      "author": "class.col-md-12@tag.p.0@text##by",
      "intro": "class.bookIntro@text",
      "lastChapter": "id.list-chapterAll@tag.p.0@text&&class.col-md-12@tag.p.1@text##最新章节.|更新时间.|..\\:.*",
      "name": "class.bookTitle@text##\\《|\\》|极速阅读"
    },
    "ruleContent": {
      "content": "id.htmlContent@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.shop-info.1@text##\\[|著|\\]",
      "bookList": "class.list@tag.a",
      "bookUrl": "tag.a@href",
      "lastChapter": "class.shop-info.2@text",
      "name": "class.shop-info.0@text##\\《|\\》"
    },
    "ruleToc": {
      "chapterList": "class.panel-chapterlist@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://www.jianpan.la/search.php?q={{key}}&s=15947871991047423724",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "鬼吹灯",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.gdbzkz.la#",
    "customButton": false,
    "customOrder": 379,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/fenlei/1/{{page}}.html\n仙侠小说::/fenlei/2/{{page}}.html\n都市小说::/fenlei/3/{{page}}.html\n军史小说::/fenlei/4/{{page}}.html\n网游小说::/fenlei/5/{{page}}.html\n科幻小说::/fenlei/6/{{page}}.html\n恐怖小说::/fenlei/7/{{page}}.html",
    "lastUpdateTime": 1785042204637,
    "respondTime": 1457,
    "ruleBookInfo": {
      "author": "class.small@tag.span.0@text##作 者：",
      "coverUrl": "class.cover@img@src",
      "intro": "class.intro@textNodes##作者.*|无弹窗.*",
      "kind": "[property=og:novel:update_time]@content&&\n[property=og:novel:category]@content&&\n[property=og:novel:status]@content ",
      "lastChapter": "class.small@tag.span.5@a@text##百度搜索.*",
      "name": "class.info@h2@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说",
      "wordCount": "class.info@class.small@tag.span.3@text##字数："
    },
    "ruleContent": {
      "content": "id.content@html##http.*html|天才一秒记住.*org|请记住本书首发域.*org"
    },
    "ruleExplore": {
      "author": "class.s4@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "kind": "class.s5@text",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleSearch": {
      "author": "class.author@text##作者：",
      "bookList": "class.bookbox@class.p10",
      "bookUrl": "class.bookname@tag.a@href",
      "coverUrl": "class.bookimg@img@src",
      "intro": "class.bookinfo@p@text",
      "kind": "class.cat@text##分类：",
      "lastChapter": "class.update@tag.a@text##百度搜索.*",
      "name": "class.bookname@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleToc": {
      "chapterList": "class.listmain@dd!0:1:2:3:4:5:6:7:8:9:10:11",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.gdbzkz.la/s.php?ie=utf-8&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "注：小说可下载到本地，若想下载到本地看，把左上角的类型“文本”改为“文件”。",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "请看小说",
    "bookSourceType": 3,
    "bookSourceUrl": "https://www.qinkan.net",
    "customButton": false,
    "customOrder": 380,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787421235699,
    "respondTime": 1733,
    "ruleBookInfo": {
      "author": "text.书籍作者@text##书籍作者：",
      "coverUrl": "class.detail_pic@img@src",
      "downloadUrls": "class.downButton@href",
      "intro": "class.showinfo@textNodes",
      "name": "class.detail_right@text",
      "wordCount": "text.文件大小@text"
    },
    "ruleContent": {},
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.s@text##作者：|大小.*",
      "bookList": "tag.li",
      "bookUrl": "tag.a@href",
      "checkKeyWord": "斗破苍穹",
      "coverUrl": "tag.img@src",
      "intro": "class.u@text",
      "name": "a@text##《|》"
    },
    "ruleToc": {},
    "searchUrl": "/e/search/index.php,{\n  \"body\": \"show=title&classid=0&keyboard={{key}}&Submit22=搜索\",\n  \"charset\": \"GB2312\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "有黄广告",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "亿软小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.yruan.com/",
    "bookUrlPattern": "https://www.yruan.com/article/\\d+.html",
    "customButton": false,
    "customOrder": 381,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::http://m.yruan.com/sort/1/{{page}}.html\n仙侠小说::http://m.yruan.com/sort/2/{{page}}.html\n都市小说::http://m.yruan.com/sort/3/{{page}}.html\n军史小说::http://m.yruan.com/sort/4/{{page}}.html\n网游小说::http://m.yruan.com/sort/5/{{page}}.html\n科幻小说::http://m.yruan.com/sort/6/{{page}}.html",
    "lastUpdateTime": 1780933192545,
    "loginUrl": "{\n  \"url\": \"null\"\n}",
    "respondTime": 6467,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text",
      "coverUrl": "id.fmimg@img@src",
      "intro": "id.intro@tag.p.0@text",
      "kind": "id.info@tag.p.3@text&&\nid.info@tag.p.1@text##日 期：|类 别:",
      "lastChapter": "id.info@tag.p.2@a@text##百度搜索.*",
      "name": "id.info@tag.h1@text"
    },
    "ruleContent": {
      "content": "id.content@html##<!--go--> |<!--over--> "
    },
    "ruleExplore": {
      "author": "class.author@text",
      "bookList": "class.article",
      "bookUrl": "h6@a@href@js:'https://www.yruan.com'+result",
      "coverUrl": "img@src",
      "intro": "class.simple@text",
      "name": "h6@a@text"
    },
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "tag.td.0@tag.a@href",
      "coverUrl": "tag.td.0@tag.a@href@js:\r\nvar id = result.match(/\\/(\\d+)\\.?/)[1];\r\n'/files/article/image/'+parseInt(id/1000)+'/'+id+'/'+id+'s.jpg';",
      "kind": "tag.td.4@text&&\ntag.td.5@text",
      "lastChapter": "tag.td.1@tag.a@text##百度搜索.*",
      "name": "tag.td.0@tag.a@text",
      "wordCount": "tag.td.3@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://www.yruan.com/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "露露书",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.lulushu18.com/",
    "customButton": false,
    "customOrder": 382,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全部小说::https://m.lulushu18.com/xiaoshuodaquan/page_{{page}}.html\n玄幻魔法::https://m.lulushu18.com/xuanhuan/\n武侠修真::https://m.lulushu18.com/xiuzhen/\n历史穿越::https://m.lulushu18.com/lishi/\n游戏竞技::https://m.lulushu18.com/wangyou/\n都市言情::https://m.lulushu18.com/dushi/\n科幻小说::https://m.lulushu18.com/kehuan/\n女频小说::https://m.lulushu18.com/nvpin/",
    "lastUpdateTime": 1732208054432,
    "respondTime": 11991,
    "ruleBookInfo": {
      "author": "class.pt-info.1@text##作者：",
      "intro": "class.intro@text",
      "kind": "class.pt-info.2@a@text"
    },
    "ruleContent": {
      "content": "id.BookText@html",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {
      "author": "class.s712.1@text##作者：",
      "bookList": "class.book-li",
      "bookUrl": "class.pt-cover@a@href",
      "coverUrl": "class.pt-cover@a@img@src",
      "intro": "class.pt-desc ptm-text-cut@text",
      "kind": "class.s712.0@text##分类\\:",
      "name": "class.pt-name@a@text"
    },
    "ruleSearch": {
      "bookList": "class.ptm-list-view-cell ptm-img ptm-col-xs-4",
      "bookUrl": "class.ptm-img-body@a@href",
      "checkKeyWord": "我的",
      "coverUrl": "class.imgarea@img@src",
      "kind": "",
      "name": "class.ptm-img-body@a@text"
    },
    "ruleToc": {
      "chapterList": "id.chapterlist@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "/home/search,{\n  \"body\": \"action=search&q={{key}}\",\n  \"charset\": \"UTF-8\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "主站：https://www.aiqu999.com（似乎是一个会自动跳转可用链接的链接）\n备用网址：\n  - www.aiqu654.com\n  - www.aqxsw222.com\n  - www.727txt.com\n  - www.27txt.La\n  - www.527txt.com\n网站给出的防迷路网址：www.272txt.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爱去小说（导）",
    "bookSourceType": 3,
    "bookSourceUrl": "https://www.aqxsw555.com/",
    "customButton": false,
    "customOrder": 383,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"最近更新–强推\",\"url\":\"/list-high-0-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"耽美小说\",\"url\":\"/list-high-2-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女生小说\",\"url\":\"/list-high-1-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"男生小说\",\"url\":\"#\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1772086931055,
    "respondTime": 28228,
    "ruleBookInfo": {
      "canReName": "1",
      "downloadUrls": "<js>\nif(baseUrl.indexOf('read')>-1){\n\turl = book.origin + '/' +java.getString(\"@@.readcontent@a@href\")\n\thtml = java.ajax(url)\n\tresult = html.match(/var downloadurl = \"([\\s\\S]+?)\";/)[1]\n}else{\n\turl = baseUrl.replace(/.*-(\\d+).*/, \"https://www.527txt.com/txt-xx/softdownfree.asp?softid=$1&ckm=mianfei\")\n\thtml = java.ajax(url)\n\tjava.setContent(html)\n\tresult = java.getString(\"@@text.第一下载地址(首选)@href\")\n}\n</js>",
      "intro": "#mainDownInfo@center.0@html||.readcontent@html"
    },
    "ruleContent": {},
    "ruleExplore": {
      "author": ".rt@text##作者：(\\w+)##$1###",
      "bookList": ".mainlist_li||.mainSoftName||.read-list",
      "bookUrl": "a.1@href||a@href",
      "intro": ".pk-word-break-all@text",
      "kind": ".pk-text-success@text",
      "name": "a.1@text||a@text||.rt@text##.*《|》.*|完结|\\+番外|强推"
    },
    "ruleSearch": {
      "author": "a.search-card-author@a@text##作者：",
      "bookList": "#searchmain > .search-card",
      "bookUrl": ".search-card-link@a@href",
      "intro": ".search-card-content@text",
      "kind": "{{@@class.search-card-category@tag.a@text}}",
      "lastChapter": ".search-card-date@.oldDate@text",
      "name": ".search-card-title@a@text##《|》"
    },
    "ruleToc": {
      "chapterList": "html",
      "chapterName": "{{'🐑完结'}}"
    },
    "searchUrl": "/search.asp?word={{key}},{\"charset\":\"gb2312\"}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "❤️苦瓜书盘（导）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://kgbook.com",
    "customButton": false,
    "customOrder": 384,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"现代文学\",\"url\":\"/xiandaiwenxue/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"职场小说\",\"url\":\"/zhichangxiaoshuo/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"网络小说\",\"url\":\"/wangluoxiaoshuo/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"历史地理\",\"url\":\"/lishidili/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"战争军事\",\"url\":\"/zhanzhengjunshi/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人物传记\",\"url\":\"/renwuchuanji/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"武侠小说\",\"url\":\"/wuxiaxiaoshuo/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推理惊悚\",\"url\":\"/tuilijingsong/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"科幻玄幻\",\"url\":\"/kehuanxuanhuan/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人文社科\",\"url\":\"/renwensheke/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"管理书籍\",\"url\":\"/guanlishuji/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"金融投资\",\"url\":\"/jinrongtouzi/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"自然科学\",\"url\":\"/zirankexue/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"哲学宗教\",\"url\":\"/zhexuezongjiao/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"教育学习\",\"url\":\"/jiaoyuxuexi/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"古典文学\",\"url\":\"/gudianwenxue/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"诗歌散文\",\"url\":\"/shigesanwen/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"期刊杂志\",\"url\":\"/qikanzazhi/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"外国文学\",\"url\":\"/waiguowenxue/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"励志成功\",\"url\":\"/lizhichenggong/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"生活休闲\",\"url\":\"/shenghuoxiuxian/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"电脑网络\",\"url\":\"/diannaowangluo/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"保健养生\",\"url\":\"/baojianyangsheng/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"儿童文学\",\"url\":\"/ertongwenxue/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"言情小说\",\"url\":\"/yanqingxiaoshuo/<,index_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1769597215914,
    "respondTime": 27713,
    "ruleBookInfo": {
      "author": "id.news_details@tag.li.0@text",
      "canReName": "true",
      "coverUrl": "id.news_picture@tag.img@src",
      "intro": "id.introduction@tag.p@textNodes",
      "kind": "id.news_details@tag.li.2@text&&id.news_details@tag.li.3@text##语言|大小|："
    },
    "ruleContent": {},
    "ruleExplore": {
      "author": "tag.em@text",
      "bookList": "class.channel-item",
      "bookUrl": "tag.a.0@href",
      "intro": "class.list-content@tag.p@textNodes##.*\\s\\|\\s摘要：",
      "kind": "tag.a.1@text",
      "lastChapter": "{{'💬点击地址栏下载'}}",
      "name": "tag.a.0@text"
    },
    "ruleSearch": {
      "author": "tag.a.0@href\n<js>java.ajax (result)</js>\nid.news_details@tag.li.0@text",
      "bookList": "id.slist@tag.li",
      "bookUrl": "tag.a.0@href",
      "intro": "class.text@textNodes",
      "kind": "tag.a.1@text",
      "lastChapter": "{{'💬点击地址栏下载'}}",
      "name": "tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": "-class.button!-1@tag.a",
      "chapterName": "{{'💬地址栏下载'}}{{@@text}}",
      "chapterUrl": "href"
    },
    "searchUrl": "/e/search/index.php,{\n\"method\": \"POST\",\n\"body\": \"keyboard={{key}}&show=title%2Cbooksay%2Cbookwriter&tbname=download&tempid=1&submit=%E6%90%9C%E7%B4%A2\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "潇湘书院",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.xxsy.net/",
    "bookUrlPattern": "https://www.xxsy.net/book/\\d+",
    "customButton": false,
    "customOrder": 385,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\": \"💮                  分类                  💮\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"古代言情\",\"url\": \"/category/1.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"现代言情\",\"url\": \"/category/2.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"玄幻仙侠\",\"url\": \"/category/3.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"浪漫青春\",\"url\": \"/category/6.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"悬       疑\",\"url\": \"/category/5.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"改编频道\",\"url\": \"/ip.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"男生频道\",\"url\": \"/search?channel=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"💮                  排行榜                  💮\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"潇湘票榜\",\"url\": \"/rank/xxyuepiao\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"新书榜\",\"url\": \"/rank/new\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"畅销榜\",\"url\": \"/rank/bestsales\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"完结榜\",\"url\": \"/rank/finish\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"阅读榜\",\"url\": \"/rank/reading\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"收藏榜\",\"url\": \"/rank/collections\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}}\n]",
    "header": "{\n\"user-agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\",\n\"Accept-Language\": \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7,\n\"Referer\": \"https://www.xxsy.net/\",\n\"Host\": \"www.xxsy.net\"\njava.getCookie(\"https://www.xxsy.net/\", null) => userid=1234;pwd=adbcdjava.getCookie(\"https://www.xxsy.net/\", \"userid\") => 123\n}",
    "lastUpdateTime": 1753975379451,
    "loginUi": "",
    "loginUrl": "https://www.xxsypro.com/personal",
    "respondTime": 2437,
    "ruleBookInfo": {
      "author": "@get:{B}##[文\\ / ]*",
      "coverUrl": "@get:{G}",
      "init": "@put:{\nA:\"class.title@h1@text\",\nB:\"class.title@span@text\",\nC:\"class.sub-cols@span!-1@text&&class.sub-tags@text\",\nD:\"class.sub-data@span@text\",\nE:\"class.sub-newest@p.1@a@text\",\nF:\"id.book_intro@text\",\nG:\"class.book-cover.0@img.0@src\",\nH:\"class.box-hd click-hd@h3@a@href\"\n}",
      "intro": "@get:{F}",
      "kind": "@get:{C}##类别：",
      "lastChapter": "@get:{E}",
      "name": "@get:{A}",
      "tocUrl": "@get:{H}",
      "wordCount": "@get:{D}"
    },
    "ruleContent": {
      "content": "id.content@p@text||id.content@html",
      "nextContentUrl": "text.下一章@href"
    },
    "ruleExplore": {
      "author": "class.info@p.0@text||dt@p.0@text##[ \\/ 著文]*|[·\\d+].*",
      "bookList": "class.book-list cl@li&&class.book-show@dt&&class.unusual-list cl@li&&class.seria-box@a&&class.flex flex-wrap relative@a",
      "bookUrl": "li@a@href||dt@a@href||class.seria-box@a@href||class.flex@href",
      "coverUrl": "img@data-src||class.book@img@src||class.book-cover@img@src",
      "intro": "class.info@p.1@text||dt@p.1@text||class.row2@text",
      "kind": "class.row1@text",
      "name": "class.info@h4@text||dt@h4@text||class.text-t34@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "class.subtitle@a.0@text##[\\ ]*",
      "bookList": "class.result-list@ul@li",
      "bookUrl": "li@a@href",
      "checkKeyWord": "簪星",
      "coverUrl": "img@src",
      "intro": "class.info@p.0@text",
      "kind": "{{@@class.subtitle@text}}##{{@@class.subtitle@a.0@text}}",
      "name": "class.info@h4@a.0@text",
      "wordCount": "class.info@p.1@text"
    },
    "ruleToc": {
      "chapterList": "class.works-main cl@class.profile-main@ul@li",
      "chapterName": "li@text",
      "chapterUrl": "li@a@href"
    },
    "searchUrl": "https://www.xxsy.net/search/{{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": " /*11.24 by:遇知*/\n\t\n  uuid=java.randomUUID().toUpperCase();\n  time=Math.round(new Date()/1000);\n  \n  if(String(Params).match(/query/)){\n\t\tsn = `channel=fx0001&gid=1&nci=1&nsc=0&${Params}&timestamp=${time}&secret=QgkdrcUgsfS4MvwB`;}\n\t\t\n\t\telse if(String(Params).match(/groupname/)){\n\t\t\tsn = `channel=fx0001&cid=${cid}&isserial=0&limit=3000&nci=1&nsc=0&sort=hot&start=0&timestamp=${time}&wordcount=0%252C100000&secret=QgkdrcUgsfS4MvwB`;}\n\t\t\t\n\t\telse if(String(Params).match(/BD/)){\n\t\t\t  sn = `channel=fx0001&class_id=${cid}&limit=3000&nci=1&nsc=0&start=0&timestamp=${time}&secret=QgkdrcUgsfS4MvwB`;}\n\t\n\t\telse if(String(Params).match(/bid/)){\n\t\t\tsn = `${Params}&channel=fx0001&gid=1&nci=1&nsc=0&timestamp=${time}&secret=QgkdrcUgsfS4MvwB`;}\n\t\t\n\t\telse if(String(Params).match(/cid/)){\n\t\tsn = `bid=${bid}&channel=fx0001&chapterid=${cid}&gid=1&nci=1&nsc=0&timestamp=${time}&secret=QgkdrcUgsfS4MvwB`;}\n\t\t\n\t\tsign=java.md5Encode(sn).toUpperCase();\n   body=String(sn).replace(/\\&secret=QgkdrcUgsfS4MvwB/,'');\n   option={\"method\":\"POST\",\"body\":body};",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "繁星小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://fapi.fanxxs.com",
    "customButton": false,
    "customOrder": 387,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\n\t\n\tbd=[[\"男频\",[[\"留存\",\"6\"],[\"好评\",\"3\"],[\"人气\",\"1\"],[\"热评\",\"5\"]]],\n[\"女频\",[[\"留存\",\"12\"],[\"好评\",\"9\"],[\"人气\",\"7\"],[\"热评\",\"11\"]]]];\nbd.map([title,list]=>{\t\t\t\n\tParams = \"BD\";\n\t\tpush(title, null, 1, 1);\n\t   list.map([title,cid]=>{ \n\t   \t\teval(String(source.bookSourceComment));\n\t   \turl= `https://fapi.fanxxs.com/2/v8/top3/list.api?sign=${sign}&app=FXBook&vs=7.1.2&uuid=${uuid}&_t=${time}&app=FXBook&pbv=v1.0.28&channel=fx0001&os=Android,`+ JSON.stringify(option).replace(/start=0/,'start={{(page-1)*30}\\}');  \n\t\t\t\tpush(title, url, 1, 0.4); \n\t\t\t\t});\n\t});\n\t\tfl_url=\"https://fapi.fanxxs.com/v8/cate3/list.api?nsc=0&nci=1&app=FXBook&vs=7.1.2&uuid={{java.randomUUID().toUpperCase()}}&_t={{Math.round(new Date()/1000)}}&app=FXBook&pbv=v1.0.28&channel=fx0001&os=Android\";\nD=JSON.parse(java.ajax(fl_url)).data;\n\n [D[0],D[1]].map(Data=>{\n \tParams = JSON.stringify(Data);\n\tpush(Data.groupname, null, 1, 1);\nData.cate.map(($,index)=>{\n      title=$.name;\n     \tcid=$.cid;\n     \teval(String(source.bookSourceComment));\n\turl= `https://fapi.fanxxs.com/2/v8/book3/filter.api?app=FXBook&sign=${sign}&ml=10X&mf=XIAOMI&vs=7.1.2&uuid=${uuid}&_t=${time}&app=FXBook&pbv=v1.0.28&channel=fx0001&os=Android,`+ JSON.stringify(option).replace(/start=0/,'start={{(page-1)*30}\\}');\n \t\tif(index+1 <= Data.cate.length - Data.cate.length%3)\n\t\t\t {\tpush(title, url, 1, 0.25);}\n\t\t\t\telse{ push(title, url, 0, 0.29);}\n        });\n      });\nJSON.stringify(sort);",
    "header": "@js:\nJSON.stringify({\t\t\n\t\"Content-Type\":\"application/x-www-form-urlencoded\",\n\t\"Connection\":\"Keep-Alive\",\n\t\"Host\":\"fapi.fanxxs.com\",\n  \"User-Agent\":\"okhttp/3.14.9\"\n})",
    "lastUpdateTime": 1782368311494,
    "respondTime": 3577,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$.thumb",
      "init": "$.data",
      "intro": "{{$.description}}##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "{{$.catename}}\n{{java.getString('$.isserial')=='2'?'完结':'连载'}}\n{{java.timeFormatUTC(java.getString('$.updated')*1000,'yyyy-MM-dd',8)}}",
      "lastChapter": "$.lastchaptertitle",
      "name": "$.title",
      "tocUrl": "@js:\nParams = \"bid=\"+java.put('bid', '{{$.bid}}');\neval(String(source.bookSourceComment));\nurl =\"https://fapi.fanxxs.com/v8/book/chapter.api?vs=7.1.2&uuid=\"+uuid+\"&_t=\"+time+\"&app=FXBook&pbv=v1.0.28&channel=fx0001&os=Android&sign=\"+sign+\",\" + JSON.stringify(option);",
      "wordCount": "$.wordcount"
    },
    "ruleContent": {
      "content": "$.data.body"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.data.books",
      "bookUrl": "@js:\nParams =  \"bid=\"+java.getString('$.bid');\neval(String(source.bookSourceComment));\n\nurl =\"https://fapi.fanxxs.com/2/v8/book3/detail.api?uuid=\"+uuid+\"&nsc=0&timestamp=\"+time+\"&channel=fx0001&bid=\"+Params+\"&nci=1&sign=\"+sign+\"&app=FXBook,\" + JSON.stringify(option);",
      "coverUrl": "$.thumb",
      "intro": "$.description",
      "kind": "{{$.catename}}\n{{java.getString('$.isserial')=='2'?'完结':'连载'}}",
      "name": "$.title"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.search",
      "bookUrl": "@js:\nParams =  \"bid=\"+java.getString('$.bid');\neval(String(source.bookSourceComment));\n\nurl =\"https://fapi.fanxxs.com/2/v8/book3/detail.api?uuid=\"+uuid+\"&nsc=0&timestamp=\"+time+\"&channel=fx0001&bid=\"+Params+\"&nci=1&sign=\"+sign+\"&app=FXBook,\" + JSON.stringify(option);",
      "coverUrl": "$.thumb",
      "intro": "$.description",
      "kind": "$.catename",
      "name": "$.title",
      "wordCount": "$.wordcount"
    },
    "ruleToc": {
      "chapterList": "$.data.chapters",
      "chapterName": "$.title",
      "chapterUrl": "@js:\nbid = java.get('bid');\ncid = java.getString('$.id');\nParams =  \"cid=\"+java.getString('$.bid');\neval(String(source.bookSourceComment));\nurl =\"https://fapi.fanxxs.com/v8/book/content.api?timestamp=\"+time+\"&gid=1&bid=\"+bid+\"&channel=fx0001&chapterid=\"+cid+\"&uuid=\"+uuid+\"&sign=\"+sign+\"&app=FXBook,\" + JSON.stringify(option);",
      "updateTime": "{{java.timeFormatUTC(java.getString('$.time')*1000,'yyyy-MM-dd',8)}}"
    },
    "searchUrl": "@js:\nParams = \"query=\"+key;\neval(String(source.bookSourceComment));\nurl =\"https://fapi.fanxxs.com/server/v8/search?sign=\"+sign+\"&vs=7.1.2&uuid=\"+uuid+\"&_t=\"+time+\"&app=FXBook&pbv=v1.0.28&channel=fx0001&os=Android,\" + JSON.stringify(option);",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "快看漫画",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.kuaikanmanhua.com#Haxc1107",
    "customButton": false,
    "customOrder": 389,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"✿　　　　　　　榜    单　　　　　　　✿\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"国漫榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=9\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日漫榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=10\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"韩漫榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=11\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"少女榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=6\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"少年榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=5\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"青女榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=7\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"青年榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=8\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"新作榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=2\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"完结榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=12\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"口碑榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=3\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"畅销榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=4\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"🔹　　 　　　　状    态　 　　　　　🔹 \",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"推荐\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最火热\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=0&pay_status=0&sort=2&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"新上架\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=0&pay_status=0&sort=3&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"连载中\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=1&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"已完结\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=2&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"►免费\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=0&pay_status=1&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"►付费\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=0&pay_status=2&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"►抢先看\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=0&pay_status=3&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"🔹　　 　　　　分    类　 　　　　　🔹 \",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"恋爱\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=20&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"强剧情\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=82&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古风\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=46&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"校园\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=47&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奇幻\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=22&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"唯美\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=58&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"热血\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=67&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日漫\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=57&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"韩漫\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=60&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"大女主\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=77&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"完结\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=40&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=80&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"萌系\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=62&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"灵异\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=32&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=63&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"搞笑\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=71&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=48&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"正能量\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=54&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总裁\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=52&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"投稿\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=76&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 10; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/78.0.3904.108 Mobile Safari/537.36 SearchCraft/3.6.5 (Baidu; P1 9.0)\"\n}",
    "lastUpdateTime": 1778811284269,
    "loginUrl": "http://m.kuaikanmanhua.com/mob/booklist",
    "respondTime": 2454,
    "ruleBookInfo": {
      "author": "<js>\na=eval(result.match(/__NUXT__[^<]*/)[0]);\nresult=JSON.stringify(__NUXT__);\n</js>\n$.data[*].topicInfo.user.nickname",
      "coverUrl": "@js:\neval(result.match(/__NUXT__[^<]*/)[0]);\n__NUXT__.data[0].topicInfo.vertical_image_url",
      "intro": "@js:\neval(result.match(/__NUXT__[^<]*/)[0]);\n__NUXT__.data[0].topicInfo.description",
      "kind": "@js:\neval(result.match(/__NUXT__[^<]*/)[0]);\n__NUXT__.data[0].topicInfo.tags",
      "lastChapter": "@js:\neval(result.match(/__NUXT__[^<]*/)[0]);\n__NUXT__.data[0].topicInfo.update_status.replace(/^.*?已更/,\"\")",
      "name": "@js:\neval(result.match(/__NUXT__[^<]*/)[0]);\n__NUXT__.data[0].topicInfo.title"
    },
    "ruleContent": {
      "content": "class.ComicPics@img@html##data-src##src",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.author_name",
      "bookList": "$.data.topics||$.data.cards||$.hits.topicMessageList||$.hits",
      "bookUrl": "$.id||$.topic_id@js:\"http://m.kuaikanmanhua.com/mobile/\"+result+\"/list/\"",
      "coverUrl": "$.vertical_image_url||$.image_url||$.cover_image_info.images[*].url",
      "intro": "description",
      "kind": "$.category||$.recommend_tag[1].title",
      "lastChapter": "$.latest_comic_title",
      "name": "$.title.text||$.title"
    },
    "ruleToc": {
      "chapterList": "<js>\na=eval(result.match(/__NUXT__[^<]*/)[0]);\nresult=JSON.stringify(__NUXT__);\n</js>\n$.data[*].comicList[*]",
      "chapterName": "$.title",
      "chapterUrl": "$.id\n@js:\"http://m.kuaikanmanhua.com/mobile/comics/\"+result",
      "isVip": "$.is_free\n@js:result=='true'?false:true",
      "updateTime": "@js:java.timeFormat({{$.updated_at}})"
    },
    "searchUrl": "http://m.kuaikanmanhua.com/search/mini/topic/title_and_author?page={{page}}&size=24&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "同站    CP文库：\nhttps://www.cpwenku.com",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "鲤鱼乡",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.liyuxiangku.org/",
    "customButton": false,
    "customOrder": 390,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"榜单\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"总点击榜\",\"url\":\"/allvisit-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月点击榜\",\"url\":\"/monthvisit-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周点击榜\",\"url\":\"/weekvisit-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总推荐榜\",\"url\":\"/allvote-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月推荐榜\",\"url\":\"/monthvote-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"收藏排行\",\"url\":\"/goodnum-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"最近更新\",\"url\":\"/lastupdate-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"新书上架\",\"url\":\"/postdate-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"字数排行\",\"url\":\"/size-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻灵异\",\"url\":\"/xuanhuan-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"近代现代\",\"url\":\"/xiandai-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古代穿越\",\"url\":\"/gudai-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"推理悬疑\",\"url\":\"/xuanyi-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"网游竞技\",\"url\":\"/wangyou-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"ＢＬ同人\",\"url\":\"/bl-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"ＧＬ百合\",\"url\":\"/gl-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}}]",
    "lastUpdateTime": 1785206000306,
    "respondTime": 16345,
    "ruleBookInfo": {
      "author": ".booktag a.0@text",
      "coverUrl": ".bookcover img@src",
      "intro": ".bookintro@html",
      "kind": ".breadcrumb a.1@text&&.booktag span.2@text&&.booktime@text##.*：|\\s.*",
      "lastChapter": ".bookinfo p.2@a@text",
      "name": ".booktitle@text",
      "wordCount": ".booktag span.0@text"
    },
    "ruleContent": {
      "content": ".readcontent@html",
      "nextContentUrl": "#linkNext@href",
      "replaceRegex": "##本章未完.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author!1:2@text##.*：",
      "bookList": ".bookbox",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.+\\D((\\d+)\\d{3})\\D##https://tu.liyuxiang.cc/$2/$1/$1s.jpg###",
      "intro": ".update@textNodes",
      "lastChapter": "a.1@text",
      "name": "a.0@text",
      "wordCount": ".author!0:2@text##.*：|字"
    },
    "ruleToc": {
      "chapterList": "#list-chapterAll dd a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php,{\n  'charset': 'gbk',\n  'method': 'POST',\n  'body': 'searchkey={{key}}'\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "腐漫",
    "bookSourceType": 2,
    "bookSourceUrl": "https://www.fumanmanhua.com",
    "bookUrlPattern": "(https?://)?(www\\.)?fumanmanhua\\.com",
    "customButton": false,
    "customOrder": 391,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1785674076131,
    "respondTime": 5398,
    "ruleBookInfo": {
      "name": "class.comic-info@class.comic-detail@tag.h1@text"
    },
    "ruleContent": {
      "content": "class.center padding5@img@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": "class.comic-sort col3 search-result@li",
      "bookUrl": "tag.a@href",
      "checkKeyWord": "我的",
      "name": "tag.a@tag.p@text"
    },
    "ruleToc": {
      "chapterList": "class.weui-cells@tag.a",
      "chapterName": "class.weui-cell__bd@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://www.fumanmanhua.com/search/index?keywords={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "\nhttp://www.weilaitianwang.info/\nhttp://www.weilaitianwang.com",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "未来天王",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.weilaitianwang.info",
    "customButton": false,
    "customOrder": 392,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "===========最近更新===========\n玄幻奇幻::/xuanhuanxiaoshuo/1_{{page}}.html\n修真仙侠::/xiuzhenxiaoshuo/1_{{page}}.html\n都市青春::/dushixiaoshuo/1_{{page}}.html\n历史穿越::/chuanyuexiaoshuo/1_{{page}}.html\n网游竞技::/wangyouxiaoshuo/1_{{page}}.html\n科幻灵异::/kehuanxiaoshuo/1_{{page}}.html\n其它小说::/qitaxiaoshuo/1_{{page}}.html\n阅读轨迹::nofollow\" href=\"/gj.html1_{{page}}.html\n完本小说::/wanben/1_11_{{page}}.html",
    "lastUpdateTime": 1787425056379,
    "respondTime": 2380,
    "ruleBookInfo": {
      "author": "##:author\"[^\"]+\"([^\"]*)##$1###",
      "coverUrl": "##og:image\"[^\"]+\"([^\"]*)##$1###",
      "intro": "#intro@text",
      "kind": "##:category\"[^\"]+\"([^\"]*)##$1###",
      "lastChapter": "##_chapter_name\"[^\"]+\"([^\"]*)##$1###",
      "name": "##:book_name\"[^\"]+\"([^\"]*)##$1###"
    },
    "ruleContent": {
      "content": "#content@textNodes",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##\\s*.*(((http|https|ftp):\\/\\/)?([\\w\\d][\\/_\\-\\.]*)+(\\.)[\\w\\d\\/]{2,4}([\\w\\d?\\/%][+=&_\\.~\\-]*)*).*\\s*|\\s*.*网站.*\\s*|\\s*.*([谢感多]谢.*的([千打]赏|支持)[!！,，。!]*)+.*\\s*|\\s*.*[谢感多]谢.*?书友.*?支持.*\\s*|\\s*.*第\\d+章.*\\s*|\\s*.*作者.*\\s*"
    },
    "ruleExplore": {
      "author": ".s4@text",
      "bookList": ".l li[0:-1]",
      "bookUrl": "##<a\\s*href=\"([^\"]+)\"##$1###",
      "coverUrl": "##<img\\s*src=\"([^\"]+)\"##$1###",
      "kind": ".s1@text##\\[(.*)\\]##$1",
      "lastChapter": ".s3@text",
      "name": ".s2@text",
      "wordCount": ".s5@text"
    },
    "ruleSearch": {
      "author": ".s4@a@text",
      "bookList": ".novelslist2 li[1:-1]",
      "bookUrl": "##<a\\s*href=\"([^\"]+)\"##$1###",
      "coverUrl": "##<img\\s*src=\"([^\"]+)\"##$1###",
      "kind": "[class=s6 wid6]@text",
      "lastChapter": ".s3@a@text",
      "name": ".s2@a@text"
    },
    "ruleToc": {
      "chapterList": "#list dd[12:-1]",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "/search.html?name={{key}}",
    "weight": 2
  },
  {
    "bookSourceComment": "20231123 整体修复-尐哖\n旧域名：https://api.aixdzs.com",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "爱下小说（优）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://apiv2hans.aixdzs.com##@尐哖",
    "customButton": false,
    "customOrder": 393,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\nsort=[];\n\tpush=(title,url,type,fp)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: fp,\n\t\t\t\tlayout_flexBasisPercent: type\n\t\t\t}\n\t});\n\tu=\"https://apiv2hans.aixdzs.com/sort\"\n\txx=(a,b)=>{\n\t\treturn `list,{\"method\": \"POST\",\"body\":'{\"bookTypeId\":\"${a}\",\"type\": \"${b}\",\"pageNum\": \"{{page}}\"}'}`;\n\t}\n\tfls = JSON.parse(java.post(u,'',{}).body());\n\tpush(\"最新\",'',1,1)\n\tfor(f of fls.data.allType){\n\t\tpush(f.categoryName,u+xx(f.bookTypeId,1),0.25,0.25);\n\t}\n\tpush(\"——\",'',0.25,0.25)\n\tpush(\"——\",'',0.25,0.25)\n\tpush(\"大热\",'',1,1)\n\tfor(l of fls.data.allType){\n\t\tpush(l.categoryName,u+xx(l.bookTypeId,2),0.25,0.25);\n\t}\n\tpush(\"——\",'',0.25,0.25)\n\tpush(\"——\",'',0.25,0.25)\n\t//完本:3\n\tJSON.stringify(sort);\n</js>",
    "header": "@js:\nJSON.stringify({\n\t\"User-Agent\":\"Dalvik/2.1.0 (Linux; U; Android 10; MIX  Build/PKQ1.190118.001)\"\n});",
    "lastUpdateTime": 1753360915438,
    "respondTime": 1421,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "https://img22.aixdzs.com/{{$.cover}}",
      "init": "$.data.book",
      "intro": "$.longIntro",
      "kind": "{{$.updated##T.*}}\n{{$.cat}}\n{{$.zt}}",
      "lastChapter": "$.lastChapter\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求更谢乐发推票盟补加字Kk\\/].*[\\)\\}）｝】]/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "name": "$.title",
      "tocUrl": "{{source.getKey().match(/([^\\#]+)\\#/)[1]}}/catalog,{\n  \"body\": '{\"bookId\":\"{{$.bookId}}\"}',\n  \"method\": \"POST\"\n}",
      "wordCount": "$.wordCount"
    },
    "ruleContent": {
      "content": "<js>\ns=\"2c6689f91ee4d4e87d798397d47310ebbe1dad79ixdzs\";\nfor (i = 0, h = \"\"; i < 8; i++) {\n\tx=\"abcdefghijklmnopqrstuvwxyz0123456789\";\n\tr = parseInt(Math.random() * (36 - 0 +1) + 0, 10);\n\th += x.charAt(r);\n}\na=String(Math.round(new Date()));\nsha = s + h + a + h;\nsha1 = java.digestHex(sha,'SHA-1');\n\nb = baseUrl.match(/\"chapterId\":(\\d+),\"bookId\":\"(\\d+)\"/)\nu=source.getKey().match(/([^\\#]+)\\#/)[1];\nurl = u + \"/chapter/content,\";\npost=`{\n  \"method\": \"POST\",\n  \"body\":'{\"chapterId\": ${b[1]},\"bookId\":\"${b[2]}\"}',\n  \"headers\":{\"checkSumDTO\":'{\"appid\":\"ixdzs\",\"checksum\":\"${sha1}\",\"curtime\":\"${a}\",\"nonce\":\"${h}\"}'}\n}`\n\nresult = java.ajax(url+post);\n</js>$.data.chapter.chapterContent",
      "replaceRegex": "##\\n\\s*[\\（(]本章完[\\)）]$|\\n\\s*第.*章.*\\n|.*武林中文网.*最新章节！"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.data.bookList",
      "bookUrl": "{{source.getKey().match(/([^\\#]+)\\#/)[1]}}/book/detail,{\n  \"body\":'{\"bookId\":\"{{$.bookId}}\"}',\n  \"method\": \"POST\"\n}",
      "coverUrl": "https://img22.aixdzs.com/{{$.cover}}",
      "intro": "$.shortIntro",
      "kind": "{{$.updated##T.*}}\n{{$.cat}}\n{{$.zt}}",
      "lastChapter": "{{$.lastChapter##最新:}} • {{$.updated##T.*}}",
      "name": "$.title"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.data.bookList",
      "bookUrl": "{{source.getKey().match(/([^\\#]+)\\#/)[1]}}/book/detail,{\n  \"body\":'{\"bookId\":\"{{$.bookId}}\"}',\n  \"method\": \"POST\"\n}",
      "checkKeyWord": "",
      "coverUrl": "https://img22.aixdzs.com/{{$.cover}}",
      "intro": "$.shortIntro",
      "kind": "{{$.updated##T.*}}\n{{$.cat}}\n{{$.zt}}",
      "lastChapter": "{{$.lastChapter##最新[:：]}} • {{$.updated##T.*}}",
      "name": "$.title",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "$.data.chapterList[*]",
      "chapterName": "$.chapterName",
      "chapterUrl": "{{source.getKey().match(/([^\\#]+)\\#/)[1]}}/chapter/content,{\n\t\"body\": '{\"chapterId\":{{$.chapterId}},\"bookId\":\"{{$.bookId}}\"}',\n  \"method\": \"POST\"\n}",
      "updateTime": "时间：{{java.timeFormat(java.getString('$.createTime'))}}"
    },
    "searchUrl": "{{source.getKey().match(/([^\\#]+)\\#/)[1]}}/search,{\n  \"body\": '{\"searchTerms\":\"{{key}}\",\"pageSize\": \"20\",\"pageNum\":\"{{page}}\"}',\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "英文小说（英）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.yingyuxiaoshuo.com",
    "customButton": false,
    "customOrder": 394,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1766359054956,
    "respondTime": 335,
    "ruleBookInfo": {
      "author": "@css:.listshadow1 .text-danger:nth-child(2)@text",
      "coverUrl": "@css:.listshadow1 img@src",
      "intro": "@css:.listshadow1 .text-intro1@text",
      "kind": "@css:.listshadow1 .text-danger:nth-child(n+3)@text",
      "name": "@css:.listshadow1 .text-danger:first-child h2@text"
    },
    "ruleContent": {
      "content": "{{@css:.text-content1 .c-en@text||.text-content1@text}}"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "@css:.grow>div:nth-child(2)@text",
      "bookList": "@css:.main-list-container>div.h-36",
      "bookUrl": "a@href",
      "checkKeyWord": "加",
      "coverUrl": "img@src",
      "intro": "@css:.grow>div:nth-child(3)@text",
      "kind": "@css:.grow>div:nth-child(4) span:first-child@text",
      "name": "@css:.grow h2>a:nth-child(n)@text"
    },
    "ruleToc": {
      "chapterList": "@css:.shadow-listshadow1 .grid .text-danger",
      "chapterName": "class.text-danger@text",
      "chapterUrl": "class.text-danger@href"
    },
    "searchUrl": "/search/{{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎃耽美小说网🎃#2",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.bengben.com#🎃",
    "bookUrlPattern": "https://www.bengben.com/book/\\d+/\\d+/",
    "customButton": false,
    "customOrder": 395,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"🧊分类小说🧊\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n\n{\"title\":\"玄幻修仙\",\"url\":\"/list1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"现代都市\",\"url\":\"/list2/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代架空\",\"url\":\"/list3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越重生\",\"url\":\"/list4/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游动漫\",\"url\":\"/list5/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻未来\",\"url\":\"/list6/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"恐怖灵异\",\"url\":\"/list7/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"BG言情\",\"url\":\"/list8/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他类型\",\"url\":\"/list9/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"新书\",\"url\":\"/top/postdate_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"完本\",\"url\":\"/top/fullflag/{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n\n{\"title\":\"🧊书库🧊\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n\n{\"title\":\"玄幻修仙\",\"url\":\"https://www.bengben.com/all/xh_default_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"现代都市\",\"url\":\"https://www.bengben.com/all/ds_default_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代架空\",\"url\":\"https://www.bengben.com/all/jk_default_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越重生\",\"url\":\"https://www.bengben.com/all/cy_default_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游动漫\",\"url\":\"https://www.bengben.com/all/wy_default_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻未来\",\"url\":\"https://www.bengben.com/all/kh_default_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"恐怖灵异\",\"url\":\"https://www.bengben.com/all/ly_default_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"BG言情\",\"url\":\"https://www.bengben.com/all/bg_default_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他类型\",\"url\":\"https://www.bengben.com/all/qt_default_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n\n\n{\"title\":\"🧊排行榜🧊\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n\n{\"title\":\"总点击榜\",\"url\":\"https://www.bengben.com/all/all_allvisit_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月点击榜\",\"url\":\"https://www.bengben.com/all/all_monthvisit_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周点击榜\",\"url\":\"https://www.bengben.com/all/all_weekvisit_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日点击榜\",\"url\":\"https://www.bengben.com/all/all_dayvisit_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总推荐榜\",\"url\":\"https://www.bengben.com/all/all_allvote_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月推荐榜\",\"url\":\"https://www.bengben.com/all/all_monthvote_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周推荐榜\",\"url\":\"https://www.bengben.com/all/all_weekvote_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日推荐榜\",\"url\":\"https://www.bengben.com/all/all_dayvote_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总收藏榜\",\"url\":\"https://www.bengben.com/all/all_goodnum_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总字数榜\",\"url\":\"https://www.bengben.com/all/all_size_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最新入库\",\"url\":\"https://www.bengben.com/all/all_postdate_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最近更新\",\"url\":\"https://www.bengben.com/all/all_lastupdate_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n\n{\"title\":\"🧊字数榜🧊\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n\n{\"title\":\"⭐️全部小说⭐️\",\"url\":\"https://www.bengben.com/all/all_default_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},{\"title\":\"30万以下\",\"url\":\"https://www.bengben.com/all/all_default_0_1_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},{\"title\":\"30万-50万\",\"url\":\"https://www.bengben.com/all/all_default_0_2_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},{\"title\":\"50万-100万\",\"url\":\"https://www.bengben.com/all/all_default_0_3_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},{\"title\":\"100万-200万\",\"url\":\"https://www.bengben.com/all/all_default_0_4_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},{\"title\":\"200万以上\",\"url\":\"https://www.bengben.com/all/all_default_0_5_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n\n{\"title\":\"🧊字母榜🧊\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n\n\n{\"title\":\"[A]\",\"url\":\"https://www.bengben.com/all/all_default_a_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[B]\",\"url\":\"https://www.bengben.com/all/all_default_b_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[C]\",\"url\":\"https://www.bengben.com/all/all_default_c_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[D]\",\"url\":\"https://www.bengben.com/all/all_default_d_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[E]\",\"url\":\"https://www.bengben.com/all/all_default_e_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[F]\",\"url\":\"https://www.bengben.com/all/all_default_f_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[G]\",\"url\":\"https://www.bengben.com/all/all_default_g_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[H]\",\"url\":\"https://www.bengben.com/all/all_default_h_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[I]\",\"url\":\"https://www.bengben.com/all/all_default_i_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[J]\",\"url\":\"https://www.bengben.com/all/all_default_j_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[K]\",\"url\":\"https://www.bengben.com/all/all_default_k_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[L]\",\"url\":\"https://www.bengben.com/all/all_default_l_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[M]\",\"url\":\"https://www.bengben.com/all/all_default_m_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[N]\",\"url\":\"https://www.bengben.com/all/all_default_n_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[O]\",\"url\":\"https://www.bengben.com/all/all_default_o_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[P]\",\"url\":\"https://www.bengben.com/all/all_default_p_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[R]\",\"url\":\"https://www.bengben.com/all/all_default_r_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[S]\",\"url\":\"https://www.bengben.com/all/all_default_s_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[T]\",\"url\":\"https://www.bengben.com/all/all_default_t_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[Q]\",\"url\":\"https://www.bengben.com/all/all_default_q_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[U]\",\"url\":\"https://www.bengben.com/all/all_default_u_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[V]\",\"url\":\"https://www.bengben.com/all/all_default_v_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[W]\",\"url\":\"https://www.bengben.com/all/all_default_w_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[X]\",\"url\":\"https://www.bengben.com/all/all_default_x_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[Y]\",\"url\":\"https://www.bengben.com/all/all_default_y_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[Z]\",\"url\":\"https://www.bengben.com/all/all_default_z_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"[0]\",\"url\":\"https://www.bengben.com/all/all_default_1_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"🧊状态榜🧊\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n\n{\"title\":\"不限\",\"url\":\"https://www.bengben.com/all/all_default_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"连载\",\"url\":\"https://www.bengben.com/all/all_default_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"完本\",\"url\":\"https://www.bengben.com/all/all_default_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]\n",
    "lastUpdateTime": 0,
    "respondTime": 6192,
    "ruleBookInfo": {
      "author": "em.0@text",
      "coverUrl": "img@src",
      "intro": ".intro@html",
      "kind": "em.1:2@text##.*：|.*：",
      "lastChapter": "em.3@a@text",
      "name": ".rt@h1@text"
    },
    "ruleContent": {
      "content": ".yd_text2@html",
      "nextContentUrl": ".pereview@a.2@href"
    },
    "ruleExplore": {
      "author": ".zz@text||p.0@span.0@text",
      "bookList": ".booklist@li!0||.writer_i_4",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": ".writer_name3@text",
      "kind": ".zs,.sj,.zt@text||p.1:3@span.0@text##.*：",
      "lastChapter": ".zj@a@text||.writer_name4@a@text",
      "name": ".sm@a@text||p.0@a@text"
    },
    "ruleSearch": {
      "author": ".zz@text",
      "bookList": ".booklist@ul@li!0",
      "bookUrl": "a.0@href",
      "checkKeyWord": "",
      "kind": ".sj,.zt@text",
      "lastChapter": ".zj@a@text",
      "name": ".mz@a@text"
    },
    "ruleToc": {
      "chapterList": ".mulu@ul@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://www.bengben.com/search/book,{\n  \"body\": \"searchkey={{key}}\",\n  \"method\": \"POST\",\n  \"charset\": \"GBK\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "英语阅读（英）",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.enread.com#",
    "customButton": false,
    "customOrder": 396,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "英语新闻::http://m.enread.com/index.php?catid=9&mid=1&page={{page}}\n英语美文::http://m.enread.com/index.php?catid=7&mid=2&page={{page}}\n英语故事::http://m.enread.com/index.php?catid=4&mid=1&page={{page}}\n英语笑话::http://m.enread.com/index.php?catid=3&mid=1&page={{page}}\n英语娱乐::http://m.enread.com/index.php?catid=10&mid=1&page={{page}}\n英语诗歌::http://m.enread.com/index.php?catid=6&mid=1&page={{page}}\n英语演讲::http://m.enread.com/index.php?catid=11&mid=2&page={{page}}\n英语考试::http://m.enread.com/index.php?catid=2&mid=1&page={{page}}\n英语小说::http://m.enread.com/index.php?catid=5&mid=2&page={{page}}\n英语技巧::http://m.enread.com/index.php?catid=1&mid=1&page={{page}}",
    "lastUpdateTime": 1759754317973,
    "respondTime": 5482,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "class.arc_content@html&&id.wz_jx@tbody@html##<!--share-->[\\s\\S]+?<!--share-->##↓↓↓单词↓↓↓"
    },
    "ruleExplore": {
      "bookList": "class.h3title@tag.a.0||class.item_li@a",
      "bookUrl": "href",
      "name": "text"
    },
    "ruleSearch": {
      "bookList": "class.item_li",
      "bookUrl": "a@href",
      "name": "text##分类：.*"
    },
    "ruleToc": {
      "chapterList": "class.item_li||class.h1title",
      "chapterName": "text",
      "chapterUrl": "a@href@js:if(result!=null){result=\"http://m.tingroom.com/\"+result}else{result=baseUrl}",
      "nextTocUrl": "@js:\nif(result.match(/跳至/)){\npage=result.match(/1\\/(\\d+)/)[1];\nlist=[];\nif(page>50){\npage=50\n}\nfor(i=2;i<=page;i++){\nlist.push(baseUrl+\"&page=\"+i)\n}\nlist}"
    },
    "searchUrl": "http://m.enread.com/index.php?keyword={{key}}&mid=4&page={{page}},{\n  \"charset\": \"gbk\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "必读文学",
    "bookSourceType": 0,
    "bookSourceUrl": "http://quickapi.biduwenxue.com",
    "customButton": false,
    "customOrder": 397,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"排行榜\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"男人气榜\",\"url\":\"http://quickapi.biduwenxue.com/api/rankBookList,{'method':'POST','body':'current={{page}}&pindao=1&appname=lingmao&rankType=1&pageSize=30&versionName=1.1.18&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C%3A03%3AAB%3A73%3A27%3A7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"男收藏榜\",\"url\":\"http://quickapi.biduwenxue.com/api/rankBookList,{'method':'POST','body':'current={{page}}&pindao=1&appname=lingmao&rankType=2&pageSize=30&versionName=1.1.18&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C%3A03%3AAB%3A73%3A27%3A7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"男字数榜\",\"url\":\"http://quickapi.biduwenxue.com/api/rankBookList,{'method':'POST','body':'current={{page}}&pindao=1&appname=lingmao&rankType=3&pageSize=30&versionName=1.1.18&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C%3A03%3AAB%3A73%3A27%3A7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"女人气榜\",\"url\":\"http://quickapi.biduwenxue.com/api/rankBookList,{'method':'POST','body':'current={{page}}&pindao=2&appname=lingmao&rankType=1&pageSize=30&versionName=1.1.18&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C%3A03%3AAB%3A73%3A27%3A7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"女收藏榜\",\"url\":\"http://quickapi.biduwenxue.com/api/rankBookList,{'method':'POST','body':'current={{page}}&pindao=2&appname=lingmao&rankType=2&pageSize=30&versionName=1.1.18&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C%3A03%3AAB%3A73%3A27%3A7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"女字数榜\",\"url\":\"http://quickapi.biduwenxue.com/api/rankBookList,{'method':'POST','body':'current={{page}}&pindao=2&appname=lingmao&rankType=3&pageSize=30&versionName=1.1.18&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C%3A03%3AAB%3A73%3A27%3A7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4'}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"男频\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"都市\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=1&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"玄幻奇幻\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=2&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"历史军事\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=3&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"武侠仙侠\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=4&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"游戏竞技\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=5&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"科幻末世\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=6&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"灵异\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=7&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"公版书\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=18&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"其他\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=19&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"女频\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"现代言情\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=10&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"古代言情\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=11&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"玄幻言情\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=12&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"校园言情\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=13&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"穿越言情\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=14&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"灵异言情\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=15&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"唯美纯爱\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=16&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}},{\"title\":\"同人\",\"url\":\"http://quickapi.biduwenxue.com/api/search/lib?s=17&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.29}}]",
    "lastUpdateTime": 1784645794860,
    "respondTime": 2267,
    "ruleBookInfo": {
      "author": "$..author.nickname",
      "coverUrl": "http://biduwenxue-img.oss-cn-beijing.aliyuncs.com/{{$..book.cover}}",
      "intro": "$..book.intro",
      "kind": "{{$..book.lastChapterPublishTime}}\n{{$..book.keywords}}",
      "lastChapter": "$..book.lastChapterTitle",
      "name": "$..book.title",
      "tocUrl": "http://quickapi.biduwenxue.com/api/book/chapters?appname=lingmao&pageSize=15000&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&pageNum=1&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&manufacturer=Xiaomi&bookId={{$..book.id}}&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&",
      "wordCount": "$..book.wordCount"
    },
    "ruleContent": {
      "content": "$..content"
    },
    "ruleExplore": {
      "author": "$.authorname",
      "bookList": "$..pageList[*]||$.data[*]",
      "bookUrl": "http://quickapi.biduwenxue.com/api/book/info?appname=lingmao&channel=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&bookId={{$.id}}&manufacturer=Xiaomi&",
      "coverUrl": "http://biduwenxue-img.oss-cn-beijing.aliyuncs.com/{{$.cover}}",
      "intro": "$.intro",
      "kind": "$.categoryname",
      "lastChapter": "$.lastChapterTitle",
      "name": "$.title",
      "wordCount": "$.wordCount"
    },
    "ruleSearch": {
      "author": "$.authorname",
      "bookList": "$..pageList[*]",
      "bookUrl": "http://quickapi.biduwenxue.com/api/book/info?appname=lingmao&channel=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4&versionName=1.1.18&userId=8573311&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C:03:AB:73:27:7E&bookId={{$.id}}&manufacturer=Xiaomi&",
      "coverUrl": "http://biduwenxue-img.oss-cn-beijing.aliyuncs.com/{{$.cover}}",
      "intro": "$.intro",
      "kind": "$.categoryname",
      "name": "$.title"
    },
    "ruleToc": {
      "chapterList": "$..pageList[*]",
      "chapterName": "$.title",
      "chapterUrl": "http://quickapi.biduwenxue.com/api/chapter/info,{\n'method': 'POST',\n'body': 'appname=lingmao&chapterId={{$.id}}&versionName=1.1.18&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C%3A03%3AAB%3A73%3A27%3A7E&manufacturer=Xiaomi&bookId={{$.bookId}}&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4'}",
      "updateTime": "{{$.updateTime}}\n字数：{{$.wordCount}}"
    },
    "searchUrl": "http://quickapi.biduwenxue.com/api/search,{\n'method': 'POST',\n'body': 'keywords={{key}}&appname=lingmao&pageNo={{page}}&pageSize=30&versionName=1.1.18&device=OPM1.171019.019&androidid=d4dd57d6-93ea-4f4d-acaf-b3ea5c0271e9&mac=7C%3A03%3AAB%3A73%3A27%3A7E&manufacturer=Xiaomi&channelCode=%E7%81%B5%E7%8C%AB%E5%B0%8F%E8%AF%B4'\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "名著阅读",
    "bookSourceType": 2,
    "bookSourceUrl": "https://api.520diandu.com/",
    "customButton": false,
    "customOrder": 398,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"📚全部书籍\",\"url\":\"https://api.520diandu.com/api/read/allReadBooks?uid=&key=&page={{page}}&cv=134&from=web\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1780161152136,
    "respondTime": 2677,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "@get:{img}@js:headers={\"headers\":{\"Referer\":baseUrl}};\nresult.split(\"\\n\").map(x=>'<img src=\\\"'+x+','+JSON.stringify(headers)+'\\\">').join(\"\\n\")"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": "$..books[*]",
      "bookUrl": "https://api.520diandu.com/api/read/readAllPages?uid=&key=&cv=134&from=web&bid={{$.id}}",
      "checkKeyWord": "封神",
      "coverUrl": "$.famous",
      "intro": "$.title",
      "name": "$.book_name"
    },
    "ruleToc": {
      "chapterList": "$.data",
      "chapterName": "$.page",
      "chapterUrl": "$.pic@put:{img:pic}"
    },
    "searchUrl": "https://api.520diandu.com/api/read/allReadBooks?uid=&key=&name={{key}}&page={{page}}&cv=134&from=app",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.biquge.info",
    "customButton": false,
    "customOrder": 399,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "lastUpdateTime": 1721130680053,
    "respondTime": 4919,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作 者:",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.intro@tag.p.0@text",
      "kind": "id.info@tag.p.1@text&&\nid.info@tag.p.2@text##类 别:|最后更新 :",
      "lastChapter": "id.info@tag.p.3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.info@h1@text"
    },
    "ruleContent": {
      "content": "@js:dt=lr='';c=1;动=java.get(\"动\");\nif(动!=''&&!~baseUrl.indexOf(\",\")){\nresult=String(java.ajax(baseUrl+动))\n}else if(java.get(\"静\")==动)c=dt=2;\n\nr=org.jsoup.Jsoup.parse(r1=result.replace(/&nbsp;/g,' '));\n查=i=java.get(\"序\");\n\nif(java.get(\"文\")==1){for(;c;c--){\nd=[\"img[data-src],img[src~=[^a-z]cid[^a-z]]\"\n,\"img:not([src~=(?i)^$|^javascript:|\\\\.gif|\\\\.png|[^a-z](cover|css|ic(on)?|load(ing|ed)?)[^a-z]])\"\n,\"img[src~=(?i)\\\\.png]:not([src~=(?i)[^a-z](cover|css|ic(on)?|load(ing|ed)?)[^a-z]])\"\n,'img[src~=(?i)\\\\.gif]:not([src~=(?i)[^a-z](cover|css|ic(on)?|load(ing|ed)?)[^a-z]])'];\n\nif(!(查!=\"\"&&(查!=-1&&((lr=r.select(d[查])).size(),true)))){\n$=it=>(lr=r.select(it)).size();\nif($(d[i=0])||$(d[i=1])||$(d[i=2])||false)break;\n\nif(c==2){dt=1;\nr=org.jsoup.Jsoup.parse(java.ajax(baseUrl+',{\"webView\":true}'))\n}else i=$(d[3])?3:-1}}\nif(i==0)lr=String(lr).replace(/(?:src=['\"][^'\"]+['\"] +)?data-/g,'');\nif(查==\"\")book.putVariable(\"序\",i);\n\n}else{\nsc=java.get(\"文\")==2?\n'[style~=(?i)text-align:center|(^| |;)color: *(rgb.(?!255[ ,]+255[ ,]+255)[\\\\d, ]*2\\\\d\\\\d|#(?=[a-f\\\\d]{3}([^a-f\\\\d]|$))(?!fff)[a-f\\\\d]*[d-f]|#(?=[a-f\\\\d]{4})(?!ffffff)([\\\\da-f]{2})*[d-f][\\\\da-f]|green|red|blue|yellow|purple|pink|brown)],script,noscript,style,header,footer,[class~=^foot|^head],[id~=^foot|^head],:has(>a):not(:has(p:matchesOwn(\\\\S),br)),a>*,:has(a):not(:matchesOwn([\\\\S\\\\s]{50,}),:has(:matchesOwn([\\\\S\\\\s]{50,}))),:matchesOwn([\\\\s\\\\S]{50})>:not(br,a,:matchesOwn([\\\\s\\\\S]{50})),:not(br,p,a,:matches([\\\\s\\\\S]{200}),:has(p,br,div:matchesOwn(，|。)+div:matchesOwn(，|。)),:has(p,br,div:matchesOwn(，|。)+div:matchesOwn(，|。)) :matchesOwn(\\\\S):not(:not(p,div,span:has(br))))'\n:\n'[style~=(?i)text-align:center|(^| |;)color: *(rgb.(?!255[ ,]+255[ ,]+255)[\\\\d, ]*2\\\\d\\\\d|#(?=[a-f\\\\d]{3}([^a-f\\\\d]|$))(?!fff)[a-f\\\\d]*[d-f]|#(?=[a-f\\\\d]{4})(?!ffffff)([\\\\da-f]{2})*[d-f][\\\\da-f]|green|red|blue|yellow|purple|pink|brown)],script,noscript,style,header,footer,[class~=^foot|^head],[id~=^foot|^head],:has(>a):not(:has(p:matchesOwn(\\\\S),br,img:not([src~=(?i)^$|^javascript:|[^a-z](css|ic(on)?|load(ing|ed)?)[^a-z]|/\\\\d+s\\\\.jpg]))),img[src~=(?i)^$|^javascript:|[^a-z](css|ic(on)?|load(ing|ed)?)[^a-z]|/\\\\d+s\\\\.jpg],a:not(:matches(^$)>img)>*,:has(a):not(img,:matchesOwn([\\\\S\\\\s]{50,}),:has(img,:matchesOwn([\\\\S\\\\s]{50,}))),:matchesOwn([\\\\s\\\\S]{50})>:not(img,br,a,:has(img),:matchesOwn([\\\\s\\\\S]{50})),:not(img,br,p,a,:matches([\\\\s\\\\S]{200}),:has(p,br,img,div:matchesOwn(，|。)+div:matchesOwn(，|。)),:has(img,p,br,div:matchesOwn(，|。)+div:matchesOwn(，|。)) :matchesOwn(\\\\S):not(:not(p,div,span:has(br))))';\n\nd=[\":matchesOwn(\\\\S):has(br):has(:matchesOwn(\\\\S):has(br))\"\n,\":matchesOwn(\\\\S):has(br)\"\n,\":has(>:matchesOwn(\\\\S):not(:has(*))+:matchesOwn(\\\\S):not(:has(*)))\"\n,\":has(>:has(>p:only-child:matchesOwn(\\\\S):not(:has(*)))+:has(>p:only-child:matchesOwn(\\\\S):not(:has(*))))\"\n,\"img\"\n,\":matchesOwn(\\\\S)\"];\n\ntry{for(查=i!=''?i:java.get(\"元\");c;c--){\n\nif(!(c>1&&(String(r.text()).length<400||r.select(':matchesOwn(内容未加载完成|关闭(阅读|小说)模式)').size()))){\nr.select(sc).remove();\n\nif(!(查!=\"\"&&(lr=r.select(i?d[i==6?5:i]:查)).size()))for(i=0;i<6&&(lr=r.select(d[i]),i==4&&c==1?!lr.size():String(lr.text()).length<200);i++);\nif(c<2||i<6)break;}\n\nr=org.jsoup.Jsoup.parse(r2=String(java.ajax(baseUrl+',{\"webView\":true}')).replace(/(<[a-z]+)&nbsp;/g,'$1 '));\ndt=r1.length==r2.length?2:1}\n\nfor(c=lr.first(),v=1;v<lr.size();v++)if(lr.get(v).parents().contains(c)){\nlr.remove(v);\nv--}else c=lr.get(v);\n\nlr=String((c=lr.size()==2&&i<4)?String(lr.first().text()).length>String(lr.get(1).text()).length?lr.first():lr.get(1):(c=lr.size()==1)?lr.first():lr);\n\nif(查==\"\"){\nif(c&&(查=lr.match(/<([a-z]+) ([^>]+)>/))&&(查[2]=查[2].match(/(?:id|class|style)=(?:\"[^\"]+\"|'[^']+')|[^= ]+(?==\"[^\"]+\"|'[^']+')/g))){\nbook.putVariable(\"元\",查[1]+'['+查[2].join('][')+']')\n}else book.putVariable(\"序\",i)}\n\nlr=lr.replace(/<([a-z]+)[^>]*\"-\\d+\"[^>]*>[^<]+<\\/\\1>|[^<>]*<a[^<]+<\\/a>[^<]*|&lt[; ]?\\/?[a-z]+(?= |\\/?&gt)(?:[ a-z=-]+|\"[^\"]+\"|'[^']+')*\\/?&gt[; ]?|[☯📑⚙️🌕︴]/g,\"\").replace(/\\s+(?:\\s|(?:(?:(?:n?b)?s)?p)?;)/g,\"　　\");\n\nif(java.get(\"原\")!=1)lr=(!lr.indexOf(\"　　\")?lr.replace(/>(?!　　|\\s*(?:(?:(?:n?b)?s)?p)?;)\\s*(?=[^\\s<>])/g,\">︴\"):lr)\n.replace(/((?:[〖【『「（《〈〔［\\[(][^〖【『「（《〈〔［\\[()］〕〉》）」』】〗\\]]*[)］〕〉》）」』】〗\\]]\\s*)*(?:第?\\s*[一二三四五六七八九十百千万〇零0-9]+\\s*[章节回話话：:.．,，、]*\\s*)?{{\nn=(t=title.match(/\\S+$/)[0].replace(/[*$|?+\\\\\\^\\[\\](){}/]/g,\".?\")).replace(/^(正文[^\\u4e00-\\u9fa5A-Za-z]*|第?[一二三四五六七八九十百千万〇零0-9]+[章节回話话\\s：:.．,，、]*)+/,\"\"),n!=t&&/\\S/.test(n)?\"(?:第?\\\\s*[一二三四五六七八九十百千万〇零0-9]+\\\\s*[章节回話话：:.．,，、]*\\\\s*\"+n+\"|\"+t+\")\":t\n}}(?:\\s*[〖【『「（《〈〔［\\[(][^〖【『「（《〈〔［\\[()］〕〉》）」』】〗\\]]*[)］〕〉》）」』】〗\\]])*)/g,\"⚙️$1⚙️\")+\"📑\"\n\n}catch(e){}}\nif(dt)book.putVariable(dt==1?\"动\":\"静\",',{\"webView\":true}');lr"
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "kind": "",
      "lastChapter": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "class.odd.1@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "class.odd.0@tag.a@href",
      "coverUrl": "class.odd.0@tag.a@href<js>\nvar id = result.match(/_(\\d+)/)[1];\nvar iid = parseInt(id/1000);\n'http://www.biquge.info/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "class.even.0@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.odd.0@tag.a@text",
      "wordCount": "class.even.1@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.biquge.info/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "快读网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.kuuai.com",
    "bookUrlPattern": "http://www.kuuai.com/book/\\d+/\\d+/",
    "customButton": false,
    "customOrder": 400,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "[\n  {\n    \"title\": \"⭕分类小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"首页\",\n    \"url\": \"/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/list1/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/list2/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/list3/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/list4/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/list5/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/list6/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/list7/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/list8/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕完结小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/full/1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/full/2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/full/3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/full/4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/full/5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/full/6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/full/7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/full/8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕排行榜⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"周榜\",\n    \"url\": \"/top/week_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月榜\",\n    \"url\": \"/top/month_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总榜\",\n    \"url\": \"/top/all_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/top/all_1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/top/all_2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/top/all_3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/top/all_4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/top/all_5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/top/all_6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/top/all_7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/top/all_8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "lastUpdateTime": 1784021853256,
    "respondTime": 13608,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content&&\n[property=\"og:novel:status\"]@content&&\n[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:title\"]@content##小说全文免费阅读完整版|小说全集|小说全文免费阅读|最新.*"
    },
    "ruleContent": {
      "content": "class.font_max@html",
      "nextContentUrl": "text.下一@href",
      "replaceRegex": "##本章未完.*|第.*[(1/2)]页|(?:[^\\u4E00-\\u9FA5\\s！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}(?<![\\.．点丶。])[\\.．点丶。]{1,2}(?![\\.．点丶。])(?:[^A-Z\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])(?:[^\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])+|(?:[^\\u4E00-\\u9FA5\\n！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}[\\.．点丶。](?:[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[oO][^\\n\\u4E00-\\u9FA5A-z]*[mM]|[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[nN]|[^\\n\\u4E00-\\u9FA5A-z]*[nN][^\\n\\u4E00-\\u9FA5A-z]*[eE][^\\n\\u4E00-\\u9FA5A-z]*[tT])(?![A-z])"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "dd.1@span.0@text",
      "bookList": ".col-md-6@dl",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "kind": "dd.2:3@text##.*：|.*：",
      "lastChapter": "dd.4@a@text",
      "name": "h3@a@text##.*\\]|小说全文阅读|小说全集|小说全文免费阅读"
    },
    "ruleToc": {
      "chapterList": ".book_list2 li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": ".page-link@a@href\n@js:\nnext = [];\nurl = result[0];\nlength = result.length;\np = src.match(/page-link\">1\\/(\\d+)/)||[];\npage = Number(p[1]);\nif(length < page){\n\tfor(i = 2; i <= page; i++){\n\t\tlink = String(url).replace(/_\\d+/,`_${i}`);\n\t\tnext.push(link)\n\t\t}\n\t\tnext;\n\t}else result"
    },
    "searchUrl": "/search.php?q={{key}}&p={{page}}",
    "weight": 1
  },
  {
    "bookSourceGroup": "🎨漫画,🎉 优选",
    "bookSourceName": "爱看漫画（优+）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.kanman.com#♤Haxc",
    "customButton": false,
    "customOrder": 401,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "人气::https://m.kanman.com/api/getsortlist/?comic_sort=&orderby=click&search_type=&search_key=&page={{page}}&size=48\n更新::https://m.kanman.com/api/getsortlist/?comic_sort=&orderby=date&search_type=&search_key=&page={{page}}&size=48\n评分::https://m.kanman.com/api/getsortlist/?comic_sort=&orderby=score&search_type=&search_key=&page={{page}}&size=48\n收藏::https://m.kanman.com/api/getsortlist/?comic_sort=&orderby=shoucang&search_type=&search_key=&page={{page}}&size=48\n热血::https://m.kanman.com/api/getsortlist/?comic_sort=rexue&orderby=&search_type=&search_key=&page={{page}}&size=48\n机战::https://m.kanman.com/api/getsortlist/?comic_sort=jizhan&orderby=&search_type=&search_key=&page={{page}}&size=48\n运动::https://m.kanman.com/api/getsortlist/?comic_sort=yundong&orderby=&search_type=&search_key=&page={{page}}&size=48\n推理::https://m.kanman.com/api/getsortlist/?comic_sort=tuili&orderby=&search_type=&search_key=&page={{page}}&size=48\n冒险::https://m.kanman.com/api/getsortlist/?comic_sort=maoxian&orderby=&search_type=&search_key=&page={{page}}&size=48\n搞笑::https://m.kanman.com/api/getsortlist/?comic_sort=gaoxiao&orderby=&search_type=&search_key=&page={{page}}&size=48\n战争::https://m.kanman.com/api/getsortlist/?comic_sort=zhanzhen&orderby=&search_type=&search_key=&page={{page}}&size=48\n神魔::https://m.kanman.com/api/getsortlist/?comic_sort=shenmo&orderby=&search_type=&search_key=&page={{page}}&size=48\n忍者::https://m.kanman.com/api/getsortlist/?comic_sort=renzhe&orderby=&search_type=&search_key=&page={{page}}&size=48\n竞技::https://m.kanman.com/api/getsortlist/?comic_sort=jingji&orderby=&search_type=&search_key=&page={{page}}&size=48\n悬疑::https://m.kanman.com/api/getsortlist/?comic_sort=xuanyi&orderby=&search_type=&search_key=&page={{page}}&size=48\n社会::https://m.kanman.com/api/getsortlist/?comic_sort=shehui&orderby=&search_type=&search_key=&page={{page}}&size=48\n恋爱::https://m.kanman.com/api/getsortlist/?comic_sort=lianai&orderby=&search_type=&search_key=&page={{page}}&size=48\n宠物::https://m.kanman.com/api/getsortlist/?comic_sort=chongwu&orderby=&search_type=&search_key=&page={{page}}&size=48\n吸血::https://m.kanman.com/api/getsortlist/?comic_sort=xixue&orderby=&search_type=&search_key=&page={{page}}&size=48\n萝莉::https://m.kanman.com/api/getsortlist/?comic_sort=luoli&orderby=&search_type=&search_key=&page={{page}}&size=48\n后宫::https://m.kanman.com/api/getsortlist/?comic_sort=hougong&orderby=&search_type=&search_key=&page={{page}}&size=48\n御姐::https://m.kanman.com/api/getsortlist/?comic_sort=yujie&orderby=&search_type=&search_key=&page={{page}}&size=48\n霸总::https://m.kanman.com/api/getsortlist/?comic_sort=bazong&orderby=&search_type=&search_key=&page={{page}}&size=48\n玄幻::https://m.kanman.com/api/getsortlist/?comic_sort=xuanhuan&orderby=&search_type=&search_key=&page={{page}}&size=48\n古风::https://m.kanman.com/api/getsortlist/?comic_sort=gufeng&orderby=&search_type=&search_key=&page={{page}}&size=48\n历史::https://m.kanman.com/api/getsortlist/?comic_sort=lishi&orderby=&search_type=&search_key=&page={{page}}&size=48\n漫改::https://m.kanman.com/api/getsortlist/?comic_sort=mangai&orderby=&search_type=&search_key=&page={{page}}&size=48\n游戏::https://m.kanman.com/api/getsortlist/?comic_sort=youxi&orderby=&search_type=&search_key=&page={{page}}&size=48\n穿越::https://m.kanman.com/api/getsortlist/?comic_sort=chuanyue&orderby=&search_type=&search_key=&page={{page}}&size=48\n恐怖::https://m.kanman.com/api/getsortlist/?comic_sort=kongbu&orderby=&search_type=&search_key=&page={{page}}&size=48\n真人::https://m.kanman.com/api/getsortlist/?comic_sort=zhenren&orderby=&search_type=&search_key=&page={{page}}&size=48\n科幻::https://m.kanman.com/api/getsortlist/?comic_sort=kehuan&orderby=&search_type=&search_key=&page={{page}}&size=48\n都市::https://m.kanman.com/api/getsortlist/?comic_sort=dushi&orderby=&search_type=&search_key=&page={{page}}&size=48\n武侠::https://m.kanman.com/api/getsortlist/?comic_sort=wuxia&orderby=&search_type=&search_key=&page={{page}}&size=48\n修真::https://m.kanman.com/api/getsortlist/?comic_sort=xiuzhen&orderby=&search_type=&search_key=&page={{page}}&size=48\n生活::https://m.kanman.com/api/getsortlist/?comic_sort=shenghuo&orderby=&search_type=&search_key=&page={{page}}&size=48\n动作::https://m.kanman.com/api/getsortlist/?comic_sort=dongzuo&orderby=&search_type=&search_key=&page={{page}}&size=48\n防疫::https://m.kanman.com/api/getsortlist/?comic_sort=fangyi&orderby=&search_type=&search_key=&page={{page}}&size=48",
    "lastUpdateTime": 1766317903404,
    "respondTime": 2302,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "kind": "[property=\"og:novel:category\"]@content",
      "lastChapter": ".comic-update-status@text##.*-\\d+ ",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "https://m.kanman.com/api/getchapterlist?product_id=1&productname=kmh&platformname=wap&comic_id=@get:{bid}"
    },
    "ruleContent": {
      "content": "$.data.current_chapter.chapter_img_list@js:\nheader={\"Referer\":baseUrl};\nheaders={\"headers\":JSON.stringify(header)};\nresult.split(\"\\n\").map(x=>'<img src=\\\"'+x+','+JSON.stringify(headers)+'\\\">').join(\"\\n\")",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.cartoon_author_list_name||$.comic_author",
      "bookList": "$.data.data||$.data",
      "bookUrl": "https://m.kanman.com/{{$.comic_id}}/",
      "coverUrl": "https://image.yqmh.com/mh/{{$.comic_id}}.jpg-300x400.webp",
      "intro": "$.cartoon_desc",
      "kind": "$.comic_type##[a-zA-Z]|\\|",
      "lastChapter": "$.latest_cartoon_topic_name||$.last_chapter_name",
      "name": "$.comic_name@put:{bid:$.comic_id}"
    },
    "ruleToc": {
      "chapterList": "-$.data.[*]",
      "chapterName": "$.chapter_name",
      "chapterUrl": "https://m.kanman.com/api/getchapterinfov2?product_id=1&productname=kmh&platformname=wap&comic_id=@get:{bid}&chapter_newid={{$.chapter_newid}}&isWebp=1&quality=low"
    },
    "searchUrl": "https://m.kanman.com/api/serachcomic/?product_id=1&productname=kmh&platformname=wap&serachKey={{key}}&topNumber=10",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "衍墨轩书",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.ymxshuwu.com",
    "bookUrlPattern": "https://www.ymxshuwu.com/ml/\\d+/",
    "customButton": false,
    "customOrder": 403,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "❀                       全 部 小 说                      ❀::\n玄幻奇幻::/store/0_1_0_{{page}}.html\n武侠仙侠::/store/0_2_0_{{page}}.html\n都市生活::/store/0_3_0_{{page}}.html\n历史军事::/store/0_4_0_{{page}}.html\n游戏竞技::/store/0_5_0_{{page}}.html\n科幻未来::/store/0_6_0_{{page}}.html\n恐怖悬疑::/store/0_7_0_{{page}}.html\n二次あ元::/store/0_8_0_{{page}}.html\n经典网文::/store/0_9_0_{{page}}.html\n古代言情::/store/0_10_0_{{page}}.html\n现代言情::/store/0_11_0_{{page}}.html\n幻想奇缘::/store/0_12_0_{{page}}.html\n青春校园::/store/0_13_0_{{page}}.html\n网络情缘::/store/0_14_0_{{page}}.html\n科幻空间::/store/0_15_0_{{page}}.html\n鬼怪灵异::/store/0_16_0_{{page}}.html\nN 次あ元::/store/0_17_0_{{page}}.html\n言情美文::/store/0_18_0_{{page}}.html\n\n❀                       排 行 榜 单                      ❀::\n总点击榜::/store/allvisit_0_0_{{page}}.html\n月点击榜::/store/monthvisit_0_0_{{page}}.html\n周点击榜::/store/weekvisit_0_0_{{page}}.html\n日点击榜::/store/dayvisit_0_0_{{page}}.html\n总推荐榜::/store/allvote_0_0_{{page}}.html\n月推荐榜::/store/monthvote_0_0_{{page}}.html\n周推荐榜::/store/weekvote_0_0_{{page}}.html\n日推荐榜::/store/dayvote_0_0_{{page}}.html\n总收藏榜::/store/goodnum_0_0_{{page}}.html\n总字数榜::/store/size_0_0_{{page}}.html\n最新入库::/store/postdate_0_0_{{page}}.html\n最近更新::/store/lastupdate_0_0_{{page}}.html\n新书榜单::/store/goodnew_0_0_{{page}}.html\n\n❀                       全 部 连 载                      ❀::\n玄幻奇幻::/store/0_1_1_{{page}}.html\n武侠仙侠::/store/0_2_1_{{page}}.html\n都市生活::/store/0_3_1_{{page}}.html\n历史军事::/store/0_4_1_{{page}}.html\n游戏竞技::/store/0_5_1_{{page}}.html\n科幻未来::/store/0_6_1_{{page}}.html\n恐怖悬疑::/store/0_7_1_{{page}}.html\n二次あ元::/store/0_8_1_{{page}}.html\n经典网文::/store/0_9_1_{{page}}.html\n古代言情::/store/0_10_1_{{page}}.html\n现代言情::/store/0_11_1_{{page}}.html\n幻想奇缘::/store/0_12_1_{{page}}.html\n青春校园::/store/0_13_1_{{page}}.html\n网络情缘::/store/0_14_1_{{page}}.html\n科幻空间::/store/0_15_1_{{page}}.html\n鬼怪灵异::/store/0_16_1_{{page}}.html\nN 次あ元::/store/0_17_1_{{page}}.html\n言情美文::/store/0_18_1_{{page}}.html\n\n❀                       全 部 完 结                      ❀::\n玄幻奇幻::/store/0_1_2_{{page}}.html\n武侠仙侠::/store/0_2_2_{{page}}.html\n都市生活::/store/0_3_2_{{page}}.html\n历史军事::/store/0_4_2_{{page}}.html\n游戏竞技::/store/0_5_2_{{page}}.html\n科幻未来::/store/0_6_2_{{page}}.html\n恐怖悬疑::/store/0_7_2_{{page}}.html\n二次あ元::/store/0_8_2_{{page}}.html\n经典网文::/store/0_9_2_{{page}}.html\n古代言情::/store/0_10_2_{{page}}.html\n现代言情::/store/0_11_2_{{page}}.html\n幻想奇缘::/store/0_12_2_{{page}}.html\n青春校园::/store/0_13_2_{{page}}.html\n网络情缘::/store/0_14_2_{{page}}.html\n科幻空间::/store/0_15_2_{{page}}.html\n鬼怪灵异::/store/0_16_2_{{page}}.html\nN 次あ元::/store/0_17_2_{{page}}.html\n言情美文::/store/0_18_2_{{page}}.html",
    "header": "{\n\"Cookie\":\"Hm_lvt_7fcb840f05292022d7891ede141cc33d=1625028707\"\n}",
    "lastUpdateTime": 1787414532379,
    "respondTime": 9190,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@a@text",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.intro@tag.p.0@text",
      "kind": "id.info@tag.p.2@text##最后更新：",
      "lastChapter": "id.info@tag.p.3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.info@h1@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节"
    },
    "ruleContent": {
      "content": "id.content@html##因某些原.*突然出现大量.*到回家的路！|喜欢.*更新速度最快。|您可以在百度.*查找最新章节！|.*最新章节地址.*|.*全文阅读地址.*|.*txt下载地址.*|.*手机阅读.*|为了方便下次阅.*下次打开书架即可看到！|喜欢.*请向你的朋友.*|本章未完.*后面更精彩！",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {
      "author": "tag.dd.1@text",
      "bookList": "class.novelslist2@tag.dl",
      "bookUrl": "tag.dd.0@tag.a.0@href",
      "coverUrl": "tag.dt@tag.a@img@src",
      "intro": "tag.dd.2@text",
      "kind": "class.uptime@text",
      "lastChapter": "tag.dd.3@tag.a@text",
      "name": "tag.dd.0@tag.a.0@text"
    },
    "ruleSearch": {
      "author": "class.book_other.0@tag.span.0@text",
      "bookList": "id.sitembox@tag.dl",
      "bookUrl": "tag.dd@tag.h3@tag.a@href",
      "coverUrl": "tag.dt@tag.a@img@src",
      "intro": "class.book_des@text",
      "kind": "class.book_other.0@tag.span.2@text",
      "lastChapter": "class.book_other.1@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "tag.dd@tag.h3@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节",
      "wordCount": "class.book_other.0@tag.span.3@text"
    },
    "ruleToc": {
      "chapterList": "class.box_con@tag.dd!0:1:2:3:4:5:6:7:8:9:10:11",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://www.ymxshuwu.com/search.html,{\r\n  \"method\": \"POST\",\r\n  \"body\": \"searchtype=all&searchkey={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎨漫画,🎉 优选",
    "bookSourceName": "武芊漫画（优+）",
    "bookSourceType": 2,
    "bookSourceUrl": "https://comic.mkzcdn.com",
    "customButton": false,
    "customOrder": 404,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nlet url = 'https://comic.mkzcdn.com/search/filter/?audience=0&order=sort&page_num={{page}}&page_size=18&theme_id=class'\nlet class_name=\"全部&修真&霸总&恋爱&校园&冒险&搞笑&生活&热血&架空&后宫&玄幻&悬疑&恐怖&灵异&动作&科幻&战争&古风&穿越&竞技&励志&同人&真人\".split(\"&\");\nlet class_url=\"0&2&1&3&4&5&6&7&8&9&10&12&13&14&15&16&17&18&19&20&21&23&24&26\".split(\"&\")\n\nlet sort_name='推荐&最热&最新'.split(\"&\")\nlet sort_url='3&1&2'.split(\"&\")\nlet model = (title,url,num)=>{\n    return {title:title,url:url,style:{layout_flexGrow:1,layout_flexBasisPercent:num}}\n}\n\ntop=[{\"title\":\"热门人气\",\"url\":\"https://comic.mkzcdn.com/search/filter/?order=1&page_num={{page}}&page_size=12\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"更新时间\",\"url\":\"https://comic.mkzcdn.com/search/filter/?order=2&page_num={{page}}&page_size=12\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}}]\n\nlet list = []\nlist=list.concat(top)\n\nfor (let i = 0; i < sort_name.length; i++) {\n    list.push(model(\"══ \" + sort_name[i] + \" ══\",\"\",1))\n    for (let j = 0; j < class_name.length; j++) {\n        let t = url.replace(\"sort\",`${sort_url[i]}`).replace(\"class\",`${class_url[j]}`)\n        list.push(model(class_name[j],t,0.2))\n    }\n}\nJSON.stringify(list)",
    "lastUpdateTime": 1786825971822,
    "respondTime": 2232,
    "ruleBookInfo": {
      "intro": "$..content##^##<br/>",
      "kind": "$..theme_id\n@js:\nlet class_name=\"全部&修真&霸总&恋爱&校园&冒险&搞笑&生活&热血&架空&后宫&玄幻&悬疑&恐怖&灵异&动作&科幻&战争&古风&穿越&竞技&励志&同人&真人\".split(\"&\");\nlet class_url=\"0&2&1&3&4&5&6&7&8&9&10&12&13&14&15&16&17&18&19&20&21&23&24&26\".split(\"&\");\nlet map = {};\nfor(let i=0; i<class_url.length; i++){\n    map[class_url[i]] = class_name[i];\n}\nlet res = result.toString().replace(/\\[|\\]/g, '').split(/[,\\s]+/);\nlet tags = [];\nfor(let i=0; i<res.length; i++){\n    let id = res[i].trim();\n    if(map[id] && map[id] !== \"全部\"){\n        tags.push(map[id]);\n    }\n}\nArray.from(new Set(tags)).join(\" \");",
      "name": "@put:{comic_id:$..comic_id}",
      "tocUrl": "https://comic.mkzcdn.com/chapter/v1/?comic_id={{$..comic_id}}"
    },
    "ruleContent": {
      "content": "$.data[*].image\n@js:\nresult.split(\"\\n\").map(x=>'<img src=\"'+x+'\">').join(\"\\n\")"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.author_title",
      "bookList": "$..list[*]",
      "bookUrl": "https://comic.mkzcdn.com/comic/info/?comic_id={{$.comic_id}}",
      "coverUrl": "$.cover",
      "intro": "$.feature",
      "lastChapter": "$.chapter_title",
      "name": "$.title"
    },
    "ruleToc": {
      "chapterList": "$.data",
      "chapterName": "$.title",
      "chapterUrl": "https://comic.mkzcdn.com/chapter/content/?chapter_id={{$.chapter_id}}&comic_id=@get:{comic_id}",
      "updateTime": "$..start_time\n@js:\"🕗 \"+java.timeFormat(result*1000)+\"    \"+(new Date(result*1000)>new Date()?\"❗️未发布\":\"\")"
    },
    "searchUrl": "https://comic.mkzcdn.com/search/keyword/?keyword={{key}}&page_num={{page}}&page_size=20",
    "weight": 0
  },
  {
    "bookSourceComment": "by:xsw8093\n发布页\nhttps://antbyw.github.io/\n--https://www.antbyw.com/plugin.php?id=jameson_manhua&a=read&kuid=194612&zjid=1531082",
    "bookSourceGroup": "🎨漫画,🎉 优选",
    "bookSourceName": "漫画搬运（优+）",
    "bookSourceType": 2,
    "bookSourceUrl": "https://www.antbyw.com",
    "customButton": false,
    "customOrder": 405,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全部::/plugin.php?id=jameson_manhua&a=ku&category_id=8&region=1\n热血::/plugin.php?id=jameson_manhua&a=ku&category_id=7&region=1\n冒险::/plugin.php?id=jameson_manhua&a=ku&category_id=8&region=1\n魔幻::/plugin.php?id=jameson_manhua&a=ku&category_id=9&region=1\n神鬼::/plugin.php?id=jameson_manhua&a=ku&category_id=10&region=1\n搞笑::/plugin.php?id=jameson_manhua&a=ku&category_id=11&region=1\n萌系::/plugin.php?id=jameson_manhua&a=ku&category_id=12&region=1\n爱情::/plugin.php?id=jameson_manhua&a=ku&category_id=13&region=1\n科幻::/plugin.php?id=jameson_manhua&a=ku&category_id=14&region=1\n魔法::/plugin.php?id=jameson_manhua&a=ku&category_id=15&region=1\n格斗::/plugin.php?id=jameson_manhua&a=ku&category_id=16&region=1\n武侠::/plugin.php?id=jameson_manhua&a=ku&category_id=17&region=1\n机战::/plugin.php?id=jameson_manhua&a=ku&category_id=18&region=1\n战争::/plugin.php?id=jameson_manhua&a=ku&category_id=19&region=1\n竞技::/plugin.php?id=jameson_manhua&a=ku&category_id=20&region=1\n体育::/plugin.php?id=jameson_manhua&a=ku&category_id=21&region=1\n校园::/plugin.php?id=jameson_manhua&a=ku&category_id=22&region=1\n生活::/plugin.php?id=jameson_manhua&a=ku&category_id=23&region=1\n励志::/plugin.php?id=jameson_manhua&a=ku&category_id=24&region=1\n历史::/plugin.php?id=jameson_manhua&a=ku&category_id=25&region=1\n伪娘::/plugin.php?id=jameson_manhua&a=ku&category_id=26&region=1\n宅男::/plugin.php?id=jameson_manhua&a=ku&category_id=27&region=1\n腐女::/plugin.php?id=jameson_manhua&a=ku&category_id=28&region=1\n耽美::/plugin.php?id=jameson_manhua&a=ku&category_id=29&region=1\n百合::/plugin.php?id=jameson_manhua&a=ku&category_id=30&region=1\n后宫::/plugin.php?id=jameson_manhua&a=ku&category_id=31&region=1\n治愈::/plugin.php?id=jameson_manhua&a=ku&category_id=32&region=1\n美食::/plugin.php?id=jameson_manhua&a=ku&category_id=33&region=1\n推理::/plugin.php?id=jameson_manhua&a=ku&category_id=34&region=1\n悬疑::/plugin.php?id=jameson_manhua&a=ku&category_id=35&region=1\n恐怖::/plugin.php?id=jameson_manhua&a=ku&category_id=36&region=1\n四格::/plugin.php?id=jameson_manhua&a=ku&category_id=37&region=1\n职场::/plugin.php?id=jameson_manhua&a=ku&category_id=38&region=1\n侦探::/plugin.php?id=jameson_manhua&a=ku&category_id=39&region=1\n社会::/plugin.php?id=jameson_manhua&a=ku&category_id=40&region=1\n音乐::/plugin.php?id=jameson_manhua&a=ku&category_id=41&region=1\n舞蹈::/plugin.php?id=jameson_manhua&a=ku&category_id=42&region=1\n杂志::/plugin.php?id=jameson_manhua&a=ku&category_id=43&region=1\n黑道::/plugin.php?id=jameson_manhua&a=ku&category_id=44&region=1",
    "header": "{\n    \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0\",\"Cookie\":\"0\"\n}",
    "lastUpdateTime": 1760405659601,
    "respondTime": 11347,
    "ruleBookInfo": {
      "author": "text.漫畫作者@text##漫畫作者:##",
      "coverUrl": ".uk-grid-collapse.1@img@src",
      "intro": ".uk-grid-collapse.1@class.uk-alert@text",
      "kind": ".uk-grid-collapse.1@class.uk-text-small@text##别名:|更新時間:|更新到:|漫畫作者:##",
      "lastChapter": "text.更新到@text##更新到:##",
      "name": ".uk-grid-collapse.1@h3@text"
    },
    "ruleContent": {
      "content": "<js>\nresult=String(src).trim().replace(/\\s+/g,'').match(/(let|var|const)+urls=(\\[.*?\\])/g)[0].replace(/(let|var|const)+urls=/g,\"\")\n\nresult=JSON.parse(result).map(n=>`<img src=\"${n}\" />`).join(\"\")\n</js>"
    },
    "ruleExplore": {
      "bookList": ".uk-card",
      "bookUrl": "p@a@href",
      "coverUrl": "img@src",
      "kind": ".xs1@text",
      "lastChapter": ".xs1@text",
      "name": "p@a@text"
    },
    "ruleSearch": {
      "bookList": ".uk-card",
      "bookUrl": "a.1@href",
      "checkKeyWord": "怪兽8号",
      "coverUrl": "a.0@img@src",
      "kind": ".uk-breadcrumb@li@a@text",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": ".uk-alert-warning:not(div)&&.uk-alert-warning:not(div) ~ .uk-subnav ~.uk-switcher\n@js:\nlist=[]\nvoList = Array.from(result).filter(n=>String(n).includes('<h3'))\n\nulList = Array.from(result).filter(n=>String(n).includes('<ul'))\n\nulList.map((n,index)=>{\n\n   list.push({\n\t   href:\"\",\n\t   text:java.getString(\"text\",voList[index]),\n\t   volume:true\n  })\n dList = []\n  \nArray.from(org.jsoup.Jsoup.parse(n).select(\"li\")).reverse().map(t=>{\t      \n\tmList = Array.from(org.jsoup.Jsoup.parse(t).select(\".muludiv\")).reverse().map(k=>{\n\n\t dList.push({\n\t   href:org.jsoup.Jsoup.parse(k).select(\"a\")[0].attr(\"href\"),\n\t   text:org.jsoup.Jsoup.parse(k).select(\"a\")[0].text(),\n\t   volume:false\n\t })\n     })\n   })\n   \n   if(java.getString(\"text\",voList[index])!=\"番外篇\"){\n\t  dList = dList.sort(function(a, b) {\n            return parseInt((a.text.match(/\\d+/) || [0])[0], 10) - parseInt((b.text.match(/\\d+/) || [0])[0], 10)\n        })\n    }\n    list = list.concat(dList)\n})\n\nlist",
      "chapterName": "text",
      "chapterUrl": "href",
      "isVolume": "volume"
    },
    "searchUrl": "/plugin.php?id=jameson_manhua&a=search&c=index&keyword={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎨漫画,🎉 优选",
    "bookSourceName": "新爱漫画（优）",
    "bookSourceType": 2,
    "bookSourceUrl": "https://xapi.xinmanhua.net#♤Haxc",
    "customButton": false,
    "customOrder": 406,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全部::https://xapi.xinmanhua.net/search/catalog?keyword=all&ischarge=2&isfinish=2&order=0&page={{page}}\n治愈::https://xapi.xinmanhua.net/search/catalog?keyword=治愈&page={{page}}\n日常::https://xapi.xinmanhua.net/search/catalog?keyword=日常&page={{page}}\n都市::https://xapi.xinmanhua.net/search/catalog?keyword=都市&page={{page}}\n悬疑::https://xapi.xinmanhua.net/search/catalog?keyword=悬疑&page={{page}}\n科幻::https://xapi.xinmanhua.net/search/catalog?keyword=科幻&page={{page}}\n奇幻::https://xapi.xinmanhua.net/search/catalog?keyword=奇幻&page={{page}}\n热血::https://xapi.xinmanhua.net/search/catalog?keyword=热血&page={{page}}\n武侠::https://xapi.xinmanhua.net/search/catalog?keyword=武侠&page={{page}}\n古风::https://xapi.xinmanhua.net/search/catalog?keyword=古风&page={{page}}\n恋爱::https://xapi.xinmanhua.net/search/catalog?keyword=恋爱&page={{page}}\n少年::https://xapi.xinmanhua.net/search/catalog?keyword=少年&page={{page}}\n日漫::https://xapi.xinmanhua.net/search/catalog?keyword=日漫&page={{page}}\n原创::https://xapi.xinmanhua.net/search/catalog?keyword=原创&page={{page}}",
    "header": "{\n  \"User-Agent\": \"okhttp/3.10.0\"\n}",
    "lastUpdateTime": 1786041207637,
    "respondTime": 2115,
    "ruleBookInfo": {
      "intro": "@JSon:$.data.attributes.intro&&$.data.attributes.description"
    },
    "ruleContent": {
      "content": "$.data[*].attributes.url\n@js:list=result.split('\\n');\nlist.map(x=>'<img src=\"'+x+'\">').join('\\n')",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "@JSon:$.attributes.author",
      "bookList": "@JSon:$.data.*",
      "bookUrl": "https://xapi.xinmanhua.net/worksinfos/{$.attributes.wid}?include=chapters.digests",
      "coverUrl": "@JSon:$.attributes.logo_detail",
      "kind": "@JSon:$.attributes.workscate",
      "lastChapter": "@JSon:$.attributes.lastctitle",
      "name": "@JSon:$.attributes.title"
    },
    "ruleToc": {
      "chapterList": "$.included.*",
      "chapterName": "$.attributes.title&&$.attributes.intro",
      "chapterUrl": "https://xapi.xinmanhua.net/chapters/{$.id}/qualitywebs"
    },
    "searchUrl": "https://xapi.xinmanhua.net/search/selfdefine,{\n  \"method\": \"POST\",\n  \"body\": \"keyword={{key}}&page={{page}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "七酷读书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.shuku.net",
    "customButton": false,
    "customOrder": 407,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787419854447,
    "respondTime": 1114,
    "ruleBookInfo": {
      "coverUrl": "tag.img.1@src",
      "intro": "id.intro@text",
      "lastChapter": "class.update@a@text",
      "name": "tag.h1@text##搜索关键词.*"
    },
    "ruleContent": {
      "content": "id.ChapterContents@html##(txt下载地址：|更新速度最快赶|全集txt下载)[\\s\\S]+"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.td.5@text||class.shu_xinxi@h4@small@text",
      "bookList": "class.BOX@tag.tr!0||class.shu_cont@children",
      "bookUrl": "class.red@href||class.shu_xinxi@h4@a@href",
      "coverUrl": "img@src|class.red@href<js>'/files/article/image'+String(result).replace(/.*?(\\d*?)(\\d{1,3})\\//,'/$1/$1$2/$1$2s.jpg').replace('//','/0/')</js>",
      "kind": "tag.td.1@text##\\[|\\]",
      "lastChapter": "tag.td.3@text",
      "name": "tag.td.2@text||class.shu_xinxi@h4@a@text##搜索关键词.*"
    },
    "ruleToc": {
      "chapterList": "class.zjlist@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.77shuku.info/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎉 优选",
    "bookSourceName": "爱优漫吧（优）",
    "bookSourceType": 2,
    "bookSourceUrl": "https://m.iyouman.com",
    "customButton": false,
    "customOrder": 408,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "每日更新::https://m.iyouman.com/api/updatelist/?productname=aym&platformname=wap\n综合榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=all&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n自制榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=self&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n少年榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=boy&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n少女榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=girl&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n新作榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=new&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n黑马榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=dark&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n付费榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=charge&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n免费榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=free&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n完结榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=finish&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n连载榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=serialize&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n人气::https://m.iyouman.com/api/getsortlist/?comic_sort=&orderby=click&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n更新::https://m.iyouman.com/api/getsortlist/?comic_sort=&orderby=date&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n评分::https://m.iyouman.com/api/getsortlist/?comic_sort=&orderby=score&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n收藏::https://m.iyouman.com/api/getsortlist/?comic_sort=&orderby=shoucang&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n连载::https://m.iyouman.com/api/getsortlist/?comic_sort=lianzai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n完结::https://m.iyouman.com/api/getsortlist/?comic_sort=wanjie&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n热血::https://m.iyouman.com/api/getsortlist/?comic_sort=rexue&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n机战::https://m.iyouman.com/api/getsortlist/?comic_sort=jizhan&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n运动::https://m.iyouman.com/api/getsortlist/?comic_sort=yundong&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n推理::https://m.iyouman.com/api/getsortlist/?comic_sort=tuili&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n冒险::https://m.iyouman.com/api/getsortlist/?comic_sort=maoxian&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n耽美::https://m.iyouman.com/api/getsortlist/?comic_sort=liaomei&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n百合::https://m.iyouman.com/api/getsortlist/?comic_sort=baihe&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n搞笑::https://m.iyouman.com/api/getsortlist/?comic_sort=gaoxiao&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n战争::https://m.iyouman.com/api/getsortlist/?comic_sort=zhanzhen&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n神魔::https://m.iyouman.com/api/getsortlist/?comic_sort=shenmo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n忍者::https://m.iyouman.com/api/getsortlist/?comic_sort=renzhe&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n竞技::https://m.iyouman.com/api/getsortlist/?comic_sort=jingji&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n悬疑::https://m.iyouman.com/api/getsortlist/?comic_sort=xuanyi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n社会::https://m.iyouman.com/api/getsortlist/?comic_sort=shehui&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n恋爱::https://m.iyouman.com/api/getsortlist/?comic_sort=lianai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n宠物::https://m.iyouman.com/api/getsortlist/?comic_sort=chongwu&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n吸血::https://m.iyouman.com/api/getsortlist/?comic_sort=xixue&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n萝莉::https://m.iyouman.com/api/getsortlist/?comic_sort=luoli&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n后宫::https://m.iyouman.com/api/getsortlist/?comic_sort=hougong&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n御姐::https://m.iyouman.com/api/getsortlist/?comic_sort=yujie&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n霸总::https://m.iyouman.com/api/getsortlist/?comic_sort=bazong&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n玄幻::https://m.iyouman.com/api/getsortlist/?comic_sort=xuanhuan&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n古风::https://m.iyouman.com/api/getsortlist/?comic_sort=gufeng&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n历史::https://m.iyouman.com/api/getsortlist/?comic_sort=lishi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n漫改::https://m.iyouman.com/api/getsortlist/?comic_sort=mangai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n游戏::https://m.iyouman.com/api/getsortlist/?comic_sort=youxi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n穿越::https://m.iyouman.com/api/getsortlist/?comic_sort=chuanyue&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n恐怖::https://m.iyouman.com/api/getsortlist/?comic_sort=kongbu&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n真人::https://m.iyouman.com/api/getsortlist/?comic_sort=zhenren&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n防疫::https://m.iyouman.com/api/getsortlist/?comic_sort=fangyi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n防疫::https://m.iyouman.com/api/getsortlist/?comic_sort=fangyi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n科幻::https://m.iyouman.com/api/getsortlist/?comic_sort=kehuan&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n都市::https://m.iyouman.com/api/getsortlist/?comic_sort=dushi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n武侠::https://m.iyouman.com/api/getsortlist/?comic_sort=wuxia&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n修真::https://m.iyouman.com/api/getsortlist/?comic_sort=xiuzhen&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n生活::https://m.iyouman.com/api/getsortlist/?comic_sort=shenghuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n动作::https://m.iyouman.com/api/getsortlist/?comic_sort=dongzuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n大陆::https://m.iyouman.com/api/getsortlist/?comic_sort=dalu&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n日本::https://m.iyouman.com/api/getsortlist/?comic_sort=riben&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n港台::https://m.iyouman.com/api/getsortlist/?comic_sort=gangtai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n欧美::https://m.iyouman.com/api/getsortlist/?comic_sort=oumei&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n韩国::https://m.iyouman.com/api/getsortlist/?comic_sort=os&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n全彩::https://m.iyouman.com/api/getsortlist/?comic_sort=quancai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n黑白::https://m.iyouman.com/api/getsortlist/?comic_sort=heibai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n小说::https://m.iyouman.com/api/getsortlist/?comic_sort=xiaoshuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n杂志::https://m.iyouman.com/api/getsortlist/?comic_sort=zazhi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n日更::https://m.iyouman.com/api/getsortlist/?comic_sort=rigeng&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n新作::https://m.iyouman.com/api/getsortlist/?comic_sort=xinzuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n精品::https://m.iyouman.com/api/getsortlist/?comic_sort=jingpin&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap",
    "lastUpdateTime": 1786191854445,
    "respondTime": 1307,
    "ruleBookInfo": {
      "author": "$.data.comic_author",
      "coverUrl": "$.data.cover_list[0]",
      "intro": "$.data.comic_desc",
      "kind": "$.data.comic_type_new[*].name",
      "lastChapter": "$.data.last_chaptet_name",
      "name": "$.data.comic_name@put:{comic_id:$.data.comic_id}",
      "tocUrl": "https://m.iyouman.com/api/getchapterlist?product_id=4&productname=aym&platformname=wap&comic_id={{$.data.comic_id}}"
    },
    "ruleContent": {
      "content": "data.current_chapter.chapter_img_list@js:\nheaders={\"headers\":{\"Referer\":baseUrl}}\n;\nresult.split(\"\\n\").map(x=>'<img src=\\\"'+x+','+JSON.stringify(headers)+'\\\">').join(\"\\n\")",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.comic_author",
      "bookList": "$.data.update[*].info[*]||$.data.data[*]||$.data[*]",
      "bookUrl": "https://m.iyouman.com/api/getcomicinfo_body/?comic_id={$.comic_id}&productname=aym&platformname=wap",
      "coverUrl": "http://image.mhxk.com/mh/{$.comic_id}.jpg-600x800.jpg.webp",
      "kind": "$.comic_type||$.sort_typelist##[a-zA-Z]|\\|",
      "lastChapter": "$.last_chapter_name||$.comic_chapter_name",
      "name": "$.comic_name"
    },
    "ruleToc": {
      "chapterList": "-$.data.*",
      "chapterName": "$.chapter_name@put:{chapter_id:$.chapter_id}",
      "chapterUrl": "https://m.iyouman.com/api/getchapterinfov2?product_id=4&productname=aym&platformname=wap&comic_id=@get:{comic_id}&chapter_newid={{$.chapter_newid}}&isWebp=1&quality=low"
    },
    "searchUrl": "https://m.iyouman.com/api/getsortlist/?search_type=&search_key={{key}}&page={{page}}&size=30&productname=aym&platformname=wap",
    "weight": 0
  },
  {
    "bookSourceComment": "Error: Unable to resolve host \"www.kenshuwx.com\": No address associated with hostname\n                    \"error:Timed out waiting for 180000 ms\n                                        \"error:Timed out waiting for 180000 ms\n                    \"error:Timed out waiting for 180000 ms\n\"\"\"",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "啃书阁",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.kenshuwx.com",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 409,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻·连载::/xuanhuan/lianzai/{{page}}/\n武侠·连载::/wuxia/lianzai/{{page}}/\n言情·连载::/yanqing/lianzai/{{page}}/\n历史·连载::/lishi/lianzai/{{page}}/\n科幻·连载::/kehuan/lianzai/{{page}}/\n恐怖·连载::/kongbu/lianzai/{{page}}/\n女生·连载::/nvsheng/lianzai/{{page}}/\n玄幻·完本::/xuanhuan/quanben/{{page}}/\n武侠·完本::/wuxia/quanben/{{page}}/\n言情·完本::/yanqing/quanben/{{page}}/\n历史·完本::/lishi/quanben/{{page}}/\n科幻·完本::/kehuan/quanben/{{page}}/\n恐怖·完本::/kongbu/quanben/{{page}}/\n女生·完本::/nvsheng/quanben/{{page}}/",
    "lastUpdateTime": 1716237974861,
    "loginUrl": "",
    "respondTime": 7289,
    "ruleBookInfo": {
      "intro": "class.book-intro@tag.div.0@text",
      "tocUrl": "text.查看目录@tag.a@href"
    },
    "ruleContent": {
      "content": "class.article-con@html##最新网址.*"
    },
    "ruleExplore": {
      "bookList": "class.box",
      "bookUrl": "class.booktitle@tag.a.0@href",
      "coverUrl": "class.lazy@tag.img.0@src",
      "intro": "class.gray6@tag.span.0@text",
      "kind": "tag.p.0@text##\\[|\\].*",
      "lastChapter": "class.booktitle@tag.a.1@text",
      "name": "class.booktitle@tag.a.0@text"
    },
    "ruleSearch": {
      "author": "class.author@tag.p.0@text##作者：",
      "bookList": "class.search-list@tag.li||class.box",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "class.col-l@tag.img.0@src",
      "intro": "class.intro@@tag.p.0@text##作品简介：",
      "kind": "",
      "lastChapter": "class.latest@tag.p.0@text##最后更新：",
      "name": "tag.a.1@text"
    },
    "ruleToc": {
      "chapterList": "class.clearfix chapter-list@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/modules/article/search.php?area=2&searchkey={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "大米小说#3",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.dmxs2.com#🎃",
    "customButton": false,
    "customOrder": 411,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"\n}",
    "lastUpdateTime": 1787068509551,
    "respondTime": 1063,
    "ruleBookInfo": {
      "author": "class.booktag@tag.a.0@text",
      "coverUrl": "#bookIntro@img@src",
      "intro": "class.text-muted.0@text",
      "kind": "class.breadcrumb@tag.li.1@tag.a@text&&class.booktag@tag.span.2@text",
      "lastChapter": "class.panel-body panel-chapterlist@class.col-md-4.0@tag.a.0@text",
      "name": "class.bookTitle@text",
      "wordCount": "class.booktag@tag.span.0@text##字数."
    },
    "ruleContent": {
      "content": "tag.p!-1:-2@textNodes",
      "imageStyle": "0",
      "nextContentUrl": "id.linkNext@href",
      "replaceRegex": "##「如章节缺失请退出#阅#读#模#式」.*|全网首发无弹窗免费阅读ｄ.*ａ.*m.*i.*x.*s.*..*o.*r.*g.*|(.*请.*来.*大.*米.*小.*说.*看.*最.*新.*章.*节.*完.*整.*章.*节.*).*|本书作者.*|.*提醒您.*最新章节在.*|全网首发无弹窗免费阅读ｄ.*ａ.*ｍ.*ｉ.*ｘ.*ｓ.*．.*o.*r.*g.*(请来大米小%说%看最新章节%完整章节).*|.*本书作者.*提醒您.*最新章节在.*|喜欢看.*|那就记住.*|的域名ｄａｍｉxs.org.*|(请来大米小说移动.*版.*看最新章节.*完整章节).*|你看#到的#内#容#中#间#可#能#有#缺#失，退#出#阅#读#模#式，才可以#继#续#阅#读#全#文,或者请使用其它#浏#览#器，或者来：d#a#m#i#x#s#.c#o#.*|.*提醒.*免费无弹窗阅读将第一时间在.*"
    },
    "ruleExplore": {
      "author": "class.text-muted.1@text",
      "bookList": "class.mytable@tag.tr!0",
      "bookUrl": "a@href",
      "intro": "a@href\n<js>\nvar url=book.origin+result[0];\nresult=java.ajax(url);\nresult;\n</js>\nclass.text-muted.0@text",
      "kind": "class.hidden-xs.1@text&&class.text-nowrap@text",
      "lastChapter": "class.text-muted.0@tag.a.0@text",
      "name": "a.0@text"
    },
    "ruleSearch": {
      "author": "class.booktag@tag.a@text",
      "bookList": ".col-md-10",
      "bookUrl": "class.bookTitle@tag.a@href",
      "intro": "class.text-muted hidden-xs.0@text",
      "lastChapter": "tag.p.2@tag.a@text",
      "name": "class.bookTitle@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "class.col-md-3",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/search/,{\n'charset': 'UTF-8\"',\n'method': 'POST',\n'body': 'keyword={{key}}&searchtype=all&Submit='\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "26.07.08@小说迷 修复cf验证 搜索列表\n【网站】领域书库 (lysxh.com)\n【技术实现】\n搜索：HTML 搜索（GET /search.html?keyWord=关键词）\n发现：HTML 发现（GET /fenlei/{分类全拼}/{{page}}/）\n详情：Default 规则（class.top@tag.h1 精确定位书名）\n目录：Default 规则（第二个 section-box）\n正文：HTML 提取 + JS 清理\n【局限性】\n- 网站有 Cloudflare Turnstile 保护，首次访问可能需要验证\n- 正文有分页，已配置 nextContentUrl 自动翻页\n- 仅支持 HTTP（HTTPS 证书不兼容）\n【规则说明】\n- 搜索/发现列表：Default 格式（tag.a.0@text），表头行自动过滤\n- 详情页书名：class.top@tag.h1 精确定位，避免匹配到 logo 的 h1\n- 正文分页标题：全局正则删除所有 章节名(第X/Y页)<br><br> 标记\n- 分类 URL 使用全拼：xuanhuan/wuxia/dushi/lishi/wangyou/kehuan/nvsheng\n- 分页格式：/fenlei/分类/{{page}}/（目录式，非 .html 式）",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "领域书库",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.lysxh.com",
    "customButton": false,
    "customOrder": 413,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻奇幻::/fenlei/xuanhuan/{{page}}/\n武侠仙侠::/fenlei/wuxia/{{page}}/\n都市言情::/fenlei/dushi/{{page}}/\n历史军事::/fenlei/lishi/{{page}}/\n网游竞技::/fenlei/wangyou/{{page}}/\n科幻灵异::/fenlei/kehuan/{{page}}/\n女生频道::/fenlei/nvsheng/{{page}}/",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1785018234965,
    "loginCheckJs": "var src = result.body();\nif (src.match(/Just a moment|Checking your browser|Performing security verification|Verifying you are human/)) {\n    cookie.removeCookie(source.bookSourceUrl);\n    var url = result.url();\n    java.startBrowserAwait(url, \"Cloudflare验证\");\n    result = java.connect(url);\n}\nresult;",
    "respondTime": 9036,
    "ruleBookInfo": {
      "author": "class.fix@tag.p.0@text##.*者：##",
      "coverUrl": ".imgbox img@src",
      "intro": ".desc@text##^\\s*##",
      "kind": "class.fix@tag.p.1@text##.*别：##",
      "lastChapter": "class.fix@tag.p.-1@tag.a@text",
      "name": "class.top@tag.h1@text"
    },
    "ruleContent": {
      "content": "#content@html@js:result.replace(/<script[\\s\\S]*?<\\/script>/g,'').replace(/[^<]*\\(第\\d+\\/\\d+页\\)<br><br>/g,'').replace(/（本章未完[\\s\\S]*?）/g,'')",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##.*?\\(第\\d+\\/\\d+页\\)##"
    },
    "ruleExplore": {
      "author": "class.s4@text",
      "bookList": ".txt-list li",
      "bookUrl": "tag.a.0@href",
      "kind": "class.s1@text",
      "lastChapter": "tag.a.1@text",
      "name": "tag.a.0@text"
    },
    "ruleSearch": {
      "author": "class.s4@text",
      "bookList": ".txt-list@li!0",
      "bookUrl": "tag.a.0@href",
      "kind": "class.s1@text",
      "lastChapter": "tag.a.1@text",
      "name": "tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": "class.section-box.-1@class.section-list@tag.li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "option@value"
    },
    "searchUrl": "/search.html?keyWord={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "九五书包#1",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.95shubao.la",
    "customButton": false,
    "customOrder": 414,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻魔法\",\"url\":\"/mulu/1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"武侠修真\",\"url\":\"/mulu/2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"都市言情\",\"url\":\"/mulu/3-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"历史军事\",\"url\":\"/mulu/4-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"侦探推理\",\"url\":\"/mulu/5-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"网游动漫\",\"url\":\"/mulu/6-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"科幻小说\",\"url\":\"/mulu/7-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"恐怖灵异\",\"url\":\"/mulu/8-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"穿越小说\",\"url\":\"/mulu/9-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"其他类型\",\"url\":\"/mulu/10-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"完本小说\",\"url\":\"/modules/article/articlelist.php?fullflag=1&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1786586189622,
    "respondTime": 4399,
    "ruleBookInfo": {
      "author": ".author@a@text",
      "coverUrl": ".con_limg@img@src",
      "intro": ".r_cons@html##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": ".txt_nav@a.1@text&&.lastrecord@ownText##小说|.*\\(|\\).*",
      "lastChapter": ".lastrecord@a@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": ".info@h1@text",
      "tocUrl": ".r_tools@a.1@href"
    },
    "ruleContent": {
      "content": "#content@textNodes",
      "replaceRegex": "##\\.pbtxt."
    },
    "ruleExplore": {
      "author": "a.2@text",
      "bookList": "#alistbox",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": ".intro@text",
      "name": "a.1@text##《|》"
    },
    "ruleSearch": {
      "author": "td.2@text",
      "bookList": "tbody@tr!0",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.+\\D((\\d+)\\d{3})\\D##/files/article/image/$2/$1/$1s.jpg###",
      "kind": "td.5:4@text",
      "lastChapter": "td.1@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "td.0@text",
      "wordCount": "td.3@text"
    },
    "ruleToc": {
      "chapterList": ".novel_list@dd@a",
      "chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php?ie=gbk&searchkey={{key}}&ct=2097152",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "亲亲小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.qq787.com",
    "bookUrlPattern": "http://www.qq787.com/book/\\d+/\\d+/",
    "customButton": false,
    "customOrder": 416,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"⭕分类小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"首页\",\n    \"url\": \"/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/list1/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/list2/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/list3/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/list4/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/list5/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/list6/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/list7/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/list8/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕完结小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/full/1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/full/2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/full/3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/full/4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/full/5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/full/6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/full/7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/full/8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕排行榜⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"周榜\",\n    \"url\": \"/top/week_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月榜\",\n    \"url\": \"/top/month_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总榜\",\n    \"url\": \"/top/all_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/top/all_1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/top/all_2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/top/all_3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/top/all_4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/top/all_5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/top/all_6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/top/all_7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/top/all_8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "lastUpdateTime": 1787424827502,
    "respondTime": 20432,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content&&\n[property=\"og:novel:status\"]@content&&\n[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:title\"]@content##小说全文免费阅读完整版|小说全集|最新.*"
    },
    "ruleContent": {
      "content": "class.font_max@html",
      "nextContentUrl": "text.下一@href",
      "replaceRegex": "##本章未完.*|第.*[(1/2)]页|(?:[^\\u4E00-\\u9FA5\\s！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}(?<![\\.．点丶。])[\\.．点丶。]{1,2}(?![\\.．点丶。])(?:[^A-Z\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])(?:[^\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])+|(?:[^\\u4E00-\\u9FA5\\n！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}[\\.．点丶。](?:[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[oO][^\\n\\u4E00-\\u9FA5A-z]*[mM]|[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[nN]|[^\\n\\u4E00-\\u9FA5A-z]*[nN][^\\n\\u4E00-\\u9FA5A-z]*[eE][^\\n\\u4E00-\\u9FA5A-z]*[tT])(?![A-z])"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "dd.1@span.0@text",
      "bookList": ".col-md-6@dl",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "kind": "dd.2:3@text##.*：|.*：",
      "lastChapter": "dd.4@a@text",
      "name": "h3@a@text##.*\\]|小说全文阅读|小说全集"
    },
    "ruleToc": {
      "chapterList": ".book_list2 li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": ".page-link@a@href\n@js:\nnext = [];\nurl = result[0];\nlength = result.length;\np = src.match(/page-link\">1\\/(\\d+)/)||[];\npage = Number(p[1]);\nif(length < page){\n\tfor(i = 2; i <= page; i++){\n\t\tlink = String(url).replace(/_\\d+/,`_${i}`);\n\t\tnext.push(link)\n\t\t}\n\t\tnext;\n\t}else result"
    },
    "searchUrl": "/search.php?q={{key}}&p={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "//2025.1.7by.◎辞晨◎",
    "bookSourceGroup": "🎨漫画,🎉 优选",
    "bookSourceName": "吉站漫画（优+）",
    "bookSourceType": 2,
    "bookSourceUrl": "https://manhuafree.com/",
    "customButton": false,
    "customOrder": 417,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\n\tpush(\"全部🌊分类\", null, 1, 1);\n\tarList = [[\"全部🌊类型\",\"/manga\"],[\"人气🌊推荐\",\"/hots\"],[\"热门🌊推荐\",\"/dayup\"],[\"最新🌊上架\",\"/newss\"]];\narList.map(([title, uri]) => {\n  let url = `${uri}<,/page/{{page+1}}>`;\n  push(title, url, 1, 0.35);\n  })\n\t  xrList = [[\"全部\",\"\"],[\"韩漫\",\"-genre/kr\"],[\"热门漫画\",\"-genre/hots\"],[\"国漫\",\"-genre/cn\"],[\"其他\",\"-genre/qita\"],[\"日漫\",\"-genre/jp\"],[\"欧美\",\"-genre/ou-mei\"],[\"复仇\",\"-tag/fuchou\"],[\"古风\",\"-tag/gufeng\"],[\"奇幻\",\"-tag/qihuan\"],[\"逆袭\",\"-tag/nixi\"],[\"异能\",\"-tag/yineng\"],[\"宅向\",\"-tag/zhaixiang\"],[\"穿越\",\"-tag/chuanyue\"],[\"热血\",\"-tag/rexue\"],[\"纯爱\",\"-tag/chunai\"],[\"系统\",\"-tag/xitong\"],[\"重生\",\"-tag/zhongsheng\"],[\"冒险\",\"-tag/maoxian\"],[\"灵异\",\"-tag/lingyi\"],[\"大女主\",\"-tag/danvzhu\"],[\"剧情\",\"-tag/juqing\"],[\"恋爱\",\"-tag/lianai\"],[\"玄幻\",\"-tag/xuanhuan\"],[\"女神\",\"-tag/nvshen\"],[\"科幻\",\"-tag/kehuan\"],[\"魔幻\",\"-tag/mohuan\"],[\"推理\",\"-tag/tuili\"],[\"猎奇\",\"-tag/lieqi\"],[\"治愈\",\"-tag/zhiyu\"],[\"都市\",\"-tag/doushi\"],[\"异形\",\"-tag/yixing\"],[\"末日\",\"-tag/qingchun\"],[\"嫌疑\",\"-tag/xuanyi\"],[\"修仙\",\"-tag/xiuxian\"],[\"战斗\",\"-tag/zhandou\"]];\n  xrList.map(([tag, uro]) => {\n    url = `/manga${uro}<,/page/{{page+1}}>`;\n    push(tag, url, 1, 0.25);\n  });\n//java.log(JSON.stringify(sort))\nJSON.stringify(sort)",
    "header": "{\n  'User-Agent': \"Mozilla/5.0 (Linux; Android 15; V2304A Build/AP3A.240905.015.A2; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/126.0.6478.71 Mobile Safari/537.36\",\n  'sec-ch-ua-platform': \"\\\"Android\\\"\",\n  'origin': \"https://manhuafree.com/\",\n  'x-requested-with': \"cn.mujiankeji.mbrowser\",\n  'referer': \"https://manhuafree.com/\",\n  'accept-language': \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"\n}",
    "lastUpdateTime": 1759429634880,
    "respondTime": 27053,
    "ruleBookInfo": {
      "author": ".pb-2.0@text##编剧:|作画:",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": ".text-medium.0@text",
      "kind": ".py-1.2@a@text",
      "lastChapter": ".italic.0@text",
      "name": "h1@textNodes",
      "tocUrl": "<js>\nlet p = result.match(/data-mid\\=\\\"(.*?)\\\"/);\nif (p) {\n  // java.log(p[1])\n  java.put('bi', p[1]);\n  url = \"https://api-get-v2.mgsearcher.com/api/manga/get?mid=\" + p[1] + \"&mode=all\";\n}\nurl;\n</js>\n"
    },
    "ruleContent": {
      "content": "$.data.info.images.images[*]url\n<js>\n//java.log(result);\nlet newResult = result.split(\"\\n\").map(x => \"https://f40-1-4.g-mh.online\" + x);\nlet headers = JSON.stringify({\"headers\":{\"Referer\":baseUrl}});\nnewResult.map(x => `<img src=\"${x},${headers}\">`).join(\"\\n\");\n</js>",
      "imageStyle": "FULL",
      "replaceRegex": "##.*base64.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": ".pb-2",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "name": "h3@text"
    },
    "ruleToc": {
      "chapterList": "$..chapters[*]@put:{bid:$.data.id}",
      "chapterName": "$..title",
      "chapterUrl": "https://api-get-v2.mgsearcher.com/api/chapter/getinfo?m=@get:{bid}&c={{$..id}}",
      "updateTime": "$..updatedAt"
    },
    "searchUrl": "/s/{{key}}?page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "文墨中文",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.imaxreader.info#",
    "customButton": false,
    "customOrder": 418,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"🍁男频🍁\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"玄幻\",\"url\":\"/sort/xuanhuan/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"奇幻\",\"url\":\"/sort/qihuan/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"武侠\",\"url\":\"/sort/wuxia/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"仙侠\",\"url\":\"/sort/xianxia/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"都市\",\"url\":\"/sort/dushi/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"历史\",\"url\":\"/sort/lishi/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"军事\",\"url\":\"/sort/junshi/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"游戏\",\"url\":\"/sort/youxi/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"竞技\",\"url\":\"/sort/jingji/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"科幻\",\"url\":\"/sort/kehuan/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"灵异\",\"url\":\"/sort/lingyi/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"其它\",\"url\":\"/sort/qita/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"🌸女频🌸\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"总裁\",\"url\":\"/sort/zongcai/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"穿越\",\"url\":\"/sort/chongsheng/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"古典\",\"url\":\"/sort/gudian/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"宫斗\",\"url\":\"/sort/gongdou/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"现言\",\"url\":\"/sort/dushi/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"仙侠\",\"url\":\"/sort/xianxiaxuanhuan/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"青春\",\"url\":\"/sort/qingchun/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"游戏\",\"url\":\"/sort/game/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"灵异\",\"url\":\"/sort/kehuanlingyi/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"耽美\",\"url\":\"/sort/danmei/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"女尊\",\"url\":\"/sort/nvzun/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"其它\",\"url\":\"/sort/other/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"🔥排行榜🔥\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"风云榜\",\"url\":\"/top/baidu/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"总点击\",\"url\":\"/top/allvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"月点击\",\"url\":\"/top/monthvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"周点击\",\"url\":\"/top/weekvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"日点击\",\"url\":\"/top/dayvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"推荐数\",\"url\":\"/top/vote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"收藏数\",\"url\":\"/top/mark/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"下载数\",\"url\":\"/top/down/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"评论数\",\"url\":\"/top/comment/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"评分\",\"url\":\"/top/star_score/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"入库时间\",\"url\":\"/top/postdate/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}\n]",
    "lastUpdateTime": 1753678793660,
    "respondTime": 3878,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "\n{{@@.count@tag.li.1:2:3:5:6:7:9:-3@text}}\n☁️  更新时间：\n{{@@[property$=update_time]@content##\\s.*}}\n👻  简介：\n{{@@[property$=description]@content}}##(^|[。！？……；]+[”」）】]?)##$1<br>",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "text.目录@href",
      "wordCount": ".count span.-2@text"
    },
    "ruleContent": {
      "content": ".size16@tag.p@html##本章未完.*|正在手打.*|{{\"《\"+book.name+\"》\"}}|.*第.*章.*|.*牢记网址.*|转码失败.*|\\(本章完\\)",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {
      "author": "span.1@text||td.2@text",
      "bookList": "#sitebox dl||.booklists@tag.tbody@tag.tr",
      "bookUrl": "a@href",
      "coverUrl": "img@_src",
      "intro": ".name@text",
      "kind": "span.0@text",
      "lastChapter": "span.-1@text",
      "name": "h3 a@text||td.1@tag.a.0@text"
    },
    "ruleSearch": {
      "author": ".mr30 a.0@text",
      "bookList": ".pt-rank-detail",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "kind": ".color7 a.1@text",
      "lastChapter": ".mr20@text",
      "name": ".mr60 a@text"
    },
    "ruleToc": {
      "chapterList": "#readerlists li a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "{{source.getKey().match(/([^\\#]+)\\#/)[1]}}/search/result.html?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "作者🍟",
    "bookSourceGroup": "🎨漫画,🎉 优选",
    "bookSourceName": "包子漫画（优+）",
    "bookSourceType": 2,
    "bookSourceUrl": "https://cn.bzmanga.com",
    "customButton": false,
    "customOrder": 419,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "最新上架::/list/new\n全部::/classify\n国漫::/classify?region=cn&page={{page}}\n中国::/classify?region=cn&page={{page}}\n日本::/classify?region=jp&page={{page}}\n欧美::/classify?region=en&page={{page}}\n连载中::/classify?state=serial&page={{page}}\n已完结::/classify?state=pub&page={{page}}\n都市::/classify?type=dushi&page={{page}}\n冒险::/classify?type=mouxian&page={{page}}\n热血::/classify?type=rexie&page={{page}}\n爱情::/classify?type=aiqing&page={{page}}\n恋爱::/classify?type=lianai&page={{page}}\n耽美::/classify?type=danmei&page={{page}}\n武侠::/classify?type=wuxia&page={{page}}\n格斗::/classify?type=gedou&page={{page}}\n科幻::/classify?type=kehuan&page={{page}}\n魔幻::/classify?type=mohuan&page={{page}}\n侦探::/classify?type=zhentan&page={{page}}\n推理::/classify?type=tuili&page={{page}}\n玄幻::/classify?type=xuanhuan&page={{page}}\n日常::/classify?type=richang&page={{page}}\n生活::/classify?type=shenghuo&page={{page}}\n搞笑::/classify?type=gaoxiao&page={{page}}\n校园::/classify?type=xiaoyuan&page={{page}}\n奇幻::/classify?type=qihuan&page={{page}}",
    "lastUpdateTime": 1759430671956,
    "respondTime": 6102,
    "ruleBookInfo": {
      "author": "class.comics-detail__author@text",
      "coverUrl": "tag.amp-img.0@src##.w=.*##",
      "intro": "class.comics-detail__desc@text",
      "kind": "class.tag-list@text## ##,",
      "lastChapter": "class.supporting-text@tag.a@text",
      "name": "class.comics-detail__title@text",
      "tocUrl": "class.comics-chapters@tag.span@href"
    },
    "ruleContent": {
      "content": "class.comic-contain@img@html##cdn##mh",
      "nextContentUrl": "class.next_chapter@text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.tags@text",
      "bookList": "class.comics-card",
      "bookUrl": "tag.a@href",
      "checkKeyWord": "非人哉",
      "coverUrl": "tag.amp-img.0@src##.w=.*##",
      "kind": "class.tabs cls@text",
      "name": "class.comics-card__title@text"
    },
    "ruleToc": {
      "chapterList": "class.pure-g[3,4]@class.comics-chapters__item||class.pure-g.2@class.comics-chapters__item[-1:0]",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href##.*comic_id=(.*?)&.*chapter_slot=(.*)##https://cn.dzmanga.com/comic/chapter/$1/0_$2.html",
      "preUpdateJs": "book.canUpdate=false"
    },
    "searchUrl": "/search?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎨漫画,🎉 优选",
    "bookSourceName": "全免漫画（优）",
    "bookSourceType": 2,
    "bookSourceUrl": "https://api-cdn.kaimanhua.com/",
    "customButton": false,
    "customOrder": 420,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\nresult=\"\";\n   f=[\"热血\",\"机战\",\"运动\",\"推理\",\"冒险\",\"耿美\",\"百合\",\"搞笑\",\"战争\",\"神魔\",\"忍者\",\"竞技\",\"悬疑\",\"社会\",\"恋爱\",\"宠物\",\"吸血\",\"萝莉\",\"后宫\",\"御姐\",\"霸总\",\"玄幻\",\"古风\",\"历史\",\"漫改\",\"游戏\",\"穿越\",\"恐怖\",\"真人\",\"科幻\",\"防疫\",\"都市\",\"武侠\",\"修真\",\"生活\",\"动作\"];    \np=[\"rexue\",\"jizhan\",\"yundong\",\"tuili\",\"maoxian\",\"liaomei\",\"baihe\",\"gaoxiao\",\"zhanzhen\",\"shenmo\",\"renzhe\",\"jingji\",\"xuanyi\",\"shehui\",\"lianai\",\"chongwu\",\"xixue\",\"luoli\",\"hougong\",\"yujie\",\"bazong\",\"xuanhuan\",\"gufeng\",\"lishi\",\"mangai\",\"youxi\",\"chuanyue\",\"kongbu\",\"zhenren\",\"kehuan\",\"fangyi\",\"dushi\",\"wuxia\",\"xiuzhen\",\"shenghuo\",\"dongzuo\"];\na=\"::https://api-cdn.kaimanhua.com/comic-api/v1/comic/getsortlist?status_id=0&comic_sort=\";\nb=\"&human_type=0&orderby=date&pagesize=30&page={{page}}&young_mode=0&client-type=android&productname=qmmh&client-channel=xiaomi&platformname=android&client-version=1.4.8\";\n\nfor(i in f){\n\tresult=result+f[i]+a+p[i]+b+\"\\n\";\n\t}\n</js>",
    "lastUpdateTime": 1765997984586,
    "respondTime": 2131,
    "ruleBookInfo": {
      "author": "$.author_name",
      "coverUrl": "$.cover_img_34",
      "init": "<js>\nresult=String(java.getString(\"$.data\")).replace(/arsadata/,\"\");\njava.aesBase64DecodeToString(result,\"4548ded8c9e02690\",\"AES/CBC/PKCS5Padding\",\"1992360ee9bc4f8f\");\n</js>",
      "intro": "<br>\n🏅 评分：{{Math.round(java.getString('$.avgscore'))/10}}分\n🕰 更新：{{String(java.timeFormat(java.getString('$.update_time'))).replace(/\\//g,\"-\").replace(/\\s/g,\"🔸\")}}\n🎗 标签：{{result=String(java.getString('$.comic_taglist')).replace(/\\n/g,\",\")}}\n📂 简介：{{$.comic_desc}}",
      "kind": "{{result=String(java.getString('$.sort_typelist')).replace(/\\{|\\}|\\w*=/g,\"\").replace(/\\n/g,\",\")}}",
      "lastChapter": "$.lastchapter_title",
      "name": "$.comic_name@put:{cid:$.comic_id}"
    },
    "ruleContent": {
      "content": "<js>\nresult=String(java.getString(\"$.data\")).replace(/arsadata/,\"\");\nu=java.aesBase64DecodeToString(result,\"4548ded8c9e02690\",\"AES/CBC/PKCS5Padding\",\"1992360ee9bc4f8f\");\nimg=u.match(/\\[(.*)\\]/)[1].split(\",\").map(x=>'\\n<img src='+x+'>').join(\"\\n\")\n</js>"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.comic_author",
      "bookList": "$.data.data",
      "bookUrl": "@js:\nt=\"/comic-api/v2/comic/getcomicdatacomic_id={{$.comic_id}}&client-type=android&productname=qmmh&client-channel=xiaomi&platformname=android&client-version=1.4.8erciyuan2020\";\nsign=java.md5Encode(t);\nb={\n\"method\": \"GET\",\n\"headers\": {\n\"User-Agent\": \"okhttp/4.9.1\",\n\"m-request-id\": sign\n}\n};\n\"https://api-cdn.kaimanhua.com/comic-api/v2/comic/getcomicdata?comic_id={{$.comic_id}}&client-type=android&productname=qmmh&client-channel=xiaomi&platformname=android&client-version=1.4.8,\"+JSON.stringify(b);",
      "coverUrl": "$.cover_img",
      "intro": "$.cartoon_desc",
      "kind": "{{result=String(java.getString('$.comic_type')).replace(/,|\\w*/g,\"\").replace(/\\|/g,\",\")}}\n{{String(java.timeFormat(java.getString('$.update_time'))).replace(/\\//g,\"-\").replace(/\\s.*/g,\"\")}}",
      "lastChapter": "$.last_chapter_name",
      "name": "$.comic_name"
    },
    "ruleToc": {
      "chapterList": "<js>\nresult=String(java.getString(\"$.data\")).replace(/arsadata/,\"\");\njava.aesBase64DecodeToString(result,\"4548ded8c9e02690\",\"AES/CBC/PKCS5Padding\",\"1992360ee9bc4f8f\");\n</js>\n$.chapters[*]",
      "chapterName": "$.chapter_name",
      "chapterUrl": "@js:\ncid='@get:{cid}'\nchapter_id='{{$.chapter_id}}'\nt=\"/comic-api/v2/comic/getchapterdatacomic_id=\"+cid+\"&chapter_id=\"+chapter_id+\"&quality=middle&client-type=android&productname=qmmh&client-channel=xiaomi&platformname=android&client-version=1.4.8erciyuan2020\";\nsign=java.md5Encode(t);\nb={\n\"method\": \"GET\",\n\"headers\": {\n\"User-Agent\": \"okhttp/4.9.1\",\n\"access-token\":\"v1_090fNTIt4Omg86B7LUPcqWRTkvW8JjjLYXTxnm01BiXN8SgniETjucYezOrjZoOopFGr02Fj12RREysE4eHukTCc/LuyeIHzFGMayAgLGaSF8+jMMwrnDdTuYdFk34z7DZf+Zy+VHtjFS0Uy6n6Vyr/5GuJy6FDcbCoVBCjdbFneHjV38UwHjL6AwauUMFfa0f3uSEqGWZG6xn9+OpAn6GGRWHaypicXswr450DO29FcuqP7pHCSldVJtIzOv/Uc\",\n\"m-request-id\": sign\n}\n};\n\"https://api-cdn.kaimanhua.com/comic-api/v2/comic/getchapterdata?comic_id=@get:{cid}&chapter_id={{$.chapter_id}}&quality=middle&client-type=android&productname=qmmh&client-channel=xiaomi&platformname=android&client-version=1.4.8,\"+JSON.stringify(b);"
    },
    "searchUrl": "https://api-cdn.kaimanhua.com/comic-api/v1/comic/getsortlist?search_key={{key}}&orderby=shoucang&page={{page}}&pagesize=20&young_mode=0&client-type=android&productname=qmmh&client-channel=xiaomi&platformname=android&client-version=1.4.8",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎃笔趣阁🎃#77",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.ddbiquge.tw#🎃",
    "customButton": false,
    "customOrder": 421,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\n\tpush(\"全部🏷分类\",null,1,1)\narList=[[\"玄幻\",\"xuanhuan\"],[\"仙侠\",\"xianxia\"],[\"都市\",\"dushi\"],[\"历史\",\"lishi\"],[\"网游\",\"wangyou\"],[\"科幻\",\"kehuan\"],[\"灵异\",\"lingyi\"],[\"言情\",\"yanqing\"],[\"其他\",\"qita\"]]\narList.map(([title,uri],index)=>{\n\turl=`/sort${index+1}/{{page}}/`;\n\tpush(title,url,1,0.25)\n\t});\n//java.log(JSON.stringify(sort))\nJSON.stringify(sort)",
    "header": "{'User-Agent':'Mozilla/5.0 (Linux; Android 14; V2304A; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/123.0.6312.118 Mobile Safari/537.36',\n\"Referer\":\"https://m.ddbiquge.tw/\"}",
    "lastUpdateTime": 0,
    "respondTime": 17884,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "text.章节目录@href",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "#chaptercontent>p@textNodes##.*笔趣阁.*|.*一秒记住.*|.*本章未完.*|.*阅读模式.*|.*小说推荐：《[\\s\\S]*\n<js>\n// 常量定义\nconst BASE64_CHARS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\n\n// 解码UTF-8编码的字符串\nfunction decodeUtf8(str) {\n  let result = '';\n  for (let i = 0; i < str.length; i++) {\n    let charCode = str.charCodeAt(i);\n    if (charCode <= 0x7f) {\n      result += String.fromCharCode(charCode);\n    } else if (charCode <= 0xdf) {\n      let nextCharCode = str.charCodeAt(++i);\n      result += String.fromCharCode((charCode & 0x1f) << 0x6 | nextCharCode & 0x3f);\n    } else {\n      let nextCharCode1 = str.charCodeAt(++i);\n      let nextCharCode2 = str.charCodeAt(++i);\n      result += String.fromCharCode((charCode & 0xf) << 0xc | (nextCharCode1 & 0x3f) << 0x6 | nextCharCode2 & 0x3f);\n    }\n  }\n  return result;\n}\n\n// 解码Base64编码的字符串\nfunction decodeBase64(str) {\n  let result = '';\n  let i = 0;\n  while (i < str.length) {\n    let charCode1 = BASE64_CHARS.indexOf(str.charAt(i++));\n    let charCode2 = BASE64_CHARS.indexOf(str.charAt(i++));\n    let charCode3 = BASE64_CHARS.indexOf(str.charAt(i++));\n    let charCode4 = BASE64_CHARS.indexOf(str.charAt(i++));\n    \n    let byte1 = (charCode1 << 2) | (charCode2 >> 4);\n    let byte2 = ((charCode2 & 0xf) << 4) | (charCode3 >> 2);\n    let byte3 = ((charCode3 & 0x3) << 6) | charCode4;\n    \n    result += String.fromCharCode(byte1);\n    if (charCode3 !== 64) { // '='\n      result += String.fromCharCode(byte2);\n    }\n    if (charCode4 !== 64) { // '='\n      result += String.fromCharCode(byte3);\n    }\n  }\n  return decodeUtf8(result);\n}\n\n// 将特定格式的字符串解码并显示在页面元素中\nfunction DecodedText(encodedStr) {\n  const startIdx = parseInt(encodedStr.slice(4, 6), 10) + 6;\n  const endIdx = encodedStr.length - parseInt(encodedStr.slice(4, 6), 10);\n  const substring = encodedStr.slice(startIdx, endIdx);\n  \n  const base64Str = substring.replace(/_/g, '8L3A+').replace(/-/g, 'PHA+');\n  return decodeBase64(base64Str)\n}\neval(String(src.match(/var c=\"[^\"]+\"/)))\n// 使用示例\n// 假设有一个变量c包含加密的字符串\n// 这里应该是加密字符串的实际值\nresult=result+DecodedText(c);\n</js>",
      "nextContentUrl": "<js>\np=java.getString(\"h1@text\").match(/\\/\\s*(\\d+)/)\np=p?p[1]:1\npageSum=parseInt(p)\nburl=String(baseUrl)\nArray.from({length:pageSum-1},(_,i)=>{return burl.replace(/^([^_]+?)\\.html/,`$1_${i+2}.html`)})\n</js>",
      "replaceRegex": "##.*顶点笔趣阁.*"
    },
    "ruleExplore": {
      "author": "a.-1@text",
      "bookList": ".content@dl",
      "bookUrl": "a.1@href",
      "coverUrl": "img@data-src",
      "intro": "dd.0@text",
      "kind": "span.0@text",
      "name": "a.1@text",
      "wordCount": "span.-1@text"
    },
    "ruleSearch": {
      "author": "dd.1@text",
      "bookList": ".content@dl",
      "bookUrl": "a.1@href",
      "coverUrl": "img@data-src",
      "intro": "dd.0@text",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": "#clist@li",
      "chapterName": "a@text@js:result\n.replace(/^\\d+\\.\\s/,' ')",
      "chapterUrl": "##onclick\\=\\\"location\\.href\\=\\'(.*?)\\'\\\"##$1###",
      "isPay": "",
      "nextTocUrl": "<js>\np=java.getString(\"option.-1@value\").match(/\\/\\s*(\\d+)/);\n//java.log(p[1]);\np=p?p[1]:1\npageSum=parseInt(p)\nburl=String(baseUrl)\nArray.from({length:pageSum-1},(_,i)=>{return burl.replace(/^(.*?)\\/\\d\\//,`$1/${i+2}/`)})\n</js>"
    },
    "searchUrl": "https://m.ddbiquge.tw/search/?searchkey={{key}}&order=0&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画,🎉 优选",
    "bookSourceName": "网络漫画（优）",
    "bookSourceType": 2,
    "bookSourceUrl": "https://mm.sfacg.com",
    "customButton": false,
    "customOrder": 422,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "更新::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=-1\n热血::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=1\n校园::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=2\n推理::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=3\n机战::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=4\n冒险::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=5\n运动::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=6\n耽美::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=7\n搞笑::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=8\n科幻::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=9\n魔幻::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=10\n恐怖::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=11\n社会::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=12\n爱情::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=13\n武侠::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=14\n温情::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=15\nnull",
    "lastUpdateTime": 1765998802872,
    "loginUrl": "https://mm.sfacg.com/Login/",
    "respondTime": 1707,
    "ruleBookInfo": {
      "author": "class.book_Author@tag.li.0@text",
      "coverUrl": "@css:#page>div>ul>li:nth-child(2)>img@src",
      "intro": "class.book_bk_qs1.0@text",
      "kind": "@css:.book_info2>span@text",
      "name": "@css:.book_newtitle@text"
    },
    "ruleContent": {
      "content": "@js:\ncomicId=result.match(/var comicId = (\\d+)/)[1];\nchapterId=result.match(/var chapterId=(\\d+)/)[1];\nnv=result.match(/var nv = \"(.*?)\"/)[1];\nurl='https://mm.sfacg.com/ajax/Common.ashx?op=getPics&cid='+comicId+'&chapId='+chapterId+'&serial=ZP&path='+nv\n//java.ajax(url)\nresult=JSON.parse(java.ajax(url)).data\nresult.map(x=>'<img src=\\\"'+x+'\\\">').join(\"\\n\")",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.AuthorName@put:{cid:ComicID}",
      "bookList": "$.comics.*||$.data.*",
      "bookUrl": "@json:/b/{$.FolderName}",
      "coverUrl": "$.ComicCover",
      "kind": "$.TypeName",
      "lastChapter": "$.LastChapterTitle",
      "name": "$.ComicName"
    },
    "ruleToc": {
      "chapterList": "-@css:.comic_main_list>a",
      "chapterName": "text##VIP",
      "chapterUrl": "href",
      "isVip": "b@text"
    },
    "searchUrl": "https://mm.sfacg.com/ajax/Common.ashx?op=search,{\n  \"method\": \"POST\",\n  \"body\": \"keyword={{key}}\"\n}",
    "weight": 36
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "肉文屋#5",
    "bookSourceType": 0,
    "bookSourceUrl": "https://api.rouwenapp.com",
    "customButton": false,
    "customOrder": 423,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "都市言情::https://api.rouwenapp.com/reader/book/category/book?app_key=4037465544&page=<{{page}}>&cateId=14\n校园言情::https://api.rouwenapp.com/reader/book/category/book?app_key=4037465544&page=<{{page}}>&cateId=11\n穿越重生::https://api.rouwenapp.com/reader/book/category/book?app_key=4037465544&page=<{{page}}>&cateId=12\n综合其他::https://api.rouwenapp.com/reader/book/category/book?app_key=4037465544&page=<{{page}}>&cateId=7\n奇幻玄幻::https://api.rouwenapp.com/reader/book/category/book?app_key=4037465544&page=<{{page}}>&cateId=10\n百合::https://api.rouwenapp.com/reader/book/category/book?app_key=4037465544&page=<{{page}}>&cateId=8\n武侠仙侠::https://api.rouwenapp.com/reader/book/category/book?app_key=4037465544&page=<{{page}}>&cateId=5\n科幻异能::https://api.rouwenapp.com/reader/book/category/book?app_key=4037465544&page=<{{page}}>&cateId=13\n古代言情::https://api.rouwenapp.com/reader/book/category/book?app_key=4037465544&page=<{{page}}>&cateId=6\n同人::https://api.rouwenapp.com/reader/book/category/book?app_key=4037465544&page=<{{page}}>&cateId=3\n罗曼史::https://api.rouwenapp.com/reader/book/category/book?app_key=4037465544&page=<{{page}}>&cateId=4\n恐怖灵异::https://api.rouwenapp.com/reader/book/category/book?app_key=4037465544&page=<{{page}}>&cateId=1\n",
    "header": "{\n  \"User-Agent\" : \"okhttp\\/3.11.0\"\n}",
    "lastUpdateTime": 1787192019662,
    "respondTime": 5995,
    "ruleBookInfo": {
      "intro": "@JSon:$.data.intro",
      "tocUrl": "@JSon:https://api.rouwenapp.com/reader/book/chapter?bookId={$.data.id}&number=0"
    },
    "ruleContent": {
      "content": "class.novelcontent@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "@JSon:$.author",
      "bookList": "@JSon:$.data.*",
      "bookUrl": "@JSon:$.id@js:\"https://api.rouwenapp.com/reader/book/detail?bookId=\"+result",
      "coverUrl": "@JSon:$.cover",
      "lastChapter": "@JSon:$.last_update_chapter_name||$..intro",
      "name": "@JSon:$.title"
    },
    "ruleToc": {
      "chapterList": "@JSon:$.data.chapterList.*",
      "chapterName": "@JSon:$.title",
      "chapterUrl": "@JSon:$.contentUrl",
      "nextTocUrl": "https://api.rouwenapp.com/reader/book/chapter/next?chapterId={$.data.chapterId}"
    },
    "searchUrl": "https://api.rouwenapp.com/reader/book/search?app_key=4037465544&page=<{{page}}>&keyword={{key}}&bookSource=read52v2",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "海马书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.seahobook.com",
    "customButton": false,
    "customOrder": 424,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全部::/category/0/\n校园爱情::/category/513354828746826/\n杂谈::/category/511246254989381/\n情感::/category/511246255050824/\n奇幻::/category/511246259150918/\n鬼话::/category/511246255108166/\n耽美::/category/513354828742726/\n都会爱情::/category/513354828709957/\n同人::/category/513354828755013/\n舞文::/category/511246255022152/\n罗曼史::/category/513354828759112/\n百合::/category/513354828779592/\n古代爱情::/category/513354828898374/\n恐怖灵异::/category/530783210864712/\n惊悚推理::/category/530783210831944/\n都市::/category/530783210848328/\n科幻::/category/530783210836039/\n玄幻::/category/530783210819654/\n武侠仙侠::/category/530783210840133/\n同行::/category/511246255046726/\n军事::/category/511246255198278/\n历史::/category/511246255054919/\n历史::/category/530783210827847/\n网游::/category/530783210823752/\n战争/冒险::/category/530783210893382/\n商道::/category/511246256205896/\n温馨励志/成长疗愈::/category/528541636030533/\n文艺评论::/category/540987021865037/\n其它::/category/549893349994566/\n生活风格::/category/577084302225480/\n幽默/讽喻::/category/540987021889610/\n亲子共享::/category/577084302262346/\n人文科普::/category/577084302270534/\n军事战争/灾难冒险::/category/516509235929157/\n心灵养生::/category/543228597039173/\n影视::/category/549893349982278/",
    "lastUpdateTime": 1787303956779,
    "respondTime": 5994,
    "ruleBookInfo": {
      "coverUrl": "class.BGsectionOne-top-left@tag.img.0@src",
      "intro": "id.intro@tag.p@text",
      "kind": "tag.p.2@text##类别：",
      "tocUrl": "class.BGsectionOne-bottom@tag.li.1@tag.a.0@href"
    },
    "ruleContent": {
      "content": "@js:\nfunction d(a, b) {\n    b = java.md5Encode(b);\n    var d = b.substring(0, 16);\n    var e = b.substring(16);\n    return java.aesBase64DecodeToString(\n        a, \n        e, \n        \"AES/CBC/PKCS5Padding\", \n        d\n    );\n}\n\neval(result.match(/(d\\(\"[\\s\\S]+?\"\\))\\)/)[1]);"
    },
    "ruleExplore": {
      "author": "tag.a.2@text",
      "bookList": ".CGsectionTwo-right-content-unit",
      "bookUrl": "tag.a.0@href",
      "intro": "tag.p.-2@text",
      "kind": "tag.p.-1@text##最近更新",
      "name": "tag.a.0@text"
    },
    "ruleSearch": {
      "author": "tag.a.2@text",
      "bookList": ".SHsectionThree-middle@p",
      "bookUrl": "tag.a.1@href",
      "kind": "tag.a.0@text##小说推荐",
      "name": "tag.a.1@text"
    },
    "ruleToc": {
      "chapterList": "class.BCsectionTwo-top-chapter@li\n<js>\nlist = result.toArray();\ns = /originalOrder = .*?;/.test(src)?eval(src.match(/originalOrder = (.*?);/)[1]):result;\nl = [];\nif(/<li.*?\"\\d+\" .*?-[^\"]+=\"\\d+\">/.test(result)){\n\tnum = String(result).match(/<li.*?\"\\d+\" (.*?-[^\"]+)=\"\\d+\">/)[1];\n\tl = list.sort((a,b)=>a.attr(num)-b.attr(num));\n\t}else{\nfor(i in list){ l[s[i]] = list[i]};\n}\nl.join(\"\")\n</js>\ntag.a",
      "chapterName": "<js>\n//java.log(result)\ntry{\nresult = String(result);\n!/\\.html/.test(result)?result.match(/class=\"g\".*?=\"L2[a-zA-Z\\d\\+=\\/]+?\".*?=\"(.*?)\"/)[1]:java.getString(\"@@data-real||text\");\n}catch(e){\n\tresult = result.match(/class=\"g\".*?=\"(.*?)\".*?=\"L2[A-Za-z\\d\\+=\\/]+?\"/)[1]\n\t}\n</js>\n",
      "chapterUrl": "@href\n<js>\ntry{\nlet re = /class=\"g\".*?=\"(L2[A-Za-z\\d\\+=\\/]+)/;\nresult = /\\.html/.test(result)?result:java.base64Decode(String(src).match(re)[1])\n}catch(e){}\n</js>",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "https://www.seahobook.com/search/{{key}}/{{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画,🎉 优选",
    "bookSourceName": "包子漫画（优）",
    "bookSourceType": 2,
    "bookSourceUrl": "https://cn.baozimhcn.com",
    "customButton": false,
    "customOrder": 425,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\nvar sort = [];\nvar push = function(title, url, type1, type2) {\n    sort.push({\n        title: title,\n        url: url,\n        style: {\n            layout_flexGrow: type1,\n            layout_flexBasisPercent: type2\n        }\n    });\n};\n\nvar typeNames = [\"全部\", \"恋爱\", \"纯爱\", \"古风\", \"异能\", \"悬疑\", \"剧情\", \"科幻\", \"奇幻\", \"玄幻\", \"穿越\", \"冒险\", \"推理\", \"武侠\", \"格斗\", \"战争\", \"热血\", \"搞笑\", \"大女主\", \"都市\", \"总裁\", \"后宫\", \"日常\", \"韩漫\", \"少年\", \"其它\"];\nvar types = [\"all\",\"lianai\",\"chunai\",\"gufeng\",\"yineng\",\"xuanyi\",\"juqing\",\"kehuan\",\"qihuan\",\"xuanhuan\",\"chuanyue\",\"mouxian\",\"tuili\",\"wuxia\",\"gedou\",\"zhanzheng\",\"rexie\",\"gaoxiao\",\"danuzhu\",\"dushi\",\"zongcai\",\"hougong\",\"richang\",\"hanman\",\"shaonian\",\"qita\"];\n\ntypeNames.forEach(function(item, index) {\n    var url = \"https://cn.baozimhcn.com/api/bzmhq/amp_comic_list?type=\" + types[index] + \"&region=all&filter=&page={{page}}&limit=36&language=cn&__amp_source_origin=https%3A%2F%2Fcn.baozimhcn.com\";\n    push(item, url, 1, 0.25);\n});\nJSON.stringify(sort)\n</js>",
    "header": "@js:\nJSON.stringify({\n\"Accept-Language\": \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"\n})",
    "lastUpdateTime": 1759430460163,
    "respondTime": 4399,
    "ruleBookInfo": {
      "author": "class.comics-detail__author@text",
      "coverUrl": "tag.amp-img.0@src",
      "init": "<js>java.t2s(result)</js>",
      "intro": "class.comics-detail__desc overflow-hidden@text",
      "kind": "class.tag-list@text",
      "lastChapter": "class.comics-chapters__item.0@text",
      "name": "class.comics-detail__title@text",
      "tocUrl": "class.pure-u-1-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 comics-chapters@tag.a@harf@class.comics-chapters__item@text"
    },
    "ruleContent": {
      "content": "@js:\nlet n =java.getElements('class.comic-contain@amp-img')\nlet c=[];\n    Array.from(n).forEach(x=>{\n    c.push({\n    link:x.attr('data-src')\n})    \n}) \nvar imgTags = c.map(item => `<img src=\"${item.link}\">`).join('\\n');\n    imgTags;",
      "imageStyle": "FULL",
      "title": "class.title"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.items[*]",
      "bookUrl": "https://cn.baozimhcn.com/comic/{{$.comic_id}}",
      "coverUrl": "https://static-tw.baozimhcn.com/cover/{{$.topic_img}}",
      "kind": "$.type_names",
      "name": "$.name"
    },
    "ruleSearch": {
      "author": "class.tags text-truncate@text",
      "bookList": "class.comics-card pure-u-1-2 pure-u-sm-1-2 pure-u-md-1-4 pure-u-lg-1-6",
      "bookUrl": "class.comics-card pure-u-1-2 pure-u-sm-1-2 pure-u-md-1-4 pure-u-lg-1-6@tag.a@href",
      "coverUrl": "tag.amp-img.0@src",
      "kind": "class.tabs cls@text",
      "lastChapter": "class.comics-chapters__item.0@text",
      "name": "class.comics-card__title text-truncate@text"
    },
    "ruleToc": {
      "chapterList": "<js>java.t2s(result)</js>\nclass.pure-u-1-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 comics-chapters",
      "chapterName": "tag.span@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://cn.baozimhcn.com/search?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "//20231225By_遇知\n/*\n备用①：https://s.pjxhmy.com值得阅读\n备用②：https://s.klzdp.com\n备用③：https://s.mocaiys.com\n备用④：https://s.fjwhcbsh.com\n备用⑤：https://s.hngxt.cn\n备用⑥：https://s.4billion.tv书香之家\n备用⑦：https://s.mysignal.cn\n备用⑧：https://s.lhdqsb.cn/\n备用⑨：https://s.chuangke.tv小小阅读\n备用⑩：https://s.bzatgv.com\n备用⑪：https://s.ibbxtx.com\n备用⑫：https://s.lansheweb.com\nApp：\n值得阅读：\n\"com.ruffianhankin.meritreader\",\nhttps://zdydapp.com\n点点阅读： \"com.diandianbook.androidreading\",\n1：https://ddydapp.com\n2：https://xxydapps.com/ddyd/\n小小追书： \n\"com.xiaoxiaobook.zuiread\",\n1：https://xxzs.app\n2：http://zsdqapp.net/xxzs/\n小小阅读：\n\"com.xxyuedu.chasingbooks\",\nhttps://xxydapps.com/xxyd/\n天天追书：\n\"com.tiantianzhuishu.books\",\nhttps://ttzs123.com\n追书大师：\n\"com.zhuishudashi.read\",\n1：https://zsdsapps.com\n2：https://zsds.app\n3：https://zsdsapp6.com/zsds/\n追书大全：\n\"com.zshuall.fread\",\nhttps://zsdq6.com\n极速笔趣：\n\"com.kkmfxs.xsfmkkapp\",\nhttps://biqugejisuapp.com\n书香之家：\n\"com.shuxiangzhijia.xyz\",\n1：https://shuxiangzhijiaapp.com\n2：http://queww.top\n3：https://ttzsapp.com/sxzj/\n笔趣阁开心版：\n\"c\u0000o\u0000m\u0000.\u0000b\u0000q\u0000k\u0000k\u0000x\u0000b\u00002\u00000\u00002\u00003\u0000.\u0000r\u0000e\u0000a\u0000d\u0000.\u0000t\u0000t\u0000\u0000\u0000\"\nhttps://bqgkxb.com/\n*/\n//解密(by  尐哖 & landseer)\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n    Packages.java.lang,\n    Packages.javax.crypto.spec,\n    Packages.javax.crypto,\n    Packages.java.util,\n    Packages.java.io\n);\nwith(javaImport) {\n    function decode(str) {\n        data=java.base64DecodeToByteArray(str);\n        datas=Arrays.copyOfRange(data,16,data.length-16);\n        k=String(Arrays.copyOfRange(data, 0, 16));\n        k=java.digestHex(k,'sha-256');\n        ks=[];\n        length = k.length();\n        if (length % 2 == 1) {\n            length++;\n            k = \"0\" + k;\n        }\n        i = 0;\n        i2 = 0;\n        while (i < length) {\n            i3 = i + 2;\nks[i2] =intToByte( Integer.parseInt(k.substring(i, i3),16));\n            i2++;\n            i = i3;\n        }\n        i=String(Arrays.copyOfRange(data,data.length-16, data.length));\n         v=java.md5Encode(i);\n        bytes = i.getBytes();\n        bytes2 = v.getBytes();\n        ivs=[];\n        for (i = 0; i < 16; i++) {\n            ivs[i] = (bytes2[i] ^ bytes[i]) ^ (-1); \n        }\n       key = SecretKeySpec(ks, \"AES\");  \n       iv = IvParameterSpec(ivs);\n        var chipher = Cipher.getInstance(\"AES/CBC/PKCS5Padding\");\n        chipher.init(2, key, iv);\n        return String(chipher.doFinal(datas));\n    }\n}\nfunction intToByte(i) {\n        var b = i & 0xFF;\n        var c = 0;\n        if (b >= 128) {\n            c = b % 128;\n            c = -1 * (128 - c);\n        } else {\n            c = b;\n        }\n        return c;\n    }",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "小小阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "https://s.mysignal.cn",
    "customButton": false,
    "customOrder": 426,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\nburl=source.getKey().replace('//s','//book');\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\n\t\n\tpush(\"❤推荐\", null, 1, 1);\ntj = \t[\"每日优选\",\"高分好书\",\"真香新书\",\"爆肝书单\",\"宝藏好书\",\"猜你喜欢\"];\n\ttj.map((title,type)=>{\n\turl = burl + `/book_city/v7_more/index/1/20/${type+1}/{{page}}.html`\n\t\tpush(title, url, 1, 0.25);\t\t\t\t\t\t\t\t\t\t\n\t\t\t});\n\t\t\t\n\t\n\teval(String(source.bookSourceComment));\n\tfl_url = burl + \"/classify/v4/index.html\";\n\tfl_content = JSON.parse(java.ajax(fl_url)).data.content;\t\n  fl = JSON.parse(decode(fl_content));\n    \n\t[\n\t [\"❤男频-分类\",\"1\",fl.male],\n\t\t[\"❤女频-分类\",\"2\",fl.female],\n\t].map([title,gender,list]=>{\t\t\n\t\tpush(title, null, 1, 1);\n\t\t\tlist.map(($,index)=>{\t   \t    \n \t    \n \t    ltype_name = $.ltype_name;\n \t    ltype_id=$.ltype_id;\n \t    ltype_url = burl + `/classify/v4/all/${gender}/${ltype_id}/-1/-1/-1/{{page}}.html`; \t\t\t\t\t\t\t\t\t\t\n \t    push(\"@\"+ltype_name+\"@\", ltype_url, 1, 1);\n     \t\n     \tD=$.ltype_list;\n   \tD.map(($,index)=>{\t   \t     \t    \n   \t\t title = $.stype_name;\n     \tstype_id=$.stype_id;\n     \t\n     url = burl + `/classify/v4/all/${gender}/${ltype_id}/${stype_id}/-1/-1/{{page}}.html`; \t\t\t\t\t\t\t\t\t\t\t  \n     \tif(D.length > 3&&D.length!=4){\n\t\tif(index+1 <= D.length - D.length%3)\n\t\t\t {\tpush(title, url, 1, 0.25);}\n\t\t\t\telse{ push(title, url, 0, 0.29);}\n\t\t\t\t}\n\t\t\t\telse if(D.length == 4){ push(title, url, 1, 0.4);}\n\t\t\t\telse{ push(title, url, 1, 0.25);}\n        });  \n     });\n  });\n     \t\n     \t\nJSON.stringify(sort);",
    "header": "@js:\npackage = \"com.xxyuedu.chasingbooks\";\n//package = \"com.diandianbook.androidreading\";\n//package = \"com.zhuishudashi.read\";\n\ntime = Math.round(new Date()/1000);\nsign = java.md5Encode(package+1+time+\"vhjJVz1St6tK7!8n#B0MqRIuE2Dh7!C#\");\n\nJSON.stringify({\n\t\t\"pt\": 1,\n\t\t\"time\": time,\n\t\t\"sign\": sign,\n\t\t\"package\": package,\n\t\t\"User-Agent\": \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D167 Safari/9537.53_\"+package\n\t});",
    "lastUpdateTime": 1786759447964,
    "respondTime": 22404,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$.image",
      "init": "<js>\neval(String(source.bookSourceComment));\ninfo = JSON.parse(result).data.content;\nresult=JSON.parse(decode(info));\n\nsource_url = baseUrl.replace('/details/','/source/');\nsource_info = JSON.parse(java.ajax(source_url)).data.content;\n$ = JSON.parse(decode(source_info));\n\nv=String(book.getVariable(\"custom\"));\nx=v.match(/^\\d+$/)?v:0;\nx=parseInt(x)<$.length?x:0;\n\nresult.updated_at = $[x].updated_at;\nresult.last_chapter_name = $[x].last_chapter_name;\nresult.tocUrl = source.getKey().replace('//s','//catalog')+\"/\"+$[x].site_path;\nresult.image = source.getKey().replace('//s','//res') + '/'+result.image;\n\n\nif($.length>1){\n\t\ty = '\\n📌使用说明： 根据序号设置书籍变量来切换来源(默认0)\\n🎯当前源：序号🔺'+x+'🔻【'+$[x].site_name+'】'+(x==0?' (默认)':'');\nfor(i in $){\n\t\ty += '\\n❤序号🔺'+i+'🔻【'+$[i].site_name+'】 \\n选用率：'+$[i].choose+' \\n更新时间： '+$[i].updated_at+'\\n最新章节： '+$[i].last_chapter_name;\n\t}\nresult.remark += y\n}\n\n\nresult = JSON.stringify(result);\n</js>",
      "intro": "$.remark##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "{{$.ltype}}\n{{$.stype}}\n{{r=java.getString('$.status');\nif(r!=\"\") r=='1'?'完结':'连载';}}\n{{r=java.getString('$.score');\nr!=0.0?r+'分':\"\";}}\n{{$.updated_at## .*}}",
      "lastChapter": "$.last_chapter_name",
      "name": "$.name",
      "tocUrl": "$.tocUrl",
      "wordCount": "$.words_number"
    },
    "ruleContent": {
      "content": "$..content@js:java.aesBase64DecodeToString(result,\"Pxga!h*e4@T8xfOm\",\"AES/CBC/PKCS5Padding\",\"E&z!EHGLd$fli*8R\")"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.author",
      "bookList": "<js>\neval(String(source.bookSourceComment));\nresult = JSON.parse(result).data.content;\nresult=JSON.parse(decode(result));\nif(baseUrl.match(/\\?keyword=/)){\nif(result.book[0]==undefined){\nsourl = source.getKey()+\"/v1/lists.api?keyword=\"+java.get('key');\nresult = JSON.parse(java.ajax(sourl)).data;\t\n}\n}\t\nresult = JSON.stringify(result);\n</js>\n$.book[*]||$..lists[*]||$.[*]",
      "bookUrl": "{{source.getKey().replace('//s','//d')}}/book/details/v4/{{parseInt(java.getString('$.book_id')/1000)}}/{{$.book_id}}.html",
      "checkKeyWord": "深空彼岸",
      "coverUrl": "{{source.getKey().replace('//s','//res')}}/{{$.image}}",
      "intro": "$.remark",
      "kind": "{{$.ltype}}\n{{$.stype}}\n{{r=java.getString('$.status');\nif(r!=\"\") r=='1'?'完结':'连载';}}\n{{r=java.getString('$.score');\nr!=0.0?r+'分':\"\";}}",
      "name": "$.name",
      "wordCount": "$.words_number"
    },
    "ruleToc": {
      "chapterList": "$.data",
      "chapterName": "$.name@js:java.aesBase64DecodeToString(result,\"Pxga!h*e4@T8xfOm\",\"AES/CBC/PKCS5Padding\",\"E&z!EHGLd$fli*8R\")",
      "chapterUrl": "{{source.getKey().replace('//s','//chapter')}}/{{$.path}}",
      "preUpdateJs": "java.refreshTocUrl();",
      "updateTime": "{{java.timeFormatUTC(java.getString('$.updated_at')*1000,'yyyy-MM-dd',8)}}"
    },
    "searchUrl": "/v4/1/lists.api?keyword={{java.put('key',key)}}&form=1",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "看漫画",
    "bookSourceType": 2,
    "bookSourceUrl": "https://m.kanman.com",
    "concurrentRate": "5",
    "customButton": false,
    "customOrder": 427,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "冒险::/sort/maoxian.html\n神魔::/sort/shenmo.html\n漫改::/sort/mangai.html\n穿越::/sort/chuanyue.html\n热血::/sort/rexue.html\n搞笑::/sort/gaoxiao.html\n战争::/sort/zhanzhen.html\n悬疑::/sort/xuanyi.html\n恋爱::/sort/lianai.html\n萝莉::/sort/luoli.html\n御姐::/sort/yujie.html\n霸总::/sort/bazong.html\n玄幻::/sort/xuanhuan.html\n古风::/sort/gufeng.html\n历史::/sort/lishi.html\n游戏::/sort/youxi.html\n恐怖::/sort/kongbu.html\n科幻::/sort/kehuan.html\n都市::/sort/dushi.html\n武侠::/sort/wuxia.html\n动作::/sort/dongzuo.html\n欧美::/sort/oumei.html\n竞技::/sort/jingji.html\n推理::/sort/tuili.html\n忍者::/sort/renzhe.html\n社会::/sort/shehui.html\n宠物::/sort/chongwu.html\n吸血::/sort/xixue.html\n真人::/sort/zhenren.html\n完结::/sort/wanjie.html\n全彩::/sort/quancai.html\n精品::/sort/jingpin.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; Pixel 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\", \"Referer\": \"https://m.kanman.com/\", \"Accept\": \"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\", \"Accept-Language\": \"zh-CN,zh;q=0.9\"}",
    "lastUpdateTime": 1786691249957,
    "respondTime": 689,
    "ruleBookInfo": {
      "author": "@CSS:meta[property=\"og:novel:author\"]@content",
      "coverUrl": "@CSS:meta[property=\"og:image\"]@content##^//##https://",
      "intro": "@CSS:meta[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "@CSS:.comic-update-status@text##.*最后更新于\\d{4}-\\d{2}-\\d{2} ",
      "name": "@CSS:meta[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "<js>\nvar s = String(result);\nvar out = s;\nvar m = 'chapter_img_list:[\"';\nvar i = s.indexOf(m);\nif (i > -1) {\n    var j = s.indexOf('\"]', i + m.length);\n    if (j > -1) {\n        var t = s.substring(i + m.length, j);\n        var urls = t.split('\",\"');\n        var imgs = [];\n        for (var k = 0; k < urls.length; k++) {\n            imgs.push('<img src=\"' + urls[k] + '\">');\n        }\n        out = imgs.join(\"\\n\");\n    }\n}\nout;\n</js>",
      "imageStyle": "FULL"
    },
    "ruleExplore": {
      "bookList": "@CSS:#js_comicSortList>li",
      "bookUrl": "@CSS:a@href",
      "coverUrl": "@CSS:.thumbnail img@data-src##^//##https://",
      "lastChapter": "@CSS:.chapter@text",
      "name": "@CSS:.title@text"
    },
    "ruleSearch": {
      "author": "$.cartoon_author_list_name",
      "bookList": "<js>\nvar keyMatch = baseUrl.match(/keyword=([^&]+)/);\nvar key = keyMatch ? decodeURIComponent(keyMatch[1]) : \"\";\nvar data = JSON.parse(result);\nvar list = data.data || [];\nvar filtered = [];\nfor (var i = 0; i < list.length; i++) {\n    var name = list[i].comic_name || \"\";\n    var author = list[i].cartoon_author_list_name || \"\";\n    if (name.indexOf(key) > -1 || author.indexOf(key) > -1) {\n        filtered.push(list[i]);\n    }\n}\nJSON.stringify(filtered);\n</js>\n$.[*]",
      "bookUrl": "https://m.kanman.com/{{$.comic_id}}/",
      "coverUrl": "https://image.yqmh.com/mh/{{$.comic_id}}.jpg",
      "intro": "$.comic_feature",
      "kind": "$.sort_typelist",
      "lastChapter": "$.latest_cartoon_topic_name",
      "name": "$.comic_name"
    },
    "ruleToc": {
      "chapterList": "@CSS:#js_chapter_list li",
      "chapterName": "@CSS:a@title",
      "chapterUrl": "@CSS:a@href"
    },
    "searchUrl": "/api/getComicList/?keyword={{key}}",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "️爱看小说️",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.2kk.la#",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 428,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1734984469427,
    "respondTime": 3582,
    "ruleBookInfo": {
      "author": "p.author@text",
      "coverUrl": ".synopsisArea_detail img@src",
      "intro": "p.review@text",
      "kind": ".synopsisArea_detail p.1:2:3@text\n##类别：|状态：|更新：",
      "lastChapter": ".str-over-dot a@text",
      "name": "span.title@text",
      "tocUrl": "text.完整目录@href"
    },
    "ruleContent": {
      "content": "#chaptercontent>p@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##（本章未完.*继续阅读）|{{chapter.title}}| \\(第.+页\\)"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "p.1@text",
      "bookList": ".hot_sale",
      "bookUrl": "a@href",
      "checkKeyWord": "剑来",
      "coverUrl": "img@data-original",
      "intro": "p.2@text##简介：",
      "kind": "0",
      "name": "p.0@text"
    },
    "ruleToc": {
      "chapterList": "#chapterlist p!0@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/search.php,{\n  \"body\": \"searchkey={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎨漫画,🎉 优选",
    "bookSourceName": "爱看漫画（优）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.kanman.com#",
    "customButton": false,
    "customOrder": 429,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "人气::https://m.kanman.com/api/getsortlist/?comic_sort=&orderby=click&search_type=&search_key=&page={{page}}&size=48\n更新::https://m.kanman.com/api/getsortlist/?comic_sort=&orderby=date&search_type=&search_key=&page={{page}}&size=48\n评分::https://m.kanman.com/api/getsortlist/?comic_sort=&orderby=score&search_type=&search_key=&page={{page}}&size=48\n收藏::https://m.kanman.com/api/getsortlist/?comic_sort=&orderby=shoucang&search_type=&search_key=&page={{page}}&size=48\n热血::https://m.kanman.com/api/getsortlist/?comic_sort=rexue&orderby=&search_type=&search_key=&page={{page}}&size=48\n机战::https://m.kanman.com/api/getsortlist/?comic_sort=jizhan&orderby=&search_type=&search_key=&page={{page}}&size=48\n运动::https://m.kanman.com/api/getsortlist/?comic_sort=yundong&orderby=&search_type=&search_key=&page={{page}}&size=48\n推理::https://m.kanman.com/api/getsortlist/?comic_sort=tuili&orderby=&search_type=&search_key=&page={{page}}&size=48\n冒险::https://m.kanman.com/api/getsortlist/?comic_sort=maoxian&orderby=&search_type=&search_key=&page={{page}}&size=48\n搞笑::https://m.kanman.com/api/getsortlist/?comic_sort=gaoxiao&orderby=&search_type=&search_key=&page={{page}}&size=48\n战争::https://m.kanman.com/api/getsortlist/?comic_sort=zhanzhen&orderby=&search_type=&search_key=&page={{page}}&size=48\n神魔::https://m.kanman.com/api/getsortlist/?comic_sort=shenmo&orderby=&search_type=&search_key=&page={{page}}&size=48\n忍者::https://m.kanman.com/api/getsortlist/?comic_sort=renzhe&orderby=&search_type=&search_key=&page={{page}}&size=48\n竞技::https://m.kanman.com/api/getsortlist/?comic_sort=jingji&orderby=&search_type=&search_key=&page={{page}}&size=48\n悬疑::https://m.kanman.com/api/getsortlist/?comic_sort=xuanyi&orderby=&search_type=&search_key=&page={{page}}&size=48\n社会::https://m.kanman.com/api/getsortlist/?comic_sort=shehui&orderby=&search_type=&search_key=&page={{page}}&size=48\n恋爱::https://m.kanman.com/api/getsortlist/?comic_sort=lianai&orderby=&search_type=&search_key=&page={{page}}&size=48\n宠物::https://m.kanman.com/api/getsortlist/?comic_sort=chongwu&orderby=&search_type=&search_key=&page={{page}}&size=48\n吸血::https://m.kanman.com/api/getsortlist/?comic_sort=xixue&orderby=&search_type=&search_key=&page={{page}}&size=48\n萝莉::https://m.kanman.com/api/getsortlist/?comic_sort=luoli&orderby=&search_type=&search_key=&page={{page}}&size=48\n后宫::https://m.kanman.com/api/getsortlist/?comic_sort=hougong&orderby=&search_type=&search_key=&page={{page}}&size=48\n御姐::https://m.kanman.com/api/getsortlist/?comic_sort=yujie&orderby=&search_type=&search_key=&page={{page}}&size=48\n霸总::https://m.kanman.com/api/getsortlist/?comic_sort=bazong&orderby=&search_type=&search_key=&page={{page}}&size=48\n玄幻::https://m.kanman.com/api/getsortlist/?comic_sort=xuanhuan&orderby=&search_type=&search_key=&page={{page}}&size=48\n古风::https://m.kanman.com/api/getsortlist/?comic_sort=gufeng&orderby=&search_type=&search_key=&page={{page}}&size=48\n历史::https://m.kanman.com/api/getsortlist/?comic_sort=lishi&orderby=&search_type=&search_key=&page={{page}}&size=48\n漫改::https://m.kanman.com/api/getsortlist/?comic_sort=mangai&orderby=&search_type=&search_key=&page={{page}}&size=48\n游戏::https://m.kanman.com/api/getsortlist/?comic_sort=youxi&orderby=&search_type=&search_key=&page={{page}}&size=48\n穿越::https://m.kanman.com/api/getsortlist/?comic_sort=chuanyue&orderby=&search_type=&search_key=&page={{page}}&size=48\n恐怖::https://m.kanman.com/api/getsortlist/?comic_sort=kongbu&orderby=&search_type=&search_key=&page={{page}}&size=48\n真人::https://m.kanman.com/api/getsortlist/?comic_sort=zhenren&orderby=&search_type=&search_key=&page={{page}}&size=48\n科幻::https://m.kanman.com/api/getsortlist/?comic_sort=kehuan&orderby=&search_type=&search_key=&page={{page}}&size=48\n都市::https://m.kanman.com/api/getsortlist/?comic_sort=dushi&orderby=&search_type=&search_key=&page={{page}}&size=48\n武侠::https://m.kanman.com/api/getsortlist/?comic_sort=wuxia&orderby=&search_type=&search_key=&page={{page}}&size=48\n修真::https://m.kanman.com/api/getsortlist/?comic_sort=xiuzhen&orderby=&search_type=&search_key=&page={{page}}&size=48\n生活::https://m.kanman.com/api/getsortlist/?comic_sort=shenghuo&orderby=&search_type=&search_key=&page={{page}}&size=48\n动作::https://m.kanman.com/api/getsortlist/?comic_sort=dongzuo&orderby=&search_type=&search_key=&page={{page}}&size=48\n防疫::https://m.kanman.com/api/getsortlist/?comic_sort=fangyi&orderby=&search_type=&search_key=&page={{page}}&size=48",
    "lastUpdateTime": 1759568392534,
    "respondTime": 1728,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "kind": "[property=\"og:novel:category\"]@content",
      "lastChapter": ".comic-update-status@text##.*-\\d+ ",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "https://m.kanman.com/api/getchapterlist?product_id=1&productname=kmh&platformname=wap&comic_id=@get:{bid}"
    },
    "ruleContent": {
      "content": "$.data.current_chapter.chapter_img_list@js:\nheader={\"Referer\":baseUrl};\nheaders={\"headers\":JSON.stringify(header)};\nresult.split(\"\\n\").map(x=>'<img src=\\\"'+x+','+JSON.stringify(headers)+'\\\">').join(\"\\n\")",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.cartoon_author_list_name||$.comic_author",
      "bookList": "$.data.data||$.data",
      "bookUrl": "https://m.kanman.com/{{$.comic_id}}/",
      "coverUrl": "https://image.yqmh.com/mh/{{$.comic_id}}.jpg-300x400.webp",
      "intro": "$.cartoon_desc",
      "kind": "$.comic_type##[a-zA-Z]|\\|",
      "lastChapter": "$.latest_cartoon_topic_name||$.last_chapter_name",
      "name": "$.comic_name@put:{bid:$.comic_id}"
    },
    "ruleToc": {
      "chapterList": "-$.data.[*]",
      "chapterName": "$.chapter_name",
      "chapterUrl": "https://m.kanman.com/api/getchapterinfov2?product_id=1&productname=kmh&platformname=wap&comic_id=@get:{bid}&chapter_newid={{$.chapter_newid}}&isWebp=1&quality=low"
    },
    "searchUrl": "https://m.kanman.com/api/serachcomic/?product_id=1&productname=kmh&platformname=wap&serachKey={{key}}&topNumber=10",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "瀚海书阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.txtdd.top",
    "bookUrlPattern": "\\/novel\\/[0-9]+\\.html",
    "customButton": false,
    "customOrder": 430,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1781280057577,
    "respondTime": 4536,
    "ruleBookInfo": {
      "author": "class.hover:text-primary.0@text",
      "coverUrl": "class.w-32 h-44 object-cover rounded-md shadow-md@src\n<js>\n\"https://www.txtdd.top\"+result;\n</js>",
      "intro": "class.text-gray-700 dark:text-gray-300 leading-relaxed@text",
      "kind": "class.hover:text-primary.1@text",
      "name": "h1@text",
      "wordCount": "tag.span.2@text"
    },
    "ruleContent": {
      "content": "class.read-content j_readContent@html",
      "title": "class.j_chapterName@text"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.p.0@text",
      "bookList": "@css:div.bg-light-secondary.rounded-lg.overflow-hidden.shadow-sm.flex",
      "bookUrl": "tag.div.bg-light-secondary@onclick\n<js>\nvar url=result;\nurl=url.replace(\"window.open('\",'');\nurl=url.replace(\"', '_blank')\",\"\")\nurl;\n</js>",
      "coverUrl": "tag.img@src",
      "intro": "tag.p.1@text",
      "kind": "tag.span.0@text",
      "name": "tag.h3@text",
      "wordCount": "tag.span.3@text"
    },
    "ruleToc": {
      "chapterList": "id.chapter-list@a",
      "chapterName": "a@text",
      "chapterUrl": "a@href\n<js>\n\"https://www.txtdd.top\"+result;\n</js>",
      "nextTocUrl": "text.下页@href"
    },
    "searchUrl": "https://www.txtdd.top/search.html?keyword={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "半废了。但还可用。\n大概最新的十章+不能看。\nby.Thomas哟\n小说交流群462030508。\nA群637775313不加人。若家炸了查看此群群资料找新家。\n✱✱资源取自网络，仅供学习参考，请同学们在24小时内删除✱✱\n🆙💯Dragon Quest QB\n{{book.origin}}/wenxue/buy/ad-chapter/v4?apn=1&resourceId={{baseUrl.match(/bookId=(\\d+)/)[1]}}&serialId={{$.serialID}}",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "硬币女宝",
    "bookSourceType": 0,
    "bookSourceUrl": "DragonQuestQBqqnv",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 431,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"✱　　　　　　✱ 畅  销  榜 ✱　　　　　　✱\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=girl&actionId=523346&pagestamp={{page}}&plan=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　上架30天内　\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=girl&actionId=523318&pagestamp={{page}}&plan=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　上架120天内　\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=girl&actionId=523320&pagestamp={{page}}&plan=1&signal=nextpage　\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　上架300天内？　\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=girl&actionId=523323&pagestamp={{page}}&plan=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　上架300天以上　\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=girl&actionId=523324&pagestamp={{page}}&plan=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱  书    库  ✱　　　　　　✱\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱ 古  言 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30013&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 收  藏 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=30013&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 字  数 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=30013&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 更  新 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=30013&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    女尊王朝\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30014&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    古典架空\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30015&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    古代情缘\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30016&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    穿越奇情\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30017&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    宫闱宅斗\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30018&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    经商种田\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30019&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    西方时空\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30094&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    清穿民国\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30095&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    上古蛮荒\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30096&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    热血江湖\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30097&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱ 现  言 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30020&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 收  藏 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=30020&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 字  数 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=30020&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 更  新 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=30020&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    都市生活\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30021&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    婚恋情缘\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30022&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    娱乐明星\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30023&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    商战职场\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30026&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    都市异能\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30027&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    豪门世家\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30028&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    极道江湖\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30029&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    民国情缘\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30030&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    异国情缘\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30098&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱ 幻  情 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30001&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 收  藏 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=30001&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 字  数 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=30001&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 更  新 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=30001&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    东方玄幻\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30002&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    异世大陆\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30003&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    远古神话\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30004&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    异族恋情\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30005&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    魔法幻情\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30006&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    西方奇幻\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30007&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    异能超术\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30092&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱ 仙  侠 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30008&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 收  藏 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=30008&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 字  数 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=30008&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 更  新 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=30008&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    武侠情缘\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30009&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    古典仙侠\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30010&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    现代修真\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30011&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    远古洪荒\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30012&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    仙侣奇缘\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30093&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱ 青  春 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30031&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 收  藏 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=30031&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 字  数 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=30031&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 更  新 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=30031&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    叛逆成长\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30032&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    青春纯爱\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30033&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    青春疼痛\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30034&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    青春校园\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30035&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱ 游  戏 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30050&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 收  藏 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=30050&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 字  数 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=30050&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 更  新 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=30050&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    电子竞技\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30051&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    网游情缘\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30052&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    游戏异界\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30053&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    体育竞技\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30054&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱ 科  幻 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30042&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 收  藏 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=30042&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 字  数 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=30042&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 更  新 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=30042&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    星际恋歌\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30043&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    时空穿梭\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30044&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    未来世界\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30045&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    古武机甲\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30046&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    超级科技\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30047&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    进化变异\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30048&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    末世危机\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30049&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱ 悬  疑 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30036&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 收  藏 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=30036&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 字  数 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=30036&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 更  新 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=30036&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    推理侦探\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30037&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    悬疑探险\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30039&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    奇妙世界\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30040&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    神秘文化\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30041&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱ 轻  文 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30055&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 收  藏 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=30055&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 字  数 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=30055&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 更  新 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=30055&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    同人衍生\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30100&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    唯美幻想\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30101&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    萌系变身\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30102&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    青春日常\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30103&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    搞笑吐槽\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30104&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    古典衍生\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30105&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    影视衍生\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30106&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    动漫衍生\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30107&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    其他衍生\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30108&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱ 短  篇 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30083&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 收  藏 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=30083&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 字  数 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=30083&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 更  新 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=30083&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    生活随笔\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30086&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    短篇小说\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30089&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱ 现  实 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30120&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 收  藏 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,3&actionId=30120&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 字  数 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,9&actionId=30120&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 更  新 \",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,2&actionId=30120&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    家与情感\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30121&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    行业人生\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30122&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    探索科幻\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30123&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    人文博览\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?actionTag=,-1,-1,-1,-1,6&actionId=30124&action=categoryV2&pagestamp={{page}}&categoryFlag=1&signal=nextpage\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"    　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱  风  格  ✱　　　　　　✱\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?searchFrom=61000012&actionTag=61000012,-1,-1,-1,-1,10&actionId=&page=1&base_tagid=61000012&action=tagV2&needHiddenCondition=0&categoryFlag=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"甜宠\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=63000004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=63000004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"轻松\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=63000001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=63000001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"温馨\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=630001002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=630001002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"爆笑\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=63000002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=63000002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"励志\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=63000009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=63000009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"虐文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=63000003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=63000003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"萌系\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=630001001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=630001001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"正剧\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=63000008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=63000008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"悲剧\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=63000006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=63000006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"热血\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=63000010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=63000010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"爽文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=63000005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=63000005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱  流  派  ✱　　　　　　✱\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?searchFrom=61000012&actionTag=61000012,-1,-1,-1,-1,10&actionId=&page=1&base_tagid=61000012&action=tagV2&needHiddenCondition=0&categoryFlag=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\" 1V1\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000012\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"HE\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"日久生情\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000027,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000027\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"权谋\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61001002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61001002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"欢喜冤家\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000025,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000025\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"架空\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001000,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001000\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"扮猪吃虎\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000021,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000021\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"逆袭\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"强强\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家长里短\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000026,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000026\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宫斗\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61001003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61001003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"先婚后爱\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61002014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61002014\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"校园\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000074,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000074\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"婚恋\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000051,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000051\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"相爱相杀\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000029,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000029\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"修真\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61004002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61004002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青梅竹马\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000024,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000024\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"破镜重圆\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000031,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000031\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"修仙\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"复仇\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000039,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000039\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女扮男装\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000023,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000023\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"一见钟情\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000028,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000028\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"独宠\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001026,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001026\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"双向暗恋\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000022,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000022\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"同居\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61002008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61002008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"致富\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000063,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000063\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"马甲\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000056,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000056\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"年代文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"虐渣\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000059,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000059\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"隐婚\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61002005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61002005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"美食\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"前世今生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000062,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000062\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"升级\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000041,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000041\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"玄学\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000014\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"悬疑推理\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000076,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000076\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"职场商战\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61002011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61002011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"巧娶\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000053,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000053\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"世家\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001012\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"契约婚姻\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61002007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61002007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"位面\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"黑化\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000055,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000055\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"初恋\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"网游情缘\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61006003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61006003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电竞\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000034,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000034\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"奋斗\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001016,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001016\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"星际\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61007003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61007003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"闪婚\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61002006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61002006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"清穿\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61001001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61001001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"攻略\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"魔法\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61003004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61003004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"农门\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001030,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001030\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"师徒\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000075,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000075\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"无CP\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000068,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000068\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"竞技\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61006001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61006001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"直播\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生死大爱\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000044,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000044\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏异界\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61006004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61006004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"姐弟恋\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000043,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000043\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"代嫁\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000071,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000071\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"萌宠\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000046,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000046\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"追妻\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001038,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001038\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"开挂\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001024,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001024\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"婆媳\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000049,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000049\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"失忆\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001022,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001022\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"倒追\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000061,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000061\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"治愈\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001035,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001035\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"御兽流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61003007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61003007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"王者荣耀\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61006002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61006002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"机甲\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61007004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61007004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"合约恋爱\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000054,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000054\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"探险\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001029,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001029\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"兽世\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000047,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000047\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"反穿\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61002015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61002015\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"近水楼台\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000065,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000065\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"末穿现\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000066,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000066\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"逃婚\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000064,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000064\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"创业\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"死对头\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000057,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000057\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"双重生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000067,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000067\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"西幻\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000050,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000050\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"衍生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61009002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61009002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"反转\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"离婚\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001031,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001031\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"崩人设\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"远古蛮荒\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61001011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61001011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"真假千金\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001025,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001025\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"催婚\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000045,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000045\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"复婚\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001020,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001020\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"替身\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000069,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000069\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"灵魂转换\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000036,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000036\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"相亲\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61002013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61002013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科举\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000052,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000052\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"赌石\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000018,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000018\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"权臣\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001039,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001039\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"爆红\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001021,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001021\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"吐槽\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001014\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"CP\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001032,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001032\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"读心术\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000060,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000060\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"群穿\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000035,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000035\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"翻车\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"体育竞技\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000048,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000048\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"再婚\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001033,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001033\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"错嫁\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001023,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001023\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"正史\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61001007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61001007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"影视原著\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000077,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000077\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"满级流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001027,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001027\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"穿越\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女强\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"豪门\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000073,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000073\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"重生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宅斗\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61001004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61001004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"萌宝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"系统流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"种田\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000072,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000072\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"娱乐圈\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61002009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61002009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"打脸\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"快穿\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61007002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61007002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"空间\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000015\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"穿书\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000019,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000019\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"金手指\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000016,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000016\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异能\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=61000017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=61000017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"别后重逢\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001015\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001019,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001019\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"基建\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=610001034,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=610001034,\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✱　　　　　　✱  人  物  ✱　　　　　　✱\",\"url\":\"https://commontgw6.reader.qq.com/v7_6_6/book/search?searchFrom=61000012&actionTag=61000012,-1,-1,-1,-1,10&actionId=&page=1&base_tagid=61000012&action=tagV2&needHiddenCondition=0&categoryFlag=0\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"腹黑\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62700010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62700010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"帝王\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"王爷\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"痴情\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"王妃\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"霸道\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001000,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001000\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"双洁\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62700011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62700011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"护短\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"杀伐果断\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62400011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62400011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"皇后\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"高冷\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"明星\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"男神\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62400013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62400013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"可盐可甜\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62700006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62700006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古灵精怪\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"傲娇\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"公主\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神医\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"校草\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300022,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300022\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"超A\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62700007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62700007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"贵女\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"醋王\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62400026,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62400026\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"首席\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300027,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300027\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"呆萌\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"嫔妃\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100030,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100030\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"忠犬\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62400020,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62400020\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"戏精\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62700009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62700009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"双商爆表\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001019,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001019\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"秀外慧中\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"颜控\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200030,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200030\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"白月光\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200024,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200024\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"庶女\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"大神\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"白富美\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200027,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200027\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"妖孽\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"将军\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"自强\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001015\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女帝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"闷骚\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"黑莲花\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200028,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200028\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"上神\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300034,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300034\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"善良\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"御姐\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200020,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200020\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"萝莉\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"医生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62600012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62600012\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"才女\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200022,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200022\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"万人迷\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200031,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200031\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"财迷\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200035,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200035\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"杀手\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001016,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001016\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"仙尊\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"特工\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001015\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"悍妻\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200037,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200037\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"小狼狗\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62400018,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62400018\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"仙君\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300039,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300039\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"玩世不恭\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62400010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62400010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宠妻\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=624001000,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=624001000\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"影帝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=623001001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=623001001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女汉子\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200033,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200033\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"作精\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200038,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200038\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心机\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001016,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001016\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"反差萌\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001023,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001023\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"旺夫\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200036,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200036\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"弃妇\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"天才\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62600005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62600005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"毒医\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001014\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"小野猫\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200042,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200042\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"痞帅\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62400014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62400014\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"毒舌\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"厨娘\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100027,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100027\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"淡定\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001020,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001020\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"小奶狗\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62400017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62400017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神帝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300032,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300032\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"恶魔\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62400009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62400009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"甜妻\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=622001005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=622001005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"丑女\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200015\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"妖艳\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200039,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200039\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"学生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001022,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001022\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"糙汉\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62400024,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62400024\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女主萌娃\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=622001000,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=622001000\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"酷帅\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001018,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001018\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"精分\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"大叔\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300030,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300030\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"召唤师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001017\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"男配\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=623001000,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=623001000\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"逗比\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62700012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62700012\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"首富\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62600002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62600002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"精英\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62700008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62700008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"魔尊\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"傻白甜\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200019,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200019\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"狐狸\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"妖精\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62600003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62600003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宫女\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"极品\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001026,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001026\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"剩女\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200016,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200016\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"纨绔\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001027,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001027\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"丫环\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"佛系\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"咸鱼\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001025,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001025\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"相师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001019,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001019\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"福晋\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62101001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62101001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"律师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001000,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001000\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"警察\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"钢铁直男\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62400027,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62400027\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"顶流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001028,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001028\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"低智\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001021,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001021\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"吸血鬼\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62600007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62600007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女神\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=622001006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=622001006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300043,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300043\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宅女\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200026,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200026\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"学渣\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001022,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001022\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"设计师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"白领\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62600013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62600013\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"网红\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001018,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001018\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"法医\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62600010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62600010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"老师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62600004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62600004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神偷\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001012\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"白莲花\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200023,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200023\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"皇叔\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=623001004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=623001004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"首辅\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"侦探\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"毒妃\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=622001007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=622001007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"天师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001006\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"教授\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"NPC\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62600009,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62600009\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"小妾\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100012\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"精灵\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100033,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100033\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"败家\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62700005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62700005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"黑客\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62600011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62600011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科学家\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"蛇王\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300016,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300016\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"丞相\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300041,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300041\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"龙族\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001005\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"掌门\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62300035,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62300035\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"死神\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62600008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62600008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女仆\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100011\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"总裁\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=626001004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=626001004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"大佬\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62700003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62700003\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"嫡女\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100007\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女配\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100032,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100032\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"偏执\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001008\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"影后\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62100023,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62100023\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"全能\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200029,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200029\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"反派\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001012\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"炮灰\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62700004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62700004\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"学霸\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62700001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62700001\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"病娇\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001010\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"逆袭\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62700014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62700014\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"吃货\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=627001014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=627001014\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"福气包\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200040,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200040\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"锦鲤\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200018,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200018\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"团宠\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62700002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62700002\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"欢脱\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62200041,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62200041\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"暖男\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=62400025,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=62400025\",\"style\":{\"layout_flexGrow\":1}}]",
    "header": "{\n\t\"user-agent\":\"Mozilla/5.0 (Linux; Android 10; MI 8 Build/QKQ1.190828.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.101 Mobile Safari/537.36\",\n\t\"Referer\":\"https://bookshelf.html5.qq.com/qbread\"\n\t}",
    "lastUpdateTime": 1734862206536,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 3270,
    "ruleBookInfo": {
      "author": "$.author",
      "canReName": "",
      "coverUrl": "$.picurl",
      "init": "$.data.bookInfo",
      "intro": "<p>{{(t=String(java.getString('$.tag'))).length?'🏷️ '+t.replace(/\\|/g,', '):''}}</p>{{'\\n&lrm;'}}\n<p>{{$.summary}}</p>",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{java.put('time',String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,''))}}",
      "lastChapter": "{{$.lastSerialname}} • {{java.get('time')}}",
      "name": "$.resourceName",
      "tocUrl": "https://bookshelf.html5.qq.com/qbread/api/book/all-chapter?bookId={{$.resourceID}}",
      "wordCount": "$.contentsize"
    },
    "ruleContent": {
      "content": "<p>{{$.data.Content[0].Content}}</p>",
      "nextContentUrl": ""
    },
    "ruleExplore": {
      "author": "$..author",
      "bookList": "$..second[*]&&$..bookList[*]&&$..rankList[*]",
      "bookUrl": "$..bid\n<js>1100000000+parseInt(result)</js>\nhttps://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{result}}",
      "coverUrl": "$..bid\n@js:\ns = result\nfunction gt(s){\n\ta = s.slice(-3)\n\tif(a<10){\n\t\t\tn = s.slice(-1)\n\t\t}\n\telse if(a<100){\n\t\t\tn = s.slice(-2)\n\t\t}\n\telse{\n\t\t\tn = a\n\t\t}\n\treturn n\n}\n\"http://wfqqreader-1252317822.image.myqcloud.com/cover/\"+gt(s)+\"/\"+s+\"/b_\"+s+\".jpg\"",
      "intro": "$..intro",
      "kind": "$..catel2name&&$..catel3name",
      "lastChapter": "$..lastChapterName",
      "name": "$..title",
      "wordCount": "$..totalWords"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.booklist[*]",
      "bookUrl": "$.bid\n<js>1100000000+parseInt(result)</js>\nhttps://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{result}}",
      "checkKeyWord": "深空彼岸",
      "coverUrl": "$.bid\n@js:\nvar s = result\nfunction gt(s){\n\tlet a = s.slice(-3)\n\tif(a<10){\n\t\t\tn = s.slice(-1)\n\t\t}\n\telse if(a<100){\n\t\t\tn = s.slice(-2)\n\t\t}\n\telse{\n\t\t\tn = a\n\t\t}\n\treturn n\n}\n\"http://wfqqreader-1252317822.image.myqcloud.com/cover/\"+gt(s)+\"/\"+s+\"/b_\"+s+\".jpg\"",
      "intro": "$.intro",
      "kind": "{{$.categoryInfoV4\n##\\d.*?\\:(.*?)\\:.*?(,|$)##$1$2}}\n{{$.updateInfo##已更新至.*##连载中}}\n##小说,",
      "lastChapter": "$.updateInfo##已更新至##第",
      "name": "$.title",
      "wordCount": "$.totalWords"
    },
    "ruleToc": {
      "chapterList": "$.rows",
      "chapterName": "$.serialName",
      "chapterUrl": "https://novel.html5.qq.com/be-api/content/ads-read,{\n\t\"method\": \"POST\",\n\t\"body\": {\n\t\t\"Scene\": \"chapter\",\n\t\t\"ContentAnchorBatch\": [{\n\t\t\t\t\"BookID\": \"{{baseUrl.match(/bookId=(\\d+)/)[1]}}\",\n\t\t\t\t\"ChapterSeqNo\": [{{$.serialID}}]\n\t\t\t}]\n\t},\n\t\"headers\": {\n\t\t\"Q-GUID\": \"4aa27c7cf2d9aca3359656ea186488cb\"\n\t}\n}",
      "isPay": "$.isFree",
      "isVip": "//删掉这行字，vip章节会显示🔓\n$.isFree",
      "isVolume": "",
      "nextTocUrl": "",
      "preUpdateJs": "",
      "updateTime": ""
    },
    "searchUrl": "https://newopensearch.reader.qq.com/wechat?keyword={{key}}&start={{page-1}}&end=19",
    "weight": 0
  },
  {
    "bookSourceComment": "by 狼崽儿 //2026.6.27\n防走失页：https://nnmhcc.github.io/",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "楠楠漫画（禁）",
    "bookSourceType": 2,
    "bookSourceUrl": "https://guiwb.nnmh.info",
    "customButton": false,
    "customOrder": 433,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n    {\n      \"title\": \"最新更新\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=3&status=0&limitStatus=0\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"人气韩漫\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=1&status=0&limitStatus=1\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"人气耽美\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=1&status=0&limitStatus=2\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"韩漫新作\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=2&status=0&limitStatus=1\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"耽美新作\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=2&status=0&limitStatus=2\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"已完结\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=3&status=2&limitStatus=0\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"━ 标签分类 ━\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=3&status=0&limitStatus=0\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 单行本\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=单行本\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 现代都市\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=现代都市\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 穿越｜快穿\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=穿越｜快穿\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 星际\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=星际\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 古代｜非现代\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=古代｜非现代\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 攻受互换\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=攻受互换\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 正太\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=正太\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 豪门\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=豪门\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 总裁系列\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=总裁系列\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 男妓\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=男妓\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 灵异\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=灵异\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 搞笑\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=搞笑\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ SM\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=SM\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 虐恋\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=虐恋\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 师生恋\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=师生恋\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 多P\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=多P\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 重逢｜重生\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=重逢｜重生\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 修仙\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=修仙\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    },\n    {\n      \"title\": \"◇ 男孕\",\n      \"url\": \"/index.php?m=&c=mh&a=load_searchpage,{\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"page={{page}}&key=&paixu=&status=0&limitStatus=0&sort[]=男孕\\\",\\\"headers\\\":{\\\"X-Requested-With\\\":\\\"XMLHttpRequest\\\"}}\"\n    }\n  ]",
    "header": "{  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\", \"Referer\": \"https://guiwb.nnmh.info/}",
    "lastUpdateTime": 1786041270497,
    "respondTime": 3373,
    "ruleBookInfo": {
      "author": "@css:.author@text##作者：",
      "coverUrl": "@css:.cover-box .bg img@src@js:result + ',{\"headers\":{\"Referer\":\"https://guiwb.nnmh.info/\"}}'",
      "intro": "@css:.article .body@text",
      "kind": "@css:.label .item a@text",
      "name": "@css:.cover-box .container .title@text"
    },
    "ruleContent": {
      "content": "@js:\nvar html = src;\nvar m = html.match(/var encryptedData = \"([^\"]+)\"/);\nif (m) {\n  var enc = m[1];\n  var rawBytes = java.base64DecodeToByteArray(enc, 0);\n  var rawStr = java.bytesToStr(rawBytes, \"ISO-8859-1\");\n  var ivStr = rawStr.substring(0, 16);\n  var ctStr = rawStr.substring(16);\n  var ivBytes = java.strToBytes(ivStr, \"ISO-8859-1\");\n  var ctBytes = java.strToBytes(ctStr, \"ISO-8859-1\");\n  var key = 'tH1rU6qZ4vU1sK7pN1wO7mX4bY6dQ9gX'.substr(0, 32);\n  var cipher = java.createSymmetricCrypto(\"aes/cbc/pkcs7padding\", java.strToBytes(key), ivBytes);\n  var decBytes = cipher.decrypt(ctBytes);\n  var jsonStr = java.bytesToStr(decBytes, \"UTF-8\");\n  var urls = JSON.parse(jsonStr);\n  var imgs = [];\n  for (var i = 0; i < urls.length; i++) {\n    imgs.push('<img src=\"' + urls[i] + ',' + JSON.stringify({headers:{Referer:'https://guiwb.nnmh.info/'}}) + '\">');\n  }\n  imgs.join('');\n}",
      "imageStyle": "FULL"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "@json:$.info[*]",
      "bookUrl": "@js:\"/home/book/index/id/\" + result.id + \"/\"",
      "coverUrl": "@js:result.cover_pic + ',{\"headers\":{\"Referer\":\"https://guiwb.nnmh.info/\"}}'",
      "kind": "$.cateids",
      "lastChapter": "$.maxepisodes",
      "name": "$.title"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "@json:$.info[*]",
      "bookUrl": "@js:\"/home/book/index/id/\" + result.id + \"/\"",
      "coverUrl": "@js:result.cover_pic + ',{\"headers\":{\"Referer\":\"https://guiwb.nnmh.info/\"}}'",
      "intro": "$.summary",
      "kind": "$.cateids",
      "lastChapter": "$.maxepisodes",
      "name": "$.title"
    },
    "ruleToc": {
      "chapterList": "#html_box .item",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "/index.php?m=&c=mh&a=load_searchpage,{\n  \"method\": \"POST\",\n  \"body\": \"page={{page}}&key={{key}}&paixu=&status=0&limitStatus=0\",\n  \"headers\": {\n    \"X-Requested-With\": \"XMLHttpRequest\"\n  }\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "//2025.7.11 正文解密 ◎夜泽川◎",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "龙渊书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.lysw1.com",
    "customButton": false,
    "customOrder": 434,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvar result = [];\nvar push = (title, url, size) => result.push({\n  title: title,\n  url: url,\n  style: {\n    layout_flexGrow: 1,\n    layout_flexBasisPercent: size\n  }\n});\nvar tabList = [source.key + \"/tvb/\", source.key + \"/tnt/\"];\njava.ajaxAll(tabList).forEach((response, index) => {\n\tlet isTag = index == 0;\n\tpush(isTag ? \"分类\" : \"排行\", null, 1);\norg.jsoup.Jsoup.parse(response.body()).select('.class .container a').forEach(e => push(e.text(), String(e.attr('href')).replace(/\\d+\\/$/, \"\") + (isTag ? \"{{page}}/\" : \"?page={{page}}\"), 0.25))\n});\nJSON.stringify(result);",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "jsLib": "function decrypt(encryptedString) {\n    const { java } = this\n    let encryptedData_ = String(java.base64Decode(encryptedString));\n    let controlNum = parseInt(encryptedData_.slice(8, 11));\n    let text = encryptedData_.slice(controlNum + 11, encryptedData_.length - controlNum);\n     let encryptedData = text.replace(/_/g, \"8L3A+\").replace(/-/g, \"PHA+\");\n     return java.base64Decode(encryptedData);\n}",
    "lastUpdateTime": 1787418431169,
    "respondTime": 5825,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{i}",
      "init": "@put:{\"n\":\"[property$=book_name]@content\",\n\"a\":\"[property$=author]@content\",\n\"t\":\"[property~=category|status]@content\",\n\"l\":\"[property$=latest_chapter_name]@content\",\n\"i\":\"[property$=image]@content\",\n\"o\":\"[property$=description]@content\",\n\"g\":\"[property$=update_time]@content\",\n\"m\":\".btn-primary@href\"\n}",
      "intro": "@get:{o}",
      "kind": "@get:{t}",
      "lastChapter": "@get:{l}◎@get:{g}",
      "name": "@get:{n}",
      "tocUrl": "@get:{m}"
    },
    "ruleContent": {
      "content": "#chaptercontent > p@html##.*龙渊书屋.*|本章未完，.*\n@js: \ntry {\n\tmoreContent = src.match(/var\\s*c=['\"]([^'\"]+)/)[1];\nresult = result + decrypt(moreContent);\n} catch (e) {}\nresult;",
      "nextContentUrl": "#next_url@onclick##'(.*)'##$1###",
      "replaceRegex": "##{{chapter.title}}"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author@text",
      "bookList": ".book-coverlist",
      "bookUrl": "a@href",
      "coverUrl": "img@data-src",
      "intro": ".intro@text",
      "kind": "soan@text",
      "name": ".name@text"
    },
    "ruleToc": {
      "chapterList": ".panel-chapterlist a",
      "chapterName": "text",
      "chapterUrl": "onclick##'(.*)'##$1###",
      "nextTocUrl": "option@value"
    },
    "searchUrl": "/search/?searchkey={{key}}&order=0&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "6",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.shukuge.com",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 436,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "玄幻::http://wap.shukuge.com/i-xuanhuan/\n言情::http://wap.shukuge.com/i-yanqing/\n武侠::http://wap.shukuge.com/i-wuxia/\n历史::http://wap.shukuge.com/i-lishi/\n网游::http://wap.shukuge.com/i-wangyou/\n科幻::http://wap.shukuge.com/i-kehuan/\n悬疑::http://wap.shukuge.com/i-xuanyi/\n排行榜::http://wap.shukuge.com/top/\n最新::http://wap.shukuge.com/new/",
    "header": "",
    "lastUpdateTime": 1733164664503,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 37200,
    "ruleBookInfo": {
      "author": "",
      "canReName": "",
      "coverUrl": "",
      "init": "",
      "intro": "class.book_about@dd@text",
      "kind": "",
      "lastChapter": "",
      "name": "",
      "tocUrl": "",
      "wordCount": "class.book_box@dd.1@span.1@text##字数："
    },
    "ruleContent": {
      "content": "id.chaptercontent@html",
      "imageStyle": "",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##.*第.*页.*|.*本章未完.*|阅读网址.*",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "span.2@text",
      "bookList": "class.lis@li",
      "bookUrl": "span.1@a@href",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": "span.1@a@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "class.author@text##作者：",
      "bookList": "class.bookbox",
      "bookUrl": "h4@a@href",
      "coverUrl": "class.bookimg@a@img@src",
      "intro": "",
      "kind": "class.cat@text##分类：",
      "lastChapter": "class.update@a@text",
      "name": "h4@a@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "class.book_last@dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "text.下一页@href",
      "updateTime": ""
    },
    "searchUrl": "http://wap.shukuge.com/search?q={{key}}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "国轻\n整理修改：酷安 Wolken",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "灰机小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://lgqm.huijiwiki.com",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 437,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "同人作品列表::/wiki/同人作品列表\n2017年铁拳爆菊大出血杯::/wiki/2017年铁拳爆菊大出血杯\n2017年吹牛文学奖::/wiki/2017年吹牛文学奖\n2016年铁拳爆菊大出血杯::/wiki/2016年铁拳爆菊大出血杯",
    "lastUpdateTime": 1702140764486,
    "loginUrl": "{\n  \"url\": \"\"\n}",
    "respondTime": 3186,
    "ruleBookInfo": {
      "name": "tag.h1@text"
    },
    "ruleContent": {
      "content": "class.mw-parser-output@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.wikitable@tr",
      "bookUrl": "tag.a@href",
      "intro": "tag.td.9@text&&tag.td.3@text&&tag.td.6@text&&tag.td.4@text",
      "kind": "tag.td.7@text&&tag.td.8@text",
      "name": "tag.td.1@a@text"
    },
    "ruleToc": {
      "chapterList": "tag.h1",
      "chapterName": "text"
    },
    "searchUrl": "/wiki/同人作品列表",
    "weight": 0
  },
  {
    "bookSourceComment": "by 梓澄\n只能看免费（划掉）\n现在被破解了",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "点众阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "https://asgportal.kkyd.cn",
    "customButton": false,
    "customOrder": 438,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nlet finds = [];\nlet push = (title, url, type) => finds.push({\n  title: title,\n  url: url,\n  style: {\n    layout_flexBasisPercent: type\n  }\n});\nfunction getJson(cmd, data) {\n  let url = source.key + buildRequestUrl(cmd, data);\n  let src = decrypt(java.ajax(url));\n  return JSON.parse(src);\n}\nlet list = [[\"男生\", 2, [[\"口碑榜\", 2], [\"畅销榜\", 1], [\"完本榜\", 6], [\"好评榜\", 3], [\"新书榜\", 4], [\"热读榜\", 5], [\"经典榜\", 7], [\"热搜榜\", 9], [\"脑洞榜\", 8]], [[\"题材\", 1, [[\"都市\", 4], [\"玄幻\", 5], [\"历史\", 6], [\"仙侠\", 7], [\"科幻\", 8], [\"悬疑\", 9], [\"武侠\", 10], [\"校园\", 11], [\"体育\", 12], [\"网游\", 13], [\"脑洞\", 14], [\"二次元\", 15], [\"军事\", 16], [\"短篇\", 459], [\"真实历史\", 944], [\"西幻\", 945]]], [\"角色\", 2, [[\"战神\", 17], [\"奶爸\", 18], [\"神医\", 19], [\"女婿\", 20], [\"学霸\", 21], [\"反派\", 22], [\"明星\", 23], [\"特种兵\", 24], [\"姐姐\", 25], [\"女总裁\", 26], [\"皇子\", 27], [\"弃少\", 28], [\"校花\", 29], [\"保镖\", 30], [\"驸马\", 31], [\"皇帝\", 32], [\"道士\", 33], [\"剑修\", 34], [\"首富\", 35], [\"小农民\", 36], [\"师尊\", 37], [\"风水相师\", 38], [\"武修\", 39], [\"僵尸\", 40], [\"师姐\", 41], [\"隐世高人\", 42], [\"厨师\", 43], [\"女帝\", 44], [\"太子\", 45], [\"兵王\", 46], [\"掌门\", 47], [\"丹修\", 48], [\"渔夫\", 49], [\"倒爷\", 50], [\"包租公\", 51], [\"领主\", 52], [\"主播\", 926], [\"白月光\", 946], [\"替身\", 947], [\"病娇\", 948], [\"青梅竹马\", 949], [\"律师\", 950], [\"法医\", 951], [\"真假少爷\", 952], [\"草根\", 1019], [\"毒士\", 1135]]], [\"情节\", 3, [[\"高手下山\", 53], [\"重生年代\", 54], [\"田园生活\", 55], [\"架空历史\", 56], [\"荒岛\", 57], [\"神豪\", 58], [\"娱乐圈\", 59], [\"古玩鉴宝\", 60], [\"综艺\", 61], [\"盗墓\", 62], [\"大秦\", 63], [\"大唐\", 64], [\"黑科技\", 65], [\"开局\", 66], [\"代管\", 67], [\"摊牌\", 68], [\"神话\", 69], [\"九叔\", 70], [\"曝光\", 71], [\"狗粮\", 72], [\"原始部落\", 73], [\"春秋战国\", 74], [\"大汉\", 75], [\"三国\", 76], [\"大宋\", 77], [\"大明\", 78], [\"清史民国\", 79], [\"直播\", 80], [\"兽化\", 81], [\"NBA\", 82], [\"灵气复苏\", 83], [\"恐怖复苏\", 84], [\"凶兽入侵\", 85], [\"妖魔入侵\", 86], [\"诸天万界\", 87], [\"灵异\", 88], [\"推理\", 89], [\"都市修真\", 90], [\"足球\", 91], [\"篮球\", 92], [\"复仇\", 93], [\"末世\", 94], [\"快递\", 95], [\"外卖\", 96], [\"修仙\", 97], [\"急诊科\", 98], [\"国运\", 99], [\"西游\", 100], [\"洪荒\", 101], [\"星际\", 102], [\"丧尸\", 103], [\"未来世界\", 104], [\"美食\", 105], [\"致富\", 106], [\"手术\", 107], [\"机甲\", 108], [\"宠物\", 109], [\"探险\", 110], [\"争霸\", 111], [\"魔法\", 112], [\"奥特曼\", 113], [\"海贼\", 114], [\"火影\", 115], [\"漫威\", 116], [\"神奇宝贝\", 117], [\"四合院\", 118], [\"游戏异界\", 119], [\"王者荣耀\", 120], [\"英雄联盟\", 121], [\"绝地求生\", 122], [\"海洋探险\", 123], [\"废柴流\", 124], [\"技术流\", 125], [\"反套路\", 126], [\"情感\", 127], [\"修仙归来\", 128], [\"浪子回头\", 129], [\"无敌\", 410], [\"传统玄幻\", 411], [\"重归巅峰\", 412], [\"囤物资\", 919], [\"职场商战\", 920], [\"谍战\", 921], [\"同人\", 922], [\"斩神\", 923], [\"权谋\", 924], [\"穿书\", 955], [\"反转\", 956], [\"逆袭\", 957], [\"励志\", 958], [\"犯罪\", 959], [\"无限流\", 960], [\"时间旅行\", 961], [\"平行时空\", 962], [\"人工智能\", 963], [\"电竞\", 964], [\"科举\", 965], [\"废土\", 966], [\"封神榜\", 967], [\"山海经\", 968], [\"无限循环\", 969], [\"虐恋\", 970], [\"婚姻\", 971], [\"BE\", 973], [\"HE\", 974], [\"姐弟恋\", 975], [\"破镜重圆\", 976], [\"逃荒\", 977], [\"灵魂互换\", 979], [\"年龄差\", 983], [\"追夫火葬场\", 984], [\"动物主角\", 1000], [\"基建\", 1001], [\"重生\", 1002], [\"双重生\", 1003], [\"穿越\", 1004], [\"古穿今\", 1005], [\"群穿\", 1006], [\"胎穿\", 1007], [\"打脸\", 1008], [\"爽文\", 1009], [\"种田\", 1010], [\"规则怪谈\", 1011], [\"救赎\", 1012], [\"家庭\", 1013], [\"亲情\", 1014], [\"玄学\", 1015], [\"扮猪吃虎\", 1016], [\"克苏鲁\", 1017], [\"SCP\", 1018], [\"群像\", 1020], [\"抽卡\", 1077], [\"退婚流\", 1078], [\"高武\", 1121], [\"后悔流\", 1240]]], [\"金手指\", 4, [[\"透视\", 130], [\"签到\", 131], [\"系统\", 132], [\"求生\", 133], [\"异能\", 134], [\"异宝\", 135], [\"红包\", 136], [\"御兽\", 137], [\"神奇店铺\", 138], [\"聊天群\", 139], [\"分身\", 140], [\"吞噬\", 141], [\"算命\", 142], [\"召唤\", 143], [\"氪金\", 144], [\"武魂\", 145], [\"圣体\", 146], [\"血脉\", 147], [\"两界穿越\", 148], [\"发明创造\", 149], [\"进化\", 150], [\"长生\", 151], [\"空间\", 152], [\"读心术\", 954]]]]], [\"女生\", 3, [[\"口碑榜\", 2], [\"畅销榜\", 1], [\"完本榜\", 6], [\"好评榜\", 3], [\"新书榜\", 4], [\"热读榜\", 5], [\"经典榜\", 7], [\"热搜榜\", 9]], [[\"题材\", 5, [[\"古代言情\", 153], [\"现代言情\", 154], [\"女生玄幻\", 155], [\"清穿民国\", 156], [\"种田\", 157], [\"年代文\", 158], [\"青春校园\", 159], [\"悬疑推理\", 160], [\"异世快穿\", 161], [\"短篇\", 162]]], [\"角色\", 6, [[\"千金\", 163], [\"小妾\", 164], [\"大叔\", 165], [\"吃货\", 166], [\"傲娇\", 167], [\"妈咪\", 168], [\"商女\", 169], [\"世子\", 170], [\"弃女\", 171], [\"偏执\", 172], [\"职场精英\", 173], [\"下堂妻\", 174], [\"摄政王\", 175], [\"养女\", 176], [\"戏精\", 177], [\"记者\", 178], [\"农女\", 179], [\"猎户\", 180], [\"傻子\", 181], [\"病娇\", 182], [\"老师\", 183], [\"嫡女\", 184], [\"少帅\", 185], [\"特工\", 186], [\"忠犬\", 187], [\"律师\", 188], [\"庶女\", 189], [\"皇叔\", 190], [\"丑女\", 191], [\"禁欲\", 192], [\"设计师\", 193], [\"神医\", 194], [\"皇帝\", 195], [\"女配\", 196], [\"腹黑\", 197], [\"秘书\", 198], [\"皇后\", 199], [\"尊上\", 200], [\"反派\", 201], [\"傻白甜\", 202], [\"明星\", 203], [\"丫鬟\", 204], [\"影帝\", 205], [\"大佬\", 206], [\"病秧子\", 207], [\"前妻\", 208], [\"公主\", 209], [\"王爷\", 210], [\"肥婆\", 211], [\"将军\", 212], [\"学霸\", 213], [\"王妃\", 214], [\"权臣\", 215], [\"战神\", 216], [\"秀才\", 217], [\"少女\", 218], [\"太子妃\", 219], [\"兽人\", 220], [\"宠妻狂魔\", 222], [\"黑客\", 223], [\"弃妃\", 224], [\"霸总\", 225], [\"废柴\", 226], [\"悍妻\", 227], [\"医生\", 228], [\"娘娘\", 229], [\"糙汉\", 230], [\"妖\", 231], [\"后娘\", 460], [\"锦鲤\", 467], [\"皇子\", 601], [\"人间清醒\", 602], [\"绿茶\", 1022], [\"白月光\", 1023], [\"校霸\", 1024], [\"法医\", 1025], [\"大女主\", 1026]]], [\"情节\", 7, [[\"总裁豪门\", 232], [\"相亲\", 233], [\"御兽\", 234], [\"萌宝\", 235], [\"欢喜冤家\", 236], [\"穿越\", 237], [\"奉子成婚\", 238], [\"和离\", 239], [\"马甲\", 240], [\"日久生情\", 241], [\"重生\", 242], [\"先婚后爱\", 243], [\"和亲\", 244], [\"影视原著\", 245], [\"破镜重圆\", 246], [\"女尊\", 247], [\"一见钟情\", 248], [\"权谋\", 249], [\"贵族学院\", 250], [\"协议\", 251], [\"星际\", 252], [\"阴差阳错\", 253], [\"修仙\", 254], [\"强强\", 255], [\"婚约\", 256], [\"末世\", 257], [\"隐婚\", 258], [\"团宠\", 259], [\"青梅竹马\", 260], [\"宠夫\", 261], [\"远古\", 262], [\"闪婚\", 263], [\"虐恋\", 264], [\"失忆\", 265], [\"救赎\", 266], [\"历史\", 267], [\"离婚\", 268], [\"甜宠\", 269], [\"双洁\", 270], [\"追夫\", 271], [\"空间\", 272], [\"久别重逢\", 273], [\"温馨\", 274], [\"扮猪吃虎\", 275], [\"带球跑\", 276], [\"穿书\", 277], [\"错嫁\", 278], [\"先虐后宠\", 279], [\"异能\", 280], [\"追妻火葬场\", 281], [\"系统\", 282], [\"豪门恩怨\", 283], [\"虐渣\", 284], [\"推理\", 285], [\"坑爹\", 286], [\"现实\", 287], [\"二嫁\", 288], [\"暗恋\", 289], [\"以身相许\", 290], [\"仙侠\", 291], [\"娱乐圈\", 292], [\"复仇\", 293], [\"替嫁\", 294], [\"替身\", 295], [\"宫斗宅斗\", 296], [\"真假千金\", 297], [\"逃婚\", 298], [\"残疾\", 299], [\"致富\", 300], [\"古穿今\", 301], [\"死对头\", 302], [\"美食\", 303], [\"逆袭\", 304], [\"金手指\", 305], [\"灵异\", 306], [\"清穿\", 307], [\"民国\", 308], [\"电竞\", 309], [\"直播\", 310], [\"风水\", 413], [\"读心术\", 414], [\"逃荒\", 461], [\"年龄差\", 588], [\"爱恨情仇\", 603], [\"玄学\", 613], [\"流放\", 614], [\"无cp\", 633], [\"双男主\", 1027], [\"双女主\", 1028], [\"抗战\", 1029], [\"游戏\", 1030], [\"动物主角\", 1031], [\"秦朝\", 1032], [\"汉朝\", 1033], [\"唐朝\", 1034], [\"宋朝\", 1035], [\"明朝\", 1036], [\"清朝\", 1037], [\"双重生\", 1038], [\"爽文\", 1039], [\"竞技\", 1040], [\"基建\", 1041], [\"同人\", 1042], [\"规则怪谈\", 1043], [\"囤物资\", 1044], [\"乡村秘闻\", 1045], [\"家庭\", 1046], [\"亲情\", 1047], [\"反转\", 1048], [\"励志\", 1049], [\"犯罪\", 1050], [\"时间旅行\", 1051], [\"平行时空\", 1052], [\"破案\", 1053], [\"校园霸凌\", 1054], [\"民间奇闻\", 1055], [\"无限循环\", 1056], [\"婚姻\", 1057], [\"BE\", 1058], [\"HE\", 1059], [\"养成\", 1060], [\"恋综\", 1061], [\"1v1\", 1062], [\"灵魂互换\", 1063], [\"群像\", 1064], [\"女性成长\", 1065], [\"女性互助\", 1066], [\"兽世\", 1067], [\"群穿\", 1068], [\"胎穿\", 1069], [\"打脸\", 1070], [\"通古今\", 1188], [\"父子火葬场\", 1429]]]]], [\"出版\", 1, [], [[\"小说\", 8, [[\"幻想小说\", 311], [\"当代小说\", 312], [\"影视小说\", 313], [\"惊悚恐怖\", 314], [\"推理悬疑\", 315], [\"武侠小说\", 316], [\"世界名著\", 317], [\"中国古典\", 318], [\"乡土社会\", 319], [\"军事谍战\", 320], [\"科幻小说\", 321], [\"历史架空\", 322], [\"外国小说\", 323], [\"中国近现代\", 324], [\"官场小说\", 325], [\"职场商战\", 326], [\"小说作品集\", 327], [\"言情小说\", 328]]], [\"青春\", 9, [[\"穿越\", 329], [\"校园\", 330], [\"古言\", 331], [\"轻小说\", 332], [\"情感\", 333], [\"仙侠江湖\", 334]]], [\"历史\", 10, [[\"世界史\", 335], [\"中国通史\", 336], [\"口述随笔\", 337], [\"先秦秦汉\", 338], [\"史论专著\", 339], [\"宋元明清\", 340], [\"中国近现代史\", 341], [\"通俗说史\", 342], [\"隋唐\", 343], [\"魏晋五代十国\", 344], [\"文物考古\", 345], [\"地方史志\", 346]]], [\"社科\", 11, [[\"法律\", 347], [\"宗教\", 348], [\"军事\", 349], [\"社会人文\", 350], [\"实用心理学\", 351], [\"文化评述\", 352], [\"哲学\", 353], [\"政治学\", 354], [\"中外政治\", 355]]], [\"修养\", 12, [[\"个人修养\", 356], [\"情商情绪\", 357], [\"时间管理\", 358], [\"思维智力\", 359], [\"文明礼仪\", 360], [\"性格习惯\", 361]]], [\"传记\", 13, [[\"大家名流\", 362], [\"帝王将相\", 363], [\"文体明星\", 364], [\"政经人物\", 365], [\"自传\", 366]]], [\"励志\", 14, [[\"成功学\", 367], [\"创业就业\", 368], [\"女性励志\", 369], [\"人际交往\", 370], [\"心灵治愈\", 371], [\"演讲口才\", 372], [\"职场法则\", 373]]], [\"生活\", 15, [[\"婚恋两性\", 374], [\"家居\", 375], [\"旅游\", 376], [\"美食\", 377], [\"美体健身\", 378], [\"女性时尚\", 379], [\"亲子家教\", 380], [\"星座占卜\", 381], [\"养生保健\", 382], [\"幽默\", 383], [\"孕产早教\", 384]]], [\"经管\", 16, [[\"股票\", 385], [\"管理学\", 386], [\"金融经济\", 387], [\"市场营销\", 388]]], [\"科教\", 17, [[\"科普\", 389], [\"自然理化\", 390], [\"工农医建\", 391], [\"信息网络\", 392], [\"外语\", 393], [\"教辅\", 394]]], [\"文艺\", 18, [[\"外国文学\", 395], [\"戏剧曲艺\", 396], [\"散文\", 397], [\"文学作品集\", 398], [\"文学理论\", 399], [\"文学鉴赏\", 400], [\"日记书信\", 401], [\"民间文学\", 402], [\"现代诗歌\", 403], [\"纪实文学\", 404], [\"诗词歌赋\", 405], [\"国学经典\", 406], [\"儿童读物\", 407], [\"艺术\", 408], [\"随笔\", 409]]]]]];\nlist.forEach([title, id, rankList, cateList] => {\n  push(\"༺\" + title + \"༻\", null, 1);\n  /*\n  let json = {}, rankList = [], cateList = [];\n  if (id > 1) {\n    json = getJson(1110, {rankChannelId: id - 1, tagId: 0, dataType: 0});\n    rankList = json.rankSubChannelVoList.map(rank => {\n      return [rank.title, rank.rankId];\n    });\n  }\n  json = getJson(1108, {channelId: id});\n  cateList = json.categoryList.slice(1).map(cate => {\n    return [cate.title, cate.id, cate.subCategoryVoList.map(subCate => {\n      return [subCate.title, subCate.id];\n    })];\n  });\n  */\n  rankList.forEach([rankName, rankId] => {\n    push(rankName, buildRequestUrl(1110, {rankChannelId: id - 1, rankId: rankId, tagId: 0, dataType: 0}), 0.29);\n  });\n  cateList.forEach([cateName, cateId, subList] => {\n    push(\"♧\" + cateName + \"♧\", null, 1);\n    subList.forEach([subName, subId] => {\n      push(subName, `@js:((obj)=>buildRequestUrl(1109, {categoryId: ${subId}, isHasCondition: 1, bookStatus: obj.status, wordNum: obj.word, sort: obj.sort, page: page, twoCategoryName: \"${cateName}\"}))(getVariable())`, 0.29);\n    });\n  });\n});\nJSON.stringify(finds)",
    "header": "<js>\nlet randomUuid = java.randomUUID().toString()\nlet data = {\n  version: \"6.8.1.3316\",\n  pname: \"com.dianzhong.reader\",\n  channelCode: \"TASEO1000000\",\n  utdidTmp: 'A20250403015212996DT5esb', // + time() + randomStr(6),\n  token:\"\",\n  os: \"android\",\n  osv: 33,\n  brand: \"unknown\",\n  model: \"Q454\",\n  manu: \"unknown\",\n  userId: \"0\",\n  launch: \"launcher\",\n  mchid: \"\",\n  nchid: \"TASEO1000000\",\n  session1: randomUuid,\n  session2: randomUuid,\n  installTime: 1743616313451,\n  p: 7,\n  sex: 0,\n  launchNum: 3,\n  visitor: 0\n}\nlet str = JSON.stringify(data)\nlet aes = java.createSymmetricCrypto('AES/CBC/Pkcs5Padding', AES_KEY, AES_IV)\nlet datas = K(aes.encrypt(str))\nJSON.stringify({\n  'User-Agent': 'okhttp/4.10.0',\n  datas: datas,\n  'Content-Type': 'application/json; charset=utf-8'\n})\n</js>",
    "jsLib": "function getVariable(name) {\n  const {source} = this;\n  let obj = {status: 0, word: 0, sort: 0};\n  try {\n    obj = JSON.parse(source.getVariable());\n  } catch(e) {\n    source.setVariable(JSON.stringify(obj));\n  }\n  if (!name) return obj;\n  return obj[name];\n}\n\nAES_KEY = 'dzkjgfyxgshylgzm'\nAES_IV = 'apiupdownedcrypt'\n\n// 请求体hex加密\nfunction K(bArr) {\n  let sb = '';\n  for (let b of bArr) {\n    let i = b & 255;\n    let l = i.toString(16);\n    if (i < 16) {\n      sb += '0';\n    }\n    sb += l;\n  }\n  return sb;\n}\n\n// 响应体解密\nfunction v(c) {\n  return \"0123456789ABCDEF\".indexOf(c);\n}\nfunction U(str) {\n  if (str === null || str === \"\") {\n    return null;\n  }\n  const upperCase = str.toUpperCase();\n  const length = Math.floor(upperCase.length / 2);\n  const charArray = upperCase.split('');\n  const bArr = new Uint8Array(length);\n\n  for (let i = 0; i < length; i++) {\n    const i2 = i * 2;\n    bArr[i] = v(charArray[i2 + 1]) | (v(charArray[i2]) << 4);\n  }\n  return bArr;\n}\n\nfunction M(hexStr) {\n    if (!hexStr) {\n        return null;\n    }\n    let byteLength = hexStr.length / 2;\n    let bytes = new Uint8Array(byteLength);\n    for (let i = 0; i < byteLength; i++) {\n        let hexPair = hexStr.substr(i * 2, 2);\n        bytes[i] = parseInt(hexPair, 16);\n    }\n    return bytes\n}\n\n// 实现utf8Array转String\nfunction array2str(utf8Array) {\n  let result = '';\n  for (let i = 0; i < utf8Array.length; i++) {\n    let byte = utf8Array[i];\n    if (byte < 0x80) {\n      // 单字节字符\n      result += String.fromCharCode(byte);\n    } else if ((byte & 0xE0) === 0xC0) {\n      // 两个字节字符\n      let charCode = (byte & 0x1F) << 6 | (utf8Array[i + 1] & 0x3F);\n      result += String.fromCharCode(charCode);\n      i++; // 跳过下一个字节\n    } else if ((byte & 0xF0) === 0xE0) {\n      // 三个字节字符\n      let charCode = (byte & 0x0F) << 12 | (utf8Array[i + 1] & 0x3F) << 6 | (utf8Array[i + 2] & 0x3F);\n      result += String.fromCharCode(charCode);\n      i += 2; // 跳过下两个字节\n    } else if ((byte & 0xF8) === 0xF0) {\n      // 四个字节字符\n      // 这里不处理四个字节以上的字符，因为它们不在UTF-8范围内\n      throw new Error('Invalid UTF-8 byte sequence');\n    }\n  }\n  return result;\n}\n\nfunction randomHex(length) {\n  let char = '0123456789abcdef'\n  let r = ''\n  for (let i = 0; i < length; i++) {\n    r += char[Math.ceil(Math.random() * 15)]\n  }\n  return r\n}\n\nfunction randomStr(length) {\n  let char = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'\n  let r = ''\n  for (let i = 0; i < length; i++) {\n    r += char[Math.ceil(Math.random() * 15)]\n  }\n  return r\n}\n\nfunction time(date) {\n  if (typeof date === 'undefined') date = new Date()\n  const year = date.getFullYear();\n  const month = (date.getMonth() + 1).toString().padStart(2, '0');\n  const day = date.getDate().toString().padStart(2, '0');\n  const hours = date.getHours().toString().padStart(2, '0');\n  const minutes = date.getMinutes().toString().padStart(2, '0');\n  const seconds = date.getSeconds().toString().padStart(2, '0');\n  const milliseconds = date.getMilliseconds().toString().padStart(3, '0');\n  return `${year}${month}${day}${hours}${minutes}${seconds}${milliseconds}`;\n}\n\nfunction decrypt(body) {\n  const { java } = this\n  if (body.startsWith('<')) return body\n  let data = JSON.parse(body).data\n  if (!data) return body\n  return java.createSymmetricCrypto('AES/CBC/Pkcs7Padding', AES_KEY, AES_IV).decryptStr(java.hexDecodeToByteArray(data))\n}\n\nfunction buildRequestUrl(cmd, data) {\n  const { java } = this\n  data = K(Array.from(java.createSymmetricCrypto('AES/CBC/Pkcs7Padding', AES_KEY, AES_IV).encrypt(JSON.stringify(data))))\n  return `/asg-portal/portal/client/${cmd},{\"method\": \"post\", body: \"${data}\"}`\n}",
    "lastUpdateTime": 1785477998510,
    "loginCheckJs": "Packages.io.legado.app.help.http.StrResponse(result.url(), decrypt(result.body()))",
    "loginUi": "[\n  {\n    \"name\": \"　　      默认排序（综合排序-全部-全部）      　\",\n    \"type\": \"button\",\n    \"action\": \"filterDefault()\"\n  },\n  {\n    \"name\": \"　      综合排序      　\",\n    \"type\": \"button\",\n    \"action\": \"filterSort(0)\"\n  },\n  {\n    \"name\": \"　      最高评分      　\",\n    \"type\": \"button\",\n    \"action\": \"filterSort(1)\"\n  },\n  {\n    \"name\": \"　      最多阅读      　\",\n    \"type\": \"button\",\n    \"action\": \"filterSort(2)\"\n  },\n  {\n    \"name\": \"　      最近更新      　\",\n    \"type\": \"button\",\n    \"action\": \"filterSort(3)\"\n  },\n  {\n    \"name\": \"     全部      \",\n    \"type\": \"button\",\n    \"action\": \"filterStatus(0)\"\n  },\n  {\n    \"name\": \"      连载      \",\n    \"type\": \"button\",\n    \"action\": \"filterStatus(2)\"\n  },\n  {\n    \"name\": \"      完结       \",\n    \"type\": \"button\",\n    \"action\": \"filterStatus(1)\"\n  },\n  {\n    \"name\": \"      全部      \",\n    \"type\": \"button\",\n    \"action\": \"filterWord(0)\"\n  },\n  {\n    \"name\": \" 50万以下 \",\n    \"type\": \"button\",\n    \"action\": \"filterWord(1)\"\n  },\n  {\n    \"name\": \"\\u200550-100万\\u2005\",\n    \"type\": \"button\",\n    \"action\": \"filterWord(2)\"\n  },\n  {\n    \"name\": \"         100-300万         \",\n    \"type\": \"button\",\n    \"action\": \"filterWord(3)\"\n  },\n  {\n    \"name\": \"　　300万以上　　\",\n    \"type\": \"button\",\n    \"action\": \"filterWord(4)\"\n  }\n]",
    "loginUrl": "let obj = getVariable();\nfunction filterSort(id) {\n  obj.sort = id;\n  source.setVariable(JSON.stringify(obj));\n  java.toast(\"设置成功\");\n}\nfunction filterStatus(id) {\n  obj.status = id;\n  source.setVariable(JSON.stringify(obj));\n  java.toast(\"设置成功\");\n}\nfunction filterWord(id) {\n  obj.word = id;\n  source.setVariable(JSON.stringify(obj));\n  java.toast(\"设置成功\");\n}\nfunction filterDefault() {\n  obj = {status: 0, word: 0, sort: 0};\n  source.setVariable(JSON.stringify(obj));\n  java.toast(\"设置成功\");\n}",
    "respondTime": 3222,
    "ruleBookInfo": {
      "author": "author",
      "canReName": "true",
      "coverUrl": "coverWap",
      "init": "$.bookDetail",
      "intro": "&nbsp;&nbsp;👤 主角：{{$.roleName}}\n👁️ 在线：{{$.readUv}}人\n👈🏻 点击：{{$.clickNum}}次\n&nbsp;&nbsp;\n&lrm;\n📜 简介：{{$.introduction}}\n&nbsp;&nbsp;\n&lrm;\n评分信息：\n总评分：{{$.comScore}}\n★★★★★：{{$.bookScoreVo.fiveStarNum}}\n★★★★☆：{{$.bookScoreVo.fourStarNum}}\n★★★☆☆：{{$.bookScoreVo.threeStarNum}}\n★★☆☆☆：{{$.bookScoreVo.twoStarNum}}\n★☆☆☆☆：{{$.bookScoreVo.oneStarNum}}",
      "kind": "@js:\nlet a = [result.get(\"statusTips\"), result.get(\"comScore\") + \"分\"]\na.concat(result.get(\"tags\"))",
      "lastChapter": "lastChapterName",
      "name": "bookName",
      "tocUrl": "@js:\nbuildRequestUrl(1304, {\n  bookId: java.put('bid', result.bookId),\n  chapterIndex: 0,\n  chapterNum: result.totalChapterNum\n})",
      "wordCount": "totalWordSize##字"
    },
    "ruleContent": {
      "content": "@js:\nJSON.parse(\n  decrypt(\n    java.ajax(\n      source.bookSourceUrl.split('#')[0] +\n      buildRequestUrl(1111, {\n          bookId: java.get(\"bid\"),\n          chapterId: baseUrl.split('com/')[1]\n        }\n      )\n    )\n  )\n).chapterInfo.content"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "author",
      "bookList": "$.bookList||$.rankList",
      "bookUrl": "@js:\nbuildRequestUrl(1111, {\n  bookId: result.bookId,\n  chapterId: \"\"\n})",
      "checkKeyWord": "天王殿",
      "coverUrl": "coverWap",
      "intro": "introduction",
      "kind": "{{$.statusTips}},{{$.bookMark}}",
      "name": "bookName"
    },
    "ruleToc": {
      "chapterList": "$.chapterList",
      "chapterName": "chapterName",
      "chapterUrl": "https://www.baidu.com/{{$.chapterId}}",
      "isVip": "hasLock",
      "preUpdateJs": "java.refreshTocUrl()"
    },
    "searchUrl": "@js:\nbuildRequestUrl(1203, {\n  keyWord: key,\n  page: page,\n  type: 0\n})",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "手机小说#4",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.sjshuku.com",
    "customButton": false,
    "customOrder": 439,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "武侠小说::/soft/1/Soft_001_{{page}}.html&&玄幻小说::/soft/2/Soft_002_{{page}}.html&&都市言情::/soft/3/Soft_003_{{page}}.html&&恐怖灵异::/soft/4/Soft_004_{{page}}.html&&现代文学::/soft/5/Soft_005_{{page}}.html&&侦探推理::/soft/6/Soft_006_{{page}}.html&&科幻小说::/soft/7/Soft_007_{{page}}.html&&穿越架空::/soft/9/Soft_009_{{page}}.html&&古典名著::/soft/10/Soft_010_{{page}}.html&&名人自传::/soft/11/Soft_011_{{page}}.html&&历史军事::/soft/12/Soft_012_{{page}}.html&&制作工具::/soft/13/Soft_013_{{page}}.html&&网游小说::/soft/14/Soft_014_{{page}}.html&&推荐小说::http://www.sjshuku.com/soft/best/index_{{page}}.html&&热门小说::http://www.sjshuku.com/soft/hot/index_{{page}}.html&&最新小说::http://www.sjshuku.com/soft/new/index_{{page}}.html&&全本小说::http://www.sjshuku.com/soft/quanben/index_{{page}}.html&&",
    "lastUpdateTime": 1787069627418,
    "respondTime": 2649,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "init": "<js>\nvar act=org.jsoup.Jsoup.parse(result).select(\".downButton\").attr(\"href\");\nvar url = \"http://www.sjshuku.com\"+act;\njava.put(\"url\",url);\njava.ajax(url)</js>\n",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "@get:{url}"
    },
    "ruleContent": {
      "content": "#content1@html##.*?www.xiaxs.la.*"
    },
    "ruleExplore": {
      "author": "##作者：([^<]+)<##$1###",
      "bookList": ".listBox ul li",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "img@src",
      "intro": ".u@text",
      "lastChapter": "tag.a.1@text##最新章节[:：]",
      "name": "tag.a.0@text##全集"
    },
    "ruleSearch": {
      "author": "em@text",
      "bookList": ".listBox ul li",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "name": "a@text##全集"
    },
    "ruleToc": {
      "chapterList": ".pc_list a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://www.sjshuku.com/search.php?s=&searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "❤️格格党🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.ax81.com",
    "customButton": false,
    "customOrder": 441,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1769591734084,
    "respondTime": 7490,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property$=lastest_chapter_name]@content",
      "name": "[property$=book_name]@content",
      "tocUrl": "text.查看全部章节@href"
    },
    "ruleContent": {
      "content": "#content@html",
      "nextContentUrl": "text.下一页@href||text.下一@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "span:nth-child(3) > .g@text",
      "bookList": ".SHsectionThree-middle > p:nth-child(n+1)",
      "bookUrl": "span:nth-child(2) > a@href",
      "checkKeyWord": "系统",
      "kind": "span:nth-child(1) > .g@text",
      "name": "span:nth-child(2) > a@text"
    },
    "ruleToc": {
      "chapterList": ".BCsectionTwo-top-chapter:nth-child(n+1) > .g@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value"
    },
    "searchUrl": "{{cookie.removeCookie(source.getKey())}}\n/search/,{\n  \"body\": \"searchkey={{key}}&searchtype=all&submit=\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "//2025.1.27 by.◎辞晨◎",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "键盘小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.janpn.org",
    "customButton": false,
    "customOrder": 442,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\npush(\"全部🌊分类\",null,1,1)\n\tarList=[[\"玄幻奇幻\",\"xuanhuanqihuan/list-1-\"],[\"武侠修真\",\"wuxiaxiuzhen/list-2-\"],[\"现代都市\",\"xiandaidushi/list-3-\"],[\"历史军事\",\"lishijunshi/list-4-\"],[\"游戏竞技\",\"youxijingji/list-5-\"],[\"科幻灵异\",\"kehuanlingyi/list-6-\"],[\"女生言情\",\"nvshengyanqing/list-7-\"],[\"其他类型\",\"qitaleixing/list-8-\"]]\n\tarList.map(([tag,index])=>{\n\t\turl=`http://www.janpn.org/${index}{{page}}.html`;\n\t\tpush(tag, url, 1, 0.25);\n\t\t});\n//java.log(JSON.stringify(sort))\nJSON.stringify(sort)",
    "header": "@js:\nJSON.stringify({\n  'User-Agent': \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0\",\n  'sec-ch-ua-platform': \"\\\"Android\\\"\",\n  'origin': baseUrl,\n  'x-requested-with': \"cn.mujiankeji.mbrowser\",\n  'referer': baseUrl,\n  'accept-language': \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"\n})",
    "lastUpdateTime": 1787410138093,
    "respondTime": 1902,
    "ruleBookInfo": {
      "author": "author",
      "downloadUrls": "bookUrl",
      "init": "<js>\n$=java.getString('.leftx@html')\nn = 0; \nv = book.getVariable(\"custom\");\nx = v.match(/^\\d+$/)? v : n;\n//x = (parseInt(x) < $.length)? x : n;\njava.toast(x)\nname=java.getString('.bookTitle@text');\nauthor=`{{book.author}}`;\nlast=java.getString('#list-chapterAll@a@text')\nkind=java.getString('.col-md-12@p.1@text')\n\nif (v == 0) {\n  bookUrlz = baseUrl;\n  book.type = 8;\n  java.toast('已自动开启小说模式');\n} else if(v==1){\n  bookUrlz =String(java.getString('.leftx@a@onclick')).replace(/.*\\(\\'(.*?)\\'\\)/,'$1');\n  book.type = 128;\n  java.toast('已自动开启文件模式');\n}\nintro = \"&nbsp;简介：\" + java.getString('.bookIntro@text') + \"\\n当前源链: \" + \"\\n\"+bookUrlz+\"\\n书籍文本:🔺'+【0】+'🔻\"+'\\n'+baseUrl+\n\"\\n文件链接:🔺'+【1】+'🔻\"+'\\n'+String(java.getString('.leftx@a@onclick')).replace(/.*\\(\\'(.*?)\\'\\)/,'$1');\ndata = {\n\tname:name,\n\tauthor:author,\n\tlast:last,\n\tkind:kind,\n\tintro:intro,\n\tbookUrl:bookUrlz\n};\n\nJSON.stringify(data);\n</js>",
      "intro": "intro",
      "kind": "kind##更新时间：",
      "lastChapter": "last",
      "name": "name##\\《|》.*"
    },
    "ruleContent": {
      "content": "#htmlContent@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".shop-info.1@text##\\[.*",
      "bookList": ".list@a",
      "bookUrl": "a.0@href",
      "lastChapter": "span.-1@text",
      "name": "b@text##\\《|\\》"
    },
    "ruleToc": {
      "chapterList": ".panel-chapterlist@a[href~=html]",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "@js:\nurl = \"http://www.janpn.org/search.php?q={{key}}&s=\";\ns = org.jsoup.Jsoup.parse(java.ajax(source.key)).select('input[name=\"s\"]').attr('value');\nresult = url + s;\n",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "女生文学#1",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xwenxuem.com",
    "customButton": false,
    "customOrder": 443,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "周榜::/book/topweekvisit/0/{{page}}.html\n月榜::/book/topmonthvisit/0/{{page}}.html\n总榜::/book/topallvisit/0/{{page}}.html\n周推::/book/topweekvote/0/{{page}}.html\n月推::/book/topmonthvote/0/{{page}}.html\n总推::/book/topallvote/0/{{page}}.html\n站推::/book/toptoptime/0/{{page}}.html\n收藏::/book/topgoodnum/0/{{page}}.html\n字数::/book/topsize/0/{{page}}.html\n原创::/book/topauthorupdate/0/{{page}}.html\n转载::/book/topmasterupdate/0/{{page}}.html\n入库::/book/toppostdate/0/{{page}}.html\n近更::/book/toplastupdate/0/{{page}}.html\n玄幻::/book/sort1/0/{{page}}.html\n修真::/book/sort2/0/{{page}}.html\n言情::/book/sort3/0/{{page}}.html\n历史::/book/sort4/0/{{page}}.html\n推理::/book/sort5/0/{{page}}.html\n网游::/book/sort6/0/{{page}}.html\n科幻::/book/sort7/0/{{page}}.html\n恐怖::/book/sort8/0/{{page}}.html\n都市::/book/sort9/0/{{page}}.html\n其他::/book/sort10/0/{{page}}.html\n经部::/book/sort11/0/{{page}}.html\n史书::/book/sort12/0/{{page}}.html\n子部::/book/sort13/0/{{page}}.html\n集部::/book/sort14/0/{{page}}.html\n古典::/book/sort16/0/{{page}}.html\n诗歌::/book/sort17/0/{{page}}.html",
    "lastUpdateTime": 1787069331621,
    "respondTime": 1970,
    "ruleBookInfo": {
      "intro": "{{@@##<!--开始-->([^<]+)##$1###}}{{@@id.tuijian.0@ownText}}@js:result.replace(/.*简介.*著\\,|【展开】|【收起】/g,\"\")##(^|[。！？]+[”」）】]?)##$1<br>",
      "lastChapter": ".novel_list[-1]@tag.a.-1@text||tag.tbody.0@tag.a.-2@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "tocUrl": ".ulrow@tag.a.0@href"
    },
    "ruleContent": {
      "content": "id.clickeye_content@textNodes",
      "replaceRegex": "##.女生文学.*\\)"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "tbody@tr!0",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.a.0@href##.+\\D((\\d+)\\d{3})\\D##/files/article/image/$2/$1/$1s.jpg###",
      "kind": "tag.td.5:4@text",
      "lastChapter": "tag.td.1@text##简介.|正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "tag.td.0@text",
      "wordCount": "tag.td.3@text"
    },
    "ruleToc": {
      "chapterList": ".novel_list@li@a",
      "chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "网站正文故障",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "必去吧楼",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.bequ6.info",
    "customButton": false,
    "customOrder": 444,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1784912433169,
    "respondTime": 2277,
    "ruleBookInfo": {
      "author": "text.作者：@text",
      "coverUrl": ".block_img2@img@src",
      "intro": ".intro_info@text",
      "kind": "text.分类：@text&&\ntext.状态：@text&&\ntext.更新：@text",
      "lastChapter": ".block_txt2@a.-1@text",
      "name": "h2@text",
      "tocUrl": "text.查看目录@href"
    },
    "ruleContent": {
      "content": "#nr1@textNodes",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "//*[not(@class='blue')]/text()##\\[.*\\]|\\/",
      "bookList": ".line",
      "bookUrl": ".blue@href",
      "kind": "##\\[(.*)\\]##$1##",
      "name": ".blue@text"
    },
    "ruleToc": {
      "chapterList": ".chapter li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value||text.下一页@href"
    },
    "searchUrl": "/search?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "合并了全部13个喜马拉雅变体（search.ximalaya.com x9 + www.ximalaya.com x2 + hhlqilongzhu.cn x1），保留HTTPS+完整分类explore+高质量搜索规则",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "喜马拉雅",
    "bookSourceType": 1,
    "bookSourceUrl": "https://www.ximalaya.com",
    "customButton": false,
    "customOrder": 446,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "❀                             广 播 剧                             ❀::https://www.ximalaya.com/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=\n 架 空 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=jiakong日韩::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=reci506\n 都 市 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=dushi\n 校 园 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=xiaoyuan\n 武 侠 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=wuxia\n 仙 侠 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=xianxia\n 奇 幻 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=qihuan\n 玄 幻 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=xuanhuan\n 科 幻 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=kehuan\n 悬 疑 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=xuanyi\n 推 理 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=tuili\n 历 史 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=lishi\n 职 场 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=zhichang\n 同 人 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=tongrenwen\n 游 戏 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=youxi\n 爆 笑 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=baoxiao\n 脑 洞 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=naodong\n 日 漫 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=riman\n 萌 系 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=mengxi\n 恋 爱 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=lianai\n 纯 爱 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci1367\n  玛 丽 苏  ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=malisu\n 霸道总裁 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=badaozongcai\n 虚拟偶像 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=xuniouxiang\n 现代言情 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci546\n 古风言情 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci52\n 画风清奇 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=huafengqingqi\n 民间故事 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=minjiangushi\n  全 年 龄  ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci54\n 有声漫画 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci1357\n 会员专区 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci1664\n 心动剧场 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci1660\n 国风剧场 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci1661\n 尖叫剧场 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci1662\n月上新周播剧::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci1198\n            ::\n\n❀                             有 声 书                             ❀::https://www.ximalaya.com/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=\n\n 文 学 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=wenxue\n 生 活 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=shenghuo\n 教 材 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=jiaocai\n 经 典 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=jingdian\n 童 书 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=tongshu\n 成 长 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=lizhi\n 社 科 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=sheke\n 商 业 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=shangye\n外文 • 原版::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=yingwenyuanban\n期刊::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=qikanzazhi\n历史::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci234\n传记::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1692\n\n 网络小说 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1173\n 言情女生 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci231\n 悬疑推理 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci232\n 都市重生 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci235\n 历史纵横 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1195\n 仙侠幻想 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1196\n 豪门恋情 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1530\n 古风言情 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1531\n 宫闱宅斗 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1532\n 王牌强档 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1264\n 有声漫画 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1351\n 出版小说 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1359\n 女生最爱 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci346\n 男生最爱 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci348\n 免费精选 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1533\n 新品限免 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1477\n 会员上新 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1518\n 爆更小说 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1069\n\n QQ  阅读 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci22\n 读客图书 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci23\n 果麦文化 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci24\n 中信书院 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci646\n 博集新媒 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci26\n 磨铁阅读 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci394\n  蓝 狮 子  ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci419\n 华章图书 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci650\n 文学名著 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1157\n 历史专区 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1158\n 国学经典 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1159\n 历史经典 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1370\n 三体科幻 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1697\n 重磅新品 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1698\n\n 听书指南 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1449\n大家都在听::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1521\n大家都在追::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1529\n大剧必听榜::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1051\n会员有声小说::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1055\n畅销书-限时免费::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1693\n\n❀                               音   乐                               ❀::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue\n\n 古 风 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=gufeng\n 流 行 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=liuxing\n 欧 美 ::https://www.ximalaya.com/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=reci507\n 古  典 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=mr8t41\n 动 漫 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=anime\n 老 歌 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=reci117\n 翻 唱 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=reci125\n轻音乐::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=qingyinyue\n 日 韩 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=reci506\n 催 眠 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=reci322\n影视原声::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=yingshiyuansheng\n       ::",
    "lastUpdateTime": 1786764097070,
    "respondTime": 2189,
    "ruleBookInfo": {
      "intro": "$.album.intro"
    },
    "ruleContent": {
      "content": "@js:baseUrl"
    },
    "ruleExplore": {
      "author": "anchorName",
      "bookList": "$..albums.*",
      "bookUrl": "link@js:\"http://mobile.ximalaya.com/mobile/others/ca/album/track/\" + result.split('/')[2]+'/true/1/200'",
      "coverUrl": "coverPath",
      "intro": "收听{$.playCount}  共{$.trackCount}章",
      "name": "title",
      "wordCount": "@js:if({{$.isFinished}}==1){if({{$.isPaid}}){'已完结💰'}else{'已完结'}}else{if({{$.isPaid}}){'连载💰'}else{'连载'}}"
    },
    "ruleSearch": {
      "author": "$.nickname",
      "bookList": "$..docs.*",
      "bookUrl": "$.url@js:\"http://mobile.ximalaya.com/mobile/others/ca/album/track/\" + result.split('/')[2]+'/true/1/200'",
      "coverUrl": "$.cover_path",
      "intro": "$.intro",
      "kind": "$.category_title&&$.tags",
      "name": "$.title",
      "wordCount": "播放数{$.play}  共{$.tracks}集"
    },
    "ruleToc": {
      "chapterList": "$.tracks.list",
      "chapterName": "title",
      "chapterUrl": "playPathAacv224||playPathAacv164||playUrl64||playUrl32",
      "nextTocUrl": "@js:\nbaseUrl = String(baseUrl).split('1/200')[0];\nlist = [];\npage=JSON.parse(String(result)).tracks.maxPageId\nfor(var i = 2; i < 10; ++i){\nlist.push(String(baseUrl +i+\"/200\"));\n}\nlist"
    },
    "searchUrl": "https://www.ximalaya.com/revision/search?core=album&spellchecker=true&rows=20&condition=relation&device=iPhone&fq=&paidFilter=false&kw={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "2024年7月1日",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "修真堂吧",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.xiuzhent.com",
    "customButton": false,
    "customOrder": 447,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全部::/fenlei.html\n玄幻魔法::/fenlei/1_{{page}}.html\n武侠修真::/fenlei/2_{{page}}.html\n都市言情::/fenlei/3_{{page}}.html\n历史军事::/fenlei/4_{{page}}.html\n网游竞技::/fenlei/5_{{page}}.html\n科幻未来::/fenlei/6_{{page}}.html\n恐怖灵异::/fenlei/7_{{page}}.html\n其他类型::/fenlei/8_{{page}}.html\n小说大全::https://www.xiuzhent.com/modules/article/toplist.php?sort=lastupdate&page={{page}}\n点击排行榜::https://www.xiuzhent.com/modules/article/toplist.php?sort=allvisit&page={{page}}",
    "lastUpdateTime": 1769587638761,
    "respondTime": 9194,
    "ruleBookInfo": {
      "author": ".xb6@a.link-instanted@text",
      "coverUrl": "img@src",
      "intro": "p.xb12@text",
      "kind": "span:nth-of-type(4)@a@text",
      "lastChapter": "span:nth-of-type(3)@a@text",
      "name": "h2@text",
      "wordCount": "span.xb6:nth-of-type(1)@text"
    },
    "ruleContent": {
      "content": "//div[@class=\"txt_tcontent\"]/text()"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "div.newlist-zz.xb2@a@text",
      "bookList": ".sj-list@li",
      "bookUrl": "div.newlist-title.xb3@a@href",
      "kind": "div.newlist-type@a@text",
      "lastChapter": "div.newlist-zj@a@text",
      "name": "div.newlist-title.xb3@a@text"
    },
    "ruleToc": {
      "chapterList": "div:nth-of-type(5)@li.xl6",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "https://www.xiuzhent.com/modules/article/search.php,{\n\"charset\": \"gbk\",\n\"method\": \"POST\",\n\"body\":\"submit=%CB%D1%CB%F7&searchkey={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "搜索无效，只能添加网址",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎈雷云阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.leiyungewx.com",
    "bookUrlPattern": "https://www.leiyungewx.com.*?\\.shtml",
    "customButton": false,
    "customOrder": 448,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1668258317612,
    "loginCheckJs": "",
    "respondTime": 1861,
    "ruleBookInfo": {
      "author": "class.excerpt@tag.a.1@text##的小说",
      "init": "",
      "intro": "class.excerpt@html",
      "kind": "class.excerpt@tag.a.0@text",
      "lastChapter": "tag.h2.1@tag.a.1@text",
      "name": "tag.h1@text##章节$",
      "tocUrl": "text.全文阅读@href"
    },
    "ruleContent": {
      "content": "<js>\nif(result.match(/text=new Array\\(\".*?\"\\)/)){\ncon=\"\"\neval(result.match(/text=new Array\\(\".*?\"\\)/)[0]);\nfor(var i=0;i<text.length;i++){con +=text[i];}con=String(java.base64Decode(con));\nresult=con\n}else{\n\tresult=result\n\t}\n</js>\nid.content@html",
      "nextContentUrl": "<js>\nif(result.match(/text=new Array\\(\".*?\"\\)/)){\ncon=\"\"\neval(result.match(/text=new Array\\(\".*?\"\\)/)[0]);\nfor(var i=0;i<text.length;i++){con +=text[i];}con=String(java.base64Decode(con));\nresult=con\n}else{\n\tresult=result\n\t}\n</js>\ntext.下一页@href"
    },
    "ruleExplore": {
      "bookList": ""
    },
    "ruleSearch": {
      "bookList": "class.clearfix!0@class.min-width",
      "bookUrl": "text.全文阅读@href||tag.a.0@href",
      "lastChapter": "ownText##\\[|\\]：",
      "name": "tag.a.1@text##章节$|完整版.*|小说|最新章节"
    },
    "ruleToc": {
      "chapterList": "<js>\nif(result.match(/text=new Array\\(\".*?\"\\)/)){\ncon=\"\"\neval(result.match(/text=new Array\\(\".*?\"\\)/)[0]);\nfor(var i=0;i<text.length;i++){con +=text[i];}con=String(java.base64Decode(con));\nresult=con\n}else{\n\tresult=result\n\t}\n</js>\nclass.chapters@li@a",
      "chapterName": "text##章节目录",
      "chapterUrl": "href"
    },
    "searchUrl": "https://www.leiyungewx.com/book/Search.aspx?key={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "碧曲书库",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.biqugere.net",
    "customButton": false,
    "customOrder": 449,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787412339446,
    "respondTime": 804,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作    者：",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.list@tag.p.0@text",
      "kind": "id.info@tag.p.3@text##更新时间：",
      "lastChapter": "@css:[property=og:novel:latest_chapter_name]@content##免费章节 |正文卷 |正文 |VIP章节|卷1",
      "name": "id.info@tag.h1.0@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleContent": {
      "content": "class.content@html##您可以在百度里.*查找最新章节！|一秒记住.*无弹窗免费阅读！|百度搜索笔趣.*小说免费阅读。|高速文字手打.*http.*biquge.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "tag.td.0@tag.a@href",
      "lastChapter": "tag.td.1@tag.a@text##免费章节 |正文卷 |正文 |VIP章节|卷1",
      "name": "tag.td.0@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "By暴风雪+乃星补加发现",
    "bookSourceGroup": "🎉 优选",
    "bookSourceName": "喜马拉雅（优+）",
    "bookSourceType": 1,
    "bookSourceUrl": "https://www.ximalaya.com/#乃星",
    "customButton": false,
    "customOrder": 450,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "❀                             广 播 剧                             ❀::https://www.ximalaya.com/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=\n 架 空 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=jiakong日韩::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=reci506\n 都 市 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=dushi\n 校 园 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=xiaoyuan\n 武 侠 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=wuxia\n 仙 侠 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=xianxia\n 奇 幻 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=qihuan\n 玄 幻 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=xuanhuan\n 科 幻 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=kehuan\n 悬 疑 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=xuanyi\n 推 理 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=tuili\n 历 史 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=lishi\n 职 场 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=zhichang\n 同 人 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=tongrenwen\n 游 戏 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=youxi\n 爆 笑 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=baoxiao\n 脑 洞 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=naodong\n 日 漫 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=riman\n 萌 系 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=mengxi\n 恋 爱 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=lianai\n 纯 爱 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci1367\n  玛 丽 苏  ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=malisu\n 霸道总裁 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=badaozongcai\n 虚拟偶像 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=xuniouxiang\n 现代言情 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci546\n 古风言情 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci52\n 画风清奇 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=huafengqingqi\n 民间故事 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=minjiangushi\n  全 年 龄  ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci54\n 有声漫画 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci1357\n 会员专区 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci1664\n 心动剧场 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci1660\n 国风剧场 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci1661\n 尖叫剧场 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci1662\n月上新周播剧::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=guangbojv&subcategory=reci1198\n            ::\n\n❀                             有 声 书                             ❀::https://www.ximalaya.com/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=\n\n 文 学 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=wenxue\n 生 活 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=shenghuo\n 教 材 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=jiaocai\n 经 典 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=jingdian\n 童 书 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=tongshu\n 成 长 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=lizhi\n 社 科 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=sheke\n 商 业 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=shangye\n外文 • 原版::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=yingwenyuanban\n期刊::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=qikanzazhi\n历史::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci234\n传记::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1692\n\n 网络小说 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1173\n 言情女生 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci231\n 悬疑推理 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci232\n 都市重生 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci235\n 历史纵横 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1195\n 仙侠幻想 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1196\n 豪门恋情 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1530\n 古风言情 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1531\n 宫闱宅斗 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1532\n 王牌强档 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1264\n 有声漫画 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1351\n 出版小说 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1359\n 女生最爱 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci346\n 男生最爱 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci348\n 免费精选 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1533\n 新品限免 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1477\n 会员上新 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1518\n 爆更小说 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1069\n\n QQ  阅读 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci22\n 读客图书 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci23\n 果麦文化 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci24\n 中信书院 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci646\n 博集新媒 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci26\n 磨铁阅读 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci394\n  蓝 狮 子  ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci419\n 华章图书 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci650\n 文学名著 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1157\n 历史专区 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1158\n 国学经典 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1159\n 历史经典 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1370\n 三体科幻 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1697\n 重磅新品 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1698\n\n 听书指南 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1449\n大家都在听::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1521\n大家都在追::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1529\n大剧必听榜::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1051\n会员有声小说::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1055\n畅销书-限时免费::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=youshengshu&subcategory=reci1693\n\n❀                               音   乐                               ❀::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue\n\n 古 风 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=gufeng\n 流 行 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=liuxing\n 欧 美 ::https://www.ximalaya.com/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=reci507\n 古  典 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=mr8t41\n 动 漫 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=anime\n 老 歌 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=reci117\n 翻 唱 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=reci125\n轻音乐::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=qingyinyue\n 日 韩 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=reci506\n 催 眠 ::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=reci322\n影视原声::/revision/category/queryCategoryPageAlbums?meta=&sort=0&page={{page}}&perPage=30&category=yinyue&subcategory=yingshiyuansheng\n       ::",
    "lastUpdateTime": 1759589386621,
    "respondTime": 2116,
    "ruleBookInfo": {
      "intro": "$.album.intro"
    },
    "ruleContent": {
      "content": "@js:baseUrl"
    },
    "ruleExplore": {
      "author": "anchorName",
      "bookList": "$..albums.*",
      "bookUrl": "link@js:\"http://mobile.ximalaya.com/mobile/others/ca/album/track/\" + result.split('/')[2]+'/true/1/200'",
      "coverUrl": "coverPath",
      "intro": "收听{$.playCount}  共{$.trackCount}章",
      "name": "title",
      "wordCount": "@js:if({{$.isFinished}}==1){if({{$.isPaid}}){'已完结💰'}else{'已完结'}}else{if({{$.isPaid}}){'连载💰'}else{'连载'}}"
    },
    "ruleSearch": {
      "author": "$.nickname",
      "bookList": "$..docs.*",
      "bookUrl": "$.url@js:\"http://mobile.ximalaya.com/mobile/others/ca/album/track/\" + result.split('/')[2]+'/true/1/200'",
      "coverUrl": "$.cover_path",
      "intro": "$.intro",
      "kind": "$.category_title&&$.tags",
      "name": "$.title",
      "wordCount": "播放数{$.play}  共{$.tracks}集"
    },
    "ruleToc": {
      "chapterList": "$.tracks.list",
      "chapterName": "title",
      "chapterUrl": "playPathAacv224||playPathAacv164||playUrl64||playUrl32",
      "nextTocUrl": "@js:\nbaseUrl = String(baseUrl).split('1/200')[0];\nlist = [];\npage=JSON.parse(String(result)).tracks.maxPageId\nfor(var i = 2; i < 10; ++i){\nlist.push(String(baseUrl +i+\"/200\"));\n}\nlist"
    },
    "searchUrl": "https://www.ximalaya.com/revision/search?core=album&spellchecker=true&rows=20&condition=relation&device=iPhone&fq=&paidFilter=false&kw={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "搜索无效，只能添加网址",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎈路人书",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.lurenshuwx.com",
    "bookUrlPattern": "https://www.leiyungewx.com.*?\\.shtml",
    "customButton": false,
    "customOrder": 451,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1668258334079,
    "respondTime": 1802,
    "ruleBookInfo": {
      "author": "class.excerpt@tag.a.1@text##的小说",
      "init": "",
      "intro": "class.excerpt@html",
      "kind": "class.excerpt@tag.a.0@text",
      "lastChapter": "tag.h2.1@tag.a.1@text",
      "name": "tag.h1@text##章节$",
      "tocUrl": "text.全文阅读@href"
    },
    "ruleContent": {
      "content": "<js>\nif(result.match(/text=new Array\\(\".*?\"\\)/)){\ncon=\"\"\neval(result.match(/text=new Array\\(\".*?\"\\)/)[0]);\nfor(var i=0;i<text.length;i++){con +=text[i];}con=String(java.base64Decode(con));\nresult=con\n}else{\n\tresult=result\n\t}\n</js>\nid.content@html",
      "nextContentUrl": "<js>\nif(result.match(/text=new Array\\(\".*?\"\\)/)){\ncon=\"\"\neval(result.match(/text=new Array\\(\".*?\"\\)/)[0]);\nfor(var i=0;i<text.length;i++){con +=text[i];}con=String(java.base64Decode(con));\nresult=con\n}else{\n\tresult=result\n\t}\n</js>\ntext.下一页@href"
    },
    "ruleExplore": {
      "bookList": ""
    },
    "ruleSearch": {
      "bookList": "class.clearfix!0@class.min-width",
      "bookUrl": "text.全文阅读@href||tag.a.0@href",
      "lastChapter": "ownText##\\[|\\]：",
      "name": "tag.a.1@text##章节$|完整版.*|小说|最新章节"
    },
    "ruleToc": {
      "chapterList": "<js>\nif(result.match(/text=new Array\\(\".*?\"\\)/)){\ncon=\"\"\neval(result.match(/text=new Array\\(\".*?\"\\)/)[0]);\nfor(var i=0;i<text.length;i++){con +=text[i];}con=String(java.base64Decode(con));\nresult=con\n}else{\n\tresult=result\n\t}\n</js>\nclass.chapters@li@a",
      "chapterName": "text##章节目录",
      "chapterUrl": "href"
    },
    "searchUrl": "/book/Search.aspx?key={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "独步小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.dbxsz.com",
    "customButton": false,
    "customOrder": 452,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "玄幻.奇幻::nav/xh-qh-{{page}}.html\n科幻.游戏::nav/kh-yx-{{page}}.html\n仙侠.武侠::nav/xx-wx-{{page}}.html\n女生.言情::nav/ns-yq-{{page}}.html\n都市.娱乐::nav/ds-yl-{{page}}.html\n历史.军事::nav/ls-js-{{page}}.html\n悬疑.灵异::nav/xy-ly-{{page}}.html\n耽美.纯爱::nav/dm-ca-{{page}}.html\n轻小说::nav/qxs-{{page}}.html",
    "header": "{\n\t'User-Agent': \"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36 EdgA/127.0.0.0\"\n}",
    "lastUpdateTime": 1784021610831,
    "respondTime": 10642,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{i}",
      "init": "@put:{n:\"[property$=og:title]@content\",\na:\"[property$=author]@content\",\nc:\"[property~=category|status|update_time]@content\",\nl:\"[property$=latest_chapter_name]@content||[property$=lastest_chapter_name]@content\",\nd:\"class.book-detail@text\",\ni:\"[property$=image]@content\"}",
      "intro": "@get:{d}",
      "kind": "@get:{c}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}"
    },
    "ruleContent": {
      "content": "#cont-body@p@text",
      "nextContentUrl": "class.col-md-6 text-center@a.-1@href"
    },
    "ruleExplore": {
      "bookList": "class.col-md-12 b10@class.media",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": "class.media-info@text",
      "name": "class.media-title@a@text"
    },
    "ruleSearch": {
      "author": "td.1@text",
      "bookList": "tbody@tr",
      "bookUrl": "td.0@a@href",
      "name": "td.0@a@text"
    },
    "ruleToc": {
      "chapterList": "class.col-md-6 item@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/plus/search.php?q={{key}},\n{\"body\": \"id\"=\"search-form\"}",
    "weight": 2
  },
  {
    "bookSourceComment": "finalbooks.work\nshellbook.cc",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "紫云宫ᵃ",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.ziyunbook.com",
    "customButton": false,
    "customOrder": 453,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nhost=baseUrl;\nsort=[];\nfunction push(title,url,type1,type2){\n\tvar item={\n\t\ttitle:title,\n\t\turl:url\n\t};\n\tif (type1!==undefined&&type2!==undefined){\n\t\titem.style={\n\t\t\tlayout_flexGrow:type1,\n\t\t\tlayout_flexBasisPercent:type2}\n\t}\n\tsort.push(item)\n};\nconst sections=[\n\t{\n\t\ttitle:\"🌀紫云宫🌀\",\n\t\tcategories:[\n\t\t\t{title:\"舞文\",id:40},\n\t\t\t{title:\"情感\",id:41},\n\t\t\t{title:\"杂谈\",id:42},\n\t\t\t{title:\"鬼话\",id:43},\n\t\t\t{title:\"历史\",id:34},\n\t\t\t{title:\"武侠\",id:2},\n\t\t\t{title:\"当代\",id:24},\n\t\t\t{title:\"商道\",id:47},\n\t\t\t{title:\"杂文\",id:21},\n\t\t\t{title:\"文学\",id:8},\n\t\t\t{title:\"传记\",id:11},\n\t\t\t{title:\"军事\",id:45},\n\t\t\t{title:\"中国\",id:27},\n\t\t\t{title:\"政治\",id:30},\n\t\t\t{title:\"社会\",id:28},\n\t\t\t{title:\"纪实\",id:25},\n\t\t\t{title:\"官场\",id:13},\n\t\t\t{title:\"文化\",id:20},\n\t\t\t{title:\"战争\",id:37},\n\t\t\t{title:\"现代\",id:36},\n\t\t\t{title:\"逻辑\",id:18},\n\t\t\t{title:\"创业\",id:16}\n\t\t]\n\t},\n\t{\n\t\ttitle:\"🌀白马楼🌀\",\n\t\tcategories:[\n\t\t\t{title:\"私密\",id:6,host:\"{{host1}}\"},\n\t\t\t{title:\"精品\",id:23,host:\"{{host1}}\"}\n\t\t]\n\t}\n];\nsections.forEach(section=>{\n\tpush(section.title,\"\",1,1);\n\tsection.categories.forEach(category=>{\n\t\tconst baseHost=category.host||host;\n\t\tconst url=`${baseHost}/rank/month/${category.id}/{{page}}.html`;\n\t\tpush(category.title,url)\n\t});\n});\nJSON.stringify(sort)",
    "jsLib": "//白马楼\nvar host1='https://www.baimalook.com'\nvar host2='https://www.zongcai666.com'\nvar host3='https://www.feiwenge.com'\nvar host4='https://www.everfyq.com'\nvar host5='https://www.360lele.cc'",
    "lastUpdateTime": 32500886400000,
    "respondTime": 6421,
    "ruleBookInfo": {
      "author": "[property=og:novel:author]@content",
      "intro": "[property=og:description]@content##^《.*?(是由.*?书籍|作者是{{book.author}})。",
      "kind": "[property=og:novel:category],[property=og:novel:status]@content",
      "tocUrl": "{{baseUrl}}catalog/"
    },
    "ruleContent": {
      "content": "<js>\nfunction dec(encData,rawKey){\n\tvar key=java.md5Encode(rawKey);\n\treturn java.aesBase64DecodeToString(encData,key.substring(16),\"AES/CBC/PKCS5Padding\",key.substring(0,16))\n};\nvar m=src.match(/d\\(\"([^\"]+)\",\\s*\"([^\"]+)\"\\)/);\nresult=dec(m[1],m[2]).replaceAll(/[\\u200A-\\u200F]/,\"\")\n</js>"
    },
    "ruleExplore": {
      "author": ".b@text",
      "bookList": ".book_list_img li,.CGsectionTwo-right-content>div",
      "bookUrl": "a@href",
      "intro": "p[-2]@text##^《.*?(是由.*?书籍|作者是{{book.author}})。",
      "name": "img@alt||.r@text"
    },
    "ruleSearch": {
      "author": "a[-1]@text",
      "bookList": ".SHsectionThree-middle p:not(.intro)",
      "bookUrl": "a[1]@href",
      "intro": "@js:result.nextElementSibling()",
      "kind": "a[0]@text",
      "name": "a[1]@text"
    },
    "ruleToc": {
      "chapterList": "ol li\n@js:\nvar list=[],links=result.select(\"a\"),regex=/(\\w+-\\w+)(?==\")/g;\nfor (i=0;i<links.length;i++){\n\tlink=links[i];\n\taAttrs=String(link).match(regex);\n\tvar text='',decUrl='';\n\tfor (key of aAttrs){\n\t\tvalue=link.attr(key);\n\t\tvalue.includes(\"L2J\")?decUrl=java.base64Decode(value):text=value.trim()\n\t}\n\tliAttrs=String(result[i]).match(regex);\n\tlist.push({\n\t\ttext:text,\n\t\thref:decUrl,\n\t\tnum:result[i].attr(liAttrs[1])\n\t});\n}\nlist.sort((a,b)=>a.num-b.num)",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "#end@href\n@js:\ntry{\n\tmaxPage=0;\n\ttempUrl=String(result[0]).replace(/\\/(\\d+)\\.html$/,(_match,_$1)=>{\n\t\tmaxPage=_$1;\n\t\treturn '/$page.html'\n\t});\n\tresult=[];\n\tfor (let i=2;i<=maxPage;i++){\n\t\tresult.push(tempUrl.replace(/\\$page/,i))\n\t}\n\tresult\n}catch(err){\n\t[]\n}"
    },
    "searchUrl": "/search/{{key}}/{{page}}/",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "泡书吧⓪",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.paoshu9.com",
    "customButton": false,
    "customOrder": 454,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko, By Black Prism) Chrome/99.0 Safari/537.36\"\n}",
    "lastUpdateTime": 1673436344379,
    "loginUrl": "",
    "respondTime": 1076,
    "ruleBookInfo": {
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.intro@html",
      "lastChapter": ""
    },
    "ruleContent": {
      "content": "id.content@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.odd.1@text",
      "bookList": "id.nr",
      "bookUrl": "class.odd.0@tag.a@href",
      "intro": "",
      "kind": "class.even.2@text##中",
      "lastChapter": "class.even@tag.a@text",
      "name": "class.odd.0@tag.a@text",
      "wordCount": "class.even.1@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "去看小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.7kbook.com",
    "bookUrlPattern": "http://www.7kbook.com/\\d+/\\d+/",
    "customButton": false,
    "customOrder": 455,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"⭕分类小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"首页\",\n    \"url\": \"/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/list1/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/list2/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/list3/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/list4/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/list5/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/list6/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/list7/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/list8/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕完结小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/full/1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/full/2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/full/3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/full/4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/full/5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/full/6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/full/7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/full/8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕排行榜⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"周榜\",\n    \"url\": \"/top/week_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月榜\",\n    \"url\": \"/top/month_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总榜\",\n    \"url\": \"/top/all_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/top/all_1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/top/all_2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/top/all_3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/top/all_4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/top/all_5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/top/all_6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/top/all_7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/top/all_8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "lastUpdateTime": 1787020149629,
    "respondTime": 10666,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content&&\n[property=\"og:novel:status\"]@content&&\n[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:title\"]@content##小说全文免费阅读完整版|小说全集|最新.*"
    },
    "ruleContent": {
      "content": "class.font_max@html",
      "nextContentUrl": "text.下一@href",
      "replaceRegex": "##本章未完.*|第.*[(1/2)]页|(?:[^\\u4E00-\\u9FA5\\s！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}(?<![\\.．点丶。])[\\.．点丶。]{1,2}(?![\\.．点丶。])(?:[^A-Z\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])(?:[^\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])+|(?:[^\\u4E00-\\u9FA5\\n！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}[\\.．点丶。](?:[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[oO][^\\n\\u4E00-\\u9FA5A-z]*[mM]|[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[nN]|[^\\n\\u4E00-\\u9FA5A-z]*[nN][^\\n\\u4E00-\\u9FA5A-z]*[eE][^\\n\\u4E00-\\u9FA5A-z]*[tT])(?![A-z])"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "dd.1@span.0@text",
      "bookList": ".col-md-6@dl",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "kind": "dd.2:3@text##.*：|.*：",
      "lastChapter": "dd.4@a@text",
      "name": "h3@a@text##.*\\]|小说全文阅读|小说全集"
    },
    "ruleToc": {
      "chapterList": ".book_list2 li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": ".page-link@a@href\n@js:\nnext = [];\nurl = result[0];\nlength = result.length;\np = src.match(/page-link\">1\\/(\\d+)/)||[];\npage = Number(p[1]);\nif(length < page){\n\tfor(i = 2; i <= page; i++){\n\t\tlink = String(url).replace(/_\\d+/,`_${i}`);\n\t\tnext.push(link)\n\t\t}\n\t\tnext;\n\t}else result"
    },
    "searchUrl": "/search.php?q={{key}}&p={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "@jin1987：连载期不太好用",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🌸米读小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.miduxs.com",
    "bookUrlPattern": "http://m.miduxs.com/shu/\\d+.html",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 456,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 7.0; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/48.0.2564.116 Mobile Safari/537.36 T7/10.3 SearchCraft/2.6.2 (baiduboxapp; P1 7.0)\"}",
    "lastUpdateTime": 1742827777290,
    "loginUrl": "",
    "respondTime": 13255,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "canReName": "true",
      "coverUrl": "",
      "init": "@put:{n:\"[property$=book_name]@content\",\n\ta:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property$=latest_chapter_name]@content\",\ni:\"[property$=description]@content\"}",
      "intro": "@get:{i}##简介：\\s+",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "#nr1@html",
      "imageStyle": "FULL",
      "nextContentUrl": "text.下一页@class\n@js:\nvar go=result[0];\nif(go){\nvar jst =java.getElements(\"script\");\nvar to=String(jst);\nvar url=to.match(/var.*= \"(.+)\"/);\nif(url&&url[1]){\n\tvar next=url[1];\n\tresult=next;\n\t}else{result=\"\";}\n\t\t}else{result=\"\";}\nresult.replace(/__/,'_')",
      "replaceRegex": "##\\s*(本章未完.+继续阅读.*|.*牢记米读小说.*)\\s*",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "bookList": "",
      "bookUrl": ""
    },
    "ruleSearch": {
      "author": ".s3@text",
      "bookList": ".lis@li",
      "bookUrl": "a@href",
      "checkKeyWord": "剑来",
      "coverUrl": "",
      "intro": "",
      "kind": ".s1@text##\\[|\\]",
      "lastChapter": "",
      "name": "a@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "ul.1@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "isVip": "",
      "nextTocUrl": "option@value||text.下一页@href",
      "updateTime": ""
    },
    "searchUrl": "<js>\nurl = source.getVariable()!=\"\"?source.getVariable():source.key;\nresponse = java.get(url,{\"User-Agent\": \"Mobile\"})\nif(/^30/.test(response.statusCode())){\n\t source.setVariable(response.header(\"Location\"));\n\t url = source.getVariable()\n\t}\n\nsurl = url+\"search\";\nheader = {\n  \"headers\": {\"Referer\":surl},\n  \"method\": \"POST\",\n  \"body\": \"kw={{key}}&_token=\"+java.ajax(url).match(/=\\\"_token\\\" value=\\\"(.*?)\"/)[1]\n}\nsurl+\",\"+JSON.stringify(header)\n</js>",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "陌上阁m",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.xszww8.net",
    "customButton": false,
    "customOrder": 457,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "header": " { \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.1.0) Mobile Safari/537.36\",\n\"referer\":\"https://m.xszww8.net/\"\n}",
    "lastUpdateTime": 1773056017868,
    "respondTime": 4624,
    "ruleBookInfo": {
      "author": ".dd_box.0@span.0@text##作者：",
      "kind": ".dd_box.0@span.1@text##分类：",
      "lastChapter": ".book_last.0 dl@dd.0@a@text",
      "name": ".name@text"
    },
    "ruleContent": {
      "content": "#chaptercontent@html##陌上阁阅读网址.*|m.xszww8.net|第.*3\\)页|{{chapter.title}}",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".s3@text",
      "bookList": ".lis li",
      "bookUrl": ".s2 a@href",
      "kind": ".s1@text##\\[|\\]",
      "name": ".s2 a@text"
    },
    "ruleToc": {
      "chapterList": ".book_last.1@dl@dd@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "https://m.xszww8.net/search.php?keyword={{key}}",
    "weight": 2
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁#29",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.biqusk.net",
    "customButton": false,
    "customOrder": 458,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko, By Black Prism) Chrome/99.0 Safari/537.36\"\n}",
    "lastUpdateTime": 1787070696220,
    "respondTime": 1556,
    "ruleBookInfo": {
      "tocUrl": "a.ptm-btn-outlined@href"
    },
    "ruleContent": {
      "content": "div.chaptercontent@html",
      "nextContentUrl": "a.ptm-btn-primary:contains(下一页)@href",
      "replaceRegex": "##最新网址：m\\.biqugei\\.org|第[一二三四五六七八九十百千万零\\d]+章[^\\n\\r]*|[一二三四五六七八九十百千万零\\d]+：[^\\n\\r]*|\\d+[^\\n\\r（]*（[^）]*）|\\d+[^\\n\\r\\d（]{2,}|\\(第\\d+/\\d+页\\)|（本章未完，请点击下一页继续阅读）##"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "div.pt-info:contains(作者:) a@text",
      "bookList": "div.baseinfo",
      "bookUrl": "@href",
      "coverUrl": "div.baseinfo img@src",
      "kind": "div.pt-info:contains(分类:) a@text",
      "name": "h1.pt-name a@text"
    },
    "ruleToc": {
      "chapterList": "ul.ptm-list-view li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": ".ptm-card-footer a:contains(下一页)@href"
    },
    "searchUrl": "http://m.biqusk.net/search.html?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "民国奇人#0",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.minguoqiren.la",
    "bookUrlPattern": "http://www.minguoqiren.la/xs/\\d+/",
    "customButton": false,
    "customOrder": 459,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787069294222,
    "respondTime": 824,
    "ruleBookInfo": {
      "author": "class.info@class.small@tag.span.0@text",
      "coverUrl": "class.cover@img@src",
      "intro": "class.info@ownText",
      "kind": "class.info@class.small@tag.span.4@text&&\nclass.info@class.small@tag.span.1@text&&\nclass.info@class.small@tag.span.2@text##分类：|状态：|更新时间：",
      "lastChapter": "class.info@class.small@tag.span.5@a@text",
      "name": "class.info@h2@text",
      "wordCount": "class.info@class.small@tag.span.3@text##字数："
    },
    "ruleContent": {
      "content": "id.content@html##http.*html|请记住本书首发.*org",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.author@text",
      "bookList": "class.bookbox",
      "bookUrl": "h4@a@href",
      "coverUrl": "img@src",
      "lastChapter": "class.update@a@text",
      "name": "h4@a@text"
    },
    "ruleToc": {
      "chapterList": "class.listmain@dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://www.minguoqiren.la/s.php?ie=utf-8&s=000000&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "// 2025/1/9 by天天的鸟蛋蛋 修复正文下一页\n我的方法\n@js:\nvar JsDom = Packages.org.jsoup.Jsoup;\nvar Document = Packages.org.jsoup.nodes.Document;\nvar Element = Packages.org.jsoup.nodes.Element;\nvar document = JsDom.parse(src);\nvar png = /next.png/.test(src);\nvar matchResult = src.match(/eval(.function.*)/);\nvar next = matchResult ? matchResult[1] : \"\";\nvar url = next ? eval(next) : \"\";\njava.log(url);\nif (url) {\n    \n    var nextChapterElement = document.select(\"*:contains(下一章)\").first();\n    \n    if (nextChapterElement) {\n        java.log(\"找到下一章，停止执行。\");\n    } else {\n        eval(url.replace(/var/, \"\"));\n    }\n}\n@关耳 的方法\n@js:\nif(java.getString(\"@text.下一章@text\")==\"\"){\nvar png=/next.png/.test(src);\nnext=png?src.match(/eval(.function.*)/)[1]:\"\";\nvar url=next?eval(next):\"\";\n//java.log(url)\nresult = url?eval(url.replace(/var/,\"\")):\"\"\n}",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "中文看",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.zwkan.cc",
    "customButton": false,
    "customOrder": 460,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::/xuanhuanqihuan/<,{{page}}.html>\n仙侠::/wuxiaxianxia/<,{{page}}.html>\n都市::/dushiyanqing/<,{{page}}.html>\n历史::/lishijunshi/<,{{page}}.html>\n科幻::/kehuanchuanqi/<,{{page}}.html>\n恐怖::/kongbulingyi/<,{{page}}.html>\n其他::/qitaleixing/<,{{page}}.html>\n全本::/quanben/<,{{page}}.html>",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1745153755734,
    "respondTime": 25998,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "downloadUrls": "text.TXT下载@href",
      "intro": "[property=\"og:description\"]@content\n##简介：",
      "kind": "[property=\"og:novel:category\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "#nr1@p@ownText",
      "nextContentUrl": "@js:\nvar JsDom = Packages.org.jsoup.Jsoup;\nvar Document = Packages.org.jsoup.nodes.Document;\nvar Element = Packages.org.jsoup.nodes.Element;\n\nvar document = JsDom.parse(src);\n\nvar png = /next.png/.test(src);\nvar matchResult = src.match(/eval(.function.*)/);\nvar next = matchResult ? matchResult[1] : \"\";\nvar url = next ? eval(next) : \"\";\njava.log(url);\n\nif (url) {\n    \n    var nextChapterElement = document.select(\"*:contains(下一章)\").first();\n    \n    if (nextChapterElement) {\n        java.log(\"找到下一章，停止执行。\");\n    } else {\n        eval(url.replace(/var/, \"\"));\n    }\n}\n\n",
      "replaceRegex": "##\\s*本章未完.*\\s*|\\s*《.*?》,牢记网址:wap.zwkan.cc",
      "webJs": ""
    },
    "ruleExplore": {
      "author": ".s3@text",
      "bookList": ".lis@li",
      "bookUrl": "a@href",
      "coverUrl": "@js:\"/images/default.jpg\"",
      "kind": ".s1@text##\\[|\\]",
      "name": "a@text"
    },
    "ruleSearch": {
      "author": ".s3@text",
      "bookList": ".lis@li",
      "bookUrl": ".s2@a@href",
      "checkKeyWord": "剑来",
      "coverUrl": "@js:\"/images/default.jpg\"",
      "kind": ".s1@text##\\[|\\]",
      "name": ".s2@a@text"
    },
    "ruleToc": {
      "chapterList": ".chapter.1@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "option@value||text.下一页@href"
    },
    "searchUrl": "@js:\n\nhtml = java.ajax(source.getKey())\n\ntoken = org.jsoup.Jsoup.parse(html).select('input[name=_token]').attr('value')\n\n\"/search,\"+JSON.stringify({\n  \"body\": `_token=${token}&kw=${key}`,\n  \"method\": \"POST\"\n})",
    "weight": 0
  },
  {
    "bookSourceComment": "修复：选择器层级语法，封面拼接逻辑优化，补全匹配规则",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "笔趣阁#35",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xbiquwk.com/",
    "bookUrlPattern": "https://www\\.xbiquwx\\.la/\\d+_\\d+/",
    "customButton": false,
    "customOrder": 461,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/list/1_{{page}}.html\n修真小说::/list/2_{{page}}.html\n都市小说::/list/3_{{page}}.html\n穿越小说::/list/4_{{page}}.html\n网游小说::/list/5_{{page}}.html\n科幻小说::/list/6_{{page}}.html",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36\"\n}",
    "lastUpdateTime": 1787070738160,
    "respondTime": 1440,
    "ruleBookInfo": {
      "author": "#info p:eq(0)@text##作 者:##",
      "coverUrl": "#fmimg img@src",
      "intro": "#intro p:eq(0)@text",
      "kind": "#info p:eq(1)@text&&\n#info p:eq(2)@text##类 别:|最后更新 :##",
      "lastChapter": "#info p:eq(3) a@text##免费章节 |正文卷 |正文 |VIP章节 ##",
      "name": "#info h1@text"
    },
    "ruleContent": {
      "content": "#content@textNodes"
    },
    "ruleExplore": {
      "author": ".s4@text",
      "bookList": ".l li",
      "bookUrl": ".s2 a@href",
      "coverUrl": ".s2 a@href<js>\nvar id = result.match(/_(\\d+)/)[1];\nvar iid = parseInt(id/1000);\n'http://www.xbiquwk.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": ".s5@text",
      "lastChapter": ".s3 a@text",
      "name": ".s2 a@text"
    },
    "ruleSearch": {
      "author": ".odd:eq(1)@text",
      "bookList": ".grid tr:not(:eq(0))",
      "bookUrl": ".odd:eq(0) a@href",
      "coverUrl": ".odd:eq(0) a@href<js>\nvar id = result.match(/_(\\d+)/)[1];\nvar iid = parseInt(id/1000);\n'http://www.xbiquwk.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": ".even:eq(0) a@text##免费章节 |正文卷 |正文 |VIP章节 ##",
      "name": ".odd:eq(0) a@text",
      "wordCount": ".even:eq(1)@text"
    },
    "ruleToc": {
      "chapterList": "#list dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://www.xbiquwk.com/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "by二月无雪添加发现页",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔下文学",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.hen0.com/",
    "customButton": false,
    "customOrder": 463,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "最近更新::/\n玄幻奇幻::/sort/1-1.html\n仙侠武侠::/sort/2-1.html\n都市言情::/sort/3-1.html\n军事历史::/sort/4-1.html\n网游游戏::/sort/5-1.html\n科幻小说::/sort/6-1.html\n灵异悬疑::/sort/7-1.html\n穿越架空::/sort/8-1.html\n耽美其他::/sort/9-1.html",
    "lastUpdateTime": 1784645616655,
    "respondTime": 3171,
    "ruleBookInfo": {
      "author": "class.book-author@text",
      "coverUrl": "class.book-cover-large@src",
      "intro": "class.book-tags@html",
      "kind": "class.label!-1:-2@text##.*?：",
      "name": "class.book-title@text"
    },
    "ruleContent": {
      "content": "@js:\nresult.match(/#chapter-content .p_\\d+::after{content:'[^']+'}/g).map(x=>{\n\treturn x.match(/:'([^']+)'/)[1]\n\t}).join(\"\\n\")+\"本章未完，下一页\"",
      "nextContentUrl": "class.text-end@a@href",
      "replaceRegex": "##\\s*本章未完，下一页\\s*"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "<js>\nvar doc = org.jsoup.Jsoup.parse(String(result), baseUrl);\nvar arr = [];\nvar seen = {};\n// 1. 封面推荐卡片 .col-md-6.mb-3\nvar cards = doc.select(\".col-md-6.mb-3\");\nfor(var i=0;i<cards.size();i++){\n  var card = cards.get(i);\n  var titleA = card.select(\"h6.book-title a\").first();\n  if(titleA == null) continue;\n  var url = titleA.attr(\"abs:href\");\n  if(url === \"\" || seen[url]) continue;\n  seen[url] = true;\n  var name = titleA.text().trim();\n  var authorEl = card.select(\"p.book-author\").first();\n  var author = authorEl ? authorEl.text().replace(\"作者：\",\"\").trim() : \"\";\n  var coverEl = card.select(\"img.book-cover\").first();\n  var cover = coverEl ? coverEl.attr(\"abs:src\") : \"\";\n  var introEl = card.select(\"p.book-desc\").first();\n  var intro = introEl ? introEl.text().trim() : \"\";\n  if(name !== \"\") arr.push({name:name, author:author, url:url, coverUrl:cover, intro:intro});\n}\n// 2. 最新入库列表 ul.new-book-list li\nvar newItems = doc.select(\"ul.new-book-list li\");\nfor(var i=0;i<newItems.size();i++){\n  var li = newItems.get(i);\n  var a = li.select(\"a\").first();\n  if(a == null) continue;\n  var url = a.attr(\"abs:href\");\n  if(url === \"\" || seen[url]) continue;\n  seen[url] = true;\n  var name = a.text().trim();\n  var span = li.select(\"span\").first();\n  var author = span ? span.text().trim() : \"\";\n  if(name !== \"\") arr.push({name:name, author:author, url:url, coverUrl:\"\", intro:\"\"});\n}\n// 3. 编辑推荐列表 ul.latest-list li\nvar latestItems = doc.select(\"ul.latest-list li\");\nfor(var i=0;i<latestItems.size();i++){\n  var li = latestItems.get(i);\n  var a = li.select(\"a.latest-title\").first();\n  if(a == null) continue;\n  var url = a.attr(\"abs:href\");\n  if(url === \"\" || seen[url]) continue;\n  seen[url] = true;\n  var name = a.text().trim();\n  var span = li.select(\"span.latest-author\").first();\n  var author = span ? span.text().trim() : \"\";\n  if(name !== \"\") arr.push({name:name, author:author, url:url, coverUrl:\"\", intro:\"\"});\n}\n// 4. 最近更新表格 table.update-table tbody tr\nvar rows = doc.select(\"table.update-table tbody tr\");\nfor(var i=0;i<rows.size();i++){\n  var tr = rows.get(i);\n  var tds = tr.select(\"td\");\n  if(tds.size() < 2) continue;\n  var a = tds.get(0).select(\"a\").first();\n  if(a == null) continue;\n  var url = a.attr(\"abs:href\");\n  if(url === \"\" || seen[url]) continue;\n  seen[url] = true;\n  var name = a.text().trim();\n  var author = tds.get(1).text().trim();\n  var lastCh = tds.size() > 2 ? tds.get(2).text().trim() : \"\";\n  if(name !== \"\") arr.push({name:name, author:author, url:url, coverUrl:\"\", intro:lastCh});\n}\nJSON.stringify(arr)\n</js>\n$.[*]",
      "bookUrl": "$.url",
      "coverUrl": "$.coverURL",
      "intro": "$.intro",
      "name": "$.name"
    },
    "ruleSearch": {
      "author": "td.1@text",
      "bookList": "tr!0",
      "bookUrl": "tag.a.0@href",
      "checkKeyWord": "++https://www.hen0.com/book/610919/",
      "kind": "td.4@text",
      "lastChapter": "td.2@text",
      "name": "tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": ":p_(\\d+)::after\\{content:'([^']+)'\\}",
      "chapterName": "$2",
      "chapterUrl": "$1.html",
      "nextTocUrl": "##<a href=\"([^\"]+)\" class=\"onclick\">下一页##$1###"
    },
    "searchUrl": "https://www.hen0.com/search.html,{\n\"method\":\"POST\",\n\"body\":\"searchkey={{key}}\",\n\"charset\":\"gbk\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "半废了。但还可用。\n大概最新的十章+不能看。\nby.Thomas哟\n小说交流群462030508。\nA群637775313不加人。若家炸了查看此群群资料找新家。\n✱✱资源取自网络，仅供学习参考，请同学们在24小时内删除✱✱\n🆙💯Dragon Quest QB\n{{book.origin}}/wenxue/buy/ad-chapter/v4?apn=1&resourceId={{baseUrl.match(/bookId=(\\d+)/)[1]}}&serialId={{$.serialID}}\n",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "QB女生",
    "bookSourceType": 0,
    "bookSourceUrl": "Dragon",
    "customButton": false,
    "customOrder": 464,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"✲　　　　　　✲ 现代言情 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"婚恋情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=婚恋情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"豪门世家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=豪门世家\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市生活\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=都市生活\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"娱乐明星\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=娱乐明星\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市异能\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=都市异能\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"商战职场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=商战职场\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"民国情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=民国情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"官场沉浮\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=官场沉浮\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 古代言情 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典架空\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=古典架空\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"穿越奇情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=穿越奇情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古代情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=古代情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宫闱宅斗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=宫闱宅斗\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经商种田\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=经商种田\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女尊王朝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=女尊王朝\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"热血江湖\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=热血江湖\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"上古蛮荒\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=上古蛮荒\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 悬疑侦探 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"推理侦探\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=推理侦探\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"悬疑探险\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=悬疑探险\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神秘文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=神秘文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"恐怖惊悚\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=恐怖惊悚\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"幽冥情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=幽冥情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 仙侠奇缘 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典仙侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=古典仙侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"仙侣奇缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=仙侣奇缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=武侠情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=现代修真\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"远古洪荒\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=远古洪荒\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 玄幻言情 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"东方玄幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=东方玄幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异世大陆\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=异世大陆\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"魔法幻情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=魔法幻情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异能超术\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=异能超术\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异族恋情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=异族恋情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"西方奇幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=西方奇幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"远古神话\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=远古神话\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 浪漫青春 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春校园\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=青春校园\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春纯爱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=青春纯爱\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春疼痛\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=青春疼痛\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"叛逆成长\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=叛逆成长\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 科幻空间 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时空穿梭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=时空穿梭\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"末世危机\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=末世危机\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"未来世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=未来世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"星际恋歌\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=星际恋歌\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"超级科技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=超级科技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"进化变异\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=进化变异\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武机甲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=古武机甲\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 游戏竞技 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"网游情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=网游情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电子竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=电子竞技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏异界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=游戏异界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"体育竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=体育竞技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"✲　　　　　　✲ 纯爱 ✲　　　　　　✲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"婚恋情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=婚恋情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时空穿梭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=时空穿梭\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"穿越奇情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=穿越奇情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典架空\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=古典架空\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古代情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=古代情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市生活\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=都市生活\",\"style\":{\"layout_flexGrow\":1}}]",
    "header": "{\n\t\"user-agent\":\"Mozilla/5.0 (Linux; Android 10; MI 8 Build/QKQ1.190828.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.101 Mobile Safari/537.36\",\n\t\"Referer\":\"https://bookshelf.html5.qq.com/qbread\"\n\t}",
    "lastUpdateTime": 1782368160803,
    "respondTime": 2038,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$.picurl",
      "init": "$.data.bookInfo",
      "intro": "<p>{{(t=String(java.getString('$.tag'))).length?'🏷️ '+t.replace(/\\|/g,', '):''}}</p>{{'\\n&lrm;'}}\n<p>{{$.summary}}</p>",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{java.put('time',String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,''))}}",
      "lastChapter": "{{$.lastSerialname}} • {{java.get('time')}}",
      "name": "$.resourceName",
      "tocUrl": "https://bookshelf.html5.qq.com/qbread/api/book/all-chapter?bookId={{$.resourceID}}",
      "wordCount": "$.contentsize"
    },
    "ruleContent": {
      "content": "<p>{{$.data.Content[0].Content}}</p>"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.rows[*]",
      "bookUrl": "https://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{$.resourceID}}",
      "coverUrl": "$.picurl",
      "intro": "$.summary",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,'')}}",
      "lastChapter": "$.lastSerialname",
      "name": "$.resourceName##（.*",
      "wordCount": "$.contentsize"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.data.state[?(@.dataName == 'novel_search_list')].items[*]",
      "bookUrl": "https://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{$.docId##.*_}}",
      "checkKeyWord": "大王饶命",
      "coverUrl": "$.cover_url",
      "intro": "$.abstract",
      "kind": "{{$.tag_views##\\s+##,}}\n{{java.getString('$.is_finished')==1?'已完结':'连载中'}}",
      "name": "$.title"
    },
    "ruleToc": {
      "chapterList": "$.rows",
      "chapterName": "$.serialName",
      "chapterUrl": "https://novel.html5.qq.com/be-api/content/ads-read,{\n\t\"method\": \"POST\",\n\t\"body\": {\n\t\t\"Scene\": \"chapter\",\n\t\t\"ContentAnchorBatch\": [{\n\t\t\t\t\"BookID\": \"{{baseUrl.match(/bookId=(\\d+)/)[1]}}\",\n\t\t\t\t\"ChapterSeqNo\": [{{$.serialID}}]\n\t\t\t}]\n\t},\n\t\"headers\": {\n\t\t\"Q-GUID\": \"4aa27c7cf2d9aca3359656ea186488cb\"\n\t}\n}",
      "isPay": "$.isFree",
      "isVip": "//删掉这行字，vip章节会显示🔓\n$.isFree"
    },
    "searchUrl": "https://so.html5.qq.com/ajax/real/search_result?tabId=360&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🔞",
    "bookSourceName": "18文学",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.gb84.com",
    "customButton": false,
    "customOrder": 465,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"排  行\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"总点击榜\",\"url\":\"/top/allvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月点击榜\",\"url\":\"/top/monthvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周点击榜\",\"url\":\"/top/weekvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总推荐榜\",\"url\":\"/top/allvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月推荐榜\",\"url\":\"/top/monthvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周推荐榜\",\"url\":\"/top/weekvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"本站推荐\",\"url\":\"/top/toptime/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"收藏排行\",\"url\":\"/top/goodnum/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"字数排行\",\"url\":\"/top/size/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最近更新\",\"url\":\"/top/lastupdate/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最新小说\",\"url\":\"/top/postdate/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"分  类\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"校园言情\",\"url\":\"/list/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市言情\",\"url\":\"/list/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代言情\",\"url\":\"/list/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"罗曼史\",\"url\":\"/list/4/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"耽美\",\"url\":\"/list/5/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"百合\",\"url\":\"/list/6/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"同人\",\"url\":\"/list/7/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奇幻玄幻\",\"url\":\"/list/8/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游竞技\",\"url\":\"/list/9/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻异能\",\"url\":\"/list/10/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"恐怖灵异\",\"url\":\"/list/11/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"惊悚推理\",\"url\":\"/list/12/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠仙侠\",\"url\":\"/list/13/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史军事\",\"url\":\"/list/14/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越重生\",\"url\":\"/list/15/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"综合其他\",\"url\":\"/list/16/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"完本小说\",\"url\":\"/wanben/{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1772154159239,
    "respondTime": 3200,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content",
      "kind": "[property~=status|category|update_time]@content",
      "lastChapter": "[property$=lastest_chapter_name]@content",
      "name": "[property$=book_name]@content"
    },
    "ruleContent": {
      "content": ".panel-body@html||#htmlContent@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "small@text##\\/ 著",
      "bookList": ".row@class.col-md-4 col-xs-4 book-coverlist",
      "bookUrl": "h4@a@href",
      "coverUrl": "img@src",
      "intro": "p@text",
      "name": "h4@text"
    },
    "ruleToc": {
      "chapterList": ".panel-body@dd@a",
      "chapterName": "text##全部章节目录",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php?searchkey={{key}}&page={{page}},{\n  \"charset\": \"GBK\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "有黄广告",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "56书库",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.pingshuku.com",
    "customButton": false,
    "customOrder": 466,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1780924842008,
    "respondTime": 3879,
    "ruleBookInfo": {
      "coverUrl": "class.block_img2@img@src",
      "intro": "class.intro_info@text##最新章节.*",
      "lastChapter": "class.block_txt2@tag.p.6@a@text"
    },
    "ruleContent": {
      "content": "id.nr@textNodes##.*本章未完.*|.*第.*/.*页.*",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.case_shuqian@text##作者：",
      "bookList": "class.bookone",
      "bookUrl": "a@href",
      "coverUrl": "tag.a.0@href##^.+?(\\d+)\\D(\\d+).+##http://www.pingshuku.com/files/article/image/$1/$2/$2s.jpg",
      "lastChapter": "class.case_last@a@text",
      "name": "class.case_name@a@text"
    },
    "ruleToc": {
      "chapterList": "class.chapter.1@li@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "http://wap.pingshuku.com/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "亿软小说#3",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.iyruan.info/",
    "bookUrlPattern": "https://www.yruan.com/article/\\d+.html",
    "customButton": false,
    "customOrder": 467,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::http://m.yruan.com/sort/1/{{page}}.html\n仙侠小说::http://m.yruan.com/sort/2/{{page}}.html\n都市小说::http://m.yruan.com/sort/3/{{page}}.html\n军史小说::http://m.yruan.com/sort/4/{{page}}.html\n网游小说::http://m.yruan.com/sort/5/{{page}}.html\n科幻小说::http://m.yruan.com/sort/6/{{page}}.html",
    "lastUpdateTime": 1786586359684,
    "respondTime": 5392,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text",
      "coverUrl": "id.fmimg@img@src",
      "intro": "id.intro@tag.p.0@text",
      "kind": "id.info@tag.p.3@text&&\nid.info@tag.p.1@text##日 期：|类 别:",
      "lastChapter": "id.info@tag.p.2@a@text##百度搜索.*",
      "name": "id.info@tag.h1@text"
    },
    "ruleContent": {
      "content": "id.content@html##<!--go--> |<!--over--> "
    },
    "ruleExplore": {
      "author": "class.author@text",
      "bookList": "class.article",
      "bookUrl": "h6@a@href@js:'https://www.yruan.com'+result",
      "coverUrl": "img@src",
      "intro": "class.simple@text",
      "name": "h6@a@text"
    },
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "tag.td.0@tag.a@href",
      "coverUrl": "tag.td.0@tag.a@href@js:\r\nvar id = result.match(/\\/(\\d+)\\.?/)[1];\r\n'/files/article/image/'+parseInt(id/1000)+'/'+id+'/'+id+'s.jpg';",
      "kind": "tag.td.4@text&&\ntag.td.5@text",
      "lastChapter": "tag.td.1@tag.a@text##百度搜索.*",
      "name": "tag.td.0@tag.a@text",
      "wordCount": "tag.td.3@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://www.yruan.com/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "无极书城",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wujiwx.info/",
    "customButton": false,
    "customOrder": 468,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1785967699347,
    "respondTime": 751,
    "ruleBookInfo": {
      "author": "[property=og:novel:author]@content",
      "coverUrl": "[property=og:image]@content",
      "intro": "[property=og:description]@content",
      "kind": "[property=og:novel:update_time]@content&&\n[property=og:novel:category]@content&&\n[property=og:novel:status]@content",
      "lastChapter": "[property=og:novel:latest_chapter_name]@content##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "[property=og:novel:book_name]@content##|\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|小说|笔趣阁|免费.*"
    },
    "ruleContent": {
      "content": "id.content@textNodes##全本小说网.*最新章节！|全本小说网.*最快更新|最新章节！|一秒记住.*免费阅读！|.*第.*章.*|笔趣阁.*最快更新.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.s4@text",
      "bookList": "class.novelslist2@tag.li!0",
      "bookUrl": "class.s2@tag.a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "class.s3@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 |卷1",
      "name": "class.s2@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://wujiwx.info/search.html?name={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "免费小说#1",
    "bookSourceType": 0,
    "bookSourceUrl": "https://api.wnreader.com/",
    "customButton": false,
    "customOrder": 470,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n\t{\n\t\t\"title\": \"♂排行榜\",\n\t\t\"url\": \"\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 1,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"最热榜\",\n\t\t\"url\": \"/newtop/list?topid=hot&gender=0\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.25,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"好评榜\",\n\t\t\"url\": \"/newtop/list?topid=reputation&gender=0\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.25,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"潜力榜\",\n\t\t\"url\": \"/newtop/list?topid=potential&gender=0\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.25,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"完结榜\",\n\t\t\"url\": \"/newtop/list?topid=over&gender=0\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.3,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"新书榜\",\n\t\t\"url\": \"/newtop/list?topid=new&gender=0\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.3,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"♀排行榜\",\n\t\t\"url\": \"\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 1,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"最热榜\",\n\t\t\"url\": \"/newtop/list?topid=hot&gender=1\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.25,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"好评榜\",\n\t\t\"url\": \"/newtop/list?topid=reputation&gender=1\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.25,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"潜力榜\",\n\t\t\"url\": \"/newtop/list?topid=potential&gender=1\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.25,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"完结榜\",\n\t\t\"url\": \"/newtop/list?topid=over&gender=1\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.3,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"新书榜\",\n\t\t\"url\": \"/newtop/list?topid=new&gender=1\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.3,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"♂类别\",\n\t\t\"url\": \"\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 1,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"玄幻\",\n\t\t\"url\": \"/category/list?gender=male&type=hot&major=玄幻&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"奇幻\",\n\t\t\"url\": \"/category/list?gender=male&type=hot&major=奇幻&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"武侠\",\n\t\t\"url\": \"/category/list?gender=male&type=hot&major=武侠&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"仙侠\",\n\t\t\"url\": \"/category/list?gender=male&type=hot&major=仙侠&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"都市\",\n\t\t\"url\": \"/category/list?gender=male&type=hot&major=都市&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"职场\",\n\t\t\"url\": \"/category/list?gender=male&type=hot&major=职场&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"历史\",\n\t\t\"url\": \"/category/list?gender=male&type=hot&major=历史&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"军事\",\n\t\t\"url\": \"/category/list?gender=male&type=hot&major=军事&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"游戏\",\n\t\t\"url\": \"/category/list?gender=male&type=hot&major=游戏&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"竞技\",\n\t\t\"url\": \"/category/list?gender=male&type=hot&major=竞技&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"科幻\",\n\t\t\"url\": \"/category/list?gender=male&type=hot&major=科幻&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"灵异\",\n\t\t\"url\": \"/category/list?gender=male&type=hot&major=灵异&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"同人\",\n\t\t\"url\": \"/category/list?gender=male&type=hot&major=同人&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"轻小说\",\n\t\t\"url\": \"/category/list?gender=male&type=hot&major=轻小说&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"其他\",\n\t\t\"url\": \"/category/list?gender=male&type=hot&major=其他&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"♂人设\",\n\t\t\"url\": \"\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 1,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"兵王\",\n\t\t\"url\": \"booktag/list?gender=0&type=hot&tags=兵王&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"神医\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=神医&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"女婿\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=女婿&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"神豪\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=神豪&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"废材\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=废材&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"奶爸\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=奶爸&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"火影\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=火影&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"武神\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=武神&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"娱乐明星\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=娱乐明星&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"保安\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=保安&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"校花\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=校花&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"刺客\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=刺客&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"保镖\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=保镖&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"白领\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=白领&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"御姐\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=御姐&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"农民\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=农民&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"帝王\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=帝王&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"道士\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=道士&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"战神\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=战神&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"宅男\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=宅男&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"姑爷\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=姑爷&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"剑客\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=剑客&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"仙尊\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=仙尊&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"海贼\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=海贼&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"同人\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=同人&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"教师\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=教师&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"特种兵\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=特种兵&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"金庸\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=金庸&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"黑客\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=黑客&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"杀手\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=杀手&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"♂情感\",\n\t\t\"url\": \"\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 1,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"热血\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=热血&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"言情\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=言情&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"现言\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=现言&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"侠义\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=侠义&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"搞笑\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=搞笑&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"青春\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=青春&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"爽文\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=爽文&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"励志\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=励志&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"懦弱\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=懦弱&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"纨绔\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=纨绔&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"♂时空\",\n\t\t\"url\": \"\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 1,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"玄幻\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=玄幻&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"武侠\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=武侠&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"仙侠\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=仙侠&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"恐怖\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=恐怖&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"奇幻\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=奇幻&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"洪荒\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=洪荒&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"异界\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=异界&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"异世\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=异世&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"都市\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=都市&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"古代\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=古代&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"科幻\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=科幻&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"网游\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=网游&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"架空\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=架空&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"重生\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=重生&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"未来\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=未来&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"穿越\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=穿越&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"历史\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=历史&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"快穿\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=快穿&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"末世\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=末世&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"位面\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=位面&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"♂剧情\",\n\t\t\"url\": \"\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 1,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"变身\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=变身&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"悬疑\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=悬疑&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"系统\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=系统&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"推理\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=推理&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"犯罪\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=犯罪&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"种田\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=种田&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"惊悚\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=惊悚&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"竞技\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=竞技&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"轻小说\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=轻小说&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"扮猪吃虎\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=扮猪吃虎&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"直播\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=直播&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"洪荒\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=洪荒&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"西游\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=西游&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"荒岛\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=荒岛&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"大唐\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=大唐&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"开局\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=开局&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"三国\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=三国&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"鉴宝\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=鉴宝&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"谋权\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=谋权&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"电竞\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=电竞&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"绝地求生\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=绝地求生&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"废材逆袭\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=废材逆袭&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"特殊技能\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=特殊技能&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"空间\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=空间&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"金手指\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=金手指&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"王者荣耀\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=王者荣耀&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"贴身\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=贴身&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"升级流\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=升级流&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"无敌流\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=无敌流&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"技术流\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=技术流&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"凡人流\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=凡人流&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"练功流\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=练功流&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"异兽流\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=异兽流&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"天才流\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=天才流&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"学院流\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=学院流&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"系统流\",\n\t\t\"url\": \"/booktag/list?gender=0&type=hot&tags=系统流&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"♀类别\",\n\t\t\"url\": \"\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 1,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"古代言情\",\n\t\t\"url\": \"/category/list?gender=famale&type=hot&major=古代言情&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"现代言情\",\n\t\t\"url\": \"/category/list?gender=famale&type=hot&major=现代言情&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"青春校园\",\n\t\t\"url\": \"/category/list?gender=famale&type=hot&major=青春校园&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"耽美\",\n\t\t\"url\": \"/category/list?gender=famale&type=hot&major=耽美&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"玄幻奇幻\",\n\t\t\"url\": \"/category/list?gender=famale&type=hot&major=玄幻奇幻&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"武侠仙侠\",\n\t\t\"url\": \"/category/list?gender=famale&type=hot&major=武侠仙侠&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"科幻\",\n\t\t\"url\": \"/category/list?gender=famale&type=hot&major=科幻&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"游戏竞技\",\n\t\t\"url\": \"/category/list?gender=famale&type=hot&major=游戏竞技&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"悬疑灵异\",\n\t\t\"url\": \"/category/list?gender=famale&type=hot&major=悬疑灵异&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"同人\",\n\t\t\"url\": \"/category/list?gender=famale&type=hot&major=同人&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"女尊\",\n\t\t\"url\": \"/category/list?gender=famale&type=hot&major=女尊&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"莉莉\",\n\t\t\"url\": \"/category/list?gender=famale&type=hot&major=莉莉&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"其他\",\n\t\t\"url\": \"/category/list?gender=famale&type=hot&major=其他&minor=&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"♀人设\",\n\t\t\"url\": \"\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 1,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"总裁\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=总裁&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"王妃\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=王菲&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"嫡女\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=嫡女&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"神医\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=神医u&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"女强\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=女强&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"女配\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=女配&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"萌宝\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=萌宝&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"农女\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=农女&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"皇后\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=皇后&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"白领\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=白领&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"庶女\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=庶女&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"明星\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=明星&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"王爷\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=王爷&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"特工\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=特工&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"前妻\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=前妻&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"首席\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=首席&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"弃妇\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=弃妇&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"商女\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=商女&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"设计师\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=设计师&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"学霸\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=学霸&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"养女\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=养女&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"灰姑娘\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=灰姑娘&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"腹黑\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=腹黑&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"♀情感\",\n\t\t\"url\": \"\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 1,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"耽美\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=耽美&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"纯爱\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=纯爱&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"专情\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=专情&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"言情\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=言情&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"现言\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=现言&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"古言\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=古言&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"搞笑\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=搞笑&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"青春\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=青春&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"爽文\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=爽文&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"虐文\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=虐文&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"百合\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=百合&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"情有独钟\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=情有独钟&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"欢喜冤家\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=欢喜冤家&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"浪漫情缘\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=浪漫情缘&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.25,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"青梅竹马\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=青梅竹马&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.25,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"破镜重圆\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=破镜重圆&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.25,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"♀时空\",\n\t\t\"url\": \"\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 1,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"都市\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=都市&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"古代\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=古代&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"科幻\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=科幻&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"架空\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=架空&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": 重生\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=重生&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"未来\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=未来&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"穿越\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=穿越&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"历史\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=历史&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"快穿\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=快穿&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"末世\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=末世&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"位面\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=位面&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"无限\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=无限&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"♀剧情\",\n\t\t\"url\": \"\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 1,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"变身\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=变身&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"百合\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=百合&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"悬疑\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=悬疑&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"系统\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=系统&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"网游\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=网游&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"推理\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=推理&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"穿越\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=穿越&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"职场\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=职场&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"团宠\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=团宠&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"逗比\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=逗比&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"宫斗宅斗\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=宫斗宅斗&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"女强女尊\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=女强女尊&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"虐渣打脸\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=虐渣打脸&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"斗智斗勇\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=斗智斗勇&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"麻雀变凤凰\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=麻雀变凤凰&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.4,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"契约\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=契约&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"总裁\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=总裁&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"婚恋\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=婚恋&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"虐恋\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=虐恋&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"豪门\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=豪门&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"替身\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=替身&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"甜宠文\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=甜宠文&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"年代文\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=年代文&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"种田文\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=种田文&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t},\n\t{\n\t\t\"title\": \"轻小说\",\n\t\t\"url\": \"booktag/list?gender=1&type=hot&tags=轻小说&start={{(page-1)*20}}&limit=20\",\n\t\t\"style\": {\n\t\t\t\"layout_flexBasisPercent\": 0.2,\n\t\t\t\"layout_flexGrow\": 1\n\t\t}\n\t}\n]",
    "lastUpdateTime": 1787069275512,
    "respondTime": 22252,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$.cover",
      "intro": "$.longIntro",
      "kind": "$.tags",
      "lastChapter": "$.lastChapter",
      "name": "$.title",
      "tocUrl": "https://api.wnreader.com/mulu/{{$._id}}?view=chapters&https=1",
      "wordCount": "$.wordCount"
    },
    "ruleContent": {
      "content": "$.chapter.body"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.books[*]",
      "bookUrl": "https://api.wnreader.com/intro/{{$._id}}",
      "coverUrl": "$.cover",
      "intro": "$.shortIntro",
      "kind": "$.tags",
      "name": "$.title",
      "wordCount": "$.wordCount"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.books[*]",
      "bookUrl": "https://api.wnreader.com/intro/{{$._id}}",
      "coverUrl": "$.cover",
      "intro": "$.shortIntro",
      "kind": "$.tags",
      "name": "$.title",
      "wordCount": "$.wordCount"
    },
    "ruleToc": {
      "chapterList": "$.mixToc.chapters[*]",
      "chapterName": "$.title",
      "chapterUrl": "$.link",
      "updateTime": "$.updated"
    },
    "searchUrl": "/search/book?query={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "随心看",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.suixkan.com#🎃",
    "customButton": false,
    "customOrder": 471,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "随心看::/\n都市::/l/f/1100/1.html\n玄幻::/l/f/1101/1.html\n仙侠::/l/f/1102/1.html\n军事::/l/f/1103/1.html\n科幻::/l/f/1104/1.html\n游戏::/l/f/1105/1.html\n悬疑::/l/f/1107/1.html\n脑洞::/l/f/1108/1.html\n现代言情::/l/f/2100/1.html\n古代言情::/l/f/2101/1.html\n幻想言情::/l/f/2102/1.html\n穿越时空::/l/f/2104/1.html\n宫闱争斗::/l/f/2105/1.html\n豪门总裁::/l/f/2106/1.html\n婚恋爱情::/l/f/2107/1.html\n经商种田::/l/f/2108/1.html\n现实::/l/f/4100/1.html\n世俗::/l/f/4101/1.html\n家庭::/l/f/4102/1.html\n热血::/l/f/4103/1.html\n治愈::/l/f/4104/1.html\n奇闻::/l/f/4105/1.html\n悬疑::/l/f/4106/1.html\n古风::/l/f/4107/1.html",
    "lastUpdateTime": 1769156035945,
    "respondTime": 2734,
    "ruleBookInfo": {
      "tocUrl": "class.sumchapter@a@href"
    },
    "ruleContent": {
      "content": "class.con@html",
      "replaceRegex": "##\\s*.*?本章.*?完.*\\s*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".v-author@text",
      "bookList": "class.v-list-item\n@js:\nlist=result.toArray();\nlist1=[];\nfor(i in list){\nif(list[i].text().indexOf(java.get('key'))>-1){\nlist1.push(list[i])\n}\n}\nlist1.map(x=>x)",
      "bookUrl": "##=\"newWebView\\('([^']+)'##$1###",
      "coverUrl": "img@src",
      "intro": ".v-intro@text",
      "kind": "tag.div.-1@text",
      "lastChapter": "<js>\nurl=String(result).match(/=\"newWebView\\('([^']+)'/)[1];url='https://m.suixkan.com'+url\njava.ajax(url)</js>\nclass.chapter-entrance@text",
      "name": ".v-title@text",
      "wordCount": ".v-words@text"
    },
    "ruleToc": {
      "chapterList": "class.catalog_ls@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://m.suixkan.com/s/1.html?keyword={{key}}\n@js:java.put('key',key);result",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "💰 飞卢小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://b.faloo.com",
    "bookUrlPattern": "https://b\\.faloo\\.com/f/\\d+.html",
    "customButton": false,
    "customOrder": 472,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "最新新书::https://b.faloo.com/y_0_0_0_0_9_0_{{page}}.html\n原创书库::https://b.faloo.com/y_0_{{page}}.html\n玄幻奇幻::https://b.faloo.com/y_1_{{page}}.html\n武侠仙侠::https://b.faloo.com/y_6_{{page}}.html\n同人小说::https://b.faloo.com/y_44_{{page}}.html\n都市言情::https://b.faloo.com/y_4_{{page}}.html\n军事历史::https://b.faloo.com/y_3_{{page}}.html\n科幻网游::https://b.faloo.com/y_2_{{page}}.html\n恐怖灵异::https://b.faloo.com/y_5_{{page}}.html\n青春校园:://b.faloo.com/y_7_{{page}}.html\n轻小说:://b.faloo.com/y_97_{{page}}.html\n女生小说:://b.faloo.com/y_54_{{page}}.html\n短篇其他:://b.faloo.com/y_9_{{page}}.html\n[原创书库]:://b.faloo.com/y_0_{{page}}.html\n[二次元库]:://b.faloo.com/e_0_0_0_1_{{page}}.html\n[畅读库]:://b.faloo.com/r_0_{{page}}.html\n[下载库]:://b.faloo.com/down_0_{{page}}.html\n[全部小说]:://b.faloo.com/l_0_{{page}}.html\n全部:://b.faloo.com/y_0_0_0_0_9_0_{{page}}.html\n25万以下:://b.faloo.com/y_0_0_0_1_9_0_{{page}}.html\n25万-50万:://b.faloo.com/y_0_0_0_2_9_0_{{page}}.html\n50万-100万:://b.faloo.com/y_0_0_0_3_9_0_{{page}}.html\n100万以上:://b.faloo.com/y_0_0_0_4_9_0_{{page}}.html\n全部:://b.faloo.com/y_0_0_0_0_0_0_{{page}}.html\n新书入库:://b.faloo.com/y_0_0_0_0_9_0_{{page}}.html\n还在写作中..:://b.faloo.com/y_0_0_0_0_1_0_{{page}}.html\n已经完本:://b.faloo.com/y_0_0_0_0_2_0_{{page}}.html\nVIP小说:://b.faloo.com/y_0_0_0_0_3_0_{{page}}.html\n免费小说:://b.faloo.com/y_0_0_0_0_6_0_{{page}}.html\n出版专栏:://b.faloo.com/y_0_0_0_0_5_0_{{page}}.html\n飞卢强推:://b.faloo.com/y_0_0_0_0_8_0_{{page}}.html\n最新:://b.faloo.com/y_0_0_0_0_9_0_{{page}}.html\n周点击:://b.faloo.com/y_0_0_0_0_9_1_{{page}}.html\n月点击:://b.faloo.com/y_0_0_0_0_9_2_{{page}}.html\n总点击:://b.faloo.com/y_0_0_0_0_9_3_{{page}}.html\n周打赏:://b.faloo.com/y_0_0_0_0_9_13_{{page}}.html\n月打赏:://b.faloo.com/y_0_0_0_0_9_17_{{page}}.html\n总打赏:://b.faloo.com/y_0_0_0_0_9_18_{{page}}.html\n催更榜:://b.faloo.com/y_0_0_0_0_9_19_{{page}}.html\n周鲜花:://b.faloo.com/y_0_0_0_0_9_4_{{page}}.html\n月鲜花:://b.faloo.com/y_0_0_0_0_9_5_{{page}}.html\n总鲜花:://b.faloo.com/y_0_0_0_0_9_6_{{page}}.html\n周收藏:://b.faloo.com/y_0_0_0_0_9_7_{{page}}.html\n月收藏:://b.faloo.com/y_0_0_0_0_9_8_{{page}}.html\n总收藏:://b.faloo.com/y_0_0_0_0_9_9_{{page}}.html\n月字数:://b.faloo.com/y_0_0_0_0_9_12_{{page}}.html\n总字数:://b.faloo.com/y_0_0_0_0_9_10_{{page}}.html\n新书PK榜:://b.faloo.com/y_0_0_0_0_9_66_{{page}}.html\n月票:://b.faloo.com/y_0_0_0_0_3_15_{{page}}.html\n不限:://b.faloo.com/y_0_0_0_0_9_0_{{page}}.html\n[A]:://b.faloo.com/y_0_0_a_0_9_0_{{page}}.html\n[B]:://b.faloo.com/y_0_0_b_0_9_0_{{page}}.html\n[C]:://b.faloo.com/y_0_0_c_0_9_0_{{page}}.html\n[D]:://b.faloo.com/y_0_0_d_0_9_0_{{page}}.html\n[E]:://b.faloo.com/y_0_0_e_0_9_0_{{page}}.html\n[F]:://b.faloo.com/y_0_0_f_0_9_0_{{page}}.html\n[G]:://b.faloo.com/y_0_0_g_0_9_0_{{page}}.html\n[H]:://b.faloo.com/y_0_0_h_0_9_0_{{page}}.html\n[I]:://b.faloo.com/y_0_0_i_0_9_0_{{page}}.html\n[J]:://b.faloo.com/y_0_0_j_0_9_0_{{page}}.html\n[K]:://b.faloo.com/y_0_0_k_0_9_0_{{page}}.html\n[L]:://b.faloo.com/y_0_0_l_0_9_0_{{page}}.html\n[M]:://b.faloo.com/y_0_0_m_0_9_0_{{page}}.html\n[N]:://b.faloo.com/y_0_0_n_0_9_0_{{page}}.html\n[O]:://b.faloo.com/y_0_0_o_0_9_0_{{page}}.html\n[P]:://b.faloo.com/y_0_0_p_0_9_0_{{page}}.html\n[Q]:://b.faloo.com/y_0_0_q_0_9_0_{{page}}.html\n[R]:://b.faloo.com/y_0_0_r_0_9_0_{{page}}.html\n[S]:://b.faloo.com/y_0_0_s_0_9_0_{{page}}.html\n[T]:://b.faloo.com/y_0_0_t_0_9_0_{{page}}.html\n[U]:://b.faloo.com/y_0_0_u_0_9_0_{{page}}.html\n[V]:://b.faloo.com/y_0_0_v_0_9_0_{{page}}.html\n[W]:://b.faloo.com/y_0_0_w_0_9_0_{{page}}.html\n[X]:://b.faloo.com/y_0_0_x_0_9_0_{{page}}.html\n[Y]:://b.faloo.com/y_0_0_y_0_9_0_{{page}}.html\n[Z]:://b.faloo.com/y_0_0_z_0_9_0_{{page}}.html",
    "lastUpdateTime": 1786861127151,
    "respondTime": 996,
    "ruleBookInfo": {
      "author": "class.colorQianHui.1@text",
      "coverUrl": "class.T-L-T-Img@tag.img.0@src",
      "intro": ".fs14.1@text&&class.T-L-T-C-Box1@text##^(?=【)|\\s+##<br/>",
      "kind": "clasd.T-R-T-B2-Box1@text",
      "lastChapter": "class.T-L-Th-Box1@text##.*?》",
      "name": "id.novelName@text"
    },
    "ruleContent": {
      "content": "class.noveContent@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.TwoBox02_09@tag.a.0@text",
      "bookList": "class.TwoBox02_02",
      "bookUrl": "class.TwoBox02_03@tag.a.0@href",
      "coverUrl": "class.TYImg@tag.img.0@data-original",
      "intro": "class.TwoBox02_06@tag.a.0@text",
      "kind": "class.TwoBox02_05.1@tag.a.0@text",
      "lastChapter": "class.TwoBox02_05.2@tag.a.0@text",
      "name": "class.TwoBox02_08@tag.a.0@text",
      "wordCount": "class.TwoBox02_05@tag.span.4@text##字数："
    },
    "ruleToc": {
      "chapterList": "#mulu > div.DivTable > div > div > a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://b.faloo.com/l/0/1.html?t=1&k={{key}},{\n  \"charset\": \"gbk\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "无双小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.buxia.la/",
    "customButton": false,
    "customOrder": 473,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻魔法\",\"url\":\"mulu/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠修真\",\"url\":\"mulu/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市言情\",\"url\":\"mulu/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史军事\",\"url\":\"mulu/4/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游动漫\",\"url\":\"mulu/5/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻星际\",\"url\":\"mulu/6/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"恐怖灵异\",\"url\":\"mulu/7/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他类型\",\"url\":\"mulu/8/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1784020345201,
    "respondTime": 2686,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "class.bookintromore@text",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "id.txt@html",
      "nextContentUrl": "id.pb_next@tag.a@href",
      "replaceRegex": "##第.*章.*|\\(第.*页\\)|阅读.*新章节.*|（本章未完.*击下一页继续阅读）"
    },
    "ruleExplore": {
      "author": "tag.a.2@text",
      "bookList": "class.bookbox",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "tag.img@data-original",
      "intro": "class.update@text##简介.",
      "kind": "class.author.1@text##分类.",
      "lastChapter": "tag.a.3@text",
      "name": "tag.a.1@text"
    },
    "ruleSearch": {
      "author": "tag.a.2@text",
      "bookList": "class.bookbox",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "tag.img@data-original",
      "intro": "class.update@text##简介.",
      "kind": "class.author.1@text##更新时间.",
      "lastChapter": "tag.a.3@text",
      "name": "tag.a.1@text"
    },
    "ruleToc": {
      "chapterList": "id.showmore01@tag.dd@tag.a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "modules/article/search.php,{\n  \"method\": \"POST\",\n  \"body\": \"searchkey={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "鬼吹灯包",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.cxbz958.info#",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 474,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻小说\",\"url\":\"/fenlei/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙侠小说\",\"url\":\"/fenlei/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市小说\",\"url\":\"/fenlei/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"军史小说\",\"url\":\"/fenlei/4/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游小说\",\"url\":\"/fenlei/5/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻小说\",\"url\":\"/fenlei/6/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"恐怖小说\",\"url\":\"/fenlei/7/{{page}}.html\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.295}}]",
    "lastUpdateTime": 1734837394991,
    "loginUrl": "",
    "respondTime": 2946,
    "ruleBookInfo": {
      "author": "class.small@tag.span.0@text##作 者：",
      "coverUrl": "class.cover@img@src",
      "init": "",
      "intro": "class.intro@textNodes##作者.*|无弹窗.*",
      "kind": "class.info@class.small@tag.span.1@text&&\nclass.info@class.small@tag.span.2@text&&\nclass.info@class.small@tag.span.4@text##分类：|状态：|更新时间：",
      "lastChapter": "class.small@tag.span.5@a@text##百度搜索.*",
      "name": "class.info@h2@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说",
      "wordCount": "class.info@class.small@tag.span.3@text##字数："
    },
    "ruleContent": {
      "content": "id.content@html##http.*html|天才一秒记住.*com|请记住本书首发域.*"
    },
    "ruleExplore": {
      "author": "class.s4@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "",
      "kind": "class.s5@text",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleSearch": {
      "author": "class.author@text##作者：",
      "bookList": "class.bookbox@class.p10",
      "bookUrl": "class.bookname@tag.a@href",
      "coverUrl": "class.bookimg@img@src",
      "intro": "class.bookinfo@p@text",
      "kind": "class.cat@text##分类：",
      "lastChapter": "class.update@tag.a@text##百度搜索.*",
      "name": "class.bookname@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleToc": {
      "chapterList": "class.listmain@dd!0:1:2:3:4:5:6:7:8:9:10:11",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/s.php?ie=utf-8&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "缺小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.quexs.biz#🎃",
    "customButton": false,
    "customOrder": 475,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "lastUpdateTime": 1787420147999,
    "respondTime": 1238,
    "ruleBookInfo": {
      "intro": "#bookIntro@html"
    },
    "ruleContent": {
      "content": "#htmlContent@p!-1@html##$##❎",
      "nextContentUrl": "<js>\nif(/xyy.png/.test(src)){\nresult = src.match(/\\d+,\\d+,'(.*?_.*?)\\|__u[^\\|]+/)[1]+\".html\"\n}\n</js>",
      "replaceRegex": "##.*向你推荐他的其他作品[\\s\\S]+|「如章节.*?」|.*看最新章节.*|\\s*❎\\s*|.*?》.*?域名.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".booktag@text",
      "bookList": "class.col-md-10",
      "bookUrl": "a.0@href",
      "intro": "#bookIntro@text",
      "lastChapter": ".text-danger@text",
      "name": "h4@text"
    },
    "ruleToc": {
      "chapterList": "class.panel-chapterlist.-1@dd@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/search,{\"method\":\"POST\",\"body\":\"keyword={{key}}\"}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "话本小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.ihuaben.com#🎃",
    "customButton": false,
    "customOrder": 476,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787417509342,
    "respondTime": 600,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "$.modelData.content",
      "replaceRegex": "##\\[img:(.*?)\\]##<img src=\"http://picapp.ihuaben.com/$1\">"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.authorname",
      "bookList": "$.pageUtil.pageList",
      "bookUrl": "https://cdncn.ihuaben.com/cdn/chapters/{{$.bookid}}/{{$.updatetime}}000",
      "coverUrl": "$.bookpic##^##http://picapp.ihuaben.com/",
      "intro": "$.bookinfo",
      "kind": "$.tag",
      "lastChapter": "$.lastchaptertitle",
      "name": "$.bookname",
      "wordCount": "$.wordcount"
    },
    "ruleToc": {
      "chapterList": "$.modelData.chapters",
      "chapterName": "$.title",
      "chapterUrl": "https://cdncn.ihuaben.com/cdn/chapter/{{$.bookId}}/{{$.chapterId}}/{{$.updateTime}}",
      "updateTime": "{{$.wordCount}}字"
    },
    "searchUrl": "https://www.ihuaben.com/app/search?indexName=book&keyword={{key}}&page=1",
    "weight": 0
  },
  {
    "bookSourceComment": "author：Thomas哟",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "全本小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://119.45.176.116:5006/",
    "customButton": false,
    "customOrder": 477,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type)=>{\n\t\treturn sort.push(JSON.stringify({\n\t\t\t\ttitle: title,\n\t\t\t\turl: url?url:\"\",\n\t\t\t\tstyle: {\n\t\t\t\t\t\tlayout_flexGrow: 1,\n\t\t\t\t\t\tlayout_flexBasisPercent: type\n\t\t\t\t\t}\n\t\t\t}))\n\t}\n$$=(a,b,c)=>b?`http://119.45.176.116:5006/localBookListByCategory?ps=20&length=${a}&pn={{page-1}\\}&cid=${b}&order=${c}&status=2`:`http://119.45.176.116:5006/recList?gender=${a}&pn={{page-1}\\}`;\n[\n\t\t[\"男\",[[\"都市娱乐\",1],[\"玄幻奇幻\",5],[\"武侠仙侠\",6],[\"历史军事\",4],[\"悬疑推理\",29],[\"科幻游戏\",28]]],\n\t\t[\"女\",[[\"现代言情\",2],[\"古代情缘\",9],[\"灵异爱情\",34],[\"玄幻奇幻\",38],[\"耽美同人\",11],[\"短篇小说\",33],[\"其他小说\",31]]]\n].map(([title,list],gender)=>{\n\t\tgender++\n\t\tpush(\"\"+title+\"生频道\",$$(gender,null,null),1);\n\t\tlist.map([title,b]=>{\n\t\t\t\tpush(\"\"+title+\"\",$$(0,b,1),1);\n\t\t\t\t[\"热门\",\"评分\",\"字数\"].map((title,c)=>{\n\t\t\t\t\t\tc++;\n\t\t\t\t\t\t[\"[\"+title+\"]\",\"短篇\",\"中篇\",\"长篇\"].map((title,a)=>{\n\t\t\t\t\t\t\t\tpush(title,$$(a,b,c),a==0?0.25:0.15);\n\t\t\t\t\t\t\t});\n\t\t\t\t\t});\n\t\t\t});\n\t});\n\"[\"+sort.toString()+\"]\";",
    "lastUpdateTime": 1750614528787,
    "respondTime": 1085,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "$..content"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.data.list",
      "bookUrl": "http://119.45.176.116:5006/findChapterList?book_id={{$.bookId}}",
      "coverUrl": "$.coverImg",
      "intro": "$.desc",
      "kind": "{$.score}分&&$.category&&$.tags",
      "lastChapter": "共{{$.chapterNum}}章 • {{$.time## \\d.*}}",
      "name": "$.title",
      "wordCount": "$.word"
    },
    "ruleToc": {
      "chapterList": "@js:\n$ = JSON.parse(result).data;\n\t\tbid = $.book_id;\n$.chapters.map($=>{\n\t\t$.url = `http://119.45.176.116:5006/chapterContent,{\"body\":{\"book_id\":${bid},\"chapterIdList\":\"${$.id},\"},\"method\":\"POST\"}`\n\t\treturn $;\n\t});",
      "chapterName": "name",
      "chapterUrl": "url"
    },
    "searchUrl": "http://119.45.176.116:5006/getsearchlist?keyWord={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "2024.8.1\nby墨殇",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "夜书吧『移动屏蔽』",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.isex.work",
    "bookUrlPattern": "https://www.isex.work/book/\\d+",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 479,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "[{\"title\":\"首页\",\"url\":\"https://www.isex.work\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1.00}},{\"title\":\"校园言情\",\"url\":\"https://www.isex.work/sort/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市言情\",\"url\":\"https://www.isex.work/sort/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代言情\",\"url\":\"https://www.isex.work/sort/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"罗曼史\",\"url\":\"https://www.isex.work/sort/4/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"耽美\",\"url\":\"https://www.isex.work/sort/5/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"百合\",\"url\":\"https://www.isex.work/sort/6/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"同人\",\"url\":\"https://www.isex.work/sort/7/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奇幻玄幻\",\"url\":\"https://www.isex.work/sort/8/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游竞技\",\"url\":\"https://www.isex.work/sort/9/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"书库\",\"url\":\"https://www.isex.work/<,book_lastupdate_0_0_0_0_0_0_0_0_{{page+1}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "header": "",
    "lastUpdateTime": 1722481962573,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 3455,
    "ruleBookInfo": {
      "author": ".p_author@text",
      "canReName": "",
      "coverUrl": "img@src",
      "init": "",
      "intro": "#bookintro p@text",
      "kind": "#count span.0@text&&#count span.2@text&&#uptime@text",
      "lastChapter": ".chaw a.0@text",
      "name": ".d_title@text",
      "tocUrl": "",
      "wordCount": "#count span.1@text"
    },
    "ruleContent": {
      "content": "#TextContent@html",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "||.tit@text##作者：",
      "bookList": "#sitebox dl||.recomclass dl",
      "bookUrl": "a.0@href",
      "coverUrl": "img@_src",
      "intro": ".book_des@text||.name@text",
      "kind": ".book_other span[0:1]@text",
      "lastChapter": "text.最新章节@text##最新章节：",
      "name": "h3 a@text||a.1@text",
      "wordCount": ".uptime@text"
    },
    "ruleSearch": {
      "author": "",
      "bookList": "#nr",
      "bookUrl": "a.0@href",
      "coverUrl": "img@_src",
      "intro": ".book_des@text",
      "kind": ".book_other span[0:1]@text&&.uptime@text",
      "lastChapter": "text.最新章节@text##最新章节：",
      "name": "h3 a@text",
      "wordCount": ".book_other span.2@text"
    },
    "ruleToc": {
      "chapterList": "#chapterList li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "{{url=source.getKey();\ncookie.removeCookie(url)}}\n/modules/article/search.php,{\n  \"body\": \"searchkey={{key}}&searchtype=articlename\",\n  \"charset\": \"UTF-8\",\n  \"method\": \"POST\"\n}",
    "variableComment": "",
    "weight": 2
  },
  {
    "bookSourceComment": "By：Tom",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://biquge42.com",
    "customButton": false,
    "customOrder": 480,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n\"referer\": \"https://biquge42.com/\"\n}",
    "lastUpdateTime": 0,
    "respondTime": 5324,
    "ruleBookInfo": {
      "intro": ".col-md-10@p.-3@text",
      "lastChapter": ".col-md-10@p.-6@a@text",
      "name": ""
    },
    "ruleContent": {
      "content": "#htmlContent@p@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "small@text##\\/.*",
      "bookList": "class.col-md-4 col-xs-4 book-coverlist@.row",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": "p@text",
      "name": "h4@a@text"
    },
    "ruleToc": {
      "chapterList": ".col-md-3@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://biquge42.com/search/?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.8biquge.com",
    "customButton": false,
    "customOrder": 481,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\n\t\"title\":\"排行榜💐\",\n\t\"url\":\"\",\n\t\"style\":{\n\t\"layout_flexBasisPercent\":1,\n\t\"layout_flexGrow\":1\n\t}\n},{\n\t\"title\":\"周榜❤️\",\n\t\"url\":\"/top/week_0_{{page}}.html\",\n\t\"style\":{\n\t\"layout_flexBasisPercent\":0.25,\n\t\"layout_flexGrow\":1\n\t}\n},{\n\t\"title\":\"月榜❤️\",\n\t\"url\":\"/top/month_0_{{page}}.html\",\n\t\"style\":{\n\t\"layout_flexBasisPercent\":0.25,\n\t\"layout_flexGrow\":1\n\t}\n},{\n\t\"title\":\"总榜❤️\",\n\t\"url\":\"/top/all_0_{{page}}.html\",\n\t\"style\":{\n\t\"layout_flexBasisPercent\":0.25,\n\t\"layout_flexGrow\":1\n\t}\n},{\n\t\"title\":\"玄幻\",\n\t\"url\":\"/list1/{{page}}.html\",\n\t\"style\":{\n\t\"layout_flexBasisPercent\":0.2,\n\t\"layout_flexGrow\":1\n\t}\n},{\n\t\"title\":\"武侠\",\n\t\"url\":\"/list2/{{page}}.html\",\n\t\"style\":{\n\t\"layout_flexBasisPercent\":0.2,\n\t\"layout_flexGrow\":1\n\t}\n},{\n\t\"title\":\"都市\",\n\t\"url\":\"/list3/{{page}}.html\",\n\t\"style\":{\n\t\"layout_flexBasisPercent\":0.2,\n\t\"layout_flexGrow\":1\n\t}\n},{\n\t\"title\":\"历史\",\n\t\"url\":\"/list4/{{page}}.html\",\n\t\"style\":{\n\t\"layout_flexBasisPercent\":0.2,\n\t\"layout_flexGrow\":1\n\t}\n},{\n\t\"title\":\"网游\",\n\t\"url\":\"/list5/{{page}}.html\",\n\t\"style\":{\n\t\"layout_flexBasisPercent\":0.2,\n\t\"layout_flexGrow\":1\n\t}\n},{\n\t\"title\":\"科幻\",\n\t\"url\":\"/list6/{{page}}.html\",\n\t\"style\":{\n\t\"layout_flexBasisPercent\":0.2,\n\t\"layout_flexGrow\":1\n\t}\n},{\n\t\"title\":\"言情\",\n\t\"url\":\"/list7/{{page}}.html\",\n\t\"style\":{\n\t\"layout_flexBasisPercent\":0.2,\n\t\"layout_flexGrow\":1\n\t}\n},{\n\t\"title\":\"其他\",\n\t\"url\":\"/list8/{{page}}.html\",\n\t\"style\":{\n\t\"layout_flexBasisPercent\":0.2,\n\t\"layout_flexGrow\":1\n\t}\n},{\n\t\"title\":\"完本\",\n\t\"url\":\"/full/0_{{page}}.html\",\n\t\"style\":{\n\t\"layout_flexBasisPercent\":1,\n\t\"layout_flexGrow\":1\n\t}\n}]",
    "lastUpdateTime": 1752211432924,
    "respondTime": 23117,
    "ruleBookInfo": {
      "author": "ul[class=\"\"]@li.0@a@text",
      "coverUrl": "div[class=\"col-3 col-md-2 \"]@img@src##/images##http://www.8biquge.com/images",
      "intro": "[id=\"intro_pc\"]@text##您要是觉得.*",
      "kind": "div[class=\"title\"]@a.1@text",
      "lastChapter": "ul[class=\"\"]@li.4@a@text",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "class.font_max@html##第\\([0-9]+\\/[0-9]+\\)页",
      "nextContentUrl": "text.下一章@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "dd.1@span@text",
      "bookList": "[class=\"col-12 col-md-6\"]",
      "bookUrl": "dt@a@href",
      "checkKeyWord": "寒武再临",
      "coverUrl": "dt@tag.img@src",
      "intro": "dd[2,3]@text",
      "kind": "dd.0@tag.a@text##\\[(.+)\\].+##$1",
      "lastChapter": "dd.4@a@text##.+(第)##$1",
      "name": "dd.0@tag.a@text##\\[.+\\]"
    },
    "ruleToc": {
      "chapterList": "div[class=\"book_list book_list2\"]@ul@tag.li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "<js>\nlet list = [];\nlet p = java.getString(\".page-link@text\").match(/\\d\\/(\\d+)/);\n//java.log(p[1]);\nfor(let i = 1; i <= (p && p[1]? p[1] : 0); i++){  \n  let uri = baseUrl;\n  let href = uri + `index_${i}.html`;\n  //java.log(href);\n  list.push(href);\n}\nlist\n</js>"
    },
    "searchUrl": "/search.php?q={{key}}&p={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "思路客",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.shuqusk.net",
    "customButton": false,
    "customOrder": 482,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1785477418681,
    "respondTime": 1055,
    "ruleBookInfo": {
      "name": "tag.h1@text##全文阅读.*"
    },
    "ruleContent": {
      "content": "id.content@textNodes",
      "nextContentUrl": "id.link@tag.a.3@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.odd.1@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "class.odd.0@tag.a@href",
      "name": "class.odd.0@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd!0:1:2:3:4:5",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "modules/article/search.php?searchkey={{key}}&action=login,{\n  \"charset\": \"utf-8\"\n}",
    "weight": 1
  },
  {
    "bookSourceComment": "24.12.28 by 明月",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "📚 梦书中文",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.mcmssc.la",
    "concurrentRate": "1500",
    "customButton": false,
    "customOrder": 483,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻奇幻::/xuanhuanxiaoshuo/<,1-{{page}}.html>\n修真仙侠::/xiuzhenxiaoshuo/<,1-{{page}}.html>\n都市青春::/dushixiaoshuo/<,1-{{page}}.html>\n历史穿越::/chuanyuexiaoshuo/<,1-{{page}}.html>\n网游竞技::/wangyouxiaoshuo/<,1-{{page}}.html>\n科幻灵异::/kehuanxiaoshuo/<,1-{{page}}.html>\n其它小说::/qitaxiaoshuo/<,1-{{page}}.html>\n完本小说::/wanben/1_{{page}}\n最近更新::http://www.mcmssc.la",
    "lastUpdateTime": 1782297025386,
    "respondTime": 8053,
    "ruleBookInfo": {
      "author": "p:nth-child(2) > a@text",
      "coverUrl": "img@src",
      "intro": "#intro@html",
      "lastChapter": "p:nth-child(5) > a@text",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "#content@textNodes",
      "replaceRegex": "##[\\u0041-\\u005A\\u0061-\\u007A\\uFF21-\\uFF3A\\uFF41-\\uFF5A]+\\.[\\u0041-\\u005A\\u0061-\\u007A\\uFF21-\\uFF3A\\uFF41-\\uFF5A0-9\\uFF10-\\uFF19-]+\\.[\\u0041-\\u005A\\u0061-\\u007A\\uFF21-\\uFF3A\\uFF41-\\uFF5A]{2,}.*|{{chapter.title}}|第[0-9一二两三四五六七八九十百千万]{1,9}章.*|[(（]?本章未?完[）)]?.*|\\(第.+页\\)|.?加入书签.*|.*下一页(翻页)?继续阅读.*|.*退出阅读模式.*|.*点击下载{{book.name}}.*|.*最新永久域名.*|.*一秒记住本站地址.*"
    },
    "ruleExplore": {
      "author": ".s4 > a@text",
      "bookList": ".l li",
      "bookUrl": ".s2 > a@href",
      "coverUrl": ".s2 > a@href\n<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": ".s1@text##\\[|\\]",
      "lastChapter": ".s3 > a@text",
      "name": ".s2 > a@text"
    },
    "ruleSearch": {
      "author": ".s4 > a@text",
      "bookList": "#main > div.novelslist2 > ul > li",
      "bookUrl": ".s2 > a@href",
      "coverUrl": ".s2 > a@href\n<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "{{@@.s6@text}} {{@@.s3 > a@text}}",
      "name": ".s2 > a@text"
    },
    "ruleToc": {
      "chapterList": "dd >a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://www.mcmssc.la/search.html?name={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "有黄广告",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "三五小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.35ge.info",
    "customButton": false,
    "customOrder": 484,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787067882799,
    "respondTime": 934,
    "ruleBookInfo": {
      "author": "//meta[@property=\"og:novel:author\"]/@content",
      "coverUrl": "//meta[@property=\"og:image\"]/@content",
      "intro": "//meta[@property=\"og:description\"]/@content",
      "kind": "//meta[@property=\"og:novel:category\"]/@content",
      "lastChapter": "//meta[@property=\"og:novel:latest_chapter_name\"]/@content&&//meta[@property=\"og:novel:update_time\"]/@content##\\n##•",
      "name": "//meta[@property=\"og:title\"]/@content"
    },
    "ruleContent": {
      "content": "id.content@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".s4@text",
      "bookList": "class.novelslist2@ul@li!0",
      "bookUrl": ".s2@a@href",
      "coverUrl": ".s2@a@href##/(\\d+)/(\\d+)/##http://www.35ge.info/files/article/image/$1/$2/$2s.jpg",
      "kind": ".s1@text",
      "lastChapter": ".s6@text&&.s3@text",
      "name": ".s2@text"
    },
    "ruleToc": {
      "chapterList": "#list@dl@dd@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://www.35ge.info/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "书包书库",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.shubaoku.org",
    "bookUrlPattern": "(https?://)?(www\\.)?shubaoku\\.org",
    "concurrentRate": "5",
    "customButton": false,
    "customOrder": 485,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻修真::https://www.shubaoku.org/list/1/{{page}}/\n重生穿越::https://www.shubaoku.org/list/2/{{page}}/\n都市小说::https://www.shubaoku.org/list/3/{{page}}/\n军史小说::https://www.shubaoku.org/list/4/{{page}}/\n网游小说::https://www.shubaoku.org/list/5/{{page}}/\n科幻小说::https://www.shubaoku.org/list/6/{{page}}/\n灵异小说::https://www.shubaoku.org/list/7/{{page}}/\n言情小说::https://www.shubaoku.org/list/8/{{page}}/\n其他小说::https://www.shubaoku.org/list/9/{{page}}/",
    "header": "{\n    \"Accept\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7\",\n    \"Accept-Language\": \"zh-CN,zh;q=0.9,en;q=0.8\",\n    \"Cache-Control\": \"no-cache\",\n    \"Connection\": \"keep-alive\",\n    \"Content-Type\": \"application/x-www-form-urlencoded\",\n    \"Origin\": \"https://www.shubaoku.org\",\n    \"Pragma\": \"no-cache\",\n    \"Referer\": \"https://www.shubaoku.org/login.html\",\n    \"Sec-Fetch-Dest\": \"document\",\n    \"Sec-Fetch-Mode\": \"navigate\",\n    \"Sec-Fetch-Site\": \"same-origin\",\n    \"Sec-Fetch-User\": \"?1\",\n    \"Upgrade-Insecure-Requests\": \"1\",\n    \"User-Agent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36\",\n    \"sec-ch-ua\": \"\\\"Google Chrome\\\";v=\\\"149\\\", \\\"Chromium\\\";v=\\\"149\\\", \\\"Not)A;Brand\\\";v=\\\"24\\\"\",\n    \"sec-ch-ua-mobile\": \"?0\",\n    \"sec-ch-ua-platform\": \"\\\"Linux\\\"\",\n    \"Cookie\": \"user_id=98101; user_name=syiism; f4606260fbda49db503ecad3eb67cc8e=8c8bf418229bd2b43d75f3d9ee799363\"\n}",
    "lastUpdateTime": 1787324347465,
    "respondTime": 13822,
    "ruleBookInfo": {
      "author": "[property$=author]@content||.row a.0@text",
      "coverUrl": "[property$=image]@content||img@src",
      "intro": "div.first_txt > p@text",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content||.col-md-8.1@text",
      "name": "[property$=book_name]@content||h1@text",
      "tocUrl": "@js: baseUrl+'1/'"
    },
    "ruleContent": {
      "content": ".txt@html||.word_read@p@html",
      "nextContentUrl": "text.下一章@href"
    },
    "ruleExplore": {
      "author": ".s4@text",
      "bookList": "ul.txt-list.txt-list-row5@li ||ul.sort_list@li",
      "bookUrl": "span.s2 > a@href",
      "coverUrl": "<js>\nvar uri = java.getString('a.0@href');\nvar id = uri.match(/\\/\\d+\\/(\\d+)\\//)[1];\n`/img/${id}.jpg`;\n</js>",
      "kind": ".s1@text",
      "lastChapter": "span.s3 > a@text",
      "name": "span.s2 > a@text"
    },
    "ruleSearch": {
      "author": "span.s3 > a@text",
      "bookList": "ul.txt-list.txt-list-row5 > li",
      "bookUrl": "span.s2 > a@href",
      "checkKeyWord": "系统",
      "coverUrl": "<js>\nvar uri = java.getString('a.0@href');\nvar id = uri.match(/\\/\\d+\\/(\\d+)\\//)[1];\n`/img/${id}.jpg`;\n</js>",
      "kind": ".s1@text&&.s5@text",
      "lastChapter": "span.s4 > a@text",
      "name": "span.s2 > a@text"
    },
    "ruleToc": {
      "chapterList": "<js>\nvar pages = java.getElements('tag.select@option');\npages = Math.floor(pages.length / 2);\njava.log(\"pages: \" + pages);\nvar res = [];\nvar set = {}; // 去重\n\nfor (let i = 1; i <= pages; i ++) {\n  var url = baseUrl.replace('/1/', '/' + i + '/');\n  var resp = java.ajax(url);\n  java.setContent(resp);\n  resp = java.getStringList('//ul[@class=\"section-list fix ycxsid\"]/li/a');\n\n  for (let j = 0; j < resp.length; j ++) {\n    var rr = resp[j].match(/<a href=\"(.*?)\">(.*?)<\\/a>/);\n    var title = rr[2], href = rr[1];\n    if (set[title]) continue;\n    var order = href.match(/\\/(\\d+)\\.html/)[1];\n    res.push(JSON.stringify({ title, href, order }));\n    set[title] = true;\n  }\n}\nres.sort((a, b) => {\n  a = JSON.parse(a);\n  b = JSON.parse(b);\n  return a.order - b.order;\n});\nres;\n</js>",
      "chapterName": "$.title",
      "chapterUrl": "$.href"
    },
    "searchUrl": "@js:\ncookie.removeCookie(source.key)\n'https://www.shubaoku.org/search.html,'+`{\"method\":\"POST\",\"body\":\"s={{key}}\"}`",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "鬼吹小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.gdbzkz.org",
    "customButton": false,
    "customOrder": 486,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/fenlei/1/{{page}}.html\n仙侠小说::/fenlei/2/{{page}}.html\n都市小说::/fenlei/3/{{page}}.html\n军史小说::/fenlei/4/{{page}}.html\n网游小说::/fenlei/5/{{page}}.html\n科幻小说::/fenlei/6/{{page}}.html\n恐怖小说::/fenlei/7/{{page}}.html",
    "lastUpdateTime": 1774857755978,
    "respondTime": 2556,
    "ruleBookInfo": {
      "author": "class.small@tag.span.0@text##作 者：",
      "coverUrl": "class.cover@img@src",
      "intro": "class.intro@textNodes##作者.*|无弹窗.*",
      "kind": "[property=og:novel:update_time]@content&&\n[property=og:novel:category]@content&&\n[property=og:novel:status]@content ",
      "lastChapter": "class.small@tag.span.5@a@text##百度搜索.*",
      "name": "class.info@h2@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说",
      "wordCount": "class.info@class.small@tag.span.3@text##字数："
    },
    "ruleContent": {
      "content": "id.content@html##http.*html|天才一秒记住.*org|请记住本书首发域.*org"
    },
    "ruleExplore": {
      "author": "class.s4@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "kind": "class.s5@text",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleSearch": {
      "author": "class.author@text##作者：",
      "bookList": "class.bookbox@class.p10",
      "bookUrl": "class.bookname@tag.a@href",
      "coverUrl": "class.bookimg@img@src",
      "intro": "class.bookinfo@p@text",
      "kind": "class.cat@text##分类：",
      "lastChapter": "class.update@tag.a@text##百度搜索.*",
      "name": "class.bookname@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleToc": {
      "chapterList": "class.listmain@dd!0:1:2:3:4:5:6:7:8:9:10:11",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.gdbzkz.org/s.php?ie=utf-8&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "香书小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.ibiquges.com",
    "customButton": false,
    "customOrder": 487,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻小说\",\"url\":\"/fenlei/1_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"修真小说\",\"url\":\"/fenlei/2_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市小说\",\"url\":\"/fenlei/3_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越小说\",\"url\":\"/fenlei/4_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游小说\",\"url\":\"/fenlei/5_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻小说\",\"url\":\"/fenlei/6_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1784020989578,
    "respondTime": 3415,
    "ruleBookInfo": {
      "author": "//meta[@property='og:novel:author']/@content",
      "coverUrl": "//meta[@property='og:image']/@content",
      "intro": "//meta[@property='og:description']/@content",
      "kind": "[property~=status|category|update_time]@content&&id.info@p.2@text##.*：",
      "lastChapter": "id.info.0@tag.a.-1@text",
      "name": "//meta[@property='og:novel:book_name']/@content"
    },
    "ruleContent": {
      "content": "id.content.0@textNodes",
      "replaceRegex": "##.*第.*章.*\\s"
    },
    "ruleExplore": {
      "author": "class.s5.0@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2.0@tag.a.0@href",
      "lastChapter": "class.s3.0@tag.a.0@text",
      "name": "class.s2.0@tag.a.0@text"
    },
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "tag.tbody.0@tag.tr.!0",
      "bookUrl": "tag.td.0@tag.a.0@href",
      "coverUrl": "tag.td.0@tag.a.0@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\nsource.bookSourceUrl + 'files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "tag.td.1@text",
      "name": "tag.td.0@text"
    },
    "ruleToc": {
      "chapterList": "id.list.0@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/waps.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "看书小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.kanzh.com/",
    "customButton": false,
    "customOrder": 488,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36\"}",
    "lastUpdateTime": 1787323714616,
    "respondTime": 5706,
    "ruleBookInfo": {
      "author": "class.fix@tag.p.0@text",
      "kind": "class.fix@tag.p.1@text",
      "lastChapter": "class.s4@text",
      "name": "class.top@text",
      "tocUrl": "class.first_txt@a@href"
    },
    "ruleContent": {
      "content": "<js>\nvar bes = result.match(/PHA\\+[A-Za-z0-9+\\/]+={0,2}/g);\nif (!bes) {\n    var ml = java.webView(null,baseUrl,null);\n    java.setContent(ml)\n    var txt = java.getString(\"#txt>p@text\");\n    java.longToast(\"正文解密失败，转为webView动态加载。\");\n} else {\nvar result = [];\nfor (var i = 0; i < bes.length; i++) {\n    // 遍历数组，使用阅读内置Base64解码方法\n    var bsej = java.base64Decode(bes[i]);\n    var txtt = String(bsej);\n    result.push(txtt);\n      }\n\tvar txt = result.join('\\n');\n}\ntxt;\n</js>",
      "nextContentUrl": "class.read_btn@tag.a.3@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.s3@text",
      "bookList": "class.txt-list txt-list-row5@li",
      "bookUrl": "class.s2@tag.a@href",
      "checkKeyWord": "我的",
      "kind": "class.s1@text",
      "lastChapter": "class.s4@text",
      "name": "class.s2@text"
    },
    "ruleToc": {
      "chapterList": "class.br-b-1",
      "chapterName": "tag.a@text",
      "chapterUrl": "a@onclick##(\\d+)##$1###\n@js:\nbook.bookUrl.replace(\"index\",result)",
      "nextTocUrl": "class.page_num@tag.a.1@href"
    },
    "searchUrl": "{{cookie.setCookie(source.key,source.getVariable())}}\n/search.html,{\n  \"body\": \"s={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "灯读文学",
    "bookSourceType": 0,
    "bookSourceUrl": "https://s30007.zhongyue001.com",
    "customButton": false,
    "customOrder": 490,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"男生频道\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"玄幻\",\"url\":\"/book/index?category_id=1&sex=1&page={{page}}&type=category\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市\",\"url\":\"/book/index?category_id=2&sex=1&page={{page}}&type=category\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙侠\",\"url\":\"/book/index?category_id=3&sex=1&page={{page}}&type=category\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奇幻\",\"url\":\"/book/index?category_id=5&sex=1&page={{page}}&type=category\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史\",\"url\":\"/book/index?category_id=6&sex=1&page={{page}}&type=category\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"军事\",\"url\":\"/book/index?category_id=7&sex=1&page={{page}}&type=category\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻\",\"url\":\"/book/index?category_id=9&sex=1&page={{page}}&type=category\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}},{\"title\":\"游戏\",\"url\":\"/book/index?category_id=10&sex=1&page={{page}}&type=category\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}},{\"title\":\"女生频道\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"现代言情\",\"url\":\"/book/index?category_id=12&sex=2&page={{page}}&type=category\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代言情\",\"url\":\"/book/index?category_id=13&sex=2&page={{page}}&type=category\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"幻想言情\",\"url\":\"/book/index?category_id=14&sex=2&page={{page}}&type=category\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"青春校园\",\"url\":\"/book/index?category_id=15&sex=2&page={{page}}&type=category\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}}]",
    "header": "{\n\"Content-Type\": \"application/x-www-form-urlencoded\",\n\"ver\": \"1.0.0.0.8\",\n\"token\": \"frbcut22dxuv8wfu31hnvznrd1hht741\",\n\"uid\": \"471097\",\n\"osType\": \"1\",\n\"clientVer\": \"1.0.4\",\n\"User-Agent\": \"okhttp/4.9.1\"\n}",
    "lastUpdateTime": 1784645762420,
    "respondTime": 2339,
    "ruleBookInfo": {
      "author": "$.book_info.author",
      "coverUrl": "https://static.zhongyue001.com//{{$.book_info.spic}}",
      "init": "$.data.book_info_link\n@js:java.ajax(result)",
      "intro": "<br>{$.book_info.descp}",
      "kind": "$.book_info.category_name&&连载中{$.book_info.status}已完结&&$.book_info.updated_at\n##连载中0|1已完结| \\d.*",
      "lastChapter": "$.last_chapter.name",
      "name": "$.book_info.name",
      "tocUrl": "https://s30007.zhongyue001.com/chapter/index?bid={{$.book_info.id}}",
      "wordCount": "$.book_info.word"
    },
    "ruleContent": {
      "content": "$.data.current.link||$.data.chapter_link\n<js>java.ajax(result)</js>\n$.chapter_info.body"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.list",
      "bookUrl": "https://s30007.zhongyue001.com/book/show?bid={{$.id}}",
      "coverUrl": "https://static.zhongyue001.com//{{$.spic}}",
      "intro": "$.descp",
      "kind": "$.category_name&&连载中{$.status}已完结&&$.updated_at\n##连载中0|1已完结| \\d.*",
      "lastChapter": "第{$.chapter_num}章",
      "name": "$.name",
      "wordCount": "$.word"
    },
    "ruleToc": {
      "chapterList": "<js>java.ajax(JSON.parse(result).data.chapter_list_link)</js>\n$.chapter_list",
      "chapterName": "$.name",
      "chapterUrl": "{{baseUrl.replace('index','show')}}&num={{$.num}}"
    },
    "searchUrl": "https://s30007.zhongyue001.com/book/index?page={{page}}&type=search&keyword={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "有黄广告",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "平凡文学",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.pksge.la",
    "customButton": false,
    "customOrder": 491,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1780209773910,
    "respondTime": 852,
    "ruleBookInfo": {
      "author": "class.jieshaokaishi@tag.h2.0@text",
      "coverUrl": "class.jieshaoTu@tag.img@src",
      "intro": "class.jieshaokaishi@tag.h3@text##介 绍：|－－－.*",
      "lastChapter": "class.zuixin@tag.a@text",
      "name": "class.jieshaokaishi@tag.h1@text",
      "wordCount": "class.jieshaokaishi@tag.h2.1@text##更新时间："
    },
    "ruleContent": {
      "content": "id.booktext@html##<!--.*-->|★★.*朋友吧！"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.h3.0@text",
      "bookList": "class.tutui",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "tag.img@src",
      "lastChapter": "tag.a.2@text",
      "name": "tag.a.1@text"
    },
    "ruleToc": {
      "chapterList": "class.zhangjiekaishi@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.pksge.la/modules/article/search.php?searchkey={{key}}&searchtype=articlename",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "大米小说#2",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.damixs.vip",
    "customButton": false,
    "customOrder": 492,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1786586492161,
    "respondTime": 1440,
    "ruleBookInfo": {
      "intro": "#bookIntro@html"
    },
    "ruleContent": {
      "content": "#htmlContent@html##<p id=\"contentTip\"[\\s\\S]+##❎\n<js>\nlist = java.getElement(\"@@id.subFrom@input\").toArray()\nif(list.length){\nbody=\"\";\nfor(i=0;i<list.length;i++){\n\tbody += list[i].attr(\"name\")+\"=\"+java.encodeURI(list[i].attr(\"value\"))+\"&\"\n\t}\nurl = \"https://www.damixs.co/get-page-data?\"+Math.random();\noption = {\n\t\"method\":\"POST\",\n\t\"body\":String(body).replace(/&$/,'')\n\t}\nurl = url+\",\"+JSON.stringify(option)\nj = java.ajax(url);\nresult = result + JSON.parse(j).data+\"❎\"\n}else{\n\tresult = result\n\t}\n</js>",
      "imageStyle": "",
      "nextContentUrl": "@js:\nif (result.indexOf(\"huig.png\") > -1) {\n      \n        code = result.match(/eval\\(function(.*)\\);/)[0]\n        code = code.replace(/__u[0-9a-f]+/, 'uData')\n        eval(code)\n               \n        if(!uData.match('_')) {\n        next = java.getElement(\"@@class.ud-link ud-link1@span@a\")\n         uData = next.attr(\"href\")\n        }\n        uData\n    // java.log(code)\n}",
      "replaceRegex": "##.*向你推荐他的其他作品[\\s\\S]+|.*看最新章节.*|\\s*❎\\s*|\\s*.*?(.{0,8}#){3,}.*\\s*",
      "webJs": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".booktag@text",
      "bookList": "class.col-md-10",
      "bookUrl": "a.0@href",
      "intro": "#bookIntro@text",
      "lastChapter": ".text-danger@text",
      "name": "h4@text"
    },
    "ruleToc": {
      "chapterList": "class.panel-chapterlist.-1@dd@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "preUpdateJs": ""
    },
    "searchUrl": "/search,{\"method\":\"POST\",\"body\":\"keyword={{key}}\"}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "伪书香",
    "bookSourceType": 3,
    "bookSourceUrl": "https://www.sxcnw.org",
    "customButton": false,
    "customOrder": 493,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 32500886400000,
    "respondTime": 3270,
    "ruleBookInfo": {
      "downloadUrls": ".donwAddress-L>a@href##^##{{source.getKey()}}\n<js>java.ajax(result)</js>\na[href*=\"/d/file\"]@href",
      "wordCount": "dd:containsOwn(小说分类：)>a@text"
    },
    "ruleSearch": {
      "author": "b:matches(小说作者：)+a@text",
      "bookList": ".slist",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": "p:contains(小说简介：)@textNodes##\\s+第[1一]章[\\s\\S]*",
      "kind": "##更新时间：(.*?)\\s\\|.*大小\\:(\\d+)\\s*(KB)\\s\\|##$2$3,$1###",
      "name": "h4>a@text"
    },
    "searchUrl": "@js:\nurl=source.getKey()+\"/e/search/index.php\";\nbody=`show=title,softwriter&keyboard=${key}&tbname=download&tempid=1`;\nsurl=java.post(url,body,{}).header(\"location\");\nString(surl).replace(/result.*searchid/,\n\"/e/search/result/index.php?page={{page-1}}&searchid\")",
    "weight": 0
  },
  {
    "bookSourceComment": "//搜索字数6-20个字符之间\n//基础源来自「一程」",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "手机看书",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.sjks88.com/",
    "customButton": false,
    "customOrder": 494,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"最新\",\"url\":\"/latest/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"排行\",\"url\":\"/ranking/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"鬼话\",\"url\":\"/Direct1/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"情感\",\"url\":\"/Direct2/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/xuanhuan/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"奇幻\",\"url\":\"/Direct3/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"商道\",\"url\":\"/Direct4/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"军事\",\"url\":\"/Direct5/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/Direct6/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"传记\",\"url\":\"/zhuanji/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"言情\",\"url\":\"/Direct7/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/ds/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"耽美\",\"url\":\"/danmei/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"同人\",\"url\":\"/erciyuan/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/wuxia/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"修真\",\"url\":\"/xiuzhen/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"官场\",\"url\":\"/guanchang/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"网游\",\"url\":\"/wangyou/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/kehuan/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"穿越\",\"url\":\"/chuanyue/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"悬疑\",\"url\":\"/Suspense/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"纪实\",\"url\":\"/jishi/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"精品\",\"url\":\"/xiaoshuo/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"乡土\",\"url\":\"/xt/<,index_{{page}}.html>\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1729757167972,
    "respondTime": 3741,
    "ruleBookInfo": {
      "author": ".box-artic div.0@text##\\_.*",
      "intro": ".desc@html",
      "kind": ".box-artic div.2:1@text##.*：",
      "lastChapter": "div.list@a.-1@text",
      "name": ".box-artic h1@text##（.*|\\(.*"
    },
    "ruleContent": {
      "content": ".content@html"
    },
    "ruleExplore": {
      "author": "span.0@text##\\_.*",
      "bookList": ".list li",
      "bookUrl": "a@href",
      "coverUrl": "",
      "intro": "p@text",
      "kind": ".pubdate@text",
      "name": "b@text##（.*|\\(.*"
    },
    "ruleSearch": {
      "bookList": ".box ul li",
      "bookUrl": "a.0@href",
      "checkKeyWord": "洪荒：",
      "intro": "p@text",
      "kind": "a.1@text&&span@textNodes",
      "name": "a.0@text##（.*|\\(.*"
    },
    "ruleToc": {
      "chapterList": ".list li a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/e/search/index.php,{\n  \"charset\": \"gb2312\",\n  \"method\": \"post\",\n  \"body\": \"keyboard={{key}}&show=title&classid=0\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "✈ 梦书中文",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.mcxs.info",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 495,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "",
    "lastUpdateTime": 1753263210284,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 3357,
    "ruleBookInfo": {
      "coverUrl": "id.fmimg@tag.img.0@src",
      "init": "",
      "intro": "id.intro"
    },
    "ruleContent": {
      "content": "id.content@html##(章节错误.*请耐心等待。|天才一秒记住本站地址.*无广告！)"
    },
    "ruleExplore": {
      "bookList": ""
    },
    "ruleSearch": {
      "author": "tag.span.2@tag.a@text",
      "bookList": "class.novelslist2@tag.ul@tag.li!0",
      "bookUrl": "tag.span.1@tag.a@href",
      "lastChapter": "tag.span.3@tag.a@text",
      "name": "tag.span.1@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "id.list@dd!0:1:2:3:4:5:6:7:8:9:10:11",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.mcxs.info/search.html?name={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "爱推书君（优）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://pre-api.tuishujun.com/",
    "customButton": false,
    "customOrder": 496,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>\n\tsort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\n\n\nfl1=[[\"全部\",\"0\"],[\"玄幻\",\"3\"],[\"奇幻\",\"4\"],[\"武侠\",\"5\"],[\"仙侠\",\"6\"],[\"都市\",\"7\"],[\"军事\",\"8\"],[\"历史\",\"9\"],[\"游戏\",\"10\"],[\"体育\",\"11\"],[\"科幻\",\"12\"],[\"同人\",\"13\"],[\"悬疑\",\"14\"],[\"轻小说\",\"15\"],[\"诸天\",\"16\"],[\"综合\",\"17\"]];\n\t\tpush('🔥男频·新书榜🔥', null, 1, 1);\n\t\tfl1.map([title,id]=>{\n\t\t\t\turl= `https://pre-api.tuishujun.com/api/listBookRank?rank_type=new_book&first_type_id=1&second_type_id=${id}&page={{page}}&pageSize=10`;\t\t\t\t\n    push(title, url, 1, 0.2);\n    });\n\n\t\n\t\nbs=[[\"全部\",\"0\"],[\"玄幻\",\"3\"],[\"奇幻\",\"4\"],[\"武侠\",\"5\"],[\"仙侠\",\"6\"],[\"都市\",\"7\"],[\"军事\",\"8\"],[\"历史\",\"9\"],[\"游戏\",\"10\"],[\"体育\",\"11\"],[\"科幻\",\"12\"],[\"同人\",\"13\"],[\"悬疑\",\"14\"],[\"轻小说\",\"15\"],[\"诸天\",\"16\"],[\"综合\",\"17\"]];\n[\"全部\",\"起点\",\"晋江\",\"刺猬猫\",\"飞卢\",\"纵横\",\"有毒\",\"息壤\",\"17K\",\"豆瓣\",\"SF\",\"铁血\",\"番茄\"].map((title,id)=>{\n\t   id++;\n\t\tpush('🔥男频·'+title+'🔥', null, 1, 1);\n\t\tbs.map([title,cid]=>{\n\t\t\t\turl= `https://pre-api.tuishujun.com/api/listBookRepository?first_type_id=1&second_type_id=${cid}&source={{(${id}-1)}}&word_number_type=0&update_type=0&is_exclude_selected=0&is_can_read=0&is_filter_added_score=0&page={{page}}`;\t\t\t\t\n    push(title, url, 1, 0.2);\n    });\n\t\t});\n\t\t\n\nfl2=[[\"全部\",\"0\"],[\"古代言情\",\"18\"],[\"现代言情\",\"19\"],[\"幻想言情\",\"20\"],[\"未来言情\",\"21\"],[\"奇幻仙侠\",\"22\"],[\"游戏竞技\",\"23\"],[\"衍生言情\",\"24\"],[\"古代纯爱\",\"25\"],[\"现代纯爱\",\"26\"],[\"幻想纯爱\",\"27\"],[\"衍生纯爱\",\"28\"],[\"百合小说\",\"29\"],[\"女尊\",\"30\"],[\"无cp\",\"31\"],[\"悬疑\",\"32\"],[\"现实\",\"33\"],[\"魔幻\",\"34\"],[\"短篇\",\"35\"],[\"综合\",\"36\"]];\n\t\tpush('🔥女频·新书榜🔥', null, 1, 1);\n\t\tfl2.map([title,id]=>{\n\t\t\t\turl= `https://pre-api.tuishujun.com/api/listBookRank?rank_type=new_book&first_type_id=2&second_type_id=${id}&page={{page}}&pageSize=10`;\t\t\t\t\n    push(title, url, 1, 0.25);\n    });\n\n\n\nns=[[\"全部\",\"0\"],[\"古代言情\",\"18\"],[\"现代言情\",\"19\"],[\"幻想言情\",\"20\"],[\"未来言情\",\"21\"],[\"奇幻仙侠\",\"22\"],[\"游戏竞技\",\"23\"],[\"衍生言情\",\"24\"],[\"古代纯爱\",\"25\"],[\"现代纯爱\",\"26\"],[\"幻想纯爱\",\"27\"],[\"衍生纯爱\",\"28\"],[\"百合小说\",\"29\"],[\"女尊\",\"30\"],[\"无cp\",\"31\"],[\"悬疑\",\"32\"],[\"现实\",\"33\"],[\"魔幻\",\"34\"],[\"短篇\",\"35\"],[\"综合\",\"36\"]];\n[\"全部\",\"起点\",\"晋江\",\"刺猬猫\",\"飞卢\",\"纵横\",\"有毒\",\"息壤\",\"17K\",\"豆瓣\",\"SF\",\"铁血\",\"番茄\"].map((title,id)=>{\n\t   id++;\n\t\tpush('🔥女频·'+title+'🔥', null, 1, 1);\n\t\tns.map([title,cid]=>{\n\t\t\t\turl= `https://pre-api.tuishujun.com/api/listBookRepository?first_type_id=2&second_type_id=${cid}&source={{(${id}-1)}}&word_number_type=0&update_type=0&is_exclude_selected=0&is_can_read=0&is_filter_added_score=0&page={{page}}`;\t\t\t\t\n    push(title, url, 1, 0.25);\n    });\n\t\t});\n\n\nJSON.stringify(sort);",
    "lastUpdateTime": 1766465432073,
    "respondTime": 2418,
    "ruleBookInfo": {
      "author": "@{{$.author_nickname}}",
      "coverUrl": "cover",
      "init": "data",
      "intro": "<br>{{$.tag&&$.second_type_name##^|\\s##🏷}}{{'\\n&lrm;\\n'}}\n{{$.info##(^|[。！？……]+[”」）】》]?)##$1<br>}}",
      "kind": "{{$.source_name}}\n{{$.process_name}}\n{{$.second_type_name}}\n{{$.score}}分\n{{$.last_update_time}}",
      "name": "title",
      "tocUrl": "https://pre-api.tuishujun.com/api/listBookScoreByBook?book_id={$.book_id}&type=all&page=1&pageSize=10&sort_field=create_time&sort_value=desc",
      "wordCount": "word_number_name"
    },
    "ruleContent": {
      "content": "<js>\nfunction parseComments(n){\n  for(var c=[],e=0;e<n.length;e++){\n    var o=n[e];\n    c.push(\"书友：\".concat(o.user.nickname,\"\\n时间：\").concat(o.create_time,\"\\n评分：\").concat(\"♥\".repeat(o.score/2),\"\\n评语：\").concat(o.content.replace(/([。；！？—…]”?)([\\u4e00-\\u9fa5][^。！？—…]{9})/g,\"$1\\n$2\")))\n  }\n  return c.join(\"\\n————\\n\");\n}\nvar data = JSON.parse(result);\ndata.data.total === 0;\ndata.data.total === 0 ? '还没有人对这本书发表评价哦！<br>': parseComments(data.data.data);\n</js>"
    },
    "ruleExplore": {
      "author": "@{{$.author_nickname}}",
      "bookList": "data.data",
      "bookUrl": "https://pre-api.tuishujun.com/api/getBookDetail?book_id={{$.book_id}}",
      "coverUrl": "cover",
      "intro": "info##\\s",
      "kind": "source_name&&process_name&&second_type_name",
      "lastChapter": "score\n<js>\na=result ==\"0.0\"?\"【暂无评分】\": \"好评率\"+(result > 10?result: result=result*10)+\"%\";\nb=\"\";\nresult > 50?b=\" 🔥 \":b=\" ❄️ \";\njava.getString('$.last_chapter_time').slice(0,10)+b+a;\n</js>",
      "name": "title",
      "wordCount": "word_number_name"
    },
    "ruleSearch": {
      "author": "@{{$.author_nickname}}",
      "bookList": "data.data",
      "bookUrl": "https://pre-api.tuishujun.com/api/getBookDetail?book_id={{$.book_id}}",
      "coverUrl": "cover",
      "intro": "$.info",
      "kind": "source_name&&process_name&&second_type_name",
      "lastChapter": "score\n<js>\na=result ==\"0.0\"?\"【暂无评分】\": \"好评率\"+(result > 10?result: result=result*10)+\"%\";\nb=\"\";\nresult > 50?b=\" 🔥 \":b=\" ❄️ \";\njava.getString('$.last_chapter_time').slice(0,10)+b+a;\n</js>",
      "name": "title",
      "wordCount": "word_number_name"
    },
    "ruleToc": {
      "chapterList": "<js>\nvar data = JSON.parse(result).data;\nvar pageCount = Math.ceil(data.total/10) || 1;\nvar list = Array.from(Array(pageCount).keys());\nfor(var i = 0; i <pageCount; i++){\n  var index = list[i]+1;\n  list[i] = {title:'第00' + index +'页', url: baseUrl.split('&')[0] + '&type=all&page=' + index + '&pageSize=10&sort_field=create_time&sort_value=desc'};\n}\nlist;\n</js>",
      "chapterName": "title",
      "chapterUrl": "url"
    },
    "searchUrl": "https://pre-api.tuishujun.com/api/searchBook?search_value={{key}}&sort_field=hot_value&page={{page}}&pageSize=50",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "三九小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.wxshuku.info",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 497,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "",
    "lastUpdateTime": 1734832421718,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 3985,
    "ruleBookInfo": {
      "author": "//*[@id=\"content\"]/div/div[2]/div[2]/div[1]/h2[1]/text()##作者：",
      "canReName": "",
      "coverUrl": "//*[@id=\"content\"]/div/div[2]/div[1]/img/@src",
      "init": "",
      "intro": "//*[@id=\"content\"]/div/div[2]/div[2]/div[3]/p/text()",
      "kind": "h2.2:3:1@text##.*：",
      "lastChapter": "h3@a@text",
      "name": "//*[@id=\"content\"]/div/div[2]/div[2]/div[1]/h1/text()",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "class.novel_content@html##最新网址：www.xyshuk.com",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "##.*最新网址.*|无尽的昏迷过后.*时宇猛地从床上起身.*想要看最新章节.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "@tag.td.2@text",
      "bookList": "class.grid@tbody@tr!0",
      "bookUrl": "@tag.td.0@a@href",
      "coverUrl": "@tag.td.0@a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\nsource.bookSourceUrl + 'files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "intro": "",
      "kind": "",
      "lastChapter": "@tag.td.1@a@text",
      "name": "@tag.td.0@tag.a@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "class.zhangjie",
      "chapterName": "@tag.a@text",
      "chapterUrl": "@tag.a@href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "modules/article/search.php?searchkey={{key}}&searchtype=articlename",
    "variableComment": "",
    "weight": 0
  },
  {
    "bookSourceComment": "26.03.31@小说迷",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "久久小说（+++）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.ijjxsxzw.com/",
    "bookUrlPattern": "https://m.ijjjxsxzw.com/txt/\\d+.htm",
    "customButton": false,
    "customOrder": 498,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "穿越::/txt/chuanyue/index_{{page}}.html\n重生::/txt/chongshengxiaoshuo/index_{{page}}.html\n架空::/txt/lsjs/index_{{page}}.html\n总裁::/txt/qinggan/index_{{page}}.html\n现言::/txt/young/index_{{page}}.html\n修仙::/txt/wuxia/index_{{page}}.html\n纯美::/txt/dmtr/index_{{page}}.html\n玄幻::/txt/xuanhuan/index_{{page}}.html\n都市::/txt/dushi/index_{{page}}.html\n惊悚::/txt/kongbu/index_{{page}}.html",
    "lastUpdateTime": 1787587102394,
    "respondTime": 2595,
    "ruleBookInfo": {
      "author": "a@text",
      "coverUrl": "img@src",
      "init": ".list_a",
      "kind": "span@text##.*：",
      "name": "h1@text",
      "tocUrl": "{{baseUrl}}##.*/txt/(\\d+).html##/read/$1/"
    },
    "ruleContent": {
      "content": "#Content@p@html"
    },
    "ruleExplore": {
      "author": ".main@span.0@text",
      "bookList": ".booklist_a li",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": ".intro@text",
      "name": "a.1@text"
    },
    "ruleSearch": {
      "author": ".main@span.1@text",
      "bookList": "ul@li@.list_a",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": ".intro@text",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": ".chapter-list@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "@js:java.ajax(source.key)\n;`/e/search/index.php,{\n  \"method\": \"POST\",\n  \"body\": \"show=title&keyboard={{key}}\"\n}`",
    "weight": 0
  },
  {
    "bookSourceComment": "by幕惜&by天天的鸟蛋蛋",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "无限小说#1",
    "bookSourceType": 0,
    "bookSourceUrl": "https://wuxianbook.com",
    "customButton": false,
    "customOrder": 499,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787020803447,
    "respondTime": 43740,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "init": "<js>\nid=src.match(/data\\-bookid\\=\\\"(\\d+)\\\"/)[1]\njava.log(id)\njava.put(\"id\",id)\n</js>",
      "intro": "[property$=description]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content",
      "name": "[property$=book_name]@content",
      "tocUrl": "<js>\nid=java.get(\"id\");\njava.log(id)\nurl=\"https://wuxianbook.com/e/extend/bookpage/pages.php?id=\"+id+\"&pageNum=0&dz=asc\"\nurl;\n</js>"
    },
    "ruleContent": {
      "content": "#text@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".book-author@text",
      "bookList": ".s-nv-list@ul@li",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": "p@text",
      "name": ".title@text"
    },
    "ruleToc": {
      "chapterList": ".list[*]",
      "chapterName": ".title",
      "chapterUrl": "{{book.bookUrl}}{{$.pic}}",
      "nextTocUrl": ".totalPage\n<js>\nid=java.get(\"id\");\njava.log(id)\nmatch=String(result).match(/(\\d+)/)\nn=match[1]\nlist=[]\nfor(var i=1; i<=n; i++){\n\n        list.push(\"https://wuxianbook.com/e/extend/bookpage/pages.php?id=\"+id+\"&pageNum=\"+i+\"&dz=asc\")\n\n        }\n\nlist;\n</js>"
    },
    "searchUrl": "https://wuxianbook.com/e/search/index.php,{\n  \"body\": \"tbname=bookname&show=title&tempid=1&keyboard={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "正文解密by转义字符 = = ",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "基德书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.gaysay.com",
    "customButton": false,
    "customOrder": 500,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"排行\",\"url\":\"/rank/all/0/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"飞魔幻\",\"url\":\"/rank/all/1/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"飞言情\",\"url\":\"/rank/all/3/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"桃之夭夭\",\"url\":\"/rank/all/2/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"花火\",\"url\":\"/rank/all/4/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"/rank/all/5/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"言情\",\"url\":\"/rank/all/6/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"/rank/all/7/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"/rank/all/8/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"外国\",\"url\":\"/rank/all/9/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"历史\",\"url\":\"/rank/all/10/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"恐怖\",\"url\":\"/rank/all/11/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/rank/all/12/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"军史\",\"url\":\"/rank/all/13/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/rank/all/14/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"其他\",\"url\":\"/rank/all/15/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/rank/all/16/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"灵异\",\"url\":\"/rank/all/17/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"/rank/all/18/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"仙侠\",\"url\":\"/rank/all/19/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"侦探\",\"url\":\"/rank/all/20/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"恐怖\",\"url\":\"/rank/all/21/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"/rank/all/22/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"竞技\",\"url\":\"/rank/all/23/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"军事\",\"url\":\"/rank/all/24/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"/rank/all/25/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"完本\",\"url\":\"/category/finish/0/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"飞魔幻\",\"url\":\"/category/finish/1/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"飞言情\",\"url\":\"/category/finish/3/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"桃之夭夭\",\"url\":\"/category/finish/2/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"花火\",\"url\":\"/category/finish/4/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"/category/finish/5/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"言情\",\"url\":\"/category/finish/6/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"/category/finish/7/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"/category/finish/8/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"外国\",\"url\":\"/category/finish/9/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"历史\",\"url\":\"/category/finish/10/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"恐怖\",\"url\":\"/category/finish/11/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/category/finish/12/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"军史\",\"url\":\"/category/finish/13/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/category/finish/14/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"其他\",\"url\":\"/category/finish/15/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/category/finish/16/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"灵异\",\"url\":\"/category/finish/17/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"/category/finish/18/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"仙侠\",\"url\":\"/category/finish/19/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"侦探\",\"url\":\"/category/finish/20/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"恐怖\",\"url\":\"/category/finish/21/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"/category/finish/22/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"竞技\",\"url\":\"/category/finish/23/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"军事\",\"url\":\"/category/finish/24/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"/category/finish/25/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1774857743504,
    "respondTime": 4770,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content||[property=\"og:novel:lastest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": ".BGsectionOne-bottom@a.1@href"
    },
    "ruleContent": {
      "content": "<js>\ntry {\n\nfunction d(a, b) {\nb = java.md5Encode(b);\nvar d = b.substring(0, 16);\nvar e = b.substring(16);\nreturn java.aesBase64DecodeToString(a,e,\"AES/CBC/PKCS5Padding\",d)\n}\n\nresult=eval(src.match(/(d\\(\"[\\s\\S]+\"\\))\\);/)[1])\n} catch(err) {\n\nresult=result\n}\n\na=escape(result).replace(/%u200[ABDCEF]/g,\"\")\nunescape(a)\n\n</js>"
    },
    "ruleExplore": {
      "author": "p.1@a@text",
      "bookList": ".book_list_img@li&&.CGsectionTwo-right-content-unit",
      "bookUrl": "a.0@href",
      "coverUrl": "img@_src",
      "intro": "p.2@text",
      "kind": "p.3@text##.*\\s",
      "name": "a.0@text"
    },
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".SHsectionThree-middle@p",
      "bookUrl": "a.1@href",
      "kind": "a.0@text",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": "<js>\ntemp=result\nR=org.jsoup.Jsoup.parse(temp).select(\".BCsectionTwo-top-chapter a\")\nc=[]\nR.forEach(r=>{\n\ti=String(r.attr('href')).replace(/.+\\/\\d+\\/(\\d+)\\.html/,`$1`)\n\t//java.log(i)\n\tc.push({\n\t\tname:r.text(),\n\t\turl:r.attr('href'),\n\t\tindex:i\n\t\t})\n\t})\ntry{\n\to=temp.match(/originalOrder[^=]*=[^\\[]*\\[([^\\]]+)\\]/)[1]\n\to=o.split(\",\")\n\tc.sort((a,b)=>o[c.indexOf(a)]-o[c.indexOf(b)])\n\t}catch (err){\n\t\tjava.log(err)\n\t\tc.sort((a,b)=>a.index-b.index)\n\t\t}\n\tresult=c\n</js>",
      "chapterName": "name",
      "chapterUrl": "url",
      "nextTocUrl": "id.next@href"
    },
    "searchUrl": "/search/{{key}}/{{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.xbiquge.la/#♤pb",
    "bookUrlPattern": "https://www.xbiquge.la/\\d+/\\d+/",
    "customButton": false,
    "customOrder": 501,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/fenlei/1_{{page}}.html\n修真小说::/fenlei/2_{{page}}.html\n都市小说::/fenlei/3_{{page}}.html\n穿越小说::/fenlei/4_{{page}}.html\n网游小说::/fenlei/5_{{page}}.html\n科幻小说::/fenlei/6_{{page}}.html",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows; U; Windows NT 5.2;. en-US) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 Quark/4.6.6.164\"\n}",
    "lastUpdateTime": 1721012959907,
    "loginUrl": "",
    "respondTime": 7071,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作    者：",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.intro@text",
      "kind": "id.info@tag.p.2@text##最后更新：",
      "lastChapter": "id.info@tag.p.3@a@text",
      "name": "id.info@tag.h1.0@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleContent": {
      "content": "id.content@html##亲,点击进去,给个好.*漂亮的老婆哦!|手机站全新改版.*广告清新阅读！",
      "nextContentUrl": "",
      "webJs": "getDecode();$('#content').html();"
    },
    "ruleExplore": {
      "author": "class.s5@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "class.s2@a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.xbiquge.la/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text"
    },
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "tag.td.0@tag.a@href",
      "coverUrl": "tag.td.0@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.xbiquge.la/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "tag.td.1@tag.a@text",
      "name": "tag.td.0@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://www.xbiquge.la/modules/article/waps.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "海棠书屋#1",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.haitangwx.com",
    "customButton": false,
    "customOrder": 502,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"总点击\",\"url\":\"/top/allvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月点击\",\"url\":\"/top/monthvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周点击\",\"url\":\"/top/weekvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园言情\",\"url\":\"/sort/1_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市言情\",\"url\":\"/sort/2_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古代言情\",\"url\":\"/sort/3_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"罗曼史\",\"url\":\"/sort/4_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"耽美\",\"url\":\"/sort/5_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"百合\",\"url\":\"/sort/6_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"/sort/7_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"奇幻玄幻\",\"url\":\"/sort/8_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"网游竞技\",\"url\":\"/sort/9_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻异能\",\"url\":\"/sort/10_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"恐怖灵异\",\"url\":\"/sort/11_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"惊悚推理\",\"url\":\"/sort/12_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠仙侠\",\"url\":\"/sort/13_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"历史军事\",\"url\":\"/sort/14_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"穿越重生\",\"url\":\"/sort/15_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"综合其他\",\"url\":\"/sort/16_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"完本\",\"url\":\"/full/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\" \",\"url\":\" \",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1787466687439,
    "respondTime": 6186,
    "ruleBookInfo": {
      "author": ".xx a.1@text",
      "coverUrl": "img@src",
      "intro": ".jianjie@html##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": ".xx a.0@text##小说",
      "lastChapter": ".xx a.2@text##正文\\s",
      "name": ".xx li.0@text##\\_.*",
      "tocUrl": ".gengduo a@href"
    },
    "ruleContent": {
      "content": "#nr@html",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "a.2@text",
      "bookList": ".list ul",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": "span.2@text##\\s",
      "kind": "span.-1@text",
      "name": "a.1@text##\\_.*"
    },
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".fk li",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "kind": "a.0@text##\\[|\\]",
      "name": "a.1@text##\\_.*"
    },
    "ruleToc": {
      "chapterList": ".lb li a",
      "chapterName": "text##本页章节.*",
      "chapterUrl": "href",
      "nextTocUrl": ".showpage@a@href"
    },
    "searchUrl": "/s.php,{\n  \"charset\": \"gbk\",\n  \"method\": \"POST\",\n  \"body\": \"s={{key}}&type=articlename\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "猪猪小说#2",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.zzs5.net#♤yc",
    "customButton": false,
    "customOrder": 503,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"穿越\",\"url\":\"/chuanyue/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"言情\",\"url\":\"/yanqing/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"灵异\",\"url\":\"/lingyi/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"/wuxia/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/kehuan/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"历史\",\"url\":\"/lishi/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"/xiaoyuan/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"文学\",\"url\":\"/wenxue/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"魔幻\",\"url\":\"/mohuan/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"重生\",\"url\":\"/chongsheng/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"耽美\",\"url\":\"/danmei/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"国外\",\"url\":\"/guowai/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"/wangyou/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"豪门\",\"url\":\"/haomen/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"其他\",\"url\":\"/qita/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"人物\",\"url\":\"/renwu/list-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}}]",
    "lastUpdateTime": 1787070289144,
    "respondTime": 2440,
    "ruleBookInfo": {
      "author": "tbody.1@tr.3@td.1@text||.bookd-title dd@ownText##.*作者.|\\s.*",
      "intro": ".show_content!1@html",
      "kind": ".catpos a.1@text&&tbody.1@tr.3@td.0@text&&.bookd-title dd@ownText##.*：|小说|\\s.*",
      "lastChapter": "tbody.1@a@text||.list a.-1@text##[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]",
      "name": "tbody.0@h1@text||.bookd-title h1@text##下载",
      "tocUrl": "#downlink a.0@href",
      "wordCount": "tbody.1@tr.2@td.1@text##.*："
    },
    "ruleContent": {
      "content": ".content!0@html"
    },
    "ruleExplore": {
      "bookList": "tbody.0@tr",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": "td.1@text##.*介绍.|发布时间.*",
      "kind": "p.0@text##.*时间.|\\s.*",
      "lastChapter": "a.2@text",
      "name": "a.1@text",
      "wordCount": "p.0@text##.*：|\\s"
    },
    "ruleSearch": {
      "bookList": "tbody tr",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "kind": "p.0@text##.*：|\\s",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": ".list dd a",
      "chapterName": "text##[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]",
      "chapterUrl": "href"
    },
    "searchUrl": "/index.php?m=search&c=index&a=init&typeid=2&siteid=1&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎉 优选",
    "bookSourceName": "海词精选（优）",
    "bookSourceType": 0,
    "bookSourceUrl": "http://dict.cn",
    "customButton": false,
    "customOrder": 504,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1766465442505,
    "respondTime": 205,
    "ruleBookInfo": {
      "intro": "text"
    },
    "ruleContent": {
      "content": "html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "@css:.phonetic@text",
      "bookList": "body",
      "lastChapter": "@css:.dict-basic-ul@text",
      "name": "@js:decodeURI(baseUrl.split(\"/\").pop())"
    },
    "ruleToc": {
      "chapterList": "body",
      "chapterName": "@js:\"详细\""
    },
    "searchUrl": "http://dict.cn/{{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "作者：鹤熙",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "书库阁网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.shukuge.com",
    "customButton": false,
    "customOrder": 505,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::/i-xuanhuan/{{page}}\n言情::/i-yanqinh/{{page}}\n穿越::/i-chuanyue/{{page}}\n重生::/i-chongsheng/{{page}}\n架空::/i-jiakong/{{page}}\n总裁::/i-zongcai/{{page}}\n武侠::/i-wuxia/{{page}}\n仙侠::/i-xianxia/{{page}}\n耽美::/i-danmei/{{page}}\n都市::/i-dushi/{{page}}\n军事::/i-junshi/{{page}}\n网游::/i-wangyou/{{page}}\n悬疑::/i-xuanyi/{{page}}\n文学::/i-wenxue/{{page}}\n科幻::/i-kehuan/{{page}}\n修真::/i-xiuzhen/{{page}}\n历史::/i-lishi/{{page}}\n其他::/i-qita/{{page}}",
    "header": "{\n\"User-Agent\":\"Mozilla/5 (Android 11; wv; Arm64) Chrome126 Mobile Safari\"\n}",
    "lastUpdateTime": 1787022342465,
    "respondTime": 2814,
    "ruleBookInfo": {
      "author": "p:nth-child(3) > a@text",
      "coverUrl": ".bookdcover > img@src",
      "intro": ".bookdtext > p:nth-child(2)@text##.+下载后请在24小时之内删除\\.|我",
      "kind": ".bookdmore > p:nth-child(1) > a@text&&.bookdmore > p:nth-child(2) > a@text&&.bookdmore > p:nth-child(4)@text&&.bookdmore > p:nth-child(8)@text##状态：|最新时间：",
      "lastChapter": "p:nth-child(7) > a@text",
      "name": ".bookdcover > img@alt",
      "tocUrl": "p:nth-child(8) > .btn@href"
    },
    "ruleContent": {
      "content": "#content > #content@textNodes"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.span.0@text",
      "bookList": ".listitem",
      "bookUrl": ".bookdesc > a@href",
      "coverUrl": "img@src",
      "intro": "class.desc.1@text##简介：.+下载后请在24小时之内删除\\.|我",
      "kind": "tag.span.1@text&&tag.span.2@text&&tag.span.3@text##分类：|状态：|类型：",
      "lastChapter": ".desc > a@text",
      "name": "h2@text"
    },
    "ruleToc": {
      "chapterList": "dl > dd",
      "chapterName": "dd > a@text",
      "chapterUrl": "dd > a@href"
    },
    "searchUrl": "/Search?wd={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "零点看书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://23.225.143.232",
    "bookUrlPattern": "http://23.225.143.232\\/ldks\\/\\d+.*?",
    "customButton": false,
    "customOrder": 506,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "完本::/wanbenxiaoshuo/\n最新::/",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; 22041211AC Build/SP1A.210812.016) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.104 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1787417381322,
    "respondTime": 6267,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content##\\s{1,}",
      "kind": "[property~=update_time|status|category]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "#content@textNodes",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##.*\\(第.*页\\)|.*\\（第.*页\\）|\\（本章未完.*\\）|\\(本章未完.*\\)"
    },
    "ruleExplore": {
      "author": ".s4@text",
      "bookList": "[class=\"layout layout2 layout-col2 fl\"]@ul@li||.txt-list@li",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##/ldks/(\\d+)(\\d{2})##http://www.23txtv.com/files/article/image/$1/$1$2/$1$2s.jpg###",
      "kind": ".s5@text",
      "lastChapter": ".s3@text",
      "name": ".s2@text"
    },
    "ruleSearch": {
      "author": ".s4@text",
      "bookList": ".txt-list@li!0",
      "bookUrl": "a.0@href",
      "checkKeyWord": "夜无疆",
      "coverUrl": "a.0@href##/ldks/(\\d+)(\\d{3})##http://www.23txtv.com/files/article/image/$1/$1$2/$1$2s.jpg###",
      "kind": ".s5@text&&.s1@text##\\[|\\]",
      "lastChapter": ".s3@text",
      "name": ".s2@text"
    },
    "ruleToc": {
      "chapterList": ".section-list.1@li@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option!0@value"
    },
    "searchUrl": "/ar.php?keyWord={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "新百强小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.iinbqg.com/",
    "concurrentRate": "3",
    "customButton": false,
    "customOrder": 507,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\npush(\"全部🌊分类\",null,1,1)\npush(\"🌊全本🌊\",`/quanben.html`,1,1)\n\tarList=[\"玄幻\",\"修真\",\"都市\",\"穿越\",\"网游\",\"科幻\",\"其他\"]\n\tarList.map((tag,uri)=>{\n\t\turl=`/xclass/${uri+1}/{{page}}.html`;\n\t\tpush(tag, url, 1, 0.25);\n\t\t});\n//java.log(JSON.stringify(sort))\nJSON.stringify(sort)",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 15; V2304A Build/AP3A.240905.015.A2; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/126.0.6478.71 Mobile Safari/537.36\",\n  \"sec-ch-ua-platform\": \"Android\",\n  \"origin\": \"http://m.iinbqg.com/\",\n  \"x-requested-with\": \"cn.mujiankeji.mbrowser\",\n  \"referer\": \"http://m.iinbqg.com/\",\n  \"accept-language\": \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"\n}\n",
    "lastUpdateTime": 1786407949130,
    "respondTime": 3757,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content##\\s",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "text.查看更多章节@href"
    },
    "ruleContent": {
      "content": "#chaptercontent@html",
      "nextContentUrl": "text.下ー页@href",
      "replaceRegex": "##.*手机版网址.*|.*加入书签.*|.*本章未完.*|第(.*?)章.*"
    },
    "ruleExplore": {
      "author": "span.0@text&&.s3@text",
      "bookList": ".item&&ul@li",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": "dd@text",
      "kind": ".s1@text",
      "name": "a.1@text&&.s2@text"
    },
    "ruleSearch": {
      "author": ".author@text",
      "bookList": ".bookbox",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "kind": ".cat@text",
      "lastChapter": "a.-1@text",
      "name": "h4@text"
    },
    "ruleToc": {
      "chapterList": "dl@dd!0",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "/s.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎃QQ阅读🎃#5",
    "bookSourceType": 0,
    "bookSourceUrl": "https://bookshelf.html5.qq.com#🎃",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 508,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"男频\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"都市\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1505&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1505&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1501&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1501&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1504&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1504&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奇幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1502&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1502&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1506&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1506&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"军事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1507&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1507&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻空间\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1509&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1509&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"悬疑侦探\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1508&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1508&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1510&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1510&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1503&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1503&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"体育\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1511&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1511&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"轻小说\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1512&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1512&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"风格\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"轻松\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20284&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20284&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"热血\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20286&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20286&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"快节奏\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20281&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20281&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"脑洞大\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20280&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20280&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"搞笑\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22176&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22176&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"谋略\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20285&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20285&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"智斗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20279&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20279&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"正能量\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20282&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20282&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"思想迪化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20561&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20561&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"人生巅峰\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22147&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22147&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"群像\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20278&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20278&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"爽文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20882&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20882&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"神功秘籍\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22132&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22132&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"机缘奇遇\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22144&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22144&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"鬼怪神魔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22247&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22247&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"兄弟情义\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22309&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22309&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"孙悟空\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22356&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22356&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"红颜知己\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22187&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22187&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"变异生物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22258&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22258&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"高科技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22249&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22249&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"剑道\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22286&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22286&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}},{\"title\":\"流派\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"穿越\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20003&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20003&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"系统流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20006&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20006&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"无敌流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20011&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20011&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"重生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20002&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20002&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日常文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20007&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20007&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"赚钱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20136&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20136&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"强者归来\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20021&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20021&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"经营\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20000&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20000&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"草根崛起\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20020&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20020&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"无限流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20008&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20008&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"诸天流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20023&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20023&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"扮猪吃虎\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20019&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20019&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"开局流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20515&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20515&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"文娱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20050&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20050&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"斗罗大陆\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20199&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20199&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"争霸\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20028&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20028&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏异界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20162&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20162&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"兵王\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20030&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20030&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"练功流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20166&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20166&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"护花高手\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20134&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20134&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"洪荒\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20057&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20057&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"末世\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20055&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20055&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"升级流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20094&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20094&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"废柴流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20015&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20015&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"天才流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20014&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20014&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"医生流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20033&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20033&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"综漫\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20200&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20200&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"凡人流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20503&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20503&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"架空历史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20148&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20148&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异能\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20046&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20046&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"进化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20082&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20082&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"召唤流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20012&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20012&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"三国\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20026&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20026&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"养成\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20004&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20004&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"种田\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20090&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20090&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"单女主\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20060&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20060&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"灵气复苏\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20058&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20058&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异兽流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20009&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20009&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"签到\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20497&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20497&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"时空文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20183&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20183&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"赘婿流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20081&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20081&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"乱世\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20156&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20156&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"技术流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20163&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20163&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武道\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20102&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20102&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20107&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20107&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"唐朝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20142&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20142&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"西游\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20079&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20079&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古典仙侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20035&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20035&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"职场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20507&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20507&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"现代修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20109&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20109&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市修仙\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20083&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20083&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20075&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20075&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"未来世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20185&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20185&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"直播文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20067&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20067&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"悬疑流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20187&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20187&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"星际\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20053&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20053&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"明朝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20144&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20144&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"LOL\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20024&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20024&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"神话\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20069&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20069&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"布局流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20010&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20010&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宠物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20093&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20093&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"现代都市\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22178&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22178&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"秦汉\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20141&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20141&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"炼丹\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20499&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20499&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"封神\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20043&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20043&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异世穿越\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20112&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20112&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"朝堂\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20147&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20147&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"爱情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20498&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20498&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"中医\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20027&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20027&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学院流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20016&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20016&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"朝堂江湖\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20054&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20054&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"特种兵\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20059&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20059&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科举\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20070&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20070&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奶爸\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20040&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20040&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"战神流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20097&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20097&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20072&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20072&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"电竞\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20066&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20066&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"战争\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20047&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20047&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"龙\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20510&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20510&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"随身流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20013&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20013&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"练功\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20130&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20130&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22158&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22158&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"剑与魔法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20111&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20111&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"幕后流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20098&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20098&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"现代诡秘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20190&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20190&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"校园\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20508&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20508&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"强者流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20131&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20131&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"反套路\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20202&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20202&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"皇帝流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20517&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20517&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"御兽流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20502&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20502&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"探险\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20514&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20514&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日系\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20051&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20051&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"软饭流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20017&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20017&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"开挂流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20174&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20174&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"美食\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20001&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20001&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"魔法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20087&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20087&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"商战\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20037&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20037&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"盛世\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20155&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20155&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"强国\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20149&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20149&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"领主流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20085&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20085&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"无女主\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20061&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20061&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"篮球\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20177&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20177&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"时空门\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20052&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20052&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"斗破苍穹\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20198&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20198&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"吐槽\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20103&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20103&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"鉴宝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20084&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20084&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"属性流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20125&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20125&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"精灵文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20531&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20531&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宗门\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20132&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20132&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"NBA\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20178&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20178&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"卡牌\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20005&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20005&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"军旅\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20031&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20031&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科技修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20071&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20071&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"克苏鲁\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20029&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20029&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"权谋\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20504&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20504&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异界大陆\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22148&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22148&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宋朝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20143&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20143&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻宇宙\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22230&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22230&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"虚拟现实\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20165&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20165&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"侦探推理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20524&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20524&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"治愈\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20137&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=20137&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"机甲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20056&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20056&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奋斗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20208&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20208&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"抗战\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20049&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20049&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"BOSS流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20096&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20096&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"互联网\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20135&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20135&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"诡秘修行\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20192&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20192&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"成神流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20124&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20124&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"足球\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20176&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20176&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"蜀山\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20078&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20078&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"聊天群\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20512&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20512&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"华娱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20139&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20139&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"领主种田\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20116&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20116&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"洪荒流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20866&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20866&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"修罗场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20201&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20201&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"王者荣耀\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20025&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20025&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"极道流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20121&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20121&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"年代文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20518&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20518&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"掌门流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20501&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20501&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"巫师流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20045&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20045&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"炼器\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20500&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20500&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"隋唐\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20157&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20157&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"家族\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20089&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20089&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"职业文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20110&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20110&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"文明战争\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20106&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20106&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"策略流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20175&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20175&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"贞观\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20158&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20158&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"气运流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20129&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20129&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"电影世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22294&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22294&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"火影\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22407&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22407&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"掠夺流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20095&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20095&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"吃鸡\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20036&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20036&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"反转\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20092&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20092&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"刑侦\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20032&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20032&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"灵根\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20128&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20128&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"长生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20532&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20532&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"基因\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20039&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20039&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代神话\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22186&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22186&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"聊斋\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20076&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20076&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奇幻历史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20117&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20117&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学霸\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20042&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20042&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"原创副本\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20186&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20186&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"摊牌流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20516&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20516&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"工业\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20044&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20044&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"多女主\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20062&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20062&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"第四天灾\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20530&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20530&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"文明演化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20073&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20073&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"黑暗流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22257&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22257&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"丧尸\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20167&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20167&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"生存挑战\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20191&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20191&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"NPC\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20170&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20170&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"创业\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20211&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20211&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"变身文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22204&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22204&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"荒野求生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20513&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20513&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"抽奖\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20509&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20509&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"逆袭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20209&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20209&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"诡异游戏\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20193&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20193&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"富民\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20150&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20150&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代怪异\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20188&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20188&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"综艺文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20511&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20511&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"手游\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20173&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20173&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"平行世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22463&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22463&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"漫威\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22327&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22327&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"山海经\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20126&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20126&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"供应商\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20101&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20101&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"风水\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20104&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20104&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"天庭文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22643&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22643&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"氪金\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20521&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20521&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"金融\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20506&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20506&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"神奇生物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20113&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20113&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"原始流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20522&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20522&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"祖宗流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20122&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20122&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"欧洲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20063&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20063&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"综武\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22350&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22350&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"皇帝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22348&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22348&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"海贼王\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22390&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22390&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"扮演流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20527&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20527&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"事务所\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20018&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20018&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22292&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22292&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"蒸汽朋克\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20077&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20077&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"国术\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20038&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20038&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"美女校花\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22252&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22252&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"儒道流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20118&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20118&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"谍战\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20080&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20080&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"主神\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20086&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20086&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"赛博朋克\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20105&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20105&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"金手指\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22173&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22173&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏制作\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20169&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20169&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿书\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22314&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22314&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"现代魔法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20114&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20114&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"诡秘养成\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20189&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20189&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"分身\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20119&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20119&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"夺舍\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20100&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20100&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"人物\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"杀伐果断\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20272&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20272&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"冷静\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20266&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20266&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"智商在线\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20274&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20274&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"腹黑\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20269&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20269&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宅男\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20548&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20548&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20542&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20542&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"搞怪\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20270&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20270&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"无节操\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20273&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20273&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"成熟\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20267&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20267&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"三观正\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20272&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20272&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"明星\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20543&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20543&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"思路清奇\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20276&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20276&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"法师\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20536&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20536&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"谨慎\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20277&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20277&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"自律\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20268&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20268&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"嘴炮\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20271&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20271&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"剑修\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20537&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20537&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"王侯\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20241&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20241&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女神\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22383&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22383&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"钢铁直男\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20560&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20560&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"道士\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20538&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20538&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玩家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20256&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20256&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"职业选手\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20254&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20254&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异能者\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20260&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20260&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"侠客\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20228&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20228&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"枭雄\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20245&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20245&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙帝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20559&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20559&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"老板\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20544&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20544&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"战士\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20535&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20535&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"老师\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20541&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20541&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"杀手\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20240&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20240&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"农民\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20236&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20236&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"富二代\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22499&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22499&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"皇子\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20553&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20553&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"夫妻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20239&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20239&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"成长型\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22146&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22146&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"骑士\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20533&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20533&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科学家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20557&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20557&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"大师兄\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20554&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20554&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"寒门子弟\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20242&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20242&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"教练\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20545&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20545&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"特工\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20549&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20549&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"警察\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20546&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20546&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"三教九流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20237&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20237&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"运动员\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20257&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20257&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"轮回者\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20261&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20261&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"写手\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20233&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20233&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"基因武者\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20259&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20259&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"厨师\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20234&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20234&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"猎人\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20534&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20534&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"美食家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20235&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20235&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"门阀\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20244&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20244&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"指挥官\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20551&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20551&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"保镖\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20231&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20231&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"黑客\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20547&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20547&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"盗贼\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20255&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20255&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"和尚\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20556&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20556&tag_type_id=1'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女频\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"现代言情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1524&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1524&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代言情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1523&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1523&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"悬疑侦探\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1518&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1518&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙侠奇缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1517&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1517&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻言情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1516&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1516&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"浪漫青春\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1522&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1522&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻空间\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1519&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1519&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1520&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1520&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"纯爱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=1707&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=1707&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"风格\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"甜宠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20490&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20490&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"轻松\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20487&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20487&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"爽文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20491&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20491&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宠文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=21175&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=21175&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"爆笑\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20488&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20488&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"励志\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20494&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20494&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"温馨\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20639&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20639&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"正剧\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20493&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20493&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"萌系\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20638&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20638&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"虐文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20489&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20489&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"热血\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20495&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20495&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"甜文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=21311&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=21311&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"狗粮\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22457&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22457&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"悲剧\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20492&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20492&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"追妻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22275&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22275&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"斗极品\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22223&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22223&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"天作之合\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22169&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22169&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"追妻火葬场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22213&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22213&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"情节\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"穿越\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20287&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20287&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"1V1\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20297&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20297&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女强\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20292&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20292&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"豪门\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20350&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20350&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"重生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20288&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20288&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日久生情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20311&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20311&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"HE\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20296&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20296&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宅斗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20358&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20358&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"权谋\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20256&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20356&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"强强\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20293&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20293&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"扮猪吃虎\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20305&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20305&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"欢喜冤家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20309&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20309&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"架空\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20562&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20562&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"家长里短\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20310&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20310&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"打脸\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20290&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20290&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"先婚后爱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20368&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20368&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"种田\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20349&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20349&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"逆袭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20298&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20298&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"系统流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20294&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20294&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宫斗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20357&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20357&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"娱乐圈\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20365&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20365&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿书\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20304&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20304&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"快穿\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20378&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20378&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"独宠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20585&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20585&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"空间\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20300&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20300&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"婚恋\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20329&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20329&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"相爱相杀\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20313&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20313&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"校园\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20351&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20351&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"青梅竹马\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20308&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20308&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"复仇\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20318&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20318&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"金手指\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20301&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20301&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"破镜重圆\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20314&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20314&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宝宝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20295&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20295&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"一见钟情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20312&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20312&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"马甲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20334&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20334&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"修仙\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20571&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20571&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"同居\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20364&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20364&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"虐渣\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20337&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20337&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20372&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20372&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"致富\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20341&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20341&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"年代文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20565&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20565&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异能\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20302&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20302&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"双向暗恋\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20306&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20306&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"别后重逢\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20575&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20575&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女扮男装\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20307&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20307&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"美食\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20291&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20291&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"前世今生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20340&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20340&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"隐婚\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20361&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20361&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20299&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20299&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"生死大爱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20322&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20322&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"升级\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20319&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20319&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"末世\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20377&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20377&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"黑化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20333&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20333&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"位面\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20567&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20567&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"农门\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22216&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22216&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"世家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20572&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20572&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"契约婚姻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20363&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20363&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奋斗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20576&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20576&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"闪婚\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20362&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20362&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"巧娶\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20331&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20331&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"悬疑推理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20353&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20353&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"攻略\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20569&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20569&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"星际\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20379&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20379&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"职场商战\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20366&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20366&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"电竞\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20315&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20315&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"直播\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20289&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20289&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"无CP\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20346&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20346&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"初恋\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20573&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20573&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"师徒\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20352&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20352&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"姐弟恋\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20321&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20321&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"皇帝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22410&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22410&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"清穿\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20355&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20355&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20375&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20375&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"萌宠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20324&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20324&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"代嫁\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20348&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20348&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"大女主\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22164&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22164&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"带球跑\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20320&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20320&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20373&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20373&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"开挂\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20583&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20583&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"魔法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20370&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20370&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"双重生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20345&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20345&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"倒追\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20339&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20339&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"婆媳\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20563&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20563&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"王者荣耀\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20374&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20374&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"近水楼台\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20343&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20343&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"崩人设\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20570&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20570&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"合约恋爱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20332&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20332&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"失忆\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20581&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20581&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"死对头\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20335&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20335&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"兽世\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20325&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20325&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏异界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20376&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20376&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"真假千金\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20584&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20584&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"御兽流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20371&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20371&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"反穿\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20369&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20369&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"替身\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20347&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20347&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"反转\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20564&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20564&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"满级流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22644&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22644&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代创业\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22217&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22217&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"逃婚\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20342&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20342&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"远古蛮荒\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20360&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20360&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"顶流\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22645&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22645&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"爆红\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20580&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20580&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"催婚\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20323&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20323&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"创业\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20566&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20566&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异世穿越\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22135&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22135&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"探险\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20381&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20381&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20327&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20327&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"末穿现\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20344&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20344&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"读心术\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20338&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20338&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"灵魂转换\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20317&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20317&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"机甲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20380&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20380&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"相亲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20367&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20367&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"衍生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20382&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20382&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"复婚\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20579&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20579&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科举\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20330&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20330&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"群穿\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20316&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20316&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"西幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20328&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20328&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"人物\",\"url\":\"\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":1}},{\"title\":\"总裁\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20593&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20593&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"腹黑\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20482&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20482&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"萌宝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22141&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22141&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"王妃\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20384&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20384&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"护短\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20614&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20614&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"王爷\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20431&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20431&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"大佬\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20475&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20475&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"杀伐果断\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20449&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20449&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"帝王\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20427&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20427&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"双洁\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20483&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20483&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"痴情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20616&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20616&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"团宠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20474&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20474&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"霸道\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20610&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20610&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"才女\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20409&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20409&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"皇后\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20383&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20383&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"傲娇\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20613&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20613&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"嫡女\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20389&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20389&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女配\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20398&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20398&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"可盐可甜\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20478&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20478&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"明星\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20591&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20591&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"公主\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20385&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20385&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"神医\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20602&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20602&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古灵精怪\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20401&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20401&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"男神\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20450&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20450&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"偏执\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20618&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20618&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"全能\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20415&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20415&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"影后\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20395&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20395&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"超A\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20479&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20479&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"高冷\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20615&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20615&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"欢脱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20425&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20425&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"醋王\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20458&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20458&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"校草\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20437&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20437&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"贵女\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20387&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20387&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"病娇\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20620&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20620&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"将军\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20432&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20432&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"反派\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20622&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20622&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"白月光\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20411&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20411&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"戏精\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20481&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20481&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"忠犬\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20455&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20455&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"颜控\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20416&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20416&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"农女\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=22161&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=22161&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"妖孽\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20612&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20612&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玩世不恭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20448&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20448&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学霸\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20473&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20473&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"黑莲花\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20414&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20414&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"福气包\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20424&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20424&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"秀外慧中\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20402&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20402&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20609&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20609&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"锦鲤\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20406&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20406&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"闷骚\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20611&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20611&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"妃子\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20397&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20397&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"白富美\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20413&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20413&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"吃货\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20624&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20624&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"万人迷\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20417&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20417&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"自强\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20625&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20625&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"医生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20470&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20470&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"双商爆表\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20629&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20629&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"御姐\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20408&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20408&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"小狼狗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20453&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20453&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女帝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20390&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20390&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"呆萌\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20623&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20623&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"首席\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20438&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20438&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"杀手\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20605&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20605&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"毒舌\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20617&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20617&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙尊\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20434&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20434&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"萝莉\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20405&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20405&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"悍妻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20421&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20421&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"庶女\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20388&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20388&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"炮灰\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20476&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20476&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"大神\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20435&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20435&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"作精\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20422&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20422&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"上神\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20441&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20441&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"财迷\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20419&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20419&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"反差萌\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20633&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20633&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"弃妇\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20392&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20392&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"特工\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20604&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20604&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"善良\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20627&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20627&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"小奶狗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20452&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20452&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女汉子\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20418&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20418&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"暖男\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20457&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20457&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"旺夫\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20420&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20420&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"痞帅\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20451&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20451&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"小野猫\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20426&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20426&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙君\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20444&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20444&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"影帝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20588&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20588&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"丑女\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20403&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20403&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"天才\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20464&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20464&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"淡定\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20630&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20630&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"毒医\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20603&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20603&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"心机\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20626&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20626&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女主萌娃\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20586&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20586&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"神帝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20440&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20440&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"妖艳\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20423&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20423&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"邪帝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20429&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20429&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"妖精\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20462&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20462&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"糙汉\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20456&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20456&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"魔君\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20428&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20428&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"暴君\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20430&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20430&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"逗比\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20484&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20484&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"恶魔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20447&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20447&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"精英\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20480&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20480&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"废柴\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20486&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20486&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"首富\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20461&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20461&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"大叔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20439&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20439&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"厨娘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20396&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20396&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"魔尊\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20598&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20598&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"酷帅\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20628&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20628&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"傻白甜\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20407&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20407&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"剩女\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20404&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20404&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"精分\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20621&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20621&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宅女\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20412&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20412&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"咸鱼\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20635&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20635&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"钢铁直男\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20459&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20459&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"佛系\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20619&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20619&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"召唤师\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20606&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20606&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"纨绔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20637&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20637&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"吸血鬼\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20465&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20465&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"痴傻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20631&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20631&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"狐狸\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20599&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20599&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"男配\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20587&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20587&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"首辅\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20433&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20433&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"老师\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20463&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20463&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"福晋\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20400&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20400&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"精灵\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20399&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20399&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"白莲花\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20410&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20410&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学渣\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20632&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20632&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宫女\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20386&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20386&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"国师\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20446&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20446&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"小妾\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?ch=001995&groupid=20394&start={{page}}&count=20&sort=0&sub=&tag=&words=&finish=,{'headers':{'Referer':'https://bookshelf.html5.qq.com/qbread/categorylist?traceid=0809004&sceneid=FeedsTab&strageid=&ch=001995&tabfrom=top&feeds_version=8516&reader_version=0&groupid=20394&tag_type_id=2'}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}\n]",
    "header": "{\"user-agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.104 Safari/537.36\"}",
    "lastUpdateTime": 0,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 2698,
    "ruleBookInfo": {
      "author": "$..author",
      "coverUrl": "$..picurl",
      "init": "",
      "intro": "$..summary",
      "kind": "{{java.timeFormat(java.getString(\"$..lastSerialUpdateTime\")*1000)}}\n{{$..tag}}##\\|##,",
      "lastChapter": "$..lastSerialname",
      "name": "$..resourceName",
      "tocUrl": "https://bookshelf.html5.qq.com/qbread/api/book/all-chapter?bookId={{$..resourceID}}@put:{bid:$..resourceID},{\"headers\":{\"Referer\":\"https://bookshelf.html5.qq.com/qbread\"}}",
      "wordCount": "$..contentsize"
    },
    "ruleContent": {
      "content": "<p>{{$.data.Content[0].Content}}</p>"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.rows[*]",
      "bookUrl": "https://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{$.resourceID}}&channel=0510&noSame=1&withHistory,{\"headers\":{\"Referer\":\"https://bookshelf.html5.qq.com/kdread/adread/catalog?resourceid={{$.resourceID}}&sort=desc&traceid=0024001\"}}",
      "coverUrl": "$.picurl",
      "intro": "$.summary",
      "kind": "{{java.timeFormat(java.getString(\"lastUpdatetime\")*1000)}}\n{{$.subject}}\n{{$.subtype}}",
      "lastChapter": "$.lastSerialname",
      "name": "$.resourceName",
      "wordCount": "$.contentsize"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.data.state[?(@.dataName == 'novel_search_list')].items[*]",
      "bookUrl": "https://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{$.docId##.*_}}&channel=0510&noSame=1&withHistory,{\"headers\":{\"Referer\":\"https://bookshelf.html5.qq.com/kdread/adread/catalog?resourceid={{$.docId##.*_}}&sort=desc&traceid=0024001\"}}",
      "checkKeyWord": "",
      "coverUrl": "$.cover_url",
      "intro": "$.abstract",
      "kind": "{{$.label_text}}\n{{$.tag_views}}\n{{java.getString(\"is_finished\") == 1 ? '已完结': '连载中'}}\n##\\s+##,",
      "name": "$.title"
    },
    "ruleToc": {
      "chapterList": "$.rows",
      "chapterName": "$.serialName",
      "chapterUrl": "https://novel.html5.qq.com/be-api/content/ads-read,{\n\t\"method\": \"POST\",\n\t\"body\": {\n\t\t\"Scene\": \"chapter\",\n\t\t\"ContentAnchorBatch\": [{\n\t\t\t\t\"BookID\": \"{{baseUrl.match(/bookId=(\\d+)/)[1]}}\",\n\t\t\t\t\"ChapterSeqNo\": [{{$.serialID}}]\n\t\t\t}]\n\t},\n\t\"headers\": {\n\t\t\"Q-GUID\": \"4aa27c7cf2d9aca3359656ea186488cb\"\n\t}\n}",
      "isVip": "",
      "nextTocUrl": ""
    },
    "searchUrl": "https://so.html5.qq.com/ajax/real/search_result?noTab=1&tabId=360&sogou_huichuan_hippy=1&q={{key}}&jump_from=1_01_22_01",
    "weight": 0
  },
  {
    "bookSourceComment": "国内发布页：https://www.asw2.cc/",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "爱丽丝免",
    "bookSourceType": 0,
    "bookSourceUrl": "https://xn--vcsx64d.alicesw12.xyz",
    "customButton": false,
    "customOrder": 509,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"🔖TOP50🔖\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"总排行\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/other/rank_hits/order/hits.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"月排行\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/other/rank_hits/order/hits_month.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"周排行\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/other/rank_hits/order/hits_week.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"日排行\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/other/rank_hits/order/hits_day.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"🔖分类（人气）🔖\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/71/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"校园\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/61/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/62/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"乡村\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/63/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/64/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"乱伦\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/65/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/67/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/68/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"系统\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/69/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"明星\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/72/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"同人\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/73/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"强奸\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/74/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"奇幻\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/75/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"经典\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/79/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"穿越\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/70/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"凌辱\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/46/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"反差\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/22/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"堕落\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/18/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"纯爱\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/19/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"伪娘\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/52/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"萝莉\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/48/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"熟女\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/56/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"禁忌\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/51/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"NTR\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/54/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"媚黑\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/53/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"绿帽\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/55/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"调教\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/58/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"女主\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/59/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"正太\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/50/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"下克上\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/43/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"百合\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/47/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"重口\",\n    \"url\": \"https://xn--vcsx64d.alicesw12.xyz/all/id/21/order/hits+desc.html?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  }\n]",
    "lastUpdateTime": 1787325477837,
    "loginUrl": "https://xn--vcsx64d.alicesw12.xyz/user/user/login.html",
    "respondTime": 4340,
    "ruleBookInfo": {
      "author": "//div[@class='box_info']/table/tbody/tr[1]/td/div/p[1]/a[1]/text()",
      "coverUrl": "//div[@class='pic']/img/@src",
      "intro": "@js:\nvar info = java.getString(\"//div[@class='pic']/div[@class='tLJ']/text()\")\nvar intro = java.getString(\"//div[@class='box_info']/table/tbody/tr[3]/td/div[@class='intro']/text()\")\nintro+\"\\n◤-----------------◥\\n\"+info+\"\\n◣-----------------◢\\n\"",
      "kind": "//div[@class='box_info']/table/tbody/tr[3]/td/p[2]/a/text()",
      "lastChapter": "//div[@class='box_info']/table/tbody/tr[1]/td/div/p[1]/a[2]/text()",
      "name": "//div[@class='box_info']/table/tbody/tr[1]//h1/text()",
      "tocUrl": "//div[@class='book_newchap']//a[contains(text(),'查看所有章节')]/@href"
    },
    "ruleContent": {
      "content": "//div[contains(@class,'read-content')]/p"
    },
    "ruleExplore": {
      "author": "//li[@class='four']/text()",
      "bookList": "//div[@class='clearfix rec_rullist']/ul",
      "bookUrl": "//li[@class='two']/a/@href",
      "kind": "@js:\nvar tag  = java.getString(\"//li[@class='sev']/span/a/text()\")\nvar views=  java.getString(\"//li[@class='diyhot']/text()\")\ntag+\",👀\"+views",
      "lastChapter": "//li[@class='three']/a/text()",
      "name": "//li[@class='two']/a/text()",
      "wordCount": "//li[@class='five']/text()@js:result+\"字\""
    },
    "ruleSearch": {
      "author": "//p[@class='mb-1 text-muted']/a/text()",
      "bookList": "//div[@class='list-group']/div[@class='list-group-item']",
      "bookUrl": "//h5/a/@href",
      "checkKeyWord": "美母为妻",
      "intro": "//p[@class='content-txt']",
      "kind": "<js>\nvar status = java.getString(\"//h5/small/text()\");\nvar tags = java.getString(\"//p[@class='text-muted']/a/text()\");\nvar views = java.getString(\"//p[@class='mb-1 text-muted']//text()\").match(/\\d+?.\\d+/g)[1]\nstatus+\",👀\"+views+\",\"+tags\n</js>\n##\\[|]##",
      "name": "//h5/a//text()##\\d+.|\\n##",
      "wordCount": "//p[@class='mb-1 text-muted']//text()@js:\nresult.match(/\\d+?.\\d+万/g)[0]+\"字\""
    },
    "ruleToc": {
      "chapterList": "//ul[@class='mulu_list']/li",
      "chapterName": "//a/text()",
      "chapterUrl": "//a/@href"
    },
    "searchUrl": "https://xn--vcsx64d.alicesw12.xyz/search.html?q={{key}}&f=_al",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "❤️黑岩",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xheiyan.org",
    "customButton": false,
    "customOrder": 510,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1779721806835,
    "respondTime": 1214,
    "ruleBookInfo": {
      "author": "class.book_info@h3@a@text",
      "coverUrl": "class.pic@img@src",
      "intro": "class.book_info@tag.p@textNodes",
      "kind": "class.book_info@class.upd@text&&\nclass.book_info@class.infos@tag.span.1@a@text##.*\\(|\\)",
      "lastChapter": "class.book_info@class.upd@tag.a.1@text",
      "name": "class.book_info@h1@text",
      "wordCount": "class.book_info@class.infos@tag.span.3@text##字数："
    },
    "ruleContent": {
      "content": "class.contentbox@textNodes"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.author@text",
      "bookList": "class.bookbox",
      "bookUrl": "h4@a@href@js:'http://www.xheiyan.org'+result",
      "lastChapter": "class.update@a@text",
      "name": "h4@a@text"
    },
    "ruleToc": {
      "chapterList": "class.book_list@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://m.xheiyan.org/search.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "知音漫客",
    "bookSourceType": 2,
    "bookSourceUrl": "https://m.zymk.cn",
    "customButton": false,
    "customOrder": 511,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "热血::/sort/5_p{{page}}.html&&\n搞笑::/sort/6_p{{page}}.html&&\n玄幻::/sort/7_p{{page}}.html&&\n生活::/sort/8_p{{page}}.html&&\n恋爱::/sort/9_p{{page}}.html&&\n动作::/sort/10_p{{page}}.html&&\n科幻::/sort/11_p{{page}}.html&&\n战争::/sort/12_p{{page}}.html&&\n悬疑::/sort/13_p{{page}}.html&&\n恐怖::/sort/14_p{{page}}.html&&\n校园::/sort/15_p{{page}}.html&&\n历史::/sort/16_p{{page}}.html&&\n穿越::/sort/17_p{{page}}.html&&\n体育::/sort/19_p{{page}}.html&&\n都市::/sort/20_p{{page}}.html&&\n漫改::/sort/22_p{{page}}.html&&\n修真::/sort/53_p{{page}}.html&&\n霸总::/sort/62_p{{page}}.html&&\n古风::/sort/63_p{{page}}.html&&\n游戏::/sort/64_p{{page}}.html&&\n真人::/sort/65_p{{page}}.html&&\n武侠::/sort/66_p{{page}}.html&&",
    "lastUpdateTime": 1734944913615,
    "respondTime": 575,
    "ruleBookInfo": {
      "author": "class.author@text",
      "intro": "class.content@text",
      "kind": "class.tags@a@text",
      "name": "h1.name@text"
    },
    "ruleContent": {
      "content": "@js:\nhost='http://mhpic.zymkcdn.com/comic/';\noriginal=result.match(/dr_original:\"([^\"]+)\"/)[1];\nend=result.match(/end_var:(\\d+)/)[1];\n//画质\nhigh='.jpg-zymk.high.webp';\nlow='.jpg-zymk.low.webp';\nmiddle='.jpg-zymk.middle.webp';\n\nhtml='';\nfor(i=1;i<=end;i++){\nhtml+='<img src=\"'+host+original+i+high+'\">\\n'\n}\nhtml",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "",
      "bookList": "class.item@h3",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "img@data-src",
      "kind": "class.score@text",
      "lastChapter": "class.chapter@text",
      "name": "class.title@a@text"
    },
    "ruleToc": {
      "chapterList": "-class.chapterlist@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://m.zymk.cn/sort/all.html?key={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "可阅文学",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.kepub.net",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 512,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url)=>sort.push({\n\ttitle:title,\n\turl:url,\n\tstyle:{\n\t\tlayout_flexGrow:1,\n\t\tlayout_flexBasisPercent:0.4\n\t}\n});\nconst config={\n\tcate:{\n\t\tpath:\"/queryBooksByCateId\",\n\t\tparam:\"cateId\"\n\t},\n\tlist:{\n\t\tpath:\"/queryBooksByListNo\",\n\t\tparam:\"listNo\"\n\t}\n};\nconst categories=[\n\t{type:\"cate\",title:\"现当代文学\",id:1},\n\t{type:\"cate\",title:\"散文随笔\",id:2},\n\t{type:\"cate\",title:\"外国文学\",id:3},\n\t{type:\"cate\",title:\"短篇小说\",id:4},\n\t{type:\"cate\",title:\"古代文学\",id:5},\n\t{type:\"cate\",title:\"其他\",id:6},\n\t{type:\"cate\",title:\"诗歌\",id:9},\n\t{type:\"list\",title:\"可阅日刊\",id:3267},\n\t{type:\"list\",title:\"20世纪中文小说百强\",id:9393}\n];\ncategories.forEach(item=>{\n\tconst {path,param}=config[item.type];\n\tpush(item.title,`${path}?page={{page}}&${param}=${item.id}`);\n});\nJSON.stringify(sort)",
    "header": "{\"User-Agent\":\"Mobile\"}",
    "jsLib": "",
    "lastUpdateTime": 32500886400001,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 1745,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "init": "<js>java.t2s(result)</js>",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content##中|已|\\h\\S+|小说",
      "lastChapter": "[property$=chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "wordCount": "class.info-b-1@tag.span.1@text||class._tags@tag.span.-1@text##\\s"
    },
    "ruleContent": {
      "content": "#content@html||#TextContent p@textNodes####\\s*（本章未完）\\s*\n<js>java.t2s(result)</js>",
      "imageDecode": "",
      "imageStyle": "",
      "nextContentUrl": "##var url_next=\"([^\"]*)\"##$1###",
      "payAction": "",
      "replaceRegex": "<js>\n//yd\ni=[\"%uE800\",\"%uE801\",\"%uE802\",\"%uE803\",\"%uE804\",\"%uE805\",\"%uE806\",\"%uE807\",\"%uE808\",\"%uE809\",\"%uE80A\",\"%uE80B\",\"%uE80C\",\"%uE80D\",\"%uE80E\",\"%uE80F\",\"%uE810\",\"%uE811\",\"%uE812\",\"%uE813\",\"%uE814\",\"%uE815\",\"%uE816\",\"%uE817\",\"%uE818\",\"%uE819\",\"%uE81A\",\"%uE81B\",\"%uE81C\",\"%uE81D\",\"%uE81E\",\"%uE81F\",\"%uE820\",\"%uE821\",\"%uE822\",\"%uE823\",\"%uE824\",\"%uE825\",\"%uE826\",\"%uE827\",\"%uE828\",\"%uE829\",\"%uE82A\",\"%uE82B\",\"%uE82C\",\"%uE82D\",\"%uE82E\",\"%uE82F\",\"%uE830\",\"%uE831\",\"%uE832\",\"%uE833\",\"%uE834\",\"%uE835\",\"%uE836\",\"%uE837\",\"%uE838\",\"%uE839\",\"%uE83A\",\"%uE83B\",\"%uE83C\",\"%uE83D\",\"%uE83E\",\"%uE83F\",\"%uE840\",\"%uE841\",\"%uE842\",\"%uE843\",\"%uE844\",\"%uE845\",\"%uE846\",\"%uE847\",\"%uE848\",\"%uE849\",\"%uE84A\",\"%uE84B\",\"%uE84C\",\"%uE84D\",\"%uE84E\",\"%uE84F\",\"%uE850\",\"%uE851\",\"%uE852\",\"%uE853\",\"%uE854\",\"%uE855\",\"%uE856\",\"%uE857\",\"%uE858\",\"%uE859\",\"%uE85A\",\"%uE85B\",\"%uE85C\",\"%uE85D\",\"%uE85E\",\"%uE85F\",\"%uE860\",\"%uE861\",\"%uE862\",\"%uE863\"];\nz=\"的一是了我不人在他有这个上们来到时大地为子中你说生国年着就那和要她出也得里后自以会家可下而过天去能对小多然于心学么之都好看起发当没成只如事把还用第样道想作种开美乳阴液茎欲呻肉交性胸私穴淫臀舔射脱裸骚唇\";\nconst charMap={};\nconst Patterns=[];\nfor (let idx=0;idx<i.length;idx++){\n\tcharMap[i[idx]]=z[idx];\n\tPatterns.push(i[idx].replace(/[.*+?^${}()|[\\]\\\\]/g,'\\\\$&'));\n}\nconst Reg=new RegExp(Patterns.join('|'),'g');\n\nfunction processText(html){\n\treturn html.replace(Reg,match=>charMap[match]);\n}\nhtml=escape(result);\nhtml=processText(html);\nunescape(html)\n</js>",
      "sourceRegex": "",
      "title": "",
      "webJs": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.authorName",
      "bookList": "<js>\nif (/No message|404/.test(src)){\n\tconst host=\"https://m.kepub.net\";\n\tconst page=java.get('page');\n\tconst key=java.get('key');\n\tconst results=[\n\t\t`${host}/searchBookByPage?page=${page}&keyword=${key}`,\n\t\t`${host}/searchCopyrightBookByPage?page=${page}&keyword=${key}`\n\t].flatMap(url=>{\n\t\tconst response=java.ajax(url);\n\t\tconst {data}=JSON.parse(response);\n\t\treturn data\n\t});\n\tjava.t2s(JSON.stringify(results))\n}else{\n\tresult=src\n}\n</js>\n$.data||$",
      "bookUrl": "$.bookFilePath||$.readUrl##yodu.org##youduzw.com",
      "checkKeyWord": "鲁迅书信集",
      "coverUrl": "@js:\nvar yd=java.getString(\"$.readUrl\");\nvar ydbid=yd.match(/\\/(\\d+)\\/$/);\n(yd&&yd.includes(\"yodu\")&&ydbid)?'https://www.youduzw.com/files/article/image/'+parseInt(ydbid[1]/1000)+'/'+ydbid[1]+'/'+ydbid[1]+'s.jpg':''",
      "intro": "$.desc||$.bookDesc",
      "kind": "$.cateName||$.siteName",
      "name": "$.name||$.bookName##.+（漫画）$"
    },
    "ruleToc": {
      "chapterList": "@css:.top_categoryname,.clink,#textToast,#chapterList>li",
      "chapterName": "<js>\njava.t2s(String(java.getString('text'))||`{{book.name}}`).replaceAll(\"^(.+ )?(插[图画]|前情提要)$\",\"\")\n</js>",
      "chapterUrl": "a@href",
      "isVolume": ".top_categoryname@text||.volumes@text\n<js>java.t2s(result)</js>"
    },
    "searchUrl": "@js:\njava.put('page',page)\njava.put('key',key)",
    "variableComment": "",
    "weight": 0
  },
  {
    "bookSourceComment": "//by:cwjdb",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "❤️三叉小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.xxxbiquge.net",
    "customButton": false,
    "customOrder": 515,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\n    java.toast(\"正在努力加载中，请稍后\");\n    \nvar sort = [];\nvar push = (title, url, type1, type2) => {\n    sort.push ({\n        title: title,\n        url: url,\n        style: {\n            layout_flexGrow: type1,\n            layout_flexBasisPercent: type2\n        }\n    });\n};\n\nvar x = [{\n        u: \"http://m.xxxbiquge.net/xclass/0/1.html\",\n        ti: \"༺ˇ»`类型分类´«ˇ༻\",\n        reb: /(\\d+)\\.html/,\n        rea: \"{{page}}.html\"\n    },\n    {\n        u: \"http://m.xxxbiquge.net/quanben.html\",\n        ti: \"༺ˇ»`全本分类´«ˇ༻\",\n        reb: /(.*)\\.html/,\n        rea: \"$1_{{page}}.html\"\n    },\n    {\n        u: \"http://m.xxxbiquge.net/ph/week.html\",\n        ti: \"༺ˇ»`周榜´«ˇ༻\",\n        reb: /(.*)\\.html/,\n        rea: \"$1_{{page}}.html\"\n    },\n    {\n        u: \"http://m.xxxbiquge.net/ph/month0.html\",\n        ti: \"༺ˇ»`月榜´«ˇ༻\",\n        reb: /(.*)\\.html/,\n        rea: \"$1_{{page}}.html\"\n    },\n    {\n        u: \"http://m.xxxbiquge.net/ph/all0.html\",\n        ti: \"༺ˇ»`总榜´«ˇ༻\",\n        reb: /(.*)\\.html/,\n        rea: \"$1_{{page}}.html\"\n    }];\n    \nx.forEach (i => {\n    var o = org.jsoup.Jsoup.parse(java.ajax(i.u));\n    var s = o.select('nav.sortChannel_nav>a');\n    push(i.ti, \"\", 1, 1);\n    s.forEach(j => {\n        var url = String (j.attr(\"href\")).replace(i.reb,i.rea);\n        push(j.text(), url, 1, 0.25)\n    })\n});\n\nJSON.stringify(sort);",
    "lastUpdateTime": 1769597609268,
    "respondTime": 5106,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content##(^|[。！？]+[”」）】]?)##$1<br>\n<js>result</js>##\\\\n",
      "kind": "[property~=category|status|update_time]@content&&text.状态@text##状态：",
      "lastChapter": "[property$=latest_chapter_name]@content##正文卷.|正文.|VIP章节.|免费章节.|VIP卷.|默认卷.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加].*?[】）\\)]",
      "name": "[property$=book_name]@content",
      "tocUrl": "text.章节列表@href"
    },
    "ruleContent": {
      "content": "#chaptercontent@textNodes",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##(第\\s*[零一二三四五六七八九十百千\\d]+\\s*[章节]?[、.]?\\s*|\\d+\\s*|[零一二三四五六七八九十]+\\s*)(.*?)\\s*[（(]第.*页[)）]|（本章未完.*继续阅读）|第.+卷_?|（粉嫩.*求支持！）"
    },
    "ruleExplore": {
      "author": ".author a.1@text",
      "bookList": "#main>div",
      "bookUrl": ".detail a@href",
      "coverUrl": "img@data-original",
      "intro": ".review@ownText##简介[：:]|\\\\n",
      "name": ".title@text"
    },
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".slide-item.list1 div",
      "bookUrl": "a.0@href",
      "kind": "p.-1@ownText##\\|\\s*最近更新[：:]",
      "lastChapter": "a.-1@text",
      "name": "a p@text"
    },
    "ruleToc": {
      "chapterList": "#chapterlist>p:nth-child(n+2)>a",
      "chapterName": "text\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求含理更谢乐发推票盟补加字Kk\\/].*/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/^(第)?([零一二两三四五六七八九十百千]+).+第/,'第')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "chapterUrl": "href"
    },
    "searchUrl": "{{url=source.getKey();\ncookie.removeCookie(url)\njava.ajax(url).match(/action=\"(.+?)\"/)[1]}},{\n\"method\": \"POST\",\n\"body\": \"keyword={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "@游客",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "言情小说#6",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.bgnovel.com",
    "bookUrlPattern": "https?://m.bgnovel.com/\\w+/\\d+.html",
    "customButton": false,
    "customOrder": 516,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "现代情感::/xiandaixiaoshuo/index_{{page-1}}.html\n古装迷情::/gudaixiaoshuo/index_{{page-1}}.html\n穿越重生::/chuanyuechongsheng/index_{{page-1}}.html\n仙侠魔幻::/xianxiamohuan/index_{{page-1}}.html\n网游竞技::/wangyoujingji/index_{{page-1}}.html\nＢＧ同人::/bgtongren/index_{{page-1}}.html\n无ＣＰ向::/wucpxiang/index_{{page-1}}.html\n无限流派::/wuxianliu/index_{{page-1}}.html\n本站推荐::/bztuijian/index_{{page-1}}.html\n热门排行::/bzremen/index_{{page-1}}.html\n周排行榜::/bzremenweek/index_{{page-1}}.html\n月排行榜::/bzremenmonth/index_{{page-1}}.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1787467302569,
    "respondTime": 2478,
    "ruleBookInfo": {
      "author": "td span.0@text",
      "coverUrl": "img@src",
      "kind": "td span!0@text##.*：",
      "lastChapter": "option.-1@text",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "#text > p@textNodes"
    },
    "ruleExplore": {
      "author": "span.0@text",
      "bookList": "li.book-li",
      "bookUrl": "a@href",
      "kind": "span!0@text##.*：",
      "name": "h4@text"
    },
    "ruleSearch": {
      "author": "span.1@text",
      "bookList": "h2",
      "bookUrl": "a@href",
      "checkKeyWord": "快穿",
      "kind": "0",
      "name": "a@text"
    },
    "ruleToc": {
      "chapterList": "option",
      "chapterName": "text",
      "chapterUrl": "value"
    },
    "searchUrl": "https://m.bgnovel.com/e/search/index.php,{\n  \"body\": \"keyboard={{key}}&show=title&tempid=1&tbname=article\",\n  \"method\": \"POST\"\n}\n@js:\ncookie.removeCookie(baseUrl);\nso = String(result).replace(\"{{key}}\", key);\nvar res = java.connect(so), \nurl = res.raw().request().url() || res.url();\nString(url).replace(/searchid/,\n\t\"page={{page-1}}\\&$&\");",
    "weight": 0
  },
  {
    "bookSourceComment": "https://www.bayiwxw.com/\nhttps://m.bayizww.com/",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爱看书吧",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.bayiwxw.com/",
    "customButton": false,
    "customOrder": 518,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:s=[];t=[-1,1,.4,.25,.2,.15,.12,.1,.08,.07];push=(t,u,x,y)=>s.push({title:t,url:u,style:{layout_flexBasisPercent:x,layout_flexGrow:1}});u=\"/yd/xclass/{{page}}/\";push(\"分类\",null,t[1]);push(\"全部\",u,t[4]);a=[\"玄幻\",\"修真\",\"都市\",\"穿越\",\"网游\",\"科幻\",\"其他\"];a.map((s,i)=>push(s,`/${i+1}`+u,t[4]));push(\"完本\",null,t[1]);push(\"全部\",\"/quanben\"+u,t[4]);a.map((s,i)=>push(s,`/${i+1}/quanben`+u,t[4]));JSON.stringify(s);",
    "lastUpdateTime": 1787424525941,
    "respondTime": 1054,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:novel:update_time\"]@content&&\n[property=\"og:description\"]@content@js:'更新时间：'+result",
      "kind": ".novel_info_title@span@text",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "article@p@text",
      "nextContentUrl": "text.下一@a[href*=\"_\"]@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "i@text",
      "bookList": ".flex@li",
      "bookUrl": "a@href",
      "checkKeyWord": "明克街",
      "coverUrl": "img@data-original",
      "intro": "p@text",
      "kind": "span@text",
      "name": "h2@text"
    },
    "ruleToc": {
      "chapterList": "#ul_all_chapters@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/s.php,{\n\"method\":\"POST\",\n\"body\":\"t=1&keyword={{key}}&submit=搜索\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "️读趣网站",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xduqu.com",
    "customButton": false,
    "customOrder": 519,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "全部小说::modules/article/articlefilter.php?&order=lastupdate&page={{page}}\n玄幻魔法::modules/article/articlefilter.php?&order=lastupdate&sortid=1&page={{page}}\n武侠修真::modules/article/articlefilter.php?&order=lastupdate&sortid=2&page={{page}}\n都市言情::modules/article/articlefilter.php?&order=lastupdate&sortid=3&page={{page}}\n历史军事::modules/article/articlefilter.php?&order=lastupdate&sortid=4&page={{page}}\n侦探推理::modules/article/articlefilter.php?&order=lastupdate&sortid=5&page={{page}}\n网游动漫::modules/article/articlefilter.php?&order=lastupdate&sortid=6&page={{page}}\n科幻小说::modules/article/articlefilter.php?&order=lastupdate&sortid=7&page={{page}}\n恐怖灵异::modules/article/articlefilter.php?&order=lastupdate&sortid=8&page={{page}}\n言情小说::modules/article/articlefilter.php?&order=lastupdate&sortid=9&page={{page}}\n其它类型::modules/article/articlefilter.php?&order=lastupdate&sortid=10&page={{page}}\n字数排行::modules/article/articlefilter.php?&order=size&page={{page}}",
    "header": "{\n\t\"x-requested-with\": \"XMLHttpRequest\",\n\t\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.92 Safari/537.36\"\n}",
    "lastUpdateTime": 1769602670463,
    "respondTime": 2019,
    "ruleBookInfo": {
      "author": "span > a@text",
      "coverUrl": "class.divbox cf@tag.a.0@img@src",
      "intro": "class.tabvalue.0@text",
      "name": "div > span:nth-child(1)@text",
      "tocUrl": "text.点击阅读@href"
    },
    "ruleContent": {
      "content": "id.acontent@html##读趣推.*|如果您中.*|.*正文.*|",
      "replaceRegex": "##\\(读趣 www.xduqu.com\\)|关注大.*|最新网址.*|读趣.*"
    },
    "ruleExplore": {
      "author": "//td[3]/text()",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "tag.a@href",
      "coverUrl": "tag.a@href##.+\\D((\\d+)\\d{3})\\D##/files/article/image/$2/$1/$1s.jpg###",
      "kind": "//td[5]/text()&&//td[6]/text()",
      "lastChapter": "//td[2]/a/text()",
      "name": "//td[1]/a[2]/text()",
      "wordCount": "//td[4]/text()"
    },
    "ruleSearch": {
      "author": "class.c_value.0@text",
      "bookList": "class.c_row",
      "bookUrl": "tag.a@href",
      "coverUrl": "class.fl@tag.a@img@src",
      "kind": "class.c_value.1@text&&class.c_value.6@text",
      "lastChapter": "class.c_value.5@tag.a@text",
      "name": "class.c_subject@tag.a@text",
      "wordCount": "class.c_value.2@text"
    },
    "ruleToc": {
      "chapterList": "class.chapters@tag.li@tag.a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "{{java.connect(source.getKey()).raw().request().url()}}modules/article/search.php,{\n\"method\": \"POST\",\n\"body\": \"searchtype=all&searchkey={{key}}\"\n}",
    "weight": 1
  },
  {
    "bookSourceComment": "\"error:Unabletoresolvehost\"www.xbiquge.la\":Noaddressassociatedwithhostname\n\"",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "www.xbiquge.la#onede",
    "customButton": false,
    "customOrder": 520,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::http://www.xbiquge.la/fenlei/1_{{page}}.html\n修真小说::http://www.xbiquge.la/fenlei/2_{{page}}.html\n都市小说::http://www.xbiquge.la/fenlei/3_{{page}}.html\n穿越小说::http://www.xbiquge.la/fenlei/4_{{page}}.html\n网游小说::http://www.xbiquge.la/fenlei/5_{{page}}.html\n科幻小说::http://www.xbiquge.la/fenlei/6_{{page}}.html",
    "lastUpdateTime": 1726725186423,
    "respondTime": 6468,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作者：",
      "coverUrl": "id.fmimg@tag.img.0@src",
      "intro": "id.intro@tag.p.1@text",
      "lastChapter": "id.info@tag.p.3@title",
      "name": "id.info@tag.h1.0@text"
    },
    "ruleContent": {
      "content": "id.content@textNodes",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "tag.span.2@text",
      "bookList": "class.l@tag.ul@tag.li",
      "bookUrl": "tag.span.0@tag.a@href",
      "lastChapter": "tag.span.1@tag.a@text",
      "name": "tag.span.0@tag.a@text"
    },
    "ruleSearch": {
      "author": "class.even.1@text",
      "bookList": "class.grid@tag.tbody@tag.tr!0",
      "bookUrl": "class.even.0@tag.a@href",
      "lastChapter": "class.odd.0@tag.a@text",
      "name": "class.even.0@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.xbiquge.la/modules/article/waps.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "云中书库#2",
    "bookSourceType": 3,
    "bookSourceUrl": "http://www.yunxs.la/",
    "customButton": false,
    "customOrder": 522,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"🔖分类🔖\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"玄幻·奇幻\",\"url\":\"/xuanhuan/shuku_1949_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙侠·武侠\",\"url\":\"/xianxia/shuku_3336_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市·言情\",\"url\":\"/dushi/shuku_8625_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越·历史\",\"url\":\"/chuanyue/shuku_1335_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻·灵异\",\"url\":\"/kehuan/shuku_1500_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"同人·网游\",\"url\":\"/tongren/shuku_1056_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n\n{\"title\":\"🔖完结🔖\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"玄幻·奇幻\",\"url\":\"/xuanhuan/over_20_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙侠·武侠\",\"url\":\"/xianxia/over_1701_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市·言情\",\"url\":\"/dushi/over_5514_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越·历史\",\"url\":\"/chuanyue/over_40_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻·灵异\",\"url\":\"/kehuan/over_44_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"同人·网游\",\"url\":\"/tongren/over_55_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}\n]",
    "lastUpdateTime": 1786586298633,
    "respondTime": 1281,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "downloadUrls": "<js>a=String(java.getElements(\".btn@a.1\").attr(\"href\"));\njava.ajax('http://www.yunxs.la'+a);\n</js>.down a@href",
      "intro": "🔔 更新时间：{{@@[property=\"og:novel:update_time\"]@content##\\s##🔸}}\n🏷 {{@@.info li[2:4]@text##\\s##🔸}}\n📂 内容简介：{{@@[property=\"og:description\"]@content}}##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "[property~=category|status|update_time]@content##\\s.*",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "wordCount": "#cms_ready_1@text"
    },
    "ruleContent": {
      "content": ".box_box@textNodes"
    },
    "ruleExplore": {
      "author": ".author a@text",
      "bookList": ".ul_m_list li",
      "bookUrl": ".t a@href",
      "kind": ".c a@text&&.abover@text",
      "lastChapter": ".n a.1@text",
      "name": ".t a@text",
      "wordCount": ".words@text"
    },
    "ruleSearch": {
      "author": ".state@text##\\s.*",
      "bookList": ".ul_b_list li",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "kind": "{{@@h2 span@text}}\n{{@@.state@text##.*状态：|\\s.*}}\n{{@@.arcurl@textNodes##.*：}}",
      "name": "h2 a@text"
    },
    "ruleToc": {
      "chapterList": ".list_box li a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://www.yunxs.la/plus/search.php?kwtype=0&searchtype=&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "改自@m8458246@一程",
    "bookSourceGroup": "🎉 优选",
    "bookSourceName": "企鹅浏览（优）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://so.html5.qq.com/",
    "customButton": false,
    "customOrder": 523,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 13; zh-cn; V2183A Build/TP1A.220624.014) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/89.0.4389.72 MQQBrowser/13.4 Mobile Safari/537.36 COVC/046223\",\n\"Referer\":\"https://novel.html5.qq.com/\",\n\"Q-GUID\":\"0ee63838b72eb075f63e93ae0bc288cb\",\n\"QIMEI36\":\"8ff310843a87a71101958f5610001e316a11\"}",
    "lastUpdateTime": 1766341217913,
    "respondTime": 1034,
    "ruleBookInfo": {
      "author": ".author",
      "coverUrl": ".picurl",
      "init": "data",
      "intro": "&nbsp;{{$..summary}}\n&lrm;\n标签：{{$..tag##\\|##&nbsp;}}##\\n&lrm;\\n标签：$",
      "kind": "{{java.getString('$.isfinish')=='true'?'完结':'连载'}},{{$..subject}},{{String(java.timeFormat(java.getString(\"$..lastSerialUpdateTime\")*1000)).replace(/\\//g,\"\\-\")}},{{$..userscore}}分",
      "lastChapter": ".lastSerialname",
      "name": ".resourceName",
      "tocUrl": "/qbread/api/book/all-chapter?bookId={{$..resourceID}}",
      "wordCount": ".contentsize##$##字"
    },
    "ruleContent": {
      "content": "data.Content[0].Content"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author",
      "bookList": "data.state[*]",
      "bookUrl": "https://novel.html5.qq.com/qbread/api/novel/bookInfo?resourceId={{$..docId##.*_}}",
      "coverUrl": ".cover_url",
      "intro": ".abstract",
      "kind": "连载{{$..is_finished}}完结,{{$..tag_views##\\s##,}}##连载1|0完结",
      "name": ".title##.*\\s.*",
      "wordCount": ".label_text"
    },
    "ruleToc": {
      "chapterList": ".rows[*]",
      "chapterName": "serialName",
      "chapterUrl": "serialID\n@js:\nlet data=JSON.stringify({ContentAnchorBatch:[{BookID:baseUrl.match(/bookId=(\\d+)/)[1],ChapterSeqNo:[result]}],Scene:\"chapter\"})\nlet option={\"method\":\"POST\",\"body\":data}\n\"/be-api/content/ads-read,\"+JSON.stringify(option)"
    },
    "searchUrl": "https://so.html5.qq.com/ajax/real/search_result?tabId=360&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "️磨铁中文",
    "bookSourceType": 0,
    "bookSourceUrl": "https://app2.motie.com",
    "customButton": false,
    "customOrder": 524,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\": \"排行\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"畅销榜\",\"url\": \"/ranking/detail?group=2&siteId=1&rankType=9&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.3\n}},\n{\"title\": \"畅销日榜\",\"url\": \"/ranking/detail?group=3&siteId=1&rankType=9&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"畅销周榜\",\"url\": \"/ranking/detail?group=1&siteId=1&rankType=9&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"点击榜\",\"url\": \"/ranking/detail?group=2&siteId=1&rankType=10&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.3\n}},\n{\"title\": \"点击日榜\",\"url\": \"/ranking/detail?group=3&siteId=1&rankType=10&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"点击周榜\",\"url\": \"/ranking/detail?group=1&siteId=1&rankType=10&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"打赏榜\",\"url\": \"/ranking/detail?group=2&siteId=1&rankType=11&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.3\n}},\n{\"title\": \"打赏日榜\",\"url\": \"/ranking/detail?group=3&siteId=1&rankType=11&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"打赏周榜\",\"url\": \"/ranking/detail?group=1&siteId=1&rankType=11&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"推荐榜\",\"url\": \"/ranking/detail?group=2&siteId=1&rankType=12&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.3\n}},\n{\"title\": \"推荐日榜\",\"url\": \"/ranking/detail?group=3&siteId=1&rankType=12&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"推荐月榜\",\"url\": \"/ranking/detail?group=4&siteId=1&rankType=12&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"书评榜\",\"url\": \"/ranking/detail?group=2&siteId=1&rankType=17&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.3\n}},\n{\"title\": \"书评周榜\",\"url\": \"/ranking/detail?group=1&siteId=1&rankType=17&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"新书榜\",\"url\": \"/ranking/detail?group=0&siteId=1&rankType=13&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"更新榜\",\"url\": \"/ranking/detail?group=0&siteId=1&rankType=14&pageSize=20&pageNo={{page}}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.3\n}},\n{\"title\": \"分类\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"全部\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=0&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"免费\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=18&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"都市\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=25&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"都市生活\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=42&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"艺术超能\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=43&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"娱乐明星\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=44&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"现实职场\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=45&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"现代修真\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=46&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"奇遇幻想\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=47&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"悬疑\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=26&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"悬疑侦探\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=48&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"玄幻\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=27&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"东方玄幻\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=52&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"星际玄幻\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=53&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=28&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"星际未来\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=54&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"无限穿梭\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=55&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"末世危机\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=56&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"悬疑科幻\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=57&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=29&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"历史架空\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=58&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"民国近代\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=59&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"外国历史\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=60&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"仙侠\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=30&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"古典仙侠\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=61&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"幻想修仙\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=62&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"神话洪荒\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=63&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"游戏\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=31&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"电子竞技\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=64&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"虚拟网游\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=65&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"游戏异界\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=66&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"军事\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=32&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代军旅\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=67&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"军事战争\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=68&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"二次元\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=33&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"热血幻想\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=69&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"宅日常\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=70&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.3\n}},\n{\"title\": \"搞笑吐槽\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=71&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"轻小说\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=72&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.3\n}},\n{\"title\": \"奇幻\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=34&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"西方奇幻\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=73&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"幻想奇幻\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=74&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"领主争霸\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=75&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"武侠\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=35&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"传统武侠\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=76&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"现代武侠\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=77&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"青春\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=36&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"青葱校园\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=78&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"热血励志\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=79&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"竞技\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=37&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"体育竞技\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=80&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"同人\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=38&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"动漫同人\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=81&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"影视同人\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=82&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"游戏同人\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=83&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"短篇\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=39&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"短篇小说\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=84&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"诗歌散文\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=85&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"人物传记\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=86&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"影视剧本\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=87&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"生活随笔\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=88&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"美文游记\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=89&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"儿童文学\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=63&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"言情\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=40&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"古代言情\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=91&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"现代言情\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=92&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"文学\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=41&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"古典文学\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=93&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"现代文学\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=94&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"外国文学\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=95&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"近代文学\",\"url\": \"https://app2.motie.com/pc/books/search,{'method': 'POST','body':'pageNo={{page}}&pageSize=20&categoryId=96&sort=5'}\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}}\n]",
    "lastUpdateTime": 1769597682070,
    "respondTime": 6694,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "data.content"
    },
    "ruleExplore": {
      "author": "authorName",
      "bookList": "data||data.items",
      "bookUrl": "/pc/book/{$.bookId}/catalog",
      "coverUrl": "bookIconUrl@js:(result && !result.includes('app_book.png')) ? result : 'http://1t.click/GPx'",
      "intro": "introduce||introduction@js:result.trim()",
      "kind": "{{$.categoryVO.name}},{{$.finished}}@js:String(result).replace('true', '完结').replace('false', '连载').replace(/[\\[\\]]/g, '')",
      "lastChapter": "lastChapterName",
      "name": "bookName",
      "wordCount": "words"
    },
    "ruleSearch": {
      "author": "authorName",
      "bookList": "data.bookList",
      "bookUrl": "/pc/book/{$.id}/catalog",
      "coverUrl": "icon@js:(result && !result.includes('app_book.png')) ? result.split('?')[0]+'?x-oss-process=style/book_middle' : 'http://1t.click/GPx'",
      "intro": "introduce@js:result.trim()",
      "kind": "{{java.timeFormat(java.getString('lastChapterTime'))}},{{$.categoryVO.name}},{{$.finished}}@js:String(result).replace('true', '完结').replace('false', '连载').replace('\\[', '').replace('\\]', '')",
      "lastChapter": "{{$.lastChapterName}} • {{java.timeFormat(java.getString('lastChapterTime'))}}\n<js>result.replace(/\\//g,'-')</js>",
      "name": "name",
      "wordCount": "words"
    },
    "ruleToc": {
      "chapterList": "data.data[?(@.volume == false)]",
      "chapterName": "{$.free}{$.name}@js:result.replace('false', '✿·').replace('true', '')##^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(（【].*[求更谢乐发推票盟].*",
      "chapterUrl": "/pc/chapter/{$.id}",
      "updateTime": "$.publishTime"
    },
    "searchUrl": "/search?word={{key}}&pageNo={{page}}&pageSize=10&objectType=2,{\n  \"headers\": \"{os:'pc'}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "晚班小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.99mk.info",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 525,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "",
    "lastUpdateTime": 1721151221006,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 2287,
    "ruleBookInfo": {
      "author": "class.info@tag.span.0@text##作者：",
      "coverUrl": "class.cover@tag.img@src",
      "intro": "class.intro@text##简介：|各位书友.*",
      "kind": "class.info@tag.span.1@text##分类：",
      "lastChapter": "class.info@tag.a.-1@text&&class.info@class.last.0@text##更新时间：|..\\:.*",
      "name": "class.info@tag.h2@text",
      "tocUrl": "text.开始阅读@href"
    },
    "ruleContent": {
      "content": ".ReadAjax_content@html",
      "imageStyle": "0",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##请记住本书首发.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.author@text##作者：",
      "bookList": "class.bookbox",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "tag.img@src",
      "intro": "tag.p@text",
      "kind": "class.cat@text##分类：",
      "lastChapter": "class.update@tag.a@text",
      "name": "tag.h4@text"
    },
    "ruleToc": {
      "chapterList": "class.book_last@dl@dd@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://wap.99mk.net/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "vip章节请登录后更新目录",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "书耽小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://app.shubl.com",
    "customButton": false,
    "customOrder": 526,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全部纯爱::https://www.baidu.com/category_type=1&order=week_click&page={{page}}\n现纯::https://www.baidu.com/category_type=4&order=week_click&page={{page}}\n幻纯::https://www.baidu.com/category_type=5&order=week_click&page={{page}}\n古纯::https://www.baidu.com/category_type=6&order=week_click&page={{page}}\n百合::https://www.baidu.com/category_type=3&order=week_click&page={{page}}\n全部言情::https://www.baidu.com/category_type=20&order=week_click&page={{page}}\n现言::https://www.baidu.com/category_type=8&order=week_click&page={{page}}\n幻言::https://www.baidu.com/category_type=9&order=week_click&page={{page}}\n古言::https://www.baidu.com/category_type=10&order=week_click&page={{page}}\n无CP::https://www.baidu.com/category_type=21&order=week_click&page={{page}}\n付费&连载&更新时间::https://www.baidu.com/category_type=1&order=uptime&up_status=0&is_paid=1&page={{page}}\n付费&完本&更新时间::https://www.baidu.com/category_type=1&order=uptime&up_status=1&is_paid=1&page={{page}}\n每日签到::data:get_daily;base64,{{java.base64Encode(\"get_daily_task_bonus\")}},{\"type\":\"\"}",
    "header": "{\"app-version\":\"4.1.4\"}",
    "jsLib": "function encode(word){\n\t const {java} = this;\n  \treturn java.createSymmetricCrypto(\"AES/CBC/PKCS5Padding\", java.base64DecodeToByteArray(\"L6alxSR4ttjXvcGpZozYtdcJtG4l0tSnQplRUONIRsw=\"), java.base64DecodeToByteArray(\"AAAAAAAAAAAAAAAAAAAAAA==\")).encryptBase64(word);\n\t}\n\t\nfunction decode(word){\n\t   const {java} = this;\n    \treturn java.createSymmetricCrypto(\"AES/CBC/PKCS5Padding\", java.base64DecodeToByteArray(\"L6alxSR4ttjXvcGpZozYtdcJtG4l0tSnQplRUONIRsw=\"), java.base64DecodeToByteArray(\"AAAAAAAAAAAAAAAAAAAAAA==\")).decryptStr(word);\n}\n\nfunction getToken(){\t\n\tconst {source} = this;\n\treturn (source.getLoginHeaderMap()!=null && source.getLoginHeaderMap()!=\"\")?source.getLoginHeaderMap().get(\"login_token\"):\"0f6bd1d063f202f71c3b84678027ce81\"\n\t}\n\t\nfunction getA(){\n\tconst {source} = this;\n\treturn (source.getLoginHeaderMap()!=null && source.getLoginHeaderMap()!=\"\")?source.getLoginHeaderMap().get(\"account\"):\"%E8%90%8C%E5%8F%8B521068519938\";\n\t}",
    "lastUpdateTime": 1785042109585,
    "loginUi": "[\n    {\n        name: \"账号\",\n        type: \"text\"\n    },\n    {\n        name: \"验证码\",\n        type: \"text\"\n    },\n     {\n        name: \"获取验证码（填完验证码点“✓”登录）\",\n        type: \"button\",\n        \"action\":\"getCode()\"\n    }\n]",
    "loginUrl": "<js>\nlet uu = \"https://tmp.xxltest.mengjunnet.com\";\n\n function getCode(){\n \t let app_signature_md5 = \"f73576612783f8ed8b68cdf73a56be94\";\n  \tlet phone = result.get(\"账号\");\n  \tlet time = String(Date.now());\t\n  \t\n   let hashvalue = String(java.md5Encode(encode(phone+time)));\t\n   let option = {\n   \"app_signature_md5\":app_signature_md5,\n   \"app_version\":\"4.1.4\",\n   \"channel\":\"6\",\n   \"verify_type\":\"5\", \n    \"hashvalue\":hashvalue,\n   \"username\":phone,\n   \"timestamp\":time\n   \t}\n   header = {\n   \n   \t\t\"user-agent\":\"Android\"\n   \t\t\n   \t}\n   let body = \"secret_content=\"+encodeURIComponent(encode(JSON.stringify(option)));\n   java.log(body)\n   let url = uu+ \"/signup/send_verify_code\";\n   try{\n let resposebody = java.post(url,String(body),{\"app-version\":\"4.1.4\",\"user-agent\":\"Android\"}).body();\n \n \tlet tip = JSON.parse(decode(resposebody)).tip;\n \t\n \tjava.toast(tip)\n \t}catch(e){\n \t\tjava.log(e)\n \t\t}\n \t\n \t}\n \n \n \t\n function login(){\n \ttry{\n \tlet login_name=source.getLoginInfoMap().get(\"账号\")\nlet code=source.getLoginInfoMap().get(\"验证码\");\n    let jsonStr = {\n    \t\"app_signature_md5\":\"f73576612783f8ed8b68cdf73a56be94\",\n    \t\"app_version\":\"4.1.4\",\n    \t\"channel\":\"default\",\n    \t\"uuid\":\"android\",\n    \t\"ver_code\":code,\n    \t\"username\":login_name\n    \t}\n    \n    \n    let body = \"secret_content=\" + encode(JSON.stringify(jsonStr));\n    let option = {\n        \"method\": \"POST\",\n        \"body\": String(body)\n    };\n    \n    let url = uu+\"/signup/verify_login,\" + JSON.stringify(option);\n    \n   let respbody = decode(java.ajax(url));\n//  java.log(respbody);\n   let resp = JSON.parse(respbody);\n   java.toast(resp.tip);\n   java.log(resp.tip);\n   \n   \n    if (resp.code == \"100000\") {\n     body = {\n     \t\"login_token\":resp.data.login_token,\n     \t\"account\":encodeURI(resp.data.reader_info.account)\n     \t}\n     source.putLoginHeader(JSON.stringify(body)) \n    } else {\n        java.toast('❗️ ' + resp.tip + ' ❗️')\n    }\n    }catch(e){\n    \tjava.log(e)\n    \t}\n}\n</js>",
    "respondTime": 3128,
    "ruleBookInfo": {
      "author": "$.author_name",
      "coverUrl": "$.cover",
      "init": "<js>\ndecode(result)\n</js>\n$.data.book_info",
      "intro": "$.description",
      "kind": "$.tag",
      "lastChapter": "{{$.last_chapter_info.chapter_title}} / {{$.last_chapter_info.uptime}}",
      "name": "$.book_name",
      "tocUrl": "@js:\nlet jsonObj={\"app_signature_md5\":\"f73576612783f8ed8b68cdf73a56be94\",\"app_version\":\"4.1.1\",\"channel\":\"default\",\"last_update_time\":\"0\",\"book_id\":{{$.book_id}},\"login_token\":String(getToken()),\"account\":String(getA())}\nlet body = \"secret_content=\"+encode(JSON.stringify(jsonObj));\nlet option = {\"method\": \"POST\",\"body\": String(body)};\n\"https://app.shubl.com/chapter/get_chapter_list_group_by_division,\" + JSON.stringify(option)",
      "wordCount": "$.total_word_count"
    },
    "ruleContent": {
      "content": "<js>\ndecode(result)\n</js>\n$.data.chapter_info.txt_content"
    },
    "ruleExplore": {
      "author": "$.author_name",
      "bookList": "<js>\nresponse=null\nif(!baseUrl.match(/localhost|get_daily/)){\n\t\ncategory_type=baseUrl.match(/category_type=(\\d+)/)?baseUrl.match(/category_type=(\\d+)/)[1]:\"\"\norder=baseUrl.match(/order=(.+?)&/)?baseUrl.match(/order=(.+?)&/)[1]:\"\"\nis_paid=baseUrl.match(/is_paid=(\\d)&/)?baseUrl.match(/is_paid=(\\d)&/)[1]:\"\"\nup_status=baseUrl.match(/up_status=(\\d)&/)?baseUrl.match(/up_status=(\\d)&/)[1]:\"\"\njsonObj={\"category_type\":category_type,\"app_signature_md5\":\"f73576612783f8ed8b68cdf73a56be94\",\"app_version\":\"2.1.6\",\"channel\":\"default\",\"order\":order,\"count\":\"15\",\"is_paid\":is_paid,\"page\":String(baseUrl.match(/page=(\\d+)/)[1]-1),\"up_status\":up_status,\"login_token\":String(getToken()),\"account\":String(getA())}\n//java.log(JSON.stringify(jsonObj))\noption={\"method\":\"POST\",\"body\":\"secret_content=\"+encodeURIComponent(encode(JSON.stringify(jsonObj)))}\nurl=\"https://app.shubl.com/bookcity/get_filter_search_book_list,\"+JSON.stringify(option)\nresponse=decode(java.ajax(url))\n}else{\njsonObj={\"app_signature_md5\":\"f73576612783f8ed8b68cdf73a56be94\",\"app_version\":\"2.1.6\",\"channel\":\"default\",\"task_type\":\"1\",\"login_token\":String(getToken()),\"account\":String(getA())}\noption={\"method\":\"POST\",\"body\":\"secret_content=\"+encodeURIComponent(encode(JSON.stringify(jsonObj)))}\nurl=\"https://app.shubl.com/reader/get_daily_task_bonus,\"+JSON.stringify(option)\nresponse=decode(java.ajax(url));\njava.toast(JSON.parse(response).tip)\n}\n\n// 打印解密结果\njava.log(JSON.stringify(JSON.parse(response)))\nresponse\n</js>\n$.data.book_list||$.[*]",
      "bookUrl": "@js:\nif(!baseUrl.match(/localhost|get_daily/)){\nlet jsonObj={\"app_signature_md5\":\"f73576612783f8ed8b68cdf73a56be94\",\"app_version\":\"2.1.6\",\"channel\":\"default\",\"book_id\":String(java.getString('$.book_id')),\"login_token\":String(getToken()),\"account\":String(getA())}\nlet body = \"secret_content=\"+encode(JSON.stringify(jsonObj));\nlet option = {\"method\": \"POST\",\"body\": String(body)};\n\"https://app.shubl.com/book/get_info_by_id,\" + JSON.stringify(option)\n}else{\nbaseUrl\n}",
      "coverUrl": "$.cover",
      "intro": "$.description",
      "kind": "$.tag",
      "lastChapter": "{{$.last_chapter_info.chapter_title}} / {{$.last_chapter_info.uptime}}",
      "name": "$.book_name@put:{\"bid\":\"$.book_id\"}||$",
      "wordCount": "$.total_word_count"
    },
    "ruleSearch": {
      "author": "$.author_name",
      "bookList": "<js>\n\n\n\nresponse=decode(result)\n// 打印解密结果\n//java.log(JSON.stringify(JSON.parse(response)))\nresponse\n</js>\n$.data.book_list",
      "bookUrl": "@js:\nlet jsonObj={\"app_signature_md5\":\"f73576612783f8ed8b68cdf73a56be94\",\"app_version\":\"4.1.1\",\"channel\":\"default\",\"book_id\":{{$.book_id}},\"login_token\":String(getToken()),\"account\":String(getA())}\nlet body = \"secret_content=\"+encode(JSON.stringify(jsonObj));\nlet option = {\"method\": \"POST\",\"body\": String(body)};\n\"https://app.shubl.com/book/get_info_by_id,\" + JSON.stringify(option)",
      "coverUrl": "$.cover",
      "intro": "$.description",
      "kind": "$.tag",
      "lastChapter": "{{$.last_chapter_info.chapter_title}} / {{$.last_chapter_info.uptime}}",
      "name": "$.book_name@put:{\"bid\":\"$.book_id\"}",
      "wordCount": "$.total_word_count"
    },
    "ruleToc": {
      "chapterList": "<js>\ndecode(result)\n</js>\n$.data.chapter_list_group[*].chapter_list[*]",
      "chapterName": "$.chapter_title",
      "chapterUrl": "@js:\nlet jsonObj={\"app_signature_md5\":\"f73576612783f8ed8b68cdf73a56be94\",\"app_version\":\"4.1.1\",\"channel\":\"default\",\"chapter_id\":{{$.chapter_id}},\"login_token\":String(getToken()),\"account\":String(getA())}\n\nlet body = \"secret_content=\"+encode(JSON.stringify(jsonObj));\nlet option = {\"method\": \"POST\",\"body\": String(body)};\n\"https://app.shubl.com/chapter/get_chapter_info,\" + JSON.stringify(option)",
      "isVip": "@js:!{{$.auth_access}}",
      "updateTime": "{{$.word_count}} 字 发布于 {{$.uptime}}"
    },
    "searchUrl": "@js:\n\nu=decode(decodeURIComponent(\"hYKytSMHsACWNRRED+zq8asscl2eVP6HdvA4q5ImrVI7MWRmJfl1mXV/bVjWdldyl6Jlfmf78osN25N+IMEqlZ/ISFj5ytn+hpR9jTw5PT8hFFyMLia2qgW0FSdV9O7fZhjcs9FVfNfzWxNHiQg03a8CW3WiY7wc0V3PNoja3lE4Za8ETj6pE/Nv7iXoj3ZD7Xb3E9kcfCyJYw5ftdV4uiMO7hPOdEL+vAb6C+PmksCYWb5NcLdNj8Ujircymh6sTgn9xICNQeH83g/b4U3GcdgsaTiCRU+3l9B3jg5C438=\"));\njava.log(JSON.stringify(JSON.parse(u)))\nlet jsonObj={\"app_signature_md5\":\"f73576612783f8ed8b68cdf73a56be94\",\"app_version\":\"4.1.1\",\"channel\":\"default\",\"order\":\"week_click\",\"count\":\"15\",\"category_type\":\"1\",\"page\":page-1,\"key\":key,\"login_token\":String(getToken()),\"account\":String(getA())}\nlet body = \"secret_content=\"+encode(JSON.stringify(jsonObj));\n\nlet option = {\"method\": \"POST\",\"body\": String(body)};\n\n\"https://app.shubl.com/bookcity/get_filter_search_book_list,\" + JSON.stringify(option)",
    "weight": 0
  },
  {
    "bookSourceComment": "by二月无雪\n交流群：756138903",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "网阅小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://book15.net/",
    "customButton": false,
    "customOrder": 527,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "<js>\nvar result = [];\nvar mainCat = infoMap[\"频道\"] || \"小说排行\";\n\nresult.push({\n    \"title\": \"频道\",\n    \"type\": \"select\",\n    \"chars\": [\"小说排行\", \"男生频道\", \"女生频道\", \"综合频道\", \"免费小说\"],\n    \"default\": mainCat,\n    \"action\": \"java.refreshExplore()\",\n    \"style\": {\"layout_flexGrow\": 1, \"layout_flexBasisPercent\": 1}\n});\n\nvar cats = {\n    \"小说排行\": [\n        [\"总人气榜\", \"/books/rank1.html\"],\n        [\"月人气榜\", \"/books/rank2.html\"],\n        [\"周人气榜\", \"/books/rank3.html\"]\n    ],\n    \"男生频道\": [\n        [\"玄幻奇幻\", \"/books/list-t-3.html?page={{page}}\"],\n        [\"武侠修真\", \"/books/list-t-8.html?page={{page}}\"],\n        [\"都市小说\", \"/books/list-t-21.html?page={{page}}\"],\n        [\"恐怖灵异\", \"/books/list-t-4.html?page={{page}}\"],\n        [\"乡村生活\", \"/books/list-t-9.html?page={{page}}\"],\n        [\"科幻末世\", \"/books/list-t-12.html?page={{page}}\"],\n        [\"历史军事\", \"/books/list-t-11.html?page={{page}}\"]\n    ],\n    \"女生频道\": [\n        [\"都市言情\", \"/books/list-t-5.html?page={{page}}\"],\n        [\"古代言情\", \"/books/list-t-6.html?page={{page}}\"],\n        [\"穿越小说\", \"/books/list-t-10.html?page={{page}}\"],\n        [\"浪漫青春\", \"/books/list-t-7.html?page={{page}}\"],\n        [\"二次元\", \"/books/list-t-17.html?page={{page}}\"]\n    ],\n    \"综合频道\": [\n        [\"现代文学\", \"/books/list-t-14.html?page={{page}}\"],\n        [\"外国文学\", \"/books/list-t-22.html?page={{page}}\"],\n        [\"古典文学\", \"/books/list-t-15.html?page={{page}}\"],\n        [\"侦探推理\", \"/books/list-t-23.html?page={{page}}\"],\n        [\"游戏竞技\", \"/books/list-t-16.html?page={{page}}\"]\n    ],\n    \"免费小说\": [\n        [\"免费排行\", \"/books/free.html\"]\n    ]\n};\n\nvar selected = cats[mainCat];\nfor (var i = 0; i < selected.length; i++) {\n    result.push({\n        \"title\": selected[i][0],\n        \"url\": selected[i][1],\n        \"style\": {\"layout_flexGrow\": 1, \"layout_flexBasisPercent\": 0.25}\n    });\n}\n\nJSON.stringify(result);\n</js>",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36\",\"Referer\":\"https://book15.net/\",\"Accept\":\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\",\"Accept-Language\":\"zh-CN,zh;q=0.9\"}",
    "lastUpdateTime": 1785964049933,
    "respondTime": 8217,
    "ruleBookInfo": {
      "author": ".d-info-panel a[href*=author]@text",
      "coverUrl": ".d-info-panel img@src",
      "intro": ".d-info-panel .nowrap-3@text",
      "kind": ".d-info-panel a[href*=list-t]@text",
      "lastChapter": "meta[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": ".chapter-content@html##<!--[\\s\\S]*?-->##",
      "nextContentUrl": "#after_link@href"
    },
    "ruleExplore": {
      "author": "a.author@text||a[href*=author]@text",
      "bookList": ".list-item-panel||li.fh-f1:has(h4)",
      "bookUrl": "h3 a@href||h4 a@href",
      "coverUrl": "img@src",
      "intro": ".nowrap-2@text||.nowrap-3@text",
      "kind": "a[href*=list-t]@text",
      "name": "h3 a@text||h4 a@text"
    },
    "ruleSearch": {
      "author": "a.author@text",
      "bookList": ".list-item-panel",
      "bookUrl": "h3 a@href",
      "coverUrl": "img@src",
      "intro": ".nowrap-2@text",
      "kind": "a[href*=list-t]@text",
      "name": "h3 a@text"
    },
    "ruleToc": {
      "chapterList": ".d-chapter-list dd a",
      "chapterName": "@text",
      "chapterUrl": "@href"
    },
    "searchUrl": "/books/search.html?kw={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🔞,📚小说",
    "bookSourceName": "御书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.wmp8.com",
    "customButton": false,
    "customOrder": 528,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全部::https://m.wmp8.com/shuku/0/0/0/0/0/0/lastupdate/{{page}}.html\n都市言情::https://m.wmp8.com/shuku/0/2/0/0/0/0/lastupdate/{{page}}.html\n古代爱情::https://m.wmp8.com/shuku/0/3/0/0/0/0/lastupdate/{{page}}.html\n罗曼史::https://m.wmp8.com/shuku/0/4/0/0/0/0/lastupdate/{{page}}.html\n耽美::https://m.wmp8.com/shuku/0/5/0/0/0/0/lastupdate/{{page}}.html\n百合::https://m.wmp8.com/shuku/0/6/0/0/0/0/lastupdate/{{page}}.html\n同人::https://m.wmp8.com/shuku/0/7/0/0/0/0/lastupdate/{{page}}.html\n奇幻玄幻::https://m.wmp8.com/shuku/0/8/0/0/0/0/lastupdate/{{page}}.html\n网游竞技::https://m.wmp8.com/shuku/0/9/0/0/0/0/lastupdate/{{page}}.html\n科幻异能::https://m.wmp8.com/shuku/0/10/0/0/0/0/lastupdate/{{page}}.html\n恐怖灵异::https://m.wmp8.com/shuku/0/11/0/0/0/0/lastupdate/{{page}}.html\n惊悚推理::https://m.wmp8.com/shuku/0/12/0/0/0/0/lastupdate/{{page}}.html\n武侠仙侠::https://m.wmp8.com/shuku/0/13/0/0/0/0/lastupdate/{{page}}.html\n历史军事::https://m.wmp8.com/shuku/0/14/0/0/0/0/lastupdate/{{page}}.html\n穿越重生::https://m.wmp8.com/shuku/0/15/0/0/0/0/lastupdate/{{page}}.html\n综合其它::https://m.wmp8.com/shuku/0/16/0/0/0/0/lastupdate/{{page}}.html",
    "lastUpdateTime": 0,
    "respondTime": 6909,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content##小说|\\s.*",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content##\\[.*\\]|（.*）##",
      "tocUrl": "text.目录@href",
      "wordCount": ".xq_bookne@div.5@text##字数："
    },
    "ruleContent": {
      "content": "#YiJianZhan@html",
      "replaceRegex": "##分卷阅读.*|.*作者.*"
    },
    "ruleExplore": {
      "name": ""
    },
    "ruleSearch": {
      "author": ".book_other@ownText",
      "bookList": "#sitebox dl",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "img@src",
      "intro": ".book_des a@text",
      "kind": "span@text",
      "name": "tag.a.1@text##\\[.*\\]|（.*）##"
    },
    "ruleToc": {
      "chapterList": "#readerlist ul li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "/modules/article/search.php,{\n  \"method\": \"POST\",\n  \"body\": \"searchkey={{key}}&searchtype=all&page={{page}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁#34",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.bqgns.com",
    "customButton": false,
    "customOrder": 529,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787303609116,
    "respondTime": 8846,
    "ruleBookInfo": {
      "author": "//p[@class='author']/text()",
      "name": "//div[@class='detail_rt']/h1/text()"
    },
    "ruleContent": {
      "content": "//div[@class='text']/text()"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$..author",
      "bookList": "$..list[*]",
      "bookUrl": "/book/{$..id}",
      "checkKeyWord": "成功",
      "coverUrl": "$..imgUrl",
      "name": "$..title"
    },
    "ruleToc": {
      "chapterList": "div.v-sheet div a",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "//div[@class='seo_page']/a[text()='下一页']/@href"
    },
    "searchUrl": "/api/query/search?keyword={{key}}&size=50",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "兔九三网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.tu93.net",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 530,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻奇幻\",\"url\":\"/xuanhuan?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"武侠仙侠\",\"url\":\"/xianxia?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"都市言情\",\"url\":\"/dushi?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"历史军事\",\"url\":\"/lishi?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"科幻传奇\",\"url\":\"/kehuan?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"恐怖灵异\",\"url\":\"/kongbu?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"其他类型\",\"url\":\"/qita?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"全本小说\",\"url\":\"/quanben?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/82.0.4080.0 Safari/537.36 Edg/82.0.453.0\"\n}",
    "lastUpdateTime": 1740790922845,
    "loginUrl": "",
    "respondTime": 5674,
    "ruleBookInfo": {
      "author": ".booktag@a.0@text",
      "coverUrl": "id.bookIntro@img@src",
      "init": "",
      "intro": "id.bookIntro@text##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": ".booktag@a.1@text&&.booktag@span.2@text&&p.visible-xs@text##.*：|（|\\s..:.*",
      "lastChapter": ".text-danger@title##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": ".bookTitle@text",
      "tocUrl": "",
      "wordCount": ".booktag@span.0@text##.*："
    },
    "ruleContent": {
      "content": "id.htmlContent@html",
      "nextContentUrl": "@js:\nif (result.indexOf(\"xyy2.png\") > -1) {\nvar code = result.match(/eval\\(function(.*)\\);/)[0]\ncode = code.replace(/__u[0-9a-f]+/, '__uData')\neval(code)\n\t\n\tif(!__uData.match('_')) {\n\t next = java.getElement(\"@@id.linkNext@a\")\n\t __uData = next.attr(\"href\")\n\t}\n__uData\n}",
      "replaceRegex": "##第.+章.+|.*最新章节！|.*完整章节.*|[\\(（]本章完[\\)）].*|「如章节缺失.*」|你看到的.内容.*|.*小说app阅读.*|为你提供最快的.*",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "td.2@text",
      "bookList": "tbody@tr",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.+\\D((\\d+)\\d{3})\\D##https://statics.tu93.net/$2/$1/$1s.jpg###",
      "kind": "td.5:4@text",
      "lastChapter": "a.1@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "a.0@text"
    },
    "ruleSearch": {
      "author": "a.1@text",
      "bookList": ".col-md-10",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.+\\D((\\d+)\\d{3})\\D##https://statics.tu93.net/$2/$1/$1s.jpg###",
      "intro": "p.1@text",
      "kind": "p.3@text##.*：",
      "lastChapter": "a.2@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "a.0@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": ".col-md-3@a",
      "chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "href##$##,{'webView': true}",
      "updateTime": ""
    },
    "searchUrl": "@js:\nvar su=source.getKey()\nvar htmlUrl=java.get(su,{}).headers('Location')\njava.log(`重定向：${htmlUrl[0]}`)\nvar posturl=htmlUrl[0]?htmlUrl[0]:(su.includes(\"#\")?su.match(/([^\\#]+)\\#/)[1]:su)\nposturl = posturl.slice(-1)=='/'?posturl.slice(0,-1):posturl\ncookie.removeCookie(posturl)\njava.log(`请求：${posturl}`)\n\n\nposturl+\"/search/,\"+JSON.stringify({\n\t\"method\": \"post\",\n       \"body\": \"keyword={{key}}\"\n\n})",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.biquge.casa",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 531,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"校园言情\",\n    \"url\": \"/xiaoyuan.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市言情\",\n    \"url\": \"/dushi.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"古代言情\",\n    \"url\": \"/gudai.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"罗曼史\",\n    \"url\": \"/luoman.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"耽美\",\n    \"url\": \"/danmei.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"百合\",\n    \"url\": \"/baihe.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"同人\",\n    \"url\": \"/tongren.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"奇幻玄幻\",\n    \"url\": \"/qihuan.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游竞技\",\n    \"url\": \"/wangyou.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻异能\",\n    \"url\": \"/kehuan.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"恐怖灵异\",\n    \"url\": \"/kongbu.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"惊悚推理\",\n    \"url\": \"/jingsong.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠仙侠\",\n    \"url\": \"/wuxia.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史军事\",\n    \"url\": \"/lishi.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"穿越重生\",\n    \"url\": \"/chuanyue.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"综合其它\",\n    \"url\": \"/qita.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.0.0; MI 5s Plus Build/OPR1.170623.032; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/71.0.3578.99 Mobile Safari/537.36\"\n}",
    "lastUpdateTime": 1754708405013,
    "respondTime": 2295,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": ""
    },
    "ruleContent": {
      "content": "@js:\nid=java.get(\"id\")\nif (/baidu\\.com/.test(baseUrl)) {\n    pre = baseUrl.replace(/baidu\\.com/, \"biquge.casa\");\n    rev = org.jsoup.Jsoup.parse(java.ajax(pre));\n    url = source.key + \"/\" + id +  rev.select('#linkPrev').attr('href');\n    java.setContent(result = java.ajax(url));\n} else if (/bing\\.com/.test(baseUrl)) {\n    nex = baseUrl.replace(/cn\\.bing\\.com/, \"www.biquge.casa\");\n    next = org.jsoup.Jsoup.parse(java.ajax(nex));\n    nexUrl = source.key + \"/\" + id +  next.select('#linkNext').attr('href');\n    java.setContent(result = java.ajax(nexUrl));\n  } else { result; }\nresult = java.getString('.readcontent@html');"
    },
    "ruleExplore": {
      "author": ".author.0@text##作者：",
      "bookList": ".bookbox",
      "bookUrl": "a@href",
      "coverUrl": "a.0@href##\\D((\\d+)\\d{3})##https://img.biquge.casa/image/$2/$1/$1s.jpg###",
      "intro": ".update@ownText",
      "kind": ".author.2@text",
      "lastChapter": ".cat@a.0@text",
      "name": "h4@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": ".author.0@text##作者：",
      "bookList": ".bookbox",
      "bookUrl": "a.0@href",
      "checkKeyWord": "大理寺",
      "coverUrl": "a.0@href##\\D((\\d+)\\d{3})##https://img.biquge.casa/image/$2/$1/$1s.jpg###",
      "intro": ".update@ownText",
      "kind": ".author.1@text",
      "lastChapter": ".cat@a.0@text",
      "name": "h4@text"
    },
    "ruleToc": {
      "chapterList": "<js>\nbase = baseUrl;\nid = baseUrl.match(/(\\d+\\/)/)[1]\njava.put(\"id\",id)\nlis = java.getElements('#list-chapterAll@dd');\nvar list = [];\n\nfor (var i = 0; i < lis.length; i++) {\n     var href = lis[i].select('a').attr('href');\n     var text = lis[i].text();\n     if (href==0) {\n        if ( i < lis.length - 1 ) {\n            var url = \"https://www.baidu.com/\" + id + lis[i + 1].select('a').attr('href');         \n        } else {\n            var url = \"https://cn.bing.com/\" + id + lis[i - 1].select('a').attr('href');\n        }\n     } else { var url = base + href; }\n     java.log(lis[i].text()+\":\"+url);\n     list.push({\"text\": text, \"href\": url});\n}\n\nlist\n</js>",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php,{\n  \"body\": \"searchkey={{key}}&searchtype=all&submit=\",\n  \"method\": \"POST\",\n  \"charset\": \"GBK\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "20240528By_zhbyjm7783\n目录正文by: youke游客2580",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "凡人小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.washuwx.com",
    "customButton": false,
    "customOrder": 532,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "",
    "lastUpdateTime": 1732985157643,
    "respondTime": 3069,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "class.intro clearfix@text",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "text.章节列表@href"
    },
    "ruleContent": {
      "content": "@js:\nvar txt = [],\ndd = java.getElement(\"#txt dd\");\nfor(i = 0; i < dd.length-1; i++){\n\tdata = dd.select(`[data-id=${i}]`)\n\ttxt.push(data)\n\t}\ntxt.join(\"\\n\")",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##{{try{title}catch(e){\"\"} }}\\s*\\(第\\d+.*页\\)|.?本章未完.*|.*凡人小说网全文字更新,牢记网址.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a@textNodes##.*\\(|\\)",
      "bookList": "ul[class=\"bd\"]@li",
      "bookUrl": "a@href",
      "checkKeyWord": "临安不夜侯",
      "kind": "span@text##\\[|\\]",
      "name": "a@textNodes##\\(.*|\\)"
    },
    "ruleToc": {
      "chapterList": "<js>\nvar list = [],\nd=java.getElement(\".list > div\");\nfor(i = 0; i < d.length-1; i++){\n\tdata = d.select(`[data-id=${i}]`)\n\tlist.push(data)\n\t}\nlist.join(\"\\n\")\n</js>\nli a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://wap.washuwx.com/s.php,{\n\t\"method\":\"post\",\n\t\"body\":\"s={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "丁斐321",
    "bookSourceType": 2,
    "bookSourceUrl": "http://comic.321mh.com",
    "customButton": false,
    "customOrder": 534,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nlet model = (title,url,num)=>{\n    return {title:title,url:url,style:{layout_flexGroup:1,layout_flexBasisPercent:num}}\n}\n\nlet ajax = java.ajax(\"http://comic.321mh.com/v1/comic/getcomicsortandroid?platformname=android&productname=mht\")\nlet url=\"https://getconfig-globalapi.yyhao.com/app_api/v5/getsortlist/?page={{page}}&orderby=date&search_type=&comic_sort=tihuan&search_key=&platformname=android&productname=mht\"\n\n丁斐=JSON.parse(ajax).data.map(i=>{\n\tt=url.replace(\"tihuan\",i.urlid)\n\treturn  model(i.name,t,0.25)\n\t})\n\t\n\nJSON.stringify(丁斐)",
    "lastUpdateTime": 1787385042464,
    "respondTime": 1097,
    "ruleBookInfo": {
      "intro": "$..comic_desc##^##<br>"
    },
    "ruleContent": {
      "content": "@js:\nres=baseUrl.match(/mycha=(.*)/)\ncha=JSON.parse(res[1])\n\nhost=\"https://mhpic.manhualang.com\"\nlist=[]\n\nlen=cha.end_num\nimg=cha.chapter_image.high\nfor(var i=0;i<len;i++){\n\t  list.push(img.replace(\"$$\",i+1))\n}\n\n\nlist.map(x=>'<img src=\"'+host+x+'\">').join(\"\\n\")"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.comic_author",
      "bookList": "$.data[*]",
      "bookUrl": "http://comic.321mh.com/app_api/v5/getcomicinfo_body/?comic_id={{$.comic_id}}&from_page=search&platformname=android&productname=mht",
      "coverUrl": "http://image.yqmh.com/mh/{{$.comic_id}}.jpg",
      "kind": "$.comic_type##[a-z]+|\\|",
      "lastChapter": "$.last_chapter_name",
      "name": "$.comic_name"
    },
    "ruleToc": {
      "chapterList": "-$..comic_chapter[*]",
      "chapterName": "$.chapter_name",
      "chapterUrl": "$[?(@.chapter_name==\"{{chapter.title}}\")]\n@js:\n\ncha=java.getElement(result)[0]\nbaseUrl+'&mycha='+JSON.stringify(cha)\n",
      "updateTime": "$..create_date\n@js:\"🕗 \"+java.timeFormat(result*1000)"
    },
    "searchUrl": "https://getconfig-globalapi.yyhao.com/app_api/v5/getsortlist/?page={{page}}&orderby=click&search_key={{key}}&young_mode=0&platformname=android&productname=mht",
    "weight": 0
  },
  {
    "bookSourceComment": "//by:九梦",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🌸S TV小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.sjwx.la",
    "customButton": false,
    "customOrder": 535,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n    {\n        \"title\": \"武侠小说\",\n        \"url\": \"/soft/1/Soft_001_{{page}}.html\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.3,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"玄幻小说\",\n        \"url\": \"/soft/2/Soft_002_{{page}}.html\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.3,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"都市言情\",\n        \"url\": \"/soft/3/Soft_003_{{page}}.html\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.3,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"恐怖灵异\",\n        \"url\": \"/soft/4/Soft_004_{{page}}.html\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.3,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"现代文学\",\n        \"url\": \"/soft/5/Soft_005_{{page}}.html\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.3,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"侦探推理\",\n        \"url\": \"/soft/6/Soft_006_{{page}}.html\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.3,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"科幻小说\",\n        \"url\": \"/soft/7/Soft_007_{{page}}.html\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.3,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"穿越架空\",\n        \"url\": \"/soft/9/Soft_009_{{page}}.html\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.3,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"古典名著\",\n        \"url\": \"/soft/10/Soft_010_{{page}}.html\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.3,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"历史军事\",\n        \"url\": \"/soft/12/Soft_012_{{page}}.html\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.3,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"网游小说\",\n        \"url\": \"/soft/14/Soft_014_{{page}}.html\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.3,\n            \"layout_flexGrow\": 1\n        }\n    }\n]\n",
    "lastUpdateTime": 1786803235757,
    "respondTime": 6886,
    "ruleBookInfo": {
      "author": ".small.-2@text##.+：",
      "coverUrl": ".detail_pic@img@src",
      "intro": "&nbsp;{{@@.small[!1,2,-2]@text}}\n{{@@.showInfo@p@text}}",
      "kind": "span@a.1@text",
      "lastChapter": ".small.-1@text##.+：",
      "name": "h1.0@text",
      "tocUrl": "text.在线阅读@href"
    },
    "ruleContent": {
      "content": "#content1@html",
      "replaceRegex": "##最新网址.+la"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "text.作者：@text##\\s.+",
      "bookList": ".listBox@ul@li",
      "bookUrl": "a@href",
      "coverUrl": "a@img@src",
      "intro": "text.连载：@text##\\S+\\s(\\S+)\\s\\S+\\s(\\S+)##&nbsp;$1\n$2",
      "name": "a@text"
    },
    "ruleToc": {
      "chapterList": ".pc_list.-1@ul@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://www.sjwx.la/search.php?s=&searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "百度小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://dushu.baidu.com/",
    "customButton": false,
    "customOrder": 536,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"东方玄幻\",\"url\":\"/api/getCateDetail?channel=男频&status=完结&count=10&cate2=东方玄幻&query=东方玄幻&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古典仙侠\",\"url\":\"/api/getCateDetail?channel=男频&status=完结&count=10&cate2=古典仙侠&query=古典仙侠&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"现代修真\",\"url\":\"/api/getCateDetail?channel=男频&status=完结&count=10&cate2=现代修真&query=现代修真&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市生活\",\"url\":\"/api/getCateDetail?channel=男频&status=完结&count=10&cate2=都市生活&query=都市生活&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市超能\",\"url\":\"/api/getCateDetail?channel=男频&status=完结&count=10&cate2=都市超能&query=都市超能&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"架空历史\",\"url\":\"/api/getCateDetail?channel=男频&status=完结&count=10&cate2=架空历史&query=架空历史&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"虚拟网游\",\"url\":\"/api/getCateDetail?channel=男频&status=完结&count=10&cate2=虚拟网游&query=虚拟网游&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"时空穿梭\",\"url\":\"/api/getCateDetail?channel=男频&status=完结&count=10&cate2=时空穿梭&query=时空穿梭&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"末世进化\",\"url\":\"/api/getCateDetail?channel=男频&status=完结&count=10&cate2=末世进化&query=末世进化&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代言情\",\"url\":\"/api/getCateDetail?channel=女频&status=完结&count=10&cate2=古代言情&query=古代言情&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越重生\",\"url\":\"/api/getCateDetail?channel=女频&status=完结&count=10&cate2=穿越重生&query=穿越重生&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"浪漫言情\",\"url\":\"/api/getCateDetail?channel=女频&status=完结&count=10&cate2=浪漫言情&query=浪漫言情&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"烽火情缘\",\"url\":\"/api/getCateDetail?channel=女频&status=完结&count=10&cate2=烽火情缘&query=烽火情缘&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"忧伤青春\",\"url\":\"/api/getCateDetail?channel=女频&status=完结&count=10&cate2=忧伤青春&query=忧伤青春&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻仙侠\",\"url\":\"/api/getCateDetail?channel=女频&status=完结&count=10&cate2=玄幻仙侠&query=玄幻仙侠&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市幻想\",\"url\":\"/api/getCateDetail?channel=女频&status=完结&count=10&cate2=都市幻想&query=都市幻想&page={{page}}\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.295}},{\"title\":\"悬疑灵异\",\"url\":\"/api/getCateDetail?channel=女频&status=完结&count=10&cate2=悬疑灵异&query=悬疑灵异&page={{page}}\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.295}}]",
    "lastUpdateTime": 1766136470053,
    "loginUrl": "https://wappass.baidu.com/password_login",
    "respondTime": 2939,
    "ruleBookInfo": {
      "intro": "@js:'<br>'+java.get('intro')",
      "lastChapter": "共{$.data.chapter.chapterCount}##[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]"
    },
    "ruleContent": {
      "content": "data.novel.content"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "author",
      "bookList": "$..novelList[*]",
      "bookUrl": "https://boxnovel.baidu.com/boxnovel/wiseapi/chapterList?bookid={$.bookId}&pageNum=1&order=asc&site=",
      "checkKeyWord": "青春",
      "coverUrl": "cover",
      "intro": "description@put:{'intro':'description'}",
      "kind": "{{$.tagList}},{{$.status}}",
      "name": "title"
    },
    "ruleToc": {
      "chapterList": "data.chapter.chapterInfo",
      "chapterName": "chapter_title##默认卷.|正文.|[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]",
      "chapterUrl": "http://dushu.baidu.com/api/pc/getChapterContent?data=%7B%22book_id%22:%22{$.book_id}%22,%22cid%22:%22{$.book_id}%7C{$.chapter_id}%22,%22need_bookinfo%22:0%7D",
      "isVip": "price",
      "nextTocUrl": "@js:\nvar n=(JSON.parse(result).data.chapter.chapterCount)/50+1;\nvar list=[];\nbaseUrl=baseUrl.replace(/1&order=asc&site=/,'');\nfor(var i=2;i<n;i++){\nvar url=baseUrl+i+'&order=asc&site=';\nlist.push(url);\n}\nlist;"
    },
    "searchUrl": "/api/getSearchResultData?page={{page}}&count=10&query={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "qishu66.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "类伪奇书",
    "bookSourceType": 3,
    "bookSourceUrl": "https://www.80qishu.cc",
    "customButton": false,
    "customOrder": 537,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "文学名著::/wenxue/<,index_{{page}}.html>\n其他小说::/qita/<,index_{{page}}.html>",
    "lastUpdateTime": 1774857365789,
    "respondTime": 8525,
    "ruleBookInfo": {
      "coverUrl": "img@src",
      "downloadUrls": "td>a@href##^##{{source.getKey()}}\n<js>java.ajax(result)</js>\n.downbtn@href",
      "init": ".module",
      "intro": ".con@text##(^|[。！？……；]+[”」）】]?)##$1<br>",
      "kind": "p:containsOwn(分类：)@text##小说|分类："
    },
    "ruleContent": {},
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author[0]@text",
      "bookList": ".imgtextlist>li",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": ".intro@text##简介：",
      "name": ".orange@text##《|》",
      "wordCount": ".author[-1]@text##大小：|\\s"
    },
    "ruleToc": {},
    "searchUrl": "@js:\nurl=source.getKey()+\"/e/search/index.php\";\nbody=`show=title,softsay,softwriter&keyboard=${key}&tbname=download&tempid=1&Submit22=搜索`;\nsurl=java.post(url,body,{}).header(\"location\");\nString(surl).replace(/result.*searchid/,\n\"/e/search/result/index.php?page={{page-1}}&searchid\")",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "若夏书网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.ruoxia.com",
    "customButton": false,
    "customOrder": 538,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1786188874391,
    "respondTime": 1371,
    "ruleBookInfo": {
      "author": "//*[@property='og:novel:author']/@content",
      "coverUrl": "//*[@property='og:image']/@content@js:result.split('@')[0]",
      "intro": "class.summary@class.note.0@text",
      "kind": "//*[@property='og:novel:category']/@content",
      "lastChapter": "//*[@property='og:novel:latest_chapter_name']/@content",
      "name": "//*[@property='og:title']/@content",
      "tocUrl": "//*[@property='og:novel:read_url']/@content@js:result.replace('/book/','/chapter/')"
    },
    "ruleContent": {
      "content": "$.chapter.htmlContent<js>result.replace(/<.*?>/g,'').replace(/\\r/g,'\\n　　')</js>"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.authorname",
      "bookList": "@JSon:$.data.content[*]",
      "bookUrl": "$.id@js:'http://www.ruoxia.com/book/'+result",
      "coverUrl": "$.iconUrlSmall@js:'https://b.heiyanimg.com'+result.split('@')[0]",
      "intro": "$.introduce",
      "kind": "$.sortname",
      "lastChapter": "$.lastchaptername",
      "name": "$.name"
    },
    "ruleToc": {
      "chapterList": ":(?s)(\\d+)\" class=\"(isvip)?[^\"]*name[^>]*>([^<]*)",
      "chapterName": "$2$3",
      "chapterUrl": "https://a.heiyan.com/ajax/chapter/content/$1"
    },
    "searchUrl": "http://search.ruoxia.com/web/search?highlight=false&queryString={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔尚小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.bsxiaoshuo.com",
    "customButton": false,
    "customOrder": 539,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"悬疑\",\"url\":\"/nangui_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"历史\",\"url\":\"/lishi_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/xuanhuan_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/kehuan_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"/wangyou_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"二次\",\"url\":\"/erciyuan_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"/xianyan_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古代\",\"url\":\"/guyan_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"幻想\",\"url\":\"/huanyan_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"/lingyan_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"都市\",\"url\":\"/doushi_{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.29}}]",
    "lastUpdateTime": 1769596905869,
    "loginUrl": "https://www.bsxiaoshuo.com/user/",
    "respondTime": 1334,
    "ruleBookInfo": {
      "author": ".name strong@text",
      "coverUrl": ".pic img@src",
      "intro": ".summary@ownText##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": ".cate@text&&h4 .time@text##\\s.*",
      "lastChapter": "h4 a@text##>>",
      "name": "h2@text",
      "tocUrl": ".index@href",
      "wordCount": ".words@text##字"
    },
    "ruleContent": {
      "content": ".page-content@html"
    },
    "ruleExplore": {
      "author": "a.2@text",
      "bookList": "tbody tr",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##/(\\d+)##https://imgc.bsxiaoshuo.com/$1.jpg",
      "kind": "td.4@text##\\s.*",
      "lastChapter": "a.1@text",
      "name": "a.0@text",
      "wordCount": "td.3@text"
    },
    "ruleSearch": {
      "author": "p.1@textNodes",
      "bookList": "#j li",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": "p.0@text",
      "kind": "s@text",
      "name": "b@text"
    },
    "ruleToc": {
      "chapterList": ".float-list li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "isVip": "##isvip##🔒###",
      "updateTime": "span@text"
    },
    "searchUrl": "/s.php?sid=3&k={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔下文学",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.bequmo.com",
    "customButton": false,
    "customOrder": 540,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1769583783860,
    "respondTime": 4854,
    "ruleBookInfo": {
      "tocUrl": "@js:baseUrl.replace(/binfo/,'b').replace(/(\\d)\\.htm.*/,'$1/')"
    },
    "ruleContent": {
      "content": "id.content@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "tr:has(.odd):lt(6)",
      "bookUrl": "tag.td.0@a@href",
      "coverUrl": "tag.td.0@a@href@js:result.replace(/binfo/,'image').replace(/\\/(\\d+).htm/,'/$1/$1s.jpg')",
      "kind": "tag.td.5@text&&tag.td.3@text@js:result+'字'",
      "lastChapter": "tag.td.1@text",
      "name": "tag.td.0@text"
    },
    "ruleToc": {
      "chapterList": "+@js:\nvar reg=new RegExp(/<dd(.).+?\"(\\d+\\.html)\">(.*?)<\\/a>/g);\nvar list1=[];\nvar list2=[];\nvar tmp,url,name;\nvar i=-1;\nwhile((tmp=reg.exec(result))){\nurl=tmp[2];\nname=tmp[3];\nif(tmp[1].match(/>/)){\ni=i+1;\nlist1.push({name:name,url:url});\n}\nelse\nlist2.push({name:name,url:url});\n\nif(i==1){\ni=-1;\nlist1=list1.concat(list2.reverse());\nlist2=[];\n}\n}\nlist1;",
      "chapterName": "name",
      "chapterUrl": "url"
    },
    "searchUrl": "/cse/search?q={{key}}&submit=搜索",
    "weight": 0
  },
  {
    "bookSourceComment": "24.12.4",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "企鹅阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "https://ubook.reader.qq.com/",
    "customButton": false,
    "customOrder": 541,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\n    \"title\":\"༺ˇ»`ʚ排行榜ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\n    \"title\":\"月票榜\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543063&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"畅销榜\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543064&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"潜力榜\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543065&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"完结榜\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543069&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"新书榜\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543072&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"比心榜\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543074&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"免费爆款\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543077&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"免费完结\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543395&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  {\n    \"title\":\"免费飙升\",\n    \"url\":\"https://commontgw6.reader.qq.com/v7_6_6/listDispatch?action=rank&actionTag=boy&actionId=543085&pagestamp={{page}}&plan=1&signal=nextpage\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":0.25\n    }\n  },\n  \n  \n  \n{\n    \"title\":\"༺ˇ»`ʚ情节主题ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\"title\":\"穿越\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000722,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000722\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"东方玄幻\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000724,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000724\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"重生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000837,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000837\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"现代都市\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000728,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000728\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"修仙\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000817,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000817\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"权谋\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000774,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000774\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异能\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000823,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000823\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异界\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000822,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000822\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"娱乐圈\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000828,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000828\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"逆袭\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000775,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000775\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"修真\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000818,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000818\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"种田\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000838,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000838\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"爱情\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000748,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000748\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏异界\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000827,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000827\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"高武\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000739,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000739\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"魔法\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000772,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000772\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"神话\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000793,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000793\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"养成\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000777,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000777\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"诡秘\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000744,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000744\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科举\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000760,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000760\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"末世\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000773,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000773\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"修罗场\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000727,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000727\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"克苏鲁\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001075,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001075\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"鉴宝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000752,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000752\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"黑科技\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000746,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000746\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"抗战\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001010,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001010\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"LOL\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001069,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001069\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"电竞\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000723,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000723\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"寒门子弟\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001015,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001015\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001070,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001070\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"美食\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000769,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000769\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"朝堂江湖\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001002,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001002\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"萌宠\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000770,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000770\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"巫师流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001027,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001027\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"盛世\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001030,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001030\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"军工\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001011,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001011\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"蒸汽朋克\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001076,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001076\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"塔防\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001072,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001072\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"篮球\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000870,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000870\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"第四天灾\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001083,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001083\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"签到\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000875,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000875\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"荒野求生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001054,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001054\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"高龄\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001044,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001044\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"乡村\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001041,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001041\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"聊天群\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000767,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000767\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"战争\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000830,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000830\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"小兵\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001012,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001012\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"直播\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000834,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000834\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"气运流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001032,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001032\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"硬科幻\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000992,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000992\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"航空\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001220,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001220\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"赛博朋克\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000993,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000993\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"足球\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000871,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000871\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"探险\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000800,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000800\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"民俗\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000990,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000990\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"人间百态\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001046,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001046\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"军旅\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000756,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000756\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠幻想\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001001,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001001\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"DND\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001071,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001071\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"店主\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000989,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000989\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄学\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000819,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000819\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"夺舍\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000984,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000984\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿书\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000985,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000985\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"卡牌\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000757,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000757\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"侠客\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001004,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001004\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科技修真\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001078,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001078\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"机甲\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000742,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000742\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"中年\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001042,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001042\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"丧尸\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001029,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001029\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"山海经\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001040,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001040\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"生存挑战\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000988,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000988\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"考古\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001055,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001055\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"史诗奇幻\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000797,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000797\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宗门\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001003,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001003\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"主神创世\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001050,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001050\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"乱世\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001031,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001031\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"手足情深\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001045,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001045\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奇妙幻想\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000779,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000779\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"扶贫\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001043,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001043\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"传统武侠\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001000,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001000\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"吃鸡\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001073,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001073\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"家庭伦理\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001033,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001033\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"社会悬疑\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001048,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001048\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"短故事\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000905,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000905\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女性题材\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001047,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001047\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n  \n  \n  \n  {\n    \"title\":\"༺ˇ»`ʚ行文流派ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\"title\":\"天才流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000802,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000802\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"系统流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000814,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000814\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"无敌流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000809,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000809\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"经营流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000755,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000755\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"诸天流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000839,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000839\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"升级流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000795,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000795\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"无限流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000812,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000812\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"争霸\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000833,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000833\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"凡人流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000735,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000735\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"洪荒流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000747,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000747\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"进化流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000754,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000754\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"专业文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000999,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000999\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"富民\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001006,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001006\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"时空流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000796,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000796\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"开局流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000759,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000759\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"幕后流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000996,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000996\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"职业文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000835,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000835\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学院流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000821,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000821\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"召唤流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000832,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000832\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"神医\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000824,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000824\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"技术流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000750,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000750\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"随身流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000799,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000799\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"商战\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001085,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001085\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"废柴流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000737,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000737\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"极道流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000749,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000749\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"家族\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001084,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001084\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"开挂\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000758,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000758\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"悬疑流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000820,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000820\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"互联网\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000997,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000997\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"刑侦\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001079,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001079\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"侦探推理\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001080,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001080\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"御兽流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001082,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001082\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"赘婿流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000840,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000840\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"轮回者\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001049,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001049\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"异兽流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000825,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000825\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"骑士流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000780,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000780\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"掌门流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000831,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000831\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学术\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001063,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001063\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"原始流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000829,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000829\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"基建流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001007,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001007\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"抽奖\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001013,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001013\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"祖宗流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001005,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001005\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"氪金\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001014,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001014\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"策略流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000998,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000998\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"儒道流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000790,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000790\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"国术\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000745,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000745\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"管理局\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001008,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001008\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n  \n  \n  {\n    \"title\":\"༺ˇ»`ʚ时空背景ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\"title\":\"架空\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000751,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000751\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"年代文\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000776,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000776\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"明朝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001023,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001023\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"星际\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000816,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000816\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"未来\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000805,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000805\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"贞观\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001021,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001021\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"秦汉三国\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000782,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000782\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"美洲\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001019,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001019\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"秦汉\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001034,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001034\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"两晋隋唐\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000765,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000765\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"宋朝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001022,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001022\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"元宇宙\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001077,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001077\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"清朝\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001036,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001036\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"欧洲\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001018,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001018\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"非洲\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001020,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001020\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"外国历史\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001016,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001016\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"五代十国\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000808,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000808\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"上古先秦\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000792,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000792\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"清史民国\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000784,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000784\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"民间传说\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001017,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001017\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n  \n  \n  \n  {\n    \"title\":\"༺ˇ»`ʚ角色身份ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\"title\":\"至尊流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000863,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000863\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"明星\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000852,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000852\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"君王\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000851,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000851\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"谍战\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001058,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001058\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"太监\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001074,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001074\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女神\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000855,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000855\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"农民\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000842,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000842\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"法师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000844,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000844\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"道门\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001039,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001039\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"谍战特工\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001056,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001056\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玩家\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000858,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000858\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"NPC\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001064,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001064\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学霸\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000873,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000873\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"特种兵\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001061,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001061\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"门阀\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001026,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001026\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"盗贼\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001068,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001068\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"战士\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000877,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000877\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"写手\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000859,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000859\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"御宅族\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000861,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000861\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"和尚\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000879,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000879\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"保安\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000994,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000994\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"杀手\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001059,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001059\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"锦衣卫\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000849,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000849\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"大师兄\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000878,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000878\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"仙君\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000864,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000864\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"神奇生物\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001028,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001028\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"牧师\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001065,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001065\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女尊\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000854,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000854\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"世家\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001025,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001025\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"弓箭手\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001066,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001066\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"保镖\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000995,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000995\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"兵王\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001057,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001057\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n  \n  \n  \n  \n  {\n    \"title\":\"༺ˇ»`ʚ角色性格ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\"title\":\"杀伐果断\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000847,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000847\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"成熟\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000843,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000843\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"思路清奇\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000845,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000845\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"腹黑\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000874,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000874\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"扮猪吃虎\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000719,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000719\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"自律\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000866,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000866\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"思想迪化\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001053,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001053\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"嘴炮\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000867,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000867\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"钢铁直男\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000846,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000846\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n  \n  \n  \n  {\n    \"title\":\"༺ˇ»`ʚ内容风格ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\"title\":\"轻松\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000785,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000785\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"热血\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000788,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000788\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"快节奏\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000762,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000762\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"搞笑\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000740,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000740\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"群像\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000787,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000787\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"正能量\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000862,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000862\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"无金手指\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000810,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000810\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"单女主\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000718,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000718\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"校园\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001035,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001035\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"无CP\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000807,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000807\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"反套路\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000736,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000736\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"红包流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001051,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001051\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"治愈\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000836,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000836\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"扮演流\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9001052,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9001052\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"励志\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000764,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000764\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"青春\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000783,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000783\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"多女主\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000729,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000729\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n  \n  \n  \n  {\n    \"title\":\"༺ˇ»`ʚ衍生同人ɞ´«ˇ༻\",\n    \"url\":\"\",\n    \"style\":{\n      \"layout_flexGrow\":1,\n      \"layout_flexBasisPercent\":1\n    }\n  },\n  {\"title\":\"同人衍生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000781,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000781\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"斗罗\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000732,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000732\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"斗破\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000731,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000731\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"综漫\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000841,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000841\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"红楼\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000726,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000726\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"二次元\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000730,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000730\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"三国\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000791,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000791\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"封神\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000738,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000738\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"水浒\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000987,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000987\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"西游\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000815,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000815\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠衍生\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000811,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000811\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"聊斋\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000986,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000986\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"王者荣耀\",\"url\":\"https://commontgw.reader.qq.com/v7_6_6/book/search?action=tagV2&actionTag=9000804,-1,-1,-1,-1,6&actionId=-1&pagestamp={{page}}&categoryFlag=1&signal=nextpage&searchFrom=9000804\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}\n  ]",
    "lastUpdateTime": 1779592277861,
    "respondTime": 3628,
    "ruleBookInfo": {
      "author": "$.introinfo.book.author",
      "coverUrl": "$.introinfo.book.coverUrl",
      "intro": "&nbsp;\n🕰  更新：{{$.chapinfo.lastChapterUpdateTime##\\s.*}}\n🌟  书架：{{$.introinfo..number##\\n.*}}\n🏷️  标签：{{$.bookTags..tagshortname##\\n##·}}\n📜  简介：\n{{$.introinfo.book.intro}}\n🍚  书评：\n👤：{{$..commentlist..content##\\n##<p>👤：}}##\\[emot.*\\]",
      "kind": "{{$.introinfo..scoretext}}\n{{java.getString('$.introinfo.book.finished')==1?'完结':'连载'}}\n{{$.cate2Info.cate2Name}}\n{{$.cate3Info.cate3Name}}\n{{$.chapinfo.lastChapterUpdateTime##\\s.*}}",
      "lastChapter": "{{$.introinfo.book.lastChapterName##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求含理更谢乐发推票盟补加字].*?[】）\\)]}}•{{$.chapinfo.lastChapterUpdateTime##\\s.*}}\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "name": "$.introinfo.book.title",
      "tocUrl": "https://ubook.reader.qq.com/api/book/chapter-list?bid={{$.introinfo.book.id}}",
      "wordCount": "$.introinfo.book.totalwords"
    },
    "ruleContent": {
      "content": "$.data.content"
    },
    "ruleExplore": {
      "author": "$..author",
      "bookList": "$..bookList[*]",
      "bookUrl": "https://detailadr.reader.qq.com/v7_8_7/nativepage/book/detail?bid={{$..bid}}",
      "coverUrl": "$..bid\n@js:\nvar s = result\nfunction gt(s){\n\tlet a = s.slice(-3)\n\tif(a<10){\n\t\t\tn = s.slice(-1)\n\t\t}\n\telse if(a<100){\n\t\t\tn = s.slice(-2)\n\t\t}\n\telse{\n\t\t\tn = a\n\t\t}\n\treturn n\n}\n\"http://wfqqreader-1252317822.image.myqcloud.com/cover/\"+gt(s)+\"/\"+s+\"/b_\"+s+\".jpg\"",
      "intro": "$..intro",
      "kind": "{{$..catScore}}\n{{java.getString('$.finished')==1?'完结':'连载'}}\n{{$..hotnum}}\n{{$..catel2name}}\n{{$..catel3name}}",
      "lastChapter": "$..lastChapterName##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求含理更谢乐发推票盟补加字].*?[】）\\)]\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "name": "$..title",
      "wordCount": "$..totalWords"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.data.books",
      "bookUrl": "https://detailadr.reader.qq.com/v7_8_7/nativepage/book/detail?bid={{$.id}}",
      "checkKeyWord": "我的模拟长生路",
      "coverUrl": "$.cover",
      "intro": "$.intro",
      "kind": "{{java.getString('$.finished')=='true'?'完结':'连载'}}\n{{$..shortName##小说}}",
      "name": "$.title",
      "wordCount": "$.totalWords"
    },
    "ruleToc": {
      "chapterList": "$.data.chapters",
      "chapterName": "title",
      "chapterUrl": "<js>\nvar bid = baseUrl.match(/\\d+/);\njava.put('bid', bid);\n'https://wxmini.reader.qq.com/api/chapter/content?bid='+bid+'&cid={{$.seq}}'\n</js>",
      "isVip": "{{java.getString('$.free')=='true'?'false':'true'}}",
      "updateTime": "$.publishTime##^##更新时间："
    },
    "searchUrl": "api/search?keywords={{key}}&pageIndex={{page}}&pageSize=20",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "66书吧",
    "bookSourceType": 0,
    "bookSourceUrl": "https://66shuba.com",
    "customButton": false,
    "customOrder": 542,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\n        \"title\": \"男频榜单\",\n        \"url\": \"\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 1\n        }\n    },\n    {\n        \"title\": \"月票榜单\",\n        \"url\": \"{{ho}}/majax/rank/yuepiaolist?gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"畅销榜单\",\n        \"url\": \"{{ho}}/majax/rank/hotsaleslist?gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"阅读榜单\",\n        \"url\": \"{{ho}}/majax/rank/readindexlist?gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"书友榜单\",\n        \"url\": \"{{ho}}/majax/rank/newfanslist?gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"推荐榜单\",\n        \"url\": \"{{ho}}/majax/rank/reclist?gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"更新榜单\",\n        \"url\": \"{{ho}}/majax/rank/updatelist?gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"签约榜单\",\n        \"url\": \"{{ho}}/majax/rank/signlist?gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"新书榜单\",\n        \"url\": \"{{ho}}/majax/rank/newbooklist?gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"新人榜单\",\n        \"url\": \"{{ho}}/majax/rank/newauthorlist?gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    }, {\n        \"title\": \"男频分类\",\n        \"url\": \"\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 1\n        }\n    }, {\n        \"title\": \"东方玄幻\",\n        \"url\": \"{{ho}}/majax/category/list?catId=21&subCatId=8&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"异世大陆\",\n        \"url\": \"{{ho}}/majax/category/list?catId=21&subCatId=73&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"王朝争霸\",\n        \"url\": \"{{ho}}/majax/category/list?catId=21&subCatId=58&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"高武世界\",\n        \"url\": \"{{ho}}/majax/category/list?catId=21&subCatId=78&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    }, {\n        \"title\": \"现代魔法\",\n        \"url\": \"{{ho}}/majax/category/list?catId=1&subCatId=38&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"剑与魔法\",\n        \"url\": \"{{ho}}/majax/category/list?catId=1&subCatId=62&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"史诗奇幻\",\n        \"url\": \"{{ho}}/majax/category/list?catId=1&subCatId=201&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"神秘幻想\",\n        \"url\": \"{{ho}}/majax/category/list?catId=1&subCatId=202&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"历史神话\",\n        \"url\": \"{{ho}}/majax/category/list?catId=1&subCatId=20092&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"另类幻想\",\n        \"url\": \"{{ho}}/majax/category/list?catId=1&subCatId=20093&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    }, {\n        \"title\": \"传统武侠\",\n        \"url\": \"{{ho}}/majax/category/list?catId=2&subCatId=5&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"武侠幻想\",\n        \"url\": \"{{ho}}/majax/category/list?catId=2&subCatId=30&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"国士无双\",\n        \"url\": \"{{ho}}/majax/category/list?catId=2&subCatId=206&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"古武未来\",\n        \"url\": \"{{ho}}/majax/category/list?catId=2&subCatId=20099&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"武侠同人\",\n        \"url\": \"{{ho}}/majax/category/list?catId=2&subCatId=20100&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    }, {\n        \"title\": \"修真文明\",\n        \"url\": \"{{ho}}/majax/category/list?catId=22&subCatId=18&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"幻想修仙\",\n        \"url\": \"{{ho}}/majax/category/list?catId=22&subCatId=44&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"现代修真\",\n        \"url\": \"{{ho}}/majax/category/list?catId=22&subCatId=64&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"神话修真\",\n        \"url\": \"{{ho}}/majax/category/list?catId=22&subCatId=207&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"古典仙侠\",\n        \"url\": \"{{ho}}/majax/category/list?catId=22&subCatId=20101&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    }, {\n        \"title\": \"都市生活\",\n        \"url\": \"{{ho}}/majax/category/list?catId=4&subCatId=12&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"都市异能\",\n        \"url\": \"{{ho}}/majax/category/list?catId=4&subCatId=16&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"异术超能\",\n        \"url\": \"{{ho}}/majax/category/list?catId=4&subCatId=74&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"青春校园\",\n        \"url\": \"{{ho}}/majax/category/list?catId=4&subCatId=130&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"娱乐明星\",\n        \"url\": \"{{ho}}/majax/category/list?catId=4&subCatId=151&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"商战职场\",\n        \"url\": \"{{ho}}/majax/category/list?catId=4&subCatId=153&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n}, {\n        \"title\": \"架空历史\",\n        \"url\": \"{{ho}}/majax/category/list?catId=5&subCatId=22&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"秦汉三国\",\n        \"url\": \"{{ho}}/majax/category/list?catId=5&subCatId=48&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"上古先秦\",\n        \"url\": \"{{ho}}/majax/category/list?catId=5&subCatId=220&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"历史传记\",\n        \"url\": \"{{ho}}/majax/category/list?catId=5&subCatId=32&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"两晋隋唐\",\n        \"url\": \"{{ho}}/majax/category/list?catId=5&subCatId=222&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"五代十国\",\n        \"url\": \"{{ho}}/majax/category/list?catId=5&subCatId=223&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"两宋元明\",\n        \"url\": \"{{ho}}/majax/category/list?catId=5&subCatId=224&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"清史民国\",\n        \"url\": \"{{ho}}/majax/category/list?catId=5&subCatId=225&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"外国历史\",\n        \"url\": \"{{ho}}/majax/category/list?catId=5&subCatId=226&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"民间传说\",\n        \"url\": \"{{ho}}/majax/category/list?catId=5&subCatId=20094&isfinish=1&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    }, {\n        \"title\": \"电子竞技\",\n        \"url\": \"{{ho}}/majax/category/list?catId=7&subCatId=7&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"虚拟网游\",\n        \"url\": \"{{ho}}/majax/category/list?catId=7&subCatId=70&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"游戏异界\",\n        \"url\": \"{{ho}}/majax/category/list?catId=7&subCatId=240&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"游戏系统\",\n        \"url\": \"{{ho}}/majax/category/list?catId=7&subCatId=20102&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"游戏主播\",\n        \"url\": \"{{ho}}/majax/category/list?catId=7&subCatId=20103&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    }, {\n        \"title\": \"诡秘悬疑\",\n        \"url\": \"{{ho}}/majax/category/list?catId=10&subCatId=26&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"奇妙世界\",\n        \"url\": \"{{ho}}/majax/category/list?catId=10&subCatId=35&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"侦探推理\",\n        \"url\": \"{{ho}}/majax/category/list?catId=10&subCatId=57&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"探险求生\",\n        \"url\": \"{{ho}}/majax/category/list?catId=10&subCatId=260&gender=male&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    }, {\n        \"title\": \"女频榜单\",\n        \"url\": \"\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 1\n        }\n    },\n    {\n        \"title\": \"月票榜单\",\n        \"url\": \"{{ho}}/majax/rank/yuepiaolist?gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"畅销榜单\",\n        \"url\": \"{{ho}}/majax/rank/hotsaleslist?gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },{\n        \"title\": \"阅读榜单\",\n        \"url\": \"{{ho}}/majax/rank/readindexlist?gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"书友榜单\",\n        \"url\": \"{{ho}}/majax/rank/newfanslist?gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"推荐榜单\",\n        \"url\": \"{{ho}}/majax/rank/reclist?gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"更新榜单\",\n        \"url\": \"{{ho}}/majax/rank/updatelist?gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"签约榜单\",\n        \"url\": \"{{ho}}/majax/rank/signlist?gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"新书榜单\",\n        \"url\": \"{{ho}}/majax/rank/newbooklist?gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"新人榜单\",\n        \"url\": \"{{ho}}/majax/rank/newauthorlist?gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"女频分类\",\n        \"url\": \"\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 1\n        }\n    },\n    {\n        \"title\": \"古代情缘\",\n        \"url\": \"{{ho}}/majax/category/list?catId=80&subCatId=801&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"宫闱宅斗\",\n        \"url\": \"{{ho}}/majax/category/list?catId=80&subCatId=802&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"经商种田\",\n        \"url\": \"{{ho}}/majax/category/list?catId=80&subCatId=803&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"古典架空\",\n        \"url\": \"{{ho}}/majax/category/list?catId=80&subCatId=804&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"女尊王朝\",\n        \"url\": \"{{ho}}/majax/category/list?catId=80&subCatId=805&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"穿越奇情\",\n        \"url\": \"{{ho}}/majax/category/list?catId=80&subCatId=806&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"西方时空\",\n        \"url\": \"{{ho}}/majax/category/list?catId=80&subCatId=30094&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"清穿民国\",\n        \"url\": \"{{ho}}/majax/category/list?catId=80&subCatId=30095&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"上古莽荒\",\n        \"url\": \"{{ho}}/majax/category/list?catId=80&subCatId=30096&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"热血江湖\",\n        \"url\": \"{{ho}}/majax/category/list?catId=80&subCatId=30097&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"武侠情缘\",\n        \"url\": \"{{ho}}/majax/category/list?catId=81&subCatId=810&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"古典仙侠\",\n        \"url\": \"{{ho}}/majax/category/list?catId=81&subCatId=811&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"现代修真\",\n        \"url\": \"{{ho}}/majax/category/list?catId=81&subCatId=812&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"远古洪荒\",\n        \"url\": \"{{ho}}/majax/category/list?catId=81&subCatId=813&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"仙侣奇缘\",\n        \"url\": \"{{ho}}/majax/category/list?catId=81&subCatId=30093&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"商战职场\",\n        \"url\": \"{{ho}}/majax/category/list?catId=82&subCatId=821&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },{\n        \"title\": \"豪门世家\",\n        \"url\": \"{{ho}}/majax/category/list?catId=82&subCatId=822&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"都市生活\",\n        \"url\": \"{{ho}}/majax/category/list?catId=82&subCatId=823&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"婚恋情缘\",\n        \"url\": \"{{ho}}/majax/category/list?catId=82&subCatId=824&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"娱乐明星\",\n        \"url\": \"{{ho}}/majax/category/list?catId=82&subCatId=825&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"极道江湖\",\n        \"url\": \"{{ho}}/majax/category/list?catId=82&subCatId=828&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"民国情缘\",\n        \"url\": \"{{ho}}/majax/category/list?catId=82&subCatId=829&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"异国情缘\",\n        \"url\": \"{{ho}}/majax/category/list?catId=82&subCatId=30098&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"青春校园\",\n        \"url\": \"{{ho}}/majax/category/list?catId=83&subCatId=831&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"青春疼痛\",\n        \"url\": \"{{ho}}/majax/category/list?catId=83&subCatId=832&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"叛逆成长\",\n        \"url\": \"{{ho}}/majax/category/list?catId=83&subCatId=833&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"青春纯爱\",\n        \"url\": \"{{ho}}/majax/category/list?catId=83&subCatId=834&gender=female&pageNum={{page}}&_csrfToken={{generateCsrfToken()}}\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    }\n]",
    "jsLib": "const ho = 'https://m.qidian.com'\n\n\nfunction generateCsrfToken() {\n let jsmy = String(this.cookie.getCookie(ho).match(/_csrfToken=([^;]*)/)?.[1] || '');\nreturn jsmy;\n}\n\nfunction qdtoken() {\nlet qdtoken = String(this.cookie.getCookie(ho));\nreturn qdtoken;\n}",
    "lastUpdateTime": 1781542619565,
    "loginUi": "[\n{\n        \"name\": \"登陆书源\",\n        \"type\": \"button\",\n        \"action\": \"login()\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.4\n        }\n    },{\n        name: \" 修复问题 \",\n        type: \"button\",\n        action: \"xflogin()\",\n    \t\t style: {\n    \t\t \tlayout_flexGrow: 1,\n    \t\t \tlayout_flexBasisPercent: 0.45\n    \t\t \t}\n    }\n\n]",
    "loginUrl": "function login() {\n     java.startBrowserAwait(\"https://66shuba.com/login\", '66书吧');\n}\n\nfunction xflogin() {\njava.startBrowserAwait(ho, '起点');\n}\n\nfunction dp() {\n\tlet dpkg = String(source.getVariable())\n\tif (dpkg == '0') {\n\t\tsource.setVariable('1');\n\t\tjava.longToast(\"\\n\\n段评已开启\");\n\t\t} else {\n\t\t\tsource.setVariable('0');\n\t\tjava.longToast(\"\\n\\n段评已关闭\");\n\t\t\t}\n\t}",
    "respondTime": 9454,
    "ruleBookInfo": {
      "author": "class.detail__header@class.detail__header-detail__author-link@ownText",
      "coverUrl": "https://bookcover.yuewen.com/qdbimg/349573/{{baseUrl.match(/(\\d+)/)[1]}}",
      "intro": "&lrm;&lrm;\n🧾 总字数：{{@@class.novelbook__honorinfo@class.item.1@text##总字数}}\n🧣书友：{{@@class.novelbook__honorinfo@class.item.2@text##书友}}\n\n📆 {{@@class.detail__header@class.detail__header-detail__line@ownText}} | {{@@class.detail__header@class.detail__header-detail__time@ownText}}\n🎈最新章节：{{@@class.detail__chapters-latest@tag.a@text##最新章节}}\n&lrm;\n&lrm;\n🏷 简介：{{@@@css:p.detail__summary__content@text}}",
      "kind": "id.monthTicket@text&&id.recTicket@text##张",
      "lastChapter": "class.detail__chapters-latest@tag.a@text##最新章节",
      "name": "class.detail__header@tag.h2@ownText",
      "wordCount": ".count@em.0@text##$##字"
    },
    "ruleContent": {
      "content": "<js>\ntry {\n    var parsedResult = JSON.parse(java.hexDecodeToString(result));\n    var cid = parsedResult.id;\n    var bookId = parsedResult.bookId;\n    var isVip = parsedResult.v;\n    java.log(isVip)\n    var url;\n    if (!isVip) {\n        url = `https://66shuba.com/api/novel/chapter/${bookId}/${cid}`;\n    } else {\n        url = `https://66shuba.com/api/novel/vip-chapter/${bookId}/${cid}`;\n    }\n   java.log(url)\n    var data = java.ajax(url);\n    \n    if (!data) {\n        java.log('AJAX请求失败');\n    }\n\n    try {\n       \n        var response = JSON.parse(data);\n\n        content = response.data?.content || response.message\n    } catch (e) {\n        java.log('解析响应JSON失败: ' + e);\n    }\n} catch (e) {\n    java.log('解析初始JSON失败: ' + e);\n}\n</js>",
      "imageStyle": "full"
    },
    "ruleExplore": {
      "author": "$.bAuth||Author",
      "bookList": "$.data.records||$.data.list||$.Data.ServerCase.BookInfo[*]",
      "bookUrl": "{{ho}}/book/{{$.bid||$.BookId}}/",
      "coverUrl": "https://bookcover.yuewen.com/qdbimg/349573/{{$.bid||$.BookId}}/600",
      "intro": "$.desc||$.timeStr##(.*前)##$1更新\n@js:\nlet jj = result;\nif (jj ==\"\" || jj == \"\\[\\]\"){\nlet sjsj = java.getString(\"$.BookStatus\");\nlet sj = java.timeFormat(java.getString(\"$.AddShelfTime\"));\nlet zx = java.getString(\"$.LastVipUpdateChapterName\");\nlet sm = `书籍状态:${sjsj} 最新章节:${zx} 加入书架时间:${sj}`;\nsm\n} else {\n    jj\n};",
      "kind": "$.cat&&$.subCat&&$.state&&$.SubCategoryName",
      "lastChapter": "$.lastVUCname",
      "name": "$.bName||BookName",
      "wordCount": "$.cnt"
    },
    "ruleSearch": {
      "author": "@css:p[class^=_searchBookAuthor]@text",
      "bookList": "@css:div.y-list__content>div.y-list__item",
      "bookUrl": "##href=\"//m.qidian.com/chapter/(\\d+)/0/\"##{{ho}}/book/$1/###",
      "coverUrl": "##href=\"//m.qidian.com/chapter/(\\d+)/0/\"##https://bookcover.yuewen.com/qdbimg/349573/$1/180###",
      "intro": "@css:p[class^=_searchBookDesc]@text",
      "kind": "tag.div[-1]@tag.p@textNodes",
      "name": "tag.h2@text"
    },
    "ruleToc": {
      "chapterList": "<js>\nvar bookId = baseUrl.match(/(\\d+)/)[1]\nresult = java.ajax(\"https://wxapp.qidian.com/api/book/categoryV2?bookId=\" + bookId + \"&_csrfToken=\")\nvar charts = [];\nJSON.parse(result).data.vs.map(i => {\n    i.cs.map(o => {\n        var chart = {\n            \"id\": o.id,\n            \"title\": o.cN,\n            \"v\": o.sS == 0,\n            \"t\": o.uT + \"  \" + o.cnt + \"字\"\n        }\n        var content_url = {\n            bookId: bookId,\n            id: o.id,\n            v: o.sS == 0\n        }\n        content_url = java.base64Encode(JSON.stringify(content_url));\n        chart.url = `data:;base64,${content_url},{\"type\":\"qtqd\"}`;\n        charts.push(chart);\n    })\n})\ncharts;\n</js>",
      "chapterName": "title",
      "chapterUrl": "url",
      "isVip": "v",
      "updateTime": "t"
    },
    "searchUrl": "{{ho}}/soushu/{{key}}.html?pageNum={{page}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "QQ阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "https://bookshelf.html5.qq.com",
    "customButton": false,
    "customOrder": 543,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"　　　　　　 男频分类 　　　　　　\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"　　　　　　 都市 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"都市生活\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=都市生活\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异术超能\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=异术超能\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"娱乐明星\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=娱乐明星\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"商战职场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=商战职场\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春校园\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=青春校园\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 玄幻 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"异世大陆\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=异世大陆\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"东方玄幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=东方玄幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"高武世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=高武世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"王朝争霸\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=王朝争霸\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 仙侠 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"幻想修仙\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=幻想修仙\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神话修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=神话修真\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典仙侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=古典仙侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"修真文明\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=修真文明\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=现代修真\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 奇幻 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"史诗奇幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=史诗奇幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"另类幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=另类幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"剑与魔法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=剑与魔法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代魔法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=现代魔法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史神话\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=历史神话\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 历史 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"架空历史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=架空历史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"秦汉三国\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=秦汉三国\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"两宋元明\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=两宋元明\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"两晋隋唐\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=两晋隋唐\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史传记\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=历史传记\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"上古先秦\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=上古先秦\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"清史民国\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=清史民国\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"外国历史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=外国历史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 军事 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"抗战烽火\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=抗战烽火\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战争幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=战争幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"谍战特工\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=谍战特工\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军旅生涯\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=军旅生涯\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事战争\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=军事战争\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 科幻空间 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"末世危机\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=末世危机\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时空穿梭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=时空穿梭\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"进化变异\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=进化变异\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"未来世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=未来世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"星际文明\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=星际文明\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"超级科技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=超级科技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武机甲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=古武机甲\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 悬疑侦探 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1508&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"　　　　　　 游戏竞技 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"虚拟网游\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=虚拟网游\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏异界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=游戏异界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电子竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=电子竞技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏系统\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=游戏系统\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏主播\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=游戏主播\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 武侠 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"传统武侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=传统武侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=武侠幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠同人\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=武侠同人\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武未来\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=古武未来\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国术无双\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=国术无双\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 体育 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"篮球运动\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=篮球运动\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"足球运动\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=足球运动\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"体育赛事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=体育赛事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 轻小说 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"衍生同人\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=衍生同人\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"原生幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=原生幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"搞笑吐槽\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=搞笑吐槽\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 短篇 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"短篇小说\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=短篇小说\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生活随笔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=生活随笔\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"影视剧本\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=影视剧本\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"诗歌散文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=诗歌散文\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人物传记\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=人物传记\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"美文游记\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=美文游记\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"评论文集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=评论文集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 现实 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"现实百态\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=现实百态\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"爱情婚姻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=爱情婚姻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"成功励志\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=成功励志\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"社会乡土\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=社会乡土\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=青春文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文学艺术\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=文学艺术\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 女频分类 　　　　　　\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"　　　　　　 现代言情 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"婚恋情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=婚恋情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"豪门世家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=豪门世家\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市生活\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=都市生活\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"娱乐明星\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=娱乐明星\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市异能\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=都市异能\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"商战职场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=商战职场\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"民国情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=民国情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"官场沉浮\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=官场沉浮\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 古代言情 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"古典架空\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=古典架空\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"穿越奇情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=穿越奇情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古代情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=古代情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宫闱宅斗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=宫闱宅斗\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经商种田\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=经商种田\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女尊王朝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=女尊王朝\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"热血江湖\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=热血江湖\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"上古蛮荒\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=上古蛮荒\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 悬疑侦探 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"推理侦探\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=推理侦探\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"悬疑探险\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=悬疑探险\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神秘文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=神秘文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"恐怖惊悚\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=恐怖惊悚\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"幽冥情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=幽冥情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 仙侠奇缘 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"古典仙侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=古典仙侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"仙侣奇缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=仙侣奇缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=武侠情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=现代修真\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"远古洪荒\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=远古洪荒\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 玄幻言情 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"东方玄幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=东方玄幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异世大陆\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=异世大陆\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"魔法幻情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=魔法幻情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异能超术\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=异能超术\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异族恋情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=异族恋情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"西方奇幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=西方奇幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"远古神话\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=远古神话\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 浪漫青春 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"青春校园\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=青春校园\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春纯爱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=青春纯爱\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春疼痛\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=青春疼痛\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"叛逆成长\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=叛逆成长\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 科幻空间 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"时空穿梭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=时空穿梭\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"末世危机\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=末世危机\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"未来世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=未来世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"星际恋歌\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=星际恋歌\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"超级科技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=超级科技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"进化变异\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=进化变异\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武机甲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=古武机甲\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 游戏竞技 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"网游情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=网游情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电子竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=电子竞技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏异界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=游戏异界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"体育竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=体育竞技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 纯爱 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"婚恋情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=婚恋情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时空穿梭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=时空穿梭\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"穿越奇情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=穿越奇情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典架空\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=古典架空\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古代情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=古代情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市生活\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=都市生活\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 出版文学 　　　　　　\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"　　　　　　 小说 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"社会\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=社会\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"情感\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=情感\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"侦探/悬疑/推理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=侦探/悬疑/推理\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"作品集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=作品集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=历史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=科幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=武侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"世界名著\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=世界名著\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 励志 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"成功/激励\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=成功/激励\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心灵与修养\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=心灵与修养\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青少年励志\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=青少年励志\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人际交往\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=人际交往\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人生哲学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=人生哲学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"口才/演讲/辩论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=口才/演讲/辩论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人在职场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=人在职场\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女性励志\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=女性励志\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 心理 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"心理百科\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=心理百科\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心理学经典著作\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=心理学经典著作\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心理学入门\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=心理学入门\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"应用心理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=应用心理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人格心理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=人格心理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心灵疗愈\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=心灵疗愈\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心理学理论与研究\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=心理学理论与研究\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"社会心理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=社会心理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 军事 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"武器装备\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=武器装备\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=军事理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"世界军事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=世界军事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=军事文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=军事史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经典军事著作\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=经典军事著作\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战略战术战役\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=战略战术战役\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国军事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=中国军事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 政治 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"政治理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=政治理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"党政读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=党政读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国政治\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=中国政治\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"世界政治\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=世界政治\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"法律普及读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=法律普及读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"政治热点\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=政治热点\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"公共管理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=公共管理\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"法律法规\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=法律法规\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 文学 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"中国现当代随笔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=中国现当代随笔\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=文集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国现当代诗歌\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=中国现当代诗歌\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"纪实文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=纪实文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文学评论与鉴赏\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=文学评论与鉴赏\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"名家作品\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=名家作品\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国古诗词\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=中国古诗词\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文学理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=文学理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 文化 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=中国文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文化史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文化史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"地域文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=地域文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"民族文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=民族文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"艺术理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=艺术理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国学普及读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=国学普及读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文化理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文化理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 历史 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"历史普及读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=历史普及读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=中国史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"世界史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=世界史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"地方史志\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=地方史志\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史随笔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=历史随笔\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文物考古\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=文物考古\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"史料典籍\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=史料典籍\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"史学理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=史学理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 社科 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"教育\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=教育\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"语言文字\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=语言文字\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"社会科学总论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=社会科学总论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"社会学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=社会学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经典名家作品集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=经典名家作品集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人类学/人口学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=人类学/人口学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"新闻传播出版\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=新闻传播出版\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"民族学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=民族学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 养生 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"健康百科\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=健康百科\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"饮食健康\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=饮食健康\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"常见病预防和治疗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=常见病预防和治疗\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"药膳食疗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=药膳食疗\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中医养生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=中医养生\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女性/儿童\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=女性/儿童\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心理健康\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=心理健康\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中老年养生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=中老年养生\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 投资 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"理财技巧\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=理财技巧\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女性理财\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=女性理财\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"证券/股票\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=证券/股票\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"投资指南\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=投资指南\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"外汇\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=外汇\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 经济 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"经济通俗读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=经济通俗读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经济学理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=经济学理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"各部门经济\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=各部门经济\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国经济\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=中国经济\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国际经济\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=国际经济\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经济史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=经济史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经济法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=经济法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"财政税收\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=财政税收\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 亲子 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"家教方法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=家教方法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"育儿/亲子\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=育儿/亲子\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"孕产知识\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=孕产知识\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"素质教育\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=素质教育\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"母婴喂养/护理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=母婴喂养/护理\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"胎教/早教\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=胎教/早教\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家教理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=家教理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"养育女孩\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=养育女孩\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 管理 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"一般管理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=一般管理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"市场/营销\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=市场/营销\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"企业与企业家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=企业与企业家\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"金融/投资\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=金融/投资\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电子商务\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=电子商务\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"会计/财务\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=会计/财务\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"商业史传\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=商业史传\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战略管理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=战略管理\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 两性 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1696&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"恋爱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1696&start={{page}}&count=20&sub=恋爱\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"婚姻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1696&start={{page}}&count=20&sub=婚姻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"婚恋综合\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1696&start={{page}}&count=20&sub=婚恋综合\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"性知识\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1696&start={{page}}&count=20&sub=性知识\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 哲学 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"中国哲学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=中国哲学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"哲学知识读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=哲学知识读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"西方哲学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=西方哲学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"哲学经典著作\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=哲学经典著作\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"东方哲学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=东方哲学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"伦理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=伦理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"哲学理论与流派\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=哲学理论与流派\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"马克思哲学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=马克思哲学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 宗教 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"佛教\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=佛教\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宗教普及读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=宗教普及读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"道教\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=道教\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宗教理论与概况\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=宗教理论与概况\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"伊斯兰教\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=伊斯兰教\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宗教经典著作\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=宗教经典著作\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 传记 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"人物合集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=人物合集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史人物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=历史人物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"财经人物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=财经人物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"政治人物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=政治人物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文学家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=文学家\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历代帝王\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=历代帝王\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=其他\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科学家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=科学家\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 科普 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"百科知识\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=百科知识\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科学世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=科学世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人类故事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=人类故事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宇宙知识\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=宇宙知识\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生物世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=生物世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生态环境\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=生态环境\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神秘现象\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=神秘现象\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"数理化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=数理化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 自然 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"总论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=总论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"地球科学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=地球科学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"天文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=天文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科技史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=科技史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生物科学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=生物科学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"化学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=化学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"物理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=物理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 美食 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"家常菜谱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=家常菜谱\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"药膳食疗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=药膳食疗\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"地方美食\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=地方美食\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"茶酒饮料\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=茶酒饮料\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"烹饪理论/手册\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=烹饪理论/手册\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"饮食文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=饮食文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"西餐料理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=西餐料理\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 休闲 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"幽默笑话\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=幽默笑话\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"旅游随笔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=旅游随笔\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宠物杂事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=宠物杂事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=游戏\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家庭园艺\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=家庭园艺\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"户外探险\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=户外探险\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国内自助旅游指南\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=国内自助旅游指南\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"车载户外\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=车载户外\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 艺术 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=中国文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文化史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文化史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"地域文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=地域文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"民族文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=民族文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"艺术理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=艺术理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国学普及读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=国学普及读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文化理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文化理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 时尚 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"护肤/美容整形\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=护肤/美容整形\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家事窍门\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=家事窍门\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时尚\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=时尚\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家装方法指导\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=家装方法指导\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"瘦身美体\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=瘦身美体\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"服饰搭配/配饰\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=服饰搭配/配饰\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家装策略秘籍\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=家装策略秘籍\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"彩妆/美发/美甲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=彩妆/美发/美甲\",\"style\":{\"layout_flexGrow\":1}}]",
    "header": "{\n\t\"user-agent\":\"Mozilla/5.0 (Linux; Android 10; MI 8 Build/QKQ1.190828.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.101 Mobile Safari/537.36\",\n\t\"Referer\":\"https://bookshelf.html5.qq.com/qbread\"\n\t}",
    "lastUpdateTime": 1784202247665,
    "respondTime": 4388,
    "ruleBookInfo": {
      "author": "$.author",
      "init": "$.data.bookInfo",
      "intro": "<p>{{(t=String(java.getString('$.tag'))).length?'🏷️ '+t.replace(/\\|/g,', '):''}}</p>{{'\\n&lrm;'}}\n<p>{{$.summary}}</p>",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{java.put('time',String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,''))}}",
      "lastChapter": "{{$.lastSerialname}} • {{java.get('time')}}",
      "name": "$.resourceName",
      "tocUrl": "https://bookshelf.html5.qq.com/qbread/api/book/all-chapter?bookId={{$.resourceID}}",
      "wordCount": "$.contentsize"
    },
    "ruleContent": {
      "content": "<p>{{$.data.Content[0].Content}}</p>"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.rows[*]",
      "bookUrl": "https://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{$.resourceID}}",
      "coverUrl": "$.picurl",
      "intro": "$.summary",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,'')}}",
      "lastChapter": "$.lastSerialname",
      "name": "$.resourceName##（.*",
      "wordCount": "$.contentsize"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.booklist[*]",
      "bookUrl": "$.bid\n<js>1100000000+parseInt(result)</js>\nhttps://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{result}}",
      "checkKeyWord": "深空彼岸",
      "coverUrl": "$.bid\n@js:\nvar s = result\nfunction gt(s){\n\tlet a = s.slice(-3)\n\tif(a<10){\n\t\t\tn = s.slice(-1)\n\t\t}\n\telse if(a<100){\n\t\t\tn = s.slice(-2)\n\t\t}\n\telse{\n\t\t\tn = a\n\t\t}\n\treturn n\n}\n\"http://wfqqreader-1252317822.image.myqcloud.com/cover/\"+gt(s)+\"/\"+s+\"/b_\"+s+\".jpg\"",
      "intro": "$.intro",
      "kind": "{{$.categoryInfoV4\n##\\d.*?\\:(.*?)\\:.*?(,|$)##$1$2}}\n{{$.updateInfo##已更新至.*##连载中}}\n##小说,",
      "lastChapter": "$.updateInfo##已更新至##第",
      "name": "$.title",
      "wordCount": "$.totalWords"
    },
    "ruleToc": {
      "chapterList": "$.rows",
      "chapterName": "$.serialName",
      "chapterUrl": "https://novel.html5.qq.com/be-api/content/ads-read,{\n\t\"method\": \"POST\",\n\t\"body\": {\n\t\t\"Scene\": \"chapter\",\n\t\t\"ContentAnchorBatch\": [{\n\t\t\t\t\"BookID\": \"{{baseUrl.match(/bookId=(\\d+)/)[1]}}\",\n\t\t\t\t\"ChapterSeqNo\": [{{$.serialID}}]\n\t\t\t}]\n\t},\n\t\"headers\": {\n\t\t\"Q-GUID\": \"4aa27c7cf2d9aca3359656ea186488cb\"\n\t}\n}",
      "isPay": "$.isFree",
      "isVip": "//删掉这行字，vip章节会显示🔓\n$.isFree"
    },
    "searchUrl": "https://newopensearch.reader.qq.com/wechat?keyword={{key}}&start={{page-1}}&end=19",
    "weight": 0
  },
  {
    "bookSourceComment": "by猿神启动 51207",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "美艺言情",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.meiyeewk.com",
    "bookUrlPattern": "http://m\\.meiyee\\.cc/book\\d+/\\d+/",
    "customButton": false,
    "customOrder": 544,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"最新更新\",\"url\":\"/list/\"},{\"title\":\"编辑推荐\",\"url\":\"/good/\"}]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 13; SM-G9980) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1787419474241,
    "respondTime": 4125,
    "ruleBookInfo": {
      "author": "div.block_txt2 p a@text",
      "coverUrl": "div.block_img2 img@src",
      "intro": "div.intro_info@text",
      "name": "div.block_txt2 h2@text"
    },
    "ruleContent": {
      "content": "div#nr1@html",
      "nextContentUrl": "a#pt_next@href",
      "replaceRegex": "##[\\s\\S]*?第\\d+章[\\s\\S]*?\\(第\\d+/\\d+页\\)|本章未完.*?|请点击下一页继续阅读"
    },
    "ruleExplore": {
      "author": "a:eq(1)@text",
      "bookList": "li.iname",
      "bookUrl": "a:eq(0)@href",
      "name": "a:eq(0)@text"
    },
    "ruleSearch": {
      "author": "a:eq(1)@text",
      "bookList": "li.iname",
      "bookUrl": "a:eq(0)@href",
      "name": "a:eq(0)@text"
    },
    "ruleToc": {
      "chapterList": "ul.chapter li a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/search.php,{\"method\": \"POST\",\"body\": \"show=title,author&keyboard={{key}}\"}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "多看阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.duokan.com",
    "customButton": false,
    "customOrder": 545,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\"cookie\":\"device_id=D900MIVU7AH2SDF9;platform=wap;user_preference=%7B%7D;Hm_lvt_1c932f22da573f2870e8ab565f4ff9cb=1616847894;build=999000000;Hm_lpvt_1c932f22da573f2870e8ab565f4ff9cb=1616849443;app_id=duokan_h5;channel=Y0X66A;user_type=3\"}",
    "lastUpdateTime": 1785754373408,
    "loginUrl": "https://account.xiaomi.com/fe/service/login/password?display=mobile&sid=reader&qs",
    "respondTime": 961,
    "ruleBookInfo": {
      "kind": "$.item.tags[*]&&$.rights",
      "lastChapter": "$.item.latest",
      "tocUrl": "$.item.fiction_id@js:\"https://www.duokan.com/store/v0/fiction/detail/\"+result+\"?chapter_id=0&_t=&_c=\"",
      "wordCount": "$.item.word_count"
    },
    "ruleContent": {
      "content": "$.url@js:\nlet content=\"\"\nif(result){\nlet b64 = java.ajax(result)\nlet str=java.base64Decode(b64.match(/'(.+?)'/)[1])\nlet list=JSON.parse(str).p\nfor (i =0;i<list.length;i++){\ncontent+= list[i]+\"\\n\"\n}\n}else{\ncontent+=\"购买后继续阅读本章内容\"\n}\ncontent"
    },
    "ruleExplore": {
      "author": "$.authors",
      "bookList": "$.items[*]",
      "bookUrl": "$.fiction_id@js:\"https://www.duokan.com/hs/v0/android/fiction/book/\"+result",
      "coverUrl": "$.cover",
      "intro": "$.summary",
      "kind": "$.new_tags&&$.rights",
      "name": "$.title"
    },
    "ruleSearch": {
      "author": "$.role[0][1]",
      "bookList": "$.items[*]",
      "bookUrl": "$.source_id@js:\"https://www.duokan.com/hs/v0/android/fiction/book/\"+result",
      "coverUrl": "$.cover",
      "intro": "$.intro",
      "name": "$.title"
    },
    "ruleToc": {
      "chapterList": "$.item.toc[*]",
      "chapterName": "$.title",
      "chapterUrl": "$.seq_id@js:\n\"https://www.duokan.com/drm/v0/fiction/link?chapter_id=\"+result+\"&format=jsonp&withid=1&fiction_id=\"+baseUrl.match(/detail\\/(\\d+)/)[1]+\"&_t=&_c=\"",
      "isVip": "$.free@js:result?false:true"
    },
    "searchUrl": "store/v0/lib/query/onebox?start=0&count=10&s={{key}}&source=2%2C5%2C6%2C7&_t=1616840245&_c=3963",
    "variableComment": "✱✱输入数字 变更发现列表：\n1  男榜+女榜  (默认列表)\n2  女榜+男榜\n3  仅男榜\n4  仅女榜\n5  旧的发现列表x\n✱✱若发现列表没变更，长按列表顶栏，弹出菜单选“刷新”，收起列表再摊开。",
    "weight": -3
  },
  {
    "bookSourceComment": "//2024.12.13 ◎夜泽川◎",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "爱巴士",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.ibus233.com/",
    "customButton": false,
    "customOrder": 546,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js: var result = [];\njava.toast(\"🔥动态获取发现中……\");\nvar push=(title,url,size)=>result.push({\n  \t\"title\": title,\n  \t\"url\": url,\n  \t\"style\": {\n   \"layout_flexGrow\": 1,\n   \"layout_flexBasisPercent\": size\n   }\n });\nvar tag = java.ajax(\"https://www.ibus233.com/category\");\nif (tag) {\na=org.jsoup.Jsoup.parse(tag).select(\".list a\");\npush(\"分类\",null,1)\n    for(i in a){\n        title=a[i].text()\n        url=a[i].attr(\"href\")\n        size=0.4\n        title=String(title).replace(/\\s/,\"\");\n  url=String(url).replace(/^/,\"https:\").replace(/$/i,\"_{{page}}\");\n        push(title,url,size)\n    };\n      } else { \n      java.toast(\"🚫发现获取失败……\");\n}\nJSON.stringify(result);",
    "lastUpdateTime": 1785673761741,
    "respondTime": 13808,
    "ruleBookInfo": {
      "author": ".auth@text",
      "intro": ".intro p@text",
      "kind": ".tags a@text",
      "name": "h1@text",
      "tocUrl": "a[href~=catalog]@href"
    },
    "ruleContent": {
      "content": ".article@html||.nochapter@html",
      "replaceRegex": "##\\n.*华丽的分割线[\\s\\S]*"
    },
    "ruleExplore": {
      "author": "h2@text##.*by",
      "bookList": ".g-list@li",
      "bookUrl": "a.0@href##^##https:",
      "kind": ".tags span@text",
      "name": "h2@text##by.*"
    },
    "ruleSearch": {
      "author": "$.auth",
      "bookList": "$.data.list",
      "bookUrl": "https://www.ibus233.com/novel/{{$._id}}",
      "kind": "$.tags",
      "name": "$.name"
    },
    "ruleToc": {
      "chapterList": ".list a",
      "chapterName": "text",
      "chapterUrl": "href##^##https:",
      "nextTocUrl": ".section-list@a@href##^##https:"
    },
    "searchUrl": "<js>\nsckey = org.jsoup.Jsoup.parse(java.ajax(source.key + \"search\")).select(\".page-search\").attr(\"data-id\");\njava.log(sckey);\nbody = {\n  \"body\": `name=${key}&tags=&type=3&tt=&page_index=${page}&app=2&searchkey=${sckey}`,\n  \"headers\":{\"Referer\":source.key},\n  \"method\": \"POST\"\n}\nresult = source.key + \"api/search/list\" + \",\" + JSON.stringify(body);\nresult;\n</js>",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "创世中文网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://chuangshi.qq.com/",
    "customButton": false,
    "customOrder": 547,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "                    🍀全部🎀分类🍀                    \n玄幻::https://chuangshi.qq.com/tab/20001\n武侠::https://chuangshi.qq.com/tab/20010\n历史::https://chuangshi.qq.com/tab/20028\n游戏::https://chuangshi.qq.com/tab/20050\n科幻::https://chuangshi.qq.com/tab/20042\n轻小说::https://chuangshi.qq.com/tab/20059",
    "lastUpdateTime": 1751415330790,
    "respondTime": 5673,
    "ruleBookInfo": {
      "coverUrl": ".book-cover@tag.img@src",
      "kind": ".book-info__categories@tag.a@text",
      "lastChapter": ".catalogue-list__title.0@text",
      "tocUrl": "@js:\nvar id = baseUrl.match(/(\\d+)/);\n\"https://chuangshi.qq.com/chapter/\" + id[1]",
      "wordCount": ".book-info__categories@tag.span@text"
    },
    "ruleContent": {
      "content": "id.article@tag.p@html",
      "nextContentUrl": "text.下一页@href||text.下一章@href"
    },
    "ruleExplore": {
      "author": ".author@text",
      "bookList": ".book-li",
      "bookUrl": ".book-simple@tag.a.0@href",
      "intro": ".book-intro@text",
      "kind": ".rect!2@text",
      "name": ".book-title@text",
      "wordCount": ".rect.2@text"
    },
    "ruleSearch": {
      "author": ".book-survey@.author@text",
      "bookList": ".book-box@tag.li",
      "bookUrl": ".book-simple@tag.a.0@href",
      "intro": ".book-intro@text",
      "name": ".book-title@text##"
    },
    "ruleToc": {
      "chapterList": ".catalog-body@class.book-dir.1@tag.li!-1",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://chuangshi.qq.com/search/{{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "聚合书库（+++）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://book4.cc",
    "bookUrlPattern": "https?://book4.cc/AU文学/.{1,3}/\\d+/",
    "customButton": false,
    "customOrder": 549,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvar sort = [],\n    header = eval(getHeaders(source)),\n    src = java.connect(\n    \tbaseUrl, header).body(),\n    b = src.match(/(html_b|dstr)=\"(.*?)\"/);\nif (b) src = dec(b);\nvar doc = org.jsoup.Jsoup.parse(src),\n    a = doc.select(\"ul.nav.nav-pills li a\");\nfor (let i = 1; i < a.size(); i++) {\n    let fl = ({\n        \"title\": a[i].text(),\n        \"url\": `${a[i].attr(\"href\")}<,{{page}}>`,\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexShrink\": 1,\n            \"layout_alignSelf\": \"auto\",\n            \"layout_flexBasisPercent\": 0.2,\n            \"layout_wrapBefore\": false\n        }\n    });\n    sort.push(fl);\n}\n\nJSON.stringify(sort);",
    "header": "@js:\nJSON.stringify({\n\t\"Referer\": baseUrl + \"/\",\n\t\"X-Requested-With\": \"mark.via\",\n\t\"Accept-Language\": \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\",\n\t\"User-Agent\": java.getWebViewUA()\n\t});",
    "jsLib": "function as(input) {\n    var ts = this[\"\\x6a\\x61\\x76\\x61\"][\"\\x62\\x61\\x73\\x65\\x36\\x34\\x44\\x65\\x63\\x6f\\x64\\x65\"](input);\n    return ts;\n}\n\nfunction dec(a) {\n    var to = this.as(a[2]),\n        html = (a[1].includes(\"str\") ?\n        decodeURIComponent(to) : to);\n    return html;\n}\n\nfunction getHeaders(that) {\n    const source = (that || this.source);\n    var header = String(source.header);\n    if (/^.?js(:|>)/.test(header)) {\n        let h1 = header.split(\"js:\"),\n            h2 = header.split(\"js>\");\n        let head = (Array.isArray(h1) && h1[1]) || (Array.isArray(h2) && h2[1]);\n        return String(head.toString());\n    } else return header;\n}",
    "lastUpdateTime": 1787333802258,
    "loginCheckJs": "var url = result.url(), src = result.body(),\nb = src.match(/(html_b|dstr)=\"(.*?)\"/);\nif(b){\n\th = dec(b);\n\tresult = Packages.io.legado.app.help.http.StrResponse(url, h);\n\t}\nresult",
    "respondTime": 3077,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$.cover",
      "init": "<js>\nvar data = {}, n = 0, so = 1;\nvar v = book.getVariable(\"custom\"),\nb = result.match(/book=(\\{.*\\})/) || [];\ntry {\n    data = JSON.parse(b[1]);\n} catch (err) {\n    java.log(err)\n    data = eval(\"(\" + b[1] + \")\");\n}\nvar img = java.getString(\n\t\".book-img img@src\", result);\nlet origin = data[\"同书名作者其他阅读源\"];\n//java.log(JSON.stringify(origin[0]))\nif (v != \"\") {\n    so = n;\n    n = Number(v) - 1;\n}\n\nlet obj = origin[n],\ninfo = `<br>当前源：【${so}】状态：${obj.isok ? \"可用\" : \"异常\"}\n最新章节：${obj.last_chapter_name}\n更新时间：${obj.time_update}\n源列表（多个源可设置书籍变量更改接口）\\n` + origin.map((o, i) =>`源接口：〔${i + 1}〕状态：${o.isok ? \"可用\" : \"异常\"}\n\t最新章节：${o.last_chapter_name}\n\t更新时间：${o.time_update}`).join(\"\\n\");\nobj.intro = `${info} <br>本书《${book.name}》简介：\\n${obj.intro}`;\nlet load = result.match(/load_js\\('(.+?)'/);\n\t//java.log(load.toString());\n\tlet kind = `${obj.type_name},${obj.time_update}`, \n\tlast = `${obj.last_chapter_name}•${obj.time_update}`;\nobj.kind = kind; obj.last = last;\nobj.dir = ( (load && load[1]) || \"/show_jsload_book_info/\") + obj.book_yun_path;\nobj.cover = img;\nJSON.stringify(obj);\n</js>",
      "intro": "$.intro",
      "kind": "$.kind",
      "lastChapter": "$.last",
      "name": "$.book_name",
      "tocUrl": "$.dir"
    },
    "ruleContent": {
      "content": "article > .entry-content > p@html\n##<p style.*|.*<a href.*"
    },
    "ruleExplore": {
      "author": "p.author.0@text",
      "bookList": "<js>\nString(result).replace(/<!--|-->/g, \"\");\n</js>\n#main li",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": "p.-1@text##简介：",
      "kind": "p.author.1:3:4@text",
      "lastChapter": "a.-2@text",
      "name": "h3 a@text##《|》"
    },
    "ruleSearch": {
      "author": "p.author.0@text",
      "bookList": "<js>\nString(result).replace(/<!--|-->/g, \"\");\n</js>\n#book_list li",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": "p.-1@html##简介：",
      "kind": "p.author.1:-2@text",
      "lastChapter": "a.-1@text",
      "name": "a.1@text##《|》"
    },
    "ruleToc": {
      "chapterList": "@js:\nvar _ = JSON.parse(result).chapter_list;\nArray.from(_, ($) => ({\n    name: $.name,\n    link: book.bookUrl + $.file_name,\n    info: String(`${$.len}字`)\n}));",
      "chapterName": "name",
      "chapterUrl": "link",
      "preUpdateJs": "java.refreshTocUrl()",
      "updateTime": "info"
    },
    "searchUrl": "https://book4.cc/AU文学/searchword?q={{key}}",
    "variableComment": "设置源变量更改接口",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "纵横中文",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.zongheng.com/",
    "customButton": false,
    "customOrder": 550,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/82.0.4080.0 Safari/537.36 Edg/82.0.453.0\"\n}",
    "lastUpdateTime": 1765832377943,
    "respondTime": 2748,
    "ruleBookInfo": {
      "author": "class.de-header-author@text",
      "canReName": "True",
      "coverUrl": "img@src",
      "intro": "class.de-header-title@text&&\nclass.de-header-author@text&&\nclass.tags de-tags@text&&\nclass.de-update-chapter flex@class.time JissueTime@text&&\nclass.de-summary@span@text",
      "kind": "class.tags de-header-line.0@span.0@text&&class.tags de-header-line.0@span.-1@text",
      "lastChapter": "class.de-update-chapter flex@class.flex--fluid@text",
      "name": "class.de-header-title@text",
      "tocUrl": "text.进入作品目录 查看更多@href||class.de-gray-btn@href",
      "wordCount": "class.tags de-header-line@span.1@text"
    },
    "ruleContent": {
      "content": "class.content@p@text",
      "title": "class.chapterName-modul@text"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.book-author@text##[作者：·]*",
      "bookList": "class.book-li",
      "bookUrl": "class.book-li@a@href",
      "checkKeyWord": "穿书炮灰，全家偷听我心声",
      "coverUrl": "img@data-imgsrc",
      "intro": "class.book-desc@text",
      "kind": "class.book-label@text&&class.book-state@text##[类型状态：·\\d+万]",
      "lastChapter": "class.book-li@a@href<js>java.ajax(result)</js>class.de-update-chapter flex@class.flex--fluid@text",
      "name": "class.book-title@text",
      "wordCount": "class.book-label@ownText##[·]*"
    },
    "ruleToc": {
      "chapterList": "class.chapbox",
      "chapterName": "class.chapbox@text##App内免费##💎VIP",
      "chapterUrl": "class.chapbox@a@href",
      "isVip": "VIP",
      "updateTime": "class.list_wrap__top@span@text"
    },
    "searchUrl": "https://m.zongheng.com/search?keywords={{key}},{\n  \"webView\": true\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "得间小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.idejian.com",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 551,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Mobile Safari/537.36\"}",
    "lastUpdateTime": 0,
    "loginUrl": "",
    "respondTime": 1622,
    "ruleBookInfo": {
      "author": "class.author.0@text",
      "coverUrl": ".bookcover@src",
      "intro": "[property=og:description]@content",
      "kind": "class.author.1@text",
      "lastChapter": "class.title.1@textNodes",
      "name": ".main dt@text",
      "tocUrl": "@js:\"https://dj.palmestore.com/zybook/u/p/api.php?Act=getChapterListVersion&bid=\"+java.put('bid',baseUrl.match(/(\\d+)/)[1])+\"&p4=501656\"",
      "wordCount": ".font_num@text"
    },
    "ruleContent": {
      "content": ".h5_mainbody@p@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.book_author.0@text",
      "bookList": ".v_list li",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "img@src",
      "intro": ".book_info@text",
      "kind": "class.book_author.2@text",
      "name": ".book_name@text"
    },
    "ruleToc": {
      "chapterList": "cp",
      "chapterName": "cn@text",
      "chapterUrl": "https://m.idejian.com/book/@get:{bid}/{{@css:id@text}}.html"
    },
    "searchUrl": "/search/do?keyword={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "🍉:搜索列表嵌套在一起，有能力的大佬可以看看",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "就去看网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.97k.cc/",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 552,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻小说\",\"url\":\"/category/1_1.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"修真小说\",\"url\":\"/category/2_1.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"言情小说\",\"url\":\"/category/3_1.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"穿越小说\",\"url\":\"/category/4_1.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"侦探小说\",\"url\":\"/category/5_1.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"网游小说\",\"url\":\"/category/6_1.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"科幻小说\",\"url\":\"/category/7_1.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"灵异小说\",\"url\":\"/category/8_1.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"其他小说\",\"url\":\"/category/10_1.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}}]",
    "header": "{'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'}",
    "lastUpdateTime": 1702142599702,
    "loginUrl": "",
    "respondTime": 13899,
    "ruleBookInfo": {
      "author": "@get:{x}",
      "coverUrl": "@js:(s=java.getStringList('@css:img[alt*='+book.name+']@src||meta[property$=image]@content||img[src~=(cover|file|article)[^a-z]|/\\\\d+[/_-]\\\\d+(s?\\\\.|$)]@src||img[data-src~=\\\\S]@data-src||img[src*=/img]@src||img[src~=^(data|https?):|^[^:]+/]@src')).size()?/^data:/.test(s=s.get(0))?java.base64Encode(s):s:null",
      "init": "",
      "intro": "@js:'　　'+java.get(\"g\")",
      "kind": "@js:java.get(\"v\")",
      "lastChapter": "@get:{z}",
      "name": "@js:\nj=String(book.customIntro).match(/^\\{((?:[录原单动静直全跳逆字图]|\\[[^\\[\\]]+\\]|\\d+#[^#]+#)+)\\}/);\n\nkey=String((u=(baseUrl=String(baseUrl).replace(/,{[^{}]+}$/,'')).match(/^(.+)\\?((?:[录原单动静直全跳逆字图]|\\[[^\\[\\]]+\\]|\\d+#[^#]+#)+)$/))&&(baseUrl=u[1])&&j?j[1]+u[2]:u?u[2]:j?j[1]:'');\n\n$=it=>(fn=r.select(it)).size()&&(fn=fn.first());\n\nr=org.jsoup.Jsoup.parse(result);\nr.select(\"script,noscript,style,head>:not(meta,title),footer,[class~=^foot],[id~=^foot],a:has(>:last-child:matchesOwn(^分类$))\").remove();\n\nm=String(r).replace(/(?:&nbsp;)+/g,\" \");\n\n书=false;n=String(($('[property$=book_name]')&&(书=fn.attr('content')))||(function(){\nif($('title')&&(书=String(fn.text()).replace(/^(简介页|详情页|目录页|正版|全本|免费阅读|[\\s。.,_/|《「『【〖（(\\[\\])）〗】』」─—-]+)+/,\"\"))){\nfor(x=0,c=r.select(\"h1,h2,h3,strong\").eachText();x<c.size();x++)if(\n(y=c.get(x))!=''&&(u=书.indexOf(y),~u&&u<4))return y}return 书}())||'请自行修改书名').replace(/(?!^)[^\\u4e00-\\u9fa5a-zA-Z0-9]*(?:笔趣阁|思路客|燃文|小说|漫画|手机)?(?:[.|,_/\\s「『【〖（(\\[\\])）〗】』」。─—-]|(?:人工|机器|电脑)?校正|精校|完[整结]|加料|番外|未删节|简介|全[文本集]|下载|(?:小说|漫画|大全|正版(?:小说|漫画)?|免费|免费小说|免费漫画|免费全[文本]|在线|最[新快]|全部|手机|电脑)(?:全[文本集部]|大全|免费|在线|阅读|下载|章节|小说|更新|漫画|\\.)|([^a-zA-Z0-9])(?:azw|mobi|epub|txt)(?![a-zA-Z0-9])|(?:最全)?(?:章节|目录|列表){2,}|更新章节最快|无广告|(?::顶点)?无弹窗|无防盗|小说网|手打全文|[纯全](?:手打|文字)|\\s*by\\s*(?=[\\u4e00-\\u9fa5]))[\\S\\s]*/i,\"$1\");\n\nif($('[property$=author]')){\nx=String(fn.attr(\"content\")).replace(/^作\\s*[者家][\\s:：]*|(?!^)[/／｜|，,\\s][^⚙️]*$/,\"\")\n}else{\nx=m.match(/>\\s*([^>]+?)(?:\\s*<\\/[a-z]+>\\s*|\\s+)著\\s*<|[\\s\\[\\];?!,.()、，；？！。…─（）［］〖〗【】>《》](?:小说|漫画)?作\\s*者(?![^>]+->)(?:[:：\\s〖【（《［\\[\\(]|<[^it\\/][^>]*>|<\\/[^>]+>)+([^\\s<\">,，/／｜|\\)\\]］》）】〗]+)/);\nx=x?x[1]?x[1]:x[2]:$('#author,.author')?String(fn.text()).replace(/(?!^)[/／｜|，,\\s][^⚙️]*$/,\"\"):\"\"}\njava.put(\"x\",x);\n\nc=(fn=r.select(\"meta[property~=category$]\")).size()?String(fn.attr(\"content\"))\n.replace(/(?!^)\\s*[，,./／｜|]\\s*/,\",\"):(fn=m.match(/(?:[\\s\\[\\];?!,.()、，；？！。…─（）［］〖〗【】》]|<[^a/][^>]*>|<\\/[^>]+>)(?:[分大]\\s*类|类\\s*[型别])(?:[:：\\s]|<[^>]+>)+([^\\s<.\"/／｜|>]+)/))&&fn[1];\nif(c)java.put(\"v\",c);\n\nc=(fn=r.select(\"meta[property~=status$]\")).size()?fn.attr(\"content\"):(fn=m.match(/(?:[\\s\\[\\];?!,.()、，；？！。…─（）［］〖〗【】》]|<[^a/][^>]*>|<\\/[^>]+>)状\\s*态(?:[:：\\s]|<[^>]+>)+([^\\s<.\"/／｜|>]+)/))&&fn[1];\nif(c)java.put(\"s\",c);\n\nc=$('meta[property~=latest_chapter_name$]')?fn.attr(\"content\"):(fn=m.match(/>(?:\\s*[更最]\\s*[新近])+(?:\\s*章\\s*节)?(?:[:：\\s\\[]|<[^>]+>)+(?!\\s*(?:-|&gt;)\\s*<|[:：\\s0-9T年月日时分秒*-]{5,}<|[^:：]+[^章\\s]\\s*[:：]\\s*<|更新(?:时间)?[:：])([^<\"/／｜|\\]>]+)/))&&fn[1];\nif(c)java.put(\"z\",c);\n\n正=true;\nif(key.length){\nif(~key.indexOf(\"全\"))java.put(\"全\",1);\nif((\nu=key.match(/[^\\[\\]]+(?=\\])/),\nc=~key.indexOf(\"录\"),\ny=~key.indexOf(\"单\"),\nbaseUrl=u?u[0]:baseUrl,\n(c||u)&&(baseUrl=c||y?(baseUrl=String((c=baseUrl.match(/(.+[^\\d])(\\d+)([^\\d]*)$/))[1]+1+c[3]),\nc=c[2]+'🌕'+c[1]+'🌕'+2+'🌕'+c[3],\nbaseUrl):baseUrl)\n)||~key.indexOf(\"直\")\n)java.put(\"目\",1),正=1;\nif(~key.indexOf(\"录\"))java.put(\"录\",c),正=1;\nif(y||~key.indexOf(\"#\")){\nif(!u){\nif((网=key.match(/(\\d+)#([^#]+)/))\n&&(尾=网[1],网=网[2].match(/^(.*[^\\d])([12])([^/?\\d]*)$/))\n||(尾=r.select('a[href~=\\\\d[^/?\\\\d]*$]:matches(^(尾|末|最后一)[頁页篇章回节節话話]$)')).size()\n&&(网=r.select('a:matches(^2$)')).size()\n&&(网=String(网.first().attr('href')).match(/^(.*[^\\d])([12])([^/?\\d]*)$/))\n&&(尾=String(尾.first().attr('href')).match(/\\d+(?=[^/?\\d]*$)/)[0])){\nc=尾+'🌕'+网[1]+'🌕'+网[2]+'🌕'+网[3]\n}else if((c=r.select('a:matches(^(\\\\d+|…+|\\\\.+)$)')).size()){\nif((网=String(c).split(/<a[^>]+>[^\\d<]+<\\/a>/)).length==2){\nfor(c=网[0],尾=网[1],x=+网[1].match(/>([^<]+)/)[1],网=网[0].match(/href=\"([^\"]*[^\\d])(\\d+)([^/?\\d\"]*)\"[^>]*>([^<]+)<[^<]+$/),j=+网[4],i=+网[2]-j;j<x;j++)c+=\"<a href='\"+网[1]+(j+i)+网[3]+\"'>\"+j+\"</a>\";\nc+=尾}\n}else c=1}\njava.put(\"单\",c),正=false}\nif(~key.indexOf(\"跳\"))java.put(\"跳\",1);\nif(~key.indexOf(\"逆\"))book.setReverseToc(true);\nelse book.setReverseToc(false);\nif((u=~key.indexOf(\"图\"))||~key.indexOf(\"原\"))java.put(\"原\",1);\nif(~key.indexOf(\"动\"))java.put(\"动\",',{\"webView\":true}');\nelse if(~key.indexOf(\"静\"))java.put(\"静\",1);\nif(u||~key.indexOf(\"字\"))java.put(\"文\",u?1:2)\n}else book.setReverseToc(false);\n\nc=(fn=r.select(\"meta[property$=description][content~=\\\\S]\")).size()?fn.get(fn.size()-1).attr(\"content\"):(r.select(':matchesOwn([\\\\u4e00-\\\\u9fa5]{2,})>:not(br),:not(body,br,:matchesOwn([\\\\s\\\\S]{50}),:has(body,:matchesOwn([\\\\s\\\\S]{50})))').remove(),r.select(\":matchesOwn(\\\\S)\").text());\n\njava.put(\"g\",c=String(c).replace(/[\\snbsp;]*(?:&nbsp;|\\s){2,}|\\s*([？！。]+[”」』\\]\\}\\)）｝】〗〕〉]?)\\s*/g,\"$1　　\").replace(/(?=　　)/g,\"\\n\"));\n\nif(c.length&&(c=c.match(/《([^《》]+)》(?!作品集)/))&&(c=c[1],书?~String(书).indexOf(c)&&~~c.indexOf(n):true))n=c;\n\nif(正==1)m=java.ajax(baseUrl);\njava.setContent(m,baseUrl);\n\nif(正){\nzl=java.getStringList(\"@css:[property$=latest_chapter_url]@content||:matches(^最新章节)>a:only-child:not([href~=^$|#|javascript:])@href||a:matches(^正文\\\\s*[\\\\d第一二三四五六七八九十〇零百千]|^[【《]?(\"+n+\")?[\\\\s》】（\\\\u0028:：＿_－-]*(第[\\\\s0〇零]*[一1]\\\\s*[\\\\u4e00-\\\\u9fa5]|([\\\\u4e00-\\\\u9fa5]{2}阅读[（\\\\u0028:：＿_－-]?)?(0*1([）\\\\u0029.、:：_-]|$)|[〇零]*一([）\\\\u0029\\\\s.、:：_-]|$)))):not([href~=(^|[^/])/[vV][iI][pP]|([A-Za-z]\\\\d+|\\\\d[A-Za-z]+|[A-Z][a-z]+|[a-z][A-Z]+){3,}[^/?&_-]*$|^$|#|javascript:|\"+(bas=baseUrl.replace(/\\/$|\\.[a-zA-Z]+$/,'')).match(/[^?/]+$/)[0].replace(/([*$|?+\\\\\\^\\[\\](){}])/g,'\\\\$1')+\"(?:[/_-]1)?(?:\\\\/|\\\\.[a-zA-Z]+)?$])@href||a:matches(^[^\\\\u4e00-\\\\u9fa5]*(免费|在线|开始|立即|全文|正文|从头)+[试阅]读[^\\\\u4e00-\\\\u9fa5]*$):not([href~=^$|#|javascript:])@href||a:matches(^0*1[^\\\\d]):not([href~=(^|[^/])/[vV][iI][pP]|([A-Za-z]\\\\d+|\\\\d[A-Za-z]+|[A-Z][a-z]+|[a-z][A-Z]+){3,}[^/?&_-]*$|^$|#|javascript:])@href\");\n\nif(zl.size()&&(ck=String(zl.get(0)).match(/^(.*\\/\\/[^/]+)?([/?]?[^/].+[?&/_-])[^&/_-]+\\/?$/)))(jd=ck[1])&&(h=baseUrl.lastIndexOf('/',baseUrl.indexOf(jd.match(/(?:\\.[^.]+){2,}$|[^./]+\\.[^.]+$/)[0])))>8&&(\nq=baseUrl.indexOf(':'),\n(bas=java.get(baseUrl=baseUrl.slice(0,q+2)+baseUrl.slice(h),{})).statusCode()==200&&java.setContent(bas.body(),baseUrl)\n),java.put(\"ck\",ck[2])}\nn",
      "tocUrl": "@js:if(java.get(\"单\")==''){\nif(java.get(\"录\")==java.get(\"目\")){\nr=org.jsoup.Jsoup.parse(result);\n\nscript=r.select(\":matchesOwn(^$)>a[href^=javascript:]:matches(全文|章[節节]|目[錄录]):not(:matches(最新))\");re=false;\n\nif(!script.size()){\nba=(bas=baseUrl.replace(/\\/$|\\.[a-zA-Z]+$/,'')).match(/(http....[^/?]+)(?:([?/])(.*))?$/);b=ba[1];v=ba[3];\n\nr.select(\"a[href~=[^a-z]page[^a-z]]:not(:matches([反正顺順逆倒]序|[全正]文|更多|全部|所有|章[節节]|作品|目[錄录]|列表)),a:not([href~=^(?!//)[^#:]+$|\"+b.split(':')[1]+\"]),:matchesOwn(\\\\S)>a,a[href~=javascript:|#],a:matches(^\\\\S{1,4}$):not(:matches([反正顺順逆倒]序|[阅閱][讀读]|查看|展[开開]|进入|[全正]文|更多|完整|全部|所有|目[錄录]|列表|章[節节]):not(:contains(分类)))\").remove();\n\ny=r.select(\"a[href~=(?i)catalog|contents|chapters|mulu|(^|[^a-z])ml|showchapter|(^|chapter[/_-]?)(more|list|all)|sort[/=_-]asc]\");\n\nif(!y.size()){b3='';\n\nif(ba[2]==\"?\"){\nb3='[href~=^[^?]+$],'\n}else if(ba[3]){\nb3=ba[3].replace(/[*$|?+\\\\\\^\\[\\](){}]/g,'\\\\$0');\n\nb3=\"[href~=\"+b3+\"(\\\\.[^.]+|/\\\\d+(\\\\.[^.]+|/)?)?$],[href~=[/?]\"+b3.replace(/[&/_-][^/_-]+$/,'')+\".*$]:not([href~=[/?]\"+b3.replace(/[/_-]/g,'[/_-]')+\"]),\"}\n\ny=r.select(\"a:not(\"+b3+\"[href~=(?i)(^|[^/])[?/].*((book|[^a-z])(info|case)[^a-z]|(cid|buy)[^a-z]|desc|coins|nutrition|review|ticket|update|(app|author|xiazai|down)(?!=))|/chapter|/index/|/d/],:matches((?i)^$|[0-9零〇一二三四五六七八九十百千万、，：；？！。…‘’“”（）()]|[票榜:：.]|推荐|排行|等级|说明|收藏|书评|简介|分[类卷]|简介|作者|手机|软件|应用|安装|客户|移动|pc|电脑|安卓|苹果|下载|最新|ap[kp]|ipa|plx|deb|exe|zip|rar|txt|epub))\")}\n\nif(y.size()){\nys=y.select(\"a[href~=(?i)catalog|contents|list|chapter|mulu|(^|[^a-z])ml|more|read|all]:matches([反正顺順逆倒]序|全文|章[節节]|目[錄录]):not(:matches(阅读)),a[href~=(?i)catalog|contents|chapter|(^|[^a-z])ml|mulu|read]:matches(更多|列表),a[href~=(?i)catalog|contents|list|chapter|mulu|(^|[^a-z])ml|more|all]:matches(^$),a:matches(^[^\\\\u4e00-\\\\u9fa50-9]*([反正顺順逆倒]序|全文(免[費费])?[阅閱][讀读]|(点击|查看|展[开開]|进入|返?回到?)*([全正]文|(更多|完整|全部|所有)?(章[節节]|(作品)?目[錄录])+)+(列表)?(\\\\s*(查看|展开)?更多)?)[^\\\\u4e00-\\\\u9fa50-9]*$)\");zt=false;\n\nif(!ys.size()){\nba=bas.match(/(\\?(?:[^=]+=)+)(.+)$/)||bas.match(/(?:[^/_-][/_-]([^/._-]+))?[/_-]([^/._-]+)(?:\\/index[^/]*)?$/);\n\nif(xi=(id=ba[2]).match(/\\?[^=]+=([^&]+)/)||id.match(/^[^\\d%]*(\\d{2,}|[1-9])$/))id=xi[1];\nif(ba[1])if(xi=ba[1].match(/^[^\\d%]*(\\d{2,})$/))id=/^\\d$/.test(id)||!xi[1].indexOf(id)?xi[1]:\"(\"+id+\"|\"+xi[1]+\")\";\n\nys=y.select(\"[href~=(?i)^((.*//[^/]+/)?[^=.]*[^\\\\d=.])?\"+id+\"([?_-][a-z=_-]*0|\\\\.[^.]+|[/?]([^\\\\d]*|[^/\\\\d]*/?|(list|more|all)([=_-][a-z]*)?\\\\d+[^\\\\d]*)?)?(&.+)?$]:not(:contains(\"+(bs=String(book.name)[0])+\"))\");\n\nif(!ys.size()){zt=true;\nys=y.select(\"[href~=(?i)^((.*//[^/]+/)?[^=.]*[^\\\\d=.])?(\\\\d+/\"+id+\"[_-]\\\\d+[^\\\\d]*|\"+id+\"[_-][a-z_-]*1[^\\\\d]*)$]:not(:matches(阅读|\"+bs+\"))\")}}\n\nif(ys.size()){\nif((re=ys.select(\"[href~=(/|^)[^.]+$]\")).size())ys=re;\nre=String(ys.first().attr(\"href\"));\n\nfor(x=1;x<ys.size();x++)if((xs=String(ys.get(x).attr(\"href\"))).length>re.length)re=xs;\n\nif(/(?:[2-9]\\d*|1\\d+)[^\\d]*$/.test(re)){\nif(!zt&&(q=re.match(/^(.*[^/])?[&?/].*(?:catalog(ue)?|contents|(?:show)?chapters?|mulu|ml|more|all|list|page)(?:[=_-][a-z]*)?\\d+[^\\d]*$/i))&&v==(q[1]||'').replace(/^http....[^/?]+/,''))zt=true;\nif(zt)re=re.replace(/\\d+(?=[^\\d]*$)/,\"☯1\")}\n\n}}}\n\nre=String(!re?baseUrl:(java.put(\"基\",baseUrl),/^\\/[^/]/.test(re)?b+re:/^https?:/.test(re)?re:/^\\/\\//.test(re)?b.split('//')[0]+re:String(baseUrl).replace(/[^/]*$/,'')+re))}else re=baseUrl;\n\nr=re.replace(/(?:[☯?&/_-][^\\d?/&_-]*[01])+[^\\d]*$/,\"\");\njava.put(\"ba\",r);\nre=re.replace(\"☯\",\"\")}else re=baseUrl;\n\njava.get(\"跳\")==1||re==baseUrl&&/,/.test(book.bookUrl)?re+',{\"webView\":true}':re",
      "wordCount": "@get:{s}"
    },
    "ruleContent": {
      "content": "@js:dt=lr='';c=1;动=java.get(\"动\");\nif(动!=''&&!~baseUrl.indexOf(\",\")){\nresult=String(java.ajax(baseUrl+动))\n}else if(java.get(\"静\")==动)c=dt=2;\n\nr=org.jsoup.Jsoup.parse(r1=result.replace(/&nbsp;/g,' '));\n查=i=java.get(\"序\");\n\nif(java.get(\"文\")==1){for(;c;c--){\nd=[\"img[data-src],img[src~=[^a-z]cid[^a-z]]\"\n,\"img:not([src~=(?i)^$|^javascript:|\\\\.gif|\\\\.png|[^a-z](cover|css|ic(on)?|load(ing|ed)?)[^a-z]])\"\n,\"img[src~=(?i)\\\\.png]:not([src~=(?i)[^a-z](cover|css|ic(on)?|load(ing|ed)?)[^a-z]])\"\n,'img[src~=(?i)\\\\.gif]:not([src~=(?i)[^a-z](cover|css|ic(on)?|load(ing|ed)?)[^a-z]])'];\n\nif(!(查!=\"\"&&(查!=-1&&((lr=r.select(d[查])).size(),true)))){\n$=it=>(lr=r.select(it)).size();\nif($(d[i=0])||$(d[i=1])||$(d[i=2])||false)break;\n\nif(c==2){dt=1;\nr=org.jsoup.Jsoup.parse(java.ajax(baseUrl+',{\"webView\":true}'))\n}else i=$(d[3])?3:-1}}\nif(i==0)lr=String(lr).replace(/(?:src=['\"][^'\"]+['\"] +)?data-/g,'');\nif(查==\"\")book.putVariable(\"序\",i);\n\n}else{\nsc=java.get(\"文\")==2?\n'[style~=(?i)text-align:center|(^| |;)color: *(rgb.(?!255[ ,]+255[ ,]+255)[\\\\d, ]*2\\\\d\\\\d|#(?=[a-f\\\\d]{3}([^a-f\\\\d]|$))(?!fff)[a-f\\\\d]*[d-f]|#(?=[a-f\\\\d]{4})(?!ffffff)([\\\\da-f]{2})*[d-f][\\\\da-f]|green|red|blue|yellow|purple|pink|brown)],script,noscript,style,header,footer,[class~=^foot|^head],[id~=^foot|^head],:has(>a):not(:has(p:matchesOwn(\\\\S),br)),a>*,:has(a):not(:matchesOwn([\\\\S\\\\s]{50,}),:has(:matchesOwn([\\\\S\\\\s]{50,}))),:matchesOwn([\\\\s\\\\S]{50})>:not(br,a,:matchesOwn([\\\\s\\\\S]{50})),:not(br,p,a,:matches([\\\\s\\\\S]{200}),:has(p,br,div:matchesOwn(，|。)+div:matchesOwn(，|。)),:has(p,br,div:matchesOwn(，|。)+div:matchesOwn(，|。)) :matchesOwn(\\\\S):not(:not(p,div,span:has(br))))'\n:\n'[style~=(?i)text-align:center|(^| |;)color: *(rgb.(?!255[ ,]+255[ ,]+255)[\\\\d, ]*2\\\\d\\\\d|#(?=[a-f\\\\d]{3}([^a-f\\\\d]|$))(?!fff)[a-f\\\\d]*[d-f]|#(?=[a-f\\\\d]{4})(?!ffffff)([\\\\da-f]{2})*[d-f][\\\\da-f]|green|red|blue|yellow|purple|pink|brown)],script,noscript,style,header,footer,[class~=^foot|^head],[id~=^foot|^head],:has(>a):not(:has(p:matchesOwn(\\\\S),br,img:not([src~=(?i)^$|^javascript:|[^a-z](css|ic(on)?|load(ing|ed)?)[^a-z]|/\\\\d+s\\\\.jpg]))),img[src~=(?i)^$|^javascript:|[^a-z](css|ic(on)?|load(ing|ed)?)[^a-z]|/\\\\d+s\\\\.jpg],a:not(:matches(^$)>img)>*,:has(a):not(img,:matchesOwn([\\\\S\\\\s]{50,}),:has(img,:matchesOwn([\\\\S\\\\s]{50,}))),:matchesOwn([\\\\s\\\\S]{50})>:not(img,br,a,:has(img),:matchesOwn([\\\\s\\\\S]{50})),:not(img,br,p,a,:matches([\\\\s\\\\S]{200}),:has(p,br,img,div:matchesOwn(，|。)+div:matchesOwn(，|。)),:has(img,p,br,div:matchesOwn(，|。)+div:matchesOwn(，|。)) :matchesOwn(\\\\S):not(:not(p,div,span:has(br))))';\n\nd=[\":matchesOwn(\\\\S):has(br):has(:matchesOwn(\\\\S):has(br))\"\n,\":matchesOwn(\\\\S):has(br)\"\n,\":has(>:matchesOwn(\\\\S):not(:has(*))+:matchesOwn(\\\\S):not(:has(*)))\"\n,\":has(>:has(>p:only-child:matchesOwn(\\\\S):not(:has(*)))+:has(>p:only-child:matchesOwn(\\\\S):not(:has(*))))\"\n,\"img\"\n,\":matchesOwn(\\\\S)\"];\n\ntry{for(查=i!=''?i:java.get(\"元\");c;c--){\n\nif(!(c>1&&(String(r.text()).length<400||r.select(':matchesOwn(内容未加载完成|关闭(阅读|小说)模式)').size()))){\nr.select(sc).remove();\n\nif(!(查!=\"\"&&(lr=r.select(i?d[i==6?5:i]:查)).size()))for(i=0;i<6&&(lr=r.select(d[i]),i==4&&c==1?!lr.size():String(lr.text()).length<200);i++);\nif(c<2||i<6)break;}\n\nr=org.jsoup.Jsoup.parse(r2=String(java.ajax(baseUrl+',{\"webView\":true}')).replace(/(<[a-z]+)&nbsp;/g,'$1 '));\ndt=r1.length==r2.length?2:1}\n\nfor(c=lr.first(),v=1;v<lr.size();v++)if(lr.get(v).parents().contains(c)){\nlr.remove(v);\nv--}else c=lr.get(v);\n\nlr=String((c=lr.size()==2&&i<4)?String(lr.first().text()).length>String(lr.get(1).text()).length?lr.first():lr.get(1):(c=lr.size()==1)?lr.first():lr);\n\nif(查==\"\"){\nif(c&&(查=lr.match(/<([a-z]+) ([^>]+)>/))&&(查[2]=查[2].match(/(?:id|class|style)=(?:\"[^\"]+\"|'[^']+')|[^= ]+(?==\"[^\"]+\"|'[^']+')/g))){\nbook.putVariable(\"元\",查[1]+'['+查[2].join('][')+']')\n}else book.putVariable(\"序\",i)}\n\nlr=lr.replace(/<([a-z]+)[^>]*\"-\\d+\"[^>]*>[^<]+<\\/\\1>|[^<>]*<a[^<]+<\\/a>[^<]*|&lt[; ]?\\/?[a-z]+(?= |\\/?&gt)(?:[ a-z=-]+|\"[^\"]+\"|'[^']+')*\\/?&gt[; ]?|[☯📑⚙️🌕︴]/g,\"\").replace(/\\s+(?:\\s|(?:(?:(?:n?b)?s)?p)?;)/g,\"　　\");\n\nif(java.get(\"原\")!=1)lr=(!lr.indexOf(\"　　\")?lr.replace(/>(?!　　|\\s*(?:(?:(?:n?b)?s)?p)?;)\\s*(?=[^\\s<>])/g,\">︴\"):lr).replace(/((?:[〖【『「（《〈〔［\\[(][^〖【『「（《〈〔［\\[()］〕〉》）」』】〗\\]]*[)］〕〉》）」』】〗\\]]\\s*)*(?:第?\\s*[一二三四五六七八九十百千万〇零0-9]+\\s*[章节回話话：:.．,，、]*\\s*)?{{n=(t=title.match(/\\S+$/)[0].replace(/[*$|?+\\\\\\^\\[\\](){}/]/g,\".?\")).replace(/^(正文[^\\u4e00-\\u9fa5A-Za-z]*|第?[一二三四五六七八九十百千万〇零0-9]+[章节回話话\\s：:.．,，、]*)+/,\"\"),n!=t&&/\\S/.test(n)?\"(?:第?\\\\s*[一二三四五六七八九十百千万〇零0-9]+\\\\s*[章节回話话：:.．,，、]*\\\\s*\"+n+\"|\"+t+\")\":t}}(?:\\s*[〖【『「（《〈〔［\\[(][^〖【『「（《〈〔［\\[()］〕〉》）」』】〗\\]]*[)］〕〉》）」』】〗\\]])*)/g,\"⚙️$1⚙️\")+\"📑\"\n}catch(e){}}\nif(dt)book.putVariable(dt==1?\"动\":\"静\",',{\"webView\":true}');lr",
      "imageStyle": "FULL",
      "nextContentUrl": "@js:if((r=java.getStringList((nx=java.get(\"next\"))+\"a:matches(第二[頁页]|下[一\\\\s]*[頁页]):not([href~=^javascript:|^#])@href||a:matches(下[一\\\\s]*[篇章回节節话話]):not([href~=^javascript:|^#])@href||a[href~=[_-]\\\\d+(/|\\\\.[a-z]+)?$]:has(i,img):not(:matches(\\\\S),[href~=^javascript:|^#])@href\")).size()){\nif(~String(book.tocUrl+(nextChapterUrl||'')).indexOf(r=String(r.get(r.size()-1)))||~r.indexOf(nextChapterUrl||String(book.tocUrl).replace(/.+(?=_\\d+\\/$)/,'')))r=null\n}else r=null;\nif(r){if(nx!='')chapter.putVariable(\"next\",(n=r.replace(/\\d+(?=[^\\d]*$)/,it=>+it+1))==r?'':'a[href=\"'+n+'\"]@href||');\nr+java.get(\"动\")}",
      "replaceRegex": "@js:if(java.get(\"原\")==1){result}else{\nresult=result.replace(/⚙️([^\\u4e00-\\u9fa5⚙️]+|[零〇一二三四五六七八九十百千万\\s]+|(?!第[零〇一二三四五六七八九十])[\\u4e00-\\u9fa5]+)⚙️/g,'$1').split('📑');\nl=result.length-1;\nwhile(l)if(r=result[--l].match(/^(\\n+(?:[^\\n]{1,30}\\n+){1,3})([\\S\\s]+)$/))result[l]=r[1]+r[2].replace(/⚙️/g,'');\nresult.join('📑')\n.replace(/—/g,\"─\")\n.replace(/[·۰•・]/g,\"・\")\n.replace(/\\s*(?:︴[^\\n　]+\\s+)*📑\\s*|^\\s*(︴[^\\n　]+\\s+)*|\\s*(?:　　|\\n)(?:[\\s&#a-zA-Z0-9]*;)?[\\s　?]*/g,\"☯\")\n.replace(/(?:︴[^☯]*☯)+(?=︴)|☯(?:温馨|[^a-zA-Z0-9\\u4e00-\\u9fa5☯]+)提示.?[:：][^☯]+|☯[^☯]+字体不会安装.?请百度[^☯]+|☯.{0,2}正版订阅在阅文旗下的起点和QQ书城，可以第一时间看到最新章节.{0,2}(?=☯)|︴\\s*第?[〖【『「（《〈〔［｛\\[{(][^☯]+(?=☯)|☯第\\s*[（(][^（()）]+[)）][頁页](?=☯)|[^☯]*(?:关注|[微vVＶｖ][^\\u4e00-\\u9fa5A-Za-z0-9]*[信xXｘＸ]|公[^\\u4e00-\\u9fa5]*众[^\\u4e00-\\u9fa5]*号){2,}[^☯]*|(?:&#?[a-z0-9]*;?)+(?=;|☯);*|read[sx][；;?？]+/g,\"\")\n.replace(/\\s+/g,\" \")\n.replace(/☯[ ☯]*/g,\"\\n\")\n.replace(/(\\n[〖【『「（《〈〔［｛\\[{(]?)([pPＰｐ][SsｓＳ]+(?=[ ：:;；，,、。.─\\d\\u4e00-\\u9fa5])[^\\n]+)/g,\"$1🌕$2\")\n.replace(/\\[\\[\\[[^\\[\\]]+http:file2.qidian.comchapters(.{5,6})(..)([^\\[\\]]{35})\\]\\]\\]/g,'<img src=\"http://file2.qidian.com/chapters/$1/$2/$3\">')\n.replace(/(<img )[^>]*(src=\"[^\"]+\")[^>]*(>)|((?: ?[＋+－-]?[0-9０-９]+(?:[．.／/][0-9０-９]+)?[％%:：]?[a-zA-Z]*)+ ?|[ _＿－-]?[a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９]+)/g,\"$1$2$3☯$4☯\")\n.replace(/☯[・。](?=☯)/g,\"☯.\")\n.replace(/,\\n/g,\"，\")\n.replace(/!(?=\\n)/g,\"！\")\n.replace(/\\?(?=\\n)/g,\"？\")\n.replace(/(<[^<]+)☯☯/g,\"⚙️$1⚙️\\n\")\n.replace(/(?:\\n[^āáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ\\u4e00-\\u9fa5\\n〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗、，：；？！。…─🌕︴\\n]+|([。？！…”』」】〗])[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗、，：；？！。…─☯︴\\n]+[\\u4e00-\\u9fa5]+)?[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗、，：；？！。…─⚙️☯︴\\n]+(?=\\n)|[^☯!\"'(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛｝］〕〉）＞’”》」』】〗]*☯([a-zA-ZＡ-Ｚａ-ｚ]*[āáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ][a-zA-ZＡ-Ｚａ-ｚ]*)☯[^☯!\"'(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛｝］〕〉）＞’”》」』】〗]*/g,\"$1$2\")\n.replace(/[^!\"'(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜<（〈〔［｛({\\[\\]})｝］〕〉）>＞’”》」』】〗︴🌕]*(?:☯[^.．!(),\\n\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗⚙️]+|([^☯!(),\\na-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘<＜（〈〔［｛({\\[\\]})｝］〕〉）＞>’”》」』】〗⚙️])(?!\\1)|☯(?=[^☯!(),\\na-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗][!(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗])|[〖【『「（《〈〔［｛\\[{(][^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[)｝］〕〉》）」』】〗\\]}]){4,}|[^；;％%～~?？!！\"'”’。…─\\na-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[〖【『「（《〈〔［｛\\[{(][^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[)｝］〕〉》）」』】〗\\]}](?:[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+(?=[)｝］〕〉》）」』】〗\\]}]))?/g,\"📑\")\n.replace(/([；;％%～~?？!！\"'”’。…─])📑(?=[)｝］〕〉》）」』】〗\\]}])/g,'$1')\n.replace(/(?:([\\n。？！])[^\\n。？！]{1,10})?[〖【『「（《〈〔［｛\\[{(][^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*(?:☯[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]☯|📑|🌕)[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[｝］〕〉》）」』】〗\\]})](?:[^。]{0,5}(?:[〖【『「（《〈〔［｛\\[{(][^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*(?:☯[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]☯|📑)[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[｝］〕〉》）」』】〗\\]})]|[^📑!,()\\s\\u4e00-\\u9fa5、，：；？！。…─‘’“”（）《》〖〗【】]+))*(?:(?:[^\\n]{1,10}|(?:[\\u4e00-\\u9fa5]{0,5}[，、])*[\\u4e00-\\u9fa5]+[！。]?)(?=\\n))?/g,\"$1\")\n.replace(/((?:[请請][记記]住)?[^⚙️🌕📑︴*\\n(),\\u4e00-\\u9fa5、，：；？！。…─「」‘’“”（）《》〖〗【】]*(?:(?:[^⚙️🌕📑︴*\\n(),\\u4e00-\\u9fa5、：，；？！。…─「」‘’“”（）《》〖〗【】]+[*(), \\u4e00-\\u9fa5、，:：；？！。…─「」‘’“”（）《》〖〗【】]{1,3})*[^*︴📑☯⚙️🌕\\s&;(),āáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜa-zA-ZＡ-Ｚａ-ｚ0-9０-９\\u4e00-\\u9fa5、,，:：;；?？!！。…～~─'\"‘’“”【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}％%・/／＝=_＿.．＋+－-]+(?!(?:[^>]+>)?⚙️)|☯[^☯\\n]+☯\\.☯[^☯\\n]+☯|本[文书](?:首发|来自)|(?:章节不完整.?|完整章节)?请.{2,6}(?:搜索|百度|引擎|关键[词字])+|(?:[阅閱][讀读]|访问|訪問|[網网地][站址]|链接|鏈接|[\\u4e00-\\u9fa50-9a-zA-Z]{0,4}(?:文学|中文|[網网]))+[:：]|[\\u4e00-\\u9fa50-9a-zA-Z]{0,6}(?:[網网地][站址]|链接|鏈接)为|.{2,4}文[学學][網网]|[请請].{2,4}收藏(?:.{0,2}推[荐薦])?|(?:天才)一秒[記记]住|，?請?訪問|(?:[更最][快新]|[快高]速|热门|(?:[阅閱][讀读])?完整|本|(?:官[網网]|本站).{0,2})(?:章[節节]|小说|更新|[網网地][址站][:：]?|快速)|更新(?:速度)?[最更]?快|(?:(?:无错)?小说|正版|免费|全[文本]|在线|访问|訪問|txt|TXT|继续|各种|推[荐薦]|收藏|分享|交流|你?喜欢的)+(?:全文|免费|在线|[阅閱]?[讀读]|下载|章[節节]|小说|好书)|章[節节](?:目录|列表)|小说[網网](?:更新)?|手打全文|[纯全](?:手打|文字)|手机看书|手机版|笔趣阁|(?:本站|[網网]站|站内|看)?无(?:任何)?(?:广告|弹窗|防盗)(?:章节)?|不弹窗|(?:(?:請|请|或者?)?(?:訪問|访问|[電电手][腦脑机機]|[網网][址站]|用[户戶]|浏览|瀏覽|閱讀|阅读|看小说|看漫画)){2,}|看小说|看漫画|(?:用[^\\n]{2,6})?(?:[追看]书|小说)(?:就用|软件|☯[^☯]+☯)，?|用[^\\n]{2,6}[追看]书|(?:..的)?(?:最佳选择|阅读体验)|(?:推[荐薦]|收藏|分享)(?:本站|我们)|小说..版|文章质量更好|谢谢各位(?:读者|书友)支持|水印广告测试|本章未完|请翻页|点击下一页|领.{0,2}红包|同步更新《[^《》]+》|关注[〖【『「（《〈〔［｛\\[{(][^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+[)｝］〕〉》）」』】〗\\]}])(?:[* (),\\u4e00-\\u9fa5、，：；？！。…─‘’“”（）《》〖〗【】]{0,3}[^⚙️📑*\\n(),\\u4e00-\\u9fa5、，：；？！。…─「」‘’“”（）《》〖〗【】]+|[….。!！]+(?=\\n))*|⚙️(?!<)[^⚙️\\n]+⚙️)/g,\"\\n⚙️$1⚙️\\n\")\n.replace(/⚙️(<[^<>]+>)⚙️\\n|[〖【『「（《〈〔［｛\\[{(](?:[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]{0,3}\\n⚙️(?!\\s*\\S\\s*⚙️).+⚙️\\n*)+[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]{0,3}[)｝］〕〉》）」』】〗\\]}]|(🌕)\\s*⚙️|⚙️\\n[^\\u4e00-\\u9fa5]{0,5}\\n⚙️|\\n⚙️\\s*(\\S)\\s*⚙️\\n(?![^⚙️]{1,3}⚙️)|(⚙️\\n)|([，、；])[\\s,，。、…:：;；?？!！`’]*[,，。、…:：;；?？!！`’](?!⚙️)|\\n[\\s,，。、…:：;；?？!！`’]*(?=[,，。、:：;；?？!！])|([：？！。…─])(?:[^⚙️☯a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n…─“‘’”〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+(?=\\n)|[^⚙️☯a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n…─“‘’”〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+)|☯/g,\"$1$2$3$4$5$6\")\n.replace(/([)）？！?!…」』”\\s。])(?:[^\\n（(🌕)）”』」’。]{0,5}(?:(?:\\n⚙️.+⚙️\\n|[^（()）\\n”』」。]{0,5}📑)[^（()）\\n。]{0,5}(?:\\n⚙️.+⚙️(?:\\n(?=\\n⚙️|[^（()）\\n]{1,5}\\n))?|[^（()）\\n。]{0,5}📑(?:[^📑]{1,5}(?=\\n⚙️))?)+(?:[^（()）\\n]{1,5}(?=\\n))?|(?:(?:(?:\\n⚙️.+⚙️\\n|[^（()）\\n。]{0,5}📑)[^（()）\\n]{0,5}){2,}|[^（(🌕)）”』」’\\n。]{0,5}(?:(?:請|关键[词字]|[電电手][腦機]|用戶|瀏覽|[阅閱]讀|推[薦荐]|收藏|分享|文章质量|谢谢(各位|支持|大家)|水印|翻页|点击|下[一\\s]*[页頁篇章回节節话話]|免费|热门|官网|正版|在线|同步|下载|文学|中文|章节|[本网][站址]|站内|小说|更新|无错|[本全][文本章]|首发|广个?告|弹窗|防盗|访问|訪問|txt|TXT|读者|书友|百度|[插说]一?[下句]话?，[\\u4e00-\\u9fa5]{0,5})[^（()）\\n]{0,5})*(?:📑|\\n⚙️[^\\n]+⚙️\\n)[^（()）\\n]{0,5}(?:(?:請|关键[词字]|[電电手][腦機]|用戶|瀏覽|[阅閱]讀|推[薦荐]|收藏|分享|文章质量|谢谢(各位|支持|大家)|水印|翻页|点击|下[一\\s]*[页頁篇章回节節话話]|免费|热门|官网|正版|在线|下载|同步|文学|中文|章节|[本网][站址]|站内|小说|更新|无错|[本全][文本章]|首发|广个?告|弹窗|防盗|访问|訪問|txt|TXT|读者|书友|百度)[^（()）\\n]{0,5})*|[^（(🌕)）\\n”』」’。]{0,3}\\n⚙️.+⚙️\\n[^（()）\\n。]{0,3})(?:[\\u4e00-\\u9fa5]+[！。]?|[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n]+)?(?=\\n)))+|\\n⚙️[^\\u4e00-\\u9fa5]+⚙️\\n|📑|\\s*︴\\s*|\\n?⚙️\\n?|\\n[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n]{2,}\\n[^🌕a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n“《‘【〖『「]*/g,\"$1\")\n.replace(/(?:(?:\\n🌕[^\\n]*)+(?:\\n+[^\\n]+){0,4}|\\n(?:[(（{｛][^(（<{｛｝}>）)]*(?:(?:[(（{｛][^(（<{｛｝}>）)]*[）)｝}])[^(（<{｛｝}>）)]*)*[）)｝}]?\\s*)+|[^\\n]*起点(?:原创|中文)[^\\n]*|[〖【『「（《〈〔［｛\\[{(]?未完待续[^\\n]*)[^\\u4e00-\\u9fa5<>]*$|^\\s*(?:(?:[^\\n]+\\n+){0,4}(?:🌕[^\\n]*\\n?)+|(?:[(（{｛][^(（<{｛｝}>）)]*(?:(?:[(（{｛][^(（<{｛｝}>）)]*[）)｝}])[^(（<{｛｝}>）)]*)*[）)｝}]?\\s*)+|，[^\\n]+)\\n|(?:^|\\n)[^a-z0-9A-Z\\u4e00-\\u9fa5]*(?=\\n)|🌕|\\n\\s*[a-zA-Z]+\\s*$/g,\"\")}",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": ".s4@text",
      "bookList": "id.l@li",
      "bookUrl": ".s2@a@href",
      "kind": ".s1@text",
      "lastChapter": ".s3@text",
      "name": ".s2@text"
    },
    "ruleSearch": {
      "author": "text.作者：@text##作者：",
      "bookList": "class.block",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": "text.简介：@text##简介：",
      "kind": "text.状态：@text&&text.分类：@text&&text.更新：@text&&text.更新时间：@text##状态：|分类：|更新：|更新时间：",
      "lastChapter": "text.最新章节@text##最新章节：",
      "name": "h2.0@a@text",
      "wordCount": "text.字数：@text##字数："
    },
    "ruleToc": {
      "chapterList": "@js:if(java.get(\"单\")==''){\nsrc=org.jsoup.Jsoup.parse(src);\n\nif((result=java.get(\"录\"))==\"\"){if(页=(result=src.select('a[href~=\\\\S]:matches(下[一\\\\s]*[页頁]|下[一二三四五六七八九十百千万〇零0-9]{2,}章):not([href~=^#|javascript:])')).size())result=result.first().attr('href')\n}else{网=String(result).split(\"🌕\");\nfor(i=3,页=+网[0],result=网[1]+2+网[3];i<=页;i++)result+='\\n'+网[1]+i+网[3];\nresult=String(result)}\n\nif(页)java.put(\"页\",/,/.test(book.tocUrl)?result.split('\\n').join(',{\"webView\":true}\\n')+',{\"webView\":true}':result);\n\n嗅=()=>String(src).match(/[\\[(]([\"'])<[a-z]+[ >][^\\[\\]()]+<\\/a>(?:[^\\[\\],()]*<\\/[a-z]+>)?\\1[\\])]/);\n转=it=>it.replace(/\\\\[Uu]([0-9a-zA-Z]{4})/g,(_,it)=>String.fromCharCode(parseInt('0x'+it)));\n兜=()=>src.select(':matchesOwn(^$|[0-9〇一二三四五六七八九十])>a:matches(\\\\S):not(:has(*>*>:not(span)),[href~=(?i)passport|\\\\.aspx$|\\\\.php$|^https://[^/]+(/|index\\\\.[a-z]+)?$|(^|[^/])[?/].*((book|[^a-z])(info|case|page|reg|Game|Play)[^a-z]|buy[^a-z]|SystemInfo|hot|sort|desc|asc|top|coins|nutrition|review|ticket|update|(app|author|xiazai|down)(?!=))|/list\\\\d*([/_-][^/_-]+/?)?$|\\\\d+_\\\\d+_\\\\d+|target=iframe|https%],:matches((?i)^((点击|软件|应用|安装|客户|移动|手机|电脑|安卓|苹果|下载|阅读|pc|ap[kp]|ipa|plx|deb|exe|zip|rar|txt|epub)[\\\\s.端版]*(?=$|点击|软件|应用|安装|客户|移动|手机|电脑|安卓|苹果|下载|阅读|pc|ap[kp]|ipa|plx|deb|exe|zip|rar|txt|epub)|[A-Za-z0-9\\\\u4e00-\\\\u9fa5]?返回.*(简介|书页|目录)[A-Za-z0-9\\\\u4e00-\\\\u9fa5]?|[<>-]+|\\\\d+-\\\\d+章|书页|目录|简介|[上下首尾]([一\\\\s]*[页頁]|[\\\\s\\\\d零〇一二三四五六七八九十百]*章)|[↑\\\\[]?[倒正反逆顺順]序[↓\\\\]]?)$))');\n\nif((zt=java.get(\"嗅\"))!=''){\nif(zt>0&&(嗅=嗅())){\nsrc=嗅[0];\nif(zt==2)src=转(src);\nsrc=org.jsoup.Jsoup.parse(src)}\nsrc.select(java.get(\"除\")).remove();\nif(java.get(\"兜\")==1)src=兜();\nsrc=src.select(java.get(\"查\"))\n\nif(!页){for(首=String(java.get(\"首\")).split('\\n'),ss=src.size(),i=0;i<ss;i++)if(首[i]!=src.get(i)){\nif(i>1)src.subList(1,i).clear();break;}}\n\n}else{\nbook.putVariable(\"除\",除=\"meta,link,a:has(img),\"+((zt=java.get(\"全\")!=1)?\"a[href$=\"+String(book.tocUrl).replace(/,\\{\"webView\":true\\}|^.{8}[^/]*/g,'')+\"],\":\"\")+(基=String(java.get(\"基\")),基==''?'':\"a[href$=\"+基.replace(/^.{8}[^/]*/,'')+\"],\")+\"a[href~=javascript:|#|[a-z]+[A-Z][a-z]+Id[=_-]|[^/][/?&]sub[A-Z]],a:matches(^$|最新章节$|^[^\\\\u4e00-\\\\u9fa5A-Z0-9]*(正文|.{0,2}书架|(免费|在线|开始|立即|全文|从头|点击|正文)+[试阅]读|[^\\\\s\\\\d外内楔前后卷篇章]*(更新调整|[两一二三四五六七八九十]+连更|作者[:：给要有]|双倍月票|感言|推书|推[a-z0-9A-Z_\\\\u4e00-\\\\u9fa5-]+书|[求个请投点下张](月?票|收藏|订阅|推荐)|(感谢|作者)[^\\\\s]*(读者|书友|大家|各位)|[书点]评[^\\\\s]*活动|[没有空]更新|没时间更新|请个?假|关于本书|关于更新|打赏名单|起点活动)[^\\\\s]*)[^\\\\u4e00-\\\\u9fa5A-Z0-9]*$)\");\n\nbook.putVariable(\"嗅\",(基=嗅())?(src=org.jsoup.Jsoup.parse((zt=/\\\\[Uu]([0-9a-zA-Z]{4})/.test(基=基[0]))?转(基):基),zt)?2:1:0);\nsrc.select(除).remove();\n\nif(zt=java.get(\"全\")!=1){\n找=ll=null;\n$=it=>(qc=ll,查=找,ll=src.select(找=it)).size()>14&&(查=it,src=re=ll);\n\nif(!(((ck=java.get(\"ck\"))!=\"\"&&$(\"[href~=\"+ck+\"(?!index(/|\\.[a-z]+)?$)[^.?/_-][^&/_-]*/?$|/[vV][iI][pP][_-]?([Rr]ead|[Cc]hapter)|([A-Za-z]\\\\d+|\\\\d[A-Za-z]+|[A-Z][a-z]+|[a-z][A-Z]+){3,}[^/?&]*$]\"))||$(\"[href~=^[a-z0-9]+(/|\\\\.[^./]+)?$]\"))){\nif(qc&&qc.size()>ll.size())找=查,ll=qc;\n\n$=it=>(re=src.select(it)).size()&&(查=it,src=re);\n\nif(!($(\"[data-cid]\")||$(\"[href~=(?i)(^|[/_-])(chapter|read)+([_-]?id)?/[^/_-]+[/_-][^/_-]+]\")||$(\"[href~=(?i)(^|[&?/_-](book|novel|comic|manhua|mh?)?)(chapter|read)+([_-]?id)?[?/=]]\")||$(\"[href~=(?i)[&?/_-]cid[&?/_=-]]\")||$(\"[data-href]\"))){\nsrc=兜();\nbook.putVariable(\"兜\",1);\n\nba=(ba=String(java.get(\"ba\"))).match(/(\\?(?:[^=]+=)+)(.+)$/)||ba.match(/(?:[^/_-][/_-]([^/._-]+))?[/_-]([^/._-]+)(?:\\/|\\/index[^/]*|\\.[^/.]+)?$/);\n\nif(xi=(id=ba[2]).match(/\\?[^=]+=([^&]+)/)||id.match(/^[^\\d%]*(\\d{2,}|[1-9])$/)||ba[1]&&ba[1].match(/^[^\\d%]*(\\d{2,})$/))id=xi[1];\n\n$(\"[href~=([^\\\\d]|^)\"+id+\"[/_&-][^\\\\d]*\\\\d+]:not([href~=\"+id+\"[^\\\\d]*$]),[href~=/[vV][iI][pP]|([A-Za-z]\\\\d+|\\\\d[a-zA-Z]+|[A-Z][a-z]+|[a-z][A-Z]+){3,}[^/?]*$|([^\\\\d]|^)\"+id+\"[/_&-][^\\\\d]*\"+id+\"(/|\\\\.[^.]+|&.+)?$]\")||$(\"[title]\")||$(\"[href~=/view/\\\\d+\\\\.[a-zA-Z]+$]\")}\nif(re.size()<ll.size())查=找,src=ll}}\n\nif(!(zt&&re.size()))src=src.select('a'),查='a';\nif(查)book.putVariable(\"查\",查);\nif(页)java.put(\"首\",src)}\n\nsrc}else if((list=java.get(\"单\"))!=1){\n\nif((网=String(list).split(\"🌕\")).length>1){\nfor(i=+网[2],x=+网[0],j=2,list=\"<a href='\"+baseUrl+\"'>正文1</a>\";i<=x;i++,j++)list+=\"<a href='\"+网[1]+i+网[3]+\"'>正文\"+j+\"</a>\"}\n\norg.jsoup.Jsoup.parse(list).select('a')\n\n}else [\"<a href='\"+baseUrl+\"'>正文</a>\"]",
      "chapterName": "text",
      "chapterUrl": "href@js:chapter.putVariable(\"next\",'a[href~=(?:^|[?/])'+(r=result.trim().replace(/([*$|?+\\\\\\^\\[\\](){}/])/g,'\\\\$1')).match(/[^?/=.]+(?:=(?![01]$)[^=]+)*(?=\\/?$|\\.[^?/.]+$|=[01]$)/)[0]+'[=/_-]2(?:\\\\/|\\\\.[^?/.]+)? *$]@href||a[href~=(?:^|[?/])'+r.replace(/\\d+(?=[^\\d]*$)/,it=>+it+1)+' *$]@href||');result+java.get(\"动\")",
      "isVip": "",
      "nextTocUrl": "@js:java.get(\"页\")",
      "updateTime": ""
    },
    "searchUrl": "so/,{\"charset\":\"gb2312\",\"method\":\"post\",\"body\":\"type=articlename&s=我的\",\"headers\":{\"User-Agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36\",\"Referer\":\"https://www.97k.cc\",\"Cookie\":\"PHPSESSID=1ubiqmnu4338er4mrrr421r3d6; Hm_lvt_a8551bad614bffddbf67de0bca31dfbe=1668393891; Hm_lpvt_a8551bad614bffddbf67de0bca31dfbe=1668393908\"},\"webView\":true}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁#15",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.kshuwx.com/",
    "customButton": false,
    "customOrder": 553,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1786189755720,
    "respondTime": 4420,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作    者：",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.list@tag.p.0@text",
      "kind": "id.info@tag.p.3@text##更新时间：",
      "lastChapter": "@css:[property=og:novel:latest_chapter_name]@content##免费章节 |正文卷 |正文 |VIP章节|卷1",
      "name": "id.info@tag.h1.0@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleContent": {
      "content": "class.content@html##您可以在百度里.*查找最新章节！|一秒记住.*无弹窗免费阅读！|百度搜索笔趣.*小说免费阅读。|高速文字手打.*http.*biquge.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "tag.td.0@tag.a@href",
      "lastChapter": "tag.td.1@tag.a@text##免费章节 |正文卷 |正文 |VIP章节|卷1",
      "name": "tag.td.0@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.kshuwx.com/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "晋江文学",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.jjwxc.net/free",
    "customButton": false,
    "customOrder": 555,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{title:'-------- 分类 --------',url:'',style:{layout_flexBasisPercent:1,  layout_flexGrow: 1}},\n{title:'现代无cp',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx5=5&mainview0=0&sd1=1&lx0=0&fg0=0&collectiontypes=ors&null=0&searchkeywords=&page={{page}}',style:{layout_flexBasisPercent:0.25,  layout_flexGrow: 1}},\n{title:'无cp',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx5=5&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&null=0&searchkeywords=&page={{page}}',style:{layout_flexBasisPercent:0.25,  layout_flexGrow: 1}},\n{title:'古代无cp',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx5=5&mainview0=0&sd2=2&lx0=0&fg0=0&collectiontypes=ors&null=0&searchkeywords=&page={{page}}',style:{layout_flexBasisPercent:0.25,  layout_flexGrow: 1}},\n{title:'现代GL',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd1=1&lx0=0&fg0=0&sortType=0&isfinish=0&collectiontypes=ors&searchkeywords=&page={{page}}',style:{layout_flexBasisPercent:0.25,  layout_flexGrow: 1}},\n{title:'GL',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&null=0&searchkeywords=&page={{page}}&isfinish=2',style:{layout_flexBasisPercent:0.25,  layout_flexGrow: 1}},\n{title:'古代GL',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd2=2&lx0=0&fg0=0&sortType=0&isfinish=0&collectiontypes=ors&searchkeywords=&page={{page}}',style:{layout_flexBasisPercent:0.25,  layout_flexGrow: 1}},\n{title:'现代BL',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd1=1&lx0=0&fg0=0&sortType=0&isfinish=0&collectiontypes=ors&searchkeywords=&page={{page}}',style:{layout_flexBasisPercent:0.25,  layout_flexGrow: 1}},\n{title:'BL',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&null=0&searchkeywords=&page={{page}}',style:{layout_flexBasisPercent:0.25,  layout_flexGrow: 1}},\n{title:'古代BL',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd2=2&lx0=0&fg0=0&collectiontypes=ors&null=0&searchkeywords=&page={{page}}',style:{layout_flexBasisPercent:0.25,  layout_flexGrow: 1}},\n{title:'现代言情',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx1=1&mainview0=0&sd1=1&lx0=0&fg0=0&collectiontypes=ors&null=0&searchkeywords=&page={{page}}',style:{layout_flexBasisPercent:0.25,  layout_flexGrow: 1}},\n{title:'言情',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx1=1&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&null=0&searchkeywords={{page}}',style:{layout_flexBasisPercent:0.25,  layout_flexGrow: 1}},\n{title:'古代言情',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx1=1&mainview0=0&sd2=2&lx0=0&fg0=0&collectiontypes=ors&null=0&searchkeywords=&page={{page}}',style:{layout_flexBasisPercent:0.25,  layout_flexGrow: 1}},\n{title:'-------- 排行榜 --------',url:'',style:{layout_flexBasisPercent:1,  layout_flexGrow: 1}},\n{title:'我的收藏',url:'https://m.jjwxc.net/my/fav?p={{page}}&r=1,{\"headers\":{  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"}}',style:{'layout_flexGrow': 1}},\n{title:'完结高分',url:'http://www.jjwxc.net/topten.php?orderstr=20&t=0',style:{'layout_flexGrow': 1}},\n{title:'新晋作者',url:'http://www.jjwxc.net/topten.php?orderstr=3',style:{'layout_flexGrow': 1}},\n{title:'月排行榜',url:'http://www.jjwxc.net/topten.php?orderstr=5',style:{'layout_flexGrow': 1}},\n{title:'季排行榜',url:'http://www.jjwxc.net/topten.php?orderstr=4',style:{'layout_flexGrow': 1}},\n{title:'半年排行',url:'http://www.jjwxc.net/topten.php?orderstr=6',style:{'layout_flexGrow': 1}},\n{title:'总分排行',url:'http://www.jjwxc.net/topten.php?orderstr=7',style:{'layout_flexGrow': 1}},\n{title:'字数排行',url:'http://www.jjwxc.net/topten.php?orderstr=8',style:{'layout_flexGrow': 1}},\n{title:'-------- 标签[百合] --------',url:'',style:{layout_flexBasisPercent:1,  layout_flexGrow: 1}},\n{title:'快穿',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq125=125&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'穿书',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq134=134&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'甜文',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq124=124&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'重生',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq75=75&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'爽文',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq137=137&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'系统',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq122=122&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'强强',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq19=19&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'星际',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq135=135&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'生子',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq20=20&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'校园',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq185=185&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'末世',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq81=81&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'女配',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq96=96&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'美食',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq99=99&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'异能',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq72=72&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'玄学',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq206=206&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'打脸',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq138=138&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'清穿',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq18=18&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'女强',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq82=82&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'直播',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq142=142&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'年下',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq21=21&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'武侠',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq11=11&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'逆袭',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq184=184&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'宫斗',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq74=74&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'日韩',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq86=86&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'婚恋',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq78=78&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'竞技',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq70=70&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'科举',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq174=174&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'萌宠',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq205=205&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'恐怖',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq29=29&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'机甲',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq97=97&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'科幻',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq28=28&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'洪荒',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq67=67&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'血族',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq69=69&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'宅斗',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq73=73&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'网红',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq141=141&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'成长',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq183=183&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'职场',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq98=98&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'经商',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq180=180&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'网配',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq84=84&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'美娱',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq140=140&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'商战',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq123=123&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'传奇',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq89=89&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'聊斋',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq188=188&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'婆媳',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq80=80&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'爱情',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx1=1&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'武侠',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx2=2&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'奇幻',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx3=3&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'仙侠',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx4=4&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'游戏',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx5=5&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'传奇',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx6=6&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'科幻',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx7=7&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'童话',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx8=8&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'惊悚',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx9=9&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'悬疑',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx10=10&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'剧情',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx16=16&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'娱乐圈',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq64=64&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'种田文',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq66=66&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'年代文',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq173=173&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'无限流',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq83=83&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'少年漫',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq90=90&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'古穿今',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq65=65&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'升级流',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq139=139&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'少女漫',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq14=14&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'原著向',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq93=93&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'姐弟恋',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq186=186&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'大冒险',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq198=198&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'轻小说',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx17=17&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'穿越时空',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq60=60&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'仙侠修真',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq68=68&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'豪门世家',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq33=33&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'随身空间',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq56=56&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'情有独钟',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq39=39&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'灵异神怪',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq26=26&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'破镜重圆',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq47=47&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'英美衍生',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq17=17&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'虐恋情深',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq42=42&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'青梅竹马',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq62=62&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'超级英雄',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq132=132&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'宫廷侯爵',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq32=32&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'异世大陆',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq57=57&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'悬疑推理',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq128=128&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'天作之合',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq52=52&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'天之骄子',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq54=54&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'游戏网游',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq92=92&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'都市情缘',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq30=30&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'性别转换',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq24=24&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'现代架空',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq126=126&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'未来架空',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq127=127&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'欢喜冤家',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq41=41&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'前世今生',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq49=49&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'幻想空间',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq25=25&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'复仇虐渣',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq145=145&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'东方玄幻',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq144=144&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'朝堂之上',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq178=178&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'奇幻魔幻',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq27=27&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'励志人生',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq121=121&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'民国旧影',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq61=61&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'布衣生活',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq38=38&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'业界精英',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq101=101&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'历史衍生',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq91=91&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'女扮男装',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq136=136&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'市井生活',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq175=175&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'古代幻想',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq189=189&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'西方罗曼',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq59=59&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'平步青云',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq55=55&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'相爱相杀',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq103=103&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'因缘邂逅',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq45=45&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'灵魂转换',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq23=23&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'魔法幻情',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq191=191&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'西方名著',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq16=16&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'江湖恩怨',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq35=35&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'异国奇缘',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq37=37&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'花季雨季',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq31=31&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'制服情缘',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq85=85&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'都市异闻',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq181=181&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'古典名著',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq130=130&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'近水楼台',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq46=46&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'亡灵异族',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq192=192&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'乔装改扮',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq51=51&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'小门小户',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq177=177&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'时代奇缘',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq22=22&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'史诗奇幻',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq199=199&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'阴差阳错',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq53=53&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'恋爱合约',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq48=48&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'异闻传说',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq196=196&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'边缘恋歌',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq44=44&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'三教九流',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq36=36&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'骑士与剑',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq63=63&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'七年之痒',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq79=79&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'授权衍生',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq148=148&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'异想天开',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq190=190&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'乡村爱情',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq58=58&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'爱情战争',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq50=50&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'时尚流行',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq182=182&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'时代新风',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq210=210&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'古典衍生',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx20=20&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'东方衍生',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx18=18&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'西方衍生',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx19=19&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}},\n{title:'其他衍生',url:'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx3=3&mainview0=0&sd0=0&lx21=21&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}',style:{'layout_flexGrow': 1}}]",
    "lastUpdateTime": 1765832298391,
    "loginUrl": "{\n  \"url\": \"http://m.jjwxc.net/\"\n}",
    "respondTime": 2924,
    "ruleBookInfo": {
      "coverUrl": "class.noveldefaultimage@src",
      "intro": "@js:\nli=String(java.getString('@@class.smallreadbody!0@span@text&&class.rightul.0@tag.li.1@text')).replace(/\\n/g,'•');\nintro=String(java.getString('@@id.novelintro.0@html'));\nresult=String(li+'\\n————————————————————'+intro);\na=result.replace(/作品视角/,'◎作品视角').replace(/\\s{2,}/g,'\\n').replace(/立意/,'◎立意').replace(/内容标签/,'    ◎标签').replace(/一句话简介/,'◎短简').replace(/搜索关键字：/,'◎').replace(/ ┃ /g,'\\n◎').replace(/•◎/g,'\\n◎').replace(/：•/,'：').replace(/(?:◎标签：|◎主角：|◎配角：|◎其它：|◎短简：|◎作品视角：)\\n/g,'').replace(/•$/gm,'')\n##手机地址：",
      "kind": "//*[@itemprop=\"updataStatus\"]/text()&&//*[@itemprop=\"genre\"]/text()&&//*[@itemprop=\"updataStatus\"]/font/text()##-##,",
      "lastChapter": "id.oneboolt@tag.tr.-2@tag.span.0@text&&id.oneboolt@tag.tr.-2@tag.td.-1@tag.span@text\n@js:result.replace(/\\n/g,'·').replace(/(.*?)\\[VIP\\]/,'🔒$1')",
      "name": "tag.title@text##《(.*?)》##$1###",
      "wordCount": "//span[@itemprop=\"wordCount\"]/text()"
    },
    "ruleContent": {
      "content": "class.b module@tag.li.0@textNodes&&class.b module@tag.li.1@textNodes##网友：|评分：|.*分\\｜.{4}",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "@js:if(baseUrl.match(/www/)){\njava.getElement(\"@@tag.a.0\").text()\n}else{java.getElement(\"@@tag.a.1\").text()}",
      "bookList": "tbody@tr!0||class.b module@tag.li!-1",
      "bookUrl": "@js:if(baseUrl.match(/www/)){\njava.getElement(\"@@tag.a.1\").attr(\"href\")\n}else{result=java.getElement(\"@@tag.a.0\").attr(\"href\");\nif(result.match(/\\/(\\d+)/)){\nvar id=result.match(/\\/(\\d+)/)[1]\nresult=\"http://www.jjwxc.net/onebook.php?novelid=\"+id}\nelse{result=java.getElement(\"@@tag.a.p\").attr(\"href\");}}",
      "coverUrl": "tag.td.2@a@href||tag.a.1@href@js:result.replace(/.+novelid=/, 'http:\\/\\/i9-static.jjwxc.net\\/novelimage.php?novelid=')",
      "intro": "class.tooltip@rel&&tag.td.1@a@title##<br>|标签：|简介：|size=\"\\d+\"",
      "kind": "{{@@tag.td.4@text}},{{@@tag.td.5@text}},{{@@tag.td.3@text}},{{@@tag.span@text}}##(\\d+)",
      "lastChapter": "tag.td.8@text||tag.td.-1@text",
      "name": "@js:if(baseUrl.match(/www/)){\nresult=java.getElement(\"@@tag.a.1\").text()\n}else{\na=String(result).match(/有更新/)?'🔥有更新':'';\nresult=String(java.getElement(\"@@tag.a.0\").text()).replace(/《|》/g,'')+a}",
      "wordCount": "tag.td.-3@text"
    },
    "ruleSearch": {
      "author": "tag.a.0@text",
      "bookList": "@css:tbody tr:lt(5)",
      "bookUrl": "tag.a.1@href",
      "intro": "tag.td.2@text",
      "kind": "font@text&&tag.td.3@text&&tag.td.5@text",
      "lastChapter": "<js>\nvar a=String(result).match(/href=\"(onebook.php\\?novelid=\\d+)/)[1];\nvar url=\"http://www.jjwxc.net/\"+a;\norg.jsoup.Jsoup.connect(url).get()</js>\nid.oneboolt@tag.tr.-2@tag.span.0@text##(.*?)\\[VIP\\]##🔒$1",
      "name": "tag.a.1@text"
    },
    "ruleToc": {
      "chapterList": "@css:tr[itemprop~=chapter]",
      "chapterName": "tag.font@text&&tag.a.0@text##\\[VIP\\]\\n*##🔒",
      "chapterUrl": "tag.a.0@href||tag.a.0@rel\n<js>\nid=result.match(/ovelid=(\\d+)&chapterid=(\\d+)/);\nif(String(chapter.title).indexOf('🔒')>-1){\nresult='https://wap.jjwxc.net/vip/'+id[1]+'/'+id[2]\n}else{\nresult='https://m.jjwxc.net/book2/'+id[1]+'/'+id[2]}\n</js>",
      "updateTime": "tag.td.3@text&&tag.td.2@text&&tag.span.-1@text\n@js:result.replace(/\\n/g,'·').replace(/·/,'字·')"
    },
    "searchUrl": "https://www.jjwxc.net/bookbase.php?searchkeywords={{key}}&page={{page}},{\n  \"charset\": \"gbk\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "制作 by 靈狐\napp\ncom.wbydq.txtreader\n同库\n追小说\n美萌小说\n无敌小说",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "️小说迷",
    "bookSourceType": 0,
    "bookSourceUrl": "https://pub.wowonongjia.com",
    "customButton": false,
    "customOrder": 557,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\"User-Agent\":\"okhttp/3.9.1\"}",
    "lastUpdateTime": 1785671746613,
    "respondTime": 6711,
    "ruleBookInfo": {
      "author": "book_author",
      "coverUrl": "book_cover",
      "init": "data",
      "intro": "&nbsp;评分：{{$.book_score}}\n点击：{{$.read_views}}\n标签：{{$.book_tag.*##\\n##,}}\n简介：{{$.book_intro}}",
      "kind": "{{$.cate_sub}},{{java.getString('book_role')=='male'?'男生':'女生'}},{{java.getString('is_finish')==0?'连载':'完结'}},{{$.time_update}}",
      "lastChapter": "chapter_last&&time_update##\\n##·",
      "name": "book_name",
      "tocUrl": "x_id@js:java.put('x_id',result);'/book/catalog/{{$._id}}'",
      "wordCount": "word_size"
    },
    "ruleContent": {
      "content": "chapter.body"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "book_author",
      "bookList": "data",
      "bookUrl": "/book/info/{{$._id}}",
      "coverUrl": "book_cover",
      "intro": "book_intro",
      "kind": "{{$.cate_sub}},{{$.book_score}}分,{{$.read_views}}点击",
      "name": "book_name",
      "wordCount": "word_size"
    },
    "ruleToc": {
      "chapterList": "data.chapter_list@js:java.put('url',java.getString('$..chapter_url'));result",
      "chapterName": "cp",
      "chapterUrl": "id@js:\ntime=Date.now()\ntoken=java.md5Encode(result+Math.floor(time/10000+5)+java.get('x_id'))\njava.get('url')+result+'?ts='+time+'&token='+token"
    },
    "searchUrl": "/search/return?query={{key}}&start={{page-1}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "天地中文",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.tiandizw.com",
    "concurrentRate": "1500",
    "customButton": false,
    "customOrder": 559,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全部::http://www.tiandizw.com/search.php/newindex?Paixu=0&page={{page}}\n玄幻::http://www.tiandizw.com/a2/b0/c0/d0?keyword=?page={{page}}\n奇幻::http://www.tiandizw.com/a3/b0/c0/d0?keyword=?page={{page}}\n武侠::http://www.tiandizw.com/a4/b0/c0/d0?keyword=?page={{page}}\n仙侠::http://www.tiandizw.com/a5/b0/c0/d0?keyword=?page={{page}}\n都市::http://www.tiandizw.com/a6/b0/c0/d0?keyword=?page={{page}}\n历史::http://www.tiandizw.com/a7/b0/c0/d0?keyword=?page={{page}}\n军事::http://www.tiandizw.com/a8/b0/c0/d0?keyword=?page={{page}}\n网游::http://www.tiandizw.com/a9/b0/c0/d0?keyword=?page={{page}}\n竞技::http://www.tiandizw.com/a10/b0/c0/d0?keyword=?page={{page}}\n科幻::http://www.tiandizw.com/a11/b0/c0/d0?keyword=?page={{page}}\n灵异::http://www.tiandizw.com/a12/b0/c0/d0?keyword=?page={{page}}\n同人::http://www.tiandizw.com/a13/b0/c0/d0?keyword=?page={{page}}\n\n\n新书榜::http://www.tiandizw.com/paihang/newbook/book?page={{page}}\n点击榜::http://www.tiandizw.com/paihang/newbook/views?page={{page}}\n订阅榜::http://www.tiandizw.com/paihang/newbook/dingyue?page={{page}}\n打赏榜::http://www.tiandizw.com/paihang/newbook/dashang?page={{page}}\n贡献榜::http://www.tiandizw.com/paihang/newbook/funs?page={{page}}\n字数榜::http://www.tiandizw.com/paihang/newbook/wordtotal?page={{page}}\n完结榜::http://www.tiandizw.com/paihang/newbook/finish?page={{page}}",
    "header": "{\n\t\"x-requested-with\": \"XMLHttpRequest\",\n\t\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.92 Safari/537.36\"\n}",
    "lastUpdateTime": 1769597429604,
    "respondTime": 10949,
    "ruleBookInfo": {
      "author": "[property$=author]@content||.row a.0@text",
      "coverUrl": "[property$=image]@content||img@src",
      "intro": "[property$=description]@content||.m-desc@html||meta[name=description]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content||.col-md-8.1@text",
      "name": "[property$=book_name]@content||h1@text",
      "tocUrl": "text.目录@href"
    },
    "ruleContent": {
      "content": "p@textNodes"
    },
    "ruleExplore": {
      "author": "class.content@tag.span.0@tag.a@text",
      "bookList": "class.list_details@li",
      "bookUrl": "class.content@h3@tag.a@href",
      "coverUrl": "tag.a.0@img@src",
      "intro": "class.intro@text",
      "lastChapter": "class.details@tag.span@a@text##最新章节",
      "name": "class.content@h3@tag.a@text",
      "wordCount": "class.content@tag.span.1@tag.a@text||##最新章节.*"
    },
    "ruleSearch": {
      "author": "class.content@tag.span.0@tag.a@text",
      "bookList": "class.list_details@li",
      "bookUrl": "class.content@h3@tag.a@href",
      "coverUrl": "tag.a.0@img@src",
      "intro": "class.intro@text",
      "lastChapter": "class.details@tag.span@a@text##最新章节",
      "name": "class.content@h3@tag.a@text",
      "wordCount": "class.content@tag.span.1@tag.a@text||##最新章节.*"
    },
    "ruleToc": {
      "chapterList": "class.mulu_list@li",
      "chapterName": "tag.a@text##VIP##🔒",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.tiandizw.com/search.php/newindex?keyword={{key}}&Paixu=0&page={{page}}",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.ibiquzw.info#🎃",
    "bookUrlPattern": "http://m.ibiquzw.info/[\\d_]+/",
    "customButton": false,
    "customOrder": 560,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全部::/xclass/0/{{page}}.html\n玄幻奇幻::/xclass/1/{{page}}.html\n修真仙侠::/xclass/2/{{page}}.html\n都市青春::/xclass/3/{{page}}.html\n历史军事::/xclass/4/{{page}}.html\n网游竞技::/xclass/5/{{page}}.html\n科幻灵异::/xclass/6/{{page}}.html\n其它::/xclass/7/{{page}}.html\n全本::/quanben0_{{page}}.html\n其它::/quanben7_{{page}}.html\n玄幻奇幻::/quanben1_{{page}}.html\n修真仙侠::/quanben2_{{page}}.html\n都市青春::/quanben3_{{page}}.html\n历史军事::/quanben4_{{page}}.html\n网游竞技::/quanben5_{{page}}.html\n科幻灵异::/quanben6_{{page}}.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1720835119180,
    "respondTime": 3244,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "init": "@put:{n:\"[property$=book_name]@content\",\na:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property$=latest_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"[property$=image]@content\"}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}"
    },
    "ruleContent": {
      "content": "#chaptercontent@textNodes",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##{{try{chapter.title}catch(e){\"\"} }}|\n\\(第\\d+.+页\\)"
    },
    "ruleExplore": {
      "author": "p.author@text",
      "bookList": ".hot_sale",
      "bookUrl": "a@href",
      "coverUrl": "img@data-original",
      "intro": "p.-1@text##简介：",
      "kind": ".score@text",
      "name": "p.title@text"
    },
    "ruleSearch": {
      "author": "p.author a.1@text",
      "bookList": ".hot_sale",
      "bookUrl": "a.0@href",
      "checkKeyWord": "剑来",
      "kind": "p.-1@textNodes##\\|.*\\s##,",
      "lastChapter": "a.-1@text",
      "name": "p.title@text"
    },
    "ruleToc": {
      "chapterList": "#chapterlist p!0@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://m.ibiquzw.info/SearchBook.php?keyword={{key}}",
    "weight": 80
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "入殓师",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.rulianshi.la/",
    "customButton": false,
    "customOrder": 561,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1734832225931,
    "respondTime": 5397,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "[property=\"og:novel:read_url\"]@content",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "class.nr_nr@tag.div.1@textNodes",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "",
      "sourceRegex": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "p.3@text##作者：",
      "bookList": "class.block",
      "bookUrl": "a.0@href",
      "checkKeyWord": "我的",
      "coverUrl": "img@src",
      "kind": "p.2@text##分类：",
      "lastChapter": "p.4@tag.a@text",
      "name": "h2@text"
    },
    "ruleToc": {
      "chapterList": "class.cover@tag.ul.1@tag.a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "text.下一页@href",
      "preUpdateJs": ""
    },
    "searchUrl": "s.php?q={{key}}&submit=",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "全本同人小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.qbtr.me#",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 562,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "同人小说::/tongren/<,index_{{page}}.html>\n常规小说::/changgui/<,index_{{page}}.html>\n同人榜单::/hot/<,index_{{page}}.html>",
    "header": "",
    "lastUpdateTime": 1716234407720,
    "loginUrl": "",
    "respondTime": 10702,
    "ruleBookInfo": {
      "author": ".date span@text##.*：",
      "coverUrl": ".pic img@src",
      "init": "",
      "intro": ".infos p@html",
      "kind": ".menNav a.1@text&&.date@textNodes##.*：|小说",
      "lastChapter": ".book_list a.-1@text",
      "name": ".infos h1@text##\\(\\S+"
    },
    "ruleContent": {
      "content": ".read_chapterDetail@html",
      "nextContentUrl": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": ""
    },
    "ruleSearch": {
      "author": ".booknews@ownText##.*：",
      "bookList": ".bk",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": "p@text##简介.",
      "kind": "label@text",
      "lastChapter": "h3@text##\\S+\\(|\\)",
      "name": "h3@text##\\(\\S+"
    },
    "ruleToc": {
      "chapterList": ".book_list a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/e/search/index.php,{\n  \"charset\": \"gb2312\",\n  \"method\": \"POST\",\n  \"body\": \"keyboard={{key}}&show=title&classid=0\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "56书库",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.56pinshu.net",
    "customButton": false,
    "customOrder": 563,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻魔法::/leibie1_{{page}}.shtml\n武侠修真::/leibie2_{{page}}.shtml\n都市言情::/leibie3_{{page}}.shtml\n历史军事::/leibie4_{{page}}.shtml\n侦探推理::/leibie5_{{page}}.shtml\n游戏竞技::/leibie6_{{page}}.shtml\n科幻小说::/leibie7_{{page}}.shtml\n恐怖灵异::/leibie8_{{page}}.shtml\n散文诗词::/leibie9_{{page}}.shtml\n其他类型::/leibie10_{{page}}.shtml\n完本小说::/wanben1_{{page}}.shtml\n最近更新::/lastupdate/{{page}}.shtml\n最新新书::/postdate/{{page}}.shtml\n日点击榜::/dayvisit/{{page}}.shtml\n周点击榜::/weekvisit/{{page}}.shtml\n月点击榜::/monthvisit/{{page}}.shtml\n总点击榜::/allvisit/{{page}}.shtml\n日推荐榜::/dayvote/{{page}}.shtml\n周推荐榜::/weekvote/{{page}}.shtml\n月推荐榜::/monthvote/{{page}}.shtml\n总推荐榜::/allvote/{{page}}.shtml\n字数排行::/size/{{page}}.shtml\n总收藏榜::/goodnum/{{page}}.shtml\n本站推荐::/toptime/{{page}}.shtml",
    "lastUpdateTime": 1782367946150,
    "respondTime": 1797,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "id.content@html##本书由.*转载！",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "##作者：([^<]+)<##$1###",
      "bookList": "id.alistbox",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "tag.img@src",
      "intro": "class.intro@textNodes",
      "lastChapter": "tag.a.2@text",
      "name": "tag.a.1@text"
    },
    "ruleSearch": {
      "author": "tag.span.2@text",
      "bookList": "id.articlelist@tag.li!0",
      "bookUrl": "tag.a@href",
      "coverUrl": "tag.a.0@href##.+\\D((\\d+)\\d{3})\\D##http://www.pingshuku.com/files/article/image/$2/$1/$1s.jpg###",
      "lastChapter": "tag.a.1@text",
      "name": "tag.a.0@text",
      "wordCount": "tag.span.3@text"
    },
    "ruleToc": {
      "chapterList": "class.dccss@tag.a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php,{\n\"method\": \"POST\",\n\"body\": \"searchkey={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "红薯小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://g.hongshu.com/",
    "customButton": false,
    "customOrder": 564,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "爱情婚姻::bookajax/search.do?method=search&classids=1&paegsize=20&sex_flag=nan&pagenum={{page}}\n商战风云::bookajax/search.do?method=search&classids=2&paegsize=20&sex_flag=nan&pagenum={{page}}\n职场励志::bookajax/search.do?method=search&classids=3&paegsize=20&sex_flag=nan&pagenum={{page}}\n官场沉浮::bookajax/search.do?method=search&classids=4&paegsize=20&sex_flag=nan&pagenum={{page}}\n现实百态::bookajax/search.do?method=search&classids=5&paegsize=20&sex_flag=nan&pagenum={{page}}\n八卦杂谈::bookajax/search.do?method=search&classids=6&paegsize=20&sex_flag=nan&pagenum={{page}}\n东方玄幻::bookajax/search.do?method=search&classids=13&paegsize=20&sex_flag=nan&pagenum={{page}}\n异世大陆::bookajax/search.do?method=search&classids=14&paegsize=20&sex_flag=nan&pagenum={{page}}\n西方奇幻::bookajax/search.do?method=search&classids=15&paegsize=20&sex_flag=nan&pagenum={{page}}\n异术超能::bookajax/search.do?method=search&classids=16&paegsize=20&sex_flag=nan&pagenum={{page}}\n奇幻修真::bookajax/search.do?method=search&classids=17&paegsize=20&sex_flag=nan&pagenum={{page}}\n古典仙侠::bookajax/search.do?method=search&classids=18&paegsize=20&sex_flag=nan&pagenum={{page}}\n架空历史::bookajax/search.do?method=search&classids=19&paegsize=20&sex_flag=nan&pagenum={{page}}\n历史传纪::bookajax/search.do?method=search&classids=20&paegsize=20&sex_flag=nan&pagenum={{page}}\n谈古论今::bookajax/search.do?method=search&classids=21&paegsize=20&sex_flag=nan&pagenum={{page}}\n军事战争::bookajax/search.do?method=search&classids=22&paegsize=20&sex_flag=nan&pagenum={{page}}\n军旅生活::bookajax/search.do?method=search&classids=23&paegsize=20&sex_flag=nan&pagenum={{page}}\n抗战烽火::bookajax/search.do?method=search&classids=24&paegsize=20&sex_flag=nan&pagenum={{page}}\n未来世界::bookajax/search.do?method=search&classids=25&paegsize=20&sex_flag=nan&pagenum={{page}}\n星际战争::bookajax/search.do?method=search&classids=26&paegsize=20&sex_flag=nan&pagenum={{page}}\n古武机甲::bookajax/search.do?method=search&classids=27&paegsize=20&sex_flag=nan&pagenum={{page}}\n灵异奇谈::bookajax/search.do?method=search&classids=28&paegsize=20&sex_flag=nan&pagenum={{page}}\n恐怖惊悚::bookajax/search.do?method=search&classids=29&paegsize=20&sex_flag=nan&pagenum={{page}}\n悬疑探险::bookajax/search.do?method=search&classids=30&paegsize=20&sex_flag=nan&pagenum={{page}}\n其他类别::bookajax/search.do?method=search&classids=31&paegsize=20&sex_flag=nan&pagenum={{page}}\n都市异能::bookajax/search.do?method=search&classids=32&paegsize=20&sex_flag=nan&pagenum={{page}}\n转世重生::bookajax/search.do?method=search&classids=33&paegsize=20&sex_flag=nan&pagenum={{page}}\n经典武侠::bookajax/search.do?method=search&classids=34&paegsize=20&sex_flag=nan&pagenum={{page}}\n侦探推理::bookajax/search.do?method=search&classids=35&paegsize=20&sex_flag=nan&pagenum={{page}}\n末日危临::bookajax/search.do?method=search&classids=36&paegsize=20&sex_flag=nan&pagenum={{page}}\n电子竞技::bookajax/search.do?method=search&classids=37&paegsize=20&sex_flag=nan&pagenum={{page}}\n虚拟网游::bookajax/search.do?method=search&classids=38&paegsize=20&sex_flag=nan&pagenum={{page}}\n体育竞技::bookajax/search.do?method=search&classids=39&paegsize=20&sex_flag=nan&pagenum={{page}}\n现代修真::bookajax/search.do?method=search&classids=40&paegsize=20&sex_flag=nan&pagenum={{page}}\n男人气榜::bookajax/search.do?method=search&sortby=lastweek_salenum&paegsize=20&sex_flag=nan&pagenum={{page}}\n男新书榜::bookajax/search.do?method=search&paegsize=20&sex_flag=nan&pagenum={{page}}\n女人气榜::bookajax/search.do?method=search&sortby=lastweek_salenum&paegsize=20&sex_flag=nu&pagenum={{page}}\n女新书榜::bookajax/search.do?method=search&sortby=&paegsize=20&sex_flag=nu&pagenum={{page}}",
    "lastUpdateTime": 1785477621686,
    "loginUrl": "https://g.hongshu.com/userlogin",
    "respondTime": 1854,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": ".rdtext@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "@json:$.authorname",
      "bookList": "<js>\nif (result.search('jsonp3') != -1) {\n    result.match(/jsonp3\\((.*)\\)/)[1]\n} else {\n    result\n}\n</js>\n@json:$..bookinfo[*]",
      "bookUrl": "@js:\nsource.bookSourceUrl + \"bookajax/chapterlist/bid/{{$.bid}}.do?bid={{$.bid}}&pagesize=50&sortby=ASC&pagenum=1\"",
      "coverUrl": "@json:$.bookface",
      "intro": "@json:$.intro",
      "kind": "@json:{$.classname}&&{$.tag[*]}",
      "lastChapter": "@json:$.last_update_title",
      "name": "@json:$.catename"
    },
    "ruleToc": {
      "chapterList": "@json:$..list[*]",
      "chapterName": "@json:$.title",
      "chapterUrl": "@js:\nlet path = \"content/{{$..bid}}/{{$.chapterid}}.html,\";\n\nlet option = {\n\t\"method\": \"GET\"\n};\n\njava.put(\"url\",String(source.bookSourceUrl + path + JSON.stringify(option)))",
      "nextTocUrl": "@js:\nvar n=JSON.parse(result);\nn=n.totalpage;\nbaseUrl=baseUrl.replace(/(.+pagenum=)\\d+/,'$1');\nvar list=[];\nfor(var i=2;i<=n;i++){\nvar url=baseUrl+i;\nlist.push(url);\n}\nlist"
    },
    "searchUrl": "bookajax/search.do?keyword={{key}}&keywordtype=1&free=0&finish=0&charnum=0&updatetime=0&order=0&copyright=1&pagesize=10&sex_flag=nan&pagenum=1&Pclassids=0&callback=jsonp3",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "栀子欢波",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.zhizihuan.com#♤yc",
    "customButton": false,
    "customOrder": 566,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"穿越架空\",\"url\":\"/list1_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总裁豪门\",\"url\":\"/list2_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"女强重生\",\"url\":\"/list3_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"废柴逆袭\",\"url\":\"/list4_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻仙侠\",\"url\":\"/list5_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"种田经商\",\"url\":\"/list6_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市婚恋\",\"url\":\"/list7_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"出版精品\",\"url\":\"/list8_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"爱上诡夫\",\"url\":\"/list11_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"青春校园\",\"url\":\"/list12_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"东方玄幻\",\"url\":\"/list13_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市生活\",\"url\":\"/list14_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"奇闻异事\",\"url\":\"/list15_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"异术超能\",\"url\":\"/list19_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"重生异能\",\"url\":\"/list111_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"推理悬疑\",\"url\":\"/list114_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"宫斗宅斗\",\"url\":\"/list117_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"快穿小说\",\"url\":\"/list121_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"魔法科幻\",\"url\":\"/list122_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"异世大陆\",\"url\":\"/list125_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"魔法校园\",\"url\":\"/list126_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"西方奇幻\",\"url\":\"/list127_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏竞技\",\"url\":\"/list130_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代修真\",\"url\":\"/list132_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古典仙侠\",\"url\":\"/list133_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"传统武侠\",\"url\":\"/list134_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代武侠\",\"url\":\"/list135_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"娱乐圈\",\"url\":\"/list136_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"年代小说\",\"url\":\"/list137_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古代其他\",\"url\":\"/list999_0_0_0_0_2_{{page}}_ajax.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1766150600816,
    "loginUrl": "http://login.zhizihuan.com/login/m?url=http%3a%2f%2fuser.zhizihuan.com%2fdefault%2fm",
    "respondTime": 63096,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "#htmljieshao@html##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content##\\s.*",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": ".g_btn a@href"
    },
    "ruleContent": {
      "content": "#htmlContent@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "p.1@textNodes##.*：",
      "bookList": ".column-2",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "kind": "span@text&&p.3@text##.*：|\\s.*",
      "lastChapter": "p.2@text",
      "name": "p.0@text"
    },
    "ruleToc": {
      "chapterList": ".list_li li a",
      "chapterName": "text",
      "chapterUrl": "href##$##,{'webView': true}",
      "isVip": "font@text"
    },
    "searchUrl": "http://s.zhizihuan.com/m/?key={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "365小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.shukuge.com/",
    "customButton": false,
    "customOrder": 567,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::http://www.shukuge.com/i-xuanhuan/{{page}}&&言情::http://www.shukuge.com/i-yanqing/{{page}}&&穿越::http://www.shukuge.com/i-chuanyue/{{page}}&&重生::http://www.shukuge.com/i-chongsheng/{{page}}&&架空::http://www.shukuge.com/i-jiakong/{{page}}&&总裁::http://www.shukuge.com/i-zongcai/{{page}}&&武侠::http://www.shukuge.com/i-wuxia/{{page}}&&仙侠::http://www.shukuge.com/i-xianxia/{{page}}&&耽美::http://www.shukuge.com/i-danmei/{{page}}&&都市::http://www.shukuge.com/i-dushi/{{page}}&&军事::http://www.shukuge.com/i-junshi/{{page}}&&网游::http://www.shukuge.com/i-wangyou/{{page}}&&悬疑::http://www.shukuge.com/i-xuanyi/{{page}}&&文学::http://www.shukuge.com/i-wenxue/{{page}}&&科幻::http://www.shukuge.com/i-kehuan/{{page}}&&修真::http://www.shukuge.com/i-xiuzhen/{{page}}&&历史::http://www.shukuge.com/i-lishi/{{page}}&&其他::http://www.shukuge.com/i-qita/{{page}}&&短篇::http://www.shukuge.com/i-duanpian/{{page}}&&中篇::http://www.shukuge.com/i-zhongpian/{{page}}&&长篇::http://www.shukuge.com/i-changpian/{{page}}&&最新::http://www.shukuge.com/new/{{page}}",
    "lastUpdateTime": 1772391823781,
    "respondTime": 2854,
    "ruleBookInfo": {
      "author": ".bookdmore@p.2@a@text",
      "coverUrl": ".bookdcover@img@src",
      "intro": ".bookdtext@p.0@text",
      "kind": ".bookdmore@p.0@a@text",
      "lastChapter": ".bookdmore@p.6@a@text",
      "name": ".bookd-title@text##TXT全集",
      "tocUrl": ".bookdtext@p.6@a@href"
    },
    "ruleContent": {
      "content": "#content@textNodes##投推荐票|上一章|←|章节目录|→|下一章|加入书签",
      "title": ".bookd-title@text##作者：[\\u4e00-\\u9fa5]+|更新时间：[\\d]{4}-[\\d]{2}-[\\d]{2}|[\\d]{2}:[\\d]{2}:[\\d]{2}"
    },
    "ruleExplore": {
      "author": ".sp@span.0@a@text",
      "bookList": ".listitem",
      "bookUrl": ".bookdesc@a@href",
      "coverUrl": "img@src",
      "intro": ".bookdesc@p.2@text##简介：",
      "kind": ".sp@span.1@text##分类：",
      "lastChapter": ".bookdesc@p.1@a@text",
      "name": ".bookdesc@h2@text"
    },
    "ruleSearch": {
      "author": ".sp@span.0@text##作者：",
      "bookList": ".listitem",
      "bookUrl": ".bookdesc@a@href",
      "coverUrl": "img@src",
      "intro": ".desc.1@text##简介：",
      "kind": ".sp@span.1@text##分类：",
      "lastChapter": ".desc.0@text##最新章节：",
      "name": ".bookdesc@h2@text"
    },
    "ruleToc": {
      "chapterList": ".box_con@dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "Search?wd={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁#27",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.x520xs.com",
    "customButton": false,
    "customOrder": 568,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻魔法::/sort/1/{{page}}/\n武侠修真::/sort/2/{{page}}/\n都市言情::/sort/3/{{page}}/\n历史军事::/sort/4/{{page}}/\n科幻灵异::/sort/5/{{page}}/\n游戏竞技::/sort/6/{{page}}/\n女生耽美::/sort/7/{{page}}/\n其他类型::/sort/8/{{page}}/",
    "lastUpdateTime": 1787070683406,
    "respondTime": 2945,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "🔔 更新时间：{{@@[property=\"og:novel:update_time\"]@content##\\s##🔸}}\n\n📂 内容简介：{{@@[property=\"og:description\"]@content##.*由作家.*创作，|笔趣阁新站.*章节}}##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "[property~=category|status|update_time]@content##\\s.*",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "#rtext p@html",
      "nextContentUrl": "#linkNext@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author.0@text",
      "bookList": ".bookbox",
      "bookUrl": "a.0@href",
      "intro": ".update@textNodes",
      "lastChapter": ".cat a@text",
      "name": "h4@text",
      "wordCount": ".author.1@text##.*："
    },
    "ruleToc": {
      "chapterList": "#list-chapterAll dd a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "{{cookie.removeCookie(source.getKey())}}\nhttps://www.x520xs.com/search/,{\n  \"body\": \"searchkey={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "天域小说#3",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.tycqzw.la/",
    "bookUrlPattern": "https://www.tycqzw.la/\\d+_\\d+/",
    "customButton": false,
    "customOrder": 572,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"全部小说\",\"url\":\"https://m.tycqzw.la/xclass/0/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"玄幻小说\",\"url\":\"https://m.tycqzw.la/xclass/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"修真小说\",\"url\":\"https://m.tycqzw.la/xclass/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"都市小说\",\"url\":\"https://m.tycqzw.la/xclass/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"穿越小说\",\"url\":\"https://m.tycqzw.la/xclass/4/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"网游小说\",\"url\":\"https://m.tycqzw.la/xclass/5/{{page}}.html\",\"style\":{\"layout_flexGrow\":0.25}},{\"title\":\"科幻小说\",\"url\":\"https://m.tycqzw.la/xclass/6/{{page}}.html\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}},{\"title\":\"其他小说\",\"url\":\"https://m.tycqzw.la/xclass/7/{{page}}.html\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.29}}]",
    "lastUpdateTime": 1786586500834,
    "loginUrl": "",
    "respondTime": 13279,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作\\s*者：",
      "coverUrl": "id.fmimg@tag.img@src",
      "init": "",
      "intro": "id.intro@text",
      "kind": "[property=og:novel:update_time]@content&&\n[property=og:novel:category]@content&&\n[property=og:novel:status]@content",
      "lastChapter": "id.list@tag.dd.0@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.info@tag.h1.0@text"
    },
    "ruleContent": {
      "content": "id.content@html##推荐.*新书.*|手机用户.*阅读体验。"
    },
    "ruleExplore": {
      "author": "class.author@text##作者：",
      "bookList": "class.hot_sale",
      "bookUrl": "tag.a.0@href@js:\nr=result.match(/_(\\d+)/)\nid=r[1]\nvar iid = parseInt(id/1000);\n'https://www.tycqzw.la/'+iid+'_'+id+'/'",
      "coverUrl": "img@data-original",
      "intro": "class.review@text##简介：",
      "lastChapter": "",
      "name": "class.title@text"
    },
    "ruleSearch": {
      "author": "class.even.1@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "class.even.0@tag.a.0@href",
      "coverUrl": "class.even.0@tag.a.0@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.tycqzw.la/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "class.odd.0@tag.a.0@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.even.0@tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd@tag.a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "海棠书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://wap.haitangshuwu.info",
    "customButton": false,
    "customOrder": 573,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvar menus = [\n    { title: \"完本\", url: \"/full/{{page}}/\", flexBasis: 1 },\n    \n    { title: \"════ 排 行 ════\", url: \"\", flexBasis: 1 },\n    \n    { title: \"总点击\", url: \"/top/allvisit_{{page}}/\", flexBasis: 0.2 },\n    { title: \"月点击\", url: \"/top/monthvisit_{{page}}/\", flexBasis: 0.2 },\n    { title: \"周点击\", url: \"/top/weekvisit_{{page}}/\", flexBasis: 0.2 },\n    \n    { title: \"════ 分 类 ════\", url: \"\", flexBasis: 1 },\n    \n    { title: \"玄幻奇幻\", url: \"/sort/1_{{page}}/\", flexBasis: 0.25 },\n    { title: \"武侠仙侠\", url: \"/sort/2_{{page}}/\", flexBasis: 0.25 },\n    { title: \"都市言情\", url: \"/sort/3_{{page}}/\", flexBasis: 0.25 },\n    { title: \"历史穿越\", url: \"/sort/4_{{page}}/\", flexBasis: 0.25 },\n    \n    { title: \"网游竞技\", url: \"/sort/5_{{page}}/\", flexBasis: 0.25 },\n    { title: \"科幻灵异\", url: \"/sort/6_{{page}}/\", flexBasis: 0.25 },\n    { title: \"恐怖惊悚\", url: \"/sort/7_{{page}}/\", flexBasis: 0.25 },\n    { title: \"其他类型\", url: \"/sort/8_{{page}}/\", flexBasis: 0.25 }\n];\n\nvar result = [];\nfor (var i = 0; i < menus.length; i++) {\n    var item = menus[i];\n    var style = {\n        layout_flexGrow: 1,\n        layout_flexBasisPercent: item.flexBasis\n    };\n    \n    result.push({\n        title: item.title,\n        url: item.url,\n        style: style\n    });\n}\n\nJSON.stringify(result);",
    "lastUpdateTime": 1785664944946,
    "respondTime": 6370,
    "ruleBookInfo": {
      "author": "class.xx@ul@li.2@text",
      "coverUrl": "class.xsfm@img@src",
      "intro": "class.jianjie@text",
      "kind": "class.xx@ul@li.1@a@text",
      "lastChapter": "class.xx@ul@li.3@a@text",
      "name": "class.xx@ul@li.0@text",
      "tocUrl": "text.查看更多章节@href"
    },
    "ruleContent": {
      "content": "article@html@js:java.t2s(result)"
    },
    "ruleExplore": {
      "author": "span.1@a@text",
      "bookList": "class.list@ul",
      "bookUrl": "li.0@a@href",
      "coverUrl": "li.0@a@img@src",
      "intro": "span.2@text",
      "kind": "span.3@text",
      "name": "span.0@text"
    },
    "ruleSearch": {
      "author": "@a.2@text",
      "bookList": "class.fk@li",
      "bookUrl": "@a.1@href",
      "kind": "@a.0@text",
      "name": "@a.1@text"
    },
    "ruleToc": {
      "chapterList": "class.zjlb@class.lb@ul@li!-1",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "class.showpage@ul@li.-3@a@href\n<js>\nlet list = [];\nconst maxPageUrl = String(result[0]);\nconst baseMatch = maxPageUrl.match(/(.*)_/);\nconst pageMatch = maxPageUrl.match(/_(\\d+)\\//);\n\nif (baseMatch && pageMatch) {\n    const basePath = baseMatch[1];\n    const maxPageNum = parseInt(pageMatch[1]);\n    \n    if (maxPageNum > 2) {\n        for (let pageIndex = 2; pageIndex <= maxPageNum; pageIndex++) {\n            list.push(`${basePath}_${pageIndex}/`);\n        }\n    }\n}\nlist;\n</js>"
    },
    "searchUrl": "https://wap.haitangshuwu.info/s.php,{\n  \"body\": \"submit=&type=articlename&s={{key}}\",\n  \"charset\": \"GBK\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎃逐浪小说🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.zhulang.com#🎃",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 574,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "",
    "header": "",
    "lastUpdateTime": 0,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 2199,
    "ruleBookInfo": {
      "author": "class.yellow@text",
      "canReName": "",
      "coverUrl": "class.bk-info@img@data-src",
      "init": "",
      "intro": "id.bk-brief@p@text",
      "kind": "",
      "lastChapter": "",
      "name": "tag.h3.0@text",
      "tocUrl": "text.开始阅读@href",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "class.rd-txt@p@text",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": "",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "h4@text",
      "bookList": "id.ret-list@li",
      "bookUrl": "a@href",
      "coverUrl": "img@data-src",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": "h3@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "class.idx-ol@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "class.blue.0@option!0@value",
      "updateTime": ""
    },
    "searchUrl": "https://m.zhulang.com/search/index.html?k={{key}}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "米读小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://api.midukanshu.com#",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 575,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "",
    "header": "",
    "lastUpdateTime": 1721279553751,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 461,
    "ruleBookInfo": {
      "author": "",
      "canReName": "",
      "coverUrl": "",
      "init": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": "",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "$..content",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": "",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.data.*",
      "bookUrl": "$.book_id@js:\"https://book.midukanshu.com/book/chapter_list/100/\" + result + \".txt\"",
      "coverUrl": "$.cover",
      "intro": "$.description##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "$.category&&{$.score}分",
      "lastChapter": "第{$.chapterNum}章",
      "name": "$.title",
      "wordCount": "$.word_count"
    },
    "ruleToc": {
      "chapterList": "$.[*]",
      "chapterName": "$.title",
      "chapterUrl": "https://book.midukanshu.com/book/chapter/segment/master/{$.bookId}_{$.chapterId}.txt?md5={$.content_md5}",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "/fiction/search/search,{\n  \"method\": \"POST\",\n  \"body\": \"device=865166023475380&app=midu&keyword={{key}}&page={{page}}\"\n}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "最终小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.zuizhong.net/",
    "customButton": false,
    "customOrder": 576,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1785665072370,
    "respondTime": 7759,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "text.目录@href@"
    },
    "ruleContent": {
      "content": ".info_dv1@p[1:-2]@text",
      "nextContentUrl": "text.下一@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a.1@text",
      "bookList": ".txt-list@li",
      "bookUrl": "a.0@href",
      "kind": ".s1@text##[\\[\\]]",
      "lastChapter": "a.2@text",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": ".info_dv3.1@ul@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option[selected]+option@value"
    },
    "searchUrl": "<js>cookie.removeCookie(source.key);</js>\nhttps://www.zuizhong.net/search.html,{\"method\":\"POST\",\"body\":\"s={{key}}\"}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "影书小说（+++）",
    "bookSourceType": 0,
    "bookSourceUrl": "https://wap.yingsx.com",
    "customButton": false,
    "customOrder": 577,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"榜单\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"月点击\",\"url\":\"/top/monthvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"周点击\",\"url\":\"/top/weekvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"总点击\",\"url\":\"/top/allvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻奇幻 \",\"url\":\"/sort/1_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"修真仙侠 \",\"url\":\"/sort/2_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"青春都市 \",\"url\":\"/sort/3_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"历史穿越 \",\"url\":\"/sort/4_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"网游竞技 \",\"url\":\"/sort/5_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"科幻悬疑 \",\"url\":\"/sort/6_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1787282359109,
    "respondTime": 5390,
    "ruleBookInfo": {
      "author": ".xx@a.1@text",
      "coverUrl": ".xsfm@img@src",
      "intro": ".jianjie@p@html",
      "kind": "[property~=category|status|update_time]@content##\\s..:.*",
      "lastChapter": ".xx@a.2@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": ".xx@li.0@text",
      "tocUrl": ".gengduo@a@href"
    },
    "ruleContent": {
      "content": "id.nr@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##\\s*.*点击下一页.*\\s*"
    },
    "ruleExplore": {
      "author": "a.2@text",
      "bookList": ".xbk",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": "span.2@text",
      "name": "a.1@text",
      "wordCount": ".tjrs@text"
    },
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": "ul.fk@li",
      "bookUrl": "a.1@href",
      "coverUrl": "a.1@href##.+\\D((\\d+)\\d{3})\\D##https://www.yingsx.com/files/article/image/$2/$1/$1s.jpg###",
      "kind": "a.0@text##\\[|\\]",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": ".lb@li",
      "chapterName": "text##.*章节列表.*|正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "a@href",
      "nextTocUrl": "class.bt-next@span@a@href"
    },
    "searchUrl": "/s.php,{\n  \"charset\": \"utf-8\",\n  \"method\": \"post\",\n  \"body\": \"type=articlename&s={{key}}&submit=\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "拼接目录链接\n{{baseUrl}}##(.*)www(.*)read(.*)##$1m$2novel/list$31.html\n拼接目录链接<js>\nbase=\"https://www.po18.xyz/read/\";\ntry{\n$=result.match(/(\\d+),(\\d+)\\)/)\nurl=base+$[2]+\"/\"+$[1]+\"/\";\n}catch(error){\n\ttry{\n$=result.match(/(\\d+)\\/(\\d+)\\/$/)\nurl=base+$[1]+\"/\"+$[2]+\"/\";\n}catch(anotherError){\n\turl=\"。。\";\n}\n}\nurl;\n</js>\n目录列表顺序规则\n*:matches(章节列表)~dd a\n@js:\ntxt=`$(result)`.replace(/\".*?(\\d+)(\\/|,.*?)\"/g,\"$1/\").split(\"\\n\").sort();\n目录列表顺序规则\n<js>\na=java.getElements('//dt[@id=\"chapter_list\"] /following-sibling:dd/a');\nfor(i=0,list=[];i<a.length;i+=3){\nif(a[i+2]){list.push(a[i+2])}\nif(a[i+1]){list.push(a[i+1])}\nif(a[i]){list.push(a[i])}\n}\nlist\n</js>",
    "bookSourceGroup": "🔞",
    "bookSourceName": "PO18",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.po18.xyz",
    "customButton": false,
    "customOrder": 578,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"☑️排行\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"总收藏榜\",\"url\":\"/top/goodnum_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"最新入库\",\"url\":\"/top/postdate_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"最近更新\",\"url\":\"/top/lastupdate_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总排行榜\",\"url\":\"/top/allvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"月排行榜\",\"url\":\"/top/monthvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"周排行榜\",\"url\":\"/top/weekvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"日排行榜\",\"url\":\"/top/dayvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"总推荐榜\",\"url\":\"/top/allvote_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月推荐榜\",\"url\":\"/top/monthvote_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周推荐榜\",\"url\":\"/top/weekvote_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"☑️分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/sort1/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"浓情\",\"url\":\"/sort2/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"言情\",\"url\":\"/sort3/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"/sort4/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"/sort5/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/sort6/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"/sort7/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"惊悚\",\"url\":\"/sort8/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"/sort9/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"重生\",\"url\":\"/sort10/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"历史\",\"url\":\"/sort11/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"/sort12/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/sort13/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"耽美\",\"url\":\"/sort14/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"高干\",\"url\":\"/sort15/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"种田\",\"url\":\"/sort16/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"百合\",\"url\":\"/sort17/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"其他\",\"url\":\"/sort18/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1785665380726,
    "respondTime": 6952,
    "ruleBookInfo": {
      "author": ".infotitle a.0@text",
      "coverUrl": "$.thumbnail\n@js:\nresult||\"https://i2.100024.xyz/2023/08/03/791ro4.webp\"",
      "intro": "id.aboutbook@text",
      "kind": "time@text",
      "lastChapter": ".newchapter a@text",
      "tocUrl": "{{baseUrl}}##(.*)www(.*)read(.*)##$1m$2novel/list$31.html"
    },
    "ruleContent": {
      "content": "#nr1@html##<a.+>|<\\/a.+>##",
      "nextContentUrl": "#pt_next@href"
    },
    "ruleExplore": {
      "author": ".info div.1 span@text##作者：||.l03@text",
      "bookList": "id.articlelist@ul.-1@li||id.alistbox",
      "bookUrl": ".l02 a.1@href||.info h2@a@href",
      "coverUrl": "$.thumbnail\n@js:\nresult||\"https://i2.100024.xyz/2023/08/03/791gpu.webp\"",
      "intro": ".intro@text",
      "kind": ".l01@text",
      "lastChapter": ".l04 a@text",
      "name": ".info h2@a@text||.l02 a.0@text",
      "wordCount": ".sys li@text##：||.l05@text"
    },
    "ruleSearch": {
      "author": "td.2@text",
      "bookList": ".grid tr!0",
      "bookUrl": "a.0@href",
      "coverUrl": "$.thumbnail\n@js:\nresult||\"https://i2.100024.xyz/2023/08/03/790lfn.webp\"",
      "kind": "td.-2@text&&td.-1@text",
      "lastChapter": "a.1@text",
      "name": "a.0@text",
      "wordCount": "td.3@text"
    },
    "ruleToc": {
      "chapterList": "ul@li!-1@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php,{\n  \"body\": \"searchtype=articlename&searchkey={{key}}\",\n  \"charset\": \"GBK\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "夜读居网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.yeduju.com",
    "bookUrlPattern": "http://www.yeduju.com/book/\\d+/",
    "customButton": false,
    "customOrder": 579,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9; MIX 2 Build/PKQ1.190118.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/80.0.3987.99 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1787301446208,
    "respondTime": 9016,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "init": "@put:{n:\"[property$=book_name]@content\",\na:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property~=las?test_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"[property$=image]@content\"}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}"
    },
    "ruleContent": {
      "content": "#txt@html",
      "nextContentUrl": "#pb_next@href\n@js:\n/_\\d+/.test(result) && result;"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".s4@text||.s5@text",
      "bookList": "ul.sort_list li",
      "bookUrl": "a@href",
      "checkKeyWord": "剑来",
      "coverUrl": "@js:\"/qs_theme/defaultimg.png\"",
      "kind": "0",
      "name": "a@text"
    },
    "ruleToc": {
      "chapterList": "h3:contains(章节列表)+.block-box ul.chapter-list li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "a.btn-mulu@href\n@js:\nurl = book.origin + result[0];\nhtml = java.ajax(url);\njava.getStringList(\"select.0@option!0@value\", html);"
    },
    "searchUrl": "{{url=source.getKey();\ncookie.removeCookie(url)}}\n/search.html,{\n  \"body\": \"s={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "酷我小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://appi.kuwo.cn/novels/api/book",
    "customButton": false,
    "customOrder": 580,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort = cache.getFile('KuwoNovels');\nif(sort==null){\nvar fk = sk = 1,\nsort1 = [],\nsort2 = [];\npush=(title,url,type1,type2)=>{\n\t\tjson = JSON.stringify({\n\t\t\t\ttitle: title,\n\t\t\t\turl: url?url:\"\",\n\t\t\t\tstyle: {\n\t\t\t\t\t\tlayout_flexGrow: 1,\n\t\t\t\t\t\tlayout_flexBasisPercent: type1\n\t\t\t\t\t}\n\t\t\t});\n\t\treturn  eval('sort'+type2+'.push(json)');\n\t}\n$$=(freetype,category_id,fk,sk)=>`http://appi.kuwo.cn/novels/api/book/category/${freetype}?category_id=${category_id}&fk=${fk}&sk=${sk}&pi={{page}\\}&ps=20`;\n\nJSON.parse(java.ajax('http://appi.kuwo.cn/novels/api/book/categories')).data.map($=>{\n\t\tfreetype = $.freetype\n\t\tif(freetype==3)return;\n\n\t\tpush('༺ˇ»`ʚ'+$.freetype_name+'ɞ´«ˇ༻', null, 1, freetype);\n\t\t$.categories.map($=>{\n\t\t\t\tcategory_id = $.category_id\n\t\t\t\tpush('༺ '+$.category_name+' ༻', $$(freetype,category_id,sk,fk), 1, freetype);\n\t\t\t\t[\"综合\", \"热门\", \"最新\"].map((title,sk)=>{\n\t\t\t\t\t\tsk++\n\t\t\t\t\t\t['['+title+']', '完结', '连载'].map((title,fk)=>{\n\t\t\t\t\t\t\t\tfk++\n\t\t\t\t\t\t\t\tpush(title, $$(freetype,category_id,sk,fk), 0.25, freetype);\n\t\t\t\t\t\t\t});\n\t\t\t\t\t});\n\t\t\t});\n\t});\nsort = sort1.concat(sort2);\ncache.putFile('KuwoNovels', sort, 6E6);\n}\n'['+sort.toString()+']'",
    "header": "{\n\t\"Accept\": \"*/*\",\r\n\"Connection\": \"Close\",\r\n\"User-Agent\": \"Dalvik/2.1.0 (Linux; U; Android 8.0.0; LND-AL40 Build/HONORLND-AL40)\"\n}",
    "lastUpdateTime": 1766332946866,
    "respondTime": 3018,
    "ruleBookInfo": {
      "author": "author_name",
      "coverUrl": "cover_url",
      "init": "data",
      "intro": "&nbsp;{{$.intro}}",
      "kind": "连载中{$.status}已完结&&category_name&&sub_category_name&&update_time\n##连载中50|30已完结| \\d.*",
      "lastChapter": "{{$.new_chapter_name}} • {{$.update_time## .*}}",
      "name": "title",
      "tocUrl": "{{baseUrl}}/chapters?paging=0",
      "wordCount": "all_words"
    },
    "ruleContent": {
      "content": "data.content"
    },
    "ruleExplore": {
      "author": "author_name"
    },
    "ruleSearch": {
      "author": "author_name",
      "bookList": "data",
      "bookUrl": "http://appi.kuwo.cn/novels/api/book/{{$.book_id}}",
      "coverUrl": "cover_url",
      "intro": "intro",
      "kind": "连载中{$.status}已完结&&category_name&&sub_category_name\n##连载中50|30已完结",
      "name": "title",
      "wordCount": "all_words"
    },
    "ruleToc": {
      "chapterList": "data",
      "chapterName": "chapter_title",
      "chapterUrl": "{{baseUrl.replace('?paging=0','')}}/{{$.chapter_id}}",
      "updateTime": "{{$.volume_name}}　{{$.original_words}}字"
    },
    "searchUrl": "http://appi.kuwo.cn/novels/api/book/search?keyword={{key}}&pi={{page}}&ps=30",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "疯读小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://fiction.fengduxiaoshuo.com#🎃",
    "customButton": false,
    "customOrder": 581,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\": \"❀男频专区❀\",\"url\": \"\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": 1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"热门排行\",\"url\": \"\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": 1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"都市小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=4&wordsNum=-1&bookIsFinished=-1&sortTitle=0&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"玄幻小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=13&wordsNum=-1&bookIsFinished=-1&sortTitle=0&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"仙侠小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=12&wordsNum=-1&bookIsFinished=-1&sortTitle=0&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"历史小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=17&wordsNum=-1&bookIsFinished=-1&sortTitle=0&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"科幻小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=16&wordsNum=-1&bookIsFinished=-1&sortTitle=0&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"游戏小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=18&wordsNum=-1&bookIsFinished=-1&sortTitle=0&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"奇幻小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=9&wordsNum=-1&bookIsFinished=-1&sortTitle=0&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": 0.29,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"最新排行\",\"url\": \"\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": 1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"都市小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=4&wordsNum=-1&bookIsFinished=-1&sortTitle=1&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"玄幻小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=13&wordsNum=-1&bookIsFinished=-1&sortTitle=1&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"仙侠小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=12&wordsNum=-1&bookIsFinished=-1&sortTitle=1&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"历史小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=17&wordsNum=-1&bookIsFinished=-1&sortTitle=1&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"科幻小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=16&wordsNum=-1&bookIsFinished=-1&sortTitle=1&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"游戏小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=18&wordsNum=-1&bookIsFinished=-1&sortTitle=1&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"奇幻小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=9&wordsNum=-1&bookIsFinished=-1&sortTitle=1&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": 0.29,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"评分排行\",\"url\": \"\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": 1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"都市小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=4&wordsNum=-1&bookIsFinished=-1&sortTitle=2&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"玄幻小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=13&wordsNum=-1&bookIsFinished=-1&sortTitle=2&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"仙侠小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=12&wordsNum=-1&bookIsFinished=-1&sortTitle=2&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"历史小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=17&wordsNum=-1&bookIsFinished=-1&sortTitle=2&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"科幻小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=16&wordsNum=-1&bookIsFinished=-1&sortTitle=2&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"游戏小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=18&wordsNum=-1&bookIsFinished=-1&sortTitle=2&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"奇幻小说\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=0&classificationId=9&wordsNum=-1&bookIsFinished=-1&sortTitle=2&page={{page}}&count=10&ntu=1201705000&nid=82eaf9444d8db8b985b2ac71cde4b691&api_version=v1&_sv=v1&_ts=1602868844&_sign=M2RjM2U2ZjhkMzZkMzljMDFhNTRjYjVlZTk4YWY0OW\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": 0.29,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"完结专区\",\"url\": \"\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": 1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"全部完结\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=d2a094ff-b75f-4b60-ba2c-19e1cfe6cf73&gender=0&classificationId=-1&wordsNum=-1&bookIsFinished=1&sortTitle=0&page={{page}}&count=10&_sv=v2&_ts=1615569378&_sign=ZDMyMWM5ZDllZThiMjllMmRhNDdmOTJjMjJjMjAxYj\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"都市完结\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=d2a094ff-b75f-4b60-ba2c-19e1cfe6cf73&gender=0&classificationId=4&wordsNum=-1&bookIsFinished=1&sortTitle=0&page={{page}}&count=10&_sv=v2&_ts=1615569717&_sign=ZjQ2YTY0Zjg1N2FhNTQxMWZlNTcyODg3ZjRjYjliNj\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"玄幻完结\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=d2a094ff-b75f-4b60-ba2c-19e1cfe6cf73&gender=0&classificationId=13&wordsNum=-1&bookIsFinished=1&sortTitle=0&page={{page}}&count=10&_sv=v2&_ts=1615569717&_sign=ZjQ2YTY0Zjg1N2FhNTQxMWZlNTcyODg3ZjRjYjliNj\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"仙侠完结\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=d2a094ff-b75f-4b60-ba2c-19e1cfe6cf73&gender=0&classificationId=12&wordsNum=-1&bookIsFinished=1&sortTitle=0&page={{page}}&count=10&_sv=v2&_ts=1615569717&_sign=ZjQ2YTY0Zjg1N2FhNTQxMWZlNTcyODg3ZjRjYjliNj\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"历史完结\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=d2a094ff-b75f-4b60-ba2c-19e1cfe6cf73&gender=0&classificationId=17&wordsNum=-1&bookIsFinished=1&sortTitle=0&page={{page}}&count=10&_sv=v2&_ts=1615569717&_sign=ZjQ2YTY0Zjg1N2FhNTQxMWZlNTcyODg3ZjRjYjliNj\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"科幻完结\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=d2a094ff-b75f-4b60-ba2c-19e1cfe6cf73&gender=0&classificationId=16&wordsNum=-1&bookIsFinished=1&sortTitle=0&page={{page}}&count=10&_sv=v2&_ts=1615569717&_sign=ZjQ2YTY0Zjg1N2FhNTQxMWZlNTcyODg3ZjRjYjliNj\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"游戏完结\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=d2a094ff-b75f-4b60-ba2c-19e1cfe6cf73&gender=0&classificationId=18&wordsNum=-1&bookIsFinished=1&sortTitle=0&page={{page}}&count=10&_sv=v2&_ts=1615569717&_sign=ZjQ2YTY0Zjg1N2FhNTQxMWZlNTcyODg3ZjRjYjliNj\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": 0.29,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"奇幻完结\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=d2a094ff-b75f-4b60-ba2c-19e1cfe6cf73&gender=0&classificationId=9&wordsNum=-1&bookIsFinished=1&sortTitle=0&page={{page}}&count=10&_sv=v2&_ts=1615569717&_sign=ZjQ2YTY0Zjg1N2FhNTQxMWZlNTcyODg3ZjRjYjliNj\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": 0.29,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"❀女频专区❀\",\"url\": \"\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": 1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"热门排行\",\"url\": \"\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": 1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"现代言情\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=10&wordsNum=-1&bookIsFinished=-1&sortTitle=0&page={{page}}&count=10&ntu=1201805000&nid=30ddfb4846022b495872a142c9371fc0&api_version=v1&_sv=v1&_ts=1602870028&_sign=NWJkYTNjZDQ3OGQ0ZDkzNGUxMDdiNjhlMTYxMTdlMG\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"古代言情\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=5&wordsNum=-1&bookIsFinished=-1&sortTitle=0&page={{page}}&count=10&ntu=1201805000&nid=1546e2d86a13ed58a044f176c1d21a8e&api_version=v1&_sv=v1&_ts=1602870140&_sign=OTVkYzVhZjg2ZDZiNmM5M2U1YjdiZjY3OGI3ZTI3YT\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"浪漫青春\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=6&wordsNum=-1&bookIsFinished=-1&sortTitle=0&page={{page}}&count=10&ntu=1201805000&nid=91961c794a395c96871d14b9109e59d9&api_version=v1&_sv=v1&_ts=1602870180&_sign=MjZlMWNkZTNlMjI0YmEzZjVkZDllYTAzNGI1ZTc0MT\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"玄幻言情\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=3&wordsNum=-1&bookIsFinished=-1&sortTitle=0&page={{page}}&count=10&ntu=1201805000&nid=e0973f2178612332a06d430d7feb3b0b&api_version=v1&_sv=v1&_ts=1602870273&_sign=ZjM3MzllMzg2NTlkNDA2ZWY1Y2I5ZWE0ZjQ0MGNjMW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"仙侠奇缘\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=7&wordsNum=-1&bookIsFinished=-1&sortTitle=0&page={{page}}&count=10&ntu=1201805000&nid=d5a1b3706c4619e9d4ddfa541f66ef39&api_version=v1&_sv=v1&_ts=1602870313&_sign=YzgyZjBjMTQwOWE2OWEzNWI2ZGRjMmM1NTg4MTBmN2\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"N次い元\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=29&wordsNum=-1&bookIsFinished=-1&sortTitle=0&page={{page}}&count=10&ntu=1201805000&nid=935a7398dffe11653d9c3b2052f5b4d2&api_version=v1&_sv=v1&_ts=1602870359&_sign=YTEwMTUwN2MzN2VjNjljNGM3YWM4ZTY1NTRhMDc2ZW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"最新排行\",\"url\": \"\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": 1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"现代言情\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=10&wordsNum=-1&bookIsFinished=-1&sortTitle=1&page={{page}}&count=10&ntu=1201805000&nid=30ddfb4846022b495872a142c9371fc0&api_version=v1&_sv=v1&_ts=1602870028&_sign=NWJkYTNjZDQ3OGQ0ZDkzNGUxMDdiNjhlMTYxMTdlMG\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"古代言情\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=5&wordsNum=-1&bookIsFinished=-1&sortTitle=1&page={{page}}&count=10&ntu=1201805000&nid=1546e2d86a13ed58a044f176c1d21a8e&api_version=v1&_sv=v1&_ts=1602870140&_sign=OTVkYzVhZjg2ZDZiNmM5M2U1YjdiZjY3OGI3ZTI3YT\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"浪漫青春\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=6&wordsNum=-1&bookIsFinished=-1&sortTitle=1&page={{page}}&count=10&ntu=1201805000&nid=91961c794a395c96871d14b9109e59d9&api_version=v1&_sv=v1&_ts=1602870180&_sign=MjZlMWNkZTNlMjI0YmEzZjVkZDllYTAzNGI1ZTc0MT\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"玄幻言情\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=3&wordsNum=-1&bookIsFinished=-1&sortTitle=1&page={{page}}&count=10&ntu=1201805000&nid=e0973f2178612332a06d430d7feb3b0b&api_version=v1&_sv=v1&_ts=1602870273&_sign=ZjM3MzllMzg2NTlkNDA2ZWY1Y2I5ZWE0ZjQ0MGNjMW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"仙侠奇缘\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=7&wordsNum=-1&bookIsFinished=-1&sortTitle=1&page={{page}}&count=10&ntu=1201805000&nid=d5a1b3706c4619e9d4ddfa541f66ef39&api_version=v1&_sv=v1&_ts=1602870313&_sign=YzgyZjBjMTQwOWE2OWEzNWI2ZGRjMmM1NTg4MTBmN2\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"N次い元\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=29&wordsNum=-1&bookIsFinished=-1&sortTitle=1&page={{page}}&count=10&ntu=1201805000&nid=935a7398dffe11653d9c3b2052f5b4d2&api_version=v1&_sv=v1&_ts=1602870359&_sign=YTEwMTUwN2MzN2VjNjljNGM3YWM4ZTY1NTRhMDc2ZW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"评分排行\",\"url\": \"\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": 1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"现代言情\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=10&wordsNum=-1&bookIsFinished=-1&sortTitle=2&page={{page}}&count=10&ntu=1201805000&nid=30ddfb4846022b495872a142c9371fc0&api_version=v1&_sv=v1&_ts=1602870028&_sign=NWJkYTNjZDQ3OGQ0ZDkzNGUxMDdiNjhlMTYxMTdlMG\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"古代言情\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=5&wordsNum=-1&bookIsFinished=-1&sortTitle=2&page={{page}}&count=10&ntu=1201805000&nid=1546e2d86a13ed58a044f176c1d21a8e&api_version=v1&_sv=v1&_ts=1602870140&_sign=OTVkYzVhZjg2ZDZiNmM5M2U1YjdiZjY3OGI3ZTI3YT\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"浪漫青春\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=6&wordsNum=-1&bookIsFinished=-1&sortTitle=2&page={{page}}&count=10&ntu=1201805000&nid=91961c794a395c96871d14b9109e59d9&api_version=v1&_sv=v1&_ts=1602870180&_sign=MjZlMWNkZTNlMjI0YmEzZjVkZDllYTAzNGI1ZTc0MT\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"玄幻言情\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=3&wordsNum=-1&bookIsFinished=-1&sortTitle=2&page={{page}}&count=10&ntu=1201805000&nid=e0973f2178612332a06d430d7feb3b0b&api_version=v1&_sv=v1&_ts=1602870273&_sign=ZjM3MzllMzg2NTlkNDA2ZWY1Y2I5ZWE0ZjQ0MGNjMW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"仙侠奇缘\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=7&wordsNum=-1&bookIsFinished=-1&sortTitle=2&page={{page}}&count=10&ntu=1201805000&nid=d5a1b3706c4619e9d4ddfa541f66ef39&api_version=v1&_sv=v1&_ts=1602870313&_sign=YzgyZjBjMTQwOWE2OWEzNWI2ZGRjMmM1NTg4MTBmN2\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"N次い元\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=29&wordsNum=-1&bookIsFinished=-1&sortTitle=2&page={{page}}&count=10&ntu=1201805000&nid=935a7398dffe11653d9c3b2052f5b4d2&api_version=v1&_sv=v1&_ts=1602870359&_sign=YTEwMTUwN2MzN2VjNjljNGM3YWM4ZTY1NTRhMDc2ZW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"完结专区\",\"url\": \"\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": 1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"现代言情\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=10&wordsNum=-1&bookIsFinished=1&sortTitle=0&page={{page}}&count=10&ntu=1201805000&nid=30ddfb4846022b495872a142c9371fc0&api_version=v1&_sv=v1&_ts=1602870028&_sign=NWJkYTNjZDQ3OGQ0ZDkzNGUxMDdiNjhlMTYxMTdlMG\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"古代言情\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=5&wordsNum=-1&bookIsFinished=1&sortTitle=0&page={{page}}&count=10&ntu=1201805000&nid=1546e2d86a13ed58a044f176c1d21a8e&api_version=v1&_sv=v1&_ts=1602870140&_sign=OTVkYzVhZjg2ZDZiNmM5M2U1YjdiZjY3OGI3ZTI3YT\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"浪漫青春\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=6&wordsNum=-1&bookIsFinished=1&sortTitle=0&page={{page}}&count=10&ntu=1201805000&nid=91961c794a395c96871d14b9109e59d9&api_version=v1&_sv=v1&_ts=1602870180&_sign=MjZlMWNkZTNlMjI0YmEzZjVkZDllYTAzNGI1ZTc0MT\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"玄幻言情\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=3&wordsNum=-1&bookIsFinished=1&sortTitle=0&page={{page}}&count=10&ntu=1201805000&nid=e0973f2178612332a06d430d7feb3b0b&api_version=v1&_sv=v1&_ts=1602870273&_sign=ZjM3MzllMzg2NTlkNDA2ZWY1Y2I5ZWE0ZjQ0MGNjMW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"仙侠奇缘\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=7&wordsNum=-1&bookIsFinished=1&sortTitle=0&page={{page}}&count=10&ntu=1201805000&nid=d5a1b3706c4619e9d4ddfa541f66ef39&api_version=v1&_sv=v1&_ts=1602870313&_sign=YzgyZjBjMTQwOWE2OWEzNWI2ZGRjMmM1NTg4MTBmN2\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}},\n{\"title\": \"N次い元\",\"url\": \"https://fiction.fengduxiaoshuo.com/doReader/get_book_info_by_tab?_token=7cbd25c8-07fa-4d93-8b0f-fe09908e3d28&gender=1&classificationId=29&wordsNum=-1&bookIsFinished=1&sortTitle=0&page={{page}}&count=10&ntu=1201805000&nid=935a7398dffe11653d9c3b2052f5b4d2&api_version=v1&_sv=v1&_ts=1602870359&_sign=YTEwMTUwN2MzN2VjNjljNGM3YWM4ZTY1NTRhMDc2ZW\",\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexShrink\": 1,\n\"layout_alignSelf\": \"auto\",\n\"layout_flexBasisPercent\": -1,\n\"layout_wrapBefore\": false\n}}\n]",
    "header": "{\"User-Agent\": \"okhttp/3.12.0\"}",
    "lastUpdateTime": 1787425746662,
    "respondTime": 1810,
    "ruleBookInfo": {
      "lastChapter": "$..detailedBookInfo.bookChapterAllInfo[-1].chapterTitle"
    },
    "ruleContent": {
      "content": "$..chapterContent",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "$.bookAuthor",
      "bookList": "$..classficationBooks[*]",
      "bookUrl": "https://fiction.fengduxiaoshuo.com/doReader/enter_bookinfo_index?_token=d2a094ff-b75f-4b60-ba2c-19e1cfe6cf73&bookId={{$.bookId}}&_sv=v2",
      "coverUrl": "$.bookCoverImage",
      "intro": "$.bookDesc",
      "kind": "$.chapters_update_time&&$.c_class_name&&{$.crazy_rating}分",
      "name": "$.bookTitle##（+.*|.*最新章节|\\(+.*",
      "wordCount": "$.book_words_num"
    },
    "ruleSearch": {
      "author": "$.bookAuthor",
      "bookList": "$..books[*]",
      "bookUrl": "https://fiction.fengduxiaoshuo.com/doReader/enter_bookinfo_index?_token=d2a094ff-b75f-4b60-ba2c-19e1cfe6cf73&bookId={{$.bookId}}&_sv=v2",
      "coverUrl": "$.bookCoverImage",
      "intro": "$.bookDesc",
      "kind": "$.chapters_update_time&&$.c_class_name&&{$.crazy_rating}分",
      "name": "$.bookTitle##（+.*|.*最新章节|\\(+.*",
      "wordCount": "$.book_words_num"
    },
    "ruleToc": {
      "chapterList": "$..detailedBookInfo.bookChapterAllInfo[*]",
      "chapterName": "$.chapterTitle##[\\(（].*[求更谢乐发推].*[）\\)]",
      "chapterUrl": "https://fiction.fengduxiaoshuo.com/doReader/get_content_by_chapterId?_token=d2a094ff-b75f-4b60-ba2c-19e1cfe6cf73&bookId={{$.bookId}}&chapterId={{$.chapterId}}&chapterCount=1&_sv=v2"
    },
    "searchUrl": "https://fiction.fengduxiaoshuo.com/doReader/search/result?_token=d2a094ff-b75f-4b60-ba2c-19e1cfe6cf73&key_words={{key}}&api_version=v6&nid=f0439a4f53b774fa0b4d90b48738e4f1&_sv=v2",
    "weight": 0
  },
  {
    "bookSourceComment": "//2025.1.27 by.◎辞晨◎",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "醉读小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.maxshuku.com/",
    "customButton": false,
    "customOrder": 584,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\npush(\"全部🌊分类\",null,1,1)\npush(\"🌊全本🌊\",`/over/{{page}}.html`,1,1)\n\tarList=[[\"玄幻小说\",\"xuanhuan\"],[\"奇幻\",\"qihuan\"],[\"都市\",\"dushi\"],[\"女生\",\"nvsheng\"]]\n\tarList.map(([tag,uri])=>{\n\t\turl=`/sort/${uri}/{{page}}.html`;\n\t\tpush(tag, url, 1, 0.25);\n\t\t});\n//java.log(JSON.stringify(sort))\nJSON.stringify(sort)",
    "header": "@js:\nJSON.stringify({\n  'User-Agent': \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0\",\n  'sec-ch-ua-platform': \"\\\"Android\\\"\",\n  'origin': baseUrl,\n  'x-requested-with': \"cn.mujiankeji.mbrowser\",\n  'referer': baseUrl,\n  'accept-language': \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"\n})",
    "lastUpdateTime": 1752375312287,
    "respondTime": 5248,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "text.打开完整目录列表@href"
    },
    "ruleContent": {
      "content": ".pt-read-text@html##.*www\\..*"
    },
    "ruleExplore": {
      "author": ".book_other@a.0@text&&td@a[href~=author]@text",
      "bookList": "#sitebox@dl&&tbody@tr",
      "bookUrl": "h3@a@href&&a.0@href",
      "coverUrl": "img@_src",
      "intro": ".name@text",
      "kind": ".book_other@a.1@text&&td.-2:-1@text",
      "lastChapter": "td@span@a.0@text",
      "name": "h3@a@text&&a.0@text"
    },
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".pt-rank-detail",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "kind": "a.3@text",
      "lastChapter": "a.4@span@text",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": "ul@a[href~=novel]",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "{{source.getKey()}}search/result.html?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "购买章节需登录\n原作者：一程\n整理修改：GitHub@ZWolken",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🌸SF轻小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://book.sfacg.com",
    "customButton": false,
    "customOrder": 585,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"连载\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"魔幻\",\"url\":\"/List/default.aspx?tid=21&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/List/default.aspx?tid=22&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古风\",\"url\":\"/List/default.aspx?tid=23&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/List/default.aspx?tid=24&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"/List/default.aspx?tid=25&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/List/default.aspx?tid=26&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏\",\"url\":\"/List/default.aspx?tid=27&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"/List/default.aspx?tid=28&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"/List/default.aspx?tid=29&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"完结\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"魔幻\",\"url\":\"/List/default.aspx?tid=21&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/List/default.aspx?tid=22&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古风\",\"url\":\"/List/default.aspx?tid=23&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/List/default.aspx?tid=24&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"/List/default.aspx?tid=25&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/List/default.aspx?tid=26&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏\",\"url\":\"/List/default.aspx?tid=27&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"/List/default.aspx?tid=28&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"/List/default.aspx?tid=29&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\"\n}",
    "lastUpdateTime": 1786221143478,
    "loginUrl": "https://passport.sfacg.com/Login.aspx",
    "respondTime": 1790,
    "ruleBookInfo": {
      "author": ".author-name@text",
      "coverUrl": ".summary-pic img@src",
      "intro": "标签：{{@.tag-list@text}}{{@.introduce@html}}##(^|[。！？]+[”」）】]?)##$1<br>@js:result.replace(//g,\"\")",
      "kind": ".title span!0@text&&.count-detail span.0:1:3@text##.*：|.*\\[|\\]|\\s.*",
      "lastChapter": ".chapter-title a@text",
      "name": ".title span.0@text",
      "tocUrl": "#BasicOperation a.0@href",
      "wordCount": ".count-detail span.1@text##.*：|字.*"
    },
    "ruleContent": {
      "content": "#ChapterBody@html",
      "imageStyle": "FULL"
    },
    "ruleExplore": {
      "author": "a.2@text",
      "bookList": ".Comic_Pic_List",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": "li.1@text##^.+/\\s*\\d+字\\s*",
      "kind": "a.3@text&&span@text&&li.1@text##.+\\D(\\d+\\/\\d+\\/\\d+)\\D*(\\d+字)\\s*(.+)##$1,$2",
      "name": "a.1@text"
    },
    "ruleSearch": {
      "author": "li.1@text##.+综合信息：\\s*([^\\/]+).*##$1",
      "bookList": "tbody ul",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": "li.1@text##.+\\d+:\\d+\\s*(.+).*##$1",
      "kind": "li.1@text##.+\\/(\\d+\\/\\d+\\/\\d+).*##$1",
      "name": "a@text"
    },
    "ruleToc": {
      "chapterList": ".catalog-list li a",
      "chapterName": "textNodes##[\\(（【].*?[求更谢乐发推打加].*?[】）\\)]",
      "chapterUrl": "href",
      "isVip": ".icn_vip@text"
    },
    "searchUrl": "http://s.sfacg.com/?Key={{key}}&S=1&SS=0",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎈 SF轻小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.sfacg.com",
    "customButton": false,
    "customOrder": 586,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "魔幻::https://api.sfacg.com/novels/21/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate\n玄幻::https://api.sfacg.com/novels/22/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate\n古风::https://api.sfacg.com/novels/23/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate\n科幻::https://api.sfacg.com/novels/24/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate\n校园::https://api.sfacg.com/novels/25/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate\n都市::https://api.sfacg.com/novels/26/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate\n游戏::https://api.sfacg.com/novels/27/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate\n悬疑::https://api.sfacg.com/novels/28/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate",
    "header": "{\n\"content-type\": \"application/json\",\n\"sf-minip-info\": \"minip_novel/1.0.70(android;10)/wxmp\",\n\"authorization\": \"Basic YW5kcm9pZHVzZXI6MWEjJDUxLXl0Njk7KkFjdkBxeHE=\"\n}",
    "lastUpdateTime": 1776749680248,
    "respondTime": 3129,
    "ruleBookInfo": {
      "author": "$.data.authorName",
      "coverUrl": "$.data.novelCover",
      "intro": "$.data.expand.intro",
      "kind": "$.data.typeName",
      "lastChapter": "$.data.expand.latestChapter.title",
      "name": "$.data.novelName",
      "tocUrl": "https://minipapi.sfacg.com/pas/mpapi/novels/{{$.data.novelId}}/dirs",
      "wordCount": "$.data.charCount"
    },
    "ruleContent": {
      "content": "$.data.expand.content"
    },
    "ruleExplore": {
      "author": "$.authorName",
      "bookList": "$.data",
      "bookUrl": "https://minipapi.sfacg.com/pas/mpapi/novels/{{$.novelId}}?expand=latestchapter,chapterCount,typeName,intro,fav,ticket,pointCount,tags,sysTags,signlevel,discount,discountExpireDate,totalNeedFireMoney,originTotalNeedFireMoney",
      "coverUrl": "$.novelCover",
      "kind": "$.expand.typeName",
      "name": "$.novelName",
      "wordCount": "$.charCount"
    },
    "ruleSearch": {
      "author": "$.AuthorName",
      "bookList": "$.Novels",
      "bookUrl": "https://minipapi.sfacg.com/pas/mpapi/novels/{{$.NovelID}}?expand=latestchapter,chapterCount,typeName,intro,fav,ticket,pointCount,tags,sysTags,signlevel,discount,discountExpireDate,totalNeedFireMoney,originTotalNeedFireMoney",
      "coverUrl": "https://rs.sfacg.com/web/novel/images/NovelCover/Big/{{$.NovelCover}}",
      "kind": "$.TypeName",
      "name": "$.NovelName"
    },
    "ruleToc": {
      "chapterList": "$.data.volumeList[*].chapterList[*]",
      "chapterName": "$.title",
      "chapterUrl": "https://minipapi.sfacg.com/pas/mpapi/Chaps/{{$.chapId}}?expand=content,needFireMoney,originNeedFireMoney,tsukkomi&autoOrder=false",
      "isVip": "$.isVip",
      "updateTime": "$.updateTime"
    },
    "searchUrl": "https://m.sfacg.com/API/HTML5.ashx?op=search&keyword={{key}}",
    "weight": -1
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "逆鳞小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://fu44.pw",
    "customButton": false,
    "customOrder": 589,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "激情::https://fu44.pw/e/action/ListInfo/index.php?page={{page}}&classid=13\n古代::https://fu44.pw/e/action/ListInfo/index.php?page={{page}}&classid=14\n家庭::https://fu44.pw/e/action/ListInfo/index.php?page={{page}}&classid=15\n浪漫::https://fu44.pw/e/action/ListInfo/index.php?page={{page}}&classid=16\n绝品::https://fu44.pw/e/action/ListInfo/index.php?page={{page}}&classid=1\n同居::https://fu44.pw/e/action/ListInfo/index.php?page={{page}}&classid=2\n古典::https://fu44.pw/e/action/ListInfo/index.php?page={{page}}&classid=3\n诱惑::https://fu44.pw/e/action/ListInfo/index.php?page={{page}}&classid=4\n女子::https://fu44.pw/e/action/ListInfo/index.php?page={{page}}&classid=5",
    "lastUpdateTime": 1787221290942,
    "respondTime": 3110,
    "ruleBookInfo": {
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content"
    },
    "ruleContent": {
      "content": "class.entry@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.author@text||span@text##.*作者：",
      "bookList": "class.result||class.blockLink",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "name": "class.title@textNodes||span@text##【|】|作者.*"
    },
    "ruleToc": {
      "chapterList": "class.contitle",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://fu44.pw/e/search/index.php,{\n  \"charset\": \"gb2312\",\n  \"method\": \"POST\",\n  \"body\": \"show=title&tempid=1&tbname=article&mid=1&dopost=search&keyboard={{key}}&submit=\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "*By_聆听月与悦-2025/1/24\n*By_聆听月与悦-2025.7.16\n//这里提供部分接口\n//注意：使用自定义服务器是要去掉api接口的最后一个 / \n\t\n*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-\nhttp://api.myweipin.com\nhttp://api.lfdapengu.com\nhttp://api.jmlldsc.com\nhttp://api.lemiyigou.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "猫眼看书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://api.myweipin.com",
    "customButton": false,
    "customOrder": 590,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nlet b_sort = `[{\"title\": \"💮        ཽ 猫眼阅读 ཽ        💮\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"↓    ༺ 男频榜单 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"必读榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=1&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"潜力榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=5&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"完本榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=2&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"更新榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=3&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"搜索榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=4&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"评论榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=6&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"↓    ༺ 男频全部 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"玄幻\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=lejRej\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"武侠\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=nel5aK\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"都市\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=mbk5ez\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"仙侠\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=vbmOeY\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"军事\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=penRe7\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=xbojag\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"游戏\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=mep2bM\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=zbq2dp\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"轻小说\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=YerEdO\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"↓    ༺ 男频完结 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"玄幻\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=lejRej&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"武侠\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=nel5aK&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"都市\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=mbk5ez&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"仙侠\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=vbmOeY&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"军事\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=penRe7&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=xbojag&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"游戏\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=mep2bM&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=zbq2dp&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"轻小说\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=YerEdO&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"↓    ༺ 男频连载 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"玄幻\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=lejRej&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"武侠\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=nel5aK&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"都市\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=mbk5ez&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"仙侠\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=vbmOeY&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"军事\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=penRe7&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=xbojag&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"游戏\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=mep2bM&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=zbq2dp&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"轻小说\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=YerEdO&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"↓    ༺ 女频榜单 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"必读榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=1&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"潜力榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=5&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"完本榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=2&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"更新榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=3&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"搜索榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=4&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"评论榜\",\"url\": \"{{source.bookSourceUrl}}/module/rank?type=6&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"↓    ༺ 女频全部 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=9avmeG\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古代言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=DdwRb1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"幻想言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=7ax9by\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"青春校园\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=Pdy7aQ\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"唯美纯爱\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=kazYeJ\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"同人衍生\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=9aAOdv\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"↓    ༺ 女频完结 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=9avmeG&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古代言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=DdwRb1&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"幻想言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=7ax9by&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"青春校园\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=Pdy7aQ&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"唯美纯爱\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=kazYeJ&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"同人衍生\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=9aAOdv&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"↓    ༺ 女频连载 ༻    ↓\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=9avmeG&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古代言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=DdwRb1&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"幻想言情\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=7ax9by&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"青春校园\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=Pdy7aQ&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"唯美纯爱\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=kazYeJ&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"同人衍生\",\"url\": \"{{source.bookSourceUrl}}/novel?sort=1&page={{page}}&categoryId=9aAOdv&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}}]`;\nlet api = JSON.parse(source.getVariable()).sourceAPI || \"http://api.lfdapengu.com\";\nlet sort = b_sort.replace(\"{{source.bookSourceUrl}}\", api);\nsort",
    "jsLib": "function getHeader() {\n\tvar header = `,{\n  \"headers\": {\n    \"User-Agent\": \"okhttp/4.9.2\",\n    \"client-device\": \"0cdeb38dd0f2a381b06c0a02926ee317\",\n    \"client-brand\": \"vivo\",\n    \"client-version\": \"2.3.0\",\n    \"client-name\": \"app.maoyankanshu.novel\",\n    \"client-source\": \"android\",\n    \"Authorization\": \"bearereyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOlwvXC9hcGkuanhndHp4Yy5jb21cL2F1dGhcL2xvZ2luYnltb2JpbGUiLCJpYXQiOjE3MzU2MTQ3NzEsImV4cCI6MTgyODkyNjc3MSwibmJmIjoxNzM1NjE0NzcxLCJqdGkiOiI1VEdjdXpoOHNSNVk5WlNjIiwic3ViIjo4MTEzMzQsInBydiI6ImExY2IwMzcxODAyOTZjNmExOTM4ZWYzMGI0Mzc5NDY3MmRkMDE2YzUifQ.-dT55vUMI-JJyfl3a9__Ii-DjxbyvnlOMoXWdG1c8JA\"\n  }\n}`\n return header\n}\n",
    "lastUpdateTime": 1785382009830,
    "loginUi": "[\n    {\n        \"name\": \"            ༺ˇ»`ʚ  当 前 模 式  ɞ´«ˇ༻            \",\n        \"type\": \"button\",\n        \"action\": \"get_type()\"\n    },\n    {\n        \"name\": \"   🐈   猫  眼   ①   \",\n        \"type\": \"button\",\n        \"action\": \"Source('first')\"\n    },\n    {\n        \"name\": \"   🐈   猫  眼   ②   \",\n        \"type\": \"button\",\n        \"action\": \"Source('second')\"\n    },\n    {\n        \"name\": \"    🐈  猫   眼  ③   \",\n        \"type\": \"button\",\n        \"action\": \"Source('third')\"\n    },\n    {\n        \"name\": \"    🐈  猫   眼  ④   \",\n        \"type\": \"button\",\n        \"action\": \"Source('forth')\"\n    },\n    {\n        \"name\":  \"自定义服务器\",\n        \"type\": \"text\"\n    },\n    {\n        \"name\": \"自定义服务器\",\n        \"type\": \"input\",\n        \"hint\": \"自定义服务器\",\n        \"variable\": \"customHost\",\n        \"action\": \"source.putLoginInfoMap(JSON.stringify({'自定义服务器': customHost}))\"\n    },\n    {\n        \"name\": \"🛰使用自定义服务器\",\n        \"type\": \"button\",\n        \"action\": \"setHost()\"\n    },\n    {\n        \"name\": \"🧭书源更新检测\",\n        \"type\": \"button\",\n        \"action\": \"time()\"\n    },\n    {\n        \"name\": \" 🎐清除源变量🎐 \",\n        \"type\": \"button\",\n        \"action\": \"clean()\"\n    },\n    {\n        \"name\": \"📦初始化源变量📦\",\n        \"type\": \"button\",\n        \"action\": \"began()\"\n    },\n    {\n        \"name\": \"  接    口：猫眼看书     源规则： 聆听月与悦  \",\n        \"type\": \"button\",\n        \"action\": \"author()\"\n    }    \n]",
    "loginUrl": "function login() {\n    try {\n        return JSON.stringify(loginUI);\n    } catch (e) {\n        java.log(\"login函数错误: \" + e);\n        return \"[]\";\n    }\n}\n\nvar data = [\n    [\"🐈猫眼①\", \"first\", \"http://api.myweipin.com\"],\n    [\"🐈猫眼②\", \"second\", \"http://api.lfdapengu.com\"],\n    [\"🐈猫眼③\", \"third\", \"http://api.jmlldsc.com\"],\n    [\"🐈猫眼④\", \"forth\", \"http://api.lemiyigou.com\"],\n    [\"🛰自定义服务器\", \"custom\"]\n ]\nfunction get_type() {\n    try {\n        let varString = source.getVariable();\n        //java.log(\"源变量原始数据: \" + varString);\n        \n        if (varString==\"\") {\n            java.toast(\"当前未设置来源，使用默认来源\");\n            var baseVariable = JSON.stringify({\n\t                     sourceType: \"first\",\n\t                     sourceName: \"🐈猫眼①\",\n\t                    \tsourceAPI: \"http://api.myweipin.com\"\n             }, null, \"\\t\");\n            source.setVariable(baseVariable);\n            return;\n        }\n        \n       let currentData = JSON.parse(varString);\n        let currentSource = \"未设置\";\n        \n        for (let i = 0; i < data.length; i++) {\n            if (data[i][1] === currentData.sourceType) {\n                currentSource = data[i][0];\n                break;\n            }\n        }\n        \n        java.toast(`当前来源: ${currentSource}`);\n    } catch (e) {\n        java.toast(\"模式数据解析错误: \" + e.message);\n        java.log(\"解析源变量出错: \" + e);\n    }\n}\nfunction Source(sourceType) {\n    try {\n        let validSource = false;\n        let sourceName = \"\";\n        let sourceAPI = \"\";\n        \n        for (let i = 0; i < data.length; i++) {\n            if (data[i][1] === sourceType) {\n                validSource = true;\n                sourceName = data[i][0];\n                sourceAPI = data[i][2];\n                break;\n            }\n        }\n        \n        if (validSource) {\n            var variable = {\n                sourceType: sourceType,\n                sourceName: sourceName,\n                sourceAPI: sourceAPI\n            };\n            \n            var jsonStr = JSON.stringify(variable, null, \"\\t\");\n            source.setVariable(jsonStr);\n            java.toast(`✅ 已切换到: ${sourceName}`);\n            java.log(\"设置源变量: \" + jsonStr);\n        } else {\n            java.toast(\"❌ 无效来源\");\n        }\n    } catch (e) {\n        java.toast(\"切换来源出错: \" + e.message);\n        java.log(\"切换来源出错: \" + e);\n    }\n}\n\nfunction author() {\n\t   let url = \"https://jkapi.com/api/one_yan?type=json\";\n\t   let json = java.ajax(url + \",\" + JSON.stringify({\n                   method: \"GET\"\n                }\t)\n\t   \t    );\n\t   \tlet content = JSON.parse(json).content;\n\t   \tjava.log(`\\n${content}`);\n\t   \tjava.longToast(`\\n${content}`);\n\t}\n\t\nfunction time() {\njava.toast(\"正在检测更新，时间可能会有点长，请耐心等待！\");\nvar api = [\n    \"http://api.myweipin.com\",\n    \"http://api.lfdapengu.com\",\n    \"http://api.jmlldsc.com\",\n    \"http://api.lemiyigou.com\"\n];\n\nvar searchPath = \"/search?keyword=开局圣人修为，女帝成了前妻&page=1\";\n\nvar results = [];\nvar fastestApi = null;\nvar minTime = Infinity;\n\nfor (var i = 0; i < api.length; i++) {\n    var apiUrl = api[i] + searchPath;\n    var startTime = new Date().getTime();\n    \n    try {\n        var response = java.ajax({\n            url: apiUrl,\n            method: \"GET\",\n            timeout: 5000\n        });\n        \n        var endTime = new Date().getTime();\n        var responseTime = endTime - startTime;\n        \n        results.push({\n            api: api[i],\n            time: responseTime,\n            status: \"成功\",\n            success: true\n        });\n        \n        if (responseTime < minTime) {\n            minTime = responseTime;\n            fastestApi = api[i];\n        }\n        \n        //java.log(\"API 测试: \" + apiUrl + \" | 耗时: \" + responseTime + \"ms\");\n        \n    } catch (e) {\n        var endTime = new Date().getTime();\n        var responseTime = endTime - startTime;\n        \n        results.push({\n            api: api[i],\n            time: responseTime,\n            status: \"失败: \" + e.message,\n            success: false\n        });\n        \n        java.log(\"API 测试失败: \" + apiUrl + \" | 错误: \" + e.message);\n    }\n}\nvar report = \"=== API 响应时间测试报告 ===\\n\\n\";\nreport += \"检验关键词: 开局圣人修为，女帝成了前妻\\n\\n\";\n\nfor (var j = 0; j < results.length; j++) {\n    var result = results[j];\n    report += \"API \" + (j + 1) + \": \" + result.api + \"\\n\";\n    report += \"状态: \" + result.status + \"\\n\";\n    report += \"响应时间: \" + result.time + \"ms\\n\";\n    report += \"--------------------------------\\n\";\n}\n\nif (fastestApi) {\n    report += \"\\n✅ 最快 API: \" + fastestApi + \" (\" + minTime + \"ms)\\n\";\n    report += \"推荐使用此接口进行后续请求\\n       已打印至日志\";\n } else {\n    report += \"\\n⚠️ 所有 API 测试均失败，请检查网络连接或 API 状态\";\n }\n   java.log(report);\n   java.longToast(report);\n }\n\nfunction setHost() {\n    try {\n        let loginInfo = source.getLoginInfoMap();\n        if (!loginInfo) loginInfo = {};\n\n        let customApi = loginInfo[\"自定义服务器\"] || \"\";\n        \n        if (customApi==\"\") {\n            java.toast(\"请先设置自定义服务器地址\");\n            return;\n        }\n        \n        var variable = {\n            sourceType: \"custom\",\n            sourceName: \"自定义服务器\",\n            sourceAPI: customApi\n        };\n        \n        var jsonStr = JSON.stringify(variable,null, \"\\t\");\n        source.setVariable(jsonStr);\n        java.toast(\"✅ 已使用自定义服务器: \" + customApi);\n    } catch (e) {\n        java.toast(\"设置自定义服务器出错: \" + e.message);\n    }\n}\nfunction clean() {\n    let variavle = \"\";\n    source.setVariable(variavle);\n    java.toast(\"源变量已清除\");\n }\n \nfunction began() {\n var baseVariable = JSON.stringify({\n\tsourceType: \"first\",\n\tsourceName: \"🐈猫眼①\",\n\tsourceAPI: \"http://api.myweipin.com\"\n}, null, \"\\t\");\n  source.setVariable(baseVariable);\n  java.toast(\"已初始化源变量！\");\n\t}",
    "respondTime": 6702,
    "ruleBookInfo": {
      "author": "$.authorName",
      "canReName": "true",
      "coverUrl": "$.cover",
      "downloadUrls": "http://api.jxgtzxc.com/",
      "init": "<js>\nvar book_id = java.hexDecodeToString(result);\nvar action = \"/novel/\" + book_id + \"?isSearch=1\";\nif (source.getVariable()!=\"\"&&source.getVariable()!=undefined) {\n     var Variable = JSON.parse(source.getVariable());\n     java.toast(\"当前接口\" + Variable.sourceName + \"：\" + Variable.sourceAPI);\n     var info_api = Variable.sourceAPI; \n} else {\n\t    var Variable = \"\";\n}\nvar api = info_api || source.getKey();\nvar url = api + action + getHeader();\n//java.log(url);\nvar info = java.ajax(url);\njava.toast(\"正在加载详情页，请稍等！\");\nif (info !=\"\" && info != null) {\n\tjava.toast(\"详情页获取成功！\");\n\tjava.put(\"api\", api);\n\tinfo\n\t} else {\n\tjava.toast(\"抱歉，详情页获取失败！\");\n\t}\n</js>\n$.data",
      "intro": "&nbsp;&nbsp;\n🛰来源：{{java.get(\"api\")}}\n📕书名：{{$.novelName}}\n✏️作者：{{$.authorName}}{{\"\\n\"+\"​\"}}\n🔥热度：{{$.hotInfo}}，{{$.readInfo}}人在读{{\"\\n\"+\"​\"}}\n💮更新：共{{$.chapterNum}}章\n📃最新章节：{{$.lastChapter.chapterName}}\n⏳更新时间：{{$..decTime}}{{\"\\n\"+\"​\"}}\n📖简介：{{$.summary##(^|[。！？]+[”」）】]?)|[/\\nN\\<\\>/]|[/\\n/]##$1<br>}}",
      "kind": "$..className",
      "lastChapter": "{{$.lastChapter.chapterName}}•{{$.lastUpdatedAt}}",
      "name": "$.novelName",
      "tocUrl": "<js>\nvar id = java.getString(\"novelId\");\nvar book_id = java.base64Encode(id);\nvar data = {\n\ttype: \"聆听月与悦\"\n\t}\nvar type = JSON.stringify(data);\nvar book_url = `data:;base64,${book_id},${type}`;\nbook_url\n</js>",
      "wordCount": "$.wordNum"
    },
    "ruleContent": {
      "content": "<js>\nfunction _0x1ff2(){var _0x280b82=['101812cYltSE','hexDecodeToString','1792826YMdvcc','2zUckVx','494835XmVRVj','AES/CBC/PKCS5Padding','0123456789abcdef','430314OOOWUg','f041c49714d39908','1896894iSCkLt','undefined','560168CYUeJM','lastCheckTime','23090mNyihd','1793lWwytg','42XafJLx','8IRIIVo','now'];_0x1ff2=function(){return _0x280b82;};return _0x1ff2();}var _0x91ccce=_0x55a8;(function(_0x2cef56,_0x59afb0){var _0x28cc13=_0x55a8,_0x397ec2=_0x2cef56();while(!![]){try{var _0x3130e4=-parseInt(_0x28cc13(0x81))/0x1+-parseInt(_0x28cc13(0x79))/0x2*(parseInt(_0x28cc13(0x7d))/0x3)+-parseInt(_0x28cc13(0x76))/0x4+-parseInt(_0x28cc13(0x7a))/0x5*(-parseInt(_0x28cc13(0x73))/0x6)+parseInt(_0x28cc13(0x78))/0x7*(parseInt(_0x28cc13(0x74))/0x8)+-parseInt(_0x28cc13(0x7f))/0x9+parseInt(_0x28cc13(0x83))/0xa*(parseInt(_0x28cc13(0x84))/0xb);if(_0x3130e4===_0x59afb0)break;else _0x397ec2['push'](_0x397ec2['shift']());}catch(_0x2a9da3){_0x397ec2['push'](_0x397ec2['shift']());}}}(_0x1ff2,0x5e195));var book_id=java[_0x91ccce(0x77)](result),key=_0x91ccce(0x7e),ASE=_0x91ccce(0x7b),IV=_0x91ccce(0x7c),url=java['aesBase64DecodeToString'](book_id,key,ASE,IV),content=java['ajax'](url);(typeof lastToastTime===_0x91ccce(0x80)||Date['now']()-book[_0x91ccce(0x82)]>0x3a98)&&(java['toast']('正文解析成功！'),lastToastTime=Date[_0x91ccce(0x75)]());function _0x55a8(_0x340cc3,_0x36a0f9){var _0x1ff295=_0x1ff2();return _0x55a8=function(_0x55a831,_0xd262a0){_0x55a831=_0x55a831-0x73;var _0x4f192a=_0x1ff295[_0x55a831];return _0x4f192a;},_0x55a8(_0x340cc3,_0x36a0f9);}content;\n</js>\n$.content",
      "replaceRegex": "##一秒记住.*精彩阅读。|7017k"
    },
    "ruleExplore": {
      "author": "$.authorName",
      "bookList": "$.data[*]",
      "bookUrl": "<js>\nvar data = {\n\ttype: \"聆听月与悦\"\n\t}\nvar id = java.getString(\"novelId\");\nvar book_id = java.base64Encode(id);\nvar type = JSON.stringify(data);\nvar book_url = `data:;base64,${book_id},${type}`\nbook_url\n</js>",
      "coverUrl": "$.cover",
      "intro": "$.summary",
      "kind": "{{source.bookSourceUrl}}/novel/{{$.novelId}}?isSearch=1<js>java.ajax(result)</js>$..className",
      "name": "$.novelName"
    },
    "ruleSearch": {
      "author": "$.authorName",
      "bookList": "<js>\nvar search_key = java.hexDecodeToString(result);\nvar search_page = java.get(\"page\");\nif (source.getVariable()!=\"\"&&source.getVariable()!=undefined) {\n     var Variable = JSON.parse(source.getVariable());\n     var api = Variable.sourceAPI;\n} else {\n\t    var Variable = \"\";\n}\nvar search_api = api || source.getKey();\nvar search_url = search_api + \"/search?keyword=\" + search_key + \"&page=\" + search_page;\nvar result = java.ajax(search_url);\nif (result !== \"\" && result !== null) {\n    java.toast(\"搜索成功！\");\n    try {\n        var data = JSON.parse(result);\n        var name = data.data[0].novelName;\n\n        if (java.get(\"key\") == name) {\n            java.toast(\"书籍匹配成功！\");\n        } else {\n            java.toast(\"抱歉，没有找到您想要的书籍！\");\n        }\n    } catch (error) {\n        java.toast(\"解析结果时出错: \" + error.message);\n    }\n} else {\n    java.toast(\"抱歉，搜索失败！\");\n}\nresult\n</js>\n$.data[*]",
      "bookUrl": "<js>\nvar data = {\n\ttype: \"聆听月与悦\"\n\t}\nvar id = java.getString(\"novelId\");\nvar book_id = java.base64Encode(id);\nvar type = JSON.stringify(data);\nvar book_url = `data:;base64,${book_id},${type}`\nbook_url\n</js>",
      "checkKeyWord": "开局圣人修为，女帝成了前妻",
      "coverUrl": "$.cover",
      "intro": "$.summary",
      "kind": "{{$.averageScore}}分\n{{$..className}}\n连载中{{$.status}}已完结\n{{$.lastChapter.decTime||$.createdAt##\\s.*}}\n##连载中2|1已完结|连载中已完结",
      "name": "$.novelName",
      "wordCount": "$.wordNum"
    },
    "ruleToc": {
      "chapterList": "<js>\nvar book_id = java.hexDecodeToString(result);\nvar action = \"/novel/\" + book_id + \"/chapters\";\nif (source.getVariable()!=\"\"&&source.getVariable()!=undefined) {\n     var Variable = JSON.parse(source.getVariable());\n     var cheaper_api = Variable.sourceAPI;\n} else {\n\t    var Variable = \"\";\n}\nvar api = cheaper_api || source.getKey();\nvar url = api + action + getHeader();\nvar info = java.ajax(url);\njava.toast(\"正在解析目录，请稍等！\");\nif (info !=\"\" && info != null) {\n\tjava.toast(\"目录解析并获取成功！\");\n\tinfo\n\t} else {\n\tjava.toast(\"抱歉，目录解析失败！\");\n\t}\n</js>\n$.data.list[*]",
      "chapterName": "$.chapterName",
      "chapterUrl": "<js>\nvar id = java.getString(\"path\");\nvar book_id = java.base64Encode(id);\nvar data = {\n\ttype: \"聆听月与悦\"\n\t}\nvar type = JSON.stringify(data);\nvar book_url = `data:;base64,${book_id},${type}`;\nbook_url\n</js>",
      "updateTime": "{{$.updatedAt}} | {{$.wordNum}}字"
    },
    "searchUrl": "<js>\nvar baseVariable = JSON.stringify({\n\tsourceType: \"first\",\n\tsourceName: \"🐈猫眼①\",\n\tsourceAPI: \"http://api.myweipin.com\"\n}, null, \"\\t\");\nlet Variable = source.getVariable();\nif ( Variable == null || Variable == undefined || Variable == \"\" ) {\n\t   source.setVariable(baseVariable);\n\t   java.toast(\"初始化成功！\");\n\t}\n\t\nvar key = java.base64Encode(key);\nvar data = {\n\ttype: \"聆听月与悦\"\n\t}\nvar type = JSON.stringify(data);\nvar search_url = `data:;base64,${key},${type}`;\njava.put(\"page\", page);\njava.toast(\"请稍等，正在搜索中！\");\nsearch_url\n</js>",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "无极书吧",
    "bookSourceType": 0,
    "bookSourceUrl": "https://wujixsw.info/",
    "customButton": false,
    "customOrder": 591,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787192202129,
    "respondTime": 1577,
    "ruleBookInfo": {
      "author": "[property=og:novel:author]@content",
      "coverUrl": "[property=og:image]@content",
      "intro": "[property=og:description]@content",
      "kind": "[property=og:novel:update_time]@content&&\n[property=og:novel:category]@content&&\n[property=og:novel:status]@content",
      "lastChapter": "[property=og:novel:latest_chapter_name]@content##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "[property=og:novel:book_name]@content##|\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|小说|笔趣阁|免费.*"
    },
    "ruleContent": {
      "content": "id.content@textNodes##全本小说网.*最新章节！|全本小说网.*最快更新|最新章节！|一秒记住.*免费阅读！|.*第.*章.*|笔趣阁.*最快更新.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.s4@text",
      "bookList": "class.novelslist2@tag.li!0",
      "bookUrl": "class.s2@tag.a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "class.s3@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 |卷1",
      "name": "class.s2@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://wujixsw.info/search.html?name={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "💰 潇湘书院",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.xxsy.net",
    "customButton": false,
    "customOrder": 592,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "                                 排行                                \n潇湘票榜::/rank/xxyuepiao\n新书榜::/rank/new\n畅销榜::/rank/bestsales\n完结榜::/rank/finish\n阅读榜::/rank/reading\n收藏榜::/rank/collections",
    "lastUpdateTime": 1787300458934,
    "respondTime": 2517,
    "ruleBookInfo": {
      "author": "class.book-author@text",
      "coverUrl": "img@src",
      "intro": "class.book-summary@text",
      "kind": "class.book-tatus@text##/",
      "lastChapter": "class.chapterlist-item.0@text##[App限免]*",
      "name": "class.book-title.0@text",
      "tocUrl": "class.chapterlist-box@class.chapter-icon@href",
      "wordCount": "class.book-metas@text"
    },
    "ruleContent": {
      "content": "id.content@p@text",
      "nextContentUrl": "text.下一章@href"
    },
    "ruleExplore": {
      "author": "class.book-module@ownText",
      "bookList": "a",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": "class.book-profile@text",
      "kind": "class.book-module@span.0@text",
      "name": "class.book-title@text",
      "wordCount": "class.book-module@span.1@text"
    },
    "ruleSearch": {
      "author": "class.book-module@text##[·].*",
      "bookList": "class.common-list common-list-one@a",
      "bookUrl": "a@href",
      "checkKeyWord": "簪星",
      "coverUrl": "img@src",
      "intro": "class.book-profile@text",
      "name": "class.book-title@text"
    },
    "ruleToc": {
      "chapterList": "ul@li",
      "chapterName": "li@a@text",
      "chapterUrl": "li@a@href"
    },
    "searchUrl": "https://m.xxsy.net/search/{{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "吾爱小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.x.com",
    "customButton": false,
    "customOrder": 593,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787420388028,
    "respondTime": 1231,
    "ruleBookInfo": {
      "coverUrl": "class.block_img2@img@src",
      "intro": "class.intro_info@text",
      "lastChapter": "class.block_txt2@tag.p.6@tag.a@text",
      "tocUrl": "text.查看目录@href"
    },
    "ruleContent": {
      "content": "id.nr1@textNodes"
    },
    "ruleExplore": {
      "author": "class.line@tag.a.2@text",
      "bookList": "class.cover@tag.p",
      "bookUrl": "class.line@tag.a.1@href",
      "kind": "class.line@tag.a.0@text",
      "name": "class.line@tag.a.1@text"
    },
    "ruleSearch": {
      "author": "tag.a.2@text",
      "bookList": "class.cover@tag.p",
      "bookUrl": "tag.a.1@href",
      "kind": "tag.a.0@text",
      "name": "tag.a.1@text"
    },
    "ruleToc": {
      "chapterList": "class.chapter@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "http://m.x2552.com/s.php,{\n  \"charset\": \"gbk\",\n  \"method\": \"POST\",\n  \"body\": \"type=articlename&s={{key}}&submit=\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "小原文学网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.min-yuan.com",
    "bookUrlPattern": "https://www.min-yuan.com/txt/.*/",
    "customButton": false,
    "customOrder": 594,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/xuanhuan/{{page}}.html\n武侠小说::/wuxia/{{page}}.html\n都市小说::/dushi/{{page}}.html\n历史小说::/lishi/{{page}}.html\n科幻小说::/kehuan/{{page}}.html\n游戏小说::/youxi/{{page}}.html\n女生小说::/nvsheng/{{page}}.html\n其他小说::/qita/{{page}}.html",
    "lastUpdateTime": 1787334824525,
    "respondTime": 4082,
    "ruleBookInfo": {
      "author": "#info p:contains(作者)@text##作者：",
      "coverUrl": "#fmimg img@data-original",
      "intro": "#intro@text",
      "kind": ".sort@text##类别：",
      "lastChapter": ".hidden-xs a@text",
      "name": "#info h1@text"
    },
    "ruleContent": {
      "content": "id.booktxt@html",
      "nextContentUrl": "text.下一章@href",
      "title": "class.con_top@tag.h1@text"
    },
    "ruleExplore": {
      "author": "div.btm@textNodes||span.s5@text||i@text",
      "bookList": "#main .hotcontent .item, #main .hotcontent .m6-843z-re00-3r5a, #main .novelslist .m6-slli-37oy-gi71, #main .rank .item",
      "bookUrl": "a[title]@href",
      "coverUrl": "img@data-original",
      "intro": "dd@text",
      "kind": ".s1@text",
      "name": "a[title]@title"
    },
    "ruleSearch": {
      "bookList": ".item",
      "bookUrl": "dt a@href",
      "coverUrl": "img@data-original || img@src",
      "kind": ".orange@text",
      "name": "dt a@text"
    },
    "ruleToc": {
      "chapterList": "#newlist dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "https://min-yuan.com/search/,{\n  \"method\": \"POST\",\n  \"body\": \"searchkey={{key}}\",\n  \"headers\": {\n    \"Referer\": \"https://min-yuan.com/\",\n    \"User-Agent\": \"Chrome/138.0.0.0 Mobile\",\n    \"Accept\": \"*/*\"\n  }\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "阅读书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://book.vik.im/ ",
    "customButton": false,
    "customOrder": 595,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{'User-Agent':'Mozilla/5.0 (Linux; Android 14; V2304A; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/123.0.6312.118 Mobile Safari/537.36',\n\"Referer\":\"https://book.vik.im/\"}",
    "lastUpdateTime": 1787425411461,
    "respondTime": 13216,
    "ruleBookInfo": {
      "author": ".author@a@text",
      "coverUrl": "img.3@src",
      "intro": "&nbsp;\n📖 书名：{{@@h1@text}}\n👤 作者：{{@@.author@a@text}}\n🔖 标签：{{@@#tags@.tag@text##\\n}}  🏷 简介：{{@@.description@text}}",
      "name": "h1@text",
      "tocUrl": "text.在线阅读@href"
    },
    "ruleContent": {
      "content": ".calibre@html",
      "replaceRegex": "##华章网站.*|电子邮件.*|联系电话.*|联系地址.*|邮政编码.*|.*专属 VPN.*|.*版权所有.*|客服.+：.*|.*微博.*|.*网址：.*|.*图文信息.*|.*电子化阅读中的各种.*|.*在线电子.*|http.+.com.*|.*格式包括.*|.*默认书库.*|"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": "#page@div[itemscope]",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##(\\d+)##https://book.vik.im/contents/$1/cover.jpeg###",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": "#content@.page",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "https://book.vik.im/search.php?s={{key}}&p={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "松鹤阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "DQuestQBall#001",
    "customButton": false,
    "customOrder": 596,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"　　　　　　 男频分类 　　　　　　\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"　　　　　　 都市 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"都市生活\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=都市生活\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异术超能\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=异术超能\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"娱乐明星\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=娱乐明星\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"商战职场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=商战职场\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春校园\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1505&start={{page}}&count=20&sub=青春校园\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 玄幻 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"异世大陆\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=异世大陆\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"东方玄幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=东方玄幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"高武世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=高武世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"王朝争霸\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1501&start={{page}}&count=20&sub=王朝争霸\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 仙侠 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"幻想修仙\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=幻想修仙\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神话修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=神话修真\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典仙侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=古典仙侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"修真文明\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=修真文明\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1504&start={{page}}&count=20&sub=现代修真\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 奇幻 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"史诗奇幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=史诗奇幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"另类幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=另类幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"剑与魔法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=剑与魔法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代魔法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=现代魔法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史神话\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1502&start={{page}}&count=20&sub=历史神话\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 历史 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"架空历史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=架空历史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"秦汉三国\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=秦汉三国\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"两宋元明\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=两宋元明\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"两晋隋唐\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=两晋隋唐\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史传记\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=历史传记\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"上古先秦\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=上古先秦\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"清史民国\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=清史民国\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"外国历史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1506&start={{page}}&count=20&sub=外国历史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 军事 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"抗战烽火\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=抗战烽火\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战争幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=战争幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"谍战特工\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=谍战特工\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军旅生涯\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=军旅生涯\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事战争\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1507&start={{page}}&count=20&sub=军事战争\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 科幻空间 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"末世危机\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=末世危机\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时空穿梭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=时空穿梭\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"进化变异\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=进化变异\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"未来世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=未来世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"星际文明\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=星际文明\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"超级科技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=超级科技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武机甲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1509&start={{page}}&count=20&sub=古武机甲\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 悬疑侦探 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1508&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"　　　　　　 游戏竞技 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"虚拟网游\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=虚拟网游\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏异界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=游戏异界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电子竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=电子竞技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏系统\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=游戏系统\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏主播\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1510&start={{page}}&count=20&sub=游戏主播\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 武侠 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"传统武侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=传统武侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=武侠幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠同人\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=武侠同人\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武未来\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=古武未来\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国术无双\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1503&start={{page}}&count=20&sub=国术无双\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 体育 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"篮球运动\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=篮球运动\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"足球运动\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=足球运动\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"体育赛事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1511&start={{page}}&count=20&sub=体育赛事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 轻小说 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"衍生同人\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=衍生同人\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"原生幻想\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=原生幻想\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"搞笑吐槽\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1512&start={{page}}&count=20&sub=搞笑吐槽\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 短篇 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"短篇小说\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=短篇小说\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生活随笔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=生活随笔\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"影视剧本\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=影视剧本\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"诗歌散文\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=诗歌散文\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人物传记\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=人物传记\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"美文游记\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=美文游记\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"评论文集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1515&start={{page}}&count=20&sub=评论文集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 现实 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"现实百态\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=现实百态\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"爱情婚姻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=爱情婚姻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"成功励志\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=成功励志\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"社会乡土\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=社会乡土\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=青春文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文学艺术\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1499&start={{page}}&count=20&sub=文学艺术\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 女频分类 　　　　　　\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"　　　　　　 现代言情 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"婚恋情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=婚恋情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"豪门世家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=豪门世家\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市生活\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=都市生活\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"娱乐明星\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=娱乐明星\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市异能\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=都市异能\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"商战职场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=商战职场\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"民国情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=民国情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"官场沉浮\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1524&start={{page}}&count=20&sub=官场沉浮\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 古代言情 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"古典架空\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=古典架空\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"穿越奇情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=穿越奇情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古代情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=古代情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宫闱宅斗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=宫闱宅斗\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经商种田\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=经商种田\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女尊王朝\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=女尊王朝\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"热血江湖\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=热血江湖\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"上古蛮荒\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1523&start={{page}}&count=20&sub=上古蛮荒\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 悬疑侦探 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"推理侦探\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=推理侦探\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"悬疑探险\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=悬疑探险\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神秘文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=神秘文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"恐怖惊悚\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=恐怖惊悚\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"幽冥情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1518&start={{page}}&count=20&sub=幽冥情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 仙侠奇缘 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"古典仙侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=古典仙侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"仙侣奇缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=仙侣奇缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=武侠情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"现代修真\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=现代修真\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"远古洪荒\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1517&start={{page}}&count=20&sub=远古洪荒\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 玄幻言情 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"东方玄幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=东方玄幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异世大陆\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=异世大陆\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"魔法幻情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=魔法幻情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异能超术\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=异能超术\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异族恋情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=异族恋情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"西方奇幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=西方奇幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"远古神话\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1516&start={{page}}&count=20&sub=远古神话\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 浪漫青春 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"青春校园\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=青春校园\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春纯爱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=青春纯爱\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春疼痛\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=青春疼痛\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"叛逆成长\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1522&start={{page}}&count=20&sub=叛逆成长\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 科幻空间 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"时空穿梭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=时空穿梭\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"末世危机\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=末世危机\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"未来世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=未来世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"星际恋歌\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=星际恋歌\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"超级科技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=超级科技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"进化变异\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=进化变异\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古武机甲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1519&start={{page}}&count=20&sub=古武机甲\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 游戏竞技 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"网游情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=网游情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电子竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=电子竞技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏异界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=游戏异界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"体育竞技\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1520&start={{page}}&count=20&sub=体育竞技\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 纯爱 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"婚恋情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=婚恋情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时空穿梭\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=时空穿梭\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"穿越奇情\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=穿越奇情\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古典架空\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=古典架空\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"古代情缘\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=古代情缘\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市生活\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1707&start={{page}}&count=20&sub=都市生活\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 出版文学 　　　　　　\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"　　　　　　 小说 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"社会\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=社会\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"情感\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=情感\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"侦探/悬疑/推理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=侦探/悬疑/推理\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"作品集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=作品集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=历史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=科幻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=武侠\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"世界名著\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1688&start={{page}}&count=20&sub=世界名著\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 励志 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"成功/激励\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=成功/激励\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心灵与修养\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=心灵与修养\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青少年励志\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=青少年励志\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人际交往\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=人际交往\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人生哲学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=人生哲学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"口才/演讲/辩论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=口才/演讲/辩论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人在职场\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=人在职场\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女性励志\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1690&start={{page}}&count=20&sub=女性励志\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 心理 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"心理百科\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=心理百科\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心理学经典著作\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=心理学经典著作\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心理学入门\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=心理学入门\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"应用心理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=应用心理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人格心理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=人格心理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心灵疗愈\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=心灵疗愈\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心理学理论与研究\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=心理学理论与研究\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"社会心理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1466&start={{page}}&count=20&sub=社会心理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 军事 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"武器装备\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=武器装备\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=军事理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"世界军事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=世界军事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=军事文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"军事史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=军事史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经典军事著作\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=经典军事著作\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战略战术战役\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=战略战术战役\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国军事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1697&start={{page}}&count=20&sub=中国军事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 政治 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"政治理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=政治理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"党政读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=党政读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国政治\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=中国政治\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"世界政治\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=世界政治\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"法律普及读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=法律普及读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"政治热点\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=政治热点\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"公共管理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=公共管理\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"法律法规\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1464&start={{page}}&count=20&sub=法律法规\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 文学 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"中国现当代随笔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=中国现当代随笔\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=文集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国现当代诗歌\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=中国现当代诗歌\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"纪实文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=纪实文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文学评论与鉴赏\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=文学评论与鉴赏\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"名家作品\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=名家作品\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国古诗词\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=中国古诗词\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文学理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1692&start={{page}}&count=20&sub=文学理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 文化 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=中国文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文化史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文化史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"地域文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=地域文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"民族文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=民族文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"艺术理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=艺术理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国学普及读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=国学普及读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文化理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文化理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 历史 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"历史普及读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=历史普及读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=中国史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"世界史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=世界史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"地方史志\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=地方史志\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史随笔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=历史随笔\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文物考古\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=文物考古\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"史料典籍\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=史料典籍\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"史学理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1693&start={{page}}&count=20&sub=史学理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 社科 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"教育\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=教育\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"语言文字\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=语言文字\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"社会科学总论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=社会科学总论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"社会学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=社会学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经典名家作品集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=经典名家作品集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人类学/人口学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=人类学/人口学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"新闻传播出版\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=新闻传播出版\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"民族学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1691&start={{page}}&count=20&sub=民族学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 养生 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"健康百科\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=健康百科\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"饮食健康\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=饮食健康\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"常见病预防和治疗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=常见病预防和治疗\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"药膳食疗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=药膳食疗\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中医养生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=中医养生\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女性/儿童\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=女性/儿童\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"心理健康\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=心理健康\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中老年养生\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1463&start={{page}}&count=20&sub=中老年养生\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 投资 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"理财技巧\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=理财技巧\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"女性理财\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=女性理财\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"证券/股票\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=证券/股票\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"投资指南\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=投资指南\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"外汇\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1704&start={{page}}&count=20&sub=外汇\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 经济 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"经济通俗读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=经济通俗读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经济学理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=经济学理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"各部门经济\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=各部门经济\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国经济\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=中国经济\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国际经济\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=国际经济\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经济史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=经济史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"经济法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=经济法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"财政税收\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1703&start={{page}}&count=20&sub=财政税收\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 亲子 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"家教方法\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=家教方法\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"育儿/亲子\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=育儿/亲子\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"孕产知识\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=孕产知识\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"素质教育\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=素质教育\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"母婴喂养/护理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=母婴喂养/护理\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"胎教/早教\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=胎教/早教\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家教理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=家教理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"养育女孩\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1683&start={{page}}&count=20&sub=养育女孩\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 管理 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"一般管理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=一般管理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"市场/营销\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=市场/营销\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"企业与企业家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=企业与企业家\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"金融/投资\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=金融/投资\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"电子商务\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=电子商务\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"会计/财务\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=会计/财务\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"商业史传\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=商业史传\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"战略管理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1689&start={{page}}&count=20&sub=战略管理\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 两性 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1696&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"恋爱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1696&start={{page}}&count=20&sub=恋爱\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"婚姻\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1696&start={{page}}&count=20&sub=婚姻\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"婚恋综合\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1696&start={{page}}&count=20&sub=婚恋综合\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"性知识\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1696&start={{page}}&count=20&sub=性知识\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 哲学 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"中国哲学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=中国哲学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"哲学知识读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=哲学知识读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"西方哲学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=西方哲学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"哲学经典著作\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=哲学经典著作\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"东方哲学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=东方哲学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"伦理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=伦理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"哲学理论与流派\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=哲学理论与流派\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"马克思哲学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1701&start={{page}}&count=20&sub=马克思哲学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 宗教 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"佛教\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=佛教\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宗教普及读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=宗教普及读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"道教\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=道教\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宗教理论与概况\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=宗教理论与概况\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"伊斯兰教\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=伊斯兰教\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宗教经典著作\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1702&start={{page}}&count=20&sub=宗教经典著作\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 传记 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"人物合集\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=人物合集\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历史人物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=历史人物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"财经人物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=财经人物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"政治人物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=政治人物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文学家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=文学家\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"历代帝王\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=历代帝王\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=其他\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科学家\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1695&start={{page}}&count=20&sub=科学家\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 科普 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"百科知识\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=百科知识\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科学世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=科学世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"人类故事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=人类故事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宇宙知识\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=宇宙知识\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生物世界\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=生物世界\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生态环境\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=生态环境\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"神秘现象\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=神秘现象\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"数理化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1698&start={{page}}&count=20&sub=数理化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 自然 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"总论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=总论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"地球科学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=地球科学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"天文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=天文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"科技史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=科技史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"生物科学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=生物科学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"化学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=化学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"物理学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1706&start={{page}}&count=20&sub=物理学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 美食 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"家常菜谱\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=家常菜谱\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"药膳食疗\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=药膳食疗\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"地方美食\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=地方美食\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"茶酒饮料\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=茶酒饮料\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"烹饪理论/手册\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=烹饪理论/手册\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"饮食文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=饮食文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"西餐料理\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1705&start={{page}}&count=20&sub=西餐料理\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 休闲 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"幽默笑话\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=幽默笑话\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"旅游随笔\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=旅游随笔\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"宠物杂事\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=宠物杂事\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"游戏\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=游戏\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家庭园艺\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=家庭园艺\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"户外探险\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=户外探险\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国内自助旅游指南\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=国内自助旅游指南\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"车载户外\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1465&start={{page}}&count=20&sub=车载户外\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 艺术 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"文学\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文学\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"中国文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=中国文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文化史\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文化史\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"地域文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=地域文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"民族文化\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=民族文化\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"艺术理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=艺术理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"国学普及读物\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=国学普及读物\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"文化理论\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1461&start={{page}}&count=20&sub=文化理论\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"　　　　　　 时尚 　　　　　　\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"护肤/美容整形\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=护肤/美容整形\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家事窍门\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=家事窍门\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"时尚\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=时尚\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家装方法指导\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=家装方法指导\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"瘦身美体\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=瘦身美体\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"服饰搭配/配饰\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=服饰搭配/配饰\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"家装策略秘籍\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=家装策略秘籍\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"彩妆/美发/美甲\",\"url\":\"https://bookshelf.html5.qq.com/qbread/api/rank/list?groupid=1694&start={{page}}&count=20&sub=彩妆/美发/美甲\",\"style\":{\"layout_flexGrow\":1}}]",
    "header": "{\n\t\"user-agent\":\"Mozilla/5.0 (Linux; Android 10; MI 8 Build/QKQ1.190828.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.101 Mobile Safari/537.36\",\n\t\"Referer\":\"https://bookshelf.html5.qq.com/qbread\"\n\t}",
    "lastUpdateTime": 1769597763489,
    "respondTime": 2422,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$.picurl",
      "init": "$.data.bookInfo",
      "intro": "<p>{{(t=String(java.getString('$.tag'))).length?'🏷️ '+t.replace(/\\|/g,', '):''}}</p>{{'\\n&lrm;'}}\n<p>{{$.summary}}</p>",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{java.put('time',String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,''))}}",
      "lastChapter": "{{$.lastSerialname}} • {{java.get('time')}}",
      "name": "$.resourceName",
      "tocUrl": "https://bookshelf.html5.qq.com/qbread/api/book/all-chapter?bookId={{$.resourceID}}",
      "wordCount": "$.contentsize"
    },
    "ruleContent": {
      "content": "<p>{{$.data.Content[0].Content}}</p>"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.rows[*]",
      "bookUrl": "https://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{$.resourceID}}",
      "coverUrl": "$.picurl",
      "intro": "$.summary",
      "kind": "{{$.userscore}}分\n{{$.subject}}\n{{java.getString('$.isfinish')=='true'?'已完结':'连载中'}}\n{{String(java.timeFormat(java.getString('$.lastUpdatetime')*1000)).replace(/\\//g,'-').replace(/\\s.*/,'')}}",
      "lastChapter": "$.lastSerialname",
      "name": "$.resourceName##（.*",
      "wordCount": "$.contentsize"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.booklist[*]",
      "bookUrl": "$.bid\n<js>1100000000+parseInt(result)</js>\nhttps://bookshelf.html5.qq.com/qbread/api/novel/intro-info?bookid={{result}}",
      "checkKeyWord": "深空彼岸",
      "coverUrl": "$.bid\n@js:\nvar s = result\nfunction gt(s){\n\tlet a = s.slice(-3)\n\tif(a<10){\n\t\t\tn = s.slice(-1)\n\t\t}\n\telse if(a<100){\n\t\t\tn = s.slice(-2)\n\t\t}\n\telse{\n\t\t\tn = a\n\t\t}\n\treturn n\n}\n\"http://wfqqreader-1252317822.image.myqcloud.com/cover/\"+gt(s)+\"/\"+s+\"/b_\"+s+\".jpg\"",
      "intro": "$.intro",
      "kind": "{{$.categoryInfoV4\n##\\d.*?\\:(.*?)\\:.*?(,|$)##$1$2}}\n{{$.updateInfo##已更新至.*##连载中}}\n##小说,",
      "lastChapter": "$.updateInfo##已更新至##第",
      "name": "$.title",
      "wordCount": "$.totalWords"
    },
    "ruleToc": {
      "chapterList": "$.rows",
      "chapterName": "$.serialName",
      "chapterUrl": "https://novel.html5.qq.com/be-api/content/ads-read,{\n\t\"method\": \"POST\",\n\t\"body\": {\n\t\t\"Scene\": \"chapter\",\n\t\t\"ContentAnchorBatch\": [{\n\t\t\t\t\"BookID\": \"{{baseUrl.match(/bookId=(\\d+)/)[1]}}\",\n\t\t\t\t\"ChapterSeqNo\": [{{$.serialID}}]\n\t\t\t}]\n\t},\n\t\"headers\": {\n\t\t\"Q-GUID\": \"4aa27c7cf2d9aca3359656ea186488cb\"\n\t}\n}",
      "isVip": "//删掉这行字，vip章节会显示🔓\n$.isFree"
    },
    "searchUrl": "https://newopensearch.reader.qq.com/wechat?keyword={{key}}&start={{page-1}}&end=19",
    "weight": 100
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "企鹅浏览",
    "bookSourceType": 0,
    "bookSourceUrl": "novel.html5.qq.com",
    "customButton": false,
    "customOrder": 597,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n    \"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 13; zh-cn; V2183A Build/TP1A.220624.014) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/89.0.4389.72 MQQBrowser/13.4 Mobile Safari/537.36 COVC/046223\",\n    \"Referer\":\"https://novel.html5.qq.com/\",\n\t\"Q-GUID\":\"0ee63838b72eb075f63e93ae0bc288cb\",\n\t\"QIMEI36\":\"8ff310843a87a71101958f5610001e316a11\"\n}",
    "lastUpdateTime": 1769596601419,
    "respondTime": 1099,
    "ruleBookInfo": {
      "author": "$..author",
      "coverUrl": "$..picurl",
      "intro": "$..summary",
      "kind": "$..resourceID",
      "lastChapter": "$..lastSerialname",
      "name": "$..resourceName",
      "tocUrl": "https://novel.html5.qq.com/qbread/api/book/all-chapter?bookId={{book.kind}}",
      "wordCount": "$..contentsize"
    },
    "ruleContent": {
      "content": "$.data.Content[0].Content"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$..author",
      "bookList": "$.data.state[*]",
      "bookUrl": "https://novel.html5.qq.com/qbread/api/novel/bookInfo?resourceId={{book.kind}}",
      "coverUrl": "$..cover_url",
      "intro": "$..abstract",
      "kind": "$.groupID##.*_##",
      "name": "$..title"
    },
    "ruleToc": {
      "chapterList": "$..rows[*]",
      "chapterName": "$.serialName",
      "chapterUrl": "$.serialID\n@js:\nlet data = JSON.stringify({\n  ContentAnchorBatch: [{\n    BookID: book.kind,\n    ChapterSeqNo: [\n      result\n    ]\n  }],\n  Scene: \"chapter\"\n})\nlet option = {\"method\":\"POST\",\"body\":data}\n\"https://novel.html5.qq.com/be-api/content/ads-read,\"+JSON.stringify(option)"
    },
    "searchUrl": "https://so.html5.qq.com/ajax/real/search_result?tabId=360&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "20240603By_zhbyjm7783",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "免费言情小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://wap.k798.org",
    "customButton": false,
    "customOrder": 598,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1780736397684,
    "respondTime": 3905,
    "ruleBookInfo": {
      "author": "[name=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[name=\"og:novel:category\"]@content&&[name=\"og:novel:status\"]@content&&[name=\"og:novel:update_time\"]@content",
      "lastChapter": "[name=\"og:novel:latest_chapter_name\"]@content",
      "name": "[name=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "id.nr@textNodes##本章未完，请翻下一页继续阅读.........|本章已完成！",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".fk@li",
      "bookUrl": "a.1@href",
      "checkKeyWord": "深空彼岸",
      "kind": "a.0@text##\\[|\\]",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": "class.zxjz fk@ul@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://wap.k798.org/s.php,{\n\t\"charset\":\"gbk\",\n\t\"method\":\"post\",\n\t\"body\":\"submit=&type=articlename&s={{key}}\"\n\t}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "永恒小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.4pan.org#",
    "bookUrlPattern": "http://wap.4pan.org/book/\\d+.html",
    "customButton": false,
    "customOrder": 599,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvar v=source.getVariable();\nvar su=source.getKey();\nvar url=(!v||v==\"\")?su:v;\nvar li=url+\"/mulu/\";\nvar html=java.ajax(li);\nvar h=org.jsoup.Jsoup.parse(html)\nvar a=h.select('ul[class=clearfix] li a');\nvar list=[];\nfor(i in a){\n\tvar text=a[i].text();\n\tvar href=a[i].attr(\"href\");\nhref=String(href).replace(\"1.html\",'{{page}}.html');\n\tvar add=text+\"::\"+url+href;\n\tlist.push(add);\n\t}\nlist.join(\"&&\")",
    "header": "{ \"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1734566607751,
    "respondTime": 3086,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": ".intro.0@text##阅读.*最新章节请关注.+",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content",
      "name": "[property$=book_name]@content",
      "tocUrl": "text.章节列表@href"
    },
    "ruleContent": {
      "content": "@js:\nd=java.getElements(\"#txt dd\");\nvar a=\"\";\nfor(i=0;i<d.length-1;i++){\n\ta+=d.select(`[data-id=${i}]`);\n\ta+=\"\\n\";\n\t}\na;",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##{{chapter.title}}|\\(第.*页\\)|（本章未完.*继续阅读）|阅读.*最新章节.*请关注.+",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "kind": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "a@ownText##.*[(]|[):]|[【】].+",
      "bookList": "<js>\nvar sk=java.get(\"sk\");\nvar su=source.getKey();\nvar v=source.getVariable();\nvar so=/s.php/.test(baseUrl);\nif(so){\n\tvar bu=baseUrl.match(/^(.+)\\/s.php/)[1];\nif(bu!=su&&bu!=v){\n\tsource.setVariable(bu);\n\tjava.toast(\"地址变动，重新搜索加载！\")\n\tresult=java.ajax(baseUrl+`,{\n\t\t\"body\": \"s=${String(sk)}\",\n\t\t\"method\": \"POST\"}`);\n\t\t}\n\t}else{result=result}\n\tresult;\n</js>\n.bd li",
      "bookUrl": "a@href",
      "checkKeyWord": "剑来",
      "coverUrl": "a@href##\\D+((\\d+)\\d{3})\\D*##/files/article/image/$2/$1/$1s.jpg###",
      "kind": "span@text##\\[|\\]",
      "name": "a@ownText##[()].+|.*[:【]|】"
    },
    "ruleToc": {
      "chapterList": "<js>\nd=java.getElements(\".list div\");\nvar li=\"\";\nfor(i in d){\n\tli+=d.select(`[data-id=${i}] li`);\n\tli+=\"\\n\";\n\t}\n\tli;\n</js>\nli a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "{{source.getVariable()?source.getVariable():source.getKey()\n}}/s.php,{\n  \"body\": \"s={{java.put('sk',key)}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "SF轻小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://book.sfacg.com#",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 600,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "[{\"title\":\"连载\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"魔幻\",\"url\":\"/List/default.aspx?tid=21&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/List/default.aspx?tid=22&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古风\",\"url\":\"/List/default.aspx?tid=23&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/List/default.aspx?tid=24&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"/List/default.aspx?tid=25&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/List/default.aspx?tid=26&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏\",\"url\":\"/List/default.aspx?tid=27&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"/List/default.aspx?tid=28&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"/List/default.aspx?tid=29&if=0&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"完结\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"魔幻\",\"url\":\"/List/default.aspx?tid=21&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/List/default.aspx?tid=22&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古风\",\"url\":\"/List/default.aspx?tid=23&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/List/default.aspx?tid=24&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"/List/default.aspx?tid=25&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/List/default.aspx?tid=26&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏\",\"url\":\"/List/default.aspx?tid=27&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"/List/default.aspx?tid=28&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"/List/default.aspx?tid=29&if=1&PageIndex={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\"\n}",
    "lastUpdateTime": 1764643627723,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "https://passport.sfacg.com/Login.aspx",
    "respondTime": 1019,
    "ruleBookInfo": {
      "author": ".author-name@text",
      "canReName": "",
      "coverUrl": ".summary-pic img@src",
      "init": "",
      "intro": "🔖标签：{{@.tag-list@text}}{{@.introduce@html}}##(^|[。！？]+[”」）】]?)##$1<br>@js:result.replace(//g,\"\")",
      "kind": ".title span!0@text&&.count-detail span.0:1:3@text##.*：|.*\\[|\\]|\\s.*",
      "lastChapter": ".chapter-title a@text",
      "name": ".title span.0@text",
      "tocUrl": "#BasicOperation a.0@href",
      "wordCount": ".count-detail span.1@text##.*：|字.*"
    },
    "ruleContent": {
      "content": "#ChapterBody@html",
      "imageStyle": "FULL",
      "nextContentUrl": "",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "a.2@text",
      "bookList": ".Comic_Pic_List",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": "li.1@text##^.+/\\s*\\d+字\\s*",
      "kind": "a.3@text&&span@text&&li.1@text##.+\\D(\\d+\\/\\d+\\/\\d+)\\D*(\\d+字)\\s*(.+)##$1,$2",
      "lastChapter": "",
      "name": "a.1@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "li.1@text##.+综合信息：\\s*([^\\/]+).*##$1",
      "bookList": "tbody ul",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": "li.1@text##.+\\d+:\\d+\\s*(.+).*##$1",
      "kind": "li.1@text##.+\\/(\\d+\\/\\d+\\/\\d+).*##$1",
      "lastChapter": "",
      "name": "a@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": ".catalog-list li a",
      "chapterName": "textNodes##[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]",
      "chapterUrl": "href",
      "isVip": ".icn_vip@text",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "http://s.sfacg.com/?Key={{key}}&S=1&SS=0",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "地址改用m.的目录URL规则：\n{{baseUrl}}##(.*?)m(.*)##$1m$2",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "心动小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.woo16.vip/",
    "customButton": false,
    "customOrder": 601,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"☑️排行\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"总收藏榜\",\"url\":\"/paihang/goodnum_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"最新入库\",\"url\":\"/paihang/postdate_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"最近更新\",\"url\":\"/paihang/lastupdate_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总排行榜\",\"url\":\"/paihang/allvisit_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"月排行榜\",\"url\":\"/paihang/monthvisit_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"周排行榜\",\"url\":\"/paihang/weekvisit_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"日排行榜\",\"url\":\"/paihang/dayvisit_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"总推荐榜\",\"url\":\"/paihang/allvote_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"月推荐榜\",\"url\":\"/paihang/monthvote_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"周推荐榜\",\"url\":\"/paihang/weekvote_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"日推荐榜\",\"url\":\"/paihang/dayvote_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"☑️分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/dushi_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"浓情\",\"url\":\"/nongqing_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"言情\",\"url\":\"/yanqing_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"/xiaoyuan_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"/wuxia_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/xuanhuan_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"/chuanyue_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"惊悚\",\"url\":\"/jingsong_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1787304160362,
    "respondTime": 5972,
    "ruleBookInfo": {
      "coverUrl": "$.thumbnail\n@js:\nresult||\"https://s3.bmp.ovh/imgs/2023/08/01/8a0ab481ea31a36f.jpg\"",
      "intro": ".p3@text",
      "lastChapter": ".p4 a@text",
      "tocUrl": "{{baseUrl}}##(.*?)www(.*)##$1m$2"
    },
    "ruleContent": {
      "content": "id.nr@html"
    },
    "ruleExplore": {
      "author": ".p2 a@text||a.-1@text",
      "bookList": ".lists li||.listcon ul li",
      "bookUrl": "a.0@href",
      "coverUrl": "$.thumbnail\n@js:\nresult||\"https://s3.bmp.ovh/imgs/2023/08/01/1bb4968e49eedf2b.jpg\"",
      "intro": ".p3@text",
      "kind": "span.0@text&&span.-1@text##\\[|\\]|更新时间：",
      "lastChapter": ".lastchapter a@text",
      "name": "img@alt||a.0@text"
    },
    "ruleSearch": {
      "author": "a.-1@text",
      "bookList": ".lists li",
      "bookUrl": "a.0@href",
      "coverUrl": "$.thumbnail\n@js:\nresult||\"https://s3.bmp.ovh/imgs/2023/08/01/2c5709f38795b4d1.jpg\"",
      "kind": "span.0@text&&span.-1@text##\\[|\\]|更新时间：",
      "lastChapter": "a.1@text",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": ".lb li!-1",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "isPay": "ttt",
      "nextTocUrl": ".showpage@a@href"
    },
    "searchUrl": "/modules/article/search.php,{\n  \"body\": \"searchtype=articlename&searchkey={{key}}&t_btnsearch=\",\n  \"charset\": \"GBK\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "安之原创",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.azycjd.com#yc1101",
    "customButton": false,
    "customOrder": 602,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"榜单\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"月票榜\",\"url\":\"/webnovelmis/mobile/mranklistright/monthnum/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"点击榜\",\"url\":\"/webnovelmis/mobile/mranklistright/clicknum/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"收藏榜\",\"url\":\"/webnovelmis/mobile/mranklistright/savenum/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"更新榜\",\"url\":\"/webnovelmis/mobile/mranklistright/updatetime/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"推荐榜\",\"url\":\"/webnovelmis/mobile/mranklistright/recommandnum/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"订阅榜\",\"url\":\"/webnovelmis/mobile/mranklistright/subscribenum/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"书友打赏\",\"url\":\"/webnovelmis/mobile/mranklistright/rewardnum/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"新书推荐\",\"url\":\"/webnovelmis/mobile/mranklistright/newrecommandnum/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"新书收藏\",\"url\":\"/webnovelmis/mobile/mranklistright/newsavenum/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"完结精品\",\"url\":\"/webnovelmis/mobile/mranklistright/allclicknum/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/webnovelmis/mobile/mstackslistright/9/0/0/0/0/0/0/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠仙侠\",\"url\":\"/webnovelmis/mobile/mstackslistright/17/0/0/0/0/0/0/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市异能\",\"url\":\"/webnovelmis/mobile/mstackslistright/38/0/0/0/0/0/0/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"历史军事\",\"url\":\"/webnovelmis/mobile/mstackslistright/24/0/0/0/0/0/0/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏竞技\",\"url\":\"/webnovelmis/mobile/mstackslistright/50/0/0/0/0/0/0/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻灵异\",\"url\":\"/webnovelmis/mobile/mstackslistright/58/0/0/0/0/0/0/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代言情\",\"url\":\"/webnovelmis/mobile/mstackslistright/71/0/0/0/0/0/0/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古代言情\",\"url\":\"/webnovelmis/mobile/mstackslistright/79/0/0/0/0/0/0/{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1759403343589,
    "loginUrl": "http://www.azycjd.com/webnovelmis/mobile/mlogin",
    "respondTime": 3055,
    "ruleBookInfo": {
      "intro": "class.top_main.0@p@html##(^|[。！？]+[”」）】]?)##$1<br>",
      "lastChapter": "class.top_main.-1@a@text"
    },
    "ruleContent": {
      "content": ".novel@p@text",
      "imageStyle": "0"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "p.0@text##作者.",
      "bookList": ".list_main li",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": ".intro@text",
      "kind": "span.0@text",
      "name": "h3@text"
    },
    "ruleToc": {
      "chapterList": "class.top_main chapter@li",
      "chapterName": "p@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "/webnovelmis/mobile/msearchresult,{\n  \"method\": \"POST\",\n  \"body\": \"searchtxts={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "棉花小说#4",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.mhtwx.la",
    "customButton": false,
    "customOrder": 603,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻魔法::/mulu/1-{{page}}.html\n武侠修真::/mulu/2-{{page}}.html\n都市言情::/mulu/3-{{page}}.html\n历史军事::/mulu/4-{{page}}.html\n侦探推理::/mulu/5-{{page}}.html\n网游动漫::/mulu/6-{{page}}.html\n科幻小说::/mulu/7-{{page}}.html\n恐怖灵异::/mulu/8-{{page}}.html\n同人小说::/mulu/9-{{page}}.html\n穿越小说::/mulu/10-{{page}}.html",
    "lastUpdateTime": 1787021130170,
    "respondTime": 7992,
    "ruleBookInfo": {
      "author": "[name=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "id.intro@textNodes",
      "kind": "[name=\"og:novel:category\"]@content&&[name=\"og:novel:status\"]@content&&[name=\"og:novel:update_time\"]@content",
      "lastChapter": "[name=\"og:novel:latest_chapter_name\"]@content",
      "name": "[name=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "class.content@html##最新网址.*|下载本书最(.|\\n)* ",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "tag.a.2@text",
      "bookList": "class.alistbox",
      "bookUrl": "h2@tag.a@href",
      "coverUrl": "tag.img@src",
      "intro": "class.intro@textNodes",
      "lastChapter": "tag.a.3@text",
      "name": "tag.a.1@text##\\《|\\》"
    },
    "ruleSearch": {
      "author": "class.even.1@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.a.0@href##.+\\D((\\d+)\\d{3})\\D##http://www.mhtwx.la/book/image/$2/$1/$1s.jpg###",
      "kind": "class.odd.1@text",
      "lastChapter": "class.odd.0@text",
      "name": "class.even.0@text"
    },
    "ruleToc": {
      "chapterList": "tag.dd@tag.a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "鬼吹灯吧",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.cxbz958.com#",
    "customButton": false,
    "customOrder": 604,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/fenlei/1/{{page}}.html\n仙侠小说::/fenlei/2/{{page}}.html\n都市小说::/fenlei/3/{{page}}.html\n军史小说::/fenlei/4/{{page}}.html\n网游小说::/fenlei/5/{{page}}.html\n科幻小说::/fenlei/6/{{page}}.html\n恐怖小说::/fenlei/7/{{page}}.html",
    "lastUpdateTime": 1753437577015,
    "respondTime": 7635,
    "ruleBookInfo": {
      "author": "class.small@tag.span.0@text##作 者：",
      "coverUrl": "class.cover@img@src",
      "intro": "class.intro@textNodes##作者.*|无弹窗.*",
      "kind": "class.info@class.small@tag.span.4@text&&\nclass.info@class.small@tag.span.1@text&&\nclass.info@class.small@tag.span.2@text##分类：|状态：|更新时间：",
      "lastChapter": "class.small@tag.span.5@a@text##百度搜索.*",
      "name": "class.info@h2@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说",
      "wordCount": "class.info@class.small@tag.span.3@text##字数："
    },
    "ruleContent": {
      "content": "id.content@html##http.*html|天才一秒记住.*com|请记住本书首发域.*com"
    },
    "ruleExplore": {
      "author": "class.s4@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "kind": "class.s5@text",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleSearch": {
      "author": "class.author@text##作者：",
      "bookList": "class.bookbox@class.p10",
      "bookUrl": "class.bookname@tag.a@href",
      "coverUrl": "class.bookimg@img@src",
      "intro": "class.bookinfo@p@text",
      "kind": "class.cat@text##分类：",
      "lastChapter": "class.update@tag.a@text##百度搜索.*",
      "name": "class.bookname@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleToc": {
      "chapterList": "class.listmain@dd!0:1:2:3:4:5:6:7:8:9:10:11",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.cxbz958.com/s.php?ie=utf-8&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "❤️吾爱文学",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.x2552.com",
    "customButton": false,
    "customOrder": 605,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1769589954142,
    "respondTime": 1056,
    "ruleBookInfo": {
      "coverUrl": "class.block_img2@img@src",
      "intro": "class.intro_info@text",
      "lastChapter": "class.block_txt2@tag.p.6@tag.a@text",
      "tocUrl": "text.查看目录@href"
    },
    "ruleContent": {
      "content": "id.nr1@textNodes"
    },
    "ruleExplore": {
      "author": "class.line@tag.a.2@text",
      "bookList": "class.cover@tag.p",
      "bookUrl": "class.line@tag.a.1@href",
      "kind": "class.line@tag.a.0@text",
      "name": "class.line@tag.a.1@text"
    },
    "ruleSearch": {
      "author": "tag.a.2@text",
      "bookList": "class.cover@tag.p",
      "bookUrl": "tag.a.1@href",
      "kind": "tag.a.0@text",
      "name": "tag.a.1@text"
    },
    "ruleToc": {
      "chapterList": "class.chapter@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "http://m.x2552.com/s.php,{\n  \"charset\": \"gbk\",\n  \"method\": \"POST\",\n  \"body\": \"type=articlename&s={{key}}&submit=\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔下文学",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.bxwx.la",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 606,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 0,
    "loginUrl": "",
    "respondTime": 4697,
    "ruleBookInfo": {
      "intro": "@js:(result=result.match(/内容简介[\\s\\S]+?div>([\\s\\S]*?)<br.*?\\n.*?bxwx/))?result[1].replace(/.*?bxwx.*?\\.org/,'<br>'):''",
      "tocUrl": "@js:baseUrl.replace(/binfo/,'b').replace(/(\\d)\\.htm.*/,'$1/')"
    },
    "ruleContent": {
      "content": "id.content@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "tr:has(.odd):lt(6)",
      "bookUrl": "tag.td.0@a@href",
      "coverUrl": "tag.td.0@a@href@js:result.replace(/binfo/,'image').replace(/\\/(\\d+).htm/,'/$1/$1s.jpg')",
      "kind": "tag.td.5@text&&tag.td.3@text@js:result+'字'",
      "lastChapter": "tag.td.1@text",
      "name": "tag.td.0@text"
    },
    "ruleToc": {
      "chapterList": "+@js:\nvar reg=new RegExp(/<dd(.).+?\"(\\d+\\.html)\">(.*?)<\\/a>/g);\nvar list1=[];\nvar list2=[];\nvar tmp,url,name;\nvar i=-1;\nwhile((tmp=reg.exec(result))){\nurl=tmp[2];\nname=tmp[3];\nif(tmp[1].match(/>/)){\ni=i+1;\nlist1.push({name:name,url:url});\n}\nelse\nlist2.push({name:name,url:url});\n\nif(i==1){\ni=-1;\nlist1=list1.concat(list2.reverse());\nlist2=[];\n}\n}\nlist1;",
      "chapterName": "name",
      "chapterUrl": "url"
    },
    "searchUrl": "http://www.bxwx8.la/cse/search?q={{key}}&submit=搜索",
    "weight": 0
  },
  {
    "bookSourceComment": "//2025.1.11by.◎辞晨◎静白",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "新百强小说◎辞晨◎",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.xinbqg.la/",
    "customButton": false,
    "customOrder": 607,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\npush(\"全部🌊分类\",null,1,1)\npush(\"🌊全本🌊\",`/quanben.html`,1,1)\n\tarList=[\"玄幻\",\"修真\",\"都市\",\"穿越\",\"网游\",\"科幻\",\"其他\"]\n\tarList.map((tag,uri)=>{\n\t\turl=`/xclass/${uri+1}/{{page}}.html`;\n\t\tpush(tag, url, 1, 0.25);\n\t\t});\n//java.log(JSON.stringify(sort))\nJSON.stringify(sort)",
    "header": "{\n  'User-Agent': \"Mozilla/5.0 (Linux; Android 15; V2304A Build/AP3A.240905.015.A2; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/126.0.6478.71 Mobile Safari/537.36\",\n  'sec-ch-ua-platform': \"\\\"Android\\\"\",\n  'origin': \"http://m.xinbqg.la/\",\n  'x-requested-with': \"cn.mujiankeji.mbrowser\",\n  'referer': \"http://m.xinbqg.la/\",\n  'accept-language': \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"\n}",
    "lastUpdateTime": 1736693208381,
    "respondTime": 5489,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content##\\s",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "text.查看更多章节@href",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "#chaptercontent@html",
      "nextContentUrl": "text.下ー页@href",
      "replaceRegex": "##.*手机版网址.*|.*加入书签.*|.*本章未完.*|第(.*?)章.*"
    },
    "ruleExplore": {
      "author": "span.0@text&&.s3@text",
      "bookList": ".item&&ul@li",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": "dd@text",
      "kind": ".s1@text",
      "name": "a.1@text&&.s2@text"
    },
    "ruleSearch": {
      "author": ".author@text",
      "bookList": ".bookbox",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "kind": ".cat@text",
      "lastChapter": "a.-1@text",
      "name": "h4@text"
    },
    "ruleToc": {
      "chapterList": "dl@dd!0",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "/s.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "//2025.7.22 ◎夜泽川◎",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "完本小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.wanbenku.com",
    "bookUrlPattern": "https?:\\/\\/www\\.finalbooks\\.work\\/book\\/\\d+\\/?",
    "customButton": false,
    "customOrder": 608,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvar result = [];\nvar push = (title, url, size) => result.push({\n    title: title,\n    url: url,\n    style: {\n        layout_flexGrow: 1,\n        layout_flexBasisPercent: size\n    }\n});\n\nvar tags = org.jsoup.Jsoup.parse(java.ajax(source.key + \"/category/\"))\n    .select('.CGsectionTwo-left a')\n    .toArray()\n    .map(tag => {\n        let text = [String(tag.text()).trim(), String(tag.attr('href')).match(/(\\d+)/)[1]];\n        return String(tag.text()).trim() ? text :  null;\n    })\n    .filter(item => item !== null);\n\n[\n    [\"༺ˇ»`ʚ  分类  ɞ´«ˇ༻\", \"/category/\"],\n    [\"༺ˇ»`ʚ  排行榜  ɞ´«ˇ༻\", null],\n    [\"༺ˇ»`ʚ  总榜  ɞ´«ˇ༻\", \"/rank/all/\"],\n    [\"༺ˇ»`ʚ  周榜  ɞ´«ˇ༻\", \"/rank/\"],\n    [\"༺ˇ»`ʚ  月榜  ɞ´«ˇ༻\", \"/rank/month/\"],\n    [\"༺ˇ»`ʚ  全本  ɞ´«ˇ༻\", \"/category/finish/\"]\n].forEach(item => {\n    push(item[0], null, 1);\n    if (item[1]) {\n        tags.forEach((tag, index) => {\n            let url = item[1] + tag[1] + \"/{{page}}.html\";\n            push(tag[0], url, (index ? 0.2 : 1));\n        });\n    }\n});\nJSON.stringify(result);",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "jsLib": "function decrypt(encryptedTxt, keySeed) {\n    const { java } = this;\n    let result;\n    try {\n        const fullKey = java.md5Encode(keySeed);\n        const ivBytes = java.strToBytes(fullKey.substring(0, 16));\n        const keyBytes = java.strToBytes(fullKey.substring(16));\n\n        const Cipher = java.createSymmetricCrypto(\n            \"AES/CBC/Pkcs7Padding\",\n            keyBytes,\n            ivBytes\n        );\n\n        result = Cipher.decryptStr(java.base64DecodeToByteArray(encryptedTxt));\n    } catch (e) {\n        java.log(e.message);\n        result = \"解密失败\";\n    }\n    return result;\n}",
    "lastUpdateTime": 1787323773054,
    "respondTime": 5579,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{i}",
      "init": "@put:{\"n\":\"[property$=book_name]@content\",\n\"a\":\"[property$=author]@content\",\n\"t\":\"[property~=category|status]@content\",\n\"l\":\"[property$=lastest_chapter_name]@content\",\n\"i\":\"[property$=image]@content\",\n\"o\":\"[property$=description]@content\",\n\"g\":\"[property$=update_time]@content\",\n\"m\":\".BGsectionOne-bottom@li.1@a@href\"\n}",
      "intro": "@get:{o}",
      "kind": "@get:{t}",
      "lastChapter": "@get:{l}◎@get:{g}",
      "name": "@get:{n}",
      "tocUrl": "@get:{m}"
    },
    "ruleContent": {
      "content": "@js:\nlet data = src.match(/d\\(\"([^\\)]+)/)[1].replace(/\"|\\s/g, \"\").trim().split(\",\");\ndecrypt(data[0], data[1]);"
    },
    "ruleExplore": {
      "author": "a[href^=\"/writer/\"]@text",
      "bookList": "[class$=\"unit\"]",
      "bookUrl": "a[href^=\"/book/\"]@href",
      "kind": "p.-1@text",
      "name": "a[href^=\"/book/\"][0]@text"
    },
    "ruleSearch": {
      "author": "a[href^=\"/writer/\"]@text",
      "bookList": ".SHsectionThree-middle > p",
      "bookUrl": "a[href^=\"/book/\"]@href",
      "kind": "a[href^=\"/category/\"]@text",
      "name": "a[href^=\"/book/\"]@text"
    },
    "ruleToc": {
      "chapterList": "ol > li\n<js>\nlet Regex_ = /(data-[a-zA-Z0-9]+)/g;\nlet label = result.select('li')[0].outerHtml().match(Regex_)[1];\nresult.sort((a, b) => +a.attr(label) - +b.attr(label));\nchapterList = result.select('a').toArray().map(e => {\n    let labeln = e.outerHtml().match(Regex_);\n    return {\n        title: String(e.attr(labeln[0])).trim() || e.text(),\n        url: java.base64Decode(String(e.attr(labeln[1])))\n    }\n});\nJSON.stringify(chapterList);\n</js>\n$[*]",
      "chapterName": "$.title",
      "chapterUrl": "$.url",
      "nextTocUrl": "@js:\nvar pages = [];\nvar endPage = String(java.getString('#end@href'));\nvar num = +endPage.match(/(\\d+)/g)[1];\nfor (let i = 2; i <= num; i++) {\n      pages.push(String(book.tocUrl).replace(/$/, i + \".html\"));\n}\npages;"
    },
    "searchUrl": "/search/{{key}}/{{page}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.xbiquwx.la",
    "bookUrlPattern": "https://www.biquwx.la/\\d+_\\d+/",
    "customButton": false,
    "customOrder": 609,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/list/1_{{page}}.html\n修真小说::/list/2_{{page}}.html\n都市小说::/list/3_{{page}}.html\n穿越小说::/list/4_{{page}}.html\n网游小说::/list/5_{{page}}.html\n科幻小说::/list/6_{{page}}.html",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36\"\n}",
    "lastUpdateTime": 1784112426908,
    "respondTime": 6200,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作 者:",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.intro@tag.p.0@text",
      "kind": "id.info@tag.p.1@text&&\nid.info@tag.p.2@text##类 别:|最后更新 :",
      "lastChapter": "id.info@tag.p.3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.info@h1@text"
    },
    "ruleContent": {
      "content": "id.content@textNodes"
    },
    "ruleExplore": {
      "author": "class.s4@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "class.s2@a@href<js>\nvar id = result.match(/_(\\d+)/)[1];\nvar iid = parseInt(id/1000);\n'https://www.xbiquwx.la/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "class.s5@text",
      "lastChapter": "class.s3@a@text",
      "name": "class.s2@a@text"
    },
    "ruleSearch": {
      "author": "class.odd.1@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "class.odd.0@tag.a@href",
      "coverUrl": "class.odd.0@tag.a@href<js>\nvar id = result.match(/_(\\d+)/)[1];\nvar iid = parseInt(id/1000);\n'https://www.xbiquwx.la/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "class.even.0@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.odd.0@tag.a@text",
      "wordCount": "class.even.1@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://www.xbiquwx.la/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "正文前面添上这个http://m.9191net.com\n比如，正文出现“/download/7374.html”这个\n我们就在浏览器搜索http://m.9191net.com/download/7374.html\n它就会出现text或者rar",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "久久书城",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.9191net.com",
    "customButton": false,
    "customOrder": 610,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "言情::http://m.9191net.com/search/3/%E8%A8%80%E6%83%85/{{page}}.html\n穿越::http://m.9191net.com/search/3/%E7%A9%BF%E8%B6%8A/{{page}}.html\n重生::http://m.9191net.com/search/3/%E9%87%8D%E7%94%9F/{{page}}.html\n总裁::http://m.9191net.com/search/3/%E6%80%BB%E8%A3%81/{{page}}.html\n都市::http://m.9191net.com/m/cat/ds/{{page}}.html\n青春::http://m.9191net.com/m/cat/qc/{{page}}.html\n武侠::http://m.9191net.com/m/cat/wx/{{page}}.html\n仙侠::http://m.9191net.com/m/cat/xx/{{page}}.html\n玄幻::http://m.9191net.com/m/cat/xh/{{page}}.html\n奇幻::http://m.9191net.com/m/cat/qh/{{page}}.html\n穿越::http://m.9191net.com/m/cat/cy/{{page}}.html\n历史::http://m.9191net.com/m/cat/ls/{{page}}.html\n架空::http://m.9191net.com/m/cat/jk/{{page}}.html\n网游::http://m.9191net.com/m/cat/yx/{{page}}.html\n竞技::http://m.9191net.com/m/cat/jg.html\n科幻::http://m.9191net.com/m/cat/kh/{{page}}.html\n灵异::http://m.9191net.com/m/cat/ly.html\n恐怖::http://m.9191net.com/m/cat/kb/{{page}}.html\n散文::http://m.9191net.com/m/cat/sw.html\n名著::http://m.9191net.com/m/cat/mz/{{page}}.html\n传迹::http://m.9191net.com/m/cat/zj.html\n同人::http://m.9191net.com/m/cat/tr/{{page}}.html\n全部::http://m.9191net.com/m/cat/qj/{{page}}/action/shop/todo/content/do/-1vunionvselectv1f2f3fconcati280x7cfmd5i281122xf0x7cxf5f6f7f8f9f10f11f12f13f14f15f16f17.html\n最新::http://m.9191net.com/m/cat/zx/{{page}}/cat/favicon.html",
    "lastUpdateTime": 1787419384157,
    "respondTime": 605,
    "ruleBookInfo": {
      "author": "tag.p@text##分类：.*\n状态：.*\n格式：.*\n大小：.*\n更新：.*\nRAR/ZIP.*|苹果端用户下载方式：.*",
      "intro": "class.intro_info.0@html",
      "kind": "tag.p!0@a@text",
      "name": "tag.h2@text"
    },
    "ruleContent": {
      "content": "class.downButton@title&&class.downButton@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "author",
      "bookList": "class.block",
      "bookUrl": "tag.a@href",
      "coverUrl": "tag.a@img@src",
      "intro": "tag.p@a@html",
      "name": "tag.h2@text"
    },
    "ruleToc": {
      "chapterList": "class.ablum_read",
      "chapterName": "tag.a@text"
    },
    "searchUrl": "http://m.9191net.com/search.html?keywords={{key}}&submit=",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "画涯爱子",
    "bookSourceType": 0,
    "bookSourceUrl": "http://api.huaya.cc",
    "customButton": false,
    "customOrder": 611,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\"Content-Type\": \"application/x-www-form-urlencoded\",\n  \"app_v\": \"1.8.6\",\n  \"User-Agent\": \"okhttp/4.9.3\",\n   \"token\": \"37cb0e19d1c146d78bfff2994ad366eb\"}",
    "lastUpdateTime": 1787417058026,
    "respondTime": 924,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "detail.titlecontent\n@js:\njava.log(book.type)\nc=java.get(\"c\")\nif(c==1){\n\tresult=result\n\t}else{\na=result.split(';').map(x => '<img src=\"'+x+'\">').join('\\n');\nresult=a\n}\nresult",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "author",
      "bookList": "\n    \nlist",
      "bookUrl": "@js:url=\"http://api.huaya.cc/Handler/NovelTitles_Head.ashx,\"+JSON.stringify({\n  \"body\": \"asc=true&novelId={{$.novelid}}&size=99999&sign=&index=1&type=list&first=true\",\n  \"method\": \"POST\"\n})",
      "checkKeyWord": "我的@小说",
      "coverUrl": "imgurl",
      "intro": "description",
      "kind": "{{$.noveltypelist}}\n{{$.novel_score}}分",
      "lastChapter": "novel_publishdate",
      "name": "novelname",
      "wordCount": "wordscount"
    },
    "ruleToc": {
      "chapterList": "list",
      "chapterName": "titlename",
      "chapterUrl": "@js:\nc=java.get(\"c\")\nurl=\"http://api.huaya.cc/Handler/NovelTitles_Head.ashx,\"+`{\n\t\"method\":\"POST\",\n\t\"body\":\"img_type=mix&img_val=393&novelId={{$.novelid}}&platform=android&screenHeight=2356&screenWidth=1080&SectionNum={{$.sectionnum}}&sign={{java.md5Encode(\"img_type=mix&img_val=393&novelId=\"+java.getString(\"$.novelid\")+\"&platform=android&screenHeight=2356&screenWidth=1080&SectionNum=\"+java.getString(\"$.sectionnum\")+\"&type=get_new&ver=1.8.6&37cb0e19d1c146d78bfff2994ad366eb\")}}&type=get_new&ver=1.8.6\"\n\t}`\nif (c==1) {\n    book.type = 8\n} else {\n    book.type = 64}\nurl;"
    },
    "searchUrl": "@js:\nc=0\nif (key.match(/@小说/)) {\n  c = 1\n  key = key.split(\"@\")[0]\n}\n\njava.put(\"c\",c)\n\nresult=\"http://api.huaya.cc/Handler/Novels_Head.ashx,\"+`{\"body\":\"code=${c}&size=99999&index=1&type=list&key=${key}\",\"method\":\"POST\"}`",
    "weight": 0
  },
  {
    "bookSourceComment": "搜索和发现页没有封面是正常的，不影响使用，具体什么原因我也不知道😰\n                                                               -By[曦灵]\n",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "QQ阅读_By-[曦灵]",
    "bookSourceType": 0,
    "bookSourceUrl": "https://ubook.reader.qq.com/  ##-By[曦灵",
    "customButton": false,
    "customOrder": 614,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "首页:://ubook.reader.qq.com/\n排行:://ubook.reader.qq.com/book-rank/male-monthly\n分类:://ubook.reader.qq.com/book-cate\n免费:://ubook.reader.qq.com/book-free/male\n广场:://ubook.reader.qq.com/book-shortage\n首页:://ubook.reader.qq.com/\n玄幻 :://ubook.reader.qq.com/book-cate/20001-0-0-0-0-0-0-1\n奇幻  :://ubook.reader.qq.com/book-cate/20005-0-0-0-0-0-0-1\n武侠:://ubook.reader.qq.com/book-cate/20010-0-0-0-0-0-0-1\n仙侠 :://ubook.reader.qq.com/book-cate/20014-0-0-0-0-0-0-1\n都市:://ubook.reader.qq.com/book-cate/20019-0-0-0-0-0-0-1\n现实:://ubook.reader.qq.com/book-cate/20065-0-0-0-0-0-0-1\n历史 :://ubook.reader.qq.com/book-cate/20028-0-0-0-0-0-0-1\n军事:://ubook.reader.qq.com/book-cate/20032-0-0-0-0-0-0-1\n游戏  :://ubook.reader.qq.com/book-cate/20050-0-0-0-0-0-0-1\n体育:://ubook.reader.qq.com/book-cate/20054-0-0-0-0-0-0-1\n科幻:://ubook.reader.qq.com/book-cate/20042-0-0-0-0-0-0-1\n悬疑:://ubook.reader.qq.com/book-cate/20037-0-0-0-0-0-0-1\n轻小说:://ubook.reader.qq.com/book-cate/20059-0-0-0-0-0-0-1\n诸天无限:://ubook.reader.qq.com/book-cate/20109-0-0-0-0-0-0-1\n短篇:://ubook.reader.qq.com/book-cate/20076-0-0-0-0-0-0-1\n古言:://ubook.reader.qq.com/book-cate/30013-0-0-0-0-0-0-1\n现言:://ubook.reader.qq.com/book-cate/30020-0-0-0-0-0-0-1\n幻情:://ubook.reader.qq.com/book-cate/30001-0-0-0-0-0-0-1\n仙侠:://ubook.reader.qq.com/book-cate/30008-0-0-0-0-0-0-1\n青春:://ubook.reader.qq.com/book-cate/30031-0-0-0-0-0-0-1\n游戏:://ubook.reader.qq.com/book-cate/30050-0-0-0-0-0-0-1\n科幻:://ubook.reader.qq.com/book-cate/30042-0-0-0-0-0-0-1\n悬疑:://ubook.reader.qq.com/book-cate/30036-0-0-0-0-0-0-1\n轻小说:://ubook.reader.qq.com/book-cate/30055-0-0-0-0-0-0-1\n短篇:://ubook.reader.qq.com/book-cate/30083-0-0-0-0-0-0-1\n现实:://ubook.reader.qq.com/book-cate/30120-0-0-0-0-0-0-1\n小说:://ubook.reader.qq.com/book-cate/13100-0-0-0-0-0-0-1\n青春:://ubook.reader.qq.com/book-cate/14300-0-0-0-0-0-0-1\n文学:://ubook.reader.qq.com/book-cate/14100-0-0-0-0-0-0-1\n励志:://ubook.reader.qq.com/book-cate/13400-0-0-0-0-0-0-1\n历史:://ubook.reader.qq.com/book-cate/14400-0-0-0-0-0-0-1\n心理:://ubook.reader.qq.com/book-cate/14000-0-0-0-0-0-0-1\n公版:://ubook.reader.qq.com/book-cate/19100-0-0-0-0-0-0-1\n哲学:://ubook.reader.qq.com/book-cate/15000-0-0-0-0-0-0-1\n管理:://ubook.reader.qq.com/book-cate/13300-0-0-0-0-0-0-1\n传记:://ubook.reader.qq.com/book-cate/14500-0-0-0-0-0-0-1\n古籍:://ubook.reader.qq.com/book-cate/16900-0-0-0-0-0-0-1\n经济  :://ubook.reader.qq.com/book-cate/13200-0-0-0-0-0-0-1\n社科:://ubook.reader.qq.com/book-cate/14200-0-0-0-0-0-0-1\n童书:://ubook.reader.qq.com/book-cate/15800-0-0-0-0-0-0-1\n教材教辅:://ubook.reader.qq.com/book-cate/16500-0-0-0-0-0-0-1\n文化:://ubook.reader.qq.com/book-cate/15500-0-0-0-0-0-0-1\n政治:://ubook.reader.qq.com/book-cate/14900-0-0-0-0-0-0-1\n养生:://ubook.reader.qq.com/book-cate/13800-0-0-0-0-0-0-1\n医学:://ubook.reader.qq.com/book-cate/15300-0-0-0-0-0-0-1\n投资:://ubook.reader.qq.com/book-cate/15700-0-0-0-0-0-0-1\n两性:://ubook.reader.qq.com/book-cate/13700-0-0-0-0-0-0-1\n军事 :://ubook.reader.qq.com/book-cate/14600-0-0-0-0-0-0-1\n亲子 :://ubook.reader.qq.com/book-cate/13500-0-0-0-0-0-0-1\n宗教:://ubook.reader.qq.com/book-cate/14700-0-0-0-0-0-0-1\n计算机:://ubook.reader.qq.com/book-cate/16800-0-0-0-0-0-0-1\n科普:://ubook.reader.qq.com/book-cate/16300-0-0-0-0-0-0-1\n法律:://ubook.reader.qq.com/book-cate/17300-0-0-0-0-0-0-1\n漫画书:://ubook.reader.qq.com/book-cate/19000-0-0-0-0-0-0-1\n艺术:://ubook.reader.qq.com/book-cate/15200-0-0-0-0-0-0-1\n工业:://ubook.reader.qq.com/book-cate/17000-0-0-0-0-0-0-1\n自然:://ubook.reader.qq.com/book-cate/14800-0-0-0-0-0-0-1\n外语 :://ubook.reader.qq.com/book-cate/15600-0-0-0-0-0-0-1\n考试 :://ubook.reader.qq.com/book-cate/16400-0-0-0-0-0-0-1\n美食:://ubook.reader.qq.com/book-cate/16100-0-0-0-0-0-0-1\n体育 :://ubook.reader.qq.com/book-cate/15900-0-0-0-0-0-0-1\n杂志 :://ubook.reader.qq.com/book-cate/18000-0-0-0-0-0-0-1\n时尚 :://ubook.reader.qq.com/book-cate/13600-0-0-0-0-0-0-1\n旅游 :://ubook.reader.qq.com/book-cate/13900-0-0-0-0-0-0-1\n休闲  :://ubook.reader.qq.com/book-cate/15400-0-0-0-0-0-0-1\n 建筑 :://ubook.reader.qq.com/book-cate/16600-0-0-0-0-0-0-1\n工具:://ubook.reader.qq.com/book-cate/17100-0-0-0-0-0-0-1\n短篇 :://ubook.reader.qq.com/book-cate/17400-0-0-0-0-0-0-1\n英文图书 :://ubook.reader.qq.com/book-cate/15100-0-0-0-0-0-0-1\n农林:://ubook.reader.qq.com/book-cate/16200-0-0-0-0-0-0-1\n手工 :://ubook.reader.qq.com/book-cate/16000-0-0-0-0-0-0-1\n家居  :://ubook.reader.qq.com/book-cate/16700-0-0-0-0-0-0-1\n月票榜:://ubook.reader.qq.com/book-rank/male-monthly\n畅销榜:://ubook.reader.qq.com/book-rank/male-sell\n潜力榜:://ubook.reader.qq.com/book-rank/male-poten\n完结榜:://ubook.reader.qq.com/book-rank/male-finish\n新书榜:://ubook.reader.qq.com/book-rank/male-new\n比心榜:://ubook.reader.qq.com/book-rank/male-heart\n免费爆款:://ubook.reader.qq.com/book-rank/male-freehot\n免费完结:://ubook.reader.qq.com/book-rank/male-freefinish\n免费飙升:://ubook.reader.qq.com/book-rank/male-freesoar\n免费新书:://ubook.reader.qq.com/book-rank/male-freenew\n免费口碑:://ubook.reader.qq.com/book-rank/male-freepraise\n免费 :://ubook.reader.qq.com/book-free/male",
    "lastUpdateTime": 1754560145080,
    "respondTime": 3740,
    "ruleBookInfo": {
      "author": "class.detail-x__header-detail@a.0@text",
      "coverUrl": "img.0@src",
      "intro": "class.detail-x__detail-content@text",
      "kind": "p.0@text##[/·]*",
      "lastChapter": "class.detail-x__catalogue-list.0@text##[最新章节]*",
      "name": "h2@text",
      "tocUrl": "@js:if(java.get(\"单\")==''){\nif(java.get(\"录\")==java.get(\"目\")){\nr=org.jsoup.Jsoup.parse(result);\n\nscript=r.select(\":matchesOwn(^$)>a[href^=javascript:]:matches(全文|章[節节]|目[錄录]):not(:matches(最新))\");re=false;\n\nif(!script.size()){\nba=(bas=baseUrl.replace(/\\/$|\\.[a-zA-Z]+$/,'')).match(/(http....[^/?]+)(?:([?/])(.*))?$/);b=ba[1];v=ba[3];\n\nr.select(\"a[href~=[^a-z]page[^a-z]]:not(:matches([反正顺順逆倒]序|[全正]文|更多|全部|所有|章[節节]|作品|目[錄录]|列表)),a:not([href~=^(?!//)[^#:]+$|\"+b.split(':')[1]+\"]),:matchesOwn(\\\\S)>a,a[href~=javascript:|#],a:matches(^\\\\S{1,4}$):not(:matches([反正顺順逆倒]序|[阅閱][讀读]|查看|展[开開]|进入|[全正]文|更多|完整|全部|所有|目[錄录]|列表|章[節节]):not(:contains(分类)))\").remove();\n\ny=r.select(\"a[href~=(?i)catalog|contents|chapters|mulu|(^|[^a-z])ml|showchapter|(^|chapter[/_-]?|\"+v.replace(/(.+)((\\/\\d\\d)\\d+)$/,\"$1$3$2\")+\"[/_-])(more|list|all)|sort[/=_-]asc]\");\n\nif(!y.size()){b3='';\n\nif(ba[2]==\"?\"){\nb3='[href~=^[^?]+$],'\n}else if(ba[3]){\nb3=ba[3].replace(/[*$|?+\\\\\\^\\[\\](){}]/g,'\\\\$0');\n\nb3=\"[href~=\"+b3+\"(\\\\.[^.]+|/\\\\d+(\\\\.[^.]+|/)?)?$],[href~=[/?]\"+b3.replace(/[&/_-][^/_-]+$/,'')+\".*$]:not([href~=[/?]\"+b3.replace(/[/_-]/g,'[/_-]')+\"]),\"}\n\ny=r.select(\"a:not(\"+b3+\"[href~=(?i)(^|[^/])[?/].*((book|[^a-z])(info|case)[^a-z]|(cid|buy)[^a-z]|desc|coins|nutrition|review|ticket|update|(app|author|xiazai|down)(?!=))|/chapter|/index/|/d/],:matches((?i)^$|[0-9零〇一二三四五六七八九十百千万、，：；？！。…‘’“”（）()]|[票榜:：.]|推荐|排行|等级|说明|收藏|书评|简介|分[类卷]|简介|作者|手机|软件|应用|安装|客户|移动|pc|电脑|安卓|苹果|下载|最新|ap[kp]|ipa|plx|deb|exe|zip|rar|txt|epub))\")}\n\nif(y.size()){\nys=y.select(\"a[href~=(?i)catalog|contents|list|chapter|mulu|(^|[^a-z])ml|more|read|all]:matches([反正顺順逆倒]序|全文|章[節节]|目[錄录]):not(:matches(阅读)),a[href~=(?i)catalog|contents|chapter|(^|[^a-z])ml|mulu|read]:matches(更多|列表),a[href~=(?i)catalog|contents|list|chapter|mulu|(^|[^a-z])ml|more|all]:matches(^$),a:matches(^[^\\\\u4e00-\\\\u9fa50-9]*([反正顺順逆倒]序|全文(免[費费])?[阅閱][讀读]|(点击|查看|展[开開]|进入|返?回到?)*([全正]文|(更多|完整|全部|所有)?(章[節节]|(作品)?目[錄录])+)+(列表)?(\\\\s*(查看|展开)?更多)?)[^\\\\u4e00-\\\\u9fa50-9]*$)\");zt=false;\n\nif(!ys.size()){\nba=bas.match(/(\\?(?:[^=]+=)+)(.+)$/)||bas.match(/(?:[^/_-][/_-]([^/._-]+))?[/_-]([^/._-]+)(?:\\/index[^/]*)?$/);\n\nif(xi=(id=ba[2]).match(/\\?[^=]+=([^&]+)/)||id.match(/^[^\\d%]*(\\d{2,}|[1-9])$/))id=xi[1];\nif(ba[1])if(xi=ba[1].match(/^[^\\d%]*(\\d{2,})$/))id=/^\\d$/.test(id)||!xi[1].indexOf(id)?xi[1]:\"(\"+id+\"|\"+xi[1]+\")\";\n\nys=y.select(\"[href~=(?i)^((.*//[^/]+/)?[^=.]*[^\\\\d=.])?\"+id+\"([?_-][a-z=_-]*0|\\\\.[^.]+|[/?]([^\\\\d]*|[^/\\\\d]*/?|(list|more|all)([=_-][a-z]*)?\\\\d+[^\\\\d]*)?)?(&.+)?$]:not(:contains(\"+(bs=String(book.name)[0])+\"))\");\n\nif(!ys.size()){zt=true;\nys=y.select(\"[href~=(?i)^((.*//[^/]+/)?[^=.]*[^\\\\d=.])?(\\\\d+/\"+id+\"[_-]\\\\d+[^\\\\d]*|\"+id+\"[_-][a-z_-]*1[^\\\\d]*)$]:not(:matches(阅读|\"+bs+\"))\")}}\n\nif(ys.size()){\nif((re=ys.select(\"[href~=(/|^)[^.]+$]\")).size())ys=re;\nre=String(ys.first().attr(\"href\"));\n\nfor(x=1;x<ys.size();x++)if((xs=String(ys.get(x).attr(\"href\"))).length>re.length)re=xs;\n\nif(/(?:[2-9]\\d*|1\\d+)[^\\d]*$/.test(re)){\nif(!zt&&(q=re.match(/^(.*[^/])?[&?/].*(?:catalog(ue)?|contents|(?:show)?chapters?|mulu|ml|more|all|list|page)(?:[=_-][a-z]*)?\\d+[^\\d]*$/i))&&v==(q[1]||'').replace(/^http....[^/?]+/,''))zt=true;\nif(zt)re=re.replace(/\\d+(?=[^\\d]*$)/,\"☯1\")}\n\n}}}\n\nre=String(!re?baseUrl:(java.put(\"基\",baseUrl),/^\\/[^/]/.test(re)?b+re:/^https?:/.test(re)?re:/^\\/\\//.test(re)?b.split('//')[0]+re:String(baseUrl).replace(/[^/]*$/,'')+re))}else re=baseUrl;\n\nr=re.replace(/(?:[☯?&/_-][^\\d?/&_-]*[01])+[^\\d]*$/,\"\");\njava.put(\"ba\",r);\nre=re.replace(\"☯\",\"\")}else re=baseUrl;\n\njava.get(\"跳\")==1||re==baseUrl&&/,/.test(book.bookUrl)?re+',{\"webView\":true}':re",
      "wordCount": "span.3@text##[·]*"
    },
    "ruleContent": {
      "content": "@js:dt=lr='';c=1;动=java.get(\"动\");\nif(动!=''&&!~baseUrl.indexOf(\",\")){\nresult=String(java.ajax(baseUrl+动))\n}else if(java.get(\"静\")==动)c=dt=2;\n\nr=org.jsoup.Jsoup.parse(r1=result.replace(/&nbsp;/g,' '));\n查=i=java.get(\"序\");\n\nif(java.get(\"文\")==1){for(;c;c--){\nd=[\"img[data-src],img[src~=[^a-z]cid[^a-z]]\"\n,\"img:not([src~=(?i)^$|^javascript:|\\\\.gif|\\\\.png|[^a-z](cover|css|ic(on)?|load(ing|ed)?)[^a-z]])\"\n,\"img[src~=(?i)\\\\.png]:not([src~=(?i)[^a-z](cover|css|ic(on)?|load(ing|ed)?)[^a-z]])\"\n,'img[src~=(?i)\\\\.gif]:not([src~=(?i)[^a-z](cover|css|ic(on)?|load(ing|ed)?)[^a-z]])'];\n\nif(!(查!=\"\"&&(查!=-1&&((lr=r.select(d[查])).size(),true)))){\n$=it=>(lr=r.select(it)).size();\nif($(d[i=0])||$(d[i=1])||$(d[i=2])||false)break;\n\nif(c==2){dt=1;\nr=org.jsoup.Jsoup.parse(java.ajax(baseUrl+',{\"webView\":true}'))\n}else i=$(d[3])?3:-1}}\nif(i==0)lr=String(lr).replace(/(?:src=['\"][^'\"]+['\"] +)?data-/g,'');\nif(查==\"\")book.putVariable(\"序\",i);\n\n}else{\nsc=java.get(\"文\")==2?\n'[style~=(?i)text-align:center|(^| |;)color: *(rgb.(?!255[ ,]+255[ ,]+255)[\\\\d, ]*2\\\\d\\\\d|#(?=[a-f\\\\d]{3}([^a-f\\\\d]|$))(?!fff)[a-f\\\\d]*[d-f]|#(?=[a-f\\\\d]{4})(?!ffffff)([\\\\da-f]{2})*[d-f][\\\\da-f]|green|red|blue|yellow|purple|pink|brown)],script,noscript,style,header,footer,[class~=^foot|^head],[id~=^foot|^head],:has(>a):not(:has(p:matchesOwn(\\\\S),br)),a>*,:has(a):not(:matchesOwn([\\\\S\\\\s]{50,}),:has(:matchesOwn([\\\\S\\\\s]{50,}))),:matchesOwn([\\\\s\\\\S]{50})>:not(br,a,:matchesOwn([\\\\s\\\\S]{50})),:not(br,p,a,:matches([\\\\s\\\\S]{200}),:has(p,br,div:matchesOwn(，|。)+div:matchesOwn(，|。)),:has(p,br,div:matchesOwn(，|。)+div:matchesOwn(，|。)) :matchesOwn(\\\\S):not(:not(p,div,span:has(br))))'\n:\n'[style~=(?i)text-align:center|(^| |;)color: *(rgb.(?!255[ ,]+255[ ,]+255)[\\\\d, ]*2\\\\d\\\\d|#(?=[a-f\\\\d]{3}([^a-f\\\\d]|$))(?!fff)[a-f\\\\d]*[d-f]|#(?=[a-f\\\\d]{4})(?!ffffff)([\\\\da-f]{2})*[d-f][\\\\da-f]|green|red|blue|yellow|purple|pink|brown)],script,noscript,style,header,footer,[class~=^foot|^head],[id~=^foot|^head],:has(>a):not(:has(p:matchesOwn(\\\\S),br,img:not([src~=(?i)^$|^javascript:|[^a-z](css|ic(on)?|load(ing|ed)?)[^a-z]|/\\\\d+s\\\\.jpg]))),img[src~=(?i)^$|^javascript:|[^a-z](css|ic(on)?|load(ing|ed)?)[^a-z]|/\\\\d+s\\\\.jpg],a:not(:matches(^$)>img)>*,:has(a):not(img,:matchesOwn([\\\\S\\\\s]{50,}),:has(img,:matchesOwn([\\\\S\\\\s]{50,}))),:matchesOwn([\\\\s\\\\S]{50})>:not(img,br,a,:has(img),:matchesOwn([\\\\s\\\\S]{50})),:not(img,br,p,a,:matches([\\\\s\\\\S]{200}),:has(p,br,img,div:matchesOwn(，|。)+div:matchesOwn(，|。)),:has(img,p,br,div:matchesOwn(，|。)+div:matchesOwn(，|。)) :matchesOwn(\\\\S):not(:not(p,div,span:has(br))))';\n\nd=[\":matchesOwn(\\\\S):has(br):has(:matchesOwn(\\\\S):has(br))\"\n,\":matchesOwn(\\\\S):has(br)\"\n,\":has(>:matchesOwn(\\\\S):not(:has(*))+:matchesOwn(\\\\S):not(:has(*)))\"\n,\":has(>:has(>p:only-child:matchesOwn(\\\\S):not(:has(*)))+:has(>p:only-child:matchesOwn(\\\\S):not(:has(*))))\"\n,\"img\"\n,\":matchesOwn(\\\\S)\"];\n\ntry{for(查=i!=''?i:java.get(\"元\");c;c--){\n\nif(!(c>1&&(String(r.text()).length<400||r.select(':matchesOwn(内容未加载完成|关闭(阅读|小说)模式)').size()))){\nr.select(sc).remove();\n\nif(!(查!=\"\"&&(lr=r.select(i?d[i==6?5:i]:查)).size()))for(i=0;i<6&&(lr=r.select(d[i]),i==4&&c==1?!lr.size():String(lr.text()).length<200);i++);\nif(c<2||i<6)break;}\n\nr=org.jsoup.Jsoup.parse(r2=String(java.ajax(baseUrl+',{\"webView\":true}')).replace(/(<[a-z]+)&nbsp;/g,'$1 '));\ndt=r1.length==r2.length?2:1}\n\nfor(c=lr.first(),v=1;v<lr.size();v++)if(lr.get(v).parents().contains(c)){\nlr.remove(v);\nv--}else c=lr.get(v);\n\nlr=String((c=lr.size()==2&&i<4)?String(lr.first().text()).length>String(lr.get(1).text()).length?lr.first():lr.get(1):(c=lr.size()==1)?lr.first():lr);\n\nif(查==\"\"){\nif(c&&(查=lr.match(/<([a-z]+) ([^>]+)>/))&&(查[2]=查[2].match(/(?:id|class|style)=(?:\"[^\"]+\"|'[^']+')|[^= ]+(?==\"[^\"]+\"|'[^']+')/g))){\nbook.putVariable(\"元\",查[1]+'['+查[2].join('][')+']')\n}else book.putVariable(\"序\",i)}\n\nlr=lr.replace(/<([a-z]+)[^>]*\"-\\d+\"[^>]*>[^<]+<\\/\\1>|[^<>]*<a[^<]+<\\/a>[^<]*|&lt[; ]?\\/?[a-z]+(?= |\\/?&gt)(?:[ a-z=-]+|\"[^\"]+\"|'[^']+')*\\/?&gt[; ]?|[☯📑⚙️🌕︴]/g,\"\").replace(/\\s+(?:\\s|(?:(?:(?:n?b)?s)?p)?;)/g,\"　　\");\n\nif(java.get(\"原\")!=1)lr=(!lr.indexOf(\"　　\")?lr.replace(/>(?!　　|\\s*(?:(?:(?:n?b)?s)?p)?;)\\s*(?=[^\\s<>])/g,\">︴\"):lr)\n.replace(/((?:[〖【『「（《〈〔［\\[(][^〖【『「（《〈〔［\\[()］〕〉》）」』】〗\\]]*[)］〕〉》）」』】〗\\]]\\s*)*(?:第?\\s*[一二三四五六七八九十百千万〇零0-9]+\\s*[章节回話话：:.．,，、]*\\s*)?{{\nn=(t=title.match(/\\S+$/)[0].replace(/[*$|?+\\\\\\^\\[\\](){}/]/g,\".?\")).replace(/^(正文[^\\u4e00-\\u9fa5A-Za-z]*|第?[一二三四五六七八九十百千万〇零0-9]+[章节回話话\\s：:.．,，、]*)+/,\"\"),n!=t&&/\\S/.test(n)?\"(?:第?\\\\s*[一二三四五六七八九十百千万〇零0-9]+\\\\s*[章节回話话：:.．,，、]*\\\\s*\"+n+\"|\"+t+\")\":t\n}}(?:\\s*[〖【『「（《〈〔［\\[(][^〖【『「（《〈〔［\\[()］〕〉》）」』】〗\\]]*[)］〕〉》）」』】〗\\]])*)/g,\"⚙️$1⚙️\")+\"📑\"\n\n}catch(e){}}\nif(dt)book.putVariable(dt==1?\"动\":\"静\",',{\"webView\":true}');lr",
      "nextContentUrl": "@js:\nif((r=java.getStringList((nx=java.get(\"next\"))+\"a:matches(第二[頁页]|下[一\\\\s]*[頁页]):not([href~=^javascript:|^#])@href||a:matches(下[一\\\\s]*[篇章回节節话話]):not([href~=^javascript:|^#])@href||a[href~=[_-]\\\\d+(/|\\\\.[a-z]+)?$]:has(i,img):not(:matches(\\\\S),[href~=^javascript:|^#])@href\")).size()){\nif(~String(book.tocUrl+(nextChapterUrl||'')).indexOf(r=String(r.get(r.size()-1)))||~r.indexOf(nextChapterUrl||String(book.tocUrl).replace(/.+(?=_\\d+\\/$)/,'')))r=null\n}else r=null;\n\nif(r){\nif(nx!='')chapter.putVariable(\"next\",(n=r.replace(/\\d+(?=[^\\d]*$)/,it=>+it+1))==r?'':'a[href=\"'+n+'\"]@href||');\nr+java.get(\"动\")\n}",
      "replaceRegex": "@js:if(java.get(\"原\")==1){result}else{\nresult=result.replace(/⚙️([^\\u4e00-\\u9fa5⚙️]+|[零〇一二三四五六七八九十百千万\\s]+|(?!第[零〇一二三四五六七八九十])[\\u4e00-\\u9fa5]+)⚙️/g,'$1').split('📑');\nl=result.length-1;\nwhile(l)if(r=result[--l].match(/^(\\n+(?:[^\\n]{1,30}\\n+){1,3})([\\S\\s]+)$/))result[l]=r[1]+r[2].replace(/⚙️/g,'');\nresult.join('📑')\n.replace(/—/g,\"─\")\n.replace(/[·۰•・]/g,\"・\")\n.replace(/\\s*(?:︴[^\\n　]+\\s+)*📑\\s*|^\\s*(︴[^\\n　]+\\s+)*|\\s*(?:　　|\\n)(?:[\\s&#a-zA-Z0-9]*;)?[\\s　?]*/g,\"☯\")\n.replace(/(?:︴[^☯]*☯)+(?=︴)|☯(?:温馨|[^a-zA-Z0-9\\u4e00-\\u9fa5☯]+)提示.?[:：][^☯]+|☯[^☯]+字体不会安装.?请百度[^☯]+|☯.{0,2}正版订阅在阅文旗下的起点和QQ书城，可以第一时间看到最新章节.{0,2}(?=☯)|︴\\s*第?[〖【『「（《〈〔［｛\\[{(][^☯]+(?=☯)|☯第\\s*[（(][^（()）]+[)）][頁页](?=☯)|[^☯]*(?:关注|[微vVＶｖ][^\\u4e00-\\u9fa5A-Za-z0-9]*[信xXｘＸ]|公[^\\u4e00-\\u9fa5]*众[^\\u4e00-\\u9fa5]*号){2,}[^☯]*|(?:&#?[a-z0-9]*;?)+(?=;|☯);*|read[sx][；;?？]+/g,\"\")\n.replace(/\\s+/g,\" \")\n.replace(/☯[ ☯]*/g,\"\\n\")\n.replace(/(\\n[〖【『「（《〈〔［｛\\[{(]?)([pPＰｐ][SsｓＳ]+(?=[ ：:;；，,、。.─\\d\\u4e00-\\u9fa5])[^\\n]+)/g,\"$1🌕$2\")\n.replace(/\\[\\[\\[[^\\[\\]]+http:file2.qidian.comchapters(.{5,6})(..)([^\\[\\]]{35})\\]\\]\\]/g,'<img src=\"http://file2.qidian.com/chapters/$1/$2/$3\">')\n.replace(/(<img )[^>]*(src=\"[^\"]+\")[^>]*(>)|((?: ?[＋+－-]?[0-9０-９]+(?:[．.／/][0-9０-９]+)?[％%:：]?[a-zA-Z]*)+ ?|[ _＿－-]?[a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９]+)/g,\"$1$2$3☯$4☯\")\n.replace(/☯[・。](?=☯)/g,\"☯.\")\n.replace(/,\\n/g,\"，\")\n.replace(/!(?=\\n)/g,\"！\")\n.replace(/\\?(?=\\n)/g,\"？\")\n.replace(/(<[^<]+)☯☯/g,\"⚙️$1⚙️\\n\")\n.replace(/(?:\\n[^āáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ\\u4e00-\\u9fa5\\n〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗、，：；？！。…─🌕︴\\n]+|([。？！…”』」】〗])[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗、，：；？！。…─☯︴\\n]+[\\u4e00-\\u9fa5]+)?[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗、，：；？！。…─⚙️☯︴\\n]+(?=\\n)|[^☯!\"'(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛｝］〕〉）＞’”》」』】〗]*☯([a-zA-ZＡ-Ｚａ-ｚ]*[āáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ][a-zA-ZＡ-Ｚａ-ｚ]*)☯[^☯!\"'(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛｝］〕〉）＞’”》」』】〗]*/g,\"$1$2\")\n.replace(/[^!\"'(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜<（〈〔［｛({\\[\\]})｝］〕〉）>＞’”》」』】〗︴🌕]*(?:☯[^.．!(),\\n\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗⚙️]+|([^☯!(),\\na-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘<＜（〈〔［｛({\\[\\]})｝］〕〉）＞>’”》」』】〗⚙️])(?!\\1)|☯(?=[^☯!(),\\na-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗][!(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗])|[〖【『「（《〈〔［｛\\[{(][^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[)｝］〕〉》）」』】〗\\]}]){4,}|[^；;％%～~?？!！\"'”’。…─\\na-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[〖【『「（《〈〔［｛\\[{(][^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[)｝］〕〉》）」』】〗\\]}](?:[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+(?=[)｝］〕〉》）」』】〗\\]}]))?/g,\"📑\")\n.replace(/([；;％%～~?？!！\"'”’。…─])📑(?=[)｝］〕〉》）」』】〗\\]}])/g,'$1')\n.replace(/(?:([\\n。？！])[^\\n。？！]{1,10})?[〖【『「（《〈〔［｛\\[{(][^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*(?:☯[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]☯|📑|🌕)[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[｝］〕〉》）」』】〗\\]})](?:[^。]{0,5}(?:[〖【『「（《〈〔［｛\\[{(][^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*(?:☯[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]☯|📑)[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[｝］〕〉》）」』】〗\\]})]|[^📑!,()\\s\\u4e00-\\u9fa5、，：；？！。…─‘’“”（）《》〖〗【】]+))*(?:(?:[^\\n]{1,10}|(?:[\\u4e00-\\u9fa5]{0,5}[，、])*[\\u4e00-\\u9fa5]+[！。]?)(?=\\n))?/g,\"$1\")\n.replace(/((?:[请請][记記]住)?[^⚙️🌕📑︴*\\n(),\\u4e00-\\u9fa5、，：；？！。…─「」‘’“”（）《》〖〗【】]*(?:(?:[^⚙️🌕📑︴*\\n(),\\u4e00-\\u9fa5、：，；？！。…─「」‘’“”（）《》〖〗【】]+[*(), \\u4e00-\\u9fa5、，:：；？！。…─「」‘’“”（）《》〖〗【】]{1,3})*[^*︴📑☯⚙️🌕\\s&;(),āáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜa-zA-ZＡ-Ｚａ-ｚ0-9０-９\\u4e00-\\u9fa5、,，:：;；?？!！。…～~─'\"‘’“”【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}％%・/／＝=_＿.．＋+－-]+(?!(?:[^>]+>)?⚙️)|☯[^☯\\n]+☯\\.☯[^☯\\n]+☯|本[文书](?:首发|来自)|(?:章节不完整.?|完整章节)?请.{2,6}(?:搜索|百度|引擎|关键[词字])+|(?:[阅閱][讀读]|访问|訪問|[網网地][站址]|链接|鏈接|[\\u4e00-\\u9fa50-9a-zA-Z]{0,4}(?:文学|中文|[網网]))+[:：]|[\\u4e00-\\u9fa50-9a-zA-Z]{0,6}(?:[網网地][站址]|链接|鏈接)为|.{2,4}文[学學][網网]|[请請].{2,4}收藏(?:.{0,2}推[荐薦])?|(?:天才)一秒[記记]住|，?請?訪問|(?:[更最][快新]|[快高]速|热门|(?:[阅閱][讀读])?完整|本|(?:官[網网]|本站).{0,2})(?:章[節节]|小说|更新|[網网地][址站][:：]?|快速)|更新(?:速度)?[最更]?快|(?:(?:无错)?小说|正版|免费|全[文本]|在线|访问|訪問|txt|TXT|继续|各种|推[荐薦]|收藏|分享|交流|你?喜欢的)+(?:全文|免费|在线|[阅閱]?[讀读]|下载|章[節节]|小说|好书)|章[節节](?:目录|列表)|小说[網网](?:更新)?|手打全文|[纯全](?:手打|文字)|手机看书|手机版|笔趣阁|(?:本站|[網网]站|站内|看)?无(?:任何)?(?:广告|弹窗|防盗)(?:章节)?|不弹窗|(?:(?:請|请|或者?)?(?:訪問|访问|[電电手][腦脑机機]|[網网][址站]|用[户戶]|浏览|瀏覽|閱讀|阅读|看小说|看漫画)){2,}|看小说|看漫画|(?:用[^\\n]{2,6})?(?:[追看]书|小说)(?:就用|软件|☯[^☯]+☯)，?|用[^\\n]{2,6}[追看]书|(?:..的)?(?:最佳选择|阅读体验)|(?:推[荐薦]|收藏|分享)(?:本站|我们)|小说..版|文章质量更好|谢谢各位(?:读者|书友)支持|水印广告测试|本章未完|请翻页|点击下一页|领.{0,2}红包|同步更新《[^《》]+》|关注[〖【『「（《〈〔［｛\\[{(][^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+[)｝］〕〉》）」』】〗\\]}])(?:[* (),\\u4e00-\\u9fa5、，：；？！。…─‘’“”（）《》〖〗【】]{0,3}[^⚙️📑*\\n(),\\u4e00-\\u9fa5、，：；？！。…─「」‘’“”（）《》〖〗【】]+|[….。!！]+(?=\\n))*|⚙️(?!<)[^⚙️\\n]+⚙️)/g,\"\\n⚙️$1⚙️\\n\")\n.replace(/⚙️(<[^<>]+>)⚙️\\n|[〖【『「（《〈〔［｛\\[{(](?:[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]{0,3}\\n⚙️(?!\\s*\\S\\s*⚙️).+⚙️\\n*)+[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]{0,3}[)｝］〕〉》）」』】〗\\]}]|(🌕)\\s*⚙️|⚙️\\n[^\\u4e00-\\u9fa5]{0,5}\\n⚙️|\\n⚙️\\s*(\\S)\\s*⚙️\\n(?![^⚙️]{1,3}⚙️)|(⚙️\\n)|([，、；])[\\s,，。、…:：;；?？!！`’]*[,，。、…:：;；?？!！`’](?!⚙️)|\\n[\\s,，。、…:：;；?？!！`’]*(?=[,，。、:：;；?？!！])|([：？！。…─])(?:[^⚙️☯a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n…─“‘’”〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+(?=\\n)|[^⚙️☯a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n…─“‘’”〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+)|☯/g,\"$1$2$3$4$5$6\")\n.replace(/([)）？！?!…」』”\\s。])(?:[^\\n（(🌕)）”』」’。]{0,5}(?:(?:\\n⚙️.+⚙️\\n|[^（()）\\n”』」。]{0,5}📑)[^（()）\\n。]{0,5}(?:\\n⚙️.+⚙️(?:\\n(?=\\n⚙️|[^（()）\\n]{1,5}\\n))?|[^（()）\\n。]{0,5}📑(?:[^📑]{1,5}(?=\\n⚙️))?)+(?:[^（()）\\n]{1,5}(?=\\n))?|(?:(?:(?:\\n⚙️.+⚙️\\n|[^（()）\\n。]{0,5}📑)[^（()）\\n]{0,5}){2,}|[^（(🌕)）”』」’\\n。]{0,5}(?:(?:請|关键[词字]|[電电手][腦機]|用戶|瀏覽|[阅閱]讀|推[薦荐]|收藏|分享|文章质量|谢谢(各位|支持|大家)|水印|翻页|点击|下[一\\s]*[页頁篇章回节節话話]|免费|热门|官网|正版|在线|同步|下载|文学|中文|章节|[本网][站址]|站内|小说|更新|无错|[本全][文本章]|首发|广个?告|弹窗|防盗|访问|訪問|txt|TXT|读者|书友|百度|[插说]一?[下句]话?，[\\u4e00-\\u9fa5]{0,5})[^（()）\\n]{0,5})*(?:📑|\\n⚙️[^\\n]+⚙️\\n)[^（()）\\n]{0,5}(?:(?:請|关键[词字]|[電电手][腦機]|用戶|瀏覽|[阅閱]讀|推[薦荐]|收藏|分享|文章质量|谢谢(各位|支持|大家)|水印|翻页|点击|下[一\\s]*[页頁篇章回节節话話]|免费|热门|官网|正版|在线|下载|同步|文学|中文|章节|[本网][站址]|站内|小说|更新|无错|[本全][文本章]|首发|广个?告|弹窗|防盗|访问|訪問|txt|TXT|读者|书友|百度)[^（()）\\n]{0,5})*|[^（(🌕)）\\n”』」’。]{0,3}\\n⚙️.+⚙️\\n[^（()）\\n。]{0,3})(?:[\\u4e00-\\u9fa5]+[！。]?|[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n]+)?(?=\\n)))+|\\n⚙️[^\\u4e00-\\u9fa5]+⚙️\\n|📑|\\s*︴\\s*|\\n?⚙️\\n?|\\n[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n]{2,}\\n[^🌕a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n“《‘【〖『「]*/g,\"$1\")\n.replace(/(?:(?:\\n🌕[^\\n]*)+(?:\\n+[^\\n]+){0,4}|\\n(?:[(（{｛][^(（<{｛｝}>）)]*(?:(?:[(（{｛][^(（<{｛｝}>）)]*[）)｝}])[^(（<{｛｝}>）)]*)*[）)｝}]?\\s*)+|[^\\n]*起点(?:原创|中文)[^\\n]*|[〖【『「（《〈〔［｛\\[{(]?未完待续[^\\n]*)[^\\u4e00-\\u9fa5<>]*$|^\\s*(?:(?:[^\\n]+\\n+){0,4}(?:🌕[^\\n]*\\n?)+|(?:[(（{｛][^(（<{｛｝}>）)]*(?:(?:[(（{｛][^(（<{｛｝}>）)]*[）)｝}])[^(（<{｛｝}>）)]*)*[）)｝}]?\\s*)+|，[^\\n]+)\\n|(?:^|\\n)[^a-z0-9A-Z\\u4e00-\\u9fa5]*(?=\\n)|🌕|\\n\\s*[a-zA-Z]+\\s*$/g,\"\")}"
    },
    "ruleExplore": {
      "author": "object.0@text",
      "bookList": "ul@li",
      "bookUrl": "li@a@href",
      "coverUrl": "img@src",
      "intro": "class.book-intro@text",
      "kind": "span@text",
      "name": "class.book-title@text",
      "wordCount": "span.-1@text"
    },
    "ruleSearch": {
      "author": "object.0@text",
      "bookList": "class.list-item",
      "bookUrl": "a.0@href",
      "checkKeyWord": "龙藏",
      "coverUrl": "img.0@src",
      "intro": "div.2@text",
      "kind": "object.1@text##[·]*",
      "name": "class.book-title@text",
      "wordCount": "span.1@text##[·]*"
    },
    "ruleToc": {
      "chapterList": "class.vue-recycle-scroller__item-view",
      "chapterName": "class.item@text",
      "chapterUrl": "a@href",
      "isVip": "💎",
      "updateTime": "class.charpter-time@text"
    },
    "searchUrl": "https://ubook.reader.qq.com/so/{{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "酸奶漫画",
    "bookSourceType": 2,
    "bookSourceUrl": "https://m.1kkk.com",
    "customButton": false,
    "customOrder": 615,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1759431728809,
    "respondTime": 595,
    "ruleBookInfo": {
      "author": "p.detail-main-info-author@tag.a@text",
      "coverUrl": "img.detail-main-bg@src",
      "intro": "p.detail-desc@text",
      "kind": "p.detail-main-info-class@tag.a@text",
      "lastChapter": "ul.detail-list-select@tag,li.0@text",
      "name": "p.detail-main-info-title@text"
    },
    "ruleContent": {
      "content": "@js:header={\"Referer\":baseUrl};\nheaders={\"headers\":JSON.stringify(header)};\neval(result.match(/eval(.*?)\\{\\}\\)\\)/)[0])\nvar image_list = []\nnewImgs.map(item=>{\n    image_list.push('<img src=\"'+item+','+JSON.stringify(headers)+'\">')\n})\nimage_list.join(\"\\n\")"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.p.0@text",
      "bookList": "ul.book-list@tag.li",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.img@src",
      "intro": "p.book-list-info-desc@text",
      "name": "p.book-list-info-title@text"
    },
    "ruleToc": {
      "chapterList": "ul.detail-list-select@li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "isVip": "@js:var vip_bool = result.select('img').hasClass('detail-list-lock');\nif(!vip_bool){\nvip_bool = result.select('img').hasClass('detail-list-2-info-right');\n}\nvip_bool;"
    },
    "searchUrl": "https://m.1kkk.com/search?title={{key}}&language=1",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "❤️斗破苍穹cc",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.doupocangqiong.cc",
    "bookUrlPattern": "http://m.doupocangqiong.cc/\\d+/",
    "customButton": false,
    "customOrder": 616,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::/sort/xuanhuan/{{page}}.html\n奇幻::/sort/qihuan/{{page}}.html\n武侠::/sort/wuxia/{{page}}.html\n仙侠::/sort/xianxia/{{page}}.html\n都市::/sort/dushi/{{page}}.html\n历史::/sort/lishi/{{page}}.html\n军事::/sort/junshi/{{page}}.html\n游戏::/sort/youxi/{{page}}.html\n竞技::/sort/jingji/{{page}}.html\n科幻::/sort/kehuan/{{page}}.html\n灵异::/sort/lingyi/{{page}}.html\n同人::/sort/tongren/{{page}}.html\n女生::/sort/nvsheng/{{page}}.html\n其他::/sort/qita/{{page}}.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1779721725795,
    "respondTime": 12696,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "init": "@put:{n:\"[property$=book_name]@content\",\na:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property$=latest_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"[property$=image]@content\"}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}",
      "tocUrl": "{{$.}}list/"
    },
    "ruleContent": {
      "content": "#articlecon>p@textNodes",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##.*\\(第\\d+.*页\\)|\\s*.*本章未完.*\\s*"
    },
    "ruleExplore": {
      "author": "a.2@text",
      "bookList": ".pt-card li",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "kind": "a.-1@text",
      "name": "a.1@text"
    },
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".pt-card li",
      "bookUrl": "a.1@href",
      "checkKeyWord": "斗破苍穹",
      "coverUrl": "img@src",
      "kind": ".pt-info@text",
      "lastChapter": "a.-1@text",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": ".pt-dir li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": ".pt-dir-sel a@href"
    },
    "searchUrl": "http://m.doupocangqiong.cc/search.html?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "💡与💍晋江除了发现不一样，其他的都一样\n💡默认不启用该源的搜索，可用发现\nby 酷安 @viviyaaa    分享注明出处",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "晋江",
    "bookSourceType": 0,
    "bookSourceUrl": "晋江纯爱/无cp标签",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 617,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{'title':'纯爱排行榜','url':'','style':{layout_flexGrow:1,layout_flexBasisPercent:1}},\n{'title':'作品积分','url':'http://www.jjwxc.net/topten.php?orderstr=7&t=1','style':{layout_flexGrow:1}},\n{'title':'长生殿','url':'http://www.jjwxc.net/topten.php?orderstr=9&t=1','style':{layout_flexGrow:1}},\n{'title':'驻站作者','url':'http://www.jjwxc.net/topten.php?orderstr=19&t=1','style':{layout_flexGrow:1}},\n{'title':'完结高分','url':'http://www.jjwxc.net/topten.php?orderstr=20&t=1','style':{layout_flexGrow:1}},\n{'title':'半年榜','url':'http://www.jjwxc.net/topten.php?orderstr=6&t=1','style':{layout_flexGrow:1}},\n{'title':'栽培月榜','url':'http://www.jjwxc.net/topten.php?orderstr=18&t=1','style':{layout_flexGrow:1}},\n{'title':'完结金榜','url':'http://www.jjwxc.net/topten.php?orderstr=7&t=1','style':{layout_flexGrow:1}},\n{'title':'季度榜','url':'http://www.jjwxc.net/topten.php?orderstr=4&t=1','style':{layout_flexGrow:1}},\n{'title':'勤奋指数','url':'http://www.jjwxc.net/topten.php?orderstr=15&t=1','style':{layout_flexGrow:1}},\n{'title':'霸王票榜','url':'http://www.jjwxc.net/topten.php?orderstr=13&t=1','style':{layout_flexGrow:1}},\n{'title':'月度榜','url':'http://www.jjwxc.net/topten.php?orderstr=5&t=1','style':{layout_flexGrow:1}},\n{'title':'新晋作者','url':'http://www.jjwxc.net/topten.php?orderstr=3&t=1','style':{layout_flexGrow:1}},\n\n{'title':'分类排行','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&null=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1,layout_flexBasisPercent:1}},\n{'title':'近代现代','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd1=1&lx0=0&fg0=0&collectiontypes=ors&null=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1,layout_flexBasisPercent:0.3}},\n{'title':'古色古香','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd2=2&lx0=0&fg0=0&collectiontypes=ors&null=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1,layout_flexBasisPercent:0.3}},\n{'title':'架空历史','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd3=4&lx0=0&fg0=0&collectiontypes=ors&null=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1,layout_flexBasisPercent:0.3}},\n{'title':'幻想未来','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd4=5&lx0=0&fg0=0&collectiontypes=ors&null=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1,layout_flexBasisPercent:0.3}},\n\n{'title':'纯爱标签','url':'','style':{layout_flexGrow:1,layout_flexBasisPercent:1}},\n{'title':'快穿','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq125=125&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'穿书','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq134=134&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'甜文','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq124=124&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'重生','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq75=75&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'爽文','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq137=137&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'系统','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq122=122&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'强强','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq19=19&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'星际','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq135=135&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'生子','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq20=20&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'校园','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq185=185&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'末世','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq81=81&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'女配','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq96=96&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'美食','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq99=99&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'异能','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq72=72&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'玄学','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq206=206&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'打脸','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq138=138&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'直播','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq142=142&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'年下','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq21=21&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'武侠','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq11=11&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'逆袭','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq184=184&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'西幻','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq143=143&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'宫斗','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq74=74&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'婚恋','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq78=78&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'竞技','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq70=70&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'科举','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq174=174&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'萌宠','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq205=205&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'恐怖','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq29=29&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'机甲','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq97=97&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'科幻','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq28=28&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'婆媳','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq80=80&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'奇谭','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq197=197&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'爱情','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx1=1&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'武侠','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx2=2&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'奇幻','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx3=3&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'仙侠','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx4=4&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'游戏','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx5=5&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'传奇','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx6=6&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'科幻','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx7=7&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'惊悚','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx9=9&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'悬疑','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx10=10&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'剧情','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx16=16&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'商战','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq123=123&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'传奇','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq89=89&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'网配','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq84=84&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'职场','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq98=98&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'经商','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq180=180&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'成长','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq183=183&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'宅斗','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq73=73&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'网红','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq141=141&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'科幻','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq28=28&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'洪荒','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq67=67&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'血族','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq69=69&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'娱乐圈','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq64=64&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'种田文','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq66=66&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'年代文','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq173=173&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'无限流','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq83=83&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'古穿今','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq65=65&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'升级流','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq139=139&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'大冒险','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq198=198&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'轻小说','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx12=17&fg0=0&collectiontypes=ors&bq0=0&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'姐弟恋','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq186=186&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n\n{'title':'穿越时空','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq60=60&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'仙侠修真','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq68=68&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'豪门世家','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq33=33&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'随身空间','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq56=56&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'情有独钟','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq39=39&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'灵异神怪','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq26=26&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'破镜重圆','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq47=47&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'虐恋情深','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq42=42&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'青梅竹马','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq62=62&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'宫廷侯爵','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq32=32&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'异世大陆','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq57=57&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'悬疑推理','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq128=128&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'天作之合','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq52=52&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'天之骄子','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq54=54&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'游戏网游','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq92=92&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'都市情缘','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq30=30&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'性别转换','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq24=24&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'现代架空','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq126=126&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'未来架空','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq127=127&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'欢喜冤家','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq41=41&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'前世今生','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq49=49&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'幻想空间','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq25=25&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'复仇虐渣','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq145=145&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'东方玄幻','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq144=144&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'朝堂之上','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq178=178&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'奇幻魔幻','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq27=27&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'励志人生','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq121=121&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'民国旧影','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq61=61&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'布衣生活','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq38=38&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'业界精英','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq101=101&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'女扮男装','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq136=136&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'市井生活','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq175=175&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'古代幻想','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq189=189&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'平步青云','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq55=55&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'相爱相杀','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq103=103&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'因缘邂逅','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq45=45&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'灵魂转换','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq23=23&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'魔法幻情','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq191=191&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'江湖恩怨','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq35=35&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'花季雨季','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq31=31&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'制服情缘','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq85=85&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'都市异闻','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq181=181&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'古典名著','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq130=130&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'近水楼台','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq46=46&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'亡灵异族','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq192=192&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'乔装改扮','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq51=51&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'小门小户','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq177=177&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'时代奇缘','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq22=22&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'史诗奇幻','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq199=199&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'阴差阳错','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq53=53&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'恋爱合约','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq48=48&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'异闻传说','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq196=196&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'三教九流','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq36=36&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'骑士与剑','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq63=63&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'七年之痒','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq79=79&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'异想天开','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq190=190&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'乡村爱情','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq58=58&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'爱情战争','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq50=50&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'时尚流行','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq182=182&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}},\n{'title':'时代新风','url':'http://www.jjwxc.net/bookbase.php?fw0=0&fbsj=0&ycx0=0&xx2=2&mainview0=0&sd0=0&lx0=0&fg0=0&collectiontypes=ors&bq210=210&searchkeywords=&page={{page}}','style':{layout_flexGrow:1}}]",
    "lastUpdateTime": 1716227606406,
    "loginUrl": "",
    "respondTime": 3105,
    "ruleBookInfo": {
      "author": "$.authorName",
      "coverUrl": "$.novelCover",
      "intro": "@js:if(/完结/.test(book.kind))book.canUpdate=false;\na=JSON.parse(java.ajax('http://app.jjwxc.org/androidapi/getnovelOtherInfo?novelId='+java.get('id')+'&type=novelbasicinfo&versionCode=148'));\nb=a.novelLeave;\nc=JSON.parse(result);\nz=s=>s.length>3?s:'';\n['',b.leaveDateBack,b.leaveContent,b.leaveDate,'🔖 '+c.novelIntroShort,'​','标签：'+c.novelTags,z(c.protagonist),z(c.costar),z(c.other),'风格：'+c.novelStyle+'　　视角：'+c.mainview,'收藏：'+a.novelbefavoritedcount+'　评论：'+c.comment_count+'　评分：'+c.novelReviewScore,'┄┄',c.novelIntro].join('\\n').replace('立意:','┄┄\\n立意：').replace('评分：\\n','\\n').replace('🔖 \\n','')",
      "kind": "{{$.novelClass}},{{java.get('ns')==1?'连载':'完结'}}",
      "lastChapter": "<js>\n\ntry{last=JSON.parse(java.ajax('http://android.jjwxc.net/androidapi/chapterList?novelId='+baseUrl.match(/(\\d+)/)[1])).chapterlist;\n$=last[last.length-1];\nvip=$.isvip?'💰':'';\nchapterid=$.chapterid;\nchaptername=$.chaptername;\ndate=$.chapterdate;\nvip+chapterid+'、'+chaptername+' '+date}\ncatch(err){\njava.log(err)\nresult=\"请刷新\"\n}\n</js>",
      "name": "$.novelName@put:{id:$.novelId,ns:$.novelStep,nw:'$.novelSize##\\\\D'}",
      "tocUrl": "http://app-cdn.jjwxc.net/androidapi/chapterList?novelId={{baseUrl.match(/novelId=(\\d+)/)[1]}}&more=0&whole=1",
      "wordCount": "{{java.get('nw')}}"
    },
    "ruleContent": {
      "content": "<js>\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n     Packages.java.lang,\n    Packages.javax.crypto.spec,\n    Packages.javax.crypto,\n    Packages.java.util \n);\nwith(javaImport){\n    let IV_PARAMETER = String(\"1ae2c94b\");\n    let ALGORITHM = \"DES\"; \n    let CIPHER_ALGORITHM = \"DES/CBC/PKCS5Padding\";\n    let CHARSET = \"utf-8\";\n    let password=String(\"KK!%G3JdCHJxpAF3%Vg9pN\");\n\n\nfunction decode(data){\nlet dks = new DESKeySpec(String(password).getBytes());\nlet keyFactory = SecretKeyFactory.getInstance(\"DES\");\nlet secretKey = keyFactory.generateSecret(dks);\nlet cipher = Cipher.getInstance(CIPHER_ALGORITHM);\nlet iv = new IvParameterSpec(IV_PARAMETER.getBytes(CHARSET));\ncipher.init(Cipher.DECRYPT_MODE, secretKey, iv);\nreturn new String(cipher.doFinal(Base64.getDecoder().decode(String(data).getBytes(CHARSET))), CHARSET);\n\n}\n}\n//DES解密结束\n\ncontent=java.getElement(\"$.content\");\nsaybody=java.getString(\"$.sayBody\");\nsay=saybody!=\"\"?\"\\n作者有话要说：\\n\"+saybody:\"\";\nif(baseUrl.match(/token/)){\nresult=String(decode(content)+say);\n}else{result=content+say}\n</js>",
      "imageStyle": "TEXT",
      "replaceRegex": "##【普通用户、初级.*用户所发评论将在审核通过后显示！】|【为营造更好的评论环境，近期网站要求发评须进行实名认证，未实名用户评论暂时仅在对应作者后台及发评用户后台可见.*\n|(感谢灌溉)[\\w\\W]+(.).*感谢(灌|投|支持).*|感谢(在|为).*小天使.*|.*(扔|投|砸|灌)了.*时间.*|.*\\\\d瓶.*|.*(扔|投|砸|灌|谢).*(手榴弹|营养液|地雷|浅水炸弹|深水炸弹|深水鱼雷|火箭炮|投雷|霸王票).*|非常感谢.*努力的.*"
    },
    "ruleExplore": {
      "lastChapter": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "a[href~=author]@text",
      "bookList": ".cytable tr,tr[bgcolor~=eefaee]||ul li:has(a[href~=book2])",
      "bookUrl": "##(?:/book2/|novelid=)(\\d+)##http://app-cdn.jjwxc.net/androidapi/novelbasicinfo?novelId=$1###",
      "coverUrl": "",
      "intro": "a@rel||a@title##^简介：|<br>|\\n.+",
      "kind": "td:has(a)~td:lt(7)!0:2:4:5:6@text||span,font@text##\\[删\\]",
      "name": "a[href~=book2]@text||tag.a.1@text",
      "wordCount": "##\"right\">([^<&]*)##$1###"
    },
    "ruleToc": {
      "chapterList": "$.chapterlist",
      "chapterName": "<js>\n$=result;\ntitle=$.chaptername;\ntitle=String(title).replace(/^\\s+/,'');\nintro=$.chapterintro;\njava.put(\"intro\",intro);\nvip=$.isvip!='0';\nlock=$.islock!='0';\ntype=$.chaptertype=='1';\nnum=!type?'第{{$.chapterid}}章 ':'';\nif(title.match(/[一二三四五六七八九十百千万\\d]+\\s*章|^\\d+[、\\.\\s]|chapter\\s*\\d+/i)){\nnum=''\n}else{num=num}\nl=lock?'[锁]':'';\nresult=num+title+l;\n\n//不显示卷名\nresult=!type?result:'';\n</js>",
      "chapterUrl": "@js:\n$=result;\ncookie=java.getCookie(\"http://m.jjwxc.net\",\"sid\");\nchapterid=$.chapterid;\ncookie=java.get('cookie');\nvip=$.isvip!='0';\ntype=$.chaptertype=='1';\nif(!vip){\nif(!type){\nresult='https://app-cdn.jjwxc.net/androidapi/chapterContent?novelId='+baseUrl.match(/novelId=(\\d+)/)[1]+'&chapterId='+chapterid\n}else{\nchaptername=$.chaptername;\nresult='http://www.baidu.com?wd='+result+book.name+'/'+chaptername}\n}else{result=\"http://app.jjwxc.org/androidapi/chapterContent?novelId=\"+baseUrl.match(/novelId=(\\d+)/)[1]+'&versionCode=191&token='+cookie+'&chapterId='+chapterid}",
      "isVip": "",
      "updateTime": "{{$.isvip}}🍴{{$.chapterdate}}   {{$.chaptersize}}字   {{$.chapterintro##^\\s*}}##^🍴|^0字  |0000-00-00.*@js:result.replace(/2🍴/g,'💰').replace(/0🍴/g,'　').replace(/💰$/g,'').replace(/(\\s\\d+:\\d+):\\d+/g,'$1')"
    },
    "searchUrl": "http://www.jjwxc.net/bookbase.php?searchkeywords={{key}}&page={{page}},{\n  \"charset\": \"gbk\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "收费漫画",
    "bookSourceType": 2,
    "bookSourceUrl": "https://mm.sfacg.com/",
    "concurrentRate": "5",
    "customButton": false,
    "customOrder": 618,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "更新::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=-1\n热血::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=1\n校园::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=2\n推理::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=3\n机战::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=4\n冒险::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=5\n运动::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=6\n耽美::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=7\n搞笑::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=8\n科幻::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=9\n魔幻::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=10\n恐怖::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=11\n社会::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=12\n爱情::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=13\n武侠::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=14\n温情::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=15\nnull",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; wv) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\", \"Accept-Language\": \"zh-CN,zh;q=0.9\"}",
    "lastUpdateTime": 1786691268505,
    "loginUrl": "https://mm.sfacg.com/Login/",
    "respondTime": 627,
    "ruleBookInfo": {
      "author": "class.book_Author@tag.li.0@text",
      "coverUrl": "@css:#page>div>ul>li:nth-child(2)>img@src",
      "intro": "class.book_bk_qs1.0@text",
      "kind": "@css:.book_info2>span@text",
      "lastChapter": "[property$=latest_chapter_name]@content||.col-md-8.1@text",
      "name": "@css:.book_newtitle@text"
    },
    "ruleContent": {
      "content": "@js:\ncomicId=result.match(/var comicId = (\\d+)/)[1];\nchapterId=result.match(/var chapterId=(\\d+)/)[1];\nnv=result.match(/var nv = \"(.*?)\"/)[1];\nurl='https://mm.sfacg.com/ajax/Common.ashx?op=getPics&cid='+comicId+'&chapId='+chapterId+'&serial=ZP&path='+nv\n//java.ajax(url)\nresult=JSON.parse(java.ajax(url)).data\nresult.map(x=>'<img src=\\\"'+x+'\\\">').join(\"\\n\")",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.AuthorName@put:{cid:ComicID}",
      "bookList": "$.comics.*||$.data.*",
      "bookUrl": "@json:/b/{$.FolderName}",
      "coverUrl": "$.ComicCover",
      "kind": "$.TypeName",
      "lastChapter": "$.LastChapterTitle",
      "name": "$.ComicName"
    },
    "ruleToc": {
      "chapterList": "-@css:.comic_main_list>a",
      "chapterName": "text##VIP",
      "chapterUrl": "href",
      "isVip": "b@text"
    },
    "searchUrl": "https://mm.sfacg.com/ajax/Common.ashx?op=search,{\n  \"method\": \"POST\",\n  \"body\": \"keyword={{key}}\"\n}",
    "weight": 1
  },
  {
    "bookSourceComment": "//2024.10.27 by.GEd520\n//2024.10.29 完善部分规则，目录判断与正文解密代码 by.夜泽川",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁_书友",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.suimeng.la",
    "customButton": false,
    "customOrder": 619,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"全部\",\"url\":\"/sort/0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻魔法\",\"url\":\"/sort/1-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},{\"title\":\"武侠修真\",\"url\":\"/sort/2-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},{\"title\":\"都市言情\",\"url\":\"/sort/3-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},{\"title\":\"军事历史\",\"url\":\"/sort/4-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},{\"title\":\"侦探科幻\",\"url\":\"/sort/5-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},{\"title\":\"网游动漫\",\"url\":\"/sort/6-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},{\"title\":\"灵异耽美\",\"url\":\"/sort/7-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},{\"title\":\"其他小说\",\"url\":\"/sort/8-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}}]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\"}",
    "lastUpdateTime": 1730365071992,
    "respondTime": 30732,
    "ruleBookInfo": {
      "author": "i.0@text##\\/著",
      "intro": ".xs_introduce@ownText",
      "name": "h2.0@text",
      "tocUrl": ""
    },
    "ruleContent": {
      "content": "<js>\nvar bes = result.match(/PHA\\+[A-Za-z0-9+\\/]+={0,2}/g);\n//java.log(String(bes))\nif (!bes) {\n    var ml = java.webView(null,baseUrl,null);\n    var txt = java.getString(\"#txt@html\");\n    java.longToast(\"正文解密失败，转为webView动态加载。\");\n} else {\nvar result = [];\nfor (var i = 0; i < bes.length; i++) {\n    // 遍历数组，使用阅读内置Base64解码方法\n    var bsej = java.base64Decode(bes[i]);\n    var txtt = String(bsej);\n    result.push(txtt);\n      }\n\tvar txt = result.join('\\n');\n}\ntxt;\n</js>",
      "nextContentUrl": "@js: var nex = result.match(/hhekgv='([^']*)'\\;/)[1];\nvar ul = source.key + nex;\nif (ul.length === String(book.bookUrl).length) {\n\tresult = \"\"\n\t} else{\n\t\tresult = ul;\n\t\t}\n\t\tjava.log(result)\nresult;",
      "replaceRegex": "##.*退出浏览器阅读模式.*|(?m)^\\s*（）;（）",
      "title": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": ".index_qb > a",
      "bookUrl": "a@href",
      "coverUrl": "img@data-original",
      "intro": ".info@text",
      "name": "h4@text"
    },
    "ruleToc": {
      "chapterList": "@js: var result = []\nif (!baseUrl.includes('index')) {\n    //java.log(\"当前目录在详情页\")\n    var chnList = java.getStringList(\"ul[class=ph_list].1@a@text\");\n    var chfList = java.getStringList(\"ul[class=ph_list].1@a@href\");\n} else {\n    //java.log(\"当前目录跳转新页面\")\n    var chnList = java.getStringList(\".ph_list a@text\");\n    var chfList = java.getStringList(\".ph_list a@onclick\");\n}\n\nfor (var i = 0; i < chfList.length; i++) {\n\tchfList[i] = String(chfList[i]).replace(/read_tz\\((\\d+)\\)\\;/g,book.bookUrl + \"$1.html\");\n\tvar chn = Array.from(chnList);\n var chf = Array.from(chfList);\n    result.push({\n        title: chn[i],\n        url: chf[i]\n    });\n}\n\nif (result.length === 0) {\n    // 如果目录数据为空，则弹窗提示\n    java.longToast(\"当前书籍无数据\");\n} else {\n    result = result;\n}\nresult;",
      "chapterName": "title",
      "chapterUrl": "url",
      "formatJs": "",
      "isVolume": "",
      "nextTocUrl": "@js: var ml = source.key + java.getString(\"text.章节目录@href\");\nvar src = java.ajax(ml);\nvar next = java.getStringList(\"option@value\",src);\nnext;",
      "preUpdateJs": ""
    },
    "searchUrl": "{{cookie.removeCookie(source.getKey())}}/search.html,{\n \"body\": \"s={{key}}\",\n \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "\nby天天的鸟蛋蛋",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "情言小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.gaoyuantong.com",
    "customButton": false,
    "customOrder": 621,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "jsLib": "{\"crypto\": \"https://cdn.bootcss.com/crypto-js/3.1.9-1/crypto-js.min.js\"}",
    "lastUpdateTime": 1787303497870,
    "respondTime": 5596,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content",
      "name": "[property$=book_name]@content",
      "tocUrl": "text.章节目录@href"
    },
    "ruleContent": {
      "content": "@js:\nfunction x(encryptedData, key, iv) {\r\n  const ciphertext = CryptoJS.enc.Base64.parse(encryptedData);\r\n  const ivBytes = CryptoJS.enc.Base64.parse(iv);\r\n  const keyBytes = CryptoJS.enc.Utf8.parse(key);\r\n  const decrypted = CryptoJS.AES.decrypt(\r\n    { ciphertext: ciphertext },\r\n    keyBytes,\r\n    { iv: ivBytes, mode: CryptoJS.mode.CBC, padding: CryptoJS.pad.ZeroPadding }\r\n  );\r\n  const decryptedText = decrypted.toString(CryptoJS.enc.Utf8);\r\n return decryptedText;\r\n  \r\n}\nmatch=src.match(/#booktxthtml'\\).html\\((.*?\\))\\)/);\n//java.log(match[1])\nif(match){\nresult=eval(match[1])}else result",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".item",
      "bookUrl": "a.0@href",
      "coverUrl": "img@data-original",
      "intro": "dd@text",
      "kind": "em.-1@text",
      "name": "a.1@text",
      "wordCount": "em.0@text##.*："
    },
    "ruleToc": {
      "chapterList": "dl@dd@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "{{url=source.getKey();cookie.removeCookie(url)}}\n/search,{\n  \"body\": \"searchkey={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "开心文学#2",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.kxwx.org#🎃",
    "customButton": false,
    "customOrder": 622,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1786586580324,
    "respondTime": 2841,
    "ruleBookInfo": {
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content"
    },
    "ruleContent": {
      "content": ".mainContenr@p@text"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".grid@tr!0",
      "bookUrl": "a.0@href",
      "kind": "td.-1:-2@text",
      "lastChapter": "a.1@text",
      "name": "a.0@text",
      "wordCount": "td.-3@text"
    },
    "ruleToc": {
      "chapterList": ".chapterNum@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/search/{{key}}.html",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "三叠书阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.noveltri.com",
    "customButton": false,
    "customOrder": 623,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n    {\n        \"title\": \"科幻未來\",\n        \"url\": \"/zh-tw/books/1b7f39f5f32f6b96/{{page}}.html\"\n    },\n    {\n        \"title\": \"網路同人\",\n        \"url\": \"/zh-tw/books/1e42ed73a95ce215/{{page}}.html\"\n    },\n    {\n        \"title\": \"軍事歷史\",\n        \"url\": \"/zh-tw/books/208433aa7d3a9847/{{page}}.html\"\n    },\n    {\n        \"title\": \"武俠仙俠\",\n        \"url\": \"/zh-tw/books/580ffbceba88bd86/{{page}}.html\"\n    },\n    {\n        \"title\": \"靈異玄幻\",\n        \"url\": \"/zh-tw/books/1b7f39f5f32f6b96/{{page}}.html\"\n    },\n    {\n        \"title\": \"奇幻冒險\",\n        \"url\": \"/zh-tw/books/67a3a204728ae79a/{{page}}.html\"\n    },\n    {\n        \"title\": \"情色工口\",\n        \"url\": \"/zh-tw/books/f4c67287fa5cf290/{{page}}.html\"\n    }\n]",
    "lastUpdateTime": 0,
    "loginUrl": "/zh-tw/login",
    "respondTime": 12612,
    "ruleBookInfo": {
      "author": "@css:.list-inline-item.tags>a>strong@text",
      "coverUrl": "@css:.mb-xl-0.text-center>img@src",
      "intro": "@css:.description@text",
      "name": "@css:h3@text",
      "wordCount": "@css:#book-status>li:eq(0)>strong@text"
    },
    "ruleContent": {
      "content": "@css:.px-sm-1>p@text",
      "title": "@css:h1@text"
    },
    "ruleExplore": {
      "author": "@css:.small a@text",
      "bookList": "@css:.d-grid.books>.book.d-flex.shadow-sm",
      "bookUrl": "@css:a:eq(0)@href",
      "coverUrl": "@css:.cover img@src",
      "intro": "@css:.description@text",
      "name": "@css:.fw-bold span@text"
    },
    "ruleSearch": {
      "author": "@css:.small a@text",
      "bookList": "@css:.d-grid.books>.book.d-flex.shadow-sm",
      "bookUrl": "@css:a:eq(0)@href",
      "checkKeyWord": "吾",
      "coverUrl": "@css:.cover img@src",
      "intro": "@css:.description@text",
      "name": "@css:.fw-bold span@text",
      "wordCount": "@css:.small ul>li:eq(0)>strong@text"
    },
    "ruleToc": {
      "chapterList": "@css:.chapters>div",
      "chapterName": "@css:span@text",
      "chapterUrl": "@css:a@href"
    },
    "searchUrl": "/zh-tw/search?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "//25.1.4 by怣疯",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "西瓜书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.xiguashuwu.com/",
    "bookUrlPattern": "https://www.xiguashuwu4.com/book/\\d+/",
    "customButton": false,
    "customOrder": 624,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全部::/category/0/{{page}}.html\n玄幻小说::/category/1/{{page}}.html\n修真小说::/category/2/{{page}}.html\n都市小说::/category/3/{{page}}.html\n历史小说::/category/4/{{page}}.html\n网游小说::/category/5/{{page}}.html\n科幻小说::/category/6/{{page}}.html\n言情小说::/category/7/{{page}}.html\n其他小说::/category/8/{{page}}.html\n经典小说::/category/9/{{page}}.html\n同人小说::/category/10/{{page}}.html\n高辣小说::/category/11/{{page}}.html\n耽美小说::/category/12/{{page}}.html\n情欲小说::/category/13/{{page}}.html\n复古耽美::/category/14/{{page}}.html\n复古言情::/category/15/{{page}}.html",
    "header": "{\n\t\t\t  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 13; 2312DRAABC) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Mobile Safari/537.36\"\n}",
    "lastUpdateTime": 1769087175482,
    "respondTime": 18928,
    "ruleBookInfo": {
      "author": "a",
      "coverUrl": "w",
      "init": "@js:\n$ = (_) => java.getString(_);\n({\n    n: $(\"[property$=title]@content\"),\n    a: $(\"[property$=author]@content\"),\n    k: $(\"[property~=category|status|update_time]@content\"),\n    w: $(\"[property$=image]@content\"),\n    l: $(\"[property~=las?test_chapter_name]@content\"),\n    i: $(\"[property$=description]@content\"),\n    c: $(\"[property$=image]@content\"),\n    t: $(\"text.章节目录@href\")\n});",
      "intro": "i",
      "kind": "k",
      "lastChapter": "l",
      "name": "n",
      "tocUrl": "t"
    },
    "ruleContent": {
      "content": "p[style=\"text-indent:2em; padding:0px; margin:0px;\"]@html",
      "imageStyle": "text",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##本章尚未读.*"
    },
    "ruleExplore": {
      "author": "p.1@span@text",
      "bookList": ".CGsectionTwo-right-content div",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": "p.2@text",
      "kind": "p.-1@text##最近更新 ",
      "name": "a.0@text"
    },
    "ruleSearch": {
      "author": "a.1@text",
      "bookList": "<js>if(result.includes('no-js')){\n  java.startBrowserAwait(baseUrl,\"验证\");\n  result=java.ajax(baseUrl);\n}\nresult\n</js>\n.SHsectionThree-middle@p",
      "bookUrl": "a.0@href",
      "kind": "span.0@text##\\[|\\]",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": ".BCsectionTwo-top li a\n@js:var list=[];\nresult.forEach(e=>{\nurl=String(e.attr('href'));\nif(url.match(/javascript/)){\turl=String(e.attr('href')).replace(/.*'(\\d+)','(\\d+)'.*/,'/book/$1/$2.html');}\n\tlist.push({\n\t\ttext:e.text(),\n\t\thref:url\n\t\t}\t)\n\t})\nlist",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "@js:\nresult=java.getString('#next@href');\njava.log(result);\nif(String(result).match(/javascript/)){\n\tresult=String(result).replace(/.*'(\\d+)','(\\d+)'.*/,'https://www.xiguashuwu4.com/book/$1/catalog/$2.html')\n\tjava.log(result);\n\tresult\n\t}else result=result"
    },
    "searchUrl": "https://www.xiguashuwu.com/search/{{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "创国漫吧（魔法）",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.guoman8.cc#Haxc1107",
    "bookUrlPattern": "http://www.guoman8.cc/\\d+/\\d+.html",
    "customButton": false,
    "customOrder": 625,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "日本::http://www.guoman8.cc/list/area-%E6%97%A5%E6%9C%AC-p-{{page}}&&港台::http://www.guoman8.cc/list/area-%E6%B8%AF%E5%8F%B0-p-{{page}}&&欧美::http://www.guoman8.cc/list/area-%E6%AC%A7%E7%BE%8E-p-{{page}}&&韩国::http://www.guoman8.cc/list/area-%E9%9F%A9%E5%9B%BD-p-{{page}}&&国产::http://www.guoman8.cc/list/area-%E5%9B%BD%E4%BA%A7-p-{{page}}&&热血::http://www.guoman8.cc/list/smid-1-p-{{page}}&&武侠::http://www.guoman8.cc/list/smid-2-p-{{page}}&&搞笑::http://www.guoman8.cc/list/smid-3-p-{{page}}&&耽美::http://www.guoman8.cc/list/smid-4-p-{{page}}&&爱情::http://www.guoman8.cc/list/smid-5-p-{{page}}&&科幻::http://www.guoman8.cc/list/smid-6-p-{{page}}&&魔法::http://www.guoman8.cc/list/smid-7-p-{{page}}&&神魔::http://www.guoman8.cc/list/smid-8-p-{{page}}&&竞技::http://www.guoman8.cc/list/smid-9-p-{{page}}&&格斗::http://www.guoman8.cc/list/smid-10-p-{{page}}&&机战::http://www.guoman8.cc/list/smid-11-p-{{page}}&&体育::http://www.guoman8.cc/list/smid-12-p-{{page}}&&运动::http://www.guoman8.cc/list/smid-13-p-{{page}}&&校园::http://www.guoman8.cc/list/smid-14-p-{{page}}&&励志::http://www.guoman8.cc/list/smid-15-p-{{page}}&&历史::http://www.guoman8.cc/list/smid-16-p-{{page}}&&伪娘::http://www.guoman8.cc/list/smid-17-p-{{page}}&&百合::http://www.guoman8.cc/list/smid-18-p-{{page}}&&后宫::http://www.guoman8.cc/list/smid-19-p-{{page}}&&治愈::http://www.guoman8.cc/list/smid-20-p-{{page}}&&美食::http://www.guoman8.cc/list/smid-21-p-{{page}}&&推理::http://www.guoman8.cc/list/smid-22-p-{{page}}&&悬疑::http://www.guoman8.cc/list/smid-23-p-{{page}}&&恐怖::http://www.guoman8.cc/list/smid-24-p-{{page}}&&职场::http://www.guoman8.cc/list/smid-25-p-{{page}}&&BL::http://www.guoman8.cc/list/smid-26-p-{{page}}&&剧情::http://www.guoman8.cc/list/smid-27-p-{{page}}&&生活::http://www.guoman8.cc/list/smid-28-p-{{page}}&&幻想::http://www.guoman8.cc/list/smid-29-p-{{page}}&&战争::http://www.guoman8.cc/list/smid-30-p-{{page}}&&仙侠::http://www.guoman8.cc/list/smid-33-p-{{page}}&&性转换::http://www.guoman8.cc/list/smid-40-p-{{page}}&&冒险::http://www.guoman8.cc/list/smid-41-p-{{page}}&&其他::http://www.guoman8.cc/list/smid-32-p-{{page}}\n完结::http://www.guoman8.cc/list/lz-2-p-{{page}}",
    "lastUpdateTime": 1733693304774,
    "respondTime": 2018,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "intro": "id.bookIntro@text",
      "kind": "[property=\"og:novel:category\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "tag.h1@text"
    },
    "ruleContent": {
      "content": "@js:\nheader={\"Referer\":baseUrl};\nheaders={\"headers\":JSON.stringify(header)};\nimgl=eval(result.match(/(eval\\(.+?\\}\\)\\))/)[1]);\n\nhost = \"http://images.720rs.com\";\nimage=cInfo.fs;\n//piclist.map(u=>\"<img src=\\\"\"+server+u+','+JSON.stringify(headers)+\"\\\">\").join(\"\\n\")\n\nhtml='';\nfunction get7ImageUrl(image) {\n    if (image.match(/^(\\/Man?)/i)) {\n        return host + image\n    } else if (image.match(/^(http?)/i)) {\n        return image\n    }\n}\nfor(i in image){\nurl=get7ImageUrl(image[i]);\nhtml+='<img src=\"'+url+','+JSON.stringify(headers)+'\">\\n'\n}\nhtml",
      "imageStyle": "FULL",
      "nextContentUrl": "",
      "webJs": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.tags.2@a@text",
      "bookList": "class.book-result@tag.li||id.contList@tag.li",
      "bookUrl": "tag.a.0@href||class.ell@href",
      "coverUrl": "img@src||tag.img@data-src",
      "intro": ".intro@span@textNodes##\\[|\\]",
      "kind": "class.red.0@text",
      "lastChapter": ".blue@text&&class.red.1@text",
      "name": "tag.a.0@title||class.bcover@title",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "-id.chpater-list-1@li@a",
      "chapterName": "span@ownText",
      "chapterUrl": "href",
      "updateTime": "i@text"
    },
    "searchUrl": "http://www.guoman8.cc/search/q_{{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "//仅供学习研究使用，请在24h内删除\n//同网址https://api.midukanshu.com/\n/**\n//目录url规则，获取目录url\thttps://api.midureader.com/fiction/book/getChaptersCdn,{\"method\": \"POST\",\"body\": \"app=midu&lastUpdatedTime=&bookId={{$.book_id}}\"}\n//目录列表规则，获取目录列表\n$..url\n<js>\nurl=String(result).match(/\"(.*)\"/) [1].replace(/\\\\/g,'').trim();\njava.ajax(url)\n//java.log(url)\n</js>\n$.[*]\n*/",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🌙 米读小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://api.midureader.com/##@遇知",
    "customButton": false,
    "customOrder": 626,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort = [];\npush = (title, url, type) => sort.push({\n    title: title,\n    url: url,\n    style: {\n        layout_flexGrow: 1,\n        layout_flexBasisPercent: type\n    }\n});\n$$ = (second_channel, status) => `/fiction/search/channel,{\"method\": \"POST\",\"body\": \"app=midu&second_channel=${second_channel}&status=${status}&page={{page-1}\\}&rank=\"}`;\n[\n    [\n        [\"玄幻\", 3],\n        [\"都市\", 5],\n        [\"推理\", 7],\n        [\"仙侠\", 15],\n        [\"科幻\", 27],\n        [\"游戏\", 30],\n        [\"武侠\", 32],\n        [\"历史\", 35],\n        [\"奇幻\", 39],\n        [\"军事\", 93],\n        [\"体育\", 47],\n        [\"现实\", 79],\n        [\"同人\", 61]\n    ],\n    [\n        [\"现代言情\", 13],\n        [\"古代言情\", 17],\n        [\"悬疑刑侦\", 24],\n        [\"玄幻仙侠\", 41],\n        [\"青春校园\", 51],\n        [\"同人小说\", 68],\n        [\"科幻空间\", 78],\n        [\"游戏竞技\", 95]\n    ]\n].map((Arr, isN) => {\n    push(\"༺ˇ»`ʚ \" + (isN ? \"女\" : \"男\") + \"频 ɞ´«ˇ༻\", null, 1);\n    Arr.map([title, second_channel] => {\n        [\"[\" + title + \"]\", \"完结\", \"连载\"].map((title, status) => {\n            push(title, $$(second_channel, status), 0.25);\n        });\n    });\n});\nJSON.stringify(sort);",
    "header": "{\"User-Agent\":\"okhttp/3.12.1\"}",
    "lastUpdateTime": 1753709894395,
    "respondTime": 1388,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$..cover",
      "init": "$.data",
      "intro": "🏅 评分：{{$.score}}分\n🔥 热度：{{$.hot}}{{$.hotLabel}}\n🎗 标签：{{$..name##\\s##，}}\n🕰 更新时间：{{$.updateStatus}}\n📂 简介：{{$..description}}##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "{{java.getString('$.end_status')=='1'?'完结':'连载'}}\n{{$.category}}\n{{$.score}}分",
      "name": "$.title",
      "tocUrl": "@js:\ntry{\n\"https://book.midureader.com/book/chapter_list/100/{{$.book_id}}.txt\"\n}\ncatch(e){\n\t\"https://book-spare.midureader.com/book/chapter_list/100/{{$.book_id}}.txt\"\n\t}",
      "wordCount": "$.word_count"
    },
    "ruleContent": {
      "content": "$..content\n@js:\n   if(result!=\"\"){\tresult}\n      else{java.ajax(baseUrl)}"
    },
    "ruleExplore": {
      "author": "$..leftTags..text## · .*",
      "bookList": "$.data[*]",
      "bookUrl": "https://api.midureader.com/fiction/book/getDetail,{\n  \"method\": \"POST\",\n  \"body\": \"app=midu&book_id={{$..book_id}}\"\n}\n##(getBrief||getDetail)选用其中之一",
      "coverUrl": "$.cover",
      "intro": "$.description",
      "kind": "{{$..leftTags..text##·|\\d.*}}##.*\\s",
      "name": "$..title",
      "wordCount": "$..leftTags..text##.*·"
    },
    "ruleSearch": {
      "author": "$.author||$..emAuthor",
      "bookList": "$.data[*]",
      "bookUrl": "https://api.midureader.com/fiction/book/getDetail,{\n  \"method\": \"POST\",\n  \"body\": \"app=midu&book_id={{$..book_id}}\"\n}\n##(getBrief||getDetail)选用其中之一",
      "checkKeyWord": "斗破苍穹",
      "coverUrl": "$..cover",
      "intro": "$..description",
      "kind": "{{java.getString('$.end_status')=='1'?'完结':'连载'}}\n{{$.category}}\n{{$..name##\\s.*}}\n{{$.score}}分",
      "name": "$..title",
      "wordCount": "$.word_count"
    },
    "ruleToc": {
      "chapterList": "$.[*]",
      "chapterName": "$.title",
      "chapterUrl": "@js:\ntry{\n\"https://book.midureader.com/book/chapter/segment/master/{{$.bookId}}/{{$.chapterId}}/{{$.content_md5}}.txt\"\n}\ncatch(e){\n\t\"https://book.midureader.com/book/chapter/master/{{$.bookId}}_{{$.chapterId}}.txt\"\n\t}"
    },
    "searchUrl": "@js:\nvar option = {   \n        \"method\": \"POST\",\n        \"body\": \"app=midu&keyword={{key}}&page={{page-1}}\"\n    };\ntry{\n\trun;\n\t\n\"https://api.midureader.com/fiction/search/search,\"+ JSON.stringify(option)\n}\ncatch(e){\n\t\"https://api.midureader.com/fiction/search/searchV2,\"+ JSON.stringify(option)\n\t}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "PO文屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.powenwu1.com/##ʕ ᵔᴥᵔ ʔ喜静",
    "customButton": false,
    "customOrder": 627,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"耽美小说\",\"url\":\"/list/1-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"百合小说\",\"url\":\"/list/2-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"言情小说\",\"url\":\"/list/3-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"高辣文\",\"url\":\"/list/4-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"腹黑小说\",\"url\":\"/list/5-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"种田文\",\"url\":\"/list/6-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"高干文\",\"url\":\"/list/7-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"玄幻小说\",\"url\":\"/list/8-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"修真小说\",\"url\":\"/list/9-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"其他小说\",\"url\":\"/list/10-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"武侠小说\",\"url\":\"/list/11-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"都市小说\",\"url\":\"/list/12-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"科幻小说\",\"url\":\"/list/13-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"网游小说\",\"url\":\"/list/14-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"恐怖小说\",\"url\":\"/list/15-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"历史小说\",\"url\":\"/list/16-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"同人小说\",\"url\":\"/list/17-1{{(page-1)*30}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1785891557643,
    "respondTime": 7678,
    "ruleBookInfo": {
      "author": "h3@a@text",
      "coverUrl": "{{$.coverUrl}}http://u3v.cn/5zBiW8",
      "init": "class.pannel-body info",
      "intro": "p@text",
      "name": "class.text-center@text"
    },
    "ruleContent": {
      "content": ".content-ext@textNodes"
    },
    "ruleExplore": {
      "bookList": "class.col-sm-index",
      "bookUrl": "a.1@href",
      "coverUrl": "{{$.coverUrl}}http://u3v.cn/5zBiW8",
      "intro": "p@text",
      "name": "a.1@text"
    },
    "ruleSearch": {
      "author": "a.1@text",
      "bookList": ".bookcon@tr!0",
      "bookUrl": "a.0@href",
      "coverUrl": "{{$.coverUrl}}http://u3v.cn/5zBiW8",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": ".list-charts@ul@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://www.powenwu1.com/modules/article/search.php,{\n  \"body\": \"searchkey={{key}}\",\n  \"charset\": \"GBK\",\n  \"method\": \"POST\",\n  \"webView\": true\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "新人漫画",
    "bookSourceType": 2,
    "bookSourceUrl": "https://xapi.xinmanhua.net",
    "concurrentRate": "5",
    "customButton": false,
    "customOrder": 628,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全部::https://xapi.xinmanhua.net/search/catalog?keyword=all&ischarge=2&isfinish=2&order=0&page={{page}}\n治愈::https://xapi.xinmanhua.net/search/catalog?keyword=治愈&page={{page}}\n日常::https://xapi.xinmanhua.net/search/catalog?keyword=日常&page={{page}}\n都市::https://xapi.xinmanhua.net/search/catalog?keyword=都市&page={{page}}\n悬疑::https://xapi.xinmanhua.net/search/catalog?keyword=悬疑&page={{page}}\n科幻::https://xapi.xinmanhua.net/search/catalog?keyword=科幻&page={{page}}\n奇幻::https://xapi.xinmanhua.net/search/catalog?keyword=奇幻&page={{page}}\n热血::https://xapi.xinmanhua.net/search/catalog?keyword=热血&page={{page}}\n武侠::https://xapi.xinmanhua.net/search/catalog?keyword=武侠&page={{page}}\n古风::https://xapi.xinmanhua.net/search/catalog?keyword=古风&page={{page}}\n恋爱::https://xapi.xinmanhua.net/search/catalog?keyword=恋爱&page={{page}}\n少年::https://xapi.xinmanhua.net/search/catalog?keyword=少年&page={{page}}\n日漫::https://xapi.xinmanhua.net/search/catalog?keyword=日漫&page={{page}}\n原创::https://xapi.xinmanhua.net/search/catalog?keyword=原创&page={{page}}",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; wv) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1786691233958,
    "respondTime": 1413,
    "ruleBookInfo": {
      "author": "[property$=author]@content||.row a.0@text",
      "coverUrl": "[property$=image]@content||img@src",
      "intro": "@JSon:$.data.attributes.intro&&$.data.attributes.description",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content||.col-md-8.1@text",
      "name": "[property$=book_name]@content||h1@text"
    },
    "ruleContent": {
      "content": "$.data[*].attributes.url\n@js:list=result.split('\\n');\nlist.map(x=>'<img src=\"'+x+'\">').join('\\n')",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "@JSon:$.attributes.author",
      "bookList": "@JSon:$.data.*",
      "bookUrl": "https://xapi.xinmanhua.net/worksinfos/{$.attributes.wid}?include=chapters.digests",
      "coverUrl": "@JSon:$.attributes.logo_detail",
      "kind": "@JSon:$.attributes.workscate",
      "lastChapter": "@JSon:$.attributes.lastctitle",
      "name": "@JSon:$.attributes.title"
    },
    "ruleToc": {
      "chapterList": "$.included.*",
      "chapterName": "$.attributes.title&&$.attributes.intro",
      "chapterUrl": "https://xapi.xinmanhua.net/chapters/{$.id}/qualitywebs"
    },
    "searchUrl": "https://xapi.xinmanhua.net/search/selfdefine,{\n  \"method\": \"POST\",\n  \"body\": \"keyword={{key}}&page={{page}}\"\n}",
    "weight": 1
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "冰清阁小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.bqgcq.com/",
    "customButton": false,
    "customOrder": 629,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1765459827858,
    "respondTime": 14037,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:novel:update_time\"]@content&&\n[property=\"og:description\"]@content@js:'更新时间：'+result",
      "kind": "[property~=category|status|tags]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "#nr1@p@text",
      "nextContentUrl": "script@html##(http[^\"]+page[^\"]+)##$1###",
      "replaceRegex": "##.*牢记网址:.*|本章未完.*"
    },
    "ruleSearch": {
      "author": ".s3@text",
      "bookList": ".lis li",
      "bookUrl": "a@href",
      "coverUrl": "a@href##(\\d+)_(\\d+)/##http://img.bqgcn.com/$1/$2/$2s.jpg",
      "kind": ".s1@text##\\[|\\]",
      "name": "a@text"
    },
    "ruleToc": {
      "chapterList": ".chapter[1]@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value"
    },
    "searchUrl": "@js:\nvar html = java.ajax(source.key);\nvar token = html.match(/name=\"_token\" value=\"(.+?)\"/);  \ntoken = token ? token[1] : null;\njava.log(token);\n\nvar body = `_token=${token}&kw=${key}&action=login`;\nvar option = { \n  \"charset\": \"utf-8\",\n  \"method\": \"POST\",\n  \"body\": body\n};\nsource.key + \"search,\" + JSON.stringify(option);",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "零点看书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.chensiwx.com",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 630,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "@js:\n  sort = [];\n  push = (title, url, type) =>  \n    sort.push({\n      title: title,\n      url: url,\n      style: {\n          layout_flexGrow: 1,\n          layout_flexBasisPercent: type\n       }\n     });\n     push(\"༺ˇ»`ʚ最近更新ɞ´«ˇ༻\", \"\", \"1\")\n  url = source.getKey();\n  o = org.jsoup.Jsoup.parse(java.ajax(url));\n  s = o.select('ul[class=\"nav\"] a');\n  for(i in s){\n    if(i >= 3 && i <= 8){\n      u = String(s[i].attr(\"href\")).replace(/\\d+\\.html/,\"{{page}}.html\");\n        push(s[i].text(), u, \"0.25\")\n      }else if(i > 8 && i != 12){\n      \tt = s[i].text()\n      \tt1 = \"༺ˇ»`ʚ\" + t + \"ɞ´«ˇ༻\";\n      \tpush(t1,s[i].attr(\"href\"),\"1\")\n      \t}\n   };\n JSON.stringify(sort);",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; U; Android 13; zh-Hans-CN; PFJM10 Build/TP1A.220905.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/100.0.4896.58 Quark/6.13.6.581 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1774857468301,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 7378,
    "ruleBookInfo": {
      "author": "a",
      "canReName": "",
      "coverUrl": "c",
      "init": "@js:\nX = (x) => java.getString(x);\n({\n    n: X(\"[property$=book_name]@content\"),\n    a: X(\"[property$=author]@content\"),\n    k: X(\"[property~=category|status|update_time]@content\"),\n    l: X(\"[property~=las?test_chapter_name]@content\"),\n    i: X(\"[property$=description]@content\\#\\#{{book.name}}|《|》|简介：\"),\n    c: X(\"[property$=image]@content\")\n});",
      "intro": "i",
      "kind": "k",
      "lastChapter": "l",
      "name": "n",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "#content@html##第([\\s\\S]*?)\\)|（本章未完，请点击下一页继续阅读）|{{chapter.title}}",
      "imageStyle": "",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".s4@text",
      "bookList": ".txt-list li!0",
      "bookUrl": ".s2 a@href",
      "coverUrl": ".s2 a@href##.*/(\\d+)(\\d{3})/##http://www.chensiwx.com/files/article/image/$1/$1$2/$1$2s.jpg",
      "intro": "",
      "kind": ".s1@text&&.s5@text##\\[|\\]",
      "lastChapter": ".s3@text",
      "name": ".s2@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": ".section-list.fix li",
      "chapterName": "{{@@tag.a@text}}\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求含理更谢乐发推票盟补加字Kk\\/].*/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "chapterUrl": "a@href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "text.下一页@href",
      "updateTime": ""
    },
    "searchUrl": "{{url=source.getKey();\ncookie.removeCookie(url);\njava.ajax(url).match(/action=\"(.+?)\"/)[1]}}?keyWord={{key}}",
    "variableComment": "",
    "weight": 0
  },
  {
    "bookSourceComment": "刚够小说网",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "刚够小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.ganggou.net/",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 631,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Mobile Safari/537.36\",\n  \"Referer\": \"{{baseUrl}}\",\n  \"Accept-Language\": \"zh-CN,zh;q=0.9,en;q=0.8\"\n}",
    "jsLib": "",
    "lastUpdateTime": 1777305576624,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 46836,
    "ruleBookInfo": {
      "author": "meta[property=og:novel:author]@content",
      "coverUrl": "meta[property=og:image]@content",
      "intro": "meta[property=og:description]@content",
      "kind": "meta[property=og:novel:category]@content",
      "lastChapter": "meta[property=og:novel:latest_chapter_name]@content",
      "name": "meta[property=og:novel:book_name]@content",
      "tocUrl": "link[rel=canonical]@href##https?://www\\.(ganggou\\.net/\\d+)/?$##https://m.$1/index.html"
    },
    "ruleContent": {
      "content": "#nr1@html",
      "imageDecode": "",
      "imageStyle": "",
      "nextContentUrl": "a:contains(下一页)@href##$##",
      "payAction": "",
      "replaceRegex": "##本章未完.*继续阅读|一秒记住.*免费读！|.*当前浏览器转码失败.*|m\\\\.[a-zA-Z\\\\d]+\\\\.[a-zA-Z\\\\d]+|",
      "sourceRegex": "",
      "title": "",
      "webJs": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author a@text||.author@text",
      "bookList": ".searchresult .sone",
      "bookUrl": "a@href##.*'(/\\d+/)'.*##$1",
      "checkKeyWord": "无尽海洋",
      "kind": "class.author.-1@text",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": "#listchapter dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href##$##"
    },
    "searchUrl": "https://m.ganggou.net/modules/article/search.php?searchkey={{key}}&an=%E6%90%9C%E7%B4%A2&type=articlename,{\"js\":\"let encryptedCookieValue = java.ajax(java.url).match(/encryptedCookieValue = \\\"([^\\\"]+)\\\"/)[1];java.headerMap.put('Cookie', 'is_human='+encryptedCookieValue);java.url\"}",
    "variableComment": "",
    "weight": 0
  },
  {
    "bookSourceComment": "目录下一页循环\n250223by= =",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "以太小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.ethxs.com",
    "bookUrlPattern": "https://m.ethxs.com/article/\\d+/",
    "customButton": false,
    "customOrder": 633,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "言情更新::/fenlei/lastupdate_8_0_0_{{page}}.html\n言情完结::/fenlei/lastupdate_8_0_2_{{page}}.html\n全部完结::/fenlei/lastupdate_0_0_2_{{page}}.html\n玄幻完结::/fenlei/lastupdate_1_0_2_{{page}}.html\n穿越完结::/fenlei/lastupdate_2_0_2_{{page}}.html\n都市完结::/fenlei/lastupdate_3_0_2_{{page}}.html",
    "lastUpdateTime": 1784775476561,
    "respondTime": 39143,
    "ruleBookInfo": {
      "author": "[property~=author]@content",
      "coverUrl": "img.0@src",
      "intro": "[property~=descr]@content",
      "kind": "[property~=category|status|update_time]@content##\\s.*",
      "lastChapter": "[property~=chapter_name]@content",
      "name": "[property~=title]@content"
    },
    "ruleContent": {
      "content": ".txt@html##<img.*>|一秒记住新域名.*|请勿开启浏览器.*"
    },
    "ruleExplore": {
      "author": ".s4@text",
      "bookList": ".sort_list@li",
      "bookUrl": ".s2@a@href",
      "intro": ".s5@text",
      "kind": ".s1@text##\\[|\\]",
      "lastChapter": ".s2@a@title##最新章节：",
      "name": ".s2@text"
    },
    "ruleSearch": {
      "author": ".s5@text",
      "bookList": ".sort_list@li",
      "bookUrl": ".s2@a@href",
      "checkKeyWord": "https://m.ethxs.com/article/42076/",
      "lastChapter": ".s2@a@text",
      "name": ".s2@text"
    },
    "ruleToc": {
      "chapterList": ".chapter-list.-1@li@a",
      "chapterName": "text",
      "chapterUrl": "href##$##,{\"webView\": true}",
      "nextTocUrl": "text.章节目录@href||text.下一页@href\n<js>\na=java.getElements(\"@@class.chapter-list.-1@li@a\");\nb=a.length;\njava.log(b);\nif(a.length==100){}else{result=\"\"};\nresult\n</js>"
    },
    "searchUrl": "/search.html,{\n\t\"body\": \"s={{key}}\",\n\t\"method\": \"POST\",\n  \"charset\": \"UTF-8\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "/*\n\t作者：明月照大江\n\t提醒：此书源为免费制作并分享\n\t更新地址：https://skybook.pages.dev\n*/",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "69書吧",
    "bookSourceType": 0,
    "bookSourceUrl": "https://no.skybook.qzz.io",
    "customButton": false,
    "customOrder": 634,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "jsLib": "const backend = \"https://no.skybook.qzz.io\";\n\n;(function _0xc1dadd(_0x6d1d5e,_0x102981,_0xcb9c18,_0xb33a76,_0xea6dcc,_0xfe42ce,_0x3ac3c1,_0xfcd851,_0x6ddc3e,_0x735532,_0x663448,_0x84a3ad,_0xa14849){return _0xa14849=function(_0x817fb0,_0x165667){var _0xd53076=_0x817fb0^_0x165667,_0x69d1a5=_0x102981[_0xd53076],_0x85baae=66666-_0xd53076,_0x167527=[],_0xa34954=_0x84a3ad[_0x85baae];if(_0xa34954!==void 0)return _0xa34954;for(var _0x9df5d2=0;_0x9df5d2<_0x69d1a5.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068;)_0x3ac3c1(_0x167527,_0x69d1a5[_0x9df5d2]-_0x9df5d2++-_0x165667);return _0x84a3ad[_0x85baae]=_0x6ddc3e(_0x167527);},function _0xeab7ca(_0xdb8fd4,_0x884db5,_0xbe8349,_0xaa352f,_0x4609b7){_0x884db5=_0x884db5||[],_0xbe8349=_0xbe8349||[],_0xaa352f=_0xaa352f||[];for(var _0x5a5ab4=_0xbe8349.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068,_0xe38576,_0x9d5bf1;_0x9d5bf1=_0x6d1d5e[_0xdb8fd4++];)if(66<_0x9d5bf1){if(++_0x9d5bf1<101){if(85>_0x9d5bf1){if(76<_0x9d5bf1){if(81>_0x9d5bf1){if(--_0x9d5bf1>77)78>--_0x9d5bf1&&(_0xbe8349[--_0x5a5ab4- --_0x9d5bf1+(\"\u2029\",75)]=_0xbe8349[--_0x5a5ab4+ ++_0x9d5bf1-77][_0xbe8349[++_0x5a5ab4-_0x9d5bf1++ +77]],!false)||(_0xbe8349[_0x5a5ab4++ + ++_0x9d5bf1-80]=_0xbe8349[--_0x5a5ab4+--_0x9d5bf1-79]===_0x6d1d5e[_0xdb8fd4++]-(_0x9d5bf1--+12838+_0xdb8fd4));else if(_0x9d5bf1<77)try{var _0xc02636=_0xbe8349[_0x5a5ab4+ ++_0x9d5bf1-81],_0x88d103=_0xbe8349[_0x5a5ab4-- -3],_0x39ca4b=_0xbe8349[_0x5a5ab4-- -++_0x9d5bf1+77],_0xffae25=_0xbe8349[(_0x5a5ab4-=2)+_0x9d5bf1++-75],_0xdb074e={\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033:1},_0xa34954=_0xeab7ca(_0xdb8fd4,_0x884db5,[],_0xaa352f,_0xdb074e);if(_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033)return _0xa34954;if(_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064!==void 0)if(_0xc02636=_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064,_0xdb074e.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030>1)return _0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064=_0xc02636,_0x4609b7.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030=--_0xdb074e.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030,_0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033=0;}catch(_0xe10908){_0x884db5[_0xffae25]=_0xe10908,_0xdb074e={\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033:1},_0xa34954=_0xeab7ca(_0x88d103,_0x884db5,[],_0xaa352f,_0xdb074e);if(_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033)return _0xa34954;if(_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064!==void 0)if(_0xc02636=_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064,_0xdb074e.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030>1)return _0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064=_0xc02636,_0x4609b7.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030=--_0xdb074e.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030,_0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033=0;}finally{_0xdb074e={\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033:1},_0xa34954=_0xeab7ca(_0x39ca4b,_0x884db5,[],_0xaa352f,_0xdb074e);if(_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033)return _0x4609b7&&(_0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033=1),_0xa34954;if(_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064!==void 0){if(_0xc02636=_0xdb074e.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064,_0xdb074e.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030>1)return _0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0066\\u0035\\u0036\\u0066\\u0064=_0xc02636,_0x4609b7.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030=--_0xdb074e.\\u005f\\u0030\\u0078\\u0032\\u0036\\u0034\\u0063\\u0062\\u0030,_0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033=0;return _0xeab7ca(_0xc02636,_0x884db5,[],_0xaa352f,_0x4609b7);}_0xdb8fd4=_0xc02636;}else _0xbe8349[_0x5a5ab4++-_0x9d5bf1+(\"\u2028\",75)]=_0xbe8349[++_0x5a5ab4+_0x9d5bf1-(\"\u2029\",81)]===_0xbe8349[(_0x5a5ab4-=3)-_0x9d5bf1++ +(\"\u2028\",77)];}else _0x9d5bf1<83&&((81>--_0x9d5bf1||(_0xbe8349[(_0x5a5ab4-=++_0x9d5bf1)+80]-=_0x884db5[_0xbe8349[(_0x5a5ab4+=81)+--_0x9d5bf1-81]],!1))&&(_0xbe8349[_0x5a5ab4++]=_0x6d1d5e[_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-- -80]=!!null,_0xdb8fd4++]-(-++_0x9d5bf1+33691+_0xdb8fd4)),!0)||(84<++_0x9d5bf1||(_0xbe8349[_0x5a5ab4++-_0x9d5bf1+84]=!1,void 0))&&(_0xbe8349[(_0x5a5ab4-=2)-_0x9d5bf1++ +85]||(_0xdb8fd4=_0xbe8349[_0x5a5ab4++-_0x9d5bf1++ +87]));}else(72<_0x9d5bf1||((69<--_0x9d5bf1||(_0x9d5bf1<69&&(_0x9d5bf1>67&&(_0xbe8349[--_0x5a5ab4+_0x9d5bf1++-(\"\u2029\",70)]^=_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+67][_0xbe8349[(_0x5a5ab4-=2)+1]],!0)||(_0xbe8349[++_0x5a5ab4-_0x9d5bf1+66]=_0xa14849(_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+(\"\u2029\",16450)+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^_0x9d5bf1++ +(\"\u2028\",43602)+_0xdb8fd4)),{})||(_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+67]=_0x884db5[_0xbe8349[_0x5a5ab4-- -_0x9d5bf1++ +66]]=_0x6d1d5e[_0xdb8fd4++]-(-++_0x9d5bf1+2256+_0xdb8fd4)),!1))&&(_0x9d5bf1<71&&(_0xbe8349[++_0x5a5ab4- --_0x9d5bf1+(\"\u2028\",68)]=_0x6d1d5e[_0xbe8349[++_0x5a5ab4+_0x9d5bf1++-70]={},_0xdb8fd4++]-(_0x9d5bf1+37201+_0xdb8fd4),[])||(_0xbe8349[_0x5a5ab4++-++_0x9d5bf1+72]=\\u004a\\u0053\\u004f\\u004e)),!{}))&&(75<++_0x9d5bf1&&((77>_0x9d5bf1||(_0xbe8349[_0x5a5ab4-_0x9d5bf1+78]=_0xa14849(_0x6d1d5e[_0xbe8349[(_0x5a5ab4+=2)-_0x9d5bf1++ +75]=_0x6d1d5e[_0xdb8fd4++]-(-++_0x9d5bf1+(\"\u2029\",48504)+_0xdb8fd4),_0xdb8fd4++]^-_0x9d5bf1+54257+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1+(\"\u2029\",1176)+_0xdb8fd4),0))&&(_0xbe8349[++_0x5a5ab4+_0x9d5bf1++-77]=[]),true)||_0x9d5bf1>74&&(_0xbe8349[_0x5a5ab4++ + ++_0x9d5bf1-76]=\\u0044\\u0061\\u0074\\u0065,[])||(_0xbe8349[++_0x5a5ab4-_0x9d5bf1+73]=_0x884db5[_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+13573+_0xdb8fd4]++));}else(_0x9d5bf1>92||((--_0x9d5bf1<88||((_0x9d5bf1<90||(_0x9d5bf1>90&&(_0xbe8349[(_0x5a5ab4-=_0x9d5bf1--)+86]=_0xfe42ce(_0xbe8349[++_0x5a5ab4-_0x9d5bf1--+176],_0xbe8349[_0x5a5ab4-_0x9d5bf1+174],_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+175],_0xbe8349[_0x5a5ab4-_0x9d5bf1++ +175],_0x884db5[_0xbe8349[(_0x5a5ab4+=85)-_0x9d5bf1++ +92]])()(),![][0])||(_0xbe8349[--_0x5a5ab4+_0x9d5bf1-- -90]=_0x884db5[_0xbe8349[_0x5a5ab4++-_0x9d5bf1+89]]=_0xa14849(_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1--+10400+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1--+2094+_0xdb8fd4)),void 0))&&(--_0x9d5bf1<88||(_0xbe8349[_0x5a5ab4+_0x9d5bf1-90]^=_0xbe8349[--_0x5a5ab4+_0x9d5bf1-- -(\"\u2029\",88)],0))&&(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-- -87]=\\u0050\\u0061\\u0063\\u006b\\u0061\\u0067\\u0065\\u0073),null))&&(_0x9d5bf1++>85&&(_0x9d5bf1<88&&(--_0x5a5ab4,!0)||(_0xbe8349[(_0x5a5ab4-=++_0x9d5bf1)+87]+=_0x884db5[_0xbe8349[(_0x5a5ab4+=88)-_0x9d5bf1+(\"\u2029\",89)]]),{})||(85<_0x9d5bf1||(_0xbe8349[_0x5a5ab4++ +--_0x9d5bf1-84]=\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074,!1))&&(_0xbe8349[_0x5a5ab4-- -(\"\u2028\",3)][_0xbe8349[(_0x5a5ab4+=++_0x9d5bf1)-88]]=_0xbe8349[(_0x5a5ab4-=89)-_0x9d5bf1++ +89])),[][0]))&&(96<_0x9d5bf1&&((99>_0x9d5bf1||(--_0x9d5bf1<99&&(_0xbe8349[--_0x5a5ab4+--_0x9d5bf1-99]=_0x884db5[_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+94]]=_0xbe8349[--_0x5a5ab4+--_0x9d5bf1-96][_0xbe8349[_0x5a5ab4-- -++_0x9d5bf1+96]],!\"\")||(_0xbe8349[++_0x5a5ab4-1]=!_0xa14849(_0x6d1d5e[_0xdb8fd4++]^--_0x9d5bf1+58417+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+(\"\u2028\",11476)+_0xdb8fd4)),!1))&&(_0x9d5bf1<98&&(_0xbe8349[_0x5a5ab4-- -++_0x9d5bf1+97]=_0xbe8349[_0x5a5ab4++]!=_0x102981[_0x6d1d5e[_0xdb8fd4++]^31217+_0xdb8fd4],![][0])||(_0x884db5[_0xbe8349[(_0x5a5ab4-=85)+ ++_0x9d5bf1-16]]=_0xbe8349[(_0x5a5ab4+=83)+_0x9d5bf1-98])),1)||_0x9d5bf1>94&&((_0x9d5bf1<96||(_0xbe8349[_0x5a5ab4-1]%=_0x6d1d5e[_0xdb8fd4++]-(++_0x9d5bf1+(\"\u2028\",60134)+_0xdb8fd4),!true))&&(_0xbe8349[(_0x5a5ab4+=114)-_0x9d5bf1++-18]=_0x6d1d5e[_0xbe8349[(_0x5a5ab4-=112)-_0x9d5bf1+94]=_0x6d1d5e[_0xdb8fd4++]-(_0x9d5bf1+54763+_0xdb8fd4),_0xdb8fd4++]^-_0x9d5bf1--+58958+_0xdb8fd4),1)||++_0x9d5bf1<95&&(_0xbe8349[_0x5a5ab4- --_0x9d5bf1+92]/=_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1++ +51522+_0xdb8fd4),![][0])||(_0xbe8349[++_0x5a5ab4- --_0x9d5bf1+91]=_0xbe8349[(_0x5a5ab4+=++_0x9d5bf1)-98]==!_0xbe8349[(_0x5a5ab4-=97)+ ++_0x9d5bf1-96]));}else(_0x9d5bf1-->116||(_0x9d5bf1<108&&(104>_0x9d5bf1&&((_0x9d5bf1>101||((_0x9d5bf1>100||(_0xbe8349[(_0x5a5ab4-=_0x9d5bf1)+98]=_0xaa352f[_0xaa352f.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068-_0xbe8349[_0x5a5ab4--+_0x9d5bf1-- -(\"\u2029\",1)]][_0xbe8349[(_0x5a5ab4+=100)+ ++_0x9d5bf1-101]],!{}))&&(_0xbe8349[_0xdb8fd4++,--_0x5a5ab4-_0x9d5bf1--+101]||(_0xdb8fd4=_0x6d1d5e[--_0xdb8fd4]^_0x9d5bf1+2184+ ++_0xdb8fd4)),![]))&&(--_0x9d5bf1>101&&(_0xbe8349[++_0x5a5ab4+_0x9d5bf1-- -103]=!false,!\"\")||(_0xbe8349[_0x5a5ab4+_0x9d5bf1-- -104]=_0xb33a76(_0xbe8349[(_0x5a5ab4+=_0x9d5bf1--)-102],_0xbe8349[_0x5a5ab4++-++_0x9d5bf1-3])(_0xbe8349[(_0x5a5ab4-=103)+_0x9d5bf1++-99]))),1)||(106>_0x9d5bf1||(107>_0x9d5bf1&&(_0xbe8349[_0x5a5ab4--+_0x9d5bf1-107]=_0xbe8349[_0x5a5ab4++ +_0x9d5bf1++-(\"\u2028\",106)]===_0x102981[_0x6d1d5e[_0xdb8fd4++]^32655+_0xdb8fd4],!\"\")||(_0xbe8349[_0x5a5ab4++]=\\u0052\\u0065\\u0067\\u0045\\u0078\\u0070),!1))&&(_0x9d5bf1>104||(_0xbe8349[++_0x5a5ab4+_0x9d5bf1-- -109]=_0xb33a76(_0xbe8349[(_0x5a5ab4-=83)+_0x9d5bf1-- -(\"\u2028\",24)],_0xbe8349[(_0x5a5ab4+=_0x9d5bf1--)-24])(_0xbe8349[(_0x5a5ab4-=25)-_0x9d5bf1+104],_0xbe8349[(_0x5a5ab4+=2)+--_0x9d5bf1-98]),null))&&(_0xbe8349[_0x5a5ab4--+ ++_0x9d5bf1-(\"\u2029\",115)]=function(_0xe6200c,_0xc28c3c,_0x703384,_0x4650f1,_0x4978ae,_0xee39c9,_0xdcdbe1,_0xce4e0e,_0xdeecbe,_0xa6c27e,_0x605728){return _0xa6c27e=_0xfcd851(_0xaa352f,[_0x884db5]),_0x605728=function _0x605728(){var _0x8f0eac=\\u0061\\u0072\\u0067\\u0075\\u006d\\u0065\\u006e\\u0074\\u0073.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068>_0xce4e0e.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068?_0xce4e0e.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068:\\u0061\\u0072\\u0067\\u0075\\u006d\\u0065\\u006e\\u0074\\u0073.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068,_0x5c6dc4=[];for(var _0x9df5d2=0;_0x9df5d2<_0x8f0eac;_0x9df5d2++)_0x5c6dc4[_0xce4e0e[_0x9df5d2]]=\\u0061\\u0072\\u0067\\u0075\\u006d\\u0065\\u006e\\u0074\\u0073[_0x9df5d2];return _0xdcdbe1&&function(_0xbe8349,_0x5a5ab4){try{for(_0x5a5ab4=0;_0x5a5ab4<_0x8f0eac;_0x5a5ab4++)(function(_0x5a5ab4,_0x9d5bf1){_0x735532(_0xbe8349,_0x5a5ab4,{\\u0067\\u0065\\u0074:function(){return _0x5c6dc4[_0x9d5bf1];},\\u0073\\u0065\\u0074:function(_0xbe8349){_0x5c6dc4[_0x9d5bf1]=_0xbe8349;},\\u0063\\u006f\\u006e\\u0066\\u0069\\u0067\\u0075\\u0072\\u0061\\u0062\\u006c\\u0065:!0});})(_0x5a5ab4,_0xce4e0e[_0x5a5ab4]);}catch(_0xe10908){}}(_0x5c6dc4[_0xc28c3c]=\\u0061\\u0072\\u0067\\u0075\\u006d\\u0065\\u006e\\u0074\\u0073),_0xee39c9&&(_0x5c6dc4[_0xe6200c]=this),_0x703384&&_0x735532(_0x5c6dc4,_0x4978ae,{\\u0076\\u0061\\u006c\\u0075\\u0065:_0x605728,\\u0077\\u0072\\u0069\\u0074\\u0061\\u0062\\u006c\\u0065:!1}),_0xeab7ca(_0x4650f1,_0x5c6dc4,[],_0xa6c27e);},function(){try{_0x735532(_0x605728,\"length\",{\\u0076\\u0061\\u006c\\u0075\\u0065:_0xdeecbe,\\u0063\\u006f\\u006e\\u0066\\u0069\\u0067\\u0075\\u0072\\u0061\\u0062\\u006c\\u0065:!0});}catch(_0xe10908){}}(),_0x605728;}(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-109],_0xbe8349[_0x5a5ab4-6],_0xbe8349[--_0x5a5ab4-_0x9d5bf1++ +104],_0xbe8349[--_0x5a5ab4+_0x9d5bf1-114],_0xbe8349[--_0x5a5ab4+ ++_0x9d5bf1-107],_0xbe8349[++_0x5a5ab4+--_0x9d5bf1-110],_0xbe8349[(_0x5a5ab4+=9)+ ++_0x9d5bf1-(\"\u2028\",122)],_0xbe8349[_0x5a5ab4-_0x9d5bf1+93],_0xbe8349[(_0x5a5ab4-=15)-++_0x9d5bf1+116])),!\"\")||(111<_0x9d5bf1||(110>_0x9d5bf1&&(109>_0x9d5bf1&&(_0xbe8349[_0x5a5ab4-- -_0x9d5bf1+106]=_0xbe8349[(_0x5a5ab4-=11)+_0x9d5bf1++-98]===_0x884db5[_0xbe8349[_0x5a5ab4+=11]],!0)||_0xbe8349[(_0x5a5ab4-=2)-_0x9d5bf1++ +109]&&(_0xdb8fd4=_0xbe8349[_0x5a5ab4++-_0x9d5bf1--+111]),!false)||(--_0x9d5bf1>109||(_0xbe8349[_0x5a5ab4--+_0x9d5bf1-111]=_0xbe8349[--_0x5a5ab4-_0x9d5bf1--+109]!=_0xbe8349[_0x5a5ab4++-_0x9d5bf1++ +109],void 0))&&(_0xbe8349[_0x5a5ab4++]=null),!1))&&(_0x9d5bf1>113||(_0x9d5bf1>112&&(_0xbe8349[_0x5a5ab4++ +--_0x9d5bf1-112]=_0x884db5[_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1+14042+_0xdb8fd4],![][0])||(_0xbe8349[(_0x5a5ab4-=94)+ ++_0x9d5bf1-(\"\u2028\",21)]=_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+204][_0xbe8349[(_0x5a5ab4+=92)+--_0x9d5bf1-111]]=_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1+(\"\u2028\",44867)+_0xdb8fd4)),null))&&(113<--_0x9d5bf1&&(_0xbe8349[--_0x5a5ab4-_0x9d5bf1+(\"\u2028\",114)]=\\u0076\\u0061\\u006c\\u0069\\u0064\\u0061\\u0074\\u0065=_0xbe8349[++_0x5a5ab4+ ++_0x9d5bf1-116],!0)||(_0xbe8349[(_0x5a5ab4+=4)-_0x9d5bf1--+107]||(_0xdb8fd4=_0xbe8349[_0x5a5ab4-5]),(_0x5a5ab4-=6)+--_0x9d5bf1-23)),[][0]))&&(_0x9d5bf1<124||((127<_0x9d5bf1||((_0x9d5bf1>125||((_0x9d5bf1>124||(_0xbe8349[++_0x5a5ab4-2]=_0xbe8349[--_0x5a5ab4+_0x9d5bf1++-125][_0xa14849(_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+63848+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^(\"\u2029\",37603)+_0xdb8fd4)],void 0))&&(_0xbe8349[_0x5a5ab4++-_0x9d5bf1--+123]=_0xea6dcc(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1++-126],[_0xbe8349[(_0x5a5ab4-=3)+_0x9d5bf1-126]])(_0xa14849(_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1+15109+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^_0x9d5bf1++ +12083+_0xdb8fd4))),null))&&(126<_0x9d5bf1||(_0xbe8349[++_0x5a5ab4+--_0x9d5bf1-(\"\u2028\",126)]=\\u0072\\u0061\\u0074\\u0065\\u004c\\u0069\\u006d\\u0069\\u0074,[][0]))&&(_0xbe8349[++_0x5a5ab4-5]=_0xb33a76(_0xbe8349[_0x5a5ab4--+--_0x9d5bf1-130],_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+121],_0xbe8349[(_0x5a5ab4+=4)-_0x9d5bf1++ +(\"\u2029\",118)]+_0xbe8349[(_0x5a5ab4-=8)+_0x9d5bf1-124])()),!{}))&&(130>_0x9d5bf1&&((128<_0x9d5bf1||(_0xbe8349[(_0x5a5ab4+=_0x9d5bf1)-131]=_0xea6dcc(_0xbe8349[_0x5a5ab4+--_0x9d5bf1-257],[_0xbe8349[_0x5a5ab4-(\"\u2029\",131)],_0xbe8349[(_0x5a5ab4-=130)-_0x9d5bf1++ +128]])(_0xa14849(_0x6d1d5e[_0xdb8fd4++]^_0x9d5bf1++ +18321+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^(\"\u2028\",26976)+_0xdb8fd4)),[][0]))&&(_0xbe8349[(_0x5a5ab4-=_0x9d5bf1++)+130]=_0xa14849(_0x6d1d5e[_0xbe8349[(_0x5a5ab4+=131)+_0x9d5bf1++-132]=_0xa14849(_0x6d1d5e[_0xdb8fd4++]^_0x9d5bf1+6281+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+(\"\u2029\",36734)+_0xdb8fd4),_0xdb8fd4++]^--_0x9d5bf1+26932+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^--_0x9d5bf1+(\"\u2028\",39640)+_0xdb8fd4)),{})||(130<_0x9d5bf1||(_0xbe8349[--_0x5a5ab4- --_0x9d5bf1+128]=_0xbe8349[(_0x5a5ab4-=_0x9d5bf1++)+128]<_0xbe8349[(_0x5a5ab4+=129)-_0x9d5bf1--+130],0))&&(_0xbe8349[(_0x5a5ab4+=119)-_0x9d5bf1++ +10]-=_0xbe8349[(_0x5a5ab4-=120)-++_0x9d5bf1+133])),!1))&&(_0x9d5bf1>119&&(122>_0x9d5bf1&&((120<_0x9d5bf1++||(_0xbe8349[_0x5a5ab4++-_0x9d5bf1++ +121]=_0x6d1d5e[_0xdb8fd4++]^_0x9d5bf1++ +56317+_0xdb8fd4,!1))&&(_0xbe8349[_0x5a5ab4-_0x9d5bf1++ +121]>>=_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1+2754+_0xdb8fd4)),!\"\")||(122<_0x9d5bf1||(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-122]=-_0x102981[_0x6d1d5e[_0xdb8fd4++]^++_0x9d5bf1+59054+_0xdb8fd4],!true))&&(_0xbe8349[_0x5a5ab4-_0x9d5bf1--+123]=_0x6d1d5e[_0xbe8349[(_0x5a5ab4+=2)+_0x9d5bf1-123]=null,_0xdb8fd4++]-(-_0x9d5bf1--+29095+_0xdb8fd4)),!false)||117<_0x9d5bf1&&(118<_0x9d5bf1++&&(_0xbe8349[_0x5a5ab4+--_0x9d5bf1-120]*=_0x6d1d5e[_0xdb8fd4++]-(_0x9d5bf1+1676+_0xdb8fd4),!null)||(_0xbe8349[_0x5a5ab4-(\"\u2029\",1)]=_0x6d1d5e[_0xdb8fd4++]-(++_0x9d5bf1+15440+_0xdb8fd4)),{})||(_0x9d5bf1<117||(_0xbe8349[(_0x5a5ab4+=109)-_0x9d5bf1--+8]=_0xbe8349[(_0x5a5ab4-=108)+ ++_0x9d5bf1-119],!1))&&(_0xbe8349[--_0x5a5ab4-_0x9d5bf1--+115]=new(_0xea6dcc(_0xbe8349[(_0x5a5ab4-=--_0x9d5bf1)+113],[null,_0xbe8349[(_0x5a5ab4+=114)+--_0x9d5bf1-(\"\u2028\",113)]]))()));}else if(_0x9d5bf1<34){if(18>_0x9d5bf1--){if(_0x9d5bf1>8)13>_0x9d5bf1++&&(12>_0x9d5bf1&&((_0x9d5bf1-->10||(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-- -9]=_0x102981[_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1+36664+_0xdb8fd4],!1))&&(_0xbe8349[_0x5a5ab4-- -4]=_0xea6dcc(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1++-(\"\u2029\",12)],[_0xbe8349[++_0x5a5ab4-++_0x9d5bf1+7],_0xbe8349[++_0x5a5ab4-_0x9d5bf1++ +8],_0x884db5[_0xbe8349[(_0x5a5ab4-=5)-_0x9d5bf1--+15]]])()),!\"\")||(_0x9d5bf1++<13||(_0xbe8349[_0x5a5ab4+_0x9d5bf1++-15]-=_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1--+26025+_0xdb8fd4),!{}))&&(_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+8]=_0xbe8349[_0x5a5ab4-_0x9d5bf1+7][_0xbe8349[(_0x5a5ab4-=12)+8]]=_0xbe8349[++_0x5a5ab4+_0x9d5bf1-- -4]&_0xbe8349[(_0x5a5ab4+=7)+_0x9d5bf1-(\"\u2028\",9)]),{})||(_0x9d5bf1<16||(17>_0x9d5bf1&&(_0xbe8349[_0x5a5ab4++ +1]=_0x102981[_0x6d1d5e[_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-(\"\u2028\",17)]=_0x102981[_0x6d1d5e[_0xdb8fd4++]^(\"\u2029\",9545)+_0xdb8fd4],_0xdb8fd4++]^-++_0x9d5bf1+47504+_0xdb8fd4],!null)||(_0xbe8349[++_0x5a5ab4-_0x9d5bf1++ +16]=!(_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1--+65101+_0xdb8fd4))),\"\"))&&(_0x9d5bf1>14&&(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-- -(\"\u2028\",15)]=\\u0055\\u0069\\u006e\\u0074\\u0038\\u0041\\u0072\\u0072\\u0061\\u0079,![][0])||(_0xbe8349[_0x5a5ab4-_0x9d5bf1+13]+=_0x102981[_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1++ +12268+_0xdb8fd4]));else if(4<_0x9d5bf1--){if(_0x9d5bf1<6)5>_0x9d5bf1&&(_0xbe8349[++_0x5a5ab4-_0x9d5bf1+3]=\\u0062\\u0061\\u0063\\u006b\\u0065\\u006e\\u0064,{})||(_0xbe8349[_0x5a5ab4-- -++_0x9d5bf1+5]=\\u0072\\u0061\\u0074\\u0065\\u004c\\u0069\\u006d\\u0069\\u0074=_0xbe8349[++_0x5a5ab4-1]);else if(6<_0x9d5bf1)_0xbe8349[(_0x5a5ab4-=48)-++_0x9d5bf1+55]=_0xbe8349[(_0x5a5ab4+=48)-1]==_0x102981[_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+53656+_0xdb8fd4];else return _0x4609b7.\\u005f\\u0030\\u0078\\u0061\\u0030\\u0038\\u0064\\u0033\\u0033=0;}else(_0x9d5bf1>1||((_0x9d5bf1>0||((-1<_0x9d5bf1||(_0xbe8349[++_0x5a5ab4+ ++_0x9d5bf1-3]=_0xbe8349[(_0x5a5ab4-=--_0x9d5bf1)-4]===!_0xbe8349[(_0x5a5ab4-=3)+_0x9d5bf1--+1],![]))&&_0xbe8349[_0xdb8fd4++,--_0x5a5ab4]&&(_0xdb8fd4=_0x6d1d5e[--_0xdb8fd4]^62750+ ++_0xdb8fd4),\"\"))&&(_0xbe8349[(_0x5a5ab4-=_0x9d5bf1--)-2]=_0x884db5[_0xbe8349[_0x5a5ab4-_0x9d5bf1-- -2]]=_0xbe8349[(_0x5a5ab4+=31)-(\"\u2029\",32)]+_0xbe8349[(_0x5a5ab4-=32)-_0x9d5bf1++]),!1))&&(_0x9d5bf1>2||(_0xbe8349[_0x5a5ab4++-_0x9d5bf1]=_0xbe8349[(_0x5a5ab4-=31)-_0x9d5bf1--+30]<_0x884db5[_0xbe8349[(_0x5a5ab4+=29)- --_0x9d5bf1]],[][0]))&&(_0xbe8349[(_0x5a5ab4-=120)+ ++_0x9d5bf1+115]=_0xbe8349[(_0x5a5ab4+=120)-_0x9d5bf1++ +2]);}else if(_0x9d5bf1>24)(_0x9d5bf1>28||(_0x9d5bf1<27&&(25<_0x9d5bf1++&&(_0xbe8349[--_0x5a5ab4-1]=_0xbe8349[(_0x5a5ab4+=++_0x9d5bf1)-29]!==_0xbe8349[(_0x5a5ab4-=28)+_0x9d5bf1++-28],{})||(_0xbe8349[++_0x5a5ab4-++_0x9d5bf1+26]=\\u0053\\u0074\\u0072\\u0069\\u006e\\u0067),{})||(--_0x9d5bf1>26||(_0xbe8349[_0x5a5ab4-- -++_0x9d5bf1+25]|=_0xbe8349[_0x5a5ab4-++_0x9d5bf1+(\"\u2029\",28)],!{}))&&(_0xbe8349[_0x5a5ab4-_0x9d5bf1++ +26]-=_0x102981[_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1+23370+_0xdb8fd4]),[][0]))&&(_0x9d5bf1-->30&&(30<_0x9d5bf1&&(_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+29]=_0xbe8349[_0x5a5ab4--+_0x9d5bf1-- -32]<_0x6d1d5e[_0xdb8fd4++]-((\"\u2028\",4754)+_0xdb8fd4),!false)||_0xea6dcc(_0xbe8349[_0x5a5ab4+ ++_0x9d5bf1-32],[_0xbe8349[(_0x5a5ab4-=2)-++_0x9d5bf1+32]])(),!null)||_0x9d5bf1>28&&(_0xbe8349[_0x5a5ab4--+_0x9d5bf1-32]+=_0xbe8349[_0x5a5ab4++-1][_0xbe8349[(_0x5a5ab4-=2)+--_0x9d5bf1-27]],[])||(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-- -28]=\\u0045\\u0072\\u0072\\u006f\\u0072));else if(20<_0x9d5bf1){if(_0x9d5bf1>22){if(23<_0x9d5bf1++)return _0xbe8349[--_0x5a5ab4+_0x9d5bf1-25];else _0xbe8349[_0x5a5ab4+_0x9d5bf1-26]=_0x884db5[_0xbe8349[(_0x5a5ab4-=++_0x9d5bf1)+23]]=_0x884db5[_0xbe8349[(_0x5a5ab4+=24)+_0x9d5bf1++-(\"\u2028\",25)]];}else(21<_0x9d5bf1||(_0xbe8349[_0x5a5ab4++ + ++_0x9d5bf1-24]=_0x884db5[_0xbe8349[_0x5a5ab4-- - --_0x9d5bf1+18]]=_0xbe8349[_0x5a5ab4-- -_0x9d5bf1+20],[][0]))&&(_0xbe8349[_0x5a5ab4-1]&=_0x6d1d5e[_0xdb8fd4++]-(_0x9d5bf1++ +43997+_0xdb8fd4));}else(_0x9d5bf1<19||(19<_0x9d5bf1&&(_0xbe8349[++_0x5a5ab4-1]=_0x6d1d5e[_0xdb8fd4++]-(_0x9d5bf1++ +44224+_0xdb8fd4),{})||(_0xbe8349[++_0x5a5ab4-_0x9d5bf1+14]=_0xea6dcc(_0xbe8349[_0x5a5ab4++-4],[_0xbe8349[_0x5a5ab4++-_0x9d5bf1--+13],_0xbe8349[(_0x5a5ab4+=--_0x9d5bf1)-22]%_0xbe8349[(_0x5a5ab4-=23)+_0x9d5bf1++-15]])()),void 0))&&(18>_0x9d5bf1||(_0xbe8349[_0x5a5ab4+_0x9d5bf1++-19]<<=_0x6d1d5e[_0xdb8fd4++]-(_0x9d5bf1--+(\"\u2029\",13592)+_0xdb8fd4),![]))&&(_0xbe8349[_0xbe8349[_0x5a5ab4++-_0x9d5bf1--+(\"\u2028\",17)]=[],--_0x5a5ab4+_0x9d5bf1-15]=_0xbe8349[(_0x5a5ab4+=2)- --_0x9d5bf1+13]);}else(_0x9d5bf1<51||((58<_0x9d5bf1||(54<_0x9d5bf1&&(_0x9d5bf1>56&&(_0x9d5bf1-->57&&(_0xbe8349[_0x5a5ab4--+_0x9d5bf1-61]=_0xbe8349[(_0x5a5ab4+=_0x9d5bf1--)-60][_0xbe8349[_0x5a5ab4+_0x9d5bf1++-(\"\u2029\",115)]]=_0xbe8349[++_0x5a5ab4-_0x9d5bf1-2]^_0xbe8349[(_0x5a5ab4-=60)+ ++_0x9d5bf1-56],[])||(_0xbe8349[(_0x5a5ab4-=++_0x9d5bf1)+56]=_0xbe8349[(_0x5a5ab4+=57)-1][_0x6d1d5e[_0xdb8fd4++]-(--_0x9d5bf1+(\"\u2028\",51385)+_0xdb8fd4)]),!null)||(54<--_0x9d5bf1||(_0xbe8349[--_0x5a5ab4-_0x9d5bf1+52]=_0xfe42ce(_0xbe8349[(_0x5a5ab4-=_0x9d5bf1--)+53])(_0xbe8349[(_0x5a5ab4-=_0x9d5bf1)+105])(_0x884db5[_0xbe8349[(_0x5a5ab4+=106)+1]]),void 0))&&(_0xbe8349[--_0x5a5ab4+--_0x9d5bf1-54]=!_0xbe8349[_0x5a5ab4++-++_0x9d5bf1+55]),true)||54>++_0x9d5bf1&&(_0x9d5bf1>52&&(_0xbe8349[_0x5a5ab4-- -_0x9d5bf1+53]=_0xa14849(_0x6d1d5e[_0xbe8349[(_0x5a5ab4+=3)-_0x9d5bf1++ +52]=null,_0xdb8fd4++]^--_0x9d5bf1+(\"\u2028\",34095)+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^60616+_0xdb8fd4),1)||function(){throw _0xbe8349[_0x5a5ab4-1];}(),true)||_0x9d5bf1>54&&(_0xfe42ce(_0xbe8349[_0x5a5ab4-- -2],_0xbe8349[(_0x5a5ab4-=_0x9d5bf1)+53],_0xbe8349[(_0x5a5ab4+=53)+_0x9d5bf1++-53])()(),[])||(_0xbe8349[(_0x5a5ab4+=_0x9d5bf1--)-55]=\\u0074\\u0032\\u0073=_0xbe8349[(_0x5a5ab4-=54)-_0x9d5bf1++ +52]),void 0))&&(--_0x9d5bf1>61&&((_0x9d5bf1>63||((_0x9d5bf1++<63||(_0xbe8349[_0x5a5ab4++ + ++_0x9d5bf1-65]=void 0,!1))&&(_0xbe8349[_0x5a5ab4+_0x9d5bf1-- -64]=_0x884db5[_0xbe8349[_0x5a5ab4-_0x9d5bf1++ +61]]++),\"\"))&&(64<_0x9d5bf1&&(_0xbe8349[_0x5a5ab4--+_0x9d5bf1-- -66]=_0xbe8349[_0x5a5ab4++-_0x9d5bf1+64]!==_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1--+6107+_0xdb8fd4),!null)||(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-66]+=_0xbe8349[_0x5a5ab4-=2])),!false)||60>_0x9d5bf1&&(_0x9d5bf1>58&&(_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-- -61]%=_0xbe8349[(_0x5a5ab4-=2)+_0x9d5bf1-- -58],1)||(_0xbe8349[++_0x5a5ab4]=_0x6d1d5e[_0xbe8349[_0x5a5ab4++-1]=_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1++ +11705+_0xdb8fd4),_0xdb8fd4++]-(--_0x9d5bf1+47614+_0xdb8fd4)),!null)||(_0x9d5bf1<61||(_0xbe8349[(_0x5a5ab4-=_0x9d5bf1++)+59]&=_0xbe8349[(_0x5a5ab4+=60)+_0x9d5bf1-- -62],null))&&(_0xbe8349[--_0x5a5ab4- --_0x9d5bf1+59]=_0xbe8349[_0x5a5ab4++ +_0x9d5bf1-59]>_0x6d1d5e[_0xdb8fd4++]-(--_0x9d5bf1+37206+_0xdb8fd4))),\"\"))&&(++_0x9d5bf1<44&&((40>_0x9d5bf1||(41<_0x9d5bf1&&(44>++_0x9d5bf1&&(_0xdb8fd4=_0x6d1d5e[_0xdb8fd4++]^-_0x9d5bf1++ +55408+_0xdb8fd4,!false)||(_0xbe8349[_0x5a5ab4+_0x9d5bf1-- -45]=_0x884db5[_0xbe8349[_0x5a5ab4-_0x9d5bf1+42]]),!null)||(_0x9d5bf1<41||(_0xbe8349[++_0x5a5ab4-_0x9d5bf1--+(\"\u2028\",40)]=\\u004d\\u0061\\u0074\\u0068,![]))&&(_0xbe8349[--_0x5a5ab4-++_0x9d5bf1+41]=!!_0xbe8349[_0x5a5ab4++ + ++_0x9d5bf1-42]),0))&&(_0x9d5bf1<38&&(38>++_0x9d5bf1&&((_0x9d5bf1--<37||(_0xbe8349[_0x5a5ab4+ ++_0x9d5bf1-38]+=_0x6d1d5e[_0xdb8fd4++]-(-_0x9d5bf1--+22656+_0xdb8fd4),![]))&&(_0xbe8349[--_0x5a5ab4-_0x9d5bf1+35]=\\u0062\\u0075\\u0069\\u006c\\u0064\\u0052\\u0065\\u0071\\u0075\\u0065\\u0073\\u0074=_0xbe8349[_0x5a5ab4++- --_0x9d5bf1+34]),1)||(_0xbe8349[_0x5a5ab4-- - --_0x9d5bf1+35]=new \\u0052\\u0065\\u0067\\u0045\\u0078\\u0070(_0xbe8349[_0x5a5ab4-_0x9d5bf1+36],_0xbe8349[_0x5a5ab4+--_0x9d5bf1-36])),true)||38<_0x9d5bf1&&(_0xbe8349[_0x5a5ab4-- -4]=_0xfe42ce(_0xbe8349[(_0x5a5ab4-=10)+_0x9d5bf1-31])(_0xbe8349[--_0x5a5ab4+_0x9d5bf1-- -31],_0xbe8349[_0x5a5ab4+_0x9d5bf1-- -28],_0xbe8349[(_0x5a5ab4+=9)+--_0x9d5bf1-(\"\u2028\",34)],_0xa14849(_0x6d1d5e[_0xdb8fd4++]^6424+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^_0x9d5bf1++ +20793+_0xdb8fd4))(),![][0])||(_0xbe8349[--_0x5a5ab4+_0x9d5bf1++-36]=_0x6d1d5e[_0xbe8349[(_0x5a5ab4+=3)-_0x9d5bf1+37]=_0xa14849(_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+66372+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+19919+_0xdb8fd4),_0xdb8fd4++]-(- --_0x9d5bf1+49986+_0xdb8fd4))),true)||48>_0x9d5bf1&&(_0x9d5bf1>45&&(_0x9d5bf1<47&&(_0xbe8349[_0x5a5ab4++ + ++_0x9d5bf1-47]=new \\u0052\\u0065\\u0067\\u0045\\u0078\\u0070(_0xa14849(_0x6d1d5e[_0xdb8fd4++]^++_0x9d5bf1+37458+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^- --_0x9d5bf1+1967+_0xdb8fd4),_0xa14849(_0x6d1d5e[_0xdb8fd4++]^13340+_0xdb8fd4,_0x6d1d5e[_0xdb8fd4++]^--_0x9d5bf1+52085+_0xdb8fd4)),!0)||(_0xbe8349[_0x5a5ab4++-_0x9d5bf1++ +47]={}),[])||(44<_0x9d5bf1++||(_0xbe8349[++_0x5a5ab4-1]=void(_0x6d1d5e[_0xdb8fd4++]-(_0x9d5bf1+23117+_0xdb8fd4)),false))&&(_0xbe8349[++_0x5a5ab4-4]=_0xbe8349[--_0x5a5ab4-_0x9d5bf1++ +43][_0xbe8349[(_0x5a5ab4+=35)-++_0x9d5bf1+11]]=_0x884db5[_0xbe8349[(_0x5a5ab4-=37)+1]]),!0)||49<_0x9d5bf1&&(51>_0x9d5bf1&&(_0xbe8349[_0x5a5ab4-_0x9d5bf1++ +48]%=_0x884db5[_0xbe8349[_0x5a5ab4--+ ++_0x9d5bf1-(\"\u2028\",53)]],[])||(_0xbe8349[_0x5a5ab4++-2]=_0xea6dcc(_0xbe8349[_0x5a5ab4+_0x9d5bf1++-53],[_0xbe8349[(_0x5a5ab4-=2)+_0x9d5bf1++-53]])()),!0)||(49>_0x9d5bf1||(_0xbe8349[--_0x5a5ab4- --_0x9d5bf1+44]=_0xfe42ce(_0xbe8349[--_0x5a5ab4- --_0x9d5bf1+45],_0xbe8349[_0x5a5ab4-- -_0x9d5bf1++ +44],_0xbe8349[(_0x5a5ab4-=_0x9d5bf1++)+48])(_0xbe8349[(_0x5a5ab4-=++_0x9d5bf1)+99][_0xbe8349[(_0x5a5ab4+=97)+_0x9d5bf1++-47]])(),void 0))&&(_0xbe8349[++_0x5a5ab4-2]=\\u0067\\u0065\\u0074\\u004c\\u0069\\u006d\\u0069\\u0074=_0xbe8349[_0x5a5ab4--+_0x9d5bf1++-50]));}((\"\u2028\",1195));})(function(_0xc1dadd,_0xcb9c18,_0xb33a76,_0xea6dcc,_0xfe42ce,_0x3ac3c1){try{return _0xcb9c18=function(_0xc1dadd,_0x6d1d5e){try{return _0xc1dadd();}catch(_0xe10908){return _0x6d1d5e();}},_0xb33a76=function(_0xc1dadd){if(typeof \\u0061\\u0074\\u006f\\u0062===\"function\")return _0xcb9c18(function(_0x6d1d5e,_0xfcd851,_0x6ddc3e){for(_0x6d1d5e=\\u0061\\u0074\\u006f\\u0062(_0xc1dadd),_0xfcd851=[],_0x6ddc3e=0;_0x6ddc3e<_0x6d1d5e.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068;_0x6ddc3e++)_0xfcd851.\\u0070\\u0075\\u0073\\u0068(_0x6d1d5e.\\u0063\\u0068\\u0061\\u0072\\u0043\\u006f\\u0064\\u0065\\u0041\\u0074(_0x6ddc3e)&255);return _0xfcd851;},function(){return _0xfe42ce(_0xc1dadd);});return _0xfe42ce(_0xc1dadd);},_0xea6dcc=function(_0xc1dadd,_0x6d1d5e,_0xfcd851,_0x6ddc3e,_0x735532){_0xfcd851=0,_0x6ddc3e=0;do _0x735532=_0xc1dadd[_0x6d1d5e.\\u0069++],_0xfcd851+=(_0x735532&0x7f)*\\u004d\\u0061\\u0074\\u0068.\\u0070\\u006f\\u0077(2,_0x6ddc3e),_0x6ddc3e+=7;while(_0x735532&0x80);return _0xfcd851;},_0xfe42ce=function(_0xc1dadd,_0x6d1d5e,_0xfcd851,_0x6ddc3e,_0x735532,_0x84a3ad,_0xa14849,_0x817fb0,_0x165667){_0x6d1d5e=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\",_0xfcd851=[],_0x6ddc3e=0;while(_0x6ddc3e<_0xc1dadd.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068)_0x735532=_0x6d1d5e.\\u0069\\u006e\\u0064\\u0065\\u0078\\u004f\\u0066(_0xc1dadd.\\u0063\\u0068\\u0061\\u0072\\u0041\\u0074(_0x6ddc3e++)),_0x84a3ad=_0x6d1d5e.\\u0069\\u006e\\u0064\\u0065\\u0078\\u004f\\u0066(_0xc1dadd.\\u0063\\u0068\\u0061\\u0072\\u0041\\u0074(_0x6ddc3e++)),_0xa14849=_0x6d1d5e.\\u0069\\u006e\\u0064\\u0065\\u0078\\u004f\\u0066(_0xc1dadd.\\u0063\\u0068\\u0061\\u0072\\u0041\\u0074(_0x6ddc3e++)),_0x817fb0=_0x6d1d5e.\\u0069\\u006e\\u0064\\u0065\\u0078\\u004f\\u0066(_0xc1dadd.\\u0063\\u0068\\u0061\\u0072\\u0041\\u0074(_0x6ddc3e++)),_0x165667=_0x735532<<18|_0x84a3ad<<12|(_0xa14849&63)<<6|_0x817fb0&63,_0xfcd851.\\u0070\\u0075\\u0073\\u0068(_0x165667>>16&255),_0xa14849!==64&&_0xfcd851.\\u0070\\u0075\\u0073\\u0068(_0x165667>>8&255),_0x817fb0!==64&&_0xfcd851.\\u0070\\u0075\\u0073\\u0068(_0x165667&255);return _0xfcd851;},_0x3ac3c1=function(_0xc1dadd,_0x6d1d5e,_0xfcd851,_0x6ddc3e){_0x6d1d5e=_0xb33a76(_0xc1dadd),_0xfcd851=[],_0x6ddc3e={\\u0069:0};while(_0x6ddc3e.\\u0069<_0x6d1d5e.\\u006c\\u0065\\u006e\\u0067\\u0074\\u0068)_0xfcd851.\\u0070\\u0075\\u0073\\u0068(_0xea6dcc(_0x6d1d5e,_0x6ddc3e));return _0xfcd851;},_0x3ac3c1(_0xc1dadd);}catch(_0xe10908){return[];}}(\"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\"),[[60036,60028,60050,60030],[37210,37200,37214,37208],[42475,42514,42509,42511,42497,42506],[45719,45719,45709,45713],[29887,29900,29900,29890,29909,29907,29908,29896,29906,29913],[23333,23337,23326,23335,23344],[61952,61988,61977,61986,61963,61998,61994,61995,61995,61999,62002],[29989,30009,30005,30004,30001,29996],[18960,19012,19008,19007,19004,18999,18977,19013,19013,19007],[9480,9493,9492,9430,9502,9501,9488,9502,9435,9472,9488,9508,9494,9470,9500,9505,9502,9514,9500,9514,9447,9512,9504,9524,9521,9490,9512,9517,9510,9456],[30445,30444,30460,30425,30460,30458,30460,30450,30464,30467,30457,30454,30469],[21794,21807,21806,21810,21816,21816,21802,21775,21805,21769,21803,21821,21808,21818,21825],0.9,0.6,0.3,[1761,1749,1763,1765,1739,1761,1766,1759],[815,814,830],[21707,21696,21720],[11721,11734,11733,11737,11723,11741,11729,11694,11740,11731,11715,11734,11750],0.8,0.4,[],[61826,61812,61830,61824,61796,61816,61830,61832,61837],[62497,62494,62501,62499,62485,62488],[53320,53300,53312,53310,53306,53304,53324,53310],[56587,56574,56571,56589,56575,56581],[39233,39235,39243,39227,39235,39243],[3280,3282,3298,3280,3289,3293],[52184,52183,52203,52185,52197,52201,52194],[49280,49293,49293,49300,49286,49296,49303],[53905,53894,53914,53898,53904],[7647,7642,7663,7658],[9011,9017,9012,9018],[38715],[30988,30987,31003,30963,30990,31011],[3978,3972,3982,3976,3990,3979],0.5,0.1,[50677,50673,50646,50680,50679,50671,50677,50671],[20630,20636,20630,20648,20602,20647,20637,20639,20604,20656],[4623,4625,4627,4629,4631,4633,4635,4637,4639,4641,4643,4645,4647,4649,4651,4653,4655,4657,4659,4661,4663,4665,4667,4669,4671,4673,4681,4683,4685,4687,4689,4691,4693,4695,4697,4699,4701,4703,4705,4707,4709,4711,4713,4715,4717,4719,4721,4723,4725,4727,4729,4731,4658,4660,4662,4664,4666,4668,4670,4672,4674,4676,4663,4668],[40130,40131],[43243],[15127,15125,15122,15120,15132],[31895],[5454,5461,5465,5466,5470],[42537,42539,42548],[16173,16187,16178,16193,16191,16186,16182,16156,16184],[57090,57091,57080,57076],[24391,24384,24399,24377,24378,24388,24327,24340,24337,24335,24341,24336,24337,24338,24340],[7194,7192,7196,7150,7197,7148,7164,7199,7155,7201,7157,7202,7206,7160,7207,7158,7156,7208,7212,7154,7213,7163,7163],[15604,15610,15631,15634,15602,15634,15653,15640,15594,15593],[51104,51142,51131,51134,51119,51109,51103,51089,51093,51095],[32550,32550,32569,32556,32510,32509,32526,32560,32559,32572,32562,32564,32548,32576,32532,32588,32584,32570,32535,32585,32586,32570,32595],[28665,28667,28683,28691,28683,28688],[44604,44594,44599,44592,44607,44609,44591,44604,44608],[21277,21290,21290,21280,21279,21299],[32209,32289,32201,32272,32270,32267,32271,32273,32287,32289,32209,32234],[32196,32198,32197,32189,32195,32189,32192,32190,32210],[61926],0.7,1.3,[32572,32526,32523,32512,32565,32577,32559,32540,32533,32549,32580,32575,32542,32550,32587,32516,32549,32522,32520,32555,32578,32547,32556,32557,32550,32536,32594,32591,32547,32539,32567,32589,32543,32585,32560,32570,32572,32566,32597,32606,32594,32602,32565,32558],[62102,62116,62117,62114,62091,62120,62127,62125,62111,62114,62081,62126,62125,62126,62119,62129,62136],[13488,13481,13496,13474,13488,13489,13486],[42678,52557,42173,42703,62742,5441,571,63515,12826,64255,42448,3959,5123,63721,15896,5008,8861,3062,42431,42697,12983,63758,1602,42723,42796,42809,42810,42807,42811,42755,42745,42746,42815,42808,42823,42801,42815,42816,42813,42753,42820,42806,42813,42812,42827,42759,42814,42816,42834,42749,3538,3215],[23734,23738,23738,23732,23714,23742,23729,23748,23750],1.2,[24963,34177,18381,63951,63952,63953],[47805,47791,47809,47811,47798],[12374,12384,12376,12400],[51688,51759,51758,51745,51759,51693,51762,51764,51746,51766,51766,51715,51758,51754,51716],[8342,8422,8420,8412,8369],[23559,13603,40169,49383,38678,34726,13586,38212,50775,52648,13638,13613],[24793,24791,24796,24793,24805],[5109,29150,35093,5160,5135],[55092,55091,55078,55078],[63198,18750,17967,63249,63224],[10210,10198,10207,10196,10205,10211,10207,10213,10207],[14320,4293,42431,40086,4034],[5610,5603,5618,5619,5602,5609,5608],[38792,38780,38792,38789,38779,38782,38785],[24207,24209,24235,24171,24221,24169,24170,24168,24216,24242,24183,24229,24230,24231,24223],[27025],[5218,5153,5219],[14434],[48056],[35642,5155,5207,37890,26635,36335,41968,25191,25438,29970,25234,25168,27438,25323,5221,5170],[50597,16755,16769],[23155,23207,45420,48423,44526,49294,49278,44453,55657,44641,47165,60077,58920,53821,43937,23223,23172,53660],[13288,13302,47133],[13760],[60843],[52804,28667,28719,51001,1628,28387,60158,53148,52255,49905,49654,48663,52341,2221,1751,1,52071,51448,28737,28686],[48394,28337,28351],[57813],[42613],[61990,62042,22933,21361,30582,25855,17360,62050,61999,16934],[40912,40926,9591],[23357,23358],[16781,16782]],function(_0xcb9c18){try{return _0xcb9c18=typeof \\u0067\\u006c\\u006f\\u0062\\u0061\\u006c\\u0054\\u0068\\u0069\\u0073!==\"undefined\"?\\u0067\\u006c\\u006f\\u0062\\u0061\\u006c\\u0054\\u0068\\u0069\\u0073:typeof \\u0073\\u0065\\u006c\\u0066!==\"undefined\"?\\u0073\\u0065\\u006c\\u0066:typeof \\u0077\\u0069\\u006e\\u0064\\u006f\\u0077!==\"undefined\"?\\u0077\\u0069\\u006e\\u0064\\u006f\\u0077:typeof \\u0067\\u006c\\u006f\\u0062\\u0061\\u006c!==\"undefined\"?\\u0067\\u006c\\u006f\\u0062\\u0061\\u006c:\\u0046\\u0075\\u006e\\u0063\\u0074\\u0069\\u006f\\u006e(\"return this\")(),typeof \\u0065\\u0078\\u0070\\u006f\\u0072\\u0074\\u0073!=='undefined'&&(_0xcb9c18.\\u0065\\u0078\\u0070\\u006f\\u0072\\u0074\\u0073=\\u0065\\u0078\\u0070\\u006f\\u0072\\u0074\\u0073),typeof \\u0072\\u0065\\u0071\\u0075\\u0069\\u0072\\u0065!=='undefined'&&(_0xcb9c18.\\u0072\\u0065\\u0071\\u0075\\u0069\\u0072\\u0065=\\u0072\\u0065\\u0071\\u0075\\u0069\\u0072\\u0065),typeof \\u006d\\u006f\\u0064\\u0075\\u006c\\u0065!=='undefined'&&(_0xcb9c18.\\u006d\\u006f\\u0064\\u0075\\u006c\\u0065=\\u006d\\u006f\\u0064\\u0075\\u006c\\u0065),typeof \\u005f\\u005f\\u0066\\u0069\\u006c\\u0065\\u006e\\u0061\\u006d\\u0065!=='undefined'&&(_0xcb9c18.\\u005f\\u005f\\u0066\\u0069\\u006c\\u0065\\u006e\\u0061\\u006d\\u0065=\\u005f\\u005f\\u0066\\u0069\\u006c\\u0065\\u006e\\u0061\\u006d\\u0065),typeof \\u005f\\u005f\\u0064\\u0069\\u0072\\u006e\\u0061\\u006d\\u0065!=='undefined'&&(_0xcb9c18.\\u005f\\u005f\\u0064\\u0069\\u0072\\u006e\\u0061\\u006d\\u0065=\\u005f\\u005f\\u0064\\u0069\\u0072\\u006e\\u0061\\u006d\\u0065),_0xcb9c18;}catch(_0xe10908){return typeof _0xcb9c18!==\"undefined\"?_0xcb9c18:{};}}(),\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074.\\u0063\\u0061\\u006c\\u006c.\\u0062\\u0069\\u006e\\u0064(\\u0041\\u0072\\u0072\\u0061\\u0079.\\u0062\\u0069\\u006e\\u0064),\\u0041\\u0072\\u0072\\u0061\\u0079.\\u0061\\u0070\\u0070\\u006c\\u0079.\\u0062\\u0069\\u006e\\u0064(\\u004e\\u0075\\u006d\\u0062\\u0065\\u0072.\\u0062\\u0069\\u006e\\u0064),\\u004e\\u0075\\u006d\\u0062\\u0065\\u0072.\\u0062\\u0069\\u006e\\u0064.\\u0062\\u0069\\u006e\\u0064(\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074.\\u0062\\u0069\\u006e\\u0064),\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074.\\u0063\\u0061\\u006c\\u006c.\\u0062\\u0069\\u006e\\u0064([].\\u0070\\u0075\\u0073\\u0068),\\u0041\\u0072\\u0072\\u0061\\u0079.\\u0063\\u0061\\u006c\\u006c.\\u0062\\u0069\\u006e\\u0064([].\\u0063\\u006f\\u006e\\u0063\\u0061\\u0074),\\u004e\\u0075\\u006d\\u0062\\u0065\\u0072.\\u0061\\u0070\\u0070\\u006c\\u0079.\\u0062\\u0069\\u006e\\u0064(\\u0053\\u0074\\u0072\\u0069\\u006e\\u0067.\\u0066\\u0072\\u006f\\u006d\\u0043\\u0068\\u0061\\u0072\\u0043\\u006f\\u0064\\u0065,null),\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074.\\u0064\\u0065\\u0066\\u0069\\u006e\\u0065\\u0050\\u0072\\u006f\\u0070\\u0065\\u0072\\u0074\\u0079.\\u0062\\u0069\\u006e\\u0064(\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074),\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074.\\u0067\\u0065\\u0074\\u004f\\u0077\\u006e\\u0050\\u0072\\u006f\\u0070\\u0065\\u0072\\u0074\\u0079\\u0044\\u0065\\u0073\\u0063\\u0072\\u0069\\u0070\\u0074\\u006f\\u0072.\\u0062\\u0069\\u006e\\u0064(\\u004f\\u0062\\u006a\\u0065\\u0063\\u0074),[]);\n",
    "lastUpdateTime": 1784108078850,
    "loginUi": "[\n{\"name\":\"查询用量\",\"type\":\"button\",\"action\":\"getLimit(\\\"69\\\")\"},\n{\"name\":\"赞助支持\",\"type\":\"button\",\"action\":\"java.startBrowser('https://skybook.qzz.io/file/image/25/sponsorship.png','')\"}\n]",
    "loginUrl": "function login() {}",
    "respondTime": 3607,
    "ruleBookInfo": {
      "coverUrl": "@js:\n(() => {\n    if (String(book.coverUrl || \"\")) return;\n    let html = java.get(\"detail\");\n    // let img = String(java.getString(\"$.img\", html))\n    // if (img) return desc\n\n    let books = Array.from(org.jsoup.Jsoup.parse(html).select(\".res-book-item\"));\n    let item = books.find((x) => {\n        let title = java.getString(\"h3@text\", x);\n        return title == book.name;\n    });\n\n    if (item) return java.getString(\"a > img@src\", item);\n})();",
      "init": "@js:\nif (String(book.name) && (!String(book.intro) || !book.coverUrl)) {\n    let u = `https://www.qidian.com/so/${book.name}.html`;\n    let html = java.ajax(u); //java.log(html)\n    if (/fffffffffffffffffff/.test(html)) {\n        java.webView(null, u, \"document.cookie\");\n        java.log(\"已更新cookie\");\n        html = java.ajax(u);\n    }\n    java.put(\"detail\", html);\n}\nresult;",
      "intro": "@js:\n(() => {\n    if (String(book.intro || \"\")) return;\n    let html = java.get(\"detail\");\n    // let desc = String(java.getString(\"$.description\", html))\n    // if (desc) return desc\n\n    let books = Array.from(org.jsoup.Jsoup.parse(html).select(\".res-book-item\"));\n    let item = books.find((x) => {\n        let title = java.getString(\"h3@text\", x);\n        return title == book.name;\n    });\n\n    if (item) return java.getString(\".intro@text\", item);\n})();"
    },
    "ruleContent": {
      "content": "@js:\ncinfo = java.hexDecodeToString(result).split(\"/\");\nbid = cinfo[0];\ncid = cinfo[1];\nresult = java.ajax(buildRequest(`${backend}/69/content?book_id=${bid}&chapter_id=${cid}`));\nresult = JSON.parse(result).data;",
      "replaceRegex": "##新..书吧|吧书69新|\\(\\)|loadAdv\\(10,0\\);|^第.{0,8}章.*|\\(本章完\\)|阅读(sto55[\\.．][CＣ][OＯ])?[MМＭ]|教你记<i\\(爱\\)75\\(奇书\\)wu\\(屋\\)\\.com>|.🅆.|\\(-_-\\)　\\(-_-\\)|[^\\u4e00-\\u9fa5\\r\\n，。！？“”‘’（）《》【】、：；「」『』——……·]*[^\\x00-\\x7F\\u4e00-\\u9fa5\\s\\u3000，。！？“”‘’（）《》【】、：；「」『』——……·][^\\u4e00-\\u9fa5\\r\\n，。！？“”‘’（）《》【】、：；「」『』——……·乂]*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.list",
      "bookUrl": "$.articleid\n@js:\n`data:;base64,${java.base64Encode(result)},{\"type\":\"my69s\"}`",
      "checkKeyWord": "兼程1995",
      "coverUrl": "$.imgUrl",
      "intro": "$.intro",
      "kind": "$.keywords",
      "lastChapter": "$.lastchapter",
      "name": "$.articlename",
      "wordCount": "$.words"
    },
    "ruleToc": {
      "chapterList": "<js>\nbid = java.base64Decode(baseUrl.split(\",\")[1]);\n//java.log(bid)\nresult = java.ajax(buildRequest(`${backend}/69/catalog?book_id=${bid}`));\n\nJSON.parse(result).list.reduce((arr, item) => {\n    title = item.chaptername;\n    url = item.articleid + \"/\" + item.chapterid;\n    arr.push(\n        JSON.stringify({\n            title,\n            url: `data:;base64,${java.base64Encode(url)},{\"type\":\"my69c\"}`,\n        })\n    );\n    return arr;\n}, []);\n</js>",
      "chapterName": "$.title",
      "chapterUrl": "$.url"
    },
    "searchUrl": "@js:\nbuildRequest(`${backend}/69/search?key={{key}}&page={{page}}`)",
    "weight": 0
  },
  {
    "bookSourceComment": "//2024.10.5◎GEd520◎",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "废文网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.feiwenge.com/",
    "customButton": false,
    "customOrder": 635,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1785667877693,
    "respondTime": 7342,
    "ruleBookInfo": {
      "author": ".author@span@text",
      "coverUrl": ".BGsectionOne-top-left@img@src",
      "intro": "#intro@p@text",
      "kind": ".category@span.0@text",
      "lastChapter": ".newestChapter@span@text",
      "name": ".title@text",
      "tocUrl": "text.章节目录@href",
      "wordCount": ".time@span@text"
    },
    "ruleContent": {
      "content": "p@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##第.*章.*"
    },
    "ruleExplore": {
      "author": "p.1@span@a@text",
      "bookList": ".CGsectionTwo-right-content-unit",
      "bookUrl": "p.0@a.0@href",
      "intro": "p.2@text",
      "name": "p.0@a.0@text",
      "wordCount": "p.0@text##最近更新."
    },
    "ruleSearch": {
      "author": "span.2@text",
      "bookList": ".SHsectionThree-middle@p",
      "bookUrl": "span.1@a@href",
      "kind": "span.0@a@text",
      "name": "span.1@text"
    },
    "ruleToc": {
      "chapterList": "ol li a\n<js>\ntry {\na=src.match(/var originalOrder = \\[.*\\];/)[0]\neval(String(a))\n\nlist=[]\nfor (i in result) {\n\tlist[originalOrder[i]]=result[i]\n\t}\n\t\nlist\n} catch(err) {\n\tresult\n\t}\n</js>",
      "chapterName": "a@text",
      "chapterUrl": "a@href##$##,{\"webView\":true}",
      "nextTocUrl": "#end@href\n@js:\nn=parseInt(result[0].match(/\\/(\\d+)\\.html/)[1]);\nlist=[];\nfor (i=2;i<=n;i++)\nlist.push(i+\".html\");\nlist"
    },
    "searchUrl": "/search/{{key}}/{{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "书旗小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://t.shuqi.com#",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 636,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"都市\",\"url\":\"http://read.xiaoshuo1-sm.com/novel/i.php?do=is_caterank&p=17&page={{page}}&words=&shuqi_h5=&onlyCpBooks=1&firstCate=都市&onlyAdvBooks=1&_=1682974411490\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"玄幻\",\"url\":\"http://read.xiaoshuo1-sm.com/novel/i.php?do=is_caterank&p=17&page={{page}}&words=&shuqi_h5=&onlyCpBooks=1&firstCate=玄幻&onlyAdvBooks=1&_=1682975134890\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"仙侠\",\"url\":\"http://read.xiaoshuo1-sm.com/novel/i.php?do=is_caterank&p=17&page={{page}}&words=&shuqi_h5=&onlyCpBooks=1&firstCate=仙侠&onlyAdvBooks=1&_=1682975134890\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"灵异\",\"url\":\"http://read.xiaoshuo1-sm.com/novel/i.php?do=is_caterank&p=17&page={{page}}&words=&shuqi_h5=&onlyCpBooks=1&firstCate=灵异&onlyAdvBooks=1&_=1682975134890\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"历史\",\"url\":\"http://read.xiaoshuo1-sm.com/novel/i.php?do=is_caterank&p=17&page={{page}}&words=&shuqi_h5=&onlyCpBooks=1&firstCate=历史&onlyAdvBooks=1&_=1682975134890\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"游戏\",\"url\":\"http://read.xiaoshuo1-sm.com/novel/i.php?do=is_caterank&p=17&page={{page}}&words=&shuqi_h5=&onlyCpBooks=1&firstCate=游戏&onlyAdvBooks=1&_=1682975134890\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"科幻\",\"url\":\"http://read.xiaoshuo1-sm.com/novel/i.php?do=is_caterank&p=17&page={{page}}&words=&shuqi_h5=&onlyCpBooks=1&firstCate=科幻&onlyAdvBooks=1&_=1682975134890\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"奇幻\",\"url\":\"http://read.xiaoshuo1-sm.com/novel/i.php?do=is_caterank&p=17&page={{page}}&words=&shuqi_h5=&onlyCpBooks=1&firstCate=奇幻&onlyAdvBooks=1&_=1682975134890\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"竞技\",\"url\":\"http://read.xiaoshuo1-sm.com/novel/i.php?do=is_caterank&p=17&page={{page}}&words=&shuqi_h5=&onlyCpBooks=1&firstCate=竞技&onlyAdvBooks=1&_=1682975134890\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"现言\",\"url\":\"http://read.xiaoshuo1-sm.com/novel/i.php?do=is_caterank&p=17&page={{page}}&words=&shuqi_h5=&onlyCpBooks=1&secondCate=%E7%8E%B0%E4%BB%A3%E8%A8%80%E6%83%85&onlyAdvBooks=1&_=1682975766781\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"古言\",\"url\":\"http://read.xiaoshuo1-sm.com/novel/i.php?do=is_caterank&p=17&page={{page}}&words=&shuqi_h5=&onlyCpBooks=1&secondCate=%E5%8F%A4%E4%BB%A3%E8%A8%80%E6%83%85&onlyAdvBooks=1&_=1682975475024\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"幻言\",\"url\":\"http://read.xiaoshuo1-sm.com/novel/i.php?do=is_caterank&p=17&page={{page}}&words=&shuqi_h5=&onlyCpBooks=1&secondCate=%E5%B9%BB%E6%83%B3%E8%A8%80%E6%83%85&onlyAdvBooks=1&_=1682975856354\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"校园\",\"url\":\"http://read.xiaoshuo1-sm.com/novel/i.php?do=is_caterank&p=17&page={{page}}&words=&shuqi_h5=&onlyCpBooks=1&firstCate=%E6%A0%A1%E5%9B%AD&onlyAdvBooks=1&_=1682975960149\",\"style\":{\"layout_flexGrow\":0,\"layout_flexBasisPercent\":0.2}}]",
    "header": "",
    "lastUpdateTime": 1716233540031,
    "loginUrl": "",
    "respondTime": 4863,
    "ruleBookInfo": {
      "author": "[property=og:novel:author]@content",
      "coverUrl": "[property=og:image]@content",
      "init": "",
      "intro": "[property=og:description]@content",
      "kind": "[property=og:novel:update_time]@content&&[property=og:novel:status]@content##\\..*",
      "lastChapter": "[property=og:novel:latest_chapter_name]@content",
      "name": "[property=og:title]@content",
      "tocUrl": "<js>\nvar bookId=java.get('bid');\nvar encryptKey=\"37e81a9d8f02596e1b895d07c171d5c9\",user_id=\"8000000\",timestamp=parseInt((new Date).getTime()/1e3);\nvar o=bookId+timestamp+user_id+encryptKey;\nvar sign=java.md5Encode(o);\nvar list={'turl':'https://ocean.shuqireader.com/api/bcspub/qswebapi/book/chapterlist?_=&bookId='+bookId+'&user_id=8000000&sign='+sign+'&timestamp='+timestamp};list\n</js>$.turl",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "ChapterContent@js:\nfunction p(e) {\n    return e.split(\"\").map(function (e) {\n        return e.match(/[A-Za-z]/) ? (c = Math.floor(e.charCodeAt(0) / 97), k = (e.toLowerCase().charCodeAt(0) - 83) % 26 || 26, String.fromCharCode(k + (0 == c ? 64 : 96))) : e\n    }).join(\"\")\n}\njava.base64Decode(p(result))"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.data",
      "bookUrl": "$.bid<js>java.put('bid',result);'https://t.shuqi.com/book/'+result+'.html'</js>",
      "coverUrl": "$.cover",
      "intro": "$.desc",
      "kind": "{{$.category}}",
      "lastChapter": "$.last_chapter_name",
      "name": "$.title",
      "wordCount": "$.words"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$..aladdin&&$.data",
      "bookUrl": "$.bid<js>java.put('bid',result);'https://t.shuqi.com/book/'+result+'.html'</js>",
      "coverUrl": "$.cover",
      "intro": "$.desc",
      "kind": "$.category",
      "lastChapter": "$.latest_chapter.cname",
      "name": "$.title",
      "wordCount": "$.words"
    },
    "ruleToc": {
      "chapterList": "$.data.chapterList[0].volumeList<js>java.put('freeUrlPre',java.getString('$.data.freeContUrlPrefix'));java.put('shortUrlPre',java.getString('$.data.shortContUrlPrefix'));result</js>",
      "chapterName": "$.chapterName",
      "chapterUrl": "<js>var l=java.getString('$.contUrlSuffix');if(l.indexOf('reqEncryptParam')==-1){java.get('freeUrlPre')+l}else{java.get('shortUrlPre')+java.getString('$.shortContUrlSuffix')}</js>",
      "isVip": ""
    },
    "searchUrl": "https://read.xiaoshuo1-sm.com/novel/i.php?do=is_search&isNewBind=0&tk=&imei=&sn=&channelId=&clientPatch=&clientVersion=&device=&deviceId=&utdid=&model=&osName=&osVersion=&umidToken=&appVersion=&app=&platform=3&ykToken=&ykuid=&shuqi_h5=&token=&user_id=8000000&q={{key}}&page=1&size=10&uid=8000000&filterMigu=1&ver=&p=3",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "斗破苍穹",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.doupocangqiong.info",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 637,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "",
    "header": "",
    "lastUpdateTime": 1769584753785,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 4401,
    "ruleBookInfo": {
      "author": "//meta[@property=\"og:novel:author\"]/@content",
      "canReName": "",
      "coverUrl": "//meta[@property=\"og:image\"]/@content",
      "init": "",
      "intro": "//meta[@property=\"og:description\"]/@content",
      "kind": "//meta[@property=\"og:novel:category\"]/@content",
      "lastChapter": "//meta[@property=\"og:novel:latest_chapter_name\"]/@content",
      "name": "//meta[@property=\"og:novel:book_name\"]/@content",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "id.chaptercontent@html",
      "imageStyle": "0",
      "nextContentUrl": "",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": "",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "",
      "bookList": "class.marklist.0@tag.li[0:19]",
      "bookUrl": "class.novelname.0@href",
      "coverUrl": "tag.img.0@src",
      "intro": "",
      "kind": "",
      "lastChapter": "class.info.0@tag.a.0@text",
      "name": "class.novelname.0@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "class.dirlist.0@tag.a",
      "chapterName": "text",
      "chapterUrl": "href##$##,{\"webView\":true}",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "/search.html?searchtype=novelname&searchkey={{key}}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "黑炎小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.heiyan.info",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 638,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "",
    "lastUpdateTime": 1745163376433,
    "loginUrl": "",
    "respondTime": 6140,
    "ruleBookInfo": {
      "author": "h3@a@text",
      "canReName": "",
      "coverUrl": "img@src",
      "init": "",
      "intro": "{{@@p.0@textNodes##简介：}}##^|\\\\n##<br>",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content##\\?",
      "lastChapter": ".upd@a.1@text",
      "name": "h1@text",
      "tocUrl": "",
      "wordCount": ".infos@span.3@text##.*：@js:result.replace(/：/g,'\\:').replace(/\\s/g,'').replace(/(\\d+)/g,'$1●').replace(/\\d{4}●/g,'万字').replace(/(\\d+)\\d{3}/g,'$1千字')"
    },
    "ruleContent": {
      "content": ".contentbox@textNodes",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "span.0@text",
      "bookList": ".so",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": "p.0@text",
      "kind": "{{@@span.3:2@text##.*：|中|已}}",
      "lastChapter": "",
      "name": "h2@text",
      "wordCount": "{{@@span.1@text##.*：|中|已}}"
    },
    "ruleToc": {
      "chapterList": ".book_list@li",
      "chapterName": "text",
      "chapterUrl": "a@href",
      "isVip": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "plus/search.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "双语小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.shubang.net/book",
    "customButton": false,
    "customOrder": 639,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1731489335396,
    "respondTime": 2087,
    "ruleBookInfo": {
      "init": "",
      "kind": "class.tags@a@text",
      "lastChapter": "tr.-1@td@a@text"
    },
    "ruleContent": {
      "content": ".line_en@text%%.line_cn@title",
      "nextContentUrl": "class.pagebar@a.-1@href"
    },
    "ruleExplore": {
      "bookList": ""
    },
    "ruleSearch": {
      "author": "class.cont@p@text",
      "bookList": "class.mcon@a",
      "bookUrl": "a@href",
      "checkKeyWord": "哈利",
      "coverUrl": "class.cover@img@src",
      "intro": "class.cont@ownText",
      "kind": "",
      "name": "h3@text"
    },
    "ruleToc": {
      "chapterList": "tr@td",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "http://www.shubang.net/book/?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁#3",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.tianxiabachang.cn",
    "customButton": false,
    "customOrder": 640,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787070616399,
    "respondTime": 2304,
    "ruleBookInfo": {
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "id.intro@tag.p.0@textNodes##.*无弹窗广告.*",
      "lastChapter": "id.list@tag.dd.0@a@text"
    },
    "ruleContent": {
      "content": "id.content@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".s4@text",
      "bookList": "id.main@li!0",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.a@href<js>'/files/article/image'+String(result).replace(/.*?(\\d*?)(\\d{1,3})\\//,'/$1/$1$2/$1$2s.jpg').replace('//','/0/')</js>",
      "kind": "class.s1@text##\\[|$",
      "lastChapter": "tag.a.1@text",
      "name": "tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": "id.list@dl@dd@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://www.tianxiabachang.cn/cse/search?q={{key}}&s=,{\n  \"charset\": \"utf-8\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "人人小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://apk.renrenapi.com",
    "customButton": false,
    "customOrder": 641,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n  \"User-Agent\": \"RenRenBook/1.0\"\n}",
    "lastUpdateTime": 1783492430751,
    "respondTime": 9610,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$.url_cover",
      "init": "$.data.infos",
      "intro": "$.intro",
      "kind": "{{$.fullflag}},{{$.sortname}},总浏览{{$.allvisit}},月浏览{{$.monthvisit}},周浏览{{$.weekvisit}}",
      "lastChapter": "{{$.lastchapter}}·更新于{{$.lastupdate}}",
      "name": "$.articlename",
      "tocUrl": "https://apk.renrenapi.com/code/chapterlist.php?aid={{$.articleid}}",
      "wordCount": "$.size"
    },
    "ruleContent": {
      "content": "$.chapter.body"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.data.rows",
      "bookUrl": "<js>sign_key='RenRenBook2026Key888'\nparams={'aid':{{$.articleid}},'timestamp':String(Math.floor(Date.now()/1000))}\nparams['sign']=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nfullUrl='https://apk.renrenapi.com/code/book.php?'+Object.keys(params).map(k=>k+'='+encodeURIComponent(params[k])).join('&')</js>",
      "coverUrl": "$.url_cover",
      "intro": "$.intro",
      "kind": "$.fullflag",
      "lastChapter": "{{$.sortname}},{{$.score}}分",
      "name": "$.articlename",
      "wordCount": "{{$.size_w}}万字"
    },
    "ruleToc": {
      "chapterList": "$.mixToc.chapters<js>java.put('aid',java.getString('$.mixToc._id'));result</js>",
      "chapterName": "$.title",
      "chapterUrl": "<js>'https://apk.renrenapi.com/code/chapter.php?aid=' + java.get('aid') + '&cid=' + result.link</js>"
    },
    "searchUrl": "<js>sign_key='RenRenBook2026Key888'\nparams={'t':'search','searchkey':key,'page':page,'timestamp':String(Math.floor(Date.now()/1000))}\nparams['sign']=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nfullUrl='https://apk.renrenapi.com/code/list.php?'+Object.keys(params).map(k=>k+'='+encodeURIComponent(params[k])).join('&')</js>",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔尖中文",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.badaoge.org",
    "customButton": false,
    "customOrder": 645,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1780935226355,
    "respondTime": 2111,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text",
      "intro": "id.intro@tag.p@text##(作者：.+所写的.+无弹窗免费全文阅读为转载作品,章节由网友发布。|推荐地址：http://www.badaoge.org/book/.+)",
      "kind": "class.con_top@tag.a.2@text",
      "lastChapter": "id.list@tag.dd.0@text",
      "name": "id.info@tag.h1@text"
    },
    "ruleContent": {
      "content": "id.content@html##(最新网址：www.badaoge.org|请记住本书首发域名：www.badaoge.org。笔尖中文手机版阅读网址：m.badaoge.org|http://www.badaoge.org/book/.+.html)",
      "imageStyle": "0"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.span@text",
      "bookList": "id.hotcontent@class.item",
      "bookUrl": "class.image@tag.a@href",
      "coverUrl": "tag.img.0@src",
      "name": "tag.a.1@text"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd!0:1:2:3:4:5:6:7:8:9",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "/modules/article/search.php,{'body':'searchkey={{key}}','method':'POST'}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🔞",
    "bookSourceName": "女生文学",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.dmx5.cc",
    "customButton": false,
    "customOrder": 646,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"连载榜单\",\"url\":\"/all/all_default_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"总点击榜\",\"url\":\"/all/all_allvisit_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"月点击榜\",\"url\":\"/all/all_monthvisit_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"周点击榜\",\"url\":\"/all/all_weekvisit_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"日点击榜\",\"url\":\"/all/all_dayvisit_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"总推荐榜\",\"url\":\"/all/all_allvote_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"月推荐榜\",\"url\":\"/all/all_monthvote_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"周推荐榜\",\"url\":\"/all/all_weekvote_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"日推荐榜\",\"url\":\"/all/all_dayvote_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"总收藏榜\",\"url\":\"/all/all_goodnum_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"总字数榜\",\"url\":\"/all/all_size_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"最新入库\",\"url\":\"/all/all_postdate_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"最近更新\",\"url\":\"/all/all_lastupdate_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"连载分类\",\"url\":\"/all/all_default_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻修仙\",\"url\":\"/all/xh_default_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"现代都市\",\"url\":\"/all/ds_default_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"古代架空\",\"url\":\"/all/jk_default_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"穿越重生\",\"url\":\"/all/cy_default_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"网游动漫\",\"url\":\"/all/wy_default_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"科幻未来\",\"url\":\"/all/kh_default_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"恐怖灵异\",\"url\":\"/all/ly_default_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"BG言情\",\"url\":\"/all/bg_default_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"其他类型\",\"url\":\"/all/qt_default_0_0_0_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"完结榜单\",\"url\":\"/all/all_default_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"总点击榜\",\"url\":\"/all/all_allvisit_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"月点击榜\",\"url\":\"/all/all_monthvisit_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"周点击榜\",\"url\":\"/all/all_weekvisit_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"日点击榜\",\"url\":\"/all/all_dayvisit_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"总推荐榜\",\"url\":\"/all/all_allvote_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"月推荐榜\",\"url\":\"/all/all_monthvote_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"周推荐榜\",\"url\":\"/all/all_weekvote_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"日推荐榜\",\"url\":\"/all/all_dayvote_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"总收藏榜\",\"url\":\"/all/all_goodnum_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"总字数榜\",\"url\":\"/all/all_size_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"最新入库\",\"url\":\"/all/all_postdate_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"最近更新\",\"url\":\"/all/all_lastupdate_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"完结分类\",\"url\":\"/all/all_default_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻修仙\",\"url\":\"/all/xh_default_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"现代都市\",\"url\":\"/all/ds_default_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"古代架空\",\"url\":\"/all/jk_default_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"穿越重生\",\"url\":\"/all/cy_default_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"网游动漫\",\"url\":\"/all/wy_default_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"科幻未来\",\"url\":\"/all/kh_default_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"恐怖灵异\",\"url\":\"/all/ly_default_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"BG言情\",\"url\":\"/all/bg_default_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"其他类型\",\"url\":\"/all/qt_default_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1777917691967,
    "respondTime": 6858,
    "ruleBookInfo": {
      "author": ".rt@em.0@text",
      "coverUrl": ".lf@img@src",
      "intro": ".intro@text##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": ".place@a.1@text&&.rt@em.1:2@text##.*：",
      "lastChapter": ".jieshao@.rt@a.0@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": ".rt@h1@text"
    },
    "ruleContent": {
      "content": ".yd_text2@html"
    },
    "ruleExplore": {
      "author": ".writer_name1@span@text",
      "bookList": ".writer_i_4",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": ".writer_name3@a@text",
      "kind": ".writer_name2@i@text&&.writer_name4@ownText&&.writer_name4@span@text##\\s.*",
      "lastChapter": ".writer_name4@a@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": ".writer_name1@a@text"
    },
    "ruleSearch": {
      "author": ".zz@text",
      "bookList": ".booklist@li!0",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.+\\D((\\d+)\\d{3})\\D##/files/article/image/$2/$1/$1s.jpg###",
      "kind": ".zt,.sj@text",
      "lastChapter": ".zj@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": ".mz@text"
    },
    "ruleToc": {
      "chapterList": ".mulu@li@a",
      "chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "href"
    },
    "searchUrl": "{{cookie.removeCookie(source.getKey())}}\n/search/book,{\n  \"charset\": \"gbk\",\n  \"method\": \"post\",\n  \"body\": \"searchkey={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爱去小说",
    "bookSourceType": 3,
    "bookSourceUrl": "https://www.aiqu999.com/",
    "customButton": false,
    "customOrder": 647,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"最近更新–强推\",\"url\":\"/list-high-0-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"耽美小说\",\"url\":\"/list-high-2-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女生小说\",\"url\":\"/list-high-1-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"男生小说\",\"url\":\"#\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36\"}",
    "lastUpdateTime": 1786785107558,
    "respondTime": 45324,
    "ruleBookInfo": {
      "canReName": "1",
      "downloadUrls": "<js>\nif(baseUrl.indexOf('read')>-1){\n\turl = book.origin + '/' +java.getString(\"@@.readcontent@a@href\")\n\thtml = java.ajax(url)\n\tresult = html.match(/var downloadurl = \"([\\s\\S]+?)\";/)[1]\n}else{\n\turl = baseUrl.replace(/.*-(\\d+).*/, \"https://www.527txt.com/txt-xx/softdownfree.asp?softid=$1&ckm=mianfei\")\n\thtml = java.ajax(url)\n\tjava.setContent(html)\n\tresult = java.getString(\"@@text.第一下载地址(首选)@href\")\n}\n</js>",
      "intro": "#mainDownInfo@center.0@html||.readcontent@html"
    },
    "ruleContent": {},
    "ruleExplore": {
      "author": ".rt@text##作者：(\\w+)##$1###",
      "bookList": ".mainlist_li||.mainSoftName||.read-list",
      "bookUrl": "a.1@href||a@href",
      "intro": ".pk-word-break-all@text",
      "kind": ".pk-text-success@text",
      "name": "a.1@text||a@text||.rt@text##.*《|》.*|完结|\\+番外|强推"
    },
    "ruleSearch": {
      "author": "a.search-card-author@a@text##作者：",
      "bookList": "#searchmain > .search-card",
      "bookUrl": ".search-card-link@a@href",
      "intro": ".search-card-content@text",
      "kind": "{{@@class.search-card-category@tag.a@text}}",
      "lastChapter": ".search-card-date@.oldDate@text",
      "name": ".search-card-title@a@text##《|》"
    },
    "ruleToc": {
      "chapterList": "html",
      "chapterName": "{{'🐑完结'}}"
    },
    "searchUrl": "https://www.aiqu999.com/search.asp?word={{key}},{\"charset\":\"gb2312\"}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "阳光小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.ygzww.com",
    "bookUrlPattern": "http://www.ygzww.com/\\d+/\\d+/",
    "customButton": false,
    "customOrder": 648,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"⭕分类小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"首页\",\n    \"url\": \"/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/list1/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/list2/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/list3/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/list4/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/list5/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/list6/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/list7/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/list8/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕完结小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/full/1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/full/2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/full/3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/full/4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/full/5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/full/6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/full/7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/full/8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕排行榜⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"周榜\",\n    \"url\": \"/top/week_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月榜\",\n    \"url\": \"/top/month_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总榜\",\n    \"url\": \"/top/all_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/top/all_1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/top/all_2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/top/all_3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/top/all_4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/top/all_5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/top/all_6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/top/all_7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/top/all_8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "lastUpdateTime": 1787409675238,
    "respondTime": 10861,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content&&\n[property=\"og:novel:status\"]@content&&\n[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:title\"]@content##小说全文免费阅读完整版|小说全集|最新.*"
    },
    "ruleContent": {
      "content": "class.font_max@html",
      "nextContentUrl": "text.下一@href",
      "replaceRegex": "##本章未完.*|第.*[(1/2)]页|(?:[^\\u4E00-\\u9FA5\\s！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}(?<![\\.．点丶。])[\\.．点丶。]{1,2}(?![\\.．点丶。])(?:[^A-Z\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])(?:[^\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])+|(?:[^\\u4E00-\\u9FA5\\n！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}[\\.．点丶。](?:[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[oO][^\\n\\u4E00-\\u9FA5A-z]*[mM]|[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[nN]|[^\\n\\u4E00-\\u9FA5A-z]*[nN][^\\n\\u4E00-\\u9FA5A-z]*[eE][^\\n\\u4E00-\\u9FA5A-z]*[tT])(?![A-z])"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "dd.1@span.0@text",
      "bookList": ".col-md-6@dl",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "kind": "dd.2:3@text##.*：|.*：",
      "lastChapter": "dd.4@a@text",
      "name": "h3@a@text##.*\\]|小说全文阅读|小说全集"
    },
    "ruleToc": {
      "chapterList": ".book_list2 li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": ".page-link@a@href\n@js:\nnext = [];\nurl = result[0];\nlength = result.length;\np = src.match(/page-link\">1\\/(\\d+)/)||[];\npage = Number(p[1]);\nif(length < page){\n\tfor(i = 2; i <= page; i++){\n\t\tlink = String(url).replace(/_\\d+/,`_${i}`);\n\t\tnext.push(link)\n\t\t}\n\t\tnext;\n\t}else result"
    },
    "searchUrl": "/search.php?q={{key}}&p={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "百草露小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.baicaolu.com",
    "customButton": false,
    "customOrder": 649,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"武侠小说\",\"url\":\"/class/lastupdate_2_0_0_1.html\"},{\"title\":\"都市小说\",\"url\":\"/class/lastupdate_3_0_0_1.html\"},{\"title\":\"军史小说\",\"url\":\"/class/lastupdate_4_0_0_1.html\"},{\"title\":\"网游小说\",\"url\":\"/class/lastupdate_5_0_0_1.html\"},{\"title\":\"科幻小说\",\"url\":\"/class/lastupdate_6_0_0_1.html\"},{\"title\":\"灵异小说\",\"url\":\"/class/lastupdate_7_0_0_1.html\"},{\"title\":\"其他小说\",\"url\":\"/class/lastupdate_8_0_0_1.html\"}]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36\"}",
    "lastUpdateTime": 0,
    "respondTime": 8092,
    "ruleBookInfo": {
      "author": "class.author@text",
      "coverUrl": "tag.img.0@src",
      "kind": "class.blue@text",
      "lastChapter": "class.update@tag.a@text",
      "name": "class.bookname@h1@text",
      "tocUrl": "text.查看更多章节@href"
    },
    "ruleContent": {
      "content": "<js>\nvar bes = result.match(/PHA\\+[A-Za-z0-9+\\/]+={0,2}/g);\n//java.log(String(bes))\nif (!bes) {\n    var ml = java.webView(null,baseUrl,null);\n    var txt = java.getString(\".word_read@p@text\",ml);\n    java.toast(\"正文解密失败，转为webView动态加载。\");\n} else {\nvar result = [];\nfor (var i = 0; i < bes.length; i++) {\n    var bsej = java.base64Decode(bes[i]);\n    var txtt = String(bsej);\n    result.push(txtt);\n      }\n\tvar txt = result.join('\\n');\n}\ntxt;\n</js>",
      "nextContentUrl": "@js:\neval((src.match(/hhekgsv='[^']+?'/)||[]).toString());"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".s5@span@text",
      "bookList": "class.sort_list@tag.li",
      "bookUrl": ".s2@a@href",
      "name": ".s2@text"
    },
    "ruleToc": {
      "chapterList": "class.chapter-list@tag.li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "option@value||text.下一页@href"
    },
    "searchUrl": "{{cookie.removeCookie(source.getKey())}}\n/search.html, {\"method\": \"POST\", \"body\": \"s={{key}}\"}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "读趣小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.duqu.la/",
    "bookUrlPattern": "https://www.duqu.la/book/\\d+/",
    "customButton": false,
    "customOrder": 650,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"分类\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"全部分类\",\n    \"url\": \"/fenlei/lastupdate_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻修真\",\n    \"url\": \"/fenlei/lastupdate_1_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"重生穿越\",\n    \"url\": \"/fenlei/lastupdate_2_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市小说\",\n    \"url\": \"/fenlei/lastupdate_3_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"军史小说\",\n    \"url\": \"/fenlei/lastupdate_4_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游小说\",\n    \"url\": \"/fenlei/lastupdate_5_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻小说\",\n    \"url\": \"/fenlei/lastupdate_6_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"灵异小说\",\n    \"url\": \"/fenlei/lastupdate_7_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他小说\",\n    \"url\": \"/fenlei/lastupdate_9_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"排序\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"日排行榜\",\n    \"url\": \"/fenlei/dayvisit_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"周排行榜\",\n    \"url\": \"/fenlei/weekvisit_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月排行榜\",\n    \"url\": \"/fenlei/monthvisit_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总排行榜\",\n    \"url\": \"/fenlei/allvisit_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"日推荐榜\",\n    \"url\": \"/fenlei/dayvote_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"周推荐榜\",\n    \"url\": \"/fenlei/weekvote_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月推荐榜\",\n    \"url\": \"/fenlei/monthvote_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总推荐榜\",\n    \"url\": \"/fenlei/allvote_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总收藏榜\",\n    \"url\": \"/fenlei/goodnum_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"字数\",\n    \"url\": \"/fenlei/size_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"最新入库\",\n    \"url\": \"/fenlei/postdate_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"最新更新\",\n    \"url\": \"/fenlei/lastupdate_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"字数\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"不限字数\",\n    \"url\": \"/fenlei/lastupdate_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"30万以下\",\n    \"url\": \"/fenlei/lastupdate_0_1_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"30-50万\",\n    \"url\": \"/fenlei/lastupdate_0_2_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"50-100万\",\n    \"url\": \"/fenlei/lastupdate_0_3_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"100-200万\",\n    \"url\": \"/fenlei/lastupdate_0_4_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"200万以上\",\n    \"url\": \"/fenlei/lastupdate_0_5_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"状态\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"不限状态\",\n    \"url\": \"/fenlei/lastupdate_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"正在连载\",\n    \"url\": \"/fenlei/lastupdate_0_0_1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"已经完结\",\n    \"url\": \"/fenlei/lastupdate_0_0_2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "header": "@js:JSON.stringify({\n\t\"Referer\": baseUrl+\"/\",\n\"X-Requested-With\": \"mark.via\",\n\"Accept-Language\": \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\",\n\"User-Agent\": \"Mozilla/5.0 (Linux; Android 10;  Build/QP1A.190711.020) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36\"})",
    "lastUpdateTime": 1787323748372,
    "respondTime": 24893,
    "ruleBookInfo": {
      "author": "author",
      "coverUrl": "cover",
      "init": "@js:\n(function(){\n    let doc = org.jsoup.Jsoup.parse(result)\n    let og = (selector) => doc.select('[property=\"og:' + selector + '\"]').attr('content')\n    return {\n        name: og('novel:book_name'),\n        author: og('novel:author'),\n        kind: og('novel:category')\n        +'•'+og('novel:status')\n      +'•'+String(og('novel:update_time')),\n        latest: og('novel:latest_chapter_name'),\n        cover: og('image'),\n        intro: og('description'),\n        url:og('novel:read_url')\n    }\n})()",
      "intro": "intro",
      "kind": "kind",
      "lastChapter": "latest",
      "name": "name"
    },
    "ruleContent": {
      "content": "<js>\nvar baseUrlData = src.match(/PHA\\+[A-Za-z0-9+\\/]+={0,2}/g);\n\nif(baseUrlData){\n\t\n baseUrlData.map(item=>{\n\t\treturn  String(java.base64Decode(item))\n\t}).join('\\n')\n\t\n}else{\n\t\njava.getStringList(\"#txt@html\",java.webView(null,baseUrl,null))[0];\n \n}\n</js>",
      "nextContentUrl": "@js:\nvar hhekgsv =((src.match(/var hhekgsv+( = |=)+(\"(.+)\"|'(.+)')+;/)||[])[2]||'').replace(/\"|'/g,'').split(\";\")[0]\nif(hhekgsv.includes(\"_\")){\nresult=hhekgsv\n}",
      "replaceRegex": "##.*大家收藏：.*"
    },
    "ruleExplore": {
      "author": ".s4@text",
      "bookList": ".sort_list@li",
      "bookUrl": "a.0@href",
      "kind": ".s1,.s5@text##\\[|\\]",
      "name": ".s2@text"
    },
    "ruleSearch": {
      "author": ".s5@text",
      "bookList": ".sort_list@li",
      "bookUrl": "a.0@href",
      "checkKeyWord": "https://www.duqu.la/298_298031/",
      "name": ".s2@text"
    },
    "ruleToc": {
      "chapterList": "h3:contains(章节列表)+.block-box ul.chapter-list li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "a.btn-mulu@href\n<js>\nvar i = result && result[0];\nurl = book.origin + (i || \"\");\njava.ajax(url)\n</js>\nselect.0@option!0@value"
    },
    "searchUrl": "/search.html,{\n  \"body\": \"s={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "搜读中文",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.soduzw.org",
    "bookUrlPattern": "http://m.soduzw.org/\\w+.html",
    "customButton": false,
    "customOrder": 651,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "                        首页                        ::/\n看过的书::/user/history/index.html\n最新更新::/top/lastupdate<,/{{page}}>.html\n点击排行::/top/monthvisit<,/{{page}}>.html",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9; MIX 2 Build/PKQ1.190118.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/80.0.3987.99 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1734624323888,
    "respondTime": 4538,
    "ruleBookInfo": {
      "author": ".author a@text",
      "coverUrl": ".cover img@src",
      "intro": ".box .con@text",
      "kind": ".info div[class~=sort|desc]@text\n##.*：",
      "lastChapter": ".new@text##最新章节：",
      "name": "h1.title@text",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "#articlecon@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##.*[(（]第\\d+.\\d*页[）)]|本章未完.*"
    },
    "ruleExplore": {
      "bookList": ""
    },
    "ruleSearch": {
      "author": "",
      "bookList": ".list li",
      "bookUrl": "a.0@href",
      "checkKeyWord": "剑来",
      "coverUrl": "a.0@href##((\\d{3})\\d+)##/files/article/image/$2/$1/$1s.jpg###",
      "kind": "span.time@text",
      "lastChapter": "a.1@text",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": "-@css:.list li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value||.next a@href"
    },
    "searchUrl": "http://m.soduzw.org/search.html?searchkey={{key}}&searchtype=novelname",
    "weight": 0
  },
  {
    "bookSourceComment": "同站：\nhttps://m.popofree.com\nhttps://m.po18n.com\nhttps://wap.po18.city\nhttps://m.po18me.com\n御书屋：https://m.yushuwu.uk\n PO文：https://m.powenxue13.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "肉色屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.rousewu.cc/#🚀",
    "customButton": false,
    "customOrder": 652,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "   全 部   ::/wapsort/0_{{page}}.html\n玄幻奇幻::/wapsort/1_{{page}}.html\n武侠修真::/wapsort/2_{{page}}.html\n都市言情::/wapsort/3_{{page}}.html\n历史军事::/wapsort/4_{{page}}.html\n网游竞技::/wapsort/5_{{page}}.html\n科幻异能::/wapsort/6_{{page}}.html\n恐怖灵异::/wapsort/7_{{page}}.html\n其他类型::/wapsort/8_{{page}}.html",
    "lastUpdateTime": 1785669365424,
    "respondTime": 5920,
    "ruleBookInfo": {
      "author": ".article_info_td.0@div.0@text",
      "intro": "[style=\"padding:5px;font-size:12px;color:#666; line-height:auto\"]@text",
      "kind": ".article_info_td.0@div.3:1@text&&.article_info_td.1@div.0@text##.*：",
      "lastChapter": ".article_info_td.0@div.2@a@text&&class.article_info_td@tag.time@text\n<js>result.replace(/(.*)\\s/,'$1 • ')</js>",
      "name": "[style=\"background:none;\"]@text",
      "tocUrl": "[style=\"color:red;\"]@href"
    },
    "ruleContent": {
      "content": "#nr1@html"
    },
    "ruleExplore": {
      "author": ".author@text||strong@text||span@text",
      "bookList": ".s_m@.last_li||id.list_ul@li||.common-bookele",
      "bookUrl": ".name@href||a.1@href||a.0@href",
      "coverUrl": "@js:'https://img.gb84.com/image/1/1024/1024s.jpg'",
      "intro": ".abstract@text",
      "kind": ".words@text||time@text||a.0@text##.*：",
      "name": ".name@text||h3@text||a.1@text"
    },
    "ruleSearch": {
      "author": "strong@text",
      "bookList": ".common-bookele",
      "bookUrl": "a.0@href",
      "coverUrl": "@js:'https://img.gb84.com/image/1/1024/1024s.jpg'",
      "kind": ".lastupdate@text",
      "name": ".articlename@text"
    },
    "ruleToc": {
      "chapterList": "ul@li!-1@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/s.php,{\n'charset': '',\n'method': 'POST',\n'body': 'type=articlename&s={{key}}'\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "基本全是汉化的漫画，画质较高",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "Nhentai漫",
    "bookSourceType": 2,
    "bookSourceUrl": "https://ch.hentai-one.com/",
    "customButton": false,
    "customOrder": 653,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"🔖排行🔖\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"全部\",\n    \"url\": \"https://ch.hentai-one.com/articles/rank?t=all_time&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"每月\",\n    \"url\": \"https://ch.hentai-one.com/articles/rank?t=monthly&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"每周\",\n    \"url\": \"https://ch.hentai-one.com/articles/rank?t=weekly&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"每日\",\n    \"url\": \"https://ch.hentai-one.com/articles/rank?t=daily&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n    {\n    \"title\": \"🔖类型🔖\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"同人志\",\n    \"url\": \"https://ch.hentai-one.com/categories/2?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"漫画\",\n    \"url\": \"https://ch.hentai-one.com/categories/4?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"韩漫\",\n    \"url\": \"https://ch.hentai-one.com/tags/6875?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  }\n  ,\n    {\n    \"title\": \"🔖人气🔖\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"单女\",\n    \"url\": \"https://ch.hentai-one.com/tags/5744?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"大胸\",\n    \"url\": \"https://ch.hentai-one.com/tags/186?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"单男\",\n    \"url\": \"https://ch.hentai-one.com/tags/5745?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"中出\",\n    \"url\": \"https://ch.hentai-one.com/tags/4170?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"多人\",\n    \"url\": \"https://ch.hentai-one.com/tags/1564?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"口交\",\n    \"url\": \"https://ch.hentai-one.com/tags/215?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"萝莉\",\n    \"url\": \"https://ch.hentai-one.com/tags/3358?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"制服\",\n    \"url\": \"https://ch.hentai-one.com/tags/5409?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"强奸\",\n    \"url\": \"https://ch.hentai-one.com/tags/5056?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"阿黑颜\",\n    \"url\": \"https://ch.hentai-one.com/tags/30?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"全彩\",\n    \"url\": \"https://ch.hentai-one.com/tags/1227?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"正太\",\n    \"url\": \"https://ch.hentai-one.com/tags/5632?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"束缚\",\n    \"url\": \"https://ch.hentai-one.com/tags/230?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"乱伦\",\n    \"url\": \"https://ch.hentai-one.com/tags/2224?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"催眠\",\n    \"url\": \"https://ch.hentai-one.com/tags/3766?type=popular&page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  }\n  ,{\n    \"title\": \"🔖更新🔖\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"单女\",\n    \"url\": \"https://ch.hentai-one.com/tags/5744?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"大胸\",\n    \"url\": \"https://ch.hentai-one.com/tags/186?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"单男\",\n    \"url\": \"https://ch.hentai-one.com/tags/5745?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"中出\",\n    \"url\": \"https://ch.hentai-one.com/tags/4170?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"多人\",\n    \"url\": \"https://ch.hentai-one.com/tags/1564?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"口交\",\n    \"url\": \"https://ch.hentai-one.com/tags/215?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"萝莉\",\n    \"url\": \"https://ch.hentai-one.com/tags/3358?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"制服\",\n    \"url\": \"https://ch.hentai-one.com/tags/5409?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"强奸\",\n    \"url\": \"https://ch.hentai-one.com/tags/5056?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"阿黑颜\",\n    \"url\": \"https://ch.hentai-one.com/tags/30?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"全彩\",\n    \"url\": \"https://ch.hentai-one.com/tags/1227?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"正太\",\n    \"url\": \"https://ch.hentai-one.com/tags/5632?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"束缚\",\n    \"url\": \"https://ch.hentai-one.com/tags/230?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"乱伦\",\n    \"url\": \"https://ch.hentai-one.com/tags/2224?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  },\n  {\n    \"title\": \"催眠\",\n    \"url\": \"https://ch.hentai-one.com/tags/3766?page={{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.3\n    }\n  }\n]",
    "lastUpdateTime": 1786845135468,
    "respondTime": 5241,
    "ruleBookInfo": {
      "author": "//div[@id='article-tag-information']/div/div[1]//p/text()",
      "coverUrl": "//div[@id='article-details']//img/@src",
      "kind": "//div[@id='article-tag-information']/div/div[6]//div/text()|//div[@id='article-tag-information']/div/div[7]//div/text()|//div[@id='article-tag-information']/div/div[5]//div/text()",
      "name": "//div[@id='article-details']//h1/text()"
    },
    "ruleContent": {
      "content": "//script@js:\nresult.match(/https:\\/\\/cdn\\.imagedeliveries\\.com\\/[a-zA-Z0-9\\/_-]+?\\.(webp|png|jpg|jpeg)/g)\n.map(x=>'<img src=\\\"'+x+'\\\">').join(\"\\n\")",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": "//div[contains(@class,'container')]//a[contains(@class,'group')]",
      "bookUrl": "a@href",
      "checkKeyWord": "姐姐",
      "coverUrl": "img@src",
      "kind": "img@alt@js:'NHentai漫'",
      "name": "//a[contains(@class,'group')]/div[2]/div[2]/div[1]/text()"
    },
    "ruleToc": {
      "chapterList": "//div[contains(@class,'container')]/div/a[1]@js:[result]",
      "chapterName": "//a/div/img/@alt@js:'全话阅读'",
      "chapterUrl": "a@href"
    },
    "searchUrl": "https://ch.hentai-one.com/articles/search?keyword={{key}}&type=popular",
    "weight": 50
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "海棠书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.haitang4.com",
    "customButton": false,
    "customOrder": 654,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"排行榜\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"总排行\",\"url\":\"/top/allvisit-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月排行\",\"url\":\"/top/monthvisit-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总推荐\",\"url\":\"/top/allvote-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月推荐\",\"url\":\"/top/monthvote-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总收藏\",\"url\":\"/top/goodnum-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"字数榜\",\"url\":\"/top/size-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"更新榜\",\"url\":\"/top/lastupdate-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"新入库\",\"url\":\"/top/postdate-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"全部分类\",\"url\":\"/sort/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"玄幻奇幻\",\"url\":\"/sort/1-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠修真\",\"url\":\"/sort/2-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市言情\",\"url\":\"/sort/3-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史穿越\",\"url\":\"/sort/4-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游竞技\",\"url\":\"/sort/5-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻未来\",\"url\":\"/sort/6-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"恐怖悬疑\",\"url\":\"/sort/7-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他类型\",\"url\":\"/sort/8-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"完本小说\",\"url\":\"/wanben-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1786001500015,
    "respondTime": 6517,
    "ruleBookInfo": {
      "author": "##:author\"[^\"]+\"([^\"]*)##$1###",
      "coverUrl": "##og:image\"[^\"]+\"([^\"]*)##$1###",
      "intro": "##:description\"[^\"]+\"([^\"]*)##$1###",
      "kind": "##:category\"[^\"]+\"([^\"]*)##$1###",
      "lastChapter": "##_chapter_name\"[^\"]+\"([^\"]*)##$1###",
      "name": "##:book_name\"[^\"]+\"([^\"]*)##$1###"
    },
    "ruleContent": {
      "content": "div#content@html",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author@text",
      "bookList": "ul.topul>li",
      "bookUrl": "h2>a@href",
      "coverUrl": "img@src",
      "intro": "p@text",
      "kind": "i.lianzai@text",
      "name": "h2>a@text",
      "wordCount": ".other@text"
    },
    "ruleToc": {
      "chapterList": "ul.2@li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "/s.php,{\n  \"body\": \"searchkey={{key}}\",\n  \"charset\": \"UTF-8\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.biqusa.com/#pb1101",
    "bookUrlPattern": "https://www.biqusa.com/\\d+_\\d+/",
    "customButton": false,
    "customOrder": 655,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/xuanhuanxiaoshuo/1_{{page}}.html\n修真小说::/xiuzhenxiaoshuo/2_{{page}}.html\n都市小说::/dushixiaoshuo/3_{{page}}.html\n穿越小说::/chuanyuexiaoshuo/4_{{page}}.html\n网游小说::/wangyouxiaoshuo/5_{{page}}.html\n科幻小说::/kehuanxiaoshuo/6_{{page}}.html\n其它小说::/qitaxiaoshuo/7_{{page}}.html",
    "lastUpdateTime": 1736568678380,
    "loginUrl": "",
    "respondTime": 2276,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@a@text",
      "coverUrl": "id.fmimg@img@src",
      "intro": "id.intro@text",
      "kind": "id.info@tag.p.2@text##最后更新：",
      "lastChapter": "id.info@tag.p.3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "id.bookdetail@id.info@h1@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节"
    },
    "ruleContent": {
      "content": "id.content@textNodes##本小说.*无广告免费阅读。|：。："
    },
    "ruleExplore": {
      "author": "class.s4@a@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@tag.a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.biqusa.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "class.s5@text",
      "lastChapter": "class.s3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.s2@a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节"
    },
    "ruleSearch": {
      "author": "class.s4@a@text",
      "bookList": "class.novelslist2@ul@li",
      "bookUrl": "class.s2@a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.biqusa.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "class.s6@text",
      "lastChapter": "class.s3@a@text##免费章节 |正文卷 |正文 |VIP章节 ",
      "name": "class.s2@a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节"
    },
    "ruleToc": {
      "chapterList": "//*[@id=\"list\"]//dt[2]/following-sibling::dd/a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://www.biqusa.com/search.html?name={{key}}",
    "weight": 55
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "火高小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.00shu.info/",
    "bookUrlPattern": "http://www.00shu.com/\\d+/\\d+/",
    "customButton": false,
    "customOrder": 656,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1785905573898,
    "respondTime": 1166,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text",
      "coverUrl": "id.fmimg@img@src",
      "intro": "id.intro@text",
      "kind": "id.info@tag.p.2@text##最后更新：",
      "lastChapter": "id.info@tag.p.3@a@text",
      "name": "id.info@h1@text"
    },
    "ruleContent": {
      "content": "id.content@html"
    },
    "ruleExplore": {
      "author": "class.s5@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@a@href@js:\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'http://www.00shu.com/'+iid+'/'+id+'/'",
      "coverUrl": "class.s2@a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'http://www.00shu.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "class.s3@text",
      "name": "class.s2@a@text"
    },
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.grid@tr!0",
      "bookUrl": "tag.td.0@a@href",
      "coverUrl": "tag.td.0@a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'http://www.00shu.com/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "kind": "tag.td.4@text",
      "lastChapter": "tag.td.1@a@text",
      "name": "tag.td.0@a@text",
      "wordCount": "tag.td.3@text"
    },
    "ruleToc": {
      "chapterList": "id.list@dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "https://www.00shu.info/modules/article/search.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "图库漫画",
    "bookSourceType": 2,
    "bookSourceUrl": "https://www.tuku.cc/",
    "customButton": false,
    "customOrder": 657,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n    {\n        \"title\": \"连载中\",\n        \"url\": \"\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 1,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"热血-港台\",\n        \"url\": \"/comics-region1-tag1-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"恋爱-港台\",\n        \"url\": \"/comics-region1-tag2-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"百合-港台\",\n        \"url\": \"/comics-region1-tag4-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"彩虹-港台\",\n        \"url\": \"/comics-region1-tag5-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"冒险-港台\",\n        \"url\": \"/comics-region1-tag6-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"后宫-港台\",\n        \"url\": \"/comics-region1-tag9-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"治愈-港台\",\n        \"url\": \"/comics-region1-tag10-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"悬疑-港台\",\n        \"url\": \"/comics-region1-tag16-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"搞笑-港台\",\n        \"url\": \"/comics-region1-tag18-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"奇幻-港台\",\n        \"url\": \"/comics-region1-tag19-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"历史-港台\",\n        \"url\": \"/comics-region1-tag24-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"古风-港台\",\n        \"url\": \"/comics-region1-tag31-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"都市-港台\",\n        \"url\": \"/comics-region1-tag33-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"热血-日本\",\n        \"url\": \"/comics-region2-tag1-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"恋爱-日本\",\n        \"url\": \"/comics-region2-tag2-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"百合-日本\",\n        \"url\": \"/comics-region2-tag4-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"彩虹-日本\",\n        \"url\": \"/comics-region2-tag5-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"冒险-日本\",\n        \"url\": \"/comics-region2-tag6-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"后宫-日本\",\n        \"url\": \"/comics-region2-tag9-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"治愈-日本\",\n        \"url\": \"/comics-region2-tag10-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"悬疑-日本\",\n        \"url\": \"/comics-region2-tag16-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"搞笑-日本\",\n        \"url\": \"/comics-region2-tag18-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"奇幻-日本\",\n        \"url\": \"/comics-region2-tag19-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"历史-日本\",\n        \"url\": \"/comics-region2-tag24-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"古风-日本\",\n        \"url\": \"/comics-region2-tag31-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"都市-日本\",\n        \"url\": \"/comics-region2-tag33-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"热血-韩国\",\n        \"url\": \"/comics-region3-tag1-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"恋爱-韩国\",\n        \"url\": \"/comics-region3-tag2-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"百合-韩国\",\n        \"url\": \"/comics-region3-tag4-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"彩虹-韩国\",\n        \"url\": \"/comics-region3-tag5-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"冒险-韩国\",\n        \"url\": \"/comics-region3-tag6-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"后宫-韩国\",\n        \"url\": \"/comics-region3-tag9-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"治愈-韩国\",\n        \"url\": \"/comics-region3-tag10-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"悬疑-韩国\",\n        \"url\": \"/comics-region3-tag16-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"搞笑-韩国\",\n        \"url\": \"/comics-region3-tag18-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"奇幻-韩国\",\n        \"url\": \"/comics-region3-tag19-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"历史-韩国\",\n        \"url\": \"/comics-region3-tag24-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"古风-韩国\",\n        \"url\": \"/comics-region3-tag31-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"都市-韩国\",\n        \"url\": \"/comics-region3-tag33-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"热血-大陆\",\n        \"url\": \"/comics-region4-tag1-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"恋爱-大陆\",\n        \"url\": \"/comics-region4-tag2-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"百合-大陆\",\n        \"url\": \"/comics-region4-tag4-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"彩虹-大陆\",\n        \"url\": \"/comics-region4-tag5-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"冒险-大陆\",\n        \"url\": \"/comics-region4-tag6-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"后宫-大陆\",\n        \"url\": \"/comics-region4-tag9-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"治愈-大陆\",\n        \"url\": \"/comics-region4-tag10-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"悬疑-大陆\",\n        \"url\": \"/comics-region4-tag16-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"搞笑-大陆\",\n        \"url\": \"/comics-region4-tag18-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"奇幻-大陆\",\n        \"url\": \"/comics-region4-tag19-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"历史-大陆\",\n        \"url\": \"/comics-region4-tag24-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"古风-大陆\",\n        \"url\": \"/comics-region4-tag31-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"都市-大陆\",\n        \"url\": \"/comics-region4-tag33-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"热血-欧美\",\n        \"url\": \"/comics-region5-tag1-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"恋爱-欧美\",\n        \"url\": \"/comics-region5-tag2-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"百合-欧美\",\n        \"url\": \"/comics-region5-tag4-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"彩虹-欧美\",\n        \"url\": \"/comics-region5-tag5-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"冒险-欧美\",\n        \"url\": \"/comics-region5-tag6-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"后宫-欧美\",\n        \"url\": \"/comics-region5-tag9-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"治愈-欧美\",\n        \"url\": \"/comics-region5-tag10-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"悬疑-欧美\",\n        \"url\": \"/comics-region5-tag16-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"搞笑-欧美\",\n        \"url\": \"/comics-region5-tag18-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"奇幻-欧美\",\n        \"url\": \"/comics-region5-tag19-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"历史-欧美\",\n        \"url\": \"/comics-region5-tag24-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"古风-欧美\",\n        \"url\": \"/comics-region5-tag31-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"都市-欧美\",\n        \"url\": \"/comics-region5-tag33-status1-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"已完结\",\n        \"url\": \"\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 1,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"热血-港台\",\n        \"url\": \"/comics-region1-tag1-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"恋爱-港台\",\n        \"url\": \"/comics-region1-tag2-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"百合-港台\",\n        \"url\": \"/comics-region1-tag4-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"彩虹-港台\",\n        \"url\": \"/comics-region1-tag5-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"冒险-港台\",\n        \"url\": \"/comics-region1-tag6-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"后宫-港台\",\n        \"url\": \"/comics-region1-tag9-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"治愈-港台\",\n        \"url\": \"/comics-region1-tag10-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"悬疑-港台\",\n        \"url\": \"/comics-region1-tag16-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"搞笑-港台\",\n        \"url\": \"/comics-region1-tag18-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"奇幻-港台\",\n        \"url\": \"/comics-region1-tag19-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"历史-港台\",\n        \"url\": \"/comics-region1-tag24-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"古风-港台\",\n        \"url\": \"/comics-region1-tag31-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"都市-港台\",\n        \"url\": \"/comics-region1-tag33-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"热血-日本\",\n        \"url\": \"/comics-region2-tag1-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"恋爱-日本\",\n        \"url\": \"/comics-region2-tag2-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"百合-日本\",\n        \"url\": \"/comics-region2-tag4-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"彩虹-日本\",\n        \"url\": \"/comics-region2-tag5-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"冒险-日本\",\n        \"url\": \"/comics-region2-tag6-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"后宫-日本\",\n        \"url\": \"/comics-region2-tag9-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"治愈-日本\",\n        \"url\": \"/comics-region2-tag10-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"悬疑-日本\",\n        \"url\": \"/comics-region2-tag16-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"搞笑-日本\",\n        \"url\": \"/comics-region2-tag18-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"奇幻-日本\",\n        \"url\": \"/comics-region2-tag19-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"历史-日本\",\n        \"url\": \"/comics-region2-tag24-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"古风-日本\",\n        \"url\": \"/comics-region2-tag31-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"都市-日本\",\n        \"url\": \"/comics-region2-tag33-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"热血-韩国\",\n        \"url\": \"/comics-region3-tag1-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"恋爱-韩国\",\n        \"url\": \"/comics-region3-tag2-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"百合-韩国\",\n        \"url\": \"/comics-region3-tag4-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"彩虹-韩国\",\n        \"url\": \"/comics-region3-tag5-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"冒险-韩国\",\n        \"url\": \"/comics-region3-tag6-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"后宫-韩国\",\n        \"url\": \"/comics-region3-tag9-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"治愈-韩国\",\n        \"url\": \"/comics-region3-tag10-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"悬疑-韩国\",\n        \"url\": \"/comics-region3-tag16-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"搞笑-韩国\",\n        \"url\": \"/comics-region3-tag18-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"奇幻-韩国\",\n        \"url\": \"/comics-region3-tag19-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"历史-韩国\",\n        \"url\": \"/comics-region3-tag24-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"古风-韩国\",\n        \"url\": \"/comics-region3-tag31-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"都市-韩国\",\n        \"url\": \"/comics-region3-tag33-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"热血-大陆\",\n        \"url\": \"/comics-region4-tag1-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"恋爱-大陆\",\n        \"url\": \"/comics-region4-tag2-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"百合-大陆\",\n        \"url\": \"/comics-region4-tag4-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"彩虹-大陆\",\n        \"url\": \"/comics-region4-tag5-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"冒险-大陆\",\n        \"url\": \"/comics-region4-tag6-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"后宫-大陆\",\n        \"url\": \"/comics-region4-tag9-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"治愈-大陆\",\n        \"url\": \"/comics-region4-tag10-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"悬疑-大陆\",\n        \"url\": \"/comics-region4-tag16-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"搞笑-大陆\",\n        \"url\": \"/comics-region4-tag18-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"奇幻-大陆\",\n        \"url\": \"/comics-region4-tag19-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"历史-大陆\",\n        \"url\": \"/comics-region4-tag24-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"古风-大陆\",\n        \"url\": \"/comics-region4-tag31-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"都市-大陆\",\n        \"url\": \"/comics-region4-tag33-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"热血-欧美\",\n        \"url\": \"/comics-region5-tag1-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"恋爱-欧美\",\n        \"url\": \"/comics-region5-tag2-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"百合-欧美\",\n        \"url\": \"/comics-region5-tag4-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"彩虹-欧美\",\n        \"url\": \"/comics-region5-tag5-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"冒险-欧美\",\n        \"url\": \"/comics-region5-tag6-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"后宫-欧美\",\n        \"url\": \"/comics-region5-tag9-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"治愈-欧美\",\n        \"url\": \"/comics-region5-tag10-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"悬疑-欧美\",\n        \"url\": \"/comics-region5-tag16-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"搞笑-欧美\",\n        \"url\": \"/comics-region5-tag18-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"奇幻-欧美\",\n        \"url\": \"/comics-region5-tag19-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"历史-欧美\",\n        \"url\": \"/comics-region5-tag24-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"古风-欧美\",\n        \"url\": \"/comics-region5-tag31-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    },\n    {\n        \"title\": \"都市-欧美\",\n        \"url\": \"/comics-region5-tag33-status2-p{{page}}/\",\n        \"style\": {\n            \"layout_flexBasisPercent\": 0.25,\n            \"layout_flexGrow\": 1\n        }\n    }\n]",
    "header": "{\n    \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0\",\n    \"Referer\": \"https://www.tuku.cc/\",\n    \"DNT\": \"1\"\n}",
    "lastUpdateTime": 1780321285166,
    "respondTime": 6345,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "class.content@tag.img@data-original\n@js:\nresult = result.split(\"\\n\");\nvar list = '';\nfor (var i = 0; i < result.length; i++) {\n    if (result[i] != ''){\n        list += \"　　<img src=\\\"\" + result[i] + \"\\\">\\n\";\n    }\n}\nlist;"
    },
    "ruleExplore": {
      "bookList": "class.swiper-card-item-img",
      "bookUrl": "href",
      "coverUrl": "tag.img@data-original",
      "name": "title"
    },
    "ruleSearch": {
      "bookList": "class.hidden@class.swiper-card-item",
      "bookUrl": "class.swiper-card-item-img@href",
      "checkKeyWord": "和青梅竹马之间不会有恋爱喜剧",
      "coverUrl": "class.swiper-card-item-img@tag.img@src",
      "name": "class.swiper-card-item-img@title"
    },
    "ruleToc": {
      "chapterList": "class.manga-chapter-wrap@class.manga-chapter-item",
      "chapterName": "class.i-b@text",
      "chapterUrl": "href"
    },
    "searchUrl": "search?title={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "蚂蚁阅读#2",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.mayitxt.info",
    "customButton": false,
    "customOrder": 658,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "\n 点  击  榜 ::/top/monthvisit/{{page}}.html\n 推  荐  榜 ::/top/monthvote/{{page}}.html\n\n玄幻::/sort/1/{{page}}.html\n仙侠::/sort/2/{{page}}.html\n都市::/sort/3/{{page}}.html\n历史::/sort/4/{{page}}.html\n军事::/sort/5/{{page}}.html\n灵异::/sort/6/{{page}}.html\n科幻::/sort/7/{{page}}.html\n游戏::/sort/8/{{page}}.html\n现言::/sort/9/{{page}}.html\n古言::/sort/10/{{page}}.html\n穿越::/sort/11/{{page}}.html\n青春::/sort/12/{{page}}.html\n豪门::/sort/14/{{page}}.html\n耽美::/sort/15/{{page}}.html\n其他::/sort/13/{{page}}.html",
    "lastUpdateTime": 1787467122105,
    "respondTime": 4038,
    "ruleBookInfo": {
      "author": "class.book_inf@tag.p.0@text",
      "canReName": "true",
      "coverUrl": "img@src.0",
      "intro": "class.h3_rf creat_time@text&&class.book_desc@text",
      "kind": "class.book_inf@tag.p.1@text##类别：",
      "lastChapter": "class.h3_rf new_time.0@tag.a@text",
      "name": "class.book_inf@h3@text",
      "tocUrl": "class.more-chapter@href",
      "wordCount": "class.book_inf@tag.p.2@text##总字数："
    },
    "ruleContent": {
      "content": "class.textarticle@html",
      "nextContentUrl": "text.下一章@href",
      "replaceRegex": "##最新网址.*|一秒记住.*，更新快，，免费读！|>>本章未完，继续下章阅读|免费小说，无弹窗小说网，.*下载，请记住蚂蚁阅读网.*|\\s*.*第.*章.*\\s*|一秒记住【花小说网】，为您提供精彩小说阅读。"
    },
    "ruleExplore": {
      "author": "class.listbook-info@tag.p.0@text",
      "bookList": "class.onefourbox@a",
      "bookUrl": "@href",
      "coverUrl": "class.listbook-cove@tag.img@src",
      "intro": "class.listbook-info@tag.p.1@text",
      "kind": "class.book-tag@tag.span@text",
      "name": "class.listbook-info@tag.h3@text"
    },
    "ruleSearch": {
      "author": "p@text",
      "bookList": "class.onefourbox@tag.a",
      "bookUrl": "tag.a@href",
      "coverUrl": "img@src",
      "kind": "span@text",
      "name": "h3@text"
    },
    "ruleToc": {
      "chapterList": "class.mulu_uld@li",
      "chapterName": "h3@text##>",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://wap.mayitxt.info/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "\t//By情无羁25.04.26，部分规则借用仓库源\nobj={\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ilOK5L.png\">': \"口\",\n    \n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Xf9aJq.png\">': \"殖\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/turna7.png\">': \"睾\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ArDW8p.png\">': \"茎\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/AaWgxR.png\">': \"柱\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/AANm7Y.png\">': \"殖\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/fApFna.png\">': \"茎\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/LyXOOy.png\">': \"水\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3QCgRJ.png\">': \"姐\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/pBHCx8.png\">': \"物\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/tBmeuv.png\">': \"庭\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/7jTtWR.png\">': \"顶\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/r4xj9c.png\">': \"高\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/SsU0mw.png\">': \"性\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/h2MvMb.png\">': \"欢\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/NzIgrB.png\">': \"爱\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/DLwFwF.png\">': \"美\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/4wgeTe.png\">': \"春\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/OB0pIY.png\">': \"道\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/CbJPLb.png\">': \"种\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ZiMHwh.png\">': \"色\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/8hIwIG.png\">': \"花\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Bckft8.png\">': \"身\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/NH7oMT.png\">': \"做\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/GKZeZ8.png\">': \"子\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/HOK3wx.png\">': \"眼\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/1WM5JJ.png\">': \"头\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/gmsivF.png\">': \"入\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/L45hsM.png\">': \"进\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/2G97O6.png\">': \"感\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/qxkXTG.png\">': \"牛\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/eefsZa.png\">': \"裤\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/itSd75.png\">': \"挺\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/jYTCiy.png\">': \"臀\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/9bcSIE.png\">': \"部\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/7sa0Wv.png\">': \"胸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/yW5LmB.png\">': \"体\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/UShyYf.png\">': \"点\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/fKA3ec.png\">': \"道\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/srzIy6.png\">': \"水\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/PARTrc.png\">': \"子\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/TJrr1J.png\">': \"高\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/YyLHKH.png\">': \"毛\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/7gZhax.png\">': \"进\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/aSLjvr.png\">': \"身\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ODCbMU.png\">': \"宠\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/2ZiKGZ.png\">': \"爱\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/KKhsp7.png\">': \"性\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/SykKhb.png\">': \"头\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/plFfIo.png\">': \"入\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Ay9JDT.png\">': \"管\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/1qnWZR.png\">': \"欢\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/b0CfE0.png\">': \"花\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/yDtfbB.png\">': \"美\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/j2ws4j.png\">': \"热\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/YkGLUA.png\">': \"马\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3Qufi9.png\">': \"出\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/kq3TcT.png\">': \"巴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/kfltfq.png\">': \"露\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/XkP7SS.png\">': \"种\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/kYf9aG.png\">': \"处\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Bf1Z4P.png\">': \"融\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/t2wX8D.png\">': \"精\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/xTgVF8.png\">': \"感\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/2P08K2.png\">': \"深\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/JbfyxS.png\">': \"紧\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/fHz6z2.png\">': \"股\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/LRaKVW.png\">': \"点\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/sN3aFm.png\">': \"毛\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/0mnZkw.png\">': \"道\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ljjkpE.png\">': \"马\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/cMy3y2.png\">': \"高\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/HV69Sf.png\">': \"花\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Ir9tAR.png\">': \"爽\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/7c1JeG.png\">': \"姐\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ehw9wJ.png\">': \"做\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/eOSvYn.png\">': \"出\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/c3SuSK.png\">': \"种\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/M6EiT7.png\">': \"皮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/n3lz2M.png\">': \"眼\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/hFJu7D.png\">': \"配\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/2MM0bU.png\">': \"流\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/cJvz3o.png\">': \"部\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/kxhoea.png\">': \"露\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/C5mkg5.png\">': \"点\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/bvDKfN.png\">': \"吸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/bzJPvS.png\">': \"感\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/oWXxBb.png\">': \"紧\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/zqggeB.png\">': \"乱\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/VmLKxC.png\">': \"具\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/014kbn.png\">': \"强\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/YY31En.png\">': \"道\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/DVM8PI.png\">': \"美\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3pDD5J.png\">': \"高\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/wXHIxb.png\">': \"子\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/lQ9J6Y.png\">': \"种\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/IetNaz.png\">': \"眼\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/kpDE1d.png\">': \"交\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/5oiGN5.png\">': \"骚\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/JlRj8s.png\">': \"口\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/QQWz5s.png\">': \"进\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Tk1nSu.png\">': \"身\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/KoI08O.png\">': \"融\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/NBUQ5T.png\">': \"部\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/pBxHZ3.png\">': \"吹\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/AM0fIa.png\">': \"花\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/HYK9uE.png\">': \"出\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ICRDdC.png\">': \"欢\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/JmwaNM.png\">': \"精\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/URWg6F.png\">': \"爱\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/cY9SIz.png\">': \"身\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/z6ReYb.png\">': \"入\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/St4M28.png\">': \"处\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/H7e9A7.png\">': \"胸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Smtw59.png\">': \"摩\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/TKPXt8.png\">': \"擦\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/YDHglI.png\">': \"性\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/sQlQuU.png\">': \"物\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/WRqsih.png\">': \"欲\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/VzfdNi.png\">': \"流\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/OPJ2bs.png\">': \"跳\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/FZSjec.png\">': \"顶\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/479pPU.png\">': \"庭\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/x3lcl4.png\">': \"交\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Wz0a4W.png\">': \"根\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/laxIIx.png\">': \"娇\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/XaKORg.png\">': \"口\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/VcI9kR.png\">': \"挺\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/RVbdMh.png\">': \"臀\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/E0PoOj.png\">': \"深\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/xAtU1H.png\">': \"紧\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Kyrg6p.png\">': \"乳\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/inePU1.png\">': \"荡\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/KIiTZ6.png\">': \"软\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/TFhygq.png\">': \"眼\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/9BjstR.png\">': \"唇\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/A8FzvU.png\">': \"缝\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/8EfHre.png\">': \"跳\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/1VF3S8.png\">': \"出\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3He8Bp.png\">': \"胸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/oKnqt5.png\">': \"摩\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/5aURgW.png\">': \"擦\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/UJWSl3.png\">': \"滑\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/USTRo1.png\">': \"润\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/qGGJy5.png\">': \"臀\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/bdILAO.png\">': \"头\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/9dUKaI.png\">': \"肥\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/9Rs4U8.png\">': \"揉\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/eNv9Q2.png\">': \"捏\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/o7KNCt.png\">': \"美\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/xUUtAe.png\">': \"色\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/EjYbHr.png\">': \"滚\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Sh1G9u.png\">': \"硬\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/go1Itw.png\">': \"肉\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/IJaCTb.png\">': \"棒\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/WgOOBk.png\">': \"顶\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Uvrt2V.png\">': \"腿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/8MKgbw.png\">': \"肿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/mxDVDt.png\">': \"喘\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/doePOF.png\">': \"粗\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/VYtuSj.png\">': \"吸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/mpi4Ho.png\">': \"巨\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ZAvQVT.png\">': \"乳\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/8v53CJ.png\">': \"呻\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/xfxbY7.png\">': \"吟\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/CGVSpK.png\">': \"含\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/T0eXGu.png\">': \"头\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/gEJwn2.png\">': \"摩\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/5rOOID.png\">': \"擦\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/UtPcjY.png\">': \"子\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/St59JF.png\">': \"按\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Vsm2rM.png\">': \"虐\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Tdb8Pr.png\">': \"抽\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/FjRhET.png\">': \"插\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/c5ShnK.png\">': \"性\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/yRHC5w.png\">': \"骚\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/uFeBTq.png\">': \"欲\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/NaHoOC.png\">': \"体\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Huu9DB.png\">': \"裸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/6akHXK.png\">': \"水\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/720HsY.png\">': \"穴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/qAwS0V.png\">': \"坚\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/SHWIR0.png\">': \"硬\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/sJMa0q.png\">': \"肉\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/INIbnU.png\">': \"塞\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/rEVw1D.png\">': \"进\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/fYCbHq.png\">': \"乱\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ZuFQv4.png\">': \"揉\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/1JsL4C.png\">': \"捏\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ff2ADZ.png\">': \"魔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ZhYaRZ.png\">': \"干\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/jrqmdu.png\">': \"淫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/K50TFd.png\">': \"深\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/iNTxVX.png\">': \"热\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/KNZ7Je.png\">': \"操\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/aOqp2G.png\">': \"拔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/kSzfd1.png\">': \"胯\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/NcS8PC.png\">': \"根\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/qcIGcG.png\">': \"做\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/rUtCIr.png\">': \"吮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/9J1iZi.png\">': \"吸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ImUdOs.png\">': \"奴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/nWN7tS.png\">': \"喉\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/R0bdEJ.png\">': \"射\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/xGGUPI.png\">': \"精\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/O8adJp.png\">': \"液\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/8njezL.png\">': \"流\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Hdn1Na.png\">': \"蛋\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/B17CKY.png\">': \"巴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/OBdTL5.png\">': \"淫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/rpmSPh.png\">': \"跳\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/IwWuCO.png\">': \"呻\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/7EpQYz.png\">': \"弄\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/yS5Tkx.png\">': \"毛\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/hvJCXu.png\">': \"慰\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/KPAWRO.png\">': \"精\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/1RkBBF.png\">': \"泄\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/l3HckR.png\">': \"乱\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/M79Nts.png\">': \"皮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/kFqQ6D.png\">': \"塞\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/FLSs5y.png\">': \"干\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/sKXQJ7.png\">': \"食\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/bhd9l7.png\">': \"色\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/JdS7Tc.png\">': \"腿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/whYnKt.png\">': \"牛\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/x4YJ9s.png\">': \"巴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Jmshps.png\">': \"润\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/iWXEfK.png\">': \"胸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/1CaDvL.png\">': \"拔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Uhg8zk.png\">': \"软\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/2oVqoi.png\">': \"水\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/8mjbou.png\">': \"暖\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/TkQheK.png\">': \"姐\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/nKNumT.png\">': \"处\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/mtedsY.png\">': \"感\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/x85W3O.png\">': \"腿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/77fCwa.png\">': \"瘫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/hImtX5.png\">': \"软\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/oUD8Qz.png\">': \"色\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/LcYPGD.png\">': \"配\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Pny45r.png\">': \"棒\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/q7iesT.png\">': \"强\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/5RBvm2.png\">': \"欲\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/5zRSDU.png\">': \"浓\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/BtoYbi.png\">': \"露\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/JQi3e4.png\">': \"套\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/NzPvlf.png\">': \"部\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/64C1Rv.png\">': \"巨\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Uzsejp.png\">': \"欢\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/XJYAkX.png\">': \"蛋\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/uewEvO.png\">': \"春\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/5PGrrZ.png\">': \"奴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/S44KBO.png\">': \"管\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/sGR4oa.png\">': \"捏\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3gYxgH.png\">': \"巴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/5XDLQE.png\">': \"奴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/p139WM.png\">': \"姐\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/EfHShT.png\">': \"肉\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/BROarP.png\">': \"触\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ZXXZqQ.png\">': \"体\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/YFdww5.png\">': \"深\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/fgbHRY.png\">': \"强\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/sRDCf1.png\">': \"紧\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/RwkYLf.png\">': \"马\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/pzjSl5.png\">': \"魔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Yi7fw4.png\">': \"根\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/EvEDGW.png\">': \"奴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/PZ09AR.png\">': \"阴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/5DSCyJ.png\">': \"阳\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/scLmAv.png\">': \"硬\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/CdPORz.png\">': \"肉\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/sYeI1S.png\">': \"喷\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/nlkQIt.png\">': \"马\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/CjjjaL.png\">': \"撸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/EVKy9X.png\">': \"润\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/OIzxWa.png\">': \"呻\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/jx5pzD.png\">': \"插\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/kdcXrY.png\">': \"入\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/lDEjbZ.png\">': \"蜜\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/NeidiD.png\">': \"穴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/VjeprZ.png\">': \"弄\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/FYgtVw.png\">': \"挺\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/YZsCIB.png\">': \"娇\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/dl8OW7.png\">': \"欲\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/TjQtn3.png\">': \"舔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/tCevO8.png\">': \"淫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3oymT5.png\">': \"食\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/seK78b.png\">': \"射\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/4qoddK.png\">': \"伦\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/phhKls.png\">': \"触\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/jJfs5x.png\">': \"乱\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/paLfX2.png\">': \"口\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/UYjnaR.png\">': \"骚\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Syw09t.png\">': \"皮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/n5GcvO.png\">': \"臀\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/wyB4nH.png\">': \"插\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/57h9qx.png\">': \"湿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/4VIqmc.png\">': \"蜜\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/OLZwYF.png\">': \"穴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/yw8ylq.png\">': \"娇\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/NOUIlc.png\">': \"牛\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/0aaCUJ.png\">': \"裤\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/33t1i9.png\">': \"棒\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/nX55dd.png\">': \"塞\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/wItDKi.png\">': \"抽\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3lplvB.png\">': \"腿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/0WMp51.png\">': \"乳\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/qcwU8J.png\">': \"弄\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/UeuPsZ.png\">': \"荡\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Ucu67m.png\">': \"潮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/fbIoVY.png\">': \"交\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/1xGccU.png\">': \"嫩\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3Vd6ER.png\">': \"粗\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/I2oZoV.png\">': \"爽\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/9F5vGV.png\">': \"奶\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/UvBDrj.png\">': \"唇\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ik0rhP.png\">': \"浓\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/4jEOYD.png\">': \"液\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/NLqnhG.png\">': \"滑\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/nYoFPx.png\">': \"舔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Cohbia.png\">': \"瘫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/OHRlFw.png\">': \"点\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/9V0tbC.png\">': \"滚\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/hDFASa.png\">': \"烫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/PEfxJN.png\">': \"液\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/oZydur.png\">': \"灌\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/zhj7ul.png\">': \"宫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/zCzn8w.png\">': \"舌\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/eSLvbk.png\">': \"舔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/hXgp1A.png\">': \"滑\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/9mc5aW.png\">': \"揉\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/MuTlcG.png\">': \"捏\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/0UUxqH.png\">': \"瓣\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/fh0ckZ.png\">': \"吟\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/MDXMeL.png\">': \"屁\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/0aSzDB.png\">': \"股\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/RgMIL6.png\">': \"抽\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/rLViPN.png\">': \"裸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/KXBBHQ.png\">': \"蜜\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/QObbVj.png\">': \"晕\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ieC03d.png\">': \"庭\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/qDK7v2.png\">': \"唇\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Sgb7hr.png\">': \"插\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/58XkzN.png\">': \"泄\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/EkGMew.png\">': \"奸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/qrD7R7.png\">': \"具\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/fCpf2U.png\">': \"潮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/LoC2TD.png\">': \"射\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/H1obkD.png\">': \"顶\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/nCOO3r.png\">': \"吹\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ljxFVc.png\">': \"做\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/zMxgZQ.png\">': \"逼\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/FWXXkE.png\">': \"露\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/hkXMg4.png\">': \"撸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/qCpuUD.png\">': \"鸡\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/4V2GIv.png\">': \"壁\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/4eKmM6.png\">': \"筋\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/KmS4Ge.png\">': \"管\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/sATgP4.png\">': \"毛\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/zkZyEZ.png\">': \"筋\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/6aLpfL.png\">': \"荡\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/HAPIjR.png\">': \"轮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/fHceb7.png\">': \"器\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/tjWQG1.png\">': \"管\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Q1nd7X.png\">': \"挺\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ntOxzF.png\">': \"物\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/K9ZuDw.png\">': \"敏\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Lv6knF.png\">': \"体\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/7zuFMT.png\">': \"宫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/9C0lZB.png\">': \"户\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3AgUho.png\">': \"缝\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/8ADyfn.png\">': \"爱\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/pxinyw.png\">': \"物\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/uG5a05.png\">': \"触\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/2N02xy.png\">': \"裸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/wJsIa3.png\">': \"按\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/cq6NBC.png\">': \"强\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/e7esy9.png\">': \"宫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/sKji9N.png\">': \"魔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/v0Y7Se.png\">': \"荡\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/43owDW.png\">': \"胯\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/2syqxW.png\">': \"套\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/hDdo2f.png\">': \"坚\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/jPQ9dG.png\">': \"痒\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/EGX3Q6.png\">': \"勃\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/HAuw8A.png\">': \"揉\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/N6WkoO.png\">': \"喘\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/lmtikj.png\">': \"潮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/kcAqHs.png\">': \"龟\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/OqKB00.png\">': \"瓣\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/kzcAFw.png\">': \"配\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/KuEImG.png\">': \"舌\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/VWnW7q.png\">': \"处\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/fx3hvm.png\">': \"爽\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/VZtaoR.png\">': \"具\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3ZkDJ4.png\">': \"交\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/gdAFuf.png\">': \"喘\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/1z2eDD.png\">': \"吸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/znllVr.png\">': \"蜜\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/71ngwo.png\">': \"龟\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ecvOu0.png\">': \"器\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Bui5fD.png\">': \"催\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/vxtD2A.png\">': \"器\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ExlFjv.png\">': \"乳\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/wJyQ32.png\">': \"屁\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/lhCRiX.png\">': \"股\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ohBPMl.png\">': \"含\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/oa3EHb.png\">': \"棒\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/HeEvXw.png\">': \"滑\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/WQbR9W.png\">': \"魔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/iNq1kV.png\">': \"吟\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/XLuwG9.png\">': \"胯\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/nZ6Sil.png\">': \"囊\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/4MoTWV.png\">': \"撸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/GnMJou.png\">': \"按\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/HvxP4o.png\">': \"壁\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/CVdaOj.png\">': \"热\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/641lDm.png\">': \"庭\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/rQjazI.png\">': \"囊\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/XRnUMA.png\">': \"嫩\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/55c8cw.png\">': \"操\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/PTFqXf.png\">': \"套\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/MvlC6Z.png\">': \"胯\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/6fxL1o.png\">': \"干\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Jv025p.png\">': \"裆\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/AUPIYS.png\">': \"滚\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/0xlo81.png\">': \"蛋\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/dVMbBR.png\">': \"唇\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/boQHaq.png\">': \"瓣\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/sPgNyv.png\">': \"宠\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/XWRTkb.png\">': \"干\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/1H74Qg.png\">': \"巨\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/TTRAra.png\">': \"阳\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/WmPkc8.png\">': \"龟\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ZuOmv7.png\">': \"阴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/FQVl5N.png\">': \"戴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/xOvdd5.png\">': \"按\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/WbRB1x.png\">': \"抽\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/UQ5cwB.png\">': \"屌\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/PleNul.png\">': \"裤\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ntrBUA.png\">': \"热\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Imoh0J.png\">': \"裤\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/msAwBv.png\">': \"舔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/42MoAt.png\">': \"淫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/TZEL8t.png\">': \"坚\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/fBUNSf.png\">': \"筋\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/E3unFF.png\">': \"根\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/jCzggn.png\">': \"粗\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/CMYj3U.png\">': \"吹\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/71WKrD.png\">': \"爽\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/pXJuf3.png\">': \"操\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/VS3mmY.png\">': \"吮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/bsF6bg.png\">': \"喉\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/HjHxoR.png\">': \"虐\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/8Jxdgx.png\">': \"喷\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/eArYhU.png\">': \"含\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ugMPKc.png\">': \"撸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/pjqd9o.png\">': \"屁\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/qnkGM4.png\">': \"塞\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Cz64oU.png\">': \"触\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/8z9VK5.png\">': \"伦\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/35l220.png\">': \"巨\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/4SdpDG.png\">': \"娇\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/u4EwCa.png\">': \"呻\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/m9odLl.png\">': \"泄\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/sBaBrf.png\">': \"奶\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ci8sVm.png\">': \"屌\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/gtoWMw.png\">': \"含\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Qfdbk5.png\">': \"春\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/xoo7o8.png\">': \"吟\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/XoIQtJ.png\">': \"穴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/L3YaF5.png\">': \"瘫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/xTsqHI.png\">': \"软\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Z8bZWW.png\">': \"潮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/XZSucU.png\">': \"操\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/JL3yeS.png\">': \"湿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/LRoaGl.png\">': \"虐\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/t1ZBzZ.png\">': \"孕\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/AZw0L3.png\">': \"泌\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/RTSvD6.png\">': \"烫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/sKBas0.png\">': \"牛\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/rLuoPv.png\">': \"逼\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/KmFWak.png\">': \"丸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/06NTCF.png\">': \"龟\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/UCKoQN.png\">': \"丸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/VtDBSo.png\">': \"嫩\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/GWS6vt.png\">': \"妓\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/6fWycA.png\">': \"勃\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/uFCdXH.png\">': \"慰\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/8OYRwM.png\">': \"阳\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Dio2Px.png\">': \"拔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/pQnT63.png\">': \"喷\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/VjzhlN.png\">': \"滚\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/KPZt3K.png\">': \"配\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/R9jPTT.png\">': \"拔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/XISJcn.png\">': \"缝\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/gLPk3z.png\">': \"蕾\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/NRXF8T.png\">': \"晕\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/4vfopf.png\">': \"缝\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/PeqDme.png\">': \"蛋\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/xbsBXu.png\">': \"骚\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/alnFq3.png\">': \"催\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/6kHcyn.png\">': \"痒\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Vz7CKN.png\">': \"宠\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/7culIs.png\">': \"流\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ho0hjY.png\">': \"敏\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Yl0ARB.png\">': \"慰\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/PopEBN.png\">': \"弄\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/uHjCT5.png\">': \"湿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/XsE2fp.png\">': \"喘\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/hMCIOB.png\">': \"泄\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/zUQS9v.png\">': \"晕\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/oZa5xA.png\">': \"射\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/5FVE4I.png\">': \"瓣\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/k4ty7h.png\">': \"菊\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/sbmbNu.png\">': \"蕾\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/OBkjDi.png\">': \"菊\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/1HtDW7.png\">': \"洞\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/wBQwWy.png\">': \"液\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ohmgnp.png\">': \"擦\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/u4HKAe.png\">': \"宫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/8sHlcB.png\">': \"戴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/wx1wcX.png\">': \"食\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/7UBfB3.png\">': \"伦\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ZQ2EN2.png\">': \"吹\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/WWwH4P.png\">': \"屌\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Uo1A51.png\">': \"跳\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/rKZCT2.png\">': \"舌\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/vhBLLN.png\">': \"虐\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/YYxQWw.png\">': \"皮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/8bO1ng.png\">': \"痒\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/JIK4mB.png\">': \"套\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/gIaauk.png\">': \"舌\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/5ggwcM.png\">': \"瘫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/l11HPa.png\">': \"润\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/p3mRFC.png\">': \"股\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/dOqhju.png\">': \"捅\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/4yGbNJ.png\">': \"嫩\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/1VWeZm.png\">': \"菊\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/b1myQD.png\">': \"硬\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/5n3Ppo.png\">': \"鸡\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3TLw6r.png\">': \"食\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/kr91EF.png\">': \"奸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/0881r2.png\">': \"喷\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3SYqXY.png\">': \"裸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/DMiqem.png\">': \"烫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/c2LfcP.png\">': \"晕\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/CVxcRB.png\">': \"浓\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/jUAK6q.png\">': \"奸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/PzAFte.png\">': \"洞\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/iMZkcW.png\">': \"壁\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/GxCItP.png\">': \"暖\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/6Hp2rc.png\">': \"粗\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/aRaABn.png\">': \"屁\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Cbi9mb.png\">': \"坚\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/iyWFS6.png\">': \"菊\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ogSpe6.png\">': \"催\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ctHfr9.png\">': \"奸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/w3SwU3.png\">': \"轮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/mxnt62.png\">': \"洞\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/leCt2y.png\">': \"肥\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/5DnsVk.png\">': \"烫\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/YHqsav.png\">': \"戴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3JdvaF.png\">': \"肥\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/X2H18i.png\">': \"湿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/z24xgy.png\">': \"春\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/UgBPUg.png\">': \"肿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/0su7X0.png\">': \"奶\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/nxfi48.png\">': \"阴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3p3yRD.png\">': \"催\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/egIbWJ.png\">': \"捅\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/T1DSuM.png\">': \"尿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/xVJWjM.png\">': \"喉\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/n4CbSc.png\">': \"逼\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/sRkskt.png\">': \"奶\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/TDB8dX.png\">': \"敏\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/KwiLUZ.png\">': \"核\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/y3HjFd.png\">': \"脔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/XKfT0q.png\">': \"浓\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/9SKBiF.png\">': \"丸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/bFeTeD.png\">': \"戴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/0DMvwh.png\">': \"丸\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ODCkaO.png\">': \"宠\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/oeq6sh.png\">': \"喉\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/x8sPiw.png\">': \"囊\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/wi7VUl.png\">': \"蒂\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/aQKaAT.png\">': \"妓\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/rdFFGK.png\">': \"蕾\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Q4Ghiq.png\">': \"腺\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/rcydo2.png\">': \"轮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/eyNyoj.png\">': \"柱\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/72s5DO.png\">': \"具\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/D9NylB.png\">': \"妓\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/yR3Wy1.png\">': \"吮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Jk9vz6.png\">': \"轮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/732e43.png\">': \"阴\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ldA1Dl.png\">': \"脔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/FXghbS.png\">': \"蒂\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/NeyUu8.png\">': \"肠\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/NPtDJ8.png\">': \"壁\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/bSxCeg.png\">': \"洞\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/hFotXw.png\">': \"吮\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/E6ukPR.png\">': \"脔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ExHfIs.png\">': \"膜\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/B4t9hV.png\">': \"膜\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/iMsrif.png\">': \"捅\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/MhsemB.png\">': \"鸡\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/rJJfXj.png\">': \"膜\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/q17ZyY.png\">': \"屌\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3dcOr9.png\">': \"暖\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/vgttGz.png\">': \"蕊\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/dsYq6j.png\">': \"肠\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/kVuvcX.png\">': \"摩\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/m7AEjF.png\">': \"汁\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/chrEiq.png\">': \"伦\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/knHeq2.png\">': \"妓\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/MCg39r.png\">': \"逼\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/RtQpCx.png\">': \"阳\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/4HOyG1.png\">': \"蕾\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/EJc0aL.png\">': \"灌\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/GdLemw.png\">': \"肠\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/THVAsJ.png\">': \"囊\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Psvk0V.png\">': \"雏\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/QBtsn9.png\">': \"膜\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/5QCD4c.png\">': \"慰\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ZorZAm.png\">': \"棍\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/tFbdld.png\">': \"汁\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/UW77rD.png\">': \"敏\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/SZZRhO.png\">': \"孕\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/3uvvcJ.png\">': \"户\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/cMPkeI.png\">': \"痒\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/vVNd9r.png\">': \"茎\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/rBEHkI.png\">': \"睪\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/TzdfHF.png\">': \"茎\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/ti0q1M.png\">': \"灌\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/fOp4HF.png\">': \"肿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Rr6rV9.png\">': \"肛\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/gy1mlh.png\">': \"筋\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/nDpLwJ.png\">': \"蕊\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/7ejnlO.png\">': \"暖\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/H40uwm.png\">': \"雏\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/QZpTDf.png\">': \"户\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/GOyR9Y.png\">': \"器\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/b6FwnI.png\">': \"裆\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/wRaSg1.png\">': \"柱\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/x42mCU.png\">': \"棍\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/YBYP2W.png\">': \"蒂\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/HKClha.png\">': \"勃\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/QvFvyy.png\">': \"葡\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/MOVfqX.png\">': \"萄\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/KCq0jj.png\">': \"孕\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/cvBtQH.png\">': \"鸡\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Ik130N.png\">': \"灌\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/U5feXg.png\">': \"尿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Rmq9pb.png\">': \"融\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/9wpLY5.png\">': \"汁\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/nIE3yV.png\">': \"融\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/DLxOxW.png\">': \"棍\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/DmDqR7.png\">': \"汁\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/qItDfs.png\">': \"尿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/VlPQ1Q.png\">': \"蕊\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/viUK3y.png\">': \"腺\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/UnZI75.png\">': \"肛\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/s1M11M.png\">': \"泌\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/EYgtKI.png\">': \"裆\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/hLZNIJ.png\">': \"捅\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/QZMs9w.png\">': \"孕\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/kOgpfC.png\">': \"肥\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/rm8QWW.png\">': \"棍\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/EVQrOF.png\">': \"肿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/PdMAvy.png\">': \"萄\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/EAroqq.png\">': \"睪\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/c2tHMe.png\">': \"邦\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/Jt0VgV.png\">': \"泌\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/1nFzJJ.png\">': \"户\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/mmhTm9.png\">': \"勃\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/TjxhN0.png\">': \"邦\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/8M7rPy.png\">': \"核\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/akqH9f.png\">': \"裆\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/t7Mhks.png\">': \"尿\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/6vJQ0W.png\">': \"脔\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/WftkXZ.png\">': \"肠\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/tVqkw1.png\">': \"屄\",\n    '<img src=\"https://www.xiguashuwu4.com/wzbodyimg/NzRu8y.png\">': \"核\"\n}",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "西瓜书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.xiguashuwu4.com/",
    "customButton": false,
    "customOrder": 659,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 14; zh-cn; M2102K1AC Build/UKQ1.231207.002) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/109.0.5414.118 Mobile Safari/537.36 MQQBrowser/10.1.0\"}",
    "lastUpdateTime": 1785665974628,
    "respondTime": 4566,
    "ruleBookInfo": {
      "intro": "&nbsp;{{@@.time@text##\\s.*}}\n{{@@.BGsectionTwo-bottom@text##(。)##$1<br>}}",
      "lastChapter": ".newestChapter@text##最新章节：",
      "tocUrl": "text.章节目录@href##(\\/book\\/\\d+\\/catalog\\/)##$11.html"
    },
    "ruleContent": {
      "content": "#C0NTENT@html||all\n<js>\nif (baseUrl.includes(\"_2\")) {\n\na=java.getString(\"meta[7]@content\")\ne=String(java.base64Decode(a)).split(/[A-Z]+%/);\n\nfunction UpWz(m, i) {\n\t\tvar k = Math.ceil((i + 1) % code);\n\t\tk = Math.ceil(m - k);\n\t\treturn k\n\t}\n\ncode=src.match(/codeurl=\"(\\d+)\"/)[1]\nnrid=\"#\"+src.match(/nrid=\"(.*?)\"/)[1]+\"@p\"\n\njava.log(nrid)\nbox=java.getElements(nrid)\n\nlist=[]\nfor (var i = 0; i < e.length; i++) {\n\t\t\tvar k = UpWz(e[i], i);\n\t\t\tlist[k] = box[i]\n\t\t};\n\nlist.join(\"\")\n\n\t} else if(baseUrl.includes(\"_\")) {\n\t\t\na=decodeURIComponent(src.match(/decodeURIComponent.\"(.*)\"/)[1])\nb=src.match(/d.newcon,\"(.*)\"/)[1]\njava.log(b)\n\n{{java.importScript(source.getKey()+\"js/cryptojs_min.js\")}}\n\nfunction d(a, b) {\n            b = CryptoJS.MD5(b).toString();\n            var d = CryptoJS.enc.Utf8.parse(b.substring(0, 16));\n            var e = CryptoJS.enc.Utf8.parse(b.substring(16));\n            return CryptoJS.AES.decrypt(a, e, { iv: d, padding: CryptoJS.pad.Pkcs7 }).toString(CryptoJS.enc.Utf8)\n        }\n        \nd(a,b)\n\n\t\t} else result \n\t\n</js>",
      "imageStyle": "Text",
      "nextContentUrl": "text.下一@href",
      "replaceRegex": "<js>\neval(String(source.bookSourceComment))\nsource.setVariable(Object.entries(obj).length)\n\nresult.replace(/<img src=.*?>/g,(o,v)=>{\n\t\no=o.replace(source.getKey(), \"https://www.xiguashuwu4.com/\")\n\ttext=obj[String(o)]\n\tif (text!=undefined)\n\treturn text\n\telse\n\treturn o\n\t})\n\n</js>\n##\\s*本章尚未读完.*\\s*|本章已阅读完毕.*|本站新（短）域名：.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a.-1@text",
      "bookList": ".SHsectionThree-middle p",
      "bookUrl": "a@href",
      "kind": "span.0@text##\\[|\\]",
      "name": "span.1@text"
    },
    "ruleToc": {
      "chapterList": ".BCsectionTwo-top li a\n@js:\nlet elements = org.jsoup.Jsoup.parse(result).select(\"a\");\nlet dataList = [];\nelements.forEach(element => {\n    let href = String(element.attr(\"href\")).replace(/.*\\('(\\d+)'\\,'(\\d+)'\\).*/,\"/book/$1/$2.html\")\n    let text = element.text();\n    let match = href.match(/(\\d+)\\.html/);\n    if (match) {\n        dataList.push({\n            href: href,\n            cid: parseInt(match[1]),\n            text: text\n        });\n    }\n});\n\ndataList.sort((a, b) => a.cid - b.cid);\nresult = dataList.map(item => ({\n    href: item.href,\n    text: item.text\n}));",
      "chapterName": "text\n@js:var title = result; \nvar cleanRegex = /第(\\d+|[零一二三四五六七八九十百千万]+)[章页卷回][\\s、.:]?|^(\\d+)[\\s、.:]?|^([零一二三四五六七八九十百千万]+)[\\s、.:]?|Chapter\\s(\\d+)[\\s、.:]?/g;\nvar tempTitle = title\n.replace(cleanRegex, '').trim(); \nif (tempTitle === '') { title; } else { tempTitle; }",
      "chapterUrl": "href",
      "nextTocUrl": ".CGsectionTwo-right-bottom-detail@span.1@text\n<js>\na=String(result[0])\nlist=[]\nfor (i=2;i<=a;i++){\n\tlist.push(baseUrl.replace(/$/,i+'.html'))\n\t}list\n</js>"
    },
    "searchUrl": "https://www.xiguashuwu4.com/search/{{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "️笔趣阁#8",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.bixiange.top",
    "customButton": false,
    "customOrder": 660,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"都市言情\",\"url\":\"/dsyq/index<,_{{page}}>.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠修真\",\"url\":\"/wxxz/index<,_{{page}}>.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻奇幻\",\"url\":\"/xhqh/index<,_{{page}}>.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越架空\",\"url\":\"/cyjk/index<,_{{page}}>.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻竞技\",\"url\":\"/khjj/index<,_{{page}}>.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"鬼话悬疑\",\"url\":\"/ghxy/index<,_{{page}}>.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"军事历史\",\"url\":\"/jsls/index<,_{{page}}>.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"官场商战\",\"url\":\"/guanchang/index<,_{{page}}>.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"乡土风情\",\"url\":\"/xtfq/index<,_{{page}}>.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"耽美小说\",\"url\":\"/dmtr/index<,_{{page}}>.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"同人小说\",\"url\":\"/trxs/index<,_{{page}}>.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"精品小说\",\"url\":\"/jqxs/index<,_{{page}}>.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1787070624377,
    "respondTime": 7852,
    "ruleBookInfo": {
      "author": ".descTip@p.1@span@text##作者：",
      "coverUrl": ".info-left@img.0@src",
      "intro": ".descInfo@p.0@html",
      "kind": ".descTip@span.0:3@text##.*：",
      "lastChapter": ".catalog@.clearfix@li.-1@a@text",
      "name": ".info-right@h1@text",
      "wordCount": ".descTip@p.0@span.1@text##.*："
    },
    "ruleContent": {
      "content": ".content@html"
    },
    "ruleExplore": {
      "author": ".tips@span.0@text",
      "bookList": "[class=\"clearfix\"]@li",
      "bookUrl": "strong a@href",
      "coverUrl": "img@src",
      "intro": ".descript a@html",
      "kind": ".tips@span!0@text",
      "name": "img@alt"
    },
    "ruleSearch": {
      "bookList": ".clearfix li",
      "bookUrl": ".cover a@href",
      "coverUrl": "img@src",
      "intro": ".descript a@html",
      "kind": ".tips span.1@text##大小：|时间：",
      "name": "img@alt",
      "wordCount": ".tips span.0@text##大小：|时间："
    },
    "ruleToc": {
      "chapterList": "[class=\"clearfix\"]@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "/e/search/indexpage.php,{\n  \"body\": \"keyboard={{key}}&show=title&classid=0\",\n  \"charset\": \"GB2312\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "v1.0(原版·苍茫标准化)\n功能：搜索+发现+详情+目录+正文全可用\n站点：玩文学小说网 baowx.com\n特征：OG标签全覆盖、POST搜索(固定_token)、目录内嵌详情页无翻页、正文单页提取\n维护关注：搜索_token是否定期更换、正文容器class是否变化",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "玩文学",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.baowx.com",
    "bookUrlPattern": "https?://www\\.baowx\\.com/book/[^/]+/?(\\.html)?",
    "customButton": false,
    "customOrder": 661,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻奇幻\",\"url\":\"http://www.baowx.com/xuanhuan/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠仙侠\",\"url\":\"http://www.baowx.com/xianxia/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市言情\",\"url\":\"http://www.baowx.com/dushi/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史军事\",\"url\":\"http://www.baowx.com/lishi/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"游戏竞技\",\"url\":\"http://www.baowx.com/wangyou/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻传奇\",\"url\":\"http://www.baowx.com/kehuan/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"恐怖灵异\",\"url\":\"http://www.baowx.com/kongbu/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36\"}",
    "lastUpdateTime": 1780905049349,
    "respondTime": 5275,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content||.img-thumbnail@src",
      "intro": "[property=\"og:description\"]@content||#bookIntro@text",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "[property=\"og:novel:read_url\"]@content"
    },
    "ruleContent": {
      "content": "#htmlContent@html",
      "nextContentUrl": "#linkNext@href",
      "replaceRegex": "##\\s*"
    },
    "ruleExplore": {
      "author": ".text-muted@text",
      "bookList": ".list-group-item",
      "bookUrl": "a@href",
      "coverUrl": "img@src||img@data-src",
      "kind": ".pull-right.text-muted@text",
      "name": "a@text"
    },
    "ruleSearch": {
      "author": "p.booktag a.red@text",
      "bookList": ".col-md-10",
      "bookUrl": "h4.bookTitle a@href",
      "checkKeyWord": "作者：",
      "coverUrl": "img@src",
      "intro": "#bookIntro@text",
      "lastChapter": "a.text-danger@text",
      "name": "h4.bookTitle a@text"
    },
    "ruleToc": {
      "chapterList": "#list-chapterAll dd a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/search,{\"method\":\"POST\",\"body\":\"_token=KXYBsAHcLms9ozpVClNLpUGvuNhHEOOhM8vfKr24&keyword={{key}}\"}",
    "weight": 0
  },
  {
    "bookSourceComment": "这是小说下载源",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "奇书网吧（导）",
    "bookSourceType": 3,
    "bookSourceUrl": "https://m.9qishu.com",
    "customButton": false,
    "customOrder": 662,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n  \t  \"title\":\"🔖书库🔖\",\n    \"url\":\"/all/\",\n    \"style\":\n    {\n    \t  \"layout_flexGrow\":1,\n       \"layout_flexBasisPersent\":1\n    }\n  },\n  {\n  \t  \"title\":\"男生小说\",\n    \"url\":\"/nansheng/\",\n    \"style\":\n    {\n    \t  \"layout_flexGrow\":1,\n       \"layout_flexBasisPersent\":0.25\n    }\n  },\n  {\n  \t  \"title\":\"女生言情\",\n    \"url\":\"/yanqing/\",\n    \"style\":\n    {\n    \t  \"layout_flexGrow\":1,\n       \"layout_flexBasisPersent\":0.25\n    }\n  },\n  {\n  \t  \"title\":\"耽美同人\",\n    \"url\":\"/tongren/\",\n    \"style\":\n    {\n    \t  \"layout_flexGrow\":1,\n       \"layout_flexBasisPersent\":0.25\n    }\n  },\n  {\n  \t  \"title\":\"都市小说\",\n    \"url\":\"/dushi/\",\n    \"style\":\n    {\n    \t  \"layout_flexGrow\":1,\n       \"layout_flexBasisPersent\":0.25\n    }\n  },\n  {\n  \t  \"title\":\"玄幻奇幻\",\n    \"url\":\"/xuanhuan/\",\n    \"style\":\n    {\n    \t  \"layout_flexGrow\":1,\n       \"layout_flexBasisPersent\":0.25\n    }\n  },\n  {\n  \t  \"title\":\"武侠修真\",\n    \"url\":\"/xiuzhen/\",\n    \"style\":\n    {\n    \t  \"layout_flexGrow\":1,\n       \"layout_flexBasisPersent\":0.25\n    }\n  },\n  {\n  \t  \"title\":\"网游竞技\",\n    \"url\":\"/wangyou/\",\n    \"style\":\n    {\n    \t  \"layout_flexGrow\":1,\n       \"layout_flexBasisPersent\":0.25\n    }\n  },\n  {\n  \t  \"title\":\"历史军事\",\n    \"url\":\"/lishi/\",\n    \"style\":\n    {\n    \t  \"layout_flexGrow\":1,\n       \"layout_flexBasisPersent\":0.25\n    }\n  },\n  {\n  \t  \"title\":\"科幻灵异\",\n    \"url\":\"/kehuan/\",\n    \"style\":\n    {\n    \t  \"layout_flexGrow\":1,\n       \"layout_flexBasisPersent\":0.25\n    }\n  },\n  {\n  \t  \"title\":\"其他小说\",\n    \"url\":\"/qita/\",\n    \"style\":\n    {\n    \t  \"layout_flexGrow\":1,\n       \"layout_flexBasisPersent\":0.25\n    }\n  },\n  {\n  \t  \"title\":\"🔖排行🔖\",\n    \"url\":\"/hot/\",\n    \"style\":\n    {\n    \t  \"layout_flexGrow\":1,\n       \"layout_flexBasisPersent\":1\n    }\n  },\n  {\n  \t  \"title\":\"🔖推荐🔖\",\n    \"url\":\"/recommendall/\",\n    \"style\":\n    {\n    \t  \"layout_flexGrow\":1,\n       \"layout_flexBasisPersent\":1\n    }\n  },\n  {\n  \t  \"title\":\"🔖最新🔖\",\n    \"url\":\"/new/\",\n    \"style\":\n    {\n    \t  \"layout_flexGrow\":1,\n       \"layout_flexBasisPersent\":1\n    }\n  }\n]",
    "lastUpdateTime": 1784915802465,
    "respondTime": 4738,
    "ruleBookInfo": {
      "author": ".bookcover@.mt10@text##作者：",
      "coverUrl": ".bookcover@img@src",
      "downloadUrls": ".bookbutton@a@href",
      "intro": ".bookintro@.con@text",
      "kind": ".bookcover@.gray.0@text##分类：",
      "lastChapter": ".bookcover@.gray.3@text##更新：",
      "name": ".bookcover@.title@text"
    },
    "ruleContent": {},
    "ruleExplore": {
      "author": ".author@text",
      "bookList": ".imgtextlist@li",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": ".intro@text",
      "name": ".title@text"
    },
    "ruleSearch": {
      "author": ".author.0@a@text",
      "bookList": ".imgtextlist@li",
      "bookUrl": "a@href",
      "coverUrl": "Img@src",
      "intro": ".intro@text",
      "lastChapter": ".author.1@text##更新：",
      "name": ".title@text"
    },
    "ruleToc": {},
    "searchUrl": "/e/search/index.php,{\n\t\"method\":\"post\",\n\t\"body\":\"show=title,softsay,softwriter&keyboard={{key}}&tbname=download&tempid=1&Submit22=搜索\"\n\t}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "酷狗小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://gateway.kugou.com",
    "customButton": false,
    "customOrder": 665,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\n(function() {\n    var list = [];\n    function buildUrl(categoryId, sex) {\n        return \"@js:\\\"https://gateway.kugou.com/v1/book/category_list?\\\" + getsign(\\\"fee_type=0&type=\" + sex + \"&show_type=0&category_id=\" + categoryId + \"&size=100&page=\\\" + page + \\\"&status=0\\\") + \\\",{\\\\\\\"headers\\\\\\\":{\\\\\\\"x-router\\\\\\\":\\\\\\\"longaudio.kugou.com\\\\\\\"}}\\\"\";\n    }\n    function addItem(title, url) {\n        list.push({\n            title: title,\n            url: url,\n            style: { layout_flexGrow: 1, layout_flexBasisPercent: 0.25 }\n        });\n    }\n    function addTitle(title) {\n        list.push({\n            title: title,\n            url: null,\n            style: { layout_flexGrow: 1, layout_flexBasisPercent: 1 }\n        });\n    }\n    var maleCates = [\n        {title:'都市', value:'61'}, {title:'玄幻', value:'63'},\n        {title:'仙侠', value:'69'}, {title:'历史', value:'71'},\n        {title:'科幻', value:'77'}, {title:'游戏', value:'75'},\n        {title:'奇幻', value:'87'}, {title:'悬疑', value:'67'},\n        {title:'武侠', value:'73'}, {title:'体育', value:'81'},\n        {title:'军事', value:'65'}, {title:'二次元', value:'79'},\n        {title:'现实', value:'111'}, {title:'短篇', value:'113'}\n    ];\n    var femaleCates = [\n        {title:'现代言情', value:'105'}, {title:'古代言情', value:'99'},\n        {title:'玄幻言情', value:'101'}, {title:'仙侠奇缘', value:'103'},\n        {title:'浪漫青春', value:'107'}, {title:'科幻空间', value:'85'},\n        {title:'悬疑侦探', value:'93'}, {title:'现实生活', value:'109'},\n        {title:'短篇', value:'83'}\n    ];\n    addTitle('🔥 男生分类 🔥');\n    maleCates.forEach(function(c) {\n        addItem(c.title, buildUrl(c.value, 1));\n    });\n    addTitle('🌸 女生分类 🌸');\n    femaleCates.forEach(function(c) {\n        addItem(c.title, buildUrl(c.value, 2));\n    });\n    return JSON.stringify(list);\n})();",
    "jsLib": "function getsign(params) {\n    var timestamp = Math.floor(new Date().getTime() / 1000);\n    var base = \"mid=1&userid=0&dfid=0&appid=1005&clientver=0&clienttime=\" + timestamp + \"&\" + params;\n    var str = c + a(base) + c;\n    return \"signature=\" + b(str) + \"&\" + base;\n}\n\nvar c = \"OIlwieks28dk2k092lksi2UIkp\";\n\nfunction a(qs) {\n    var params = qs.split('&');\n    var obj = {};\n    params.forEach(function(p) {\n        var kv = p.split('=');\n        obj[kv[0]] = kv[1] || '';\n    });\n    var keys = Object.keys(obj).sort();\n    var result = keys.map(function(k) {\n        return k + '=' + obj[k];\n    });\n    return result.join('');\n}\n\nfunction b(str) {\n    try {\n        var md = java.security.MessageDigest.getInstance(\"MD5\");\n        var bytes = new java.lang.String(str).getBytes(\"UTF-8\");\n        md.update(bytes);\n        var digest = md.digest();\n        var hex = \"\";\n        for (var i = 0; i < digest.length; i++) {\n            var x = digest[i] & 0xFF;\n            if (x < 16) hex += \"0\";\n            hex += x.toString(16);\n        }\n        return hex;\n    } catch(e) {\n        return \"\";\n    }\n}",
    "lastUpdateTime": 1784019691677,
    "loginUi": "[{\"name\": \"讨论群1\",\"type\": \"button\",\"action\": \"joinGroup1()\",\"style\": {\"layout_flexGrow\": 1,\"layout_flexBasisPercent\": 0.45}},{\"name\": \"讨论群2\",\"type\": \"button\",\"action\": \"joinGroup2()\",\"style\": {\"layout_flexGrow\": 1,\"layout_flexBasisPercent\": 0.45}}]",
    "loginUrl": "\nfunction joinGroup1() {\n    java.startBrowserAwait(\"https://qm.qq.com/q/CnLl9FswzS\", \"加入讨论群1\");\n}\n\nfunction joinGroup2() {\n    java.startBrowserAwait(\"https://qm.qq.com/q/p67neFSXeg\", \"加入讨论群2\");\n}\n\nfunction login() {}",
    "respondTime": 3789,
    "ruleBookInfo": {
      "author": "$.author_name",
      "coverUrl": "$.cover_url",
      "init": "$.data",
      "intro": "$.intro",
      "kind": "{{$.score}}分,{{$.category_name}},等级:{{$.level}},{{$.is_free}}\n@js:result\n.replace('0', '付费')\n.replace('1', '免费');",
      "lastChapter": "$.new_chapter_name",
      "name": "$.title",
      "tocUrl": "@js:\nvar bookId = result.book_id || '';\njava.put('book_id', bookId);\nvar opts = { headers: { \"x-router\": \"longaudio.kugou.com\" } };\n\"https://gateway.kugou.com/v1/book/book_chapter_list?\" + getsign(\"apiver=3&book_id=\" + bookId) + \",\" + JSON.stringify(opts)",
      "wordCount": "$.all_words"
    },
    "ruleContent": {
      "content": "$.data.content"
    },
    "ruleExplore": {
      "author": "$.category_name",
      "bookList": "$.data.list",
      "bookUrl": "@js:\nvar bookId = result.book_id || '';\nvar opts = { headers: { \"x-router\": \"longaudio.kugou.com\" } };\n\"https://gateway.kugou.com/v1/book/book_detail?\" + getsign(\"book_id=\" + bookId) + \",\" + JSON.stringify(opts)",
      "coverUrl": "$.cover_url",
      "intro": "$.intro",
      "kind": "$.tags",
      "lastChapter": "{{$.score}}分",
      "name": "$.title##<em>|</em>",
      "wordCount": "$.all_words"
    },
    "ruleSearch": {
      "author": "$.author_name##<em>|</em>",
      "bookList": "$.data.lists",
      "bookUrl": "@js:\nvar bookId = result.book_id || '';\nvar opts = { headers: { \"x-router\": \"longaudio.kugou.com\" } };\n\"https://gateway.kugou.com/v1/book/book_detail?\" + getsign(\"book_id=\" + bookId) + \",\" + JSON.stringify(opts)",
      "checkKeyWord": "三界红包群",
      "coverUrl": "$.cover_url",
      "intro": "$.intro##<em>|</em>",
      "kind": "$.category_name##<em>|</em>",
      "lastChapter": "等级:{{$.level}}",
      "name": "$.title##<em>|</em>",
      "wordCount": "$.all_words"
    },
    "ruleToc": {
      "chapterList": "$.data.list",
      "chapterName": "$.chapter_name",
      "chapterUrl": "@js:\nvar cid = result.book_cid || '';\nvar bookId = java.get('book_id') || '';\nvar opts = { headers: { \"x-router\": \"longaudio.kugou.com\" } };\n\"https://gateway.kugou.com/v1/book/book_chapter_detail?\" + getsign(\"apiver=3&book_cid=\" + cid + \"&book_id=\" + bookId) + \",\" + JSON.stringify(opts)",
      "isVip": "$.price<js>\nif (result > 0) {\n    result = true;\n} else {\n    result = false;\n}\n</js>",
      "updateTime": "{{$.word_count}}字"
    },
    "searchUrl": "@js:\nvar op = { headers: { \"x-router\": \"complexsearch.kugou.com\" } };\n\"https://gateway.kugou.com/v1/search/novel?\" + getsign(\"pagesize=100&page=\" + page + \"&keyword=\" + key) + \",\" + JSON.stringify(op)",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "武道文学",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.bookwenxue.com/",
    "customButton": false,
    "customOrder": 666,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::/class/1_{{page}}.html\n武侠::/class/2_{{page}}.html\n都市::/class/3_{{page}}.html\n历史::/class/4_{{page}}.html\n网游::/class/5_{{page}}.html\n科幻::/class/6_{{page}}.html\n灵异::/class/7_{{page}}.html\n其他::/class/8_{{page}}.html",
    "lastUpdateTime": 1731430527324,
    "respondTime": 2926,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "##id=\"wrap\">([^<]*)<##$1###",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "[property=\"og:novel:read_url\"]@content"
    },
    "ruleContent": {
      "content": "id.content@html##最快更新.*|请访问.*|阅读.*最新章节.*|\\(www.22pq.com\\)",
      "imageStyle": "0",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {
      "author": "tag.td.2@text",
      "bookList": "tag.tbody@tag.tr!0",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.a.0@href##.+\\D((\\d+)\\d{3})\\D##http://www.22pq.com/files/article/image/$2/$1/$1s.jpg###",
      "kind": "tag.td.3@text&&tag.td.4@text",
      "lastChapter": "tag.td.1@text",
      "name": "tag.td.0@text##\\【|\\】"
    },
    "ruleSearch": {
      "author": "tag.font.2@text",
      "bookList": "class.info",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "tag.img@data-original",
      "kind": "tag.font.3@text&&tag.font.4@text&&tag.font.5@text",
      "lastChapter": "tag.font.1@text",
      "name": "tag.font.0@text"
    },
    "ruleToc": {
      "chapterList": "+@js:org.jsoup.Jsoup.parse(result).select(' #newlist a').toArray().sort().map(x=>({n:x.text(),u:x.attr('href')}))",
      "chapterName": "n",
      "chapterUrl": "u"
    },
    "searchUrl": "http://www.bookwenxue.com/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "零点小书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.ldxsw.co",
    "bookUrlPattern": "http://www.ldxsw.co/\\d+_\\d+/",
    "customButton": false,
    "customOrder": 667,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "首页::/\n排行::/paihangbang/\n完本::/wanben/1_{{page}}",
    "header": "{\n\t\"User-Agent\":\"Mozilla/5.0 (Linux; Android 9) Mobile Safari/537.36\",\"referer\":\"{{baseUrl}}\"\n\t}",
    "lastUpdateTime": 1733769269130,
    "respondTime": 15368,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "init": "@put:{n:\"[property$=book_name]@content\",\n\ta:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property$=latest_chapter_name]@content\",\ni:\".m-desc@textNodes\",\nc:\"[property$=image]@content\"}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}"
    },
    "ruleContent": {
      "content": ".content@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##『加入书签，方便阅读』"
    },
    "ruleExplore": {
      "author": "",
      "bookList": ".item||.txt-list@li",
      "bookUrl": "a@href",
      "coverUrl": "@js:\"/themes/qu/nocover.jpg\"",
      "intro": "a.-1@text",
      "kind": "span.-1@text",
      "name": "a.1@text||a@text"
    },
    "ruleSearch": {
      "author": ".odd.1@text",
      "bookList": "#nr",
      "bookUrl": "a.0@href",
      "checkKeyWord": "",
      "coverUrl": "@js:\"/themes/qu/nocover.jpg\"",
      "kind": "td.-1:-2@text",
      "lastChapter": "a.1@text",
      "name": "a.0@href",
      "wordCount": "td.-3@text"
    },
    "ruleToc": {
      "chapterList": ".section-list.1@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "@js:\nvar page=result.match(/当前第\\d+页，共(\\d+)页，每页显示\\d+章/)[1];\nif(baseUrl.match(/\\/1\\/$/)){\n\tvar url=baseUrl;\n\t}else{\n\t\tvar url=String(baseUrl+\"1/\");\n}\nvar list=[];\nfor(var i=2;i<=page;i++){\n\tlist.push(url.replace(/1\\/$/,i+\"/\"));\n}\nlist;"
    },
    "searchUrl": "http://www.ldxsw.co/modules/article/search.php?searchkey={{key}}&submit=&page={{page}},{\n  \"charset\": \"GBK\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "网站打不开",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "顾淮小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://read.xiaoshuo1-sm.com",
    "customButton": false,
    "customOrder": 668,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1785382031556,
    "respondTime": 1824,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "ChapterContent\n@js:\nfunction U(e) {\n    return e.split(\"\").map( e => {\n        return e.match(/[A-Za-z]/) ? (c = Math.floor(e.charCodeAt(0) / 97), k = (e.toLowerCase().charCodeAt(0) - 83) % 26 || 26, String.fromCharCode(k + (0 == c ? 64 : 96))) : e\n   }).join(\"\")\n}\nresult && result.length > 10 ? java.base64Decoder(U(result)) : '这是 🔒 付费章节 哦！\\n';"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "author",
      "bookList": "@js:\n    var aladdin = JSON.parse(result).aladdin;\n    var list= [];\n\n    var bid = aladdin.bid;\n    var html = String(java.ajax( 'https://t.shuqi.com/catalog/' + bid ) );\n    var scpubKey = html.match(/bscpubKey\":\"(\\w+)\"/)[1];  \n    var timestamp =~~(Date.now()/1e3);\n    var userId = '8000000';\n    var sign =  java.md5Encode(String(bid) + timestamp + userId + scpubKey); \n//java.md5Encode hex_md5 str_md5\n    var params ='&bookId=' + bid + '&user_id=' + userId + '&timestamp=' + timestamp + '&sign=' + sign ;\n\n    let e = { cata: 'http://content.shuqireader.com/openapi/book/chapterlist?shuqi_h5=205&platform=0'+ params };\n    Object.assign(aladdin, e);\n\n    list.push(aladdin);\n    list;",
      "bookUrl": "cata",
      "coverUrl": "cover",
      "intro": "desc",
      "kind": "category",
      "lastChapter": "latest_chapter.cname",
      "name": "title"
    },
    "ruleToc": {
      "chapterList": "$..volumeList[*]@put:{freeUrl:$..freeContUrlPrefix}",
      "chapterName": "🆓{$.chapterName}",
      "chapterUrl": "@get:{freeUrl}{$.contUrlSuffix}"
    },
    "searchUrl": "/novel/i.php?do=is_serchpay&q={{key}}&filterMigu=1&p={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "\n\t\njm = Object.keys(link_Params).map((key)=>link_Params[key]).join(\"\");\n_md5 = String(java.md5Encode(jm));\nmd5 = _md5.substring(3,_md5.length-5);\napi_Params = {\n   \"ver\": \"1.6.4\",\n   \"md5\": md5\n};\nbody = Object.assign(link_Params, api_Params);\noption = {'method':'POST','body':JSON.stringify(body)};\nurl = link_Urlpath +\",\"+ JSON.stringify(option);",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "乐读小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://api.book.bookld.com/",
    "customButton": false,
    "customOrder": 669,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nsort=[];\npush=(title,url,type1,type2)=>sort.push({\n\t\ttitle: title,\n\t\turl: url,\n\t\tstyle: {\n\t\t\t\tlayout_flexGrow: type1,\n\t\t\t\tlayout_flexBasisPercent: type2\n\t\t\t}\n\t});\n\npush('榜单', null, 1, 1);\n  bd=[\"综合\",\"新书\",\"完结\",\"男生\",\"女生\",\"收藏\"];\n    bd.map((title,type)=>{\t\t\t\t\t\n\t\t\turl = `@js:link_Urlpath = \"/Book/RankingList\";\n\t   \tlink_Params =\t{\"ranking_id\":${type+91},\"start\":(page-1)*20,\"limit\":20};\t\n\t\t \teval(String(source.bookSourceComment));`;\n\t\t \t\n\t\t\t\tif(type+1 <= bd.length - bd.length%3)\n\t\t\t {\tpush(title, url, 1, 0.25);}\n\t\t\t\telse{ push(title, url, 0, 0.3);}\t\t\t\t\t\t\t\t\t\t\n\t\t\t});\n\n   fl =[[\"男频\",\"100\",\n[\"都市\",\"玄幻\",\"仙侠\",\"灵异\",\"军史\",\"科幻\",\"竞技\",\"N次元\"]],\n[\"女频\",\"200\",\n[\"现言\",\"古言\",\"幻言\",\"灵异\",\"科幻\",\"青春\"]],\n[\"名著\",\"300\",\n[\"中国名著\",\"外国名著\"]]\n];\nfl.map([title,gender,list]=>{\n  \t\n\tpush(title, null, 1, 1);\n\t  list.map((title,type)=>{\n\t  \turl = `@js:link_Urlpath = \"/Book/QueryBookForCtgr\";\n\t   \tlink_Params =\t{\"type\":${type+1+Number(gender)},\"category\":0,\"serials\":\"不限\",\"vip\":\"不限\",\"start\":(page-1)*20,\"limit\":20};\t\n\t\t \teval(String(source.bookSourceComment));`;\n\tif(list.length > 3){\n\t\tif(type+1 <= list.length - list.length%3)\n\t\t\t {\tpush(title, url, 1, 0.25);}\n\t\t\t\telse{ push(title, url, 0, 0.29);}\n\t\t\t\t}\n\t\t\t\telse{ push(title, url, 1, 0.25);}\n    \t});\n\t});\n\nJSON.stringify(sort);",
    "lastUpdateTime": 1787418192524,
    "respondTime": 3877,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$.cover",
      "intro": "🔖 标签：{{$.tags##\\n##,}}\n🕰 更新：{{$.updated}}\n♠️ 版权：{{$.MoreInfo##免责声明：|，.*}}\n📂 简介：{{$.longIntro}}##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "{{$.majorCate}}\n{{r=java.getString('isSerial');if(r!=\"\") r!='true'?'完结':'连载';}}\n{{$.updated##\\s.*}}",
      "lastChapter": "$.lastChapter",
      "name": "$.title",
      "tocUrl": "@js:\nlink_Urlpath = \"/Book/CatelogueList\";\nlink_Params =\t{ \n\t \"_id\": java.put('_id',java.getString('$._id')),\n  \"userID\": \"312818\"\n  };\neval(String(source.bookSourceComment));",
      "wordCount": "$.wordCount"
    },
    "ruleContent": {
      "content": "<js>\n$ = JSON.parse(result);\nbody = $.chapter.body;\nif(body!=null){\n\t\n\n//解密方式一（阅读内置方法）：\njmkey=\"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjYFYoMbA0uW8by6+YIghxxsvibS9YW4yKVSulykAzZZwZ/+dNTkZ4inY7Pj08aksm6RCGKS6+WfvVQo/EdkcS5p2LY2/76qVzapyHsyQf/Pud6ATPKnwxNt/DaqjL35Z9K0NI/RF9x732RdIEOTKXppfRdzCa/1Ctm/5ZFilY8UmZsppkjDd3XkuPr3n3wVC8WFvqmdJ1N55prRlnaRaO+mIOXo3OsOzIxE5EdcE0TLT9OFZ3Wlbi3E0iI0v/ZsrWoL57YvLwo7BsARp7BansDCx8NZg6ObGQN/tNrE/nKqQTXeJjnFWXdLfhI7xivPPphkj5fNpiufIsIUEd7eXBwIDAQAB\";\ndata = java.base64DecodeToByteArray(body);\nkey = java.base64DecodeToByteArray(jmkey);\n\ncontent = java.createAsymmetricCrypto(\"RSA\").setPublicKey(key).decryptStr(data)\n\t\n/*\t\n//解密方式二（构造函数）：\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n\t   Packages.java.lang,\n     Packages.java.security,\n     Packages.java.security.interfaces,\n     Packages.java.security.spec,\n     Packages.android.util,\n     Packages.java.io,      \n     Packages.javax.crypto,\n     Packages.javax.crypto.spec\n);\nwith(javaImport){\n function Decode(str){\njmkey=\"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjYFYoMbA0uW8by6+YIghxxsvibS9YW4yKVSulykAzZZwZ/+dNTkZ4inY7Pj08aksm6RCGKS6+WfvVQo/EdkcS5p2LY2/76qVzapyHsyQf/Pud6ATPKnwxNt/DaqjL35Z9K0NI/RF9x732RdIEOTKXppfRdzCa/1Ctm/5ZFilY8UmZsppkjDd3XkuPr3n3wVC8WFvqmdJ1N55prRlnaRaO+mIOXo3OsOzIxE5EdcE0TLT9OFZ3Wlbi3E0iI0v/ZsrWoL57YvLwo7BsARp7BansDCx8NZg6ObGQN/tNrE/nKqQTXeJjnFWXdLfhI7xivPPphkj5fNpiufIsIUEd7eXBwIDAQAB\";\n \tpublicKey = \tKeyFactory.getInstance(\"RSA\").generatePublic(new X509EncodedKeySpec(Base64.decode(jmkey, 0)));\n\n       instance = Cipher.getInstance(\"RSA\");\n        instance.init(2, publicKey);\n        decode = Base64.decode(str,0);\n        blockSize = instance.getBlockSize();\n        byteArrayOutputStream = new ByteArrayOutputStream(64);\n         i = 0;\n        while (true) {\n             i2 = i * blockSize;\n            if (decode.length - i2 > 0) {\n                byteArrayOutputStream.write(instance.doFinal(decode, i2, blockSize));\n                i++;\n            } else {\n                decode = byteArrayOutputStream.toByteArray();\n                byteArrayOutputStream.close();\n                return new String(decode);\n            }\n        }\n    }\n}\ncontent = Decode(body);\n\n*/\n\n}\nelse{ msg = $.msg; }\n</js>"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.books",
      "bookUrl": "@js:\nlink_Urlpath = \"/Book/ArticleInfo\";\nlink_Params =\t{ \n\t \"_id\": \"{{$._id}}\",\n  \"userID\": \"312818\"\n  };\neval(String(source.bookSourceComment));",
      "coverUrl": "$.cover",
      "intro": "$.shortIntro",
      "kind": "{{$.majorCate}}\n{{r=java.getString('isSerial');if(r!=\"\") r!='true'?'完结':'连载';}}\n{{$.updated##\\s.*}}",
      "name": "$.title",
      "wordCount": "$.lastChapter"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.books",
      "bookUrl": "@js:\nlink_Urlpath = \"/Book/ArticleInfo\";\nlink_Params =\t{ \n\t \"_id\": \"{{$._id}}\",\n  \"userID\": \"312818\"\n  };\neval(String(source.bookSourceComment));",
      "coverUrl": "$.cover",
      "intro": "$.shortIntro",
      "kind": "{{$.majorCate}}\n{{r=java.getString('isSerial');if(r!=\"\") r!='true'?'完结':'连载';}}\n{{$.updated##\\s.*}}",
      "lastChapter": "$.lastChapter",
      "name": "$.title"
    },
    "ruleToc": {
      "chapterList": "$.mixToc.chapters",
      "chapterName": "$.title",
      "chapterUrl": "@js:\nlink_Urlpath = \"/Book/ChapterContent\";\nlink_Params =\t{ \n\t \"_id\": java.get(\"_id\"),\n  \"chapter_id\": \"{{$.chapter_id}}\",\n  };\neval(String(source.bookSourceComment));"
    },
    "searchUrl": "@js:\nlink_Urlpath = \"/Book/QueryArticleByName\";\nlink_Params =\t{\"query\": key};\neval(String(source.bookSourceComment));",
    "weight": 0
  },
  {
    "bookSourceComment": "\n源社区：@Mengteen 原创\n二传二创或者是其它问题请联系我。\n我邮箱:[xxxmgqxxx@vip.qq.com]",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "连连看漫画",
    "bookSourceType": 2,
    "bookSourceUrl": "https://www.hmmfk.com",
    "customButton": false,
    "customOrder": 670,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\": \"连载中\",\"url\": \"/list/all_0-{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.25\n}},\n{\"title\": \"已完结\",\"url\": \"/list/all_1-{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.25\n}},\n{\"title\": \"全部\",\"url\": \"/list/index-{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.25\n}}\n]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; 22041211AC Build/SP1A.210812.016) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.104 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1784712235965,
    "respondTime": 12542,
    "ruleBookInfo": {
      "author": ".detail-main-info-author.1@text",
      "intro": "📄简介：{{@@.detail-desc@text}}",
      "kind": ".detail-main-info-class@a@text",
      "lastChapter": "ul@li.0@text",
      "name": ".detail-main-info-title@text",
      "tocUrl": "ul@li"
    },
    "ruleContent": {
      "content": "class.view-main-1 readForm@img@html",
      "imageStyle": "FULL",
      "nextContentUrl": "class.view-bottom-bar@li.2@a@href"
    },
    "ruleExplore": {
      "bookList": "ul@li",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": ".manga-list-2-tip@text",
      "kind": "🔞{{@@.level@text}}",
      "name": "p@a@text"
    },
    "ruleSearch": {
      "author": ".book-list-info-bottom-item@text",
      "bookList": "ul@li",
      "bookUrl": "a@href",
      "coverUrl": "img@data-original",
      "intro": ".book-list-info-desc@text",
      "kind": "class.book-list-info-bottom-right-font active@text",
      "name": ".book-list-info-title@text"
    },
    "ruleToc": {
      "chapterList": "-ul@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "/search?keyword={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "唐三中文#1",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.tangsanshu.org",
    "customButton": false,
    "customOrder": 671,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1786514335874,
    "respondTime": 3406,
    "ruleBookInfo": {
      "author": ".small span.0@text",
      "coverUrl": ".cover img@src",
      "intro": "[property$=description]@content##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": ".small span.1:2:4@text##小说|.*：|\\s.*",
      "lastChapter": ".last a@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": ".info h2@text",
      "wordCount": ".small span.3@text##.*："
    },
    "ruleContent": {
      "content": "#content@html",
      "replaceRegex": "##http.*//.*|请记住本书首.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author@text",
      "bookList": ".bookbox",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "kind": ".cat@text##.*：|小说",
      "lastChapter": ".update a@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": ".bookname@text"
    },
    "ruleToc": {
      "chapterList": ".listmain dd a",
      "chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "href"
    },
    "searchUrl": "/s.php?ie=utf-8&s=&q={{key}}",
    "weight": 74
  },
  {
    "bookSourceComment": "//by:cwjdb\n//正文解密薅的Buding",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "情幻文学",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.pdok.org",
    "customButton": false,
    "customOrder": 672,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\n    java.toast(\"正在努力加载中，请稍后\");\n    \nvar sort = [];\nvar push = (title, url, type1, type2) => {\n    sort.push ({\n        title: title,\n        url: url,\n        style: {\n            layout_flexGrow: type1,\n            layout_flexBasisPercent: type2\n        }\n    });\n};\n\nvar x = [{\n        u: \"https://www.pdok.org/all/fl/1/\",\n        ti: \"༺ˇ»`类型分类´«ˇ༻\"\n    },\n    {\n        u: \"https://www.pdok.org/top/\",\n        ti: \"༺ˇ»`排行分类´«ˇ༻\"\n    },\n    {\n        u: \"https://www.pdok.org/quanben/all/1/\",\n        ti: \"༺ˇ»`全本分类´«ˇ༻\"\n    }];\n    \nx.forEach (i => {\n    var o = org.jsoup.Jsoup.parse(java.ajax(i.u));\n    var s = o.select('ul.container a');\n    push(i.ti, \"\", 1, 1);\n    s.forEach((j,index) => {\n        var url = String (j.attr(\"href\")).replace(/(\\d+)\\/$/,\"{{page}}/\");\n        if (index + 1 <= s.length - s.length % 3){\n        push(j.text(), url, 1, 0.25)\n        }else{\n        \tpush(j.text(), url, -1, 0.29)\n        \t}\n    })\n});\n\nJSON.stringify(sort);",
    "lastUpdateTime": 1785667540790,
    "respondTime": 13170,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property$=latest_chapter_name]@content##正文卷.|正文.|VIP章节.|免费章节.|VIP卷.|默认卷.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加].*?[】）\\)]",
      "name": "[property$=book_name]@content",
      "wordCount": ".booktag span.0@ownText"
    },
    "ruleContent": {
      "content": "@js:\nvar a=src.match(/#booktxthtml'\\)\\.html\\((x\\(\"(.*)\",\"(.*)\",\"(.*)\"\\)\\))/);\nvar da=java.base64DecodeToByteArray(JSON.parse('\"'+a[2]+'\"'));\nvar key=java.strToBytes(a[3]);\nvar iv=java.base64DecodeToByteArray(JSON.parse('\"'+a[4]+'\"'));\njava.createSymmetricCrypto(\"AES/CBC/ZeroPadding\", key, iv).decryptStr(da);",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {
      "author": "td.3@text||small@text",
      "bookList": ".table tr!0||div.panel-body>div>div>div",
      "bookUrl": "h4 a@href||a.0@href",
      "coverUrl": ".col-sm-5 a@style##.*\\((.*)\\)##$1###",
      "intro": "p@text",
      "kind": "td[0,-1,-2]@text",
      "lastChapter": ".hidden-xs a@text",
      "name": "h4 a@text||a.0@text",
      "wordCount": "td.-3@text"
    },
    "ruleSearch": {
      "author": "small@text",
      "bookList": "div.panel-body>div>div>div",
      "bookUrl": "a.1@href",
      "coverUrl": "a.0@style##.*\\((.*)\\)##$1###",
      "intro": "p@text",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": "#newlist dd a",
      "chapterName": "text\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求含理更谢乐发推票盟补加字Kk\\/].*/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "chapterUrl": "href"
    },
    "searchUrl": "{{cookie.removeCookie(source.getKey())}}/search,{\n  \"body\": \"searchkey={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "三六小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.36xs.net",
    "customButton": false,
    "customOrder": 673,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n    {\n\t      \"title\": \"༺ˇ»`全部分类´«ˇ༻\",\n\t      \"url\": \"\",\n\t      \"style\": {\n\t      \t    \"layout_flexGrow\": 1,\n\t      \t    \"layout_flexBasisPercent\": 1\n\t      \t}\n\t   },\n    {\n        \"title\": \"玄幻修真\",\n        \"url\": \"/list/1/{{page}}.html\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"重生穿越\",\n        \"url\": \"/list/2/{{page}}.html\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"都市小说\",\n        \"url\": \"/list/3/{{page}}.html\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"军史小说\",\n        \"url\": \"/list/4/{{page}}.html\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"网游小说\",\n        \"url\": \"/list/5/{{page}}.html\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"科幻小说\",\n        \"url\": \"/list/6/{{page}}.html\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"灵异小说\",\n        \"url\": \"/list/7/{{page}}.html\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"言情小说\",\n        \"url\": \"/list/8/{{page}}.html\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    },\n    {\n        \"title\": \"其他小说\",\n        \"url\": \"/list/9/{{page}}.html\",\n        \"style\": {\n            \"layout_flexGrow\": 1,\n            \"layout_flexBasisPercent\": 0.25\n        }\n    }\n]",
    "lastUpdateTime": 1786317186587,
    "respondTime": 9810,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "[property~=category|status|update_time]@content##小说|\\s.*",
      "lastChapter": "[property$=latest_chapter_name]@content##正文卷.|正文.|VIP章节.|免费章节.|VIP卷.|默认卷.|章节目录.|最新章节.|[\\(（【].*?[求更谢乐发订/万架字票合补加].*?[】）\\)]",
      "name": "[property$=book_name]@content",
      "tocUrl": "text.章节目录@href"
    },
    "ruleContent": {
      "content": "<js>\nlet txt = \"\";\nlet regex = /PHA\\+[A-Za-z0-9+\\/]+={0,2}/g;\nlet match;\n\nwhile ((match = regex.exec(result)) !== null) {\n    let base64 = match[0].replace(/[^A-Za-z0-9\\+\\/\\=]/g, \"\");\n    txt += java.base64Decode(base64) + \"\\n\";\n}\n\nif (txt.trim() === \"\") {\n    let html = java.webView(null, baseUrl, null);\n    txt = java.getString(\".word_read@p!-1@html\", html)\n}\n\ntxt;\n</js>",
      "nextContentUrl": "text.下一@href\n<js>\n/_\\d+\\.html/.test(result) ? result : \"\"\n</js>",
      "replaceRegex": "<js>##36小说.*|起点中文.*|.*最新章节.*|.*全文阅读.*</js><js>##(“|‘|’|，|,|「|（|《|『|【|～|~|：|；|、|#|%|¥|/|\\|·|[\\u4e00-\\u9fa5\\u5730\\u5740\\u767c\\u5e03\\u9801])\\n\\s{2}##$1</js><js>##(?<=[一-鿆])\\s+</js>##请勿开启浏览器.*"
    },
    "ruleExplore": {
      "author": ".s4@text",
      "bookList": ".txt-list-row5 li",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.a.0@href##.*_(\\d+)\\/##/img/$1.jpg",
      "kind": ".s1,.s5@text##\\[|\\]",
      "lastChapter": "tag.a.1@text",
      "name": "tag.a.0@text"
    },
    "ruleSearch": {
      "author": "tag.a.1@text",
      "bookList": ".txt-list-row5 li",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.a.0@href##.*_(\\d+)\\/##/img/$1.jpg",
      "kind": ".s1,.s5@text##\\[|\\]",
      "lastChapter": "tag.a.2@text",
      "name": "tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": ".section-list li a",
      "chapterName": "text",
      "chapterUrl": "onclick##.*\\((\\d+)\\);##$1\n<js>\nlet burl = book.bookUrl.replace(\"_\",\"/\");\nburl + result + \".html\"\n</js>",
      "nextTocUrl": "option@value"
    },
    "searchUrl": "/search.html,{\n  \"body\": \"s={{key}}\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "同站：\nhttps://www.po18po.com\nhttps://www.po18wenxue.com\nhttps://www.sougou.work",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🔰 桃色小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.win10city.com",
    "customButton": false,
    "customOrder": 674,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"榜单\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"最近更新\",\"url\":\"/top/lastupdate/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最新入库\",\"url\":\"/top/postdate/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总推荐榜\",\"url\":\"/top/allvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月推荐榜\",\"url\":\"/top/monthvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总月票榜\",\"url\":\"/top/allvipvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月点击榜\",\"url\":\"/top/monthvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周点击榜\",\"url\":\"/top/weekvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日点击榜\",\"url\":\"/top/dayvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总鲜花榜\",\"url\":\"/top/allflower/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总鸡蛋榜\",\"url\":\"/top/allegg/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"编辑推荐\",\"url\":\"/top/toptime/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月勤更榜\",\"url\":\"/top/monthwords/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"收藏榜\",\"url\":\"/top/goodnum/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"字数榜\",\"url\":\"/top/words/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"新书榜\",\"url\":\"/top/newhot/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"类型\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"校园言情\",\"url\":\"/sort/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市言情\",\"url\":\"/sort/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代言情\",\"url\":\"/sort/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"罗曼史\",\"url\":\"/sort/4/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"耽美\",\"url\":\"/sort/5/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"百合\",\"url\":\"/sort/6/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"同人\",\"url\":\"/sort/7/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奇幻玄幻\",\"url\":\"/sort/8/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游竞技\",\"url\":\"/sort/9/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻异能\",\"url\":\"/sort/10/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"恐怖灵异\",\"url\":\"/sort/11/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"惊悚推理\",\"url\":\"/sort/12/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠仙侠\",\"url\":\"/sort/13/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史军事\",\"url\":\"/sort/14/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越重生\",\"url\":\"/sort/15/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"综合其它\",\"url\":\"/sort/16/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"全本\",\"url\":\"/quanben/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1743672022128,
    "respondTime": 7311,
    "ruleBookInfo": {
      "author": "class.red.0@text",
      "coverUrl": "",
      "intro": "class.bookintro@text",
      "kind": "",
      "lastChapter": "class.book chapterlist@dd.0@text",
      "name": "class.booktitle@text",
      "tocUrl": "h2@tag.a.0@href",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "class.readcontent@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##↑返回顶部↑"
    },
    "ruleExplore": {
      "author": "class.author.0@text",
      "bookList": "class.bookinfo",
      "bookUrl": "class.bookinfo@tag.a@href",
      "coverUrl": "@js:'https://www.gb84.com/modules/article/images/nocover.jpg'",
      "intro": "class.update@text",
      "kind": "",
      "lastChapter": "class.cat@text",
      "name": "class.bookname@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "class.author.0@text",
      "bookList": "class.bookinfo",
      "bookUrl": "class.bookinfo@tag.a@href",
      "checkKeyWord": "",
      "coverUrl": "@js:'https://www.gb84.com/modules/article/images/nocover.jpg'",
      "intro": "class.update@textNodes",
      "kind": "tag.td.4@text",
      "lastChapter": "class.cat@text",
      "name": "class.bookname@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "id.list-chapterAll@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "/modules/article/search.php,{\n'charset':'utf-8',\n'method':'POST',\n'body':'searchkey={{key}}'\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "QQ阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "https://book.qq.com/",
    "customButton": false,
    "customOrder": 677,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"女生精选\",\"url\":\" https://book.qq.com/recommend/female-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"免费榜\",\"url\":\" https://book.qq.com/book-rank/female-free/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"封神榜\",\"url\":\" https://book.qq.com/book-rank/female-god/cycle-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"新书榜-日\",\"url\":\" https://book.qq.com/book-rank/female-new/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书榜-周\",\"url\":\" https://book.qq.com/book-rank/female-new/cycle-2-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书榜-月\",\"url\":\" https://book.qq.com/book-rank/female-new/cycle-3-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-周\",\"url\":\" https://book.qq.com/book-rank/female-finish/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-月\",\"url\":\" https://book.qq.com/book-rank/female-finish/cycle-2-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-总\",\"url\":\" https://book.qq.com/book-rank/female-finish/cycle-3-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"畅销榜-全部\",\"url\":\" https://book.qq.com/book-rank/female-sell/cycle-5-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"上架30天\",\"url\":\" https://book.qq.com/book-rank/female-sell/cycle-1-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架120天\",\"url\":\" https://book.qq.com/book-rank/female-sell/cycle-2-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架300天\",\"url\":\" https://book.qq.com/book-rank/female-sell/cycle-3-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架300天以上\",\"url\":\" https://book.qq.com/book-rank/female-sell/cycle-4-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n{\"title\":\"↓    ↓    ↓    全部    ↓    ↓    ↓\",\"url\":\"https://book.qq.com/book-cate/0-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n\n{\"title\":\"古言\",\"url\":\"https://book.qq.com/book-cate/30013-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"女尊\",\"url\":\"https://book.qq.com/book-cate/30013-30014-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/30013-30015-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"宅斗\",\"url\":\"https://book.qq.com/book-cate/30013-30016-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"穿越\",\"url\":\"https://book.qq.com/book-cate/30013-30017-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"宫斗\",\"url\":\"https://book.qq.com/book-cate/30013-30018-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"种田\",\"url\":\"https://book.qq.com/book-cate/30013-30019-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"西方\",\"url\":\"https://book.qq.com/book-cate/30013-30094-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"清穿\",\"url\":\"https://book.qq.com/book-cate/30013-30095-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"蛮荒\",\"url\":\"https://book.qq.com/book-cate/30013-30096-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"江湖\",\"url\":\"https://book.qq.com/book-cate/30013-30097-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"现言\",\"url\":\"https://book.qq.com/book-cate/30020-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.6}},\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/30020-30021-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"婚恋\",\"url\":\"https://book.qq.com/book-cate/30020-30022-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"明星\",\"url\":\"https://book.qq.com/book-cate/30020-30023-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"职场\",\"url\":\"https://book.qq.com/book-cate/30020-30026-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/30020-30027-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"豪门\",\"url\":\"https://book.qq.com/book-cate/30020-30028-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"极道\",\"url\":\"https://book.qq.com/book-cate/30020-30029-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"民国\",\"url\":\"https://book.qq.com/book-cate/30020-30030-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异国\",\"url\":\"https://book.qq.com/book-cate/30020-30098-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"幻情\",\"url\":\"https://book.qq.com/book-cate/30001-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/30001-30002-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/30001-30003-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"远古\",\"url\":\"https://book.qq.com/book-cate/30001-30004-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异族\",\"url\":\"https://book.qq.com/book-cate/30001-30005-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"魔幻\",\"url\":\"https://book.qq.com/book-cate/30001-30006-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"西幻\",\"url\":\"https://book.qq.com/book-cate/30001-30007-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/30001-30092-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/30008-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.6}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/30008-30009-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"修仙\",\"url\":\"https://book.qq.com/book-cate/30008-30010-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/30008-30011-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"洪荒\",\"url\":\"https://book.qq.com/book-cate/30008-30012-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"仙缘\",\"url\":\"https://book.qq.com/book-cate/30008-30093-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"青春\",\"url\":\"https://book.qq.com/book-cate/30031-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"成长\",\"url\":\"https://book.qq.com/book-cate/30031-30032-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"纯爱\",\"url\":\"https://book.qq.com/book-cate/30031-30033-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"疼痛\",\"url\":\"https://book.qq.com/book-cate/30031-30034-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/30031-30035-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/30050-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/30050-30051-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"网游\",\"url\":\"https://book.qq.com/book-cate/30050-30052-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"网恋\",\"url\":\"https://book.qq.com/book-cate/30050-30053-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/30050-30054-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/30042-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/30042-30043-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"位面\",\"url\":\"https://book.qq.com/book-cate/30042-30044-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/30042-30045-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/30042-30046-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/30042-30047-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"进化\",\"url\":\"https://book.qq.com/book-cate/30042-30048-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/30042-30049-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/30036-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/30036-30037-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"探险\",\"url\":\"https://book.qq.com/book-cate/30036-30039-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/30036-30040-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"风水\",\"url\":\"https://book.qq.com/book-cate/30036-30041-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/30055-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.6}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/30055-30100-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"唯美\",\"url\":\"https://book.qq.com/book-cate/30055-30101-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"萌系\",\"url\":\"https://book.qq.com/book-cate/30055-30102-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"纯恋\",\"url\":\"https://book.qq.com/book-cate/30055-30103-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/30055-30104-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"古衍\",\"url\":\"https://book.qq.com/book-cate/30055-30105-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"影衍\",\"url\":\"https://book.qq.com/book-cate/30055-30106-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"漫衍\",\"url\":\"https://book.qq.com/book-cate/30055-30107-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"其他\",\"url\":\"https://book.qq.com/book-cate/30055-30108-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/30083-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/30083-30086-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/30083-30089-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/30120-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/30120-30121-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"行业\",\"url\":\"https://book.qq.com/book-cate/30120-30122-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"探索\",\"url\":\"https://book.qq.com/book-cate/30120-30123-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"人文\",\"url\":\"https://book.qq.com/book-cate/30120-30124-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n\n{\"title\":\"↑    ↑    ↑    ***    ↑    ↑    ↑\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n{\"title\":\"↓    ↓    ↓    连载中    ↓    ↓    ↓\",\"url\":\"https://book.qq.com/book-cate/0-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n\n{\"title\":\"古言\",\"url\":\"https://book.qq.com/book-cate/30013-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"女尊\",\"url\":\"https://book.qq.com/book-cate/30013-30014-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/30013-30015-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"宅斗\",\"url\":\"https://book.qq.com/book-cate/30013-30016-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"https://book.qq.com/book-cate/30013-30017-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"宫斗\",\"url\":\"https://book.qq.com/book-cate/30013-30018-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"种田\",\"url\":\"https://book.qq.com/book-cate/30013-30019-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"西方\",\"url\":\"https://book.qq.com/book-cate/30013-30094-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"清穿\",\"url\":\"https://book.qq.com/book-cate/30013-30095-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"蛮荒\",\"url\":\"https://book.qq.com/book-cate/30013-30096-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"江湖\",\"url\":\"https://book.qq.com/book-cate/30013-30097-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现言\",\"url\":\"https://book.qq.com/book-cate/30020-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.5,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/30020-30021-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"婚恋\",\"url\":\"https://book.qq.com/book-cate/30020-30022-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"明星\",\"url\":\"https://book.qq.com/book-cate/30020-30023-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"职场\",\"url\":\"https://book.qq.com/book-cate/30020-30026-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/30020-30027-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"豪门\",\"url\":\"https://book.qq.com/book-cate/30020-30028-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"极道\",\"url\":\"https://book.qq.com/book-cate/30020-30029-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"民国\",\"url\":\"https://book.qq.com/book-cate/30020-30030-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异国\",\"url\":\"https://book.qq.com/book-cate/30020-30098-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"幻情\",\"url\":\"https://book.qq.com/book-cate/30001-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/30001-30002-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/30001-30003-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"远古\",\"url\":\"https://book.qq.com/book-cate/30001-30004-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异族\",\"url\":\"https://book.qq.com/book-cate/30001-30005-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"魔幻\",\"url\":\"https://book.qq.com/book-cate/30001-30006-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"西幻\",\"url\":\"https://book.qq.com/book-cate/30001-30007-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/30001-30092-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/30008-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/30008-30009-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"修仙\",\"url\":\"https://book.qq.com/book-cate/30008-30010-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/30008-30011-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"洪荒\",\"url\":\"https://book.qq.com/book-cate/30008-30012-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"仙缘\",\"url\":\"https://book.qq.com/book-cate/30008-30093-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"青春\",\"url\":\"https://book.qq.com/book-cate/30031-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"成长\",\"url\":\"https://book.qq.com/book-cate/30031-30032-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"纯爱\",\"url\":\"https://book.qq.com/book-cate/30031-30033-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"疼痛\",\"url\":\"https://book.qq.com/book-cate/30031-30034-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/30031-30035-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/30050-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/30050-30051-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"https://book.qq.com/book-cate/30050-30052-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网恋\",\"url\":\"https://book.qq.com/book-cate/30050-30053-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/30050-30054-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/30042-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/30042-30043-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"位面\",\"url\":\"https://book.qq.com/book-cate/30042-30044-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/30042-30045-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/30042-30046-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/30042-30047-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"进化\",\"url\":\"https://book.qq.com/book-cate/30042-30048-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/30042-30049-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/30036-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/30036-30037-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"探险\",\"url\":\"https://book.qq.com/book-cate/30036-30039-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/30036-30040-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"风水\",\"url\":\"https://book.qq.com/book-cate/30036-30041-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/30055-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/30055-30100-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"唯美\",\"url\":\"https://book.qq.com/book-cate/30055-30101-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"萌系\",\"url\":\"https://book.qq.com/book-cate/30055-30102-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"纯恋\",\"url\":\"https://book.qq.com/book-cate/30055-30103-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/30055-30104-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古衍\",\"url\":\"https://book.qq.com/book-cate/30055-30105-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"影衍\",\"url\":\"https://book.qq.com/book-cate/30055-30106-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"漫衍\",\"url\":\"https://book.qq.com/book-cate/30055-30107-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"其他\",\"url\":\"https://book.qq.com/book-cate/30055-30108-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/30083-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/30083-30086-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/30083-30089-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/30120-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/30120-30121-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"行业\",\"url\":\"https://book.qq.com/book-cate/30120-30122-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"探索\",\"url\":\"https://book.qq.com/book-cate/30120-30123-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"人文\",\"url\":\"https://book.qq.com/book-cate/30120-30124-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"↑    ↑    ↑    ***    ↑    ↑    ↑\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"↓    ↓    ↓    已完结    ↓    ↓    ↓\",\"url\":\"https://book.qq.com/book-cate/0-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n\n{\"title\":\"古言\",\"url\":\"https://book.qq.com/book-cate/30013-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"女尊\",\"url\":\"https://book.qq.com/book-cate/30013-30014-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/30013-30015-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"宅斗\",\"url\":\"https://book.qq.com/book-cate/30013-30016-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"https://book.qq.com/book-cate/30013-30017-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"宫斗\",\"url\":\"https://book.qq.com/book-cate/30013-30018-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"种田\",\"url\":\"https://book.qq.com/book-cate/30013-30019-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"西方\",\"url\":\"https://book.qq.com/book-cate/30013-30094-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"清穿\",\"url\":\"https://book.qq.com/book-cate/30013-30095-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"蛮荒\",\"url\":\"https://book.qq.com/book-cate/30013-30096-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"江湖\",\"url\":\"https://book.qq.com/book-cate/30013-30097-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现言\",\"url\":\"https://book.qq.com/book-cate/30020-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/30020-30021-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"婚恋\",\"url\":\"https://book.qq.com/book-cate/30020-30022-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"明星\",\"url\":\"https://book.qq.com/book-cate/30020-30023-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"职场\",\"url\":\"https://book.qq.com/book-cate/30020-30026-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/30020-30027-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"豪门\",\"url\":\"https://book.qq.com/book-cate/30020-30028-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"极道\",\"url\":\"https://book.qq.com/book-cate/30020-30029-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"民国\",\"url\":\"https://book.qq.com/book-cate/30020-30030-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异国\",\"url\":\"https://book.qq.com/book-cate/30020-30098-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"幻情\",\"url\":\"https://book.qq.com/book-cate/30001-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/30001-30002-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/30001-30003-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"远古\",\"url\":\"https://book.qq.com/book-cate/30001-30004-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异族\",\"url\":\"https://book.qq.com/book-cate/30001-30005-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"魔幻\",\"url\":\"https://book.qq.com/book-cate/30001-30006-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"西幻\",\"url\":\"https://book.qq.com/book-cate/30001-30007-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/30001-30092-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/30008-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/30008-30009-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"修仙\",\"url\":\"https://book.qq.com/book-cate/30008-30010-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/30008-30011-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"洪荒\",\"url\":\"https://book.qq.com/book-cate/30008-30012-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"仙缘\",\"url\":\"https://book.qq.com/book-cate/30008-30093-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"青春\",\"url\":\"https://book.qq.com/book-cate/30031-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"成长\",\"url\":\"https://book.qq.com/book-cate/30031-30032-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"纯爱\",\"url\":\"https://book.qq.com/book-cate/30031-30033-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"疼痛\",\"url\":\"https://book.qq.com/book-cate/30031-30034-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/30031-30035-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/30050-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/30050-30051-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"https://book.qq.com/book-cate/30050-30052-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网恋\",\"url\":\"https://book.qq.com/book-cate/30050-30053-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/30050-30054-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/30042-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/30042-30043-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"位面\",\"url\":\"https://book.qq.com/book-cate/30042-30044-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/30042-30045-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/30042-30046-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/30042-30047-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"进化\",\"url\":\"https://book.qq.com/book-cate/30042-30048-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/30042-30049-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/30036-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/30036-30037-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"探险\",\"url\":\"https://book.qq.com/book-cate/30036-30039-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/30036-30040-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"风水\",\"url\":\"https://book.qq.com/book-cate/30036-30041-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/30055-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/30055-30100-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"唯美\",\"url\":\"https://book.qq.com/book-cate/30055-30101-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"萌系\",\"url\":\"https://book.qq.com/book-cate/30055-30102-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"纯恋\",\"url\":\"https://book.qq.com/book-cate/30055-30103-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/30055-30104-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古衍\",\"url\":\"https://book.qq.com/book-cate/30055-30105-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"影衍\",\"url\":\"https://book.qq.com/book-cate/30055-30106-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"漫衍\",\"url\":\"https://book.qq.com/book-cate/30055-30107-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"其他\",\"url\":\"https://book.qq.com/book-cate/30055-30108-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/30083-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/30083-30086-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/30083-30089-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/30120-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/30120-30121-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"行业\",\"url\":\"https://book.qq.com/book-cate/30120-30122-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"探索\",\"url\":\"https://book.qq.com/book-cate/30120-30123-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"人文\",\"url\":\"https://book.qq.com/book-cate/30120-30124-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"↑    ↑    ↑    ***    ↑    ↑    ↑\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"男生精选\",\"url\":\"https://book.qq.com/recommend/male-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"免费榜\",\"url\":\"https://book.qq.com/book-rank/male-free/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"封神榜\",\"url\":\"https://book.qq.com/book-rank/male-god/cycle-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n{\"title\":\"新书榜-日\",\"url\":\"https://book.qq.com/book-rank/male-new/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书榜-周\",\"url\":\"https://book.qq.com/book-rank/male-new/cycle-2-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"新书榜-月\",\"url\":\"https://book.qq.com/book-rank/male-new/cycle-3-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-周\",\"url\":\"https://book.qq.com/book-rank/male-finish/cycle-1-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-月\",\"url\":\"https://book.qq.com/book-rank/male-finish/cycle-2-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完结榜-总\",\"url\":\"https://book.qq.com/book-rank/male-finish/cycle-3-{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n\n{\"title\":\"畅销榜-全部\",\"url\":\"https://book.qq.com/book-rank/male-sell/cycle-5-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.5,\"layout_flexGrow\":1}},\n{\"title\":\"上架30天内\",\"url\":\"https://book.qq.com/book-rank/male-sell/cycle-1-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架120天内\",\"url\":\"https://book.qq.com/book-rank/male-sell/cycle-2-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架300天内\",\"url\":\"https://book.qq.com/book-rank/male-sell/cycle-3-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上架300天以上\",\"url\":\"https://book.qq.com/book-rank/male-sell/cycle-4-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n{\"title\":\"↓    ↓    ↓    全部    ↓    ↓    ↓\",\"url\":\"https://book.qq.com/book-cate/0-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"东方玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-20002-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/20001-20003-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"争霸\",\"url\":\"https://book.qq.com/book-cate/20001-20082-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"高武\",\"url\":\"https://book.qq.com/book-cate/20001-20004-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"奇幻\",\"url\":\"https://book.qq.com/book-cate/20005-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"魔法\",\"url\":\"https://book.qq.com/book-cate/20005-20006-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"史诗\",\"url\":\"https://book.qq.com/book-cate/20005-20007-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"神秘\",\"url\":\"https://book.qq.com/book-cate/20005-20008-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"https://book.qq.com/book-cate/20005-20009-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"神史\",\"url\":\"https://book.qq.com/book-cate/20005-20092-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"空幻\",\"url\":\"https://book.qq.com/book-cate/20005-20093-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-20011-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"潮流\",\"url\":\"https://book.qq.com/book-cate/20010-20012-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"国术\",\"url\":\"https://book.qq.com/book-cate/20010-20013-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古武\",\"url\":\"https://book.qq.com/book-cate/20010-20099-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠同人\",\"url\":\"https://book.qq.com/book-cate/20010-20100-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/20014-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/20014-20015-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"幻修\",\"url\":\"https://book.qq.com/book-cate/20014-20016-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现修\",\"url\":\"https://book.qq.com/book-cate/20014-20017-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神话\",\"url\":\"https://book.qq.com/book-cate/20014-20018-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古典\",\"url\":\"https://book.qq.com/book-cate/20014-20101-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/20019-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"生活\",\"url\":\"https://book.qq.com/book-cate/20019-20020-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"娱乐\",\"url\":\"https://book.qq.com/book-cate/20019-20022-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"商场\",\"url\":\"https://book.qq.com/book-cate/20019-20025-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/20019-20026-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/20019-20027-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/20019-20069-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/20065-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/20065-20021-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"百态\",\"url\":\"https://book.qq.com/book-cate/20065-20071-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"女性\",\"url\":\"https://book.qq.com/book-cate/20065-20104-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20065-20105-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"时代\",\"url\":\"https://book.qq.com/book-cate/20065-20106-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"青年\",\"url\":\"https://book.qq.com/book-cate/20065-20108-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"历史\",\"url\":\"https://book.qq.com/book-cate/20028-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.5,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/20028-20029-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"先秦\",\"url\":\"https://book.qq.com/book-cate/20028-20083-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"秦汉三国\",\"url\":\"https://book.qq.com/book-cate/20028-20084-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.3,\"layout_flexGrow\":1}},\n{\"title\":\"两晋隋唐\",\"url\":\"https://book.qq.com/book-cate/20028-20085-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.3,\"layout_flexGrow\":1}},\n{\"title\":\"五代十国\",\"url\":\"https://book.qq.com/book-cate/20028-20086-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.3,\"layout_flexGrow\":1}},\n{\"title\":\"两宋元明\",\"url\":\"https://book.qq.com/book-cate/20028-20030-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.3,\"layout_flexGrow\":1}},\n{\"title\":\"清民\",\"url\":\"https://book.qq.com/book-cate/20028-20087-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"外史\",\"url\":\"https://book.qq.com/book-cate/20028-20031-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传记\",\"url\":\"https://book.qq.com/book-cate/20028-20088-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传说\",\"url\":\"https://book.qq.com/book-cate/20028-20094-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"军事\",\"url\":\"https://book.qq.com/book-cate/20032-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"战争\",\"url\":\"https://book.qq.com/book-cate/20032-20091-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"战斗\",\"url\":\"https://book.qq.com/book-cate/20032-20033-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"激战\",\"url\":\"https://book.qq.com/book-cate/20032-20034-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"军旅\",\"url\":\"https://book.qq.com/book-cate/20032-20035-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"抗战\",\"url\":\"https://book.qq.com/book-cate/20032-20036-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/20050-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/20050-20051-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"虚拟\",\"url\":\"https://book.qq.com/book-cate/20050-20052-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异界\",\"url\":\"https://book.qq.com/book-cate/20050-20053-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"系统\",\"url\":\"https://book.qq.com/book-cate/20050-20102-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"主播\",\"url\":\"https://book.qq.com/book-cate/20050-20103-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-20055-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"篮球\",\"url\":\"https://book.qq.com/book-cate/20054-20056-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"足球\",\"url\":\"https://book.qq.com/book-cate/20054-20057-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/20042-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/20042-20043-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿梭\",\"url\":\"https://book.qq.com/book-cate/20042-20044-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/20042-20045-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/20042-20046-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/20042-20047-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"变异\",\"url\":\"https://book.qq.com/book-cate/20042-20048-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/20042-20049-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.5,\"layout_flexGrow\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/20037-20038-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-20039-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"生存\",\"url\":\"https://book.qq.com/book-cate/20037-20040-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/20037-20041-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传奇\",\"url\":\"https://book.qq.com/book-cate/20037-20095-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/20059-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"幻想\",\"url\":\"https://book.qq.com/book-cate/20059-20060-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/20059-20061-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/20059-20063-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"恋爱\",\"url\":\"https://book.qq.com/book-cate/20059-20064-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"诸天无限\",\"url\":\"https://book.qq.com/book-cate/20109-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"无限\",\"url\":\"https://book.qq.com/book-cate/20109-20110-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"诸天\",\"url\":\"https://book.qq.com/book-cate/20109-20111-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"综漫\",\"url\":\"https://book.qq.com/book-cate/20109-20112-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/20076-0-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"剧本\",\"url\":\"https://book.qq.com/book-cate/20076-20075-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"评论\",\"url\":\"https://book.qq.com/book-cate/20076-20077-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/20076-20078-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"游记\",\"url\":\"https://book.qq.com/book-cate/20076-20079-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/20076-20096-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"散文\",\"url\":\"https://book.qq.com/book-cate/20076-20097-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"人物\",\"url\":\"https://book.qq.com/book-cate/20076-20098-0-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"连载中\",\"url\":\"https://book.qq.com/book-cate/0-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"东方玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-20002-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/20001-20003-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"争霸\",\"url\":\"https://book.qq.com/book-cate/20001-20082-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"高武\",\"url\":\"https://book.qq.com/book-cate/20001-20004-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"奇幻\",\"url\":\"https://book.qq.com/book-cate/20005-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"魔法\",\"url\":\"https://book.qq.com/book-cate/20005-20006-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"史诗\",\"url\":\"https://book.qq.com/book-cate/20005-20007-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神秘\",\"url\":\"https://book.qq.com/book-cate/20005-20008-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"https://book.qq.com/book-cate/20005-20009-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神史\",\"url\":\"https://book.qq.com/book-cate/20005-20092-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"空幻\",\"url\":\"https://book.qq.com/book-cate/20005-20093-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-20011-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"潮流\",\"url\":\"https://book.qq.com/book-cate/20010-20012-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"国术\",\"url\":\"https://book.qq.com/book-cate/20010-20013-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古武\",\"url\":\"https://book.qq.com/book-cate/20010-20099-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠同人\",\"url\":\"https://book.qq.com/book-cate/20010-20100-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/20014-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/20014-20015-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"幻修\",\"url\":\"https://book.qq.com/book-cate/20014-20016-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现修\",\"url\":\"https://book.qq.com/book-cate/20014-20017-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神话\",\"url\":\"https://book.qq.com/book-cate/20014-20018-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古典\",\"url\":\"https://book.qq.com/book-cate/20014-20101-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/20019-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"生活\",\"url\":\"https://book.qq.com/book-cate/20019-20020-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"娱乐\",\"url\":\"https://book.qq.com/book-cate/20019-20022-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"商场\",\"url\":\"https://book.qq.com/book-cate/20019-20025-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/20019-20026-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/20019-20027-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/20019-20069-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/20065-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/20065-20021-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"百态\",\"url\":\"https://book.qq.com/book-cate/20065-20071-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"女性\",\"url\":\"https://book.qq.com/book-cate/20065-20104-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20065-20105-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"时代\",\"url\":\"https://book.qq.com/book-cate/20065-20106-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"青年\",\"url\":\"https://book.qq.com/book-cate/20065-20108-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"历史\",\"url\":\"https://book.qq.com/book-cate/20028-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/20028-20029-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"先秦\",\"url\":\"https://book.qq.com/book-cate/20028-20083-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"秦汉三国\",\"url\":\"https://book.qq.com/book-cate/20028-20084-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"两晋隋唐\",\"url\":\"https://book.qq.com/book-cate/20028-20085-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"五代十国\",\"url\":\"https://book.qq.com/book-cate/20028-20086-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"两宋元明\",\"url\":\"https://book.qq.com/book-cate/20028-20030-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"清民\",\"url\":\"https://book.qq.com/book-cate/20028-20087-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"外史\",\"url\":\"https://book.qq.com/book-cate/20028-20031-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传记\",\"url\":\"https://book.qq.com/book-cate/20028-20088-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传说\",\"url\":\"https://book.qq.com/book-cate/20028-20094-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"军事\",\"url\":\"https://book.qq.com/book-cate/20032-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"战争\",\"url\":\"https://book.qq.com/book-cate/20032-20091-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"战斗\",\"url\":\"https://book.qq.com/book-cate/20032-20033-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"激战\",\"url\":\"https://book.qq.com/book-cate/20032-20034-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"军旅\",\"url\":\"https://book.qq.com/book-cate/20032-20035-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"抗战\",\"url\":\"https://book.qq.com/book-cate/20032-20036-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/20050-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/20050-20051-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"虚拟\",\"url\":\"https://book.qq.com/book-cate/20050-20052-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异界\",\"url\":\"https://book.qq.com/book-cate/20050-20053-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"系统\",\"url\":\"https://book.qq.com/book-cate/20050-20102-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"主播\",\"url\":\"https://book.qq.com/book-cate/20050-20103-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-20055-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"篮球\",\"url\":\"https://book.qq.com/book-cate/20054-20056-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"足球\",\"url\":\"https://book.qq.com/book-cate/20054-20057-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/20042-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/20042-20043-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿梭\",\"url\":\"https://book.qq.com/book-cate/20042-20044-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/20042-20045-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/20042-20046-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/20042-20047-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"变异\",\"url\":\"https://book.qq.com/book-cate/20042-20048-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/20042-20049-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/20037-20038-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-20039-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"生存\",\"url\":\"https://book.qq.com/book-cate/20037-20040-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/20037-20041-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传奇\",\"url\":\"https://book.qq.com/book-cate/20037-20095-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/20059-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"幻想\",\"url\":\"https://book.qq.com/book-cate/20059-20060-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/20059-20061-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/20059-20063-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"恋爱\",\"url\":\"https://book.qq.com/book-cate/20059-20064-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"诸天无限\",\"url\":\"https://book.qq.com/book-cate/20109-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"无限\",\"url\":\"https://book.qq.com/book-cate/20109-20110-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"诸天\",\"url\":\"https://book.qq.com/book-cate/20109-20111-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"综漫\",\"url\":\"https://book.qq.com/book-cate/20109-20112-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/20076-0-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"剧本\",\"url\":\"https://book.qq.com/book-cate/20076-20075-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"评论\",\"url\":\"https://book.qq.com/book-cate/20076-20077-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/20076-20078-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"游记\",\"url\":\"https://book.qq.com/book-cate/20076-20079-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/20076-20096-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"散文\",\"url\":\"https://book.qq.com/book-cate/20076-20097-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"人物\",\"url\":\"https://book.qq.com/book-cate/20076-20098-1-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"已完结\",\"url\":\"https://book.qq.com/book-cate/0-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n\n{\"title\":\"玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"东方玄幻\",\"url\":\"https://book.qq.com/book-cate/20001-20002-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异世\",\"url\":\"https://book.qq.com/book-cate/20001-20003-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"争霸\",\"url\":\"https://book.qq.com/book-cate/20001-20082-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"高武\",\"url\":\"https://book.qq.com/book-cate/20001-20004-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"奇幻\",\"url\":\"https://book.qq.com/book-cate/20005-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"魔法\",\"url\":\"https://book.qq.com/book-cate/20005-20006-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"史诗\",\"url\":\"https://book.qq.com/book-cate/20005-20007-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神秘\",\"url\":\"https://book.qq.com/book-cate/20005-20008-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"https://book.qq.com/book-cate/20005-20009-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神史\",\"url\":\"https://book.qq.com/book-cate/20005-20092-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"空幻\",\"url\":\"https://book.qq.com/book-cate/20005-20093-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"https://book.qq.com/book-cate/20010-20011-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"潮流\",\"url\":\"https://book.qq.com/book-cate/20010-20012-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"国术\",\"url\":\"https://book.qq.com/book-cate/20010-20013-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古武\",\"url\":\"https://book.qq.com/book-cate/20010-20099-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠同人\",\"url\":\"https://book.qq.com/book-cate/20010-20100-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"仙侠\",\"url\":\"https://book.qq.com/book-cate/20014-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"https://book.qq.com/book-cate/20014-20015-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"幻修\",\"url\":\"https://book.qq.com/book-cate/20014-20016-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现修\",\"url\":\"https://book.qq.com/book-cate/20014-20017-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"神话\",\"url\":\"https://book.qq.com/book-cate/20014-20018-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古典\",\"url\":\"https://book.qq.com/book-cate/20014-20101-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"都市\",\"url\":\"https://book.qq.com/book-cate/20019-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"生活\",\"url\":\"https://book.qq.com/book-cate/20019-20020-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"娱乐\",\"url\":\"https://book.qq.com/book-cate/20019-20022-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"商场\",\"url\":\"https://book.qq.com/book-cate/20019-20025-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异能\",\"url\":\"https://book.qq.com/book-cate/20019-20026-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异术\",\"url\":\"https://book.qq.com/book-cate/20019-20027-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"https://book.qq.com/book-cate/20019-20069-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"现实\",\"url\":\"https://book.qq.com/book-cate/20065-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"家庭\",\"url\":\"https://book.qq.com/book-cate/20065-20021-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"百态\",\"url\":\"https://book.qq.com/book-cate/20065-20071-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"女性\",\"url\":\"https://book.qq.com/book-cate/20065-20104-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20065-20105-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"时代\",\"url\":\"https://book.qq.com/book-cate/20065-20106-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"青年\",\"url\":\"https://book.qq.com/book-cate/20065-20108-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"历史\",\"url\":\"https://book.qq.com/book-cate/20028-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"https://book.qq.com/book-cate/20028-20029-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"先秦\",\"url\":\"https://book.qq.com/book-cate/20028-20083-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"秦汉三国\",\"url\":\"https://book.qq.com/book-cate/20028-20084-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"两晋隋唐\",\"url\":\"https://book.qq.com/book-cate/20028-20085-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"五代十国\",\"url\":\"https://book.qq.com/book-cate/20028-20086-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"两宋元明\",\"url\":\"https://book.qq.com/book-cate/20028-20030-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"清民\",\"url\":\"https://book.qq.com/book-cate/20028-20087-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"外史\",\"url\":\"https://book.qq.com/book-cate/20028-20031-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传记\",\"url\":\"https://book.qq.com/book-cate/20028-20088-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传说\",\"url\":\"https://book.qq.com/book-cate/20028-20094-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"军事\",\"url\":\"https://book.qq.com/book-cate/20032-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"战争\",\"url\":\"https://book.qq.com/book-cate/20032-20091-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"战斗\",\"url\":\"https://book.qq.com/book-cate/20032-20033-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"激战\",\"url\":\"https://book.qq.com/book-cate/20032-20034-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"军旅\",\"url\":\"https://book.qq.com/book-cate/20032-20035-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"抗战\",\"url\":\"https://book.qq.com/book-cate/20032-20036-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"游戏\",\"url\":\"https://book.qq.com/book-cate/20050-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"电竞\",\"url\":\"https://book.qq.com/book-cate/20050-20051-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"虚拟\",\"url\":\"https://book.qq.com/book-cate/20050-20052-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"异界\",\"url\":\"https://book.qq.com/book-cate/20050-20053-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"系统\",\"url\":\"https://book.qq.com/book-cate/20050-20102-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"主播\",\"url\":\"https://book.qq.com/book-cate/20050-20103-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"体育\",\"url\":\"https://book.qq.com/book-cate/20054-20055-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"篮球\",\"url\":\"https://book.qq.com/book-cate/20054-20056-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"足球\",\"url\":\"https://book.qq.com/book-cate/20054-20057-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"科幻\",\"url\":\"https://book.qq.com/book-cate/20042-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"星际\",\"url\":\"https://book.qq.com/book-cate/20042-20043-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿梭\",\"url\":\"https://book.qq.com/book-cate/20042-20044-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"未来\",\"url\":\"https://book.qq.com/book-cate/20042-20045-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"机甲\",\"url\":\"https://book.qq.com/book-cate/20042-20046-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科技\",\"url\":\"https://book.qq.com/book-cate/20042-20047-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"变异\",\"url\":\"https://book.qq.com/book-cate/20042-20048-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"末世\",\"url\":\"https://book.qq.com/book-cate/20042-20049-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.6,\"layout_flexGrow\":1}},\n{\"title\":\"推理\",\"url\":\"https://book.qq.com/book-cate/20037-20038-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"https://book.qq.com/book-cate/20037-20039-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"生存\",\"url\":\"https://book.qq.com/book-cate/20037-20040-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"奇妙\",\"url\":\"https://book.qq.com/book-cate/20037-20041-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"传奇\",\"url\":\"https://book.qq.com/book-cate/20037-20095-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"轻小说\",\"url\":\"https://book.qq.com/book-cate/20059-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"幻想\",\"url\":\"https://book.qq.com/book-cate/20059-20060-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"https://book.qq.com/book-cate/20059-20061-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"吐槽\",\"url\":\"https://book.qq.com/book-cate/20059-20063-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"恋爱\",\"url\":\"https://book.qq.com/book-cate/20059-20064-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"诸天无限\",\"url\":\"https://book.qq.com/book-cate/20109-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"无限\",\"url\":\"https://book.qq.com/book-cate/20109-20110-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"诸天\",\"url\":\"https://book.qq.com/book-cate/20109-20111-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"综漫\",\"url\":\"https://book.qq.com/book-cate/20109-20112-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n\n{\"title\":\"短篇\",\"url\":\"https://book.qq.com/book-cate/20076-0-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"剧本\",\"url\":\"https://book.qq.com/book-cate/20076-20075-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"评论\",\"url\":\"https://book.qq.com/book-cate/20076-20077-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"随笔\",\"url\":\"https://book.qq.com/book-cate/20076-20078-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"游记\",\"url\":\"https://book.qq.com/book-cate/20076-20079-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"小说\",\"url\":\"https://book.qq.com/book-cate/20076-20096-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"散文\",\"url\":\"https://book.qq.com/book-cate/20076-20097-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"人物\",\"url\":\"https://book.qq.com/book-cate/20076-20098-2-0-0-0-0-{{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}\n]\n",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36 Edg/99.0.1150.55\"\n}",
    "lastUpdateTime": 1773800480178,
    "loginUrl": "https://passport.yuewen.com/login.html?appid=1450000221&areaid=1&logintype=4&tabshow=1100&auto=0&ticket=1&returnurl=https://ubook.reader.qq.com/loginSuccess?returnUrl=https%3A%2F%2Fubook.reader.qq.com%2F",
    "respondTime": 1396,
    "ruleBookInfo": {
      "author": "a.author@text",
      "coverUrl": "a.book-cover img@src",
      "intro": "div.intro@text",
      "kind": "a.tag@text",
      "name": "h1@text",
      "tocUrl": "text.目录@href",
      "wordCount": ".book-update@span:nth-of-type(1)@text"
    },
    "ruleContent": {
      "content": ".chapter-content@p@text"
    },
    "ruleExplore": {
      "author": ".other@object@a:nth-of-type(1)@text",
      "bookList": "a.wrap",
      "bookUrl": "a@href",
      "coverUrl": "img.ypc-book-cover@src",
      "intro": "p.intro@text",
      "kind": "object@a:nth-of-type(2)@text",
      "lastChapter": "a.latest-chapter@text",
      "name": "h4@text",
      "wordCount": ".other@span:nth-of-type(2)@text"
    },
    "ruleSearch": {
      "author": ".author",
      "bookList": ".bookList[*]",
      "bookUrl": "$.bid##(\\d+)##https://book.qq.com/book-detail/$1##",
      "intro": ".intro",
      "kind": ".category3Name",
      "name": ".title",
      "wordCount": ".totalWords"
    },
    "ruleToc": {
      "chapterList": "ul:nth-of-type(2)@li",
      "chapterName": "span.name@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "https://book.qq.com/api/booksearch/query?keyWord={{key}}&pageNo={{page}}&pageSize=10",
    "weight": 85
  },
  {
    "bookSourceComment": "YX源仓库：http://yx.ccute.xyz/\nby_清雪",
    "bookSourceGroup": "🔞,📚小说",
    "bookSourceName": "Jk小说",
    "bookSourceType": 0,
    "bookSourceUrl": "小说",
    "customButton": false,
    "customOrder": 679,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1769087166645,
    "respondTime": 3383,
    "ruleBookInfo": {
      "author": "author@put:{id:$.book_id}",
      "coverUrl": "cover",
      "init": "<js>\nfunction decode(word){\n    \treturn java.createSymmetricCrypto(\"AES/CBC/PKCS5Padding\",\"D2o4XyQeIFobJ4tS\", \"sciCuBC7orQtDhTO\").decryptStr(word);\n}\nr = JSON.parse(result).data\nresult = decode(r);\n</js>\nbook",
      "intro": "description",
      "lastChapter": "last_chapter&&last_chapter_time",
      "name": "name",
      "tocUrl": "@js:\ntime = Math.round(new Date()/1000);  \nsign = java.md5Encode(`faetheiy8ahzeiPh2ier9ba0uash3ohsappId=1&book_id={{$.book_id}}&is_all=1&marketChannel=luodiye&osType=2&packageName=com.se6d37e1cb.n2e98606a2.zf47af499020250314&product=1&proxyChannel=JK416-1&sysVer=10&time=1749173841&token=&udid=20f97782-8d3a-4c8f-a729-0146acdba82b&ver=5.0.2faetheiy8ahzeiPh2ier9ba0uash3ohs`).toString().toUpperCase();\n\no = encode(JSON.stringify({\n\"product\":\"1\",\n\"ver\":\"5.0.2\",\n\"is_all\":\"1\",\n\"marketChannel\":\"luodiye\",\n\"sign\":sign,\n\"sysVer\":\"10\",\n\"book_id\":{{$.book_id}},\n\"token\":\"\",\n\"appId\":\"1\",\n\"osType\":\"2\",\n\"time\":time,\n\"packageName\":\"com.se6d37e1cb.n2e98606a2.zf47af499020250314\",\n\"proxyChannel\":\"luodiye\",\n\"udid\":\"20f97782-8d3a-4c8f-a729-0146acdba82b\",\n\t}))\nc = JSON.stringify({\n\t\"c\": String(o)\n\t})\n function encode(word){\n  \treturn java.createSymmetricCrypto(\"AES/CBC/PKCS5Padding\",\"D2o4XyQeIFobJ4tS\", \"sciCuBC7orQtDhTO\").encryptBase64(word);\n\t}\n\ns = {\n \"method\": \"POST\",\n  \"body\": c\n};\n\"https://rrs0c03ak.fssd5ib.com/chapter/catalog,\" +JSON.stringify(s)"
    },
    "ruleContent": {
      "content": "<js>\nfunction decode(word){\n    \treturn java.createSymmetricCrypto(\"AES/CBC/PKCS5Padding\",\"D2o4XyQeIFobJ4tS\", \"sciCuBC7orQtDhTO\").decryptStr(word);\n}\nr = JSON.parse(result).data\nresult = decode(r);\n</js>\n$..content"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "author",
      "bookList": "<js>\nfunction decode(word){\n    \treturn java.createSymmetricCrypto(\"AES/CBC/PKCS5Padding\",\"D2o4XyQeIFobJ4tS\", \"sciCuBC7orQtDhTO\").decryptStr(word);\n}\nr = JSON.parse(result).data\nresult = decode(r);\n</js>\nlist[*]",
      "bookUrl": "@js:\ntime = Math.round(new Date()/1000);  \nsign = java.md5Encode(`faetheiy8ahzeiPh2ier9ba0uash3ohsappId=1&book_id={{$.book_id}}&marketChannel=luodiye&osType=2&packageName=com.se6d37e1cb.n2e98606a2.zf47af499020250314&product=1&proxyChannel=JK416-1&sysVer=10&time=1749173841&token=&udid=20f97782-8d3a-4c8f-a729-0146acdba82b&ver=5.0.2faetheiy8ahzeiPh2ier9ba0uash3ohs`).toString().toUpperCase();\n\no = encode(JSON.stringify({\n\"product\":\"1\",\n\"ver\":\"5.0.2\",\n\"marketChannel\":\"luodiye\",\n\"sign\":sign,\n\"sysVer\":\"10\",\n\"book_id\":{{$.book_id}},\n\"token\":\"\",\n\"appId\":\"1\",\n\"osType\":\"2\",\n\"time\":time,\n\"packageName\":\"com.se6d37e1cb.n2e98606a2.zf47af499020250314\",\n\"proxyChannel\":\"luodiye\",\n\"udid\":\"20f97782-8d3a-4c8f-a729-0146acdba82b\",\n\t}))\nc = JSON.stringify({\n\t\"c\": String(o)\n\t})\n function encode(word){\n  \treturn java.createSymmetricCrypto(\"AES/CBC/PKCS5Padding\",\"D2o4XyQeIFobJ4tS\", \"sciCuBC7orQtDhTO\").encryptBase64(word);\n\t}\n\ns = {\n \"method\": \"POST\",\n  \"body\": c\n};\n\"https://rrs0c03ak.fssd5ib.com/novel/info,\" +JSON.stringify(s)",
      "checkKeyWord": "妹妹",
      "coverUrl": "cover",
      "intro": "description",
      "lastChapter": "last_chapter&&last_chapter_time",
      "name": "name",
      "wordCount": "tag.tab"
    },
    "ruleToc": {
      "chapterList": "<js>\nfunction decode(word){\n    \treturn java.createSymmetricCrypto(\"AES/CBC/PKCS5Padding\",\"D2o4XyQeIFobJ4tS\", \"sciCuBC7orQtDhTO\").decryptStr(word);\n}\nr = JSON.parse(result).data\nresult = decode(r);\n</js>\n$.chapter_list[*]",
      "chapterName": "chapter_title",
      "chapterUrl": "@js:\ntime = Math.round(new Date()/1000);  \nsign = java.md5Encode(`faetheiy8ahzeiPh2ier9ba0uash3ohsappId=1&book_id=@get:{id}&chapter_id={{$.chapter_id}}&marketChannel=luodiye&osType=2&packageName=com.se6d37e1cb.n2e98606a2.zf47af499020250314&product=1&proxyChannel=JK416-1&sysVer=10&time=1749173841&token=&udid=20f97782-8d3a-4c8f-a729-0146acdba82b&ver=5.0.2faetheiy8ahzeiPh2ier9ba0uash3ohs`).toString().toUpperCase();\nfunction encode(word){\n  \treturn java.createSymmetricCrypto(\"AES/CBC/PKCS5Padding\",\"D2o4XyQeIFobJ4tS\", \"sciCuBC7orQtDhTO\").encryptBase64(word);\n\t}\no = encode(JSON.stringify({\n\"product\":\"1\",\n\"ver\":\"5.0.2\",\n\"marketChannel\":\"luodiye\",\n\"sign\":sign,\n\"sysVer\":\"10\",\n\"book_id\":@get:{id},\n\"token\":\"\",\n\"appId\":\"1\",\n\"osType\":\"2\",\n\"time\":time,\n\"packageName\":\"com.se6d37e1cb.n2e98606a2.zf47af499020250314\",\n\"proxyChannel\":\"luodiye\",\n\"chapter_id\":{{$.chapter_id}},\n\"udid\":\"20f97782-8d3a-4c8f-a729-0146acdba82b\",\n\t}));\n\tc = JSON.stringify({\n\t\"c\": String(o)\n\t});\n\ns = {\n \"method\": \"POST\",\n  \"body\": c\n};\n\"https://jkzzapi.104a3a8.com/chapter/text,\" +JSON.stringify(s)",
      "updateTime": "words&&updated_at_format"
    },
    "searchUrl": "@js:\ntime = Math.round(new Date()/1000);  \nsign = java.md5Encode(`faetheiy8ahzeiPh2ier9ba0uash3ohsappId=1&keyword=${key}&marketChannel=yingyongbao&osType=2&packageName=com.se6d37e1cb.n2e98606a2.zf47af499020250314&page_num=${page}&product=1&proxyChannel=yingyongbao&sysVer=10&time=${time}&token=&udid=&ver=faetheiy8ahzeiPh2ier9ba0uash3ohs`).toString().toUpperCase();\n\no = encode(JSON.stringify({\n\"product\":\"1\",\n\"ver\":\"5.0.2\",\n\"marketChannel\":\"yingyongbao\",\n\"sign\":sign,\n\"page_num\":page,\n\"sysVer\":\"10\",\n\"token\":\"\",\n\"appId\":\"1\",\n\"osType\":\"2\",\n\"time\":time,\n\"packageName\":\"com.se6d37e1cb.n2e98606a2.zf47af499020250314\",\n\"proxyChannel\":\"yingyongbao\",\n\"udid\":\"20f97782-8d3a-4c8f-a729-0146acdba82b\",\n\"keyword\":key\n\t}))\nc = JSON.stringify({\n\t\"c\": String(o)\n\t})\n function encode(word){\n  \treturn java.createSymmetricCrypto(\"AES/CBC/PKCS5Padding\",\"D2o4XyQeIFobJ4tS\", \"sciCuBC7orQtDhTO\").encryptBase64(word);\n\t}\ns = {\n \"method\": \"POST\",\n  \"body\": c\n};\n\"https://rrs0c03ak.fssd5ib.com/book/search,\" +JSON.stringify(s)",
    "weight": 0
  },
  {
    "bookSourceComment": "@author: syiism",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "不死神王书城",
    "bookSourceType": 0,
    "bookSourceUrl": "http://115.191.49.140:80/",
    "customButton": false,
    "customOrder": 680,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全部::http://115.191.49.140:48080/app-api/novel/search/page?pageNo={{page}}&pageSize=10&searchType=title\n\n30万以下::http://115.191.49.140:48080/app-api/novel/search/page?pageNo={{page}}&pageSize=10&searchType=title&wordCountMax=300000\n\n30-50万::http://115.191.49.140:48080/app-api/novel/search/page?pageNo={{page}}&pageSize=10&searchType=title&wordCountMin=300000&wrodCountMax=500000\n\n50-100万::http://115.191.49.140:48080/app-api/novel/search/page?pageNo={{page}}&pageSize=10&searchType=title&wordCountMin=500000&wrodCountMax=1000000",
    "header": "{\n  \"Host\": \"115.191.49.140:48080\",\n  \"Origin\": \"http://115.191.49.140\",\n  \"Pragma\": \"no-cache\",\n  \"Referer\": \"http://115.191.49.140/\",\n  \"User-Agent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36\",\n  \"tenant-id\": \"1\"\n}",
    "lastUpdateTime": 1785672647614,
    "respondTime": 7026,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "$.data.chapterContent"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.authorName",
      "bookList": "$.data.list",
      "bookUrl": "@js:\n`http://115.191.49.140:48080/app-api/novel/detail/chapters?novelId=${result.id}&order=asc`",
      "checkKeyWord": "系统",
      "intro": "$.introduction",
      "lastChapter": "$.lastChapterTitle",
      "name": "$.title",
      "wordCount": "$.wordCount"
    },
    "ruleToc": {
      "chapterList": "$.data",
      "chapterName": "<js>java.log(result.chapterTitle)</js>",
      "chapterUrl": "@js:\n`http://115.191.49.140:48080/app-api/novel/chapter/read?id=${result.id}`"
    },
    "searchUrl": "http://115.191.49.140:48080/app-api/novel/search/page?pageNo={{page}}&pageSize=10&keyword={{key}}&searchType=title",
    "weight": 0
  },
  {
    "bookSourceComment": "地址改用m.的目录URL规则：\n{{baseUrl}}##(.*?)m(.*)##$1m$2",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "创维小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.woo16.vip",
    "customButton": false,
    "customOrder": 681,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"☑️排行\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"总收藏榜\",\"url\":\"/paihang/goodnum_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"最新入库\",\"url\":\"/paihang/postdate_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"最近更新\",\"url\":\"/paihang/lastupdate_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总排行榜\",\"url\":\"/paihang/allvisit_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"月排行榜\",\"url\":\"/paihang/monthvisit_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"周排行榜\",\"url\":\"/paihang/weekvisit_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"日排行榜\",\"url\":\"/paihang/dayvisit_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"总推荐榜\",\"url\":\"/paihang/allvote_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"月推荐榜\",\"url\":\"/paihang/monthvote_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"周推荐榜\",\"url\":\"/paihang/weekvote_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"日推荐榜\",\"url\":\"/paihang/dayvote_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},\n{\"title\":\"☑️分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/dushi_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"浓情\",\"url\":\"/nongqing_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"言情\",\"url\":\"/yanqing_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"/xiaoyuan_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"/wuxia_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/xuanhuan_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"/chuanyue_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"惊悚\",\"url\":\"/jingsong_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1753778081897,
    "respondTime": 7540,
    "ruleBookInfo": {
      "coverUrl": "$.thumbnail\n@js:\nresult||\"https://s3.bmp.ovh/imgs/2023/08/01/8a0ab481ea31a36f.jpg\"",
      "intro": ".p3@text",
      "lastChapter": ".p4 a@text",
      "tocUrl": "{{baseUrl}}##(.*?)www(.*)##$1m$2"
    },
    "ruleContent": {
      "content": "id.nr@html"
    },
    "ruleExplore": {
      "author": ".p2 a@text||a.-1@text",
      "bookList": ".lists li||.listcon ul li",
      "bookUrl": "a.0@href",
      "coverUrl": "$.thumbnail\n@js:\nresult||\"https://s3.bmp.ovh/imgs/2023/08/01/1bb4968e49eedf2b.jpg\"",
      "intro": ".p3@text",
      "kind": "span.0@text&&span.-1@text##\\[|\\]|更新时间：",
      "lastChapter": ".lastchapter a@text",
      "name": "img@alt||a.0@text"
    },
    "ruleSearch": {
      "author": "a.-1@text",
      "bookList": ".lists li",
      "bookUrl": "a.0@href",
      "coverUrl": "$.thumbnail\n@js:\nresult||\"https://s3.bmp.ovh/imgs/2023/08/01/2c5709f38795b4d1.jpg\"",
      "kind": "span.0@text&&span.-1@text##\\[|\\]|更新时间：",
      "lastChapter": "a.1@text",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": ".lb li!-1",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "isPay": "ttt",
      "nextTocUrl": ".showpage@a@href"
    },
    "searchUrl": "/modules/article/search.php,{\n  \"body\": \"searchtype=articlename&searchkey={{key}}&t_btnsearch=\",\n  \"charset\": \"GBK\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "漫客栈",
    "bookSourceType": 2,
    "bookSourceUrl": "https://www.mkzhan.com#Haxc1107",
    "bookUrlPattern": "https://m.mkzhan.com/\\d+/",
    "customButton": false,
    "customOrder": 682,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "修真::https://www.mkzhan.com/category/?theme_id=2&page={{page}}\n恋爱::https://www.mkzhan.com/category/?theme_id=3&page={{page}}\n校园::https://www.mkzhan.com/category/?theme_id=4&page={{page}}\n冒险::https://www.mkzhan.com/category/?theme_id=5&page={{page}}\n搞笑::https://www.mkzhan.com/category/?theme_id=6&page={{page}}\n生活::https://www.mkzhan.com/category/?theme_id=7&page={{page}}\n热血::https://www.mkzhan.com/category/?theme_id=8&page={{page}}\n架空::https://www.mkzhan.com/category/?theme_id=9&page={{page}}\n后宫::https://www.mkzhan.com/category/?theme_id=10&page={{page}}\n耽美::https://www.mkzhan.com/category/?theme_id=11&page={{page}}\n玄幻::https://www.mkzhan.com/category/?theme_id=12&page={{page}}\n悬疑::https://www.mkzhan.com/category/?theme_id=13&page={{page}}\n恐怖::https://www.mkzhan.com/category/?theme_id=14&page={{page}}\n灵异::https://www.mkzhan.com/category/?theme_id=15&page={{page}}\n动作::https://www.mkzhan.com/category/?theme_id=16&page={{page}}\n科幻::https://www.mkzhan.com/category/?theme_id=17&page={{page}}\n战争::https://www.mkzhan.com/category/?theme_id=18&page={{page}}\n古风::https://www.mkzhan.com/category/?theme_id=19&page={{page}}\n穿越::https://www.mkzhan.com/category/?theme_id=20&page={{page}}\n竞技::https://www.mkzhan.com/category/?theme_id=21&page={{page}}\n百合::https://www.mkzhan.com/category/?theme_id=22&page={{page}}\n励志::https://www.mkzhan.com/category/?theme_id=23&page={{page}}\n同人::https://www.mkzhan.com/category/?theme_id=24&page={{page}}\n真人::https://www.mkzhan.com/category/?theme_id=26&page={{page}}\n霸总::https://www.mkzhan.com/category/?theme_id=1&page={{page}}",
    "lastUpdateTime": 1785485907541,
    "respondTime": 977,
    "ruleBookInfo": {
      "author": "class.name@text",
      "intro": "class.intro-total@text",
      "kind": "class.comic-status@tag.span.0@text##题材:",
      "lastChapter": "class.update-time@text",
      "name": "class.comic-title.0@text"
    },
    "ruleContent": {
      "content": "$..image@js:result.split(\"\\n\").map(x=>'<img src=\\\"'+x+'\\\">').join(\"\\n\")",
      "imageStyle": "FULL"
    },
    "ruleExplore": {
      "bookList": "class.cate-comic-list clearfix@class.common-comic-item",
      "bookUrl": "class.cover@href",
      "coverUrl": "img@data-src",
      "intro": ".comic-feature@text",
      "lastChapter": "class.comic-update@text##更至：",
      "name": "class.comic__title@text"
    },
    "ruleSearch": {
      "bookList": "class.search-comic-list@class.common-comic-item",
      "bookUrl": "class.cover@href",
      "coverUrl": "img@data-src",
      "intro": ".comic-feature@text",
      "lastChapter": "class.comic-update@text##更至：",
      "name": "class.comic__title@tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": "-class.chapter__list-box@tag.li",
      "chapterName": "a@text",
      "chapterUrl": ".j-chapter-link@data-chapterid\n@js:\r\ncid=result;\r\nbid=baseUrl.match(/\\/(\\d+)\\//)[1],\n\n'https://comic.mkzcdn.com/chapter/content/v1/?chapter_id='+cid+'&comic_id='+bid+'&format=1&quality=1&sign=0&type=1&uid=0'",
      "updateTime": ".data@text"
    },
    "searchUrl": "https://www.mkzhan.com/search/?keyword={{key}}",
    "weight": 76
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "陌上书阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.xszww2.com",
    "customButton": false,
    "customOrder": 685,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "header": " { \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.1.0) Mobile Safari/537.36\",\n\"referer\":\"https://m.xszww2.com/\"\n}",
    "lastUpdateTime": 1787069307293,
    "respondTime": 2052,
    "ruleBookInfo": {
      "author": ".dd_box.0@span.0@text##作者：",
      "kind": ".dd_box.0@span.1@text##分类：",
      "lastChapter": ".book_last.0 dl@dd.0@a@text",
      "name": ".name@text"
    },
    "ruleContent": {
      "content": "#chaptercontent@html##陌上阁阅读网址.*|m.xszww8.net|第.*3\\)页|{{chapter.title}}",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".s3@text",
      "bookList": ".lis li",
      "bookUrl": ".s2 a@href",
      "kind": ".s1@text##\\[|\\]",
      "name": ".s2 a@text"
    },
    "ruleToc": {
      "chapterList": ".book_last.1@dl@dd@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "https://m.xszww2.com/search.php?keyword={{key}}",
    "weight": 2
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "球球览器",
    "bookSourceType": 0,
    "bookSourceUrl": "https://so.html5.qq.com#",
    "customButton": false,
    "customOrder": 686,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n    \"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 13; zh-cn; V2183A Build/TP1A.220624.014) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/89.0.4389.72 MQQBrowser/13.4 Mobile Safari/537.36 COVC/046223\",\n    \"Referer\":\"https://novel.html5.qq.com/\",\n\t\"Q-GUID\":\"0ee63838b72eb075f63e93ae0bc288cb\",\n\t\"QIMEI36\":\"8ff310843a87a71101958f5610001e316a11\"\n}",
    "lastUpdateTime": 1745855170288,
    "respondTime": 1450,
    "ruleBookInfo": {
      "author": "$..author",
      "coverUrl": "$..picurl",
      "intro": "$..summary",
      "kind": "$..resourceID",
      "lastChapter": "$..lastSerialname",
      "name": "$..resourceName",
      "tocUrl": "https://novel.html5.qq.com/qbread/api/book/all-chapter?bookId={{book.kind}}",
      "wordCount": "$..contentsize"
    },
    "ruleContent": {
      "content": "$.data.Content[0].Content"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$..author",
      "bookList": "$.data.state[*]",
      "bookUrl": "https://novel.html5.qq.com/qbread/api/novel/bookInfo?resourceId={{book.kind}}",
      "checkKeyWord": "",
      "coverUrl": "$..cover_url",
      "intro": "$..abstract",
      "kind": "$.groupID##.*_##",
      "name": "$..title"
    },
    "ruleToc": {
      "chapterList": "$..rows[*]",
      "chapterName": "$.serialName",
      "chapterUrl": "$.serialID\n@js:\nlet data = JSON.stringify({\n  ContentAnchorBatch: [{\n    BookID: book.kind,\n    ChapterSeqNo: [\n      result\n    ]\n  }],\n  Scene: \"chapter\"\n})\nlet option = {\"method\":\"POST\",\"body\":data}\n\"https://novel.html5.qq.com/be-api/content/ads-read,\"+JSON.stringify(option)"
    },
    "searchUrl": "https://so.html5.qq.com/ajax/real/search_result?tabId=360&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "漫畫狗网",
    "bookSourceType": 2,
    "bookSourceUrl": "https://dogemanga.com",
    "customButton": false,
    "customOrder": 687,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "热门排行::https://dogemanga.com/?s=0\n最新连载::https://dogemanga.com/?s=1",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70\"}",
    "lastUpdateTime": 1785815736427,
    "loginCheckJs": "var src = result.body();\nif (src.match(/Just a moment|Checking your browser|Performing security verification|Verifying you are human/)) {\n    cookie.removeCookie(source.bookSourceUrl);\n    var url = result.url();\n    java.startBrowserAwait(url, \"Cloudflare验证\");\n    result = java.connect(url);\n}\nresult;",
    "loginUrl": "https://dogemanga.com",
    "respondTime": 17364,
    "ruleBookInfo": {
      "author": "tag.h4@text",
      "intro": ".site-card__brief@text",
      "kind": "class.text-muted@text@js:String(result).match(/連載完結|連載中/)",
      "lastChapter": "class.vstack.0@text",
      "name": ".site-navbar__title@text"
    },
    "ruleContent": {
      "content": "class.site-reader__image@data-page-image-url@js:\nlist = result.split(\"\\n\");\nvar ref = JSON.stringify({headers: {Referer: \"https://dogemanga.com/\"}});\nvar html = \"\";\nfor (var i = 0; i < list.length; i++) {\n    var u = list[i].trim();\n    if (u) {\n        html += '<img src=\"' + u + ',' + ref + '\">\\n';\n    }\n}\nhtml;",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.h6@text",
      "bookList": ".site-scroll__list@.col-12 ",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.img@src@js:result + ',{\"headers\":{\"Referer\":\"https://dogemanga.com/\"}}'",
      "intro": "tag.p@text",
      "kind": "class.text-muted@text@js:String(result).match(/連載完結|連載中/)",
      "lastChapter": "class.list-group-item.0@text",
      "name": "tag.h5@text",
      "wordCount": "class.mb-2@tag.li.1@text##.*連載狀態：|最快更新："
    },
    "ruleToc": {
      "chapterList": "-class.site-selector@option!0",
      "chapterName": "text",
      "chapterUrl": "value"
    },
    "searchUrl": "https://dogemanga.com/?q={{key}}&o={{(page-1)*12}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "去读书#0",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.qudushu.la",
    "bookUrlPattern": "http://www.qudushu.la/book/info/\\d+/\\d+.html",
    "customButton": false,
    "customOrder": 688,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻魔法::/book/sort1/0/{{page}}.html\n武侠修真::/book/sort2/0/{{page}}.html\n都市言情::/book/sort3/0/{{page}}.html\n历史军事::/book/sort4/0/{{page}}.html\n穿越架空::/book/sort5/0/{{page}}.html\n游戏竞技::/book/sort6/0/{{page}}.html",
    "lastUpdateTime": 1787069419596,
    "respondTime": 2524,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "class.divbox cf@img@src",
      "intro": "class.tabcontent@class.tabvalue.0@text",
      "kind": "class.tabcontent@class.tabvalue.1@tag.td.2@text&&\nclass.tabcontent@class.tabvalue.1@tag.td.1@text&&\nclass.tabcontent@class.tabvalue.1@tag.td.0@text##最后更新：|连载状态：|作品分类：",
      "lastChapter": "h3@a@text",
      "name": "[property=\"og:novel:book_name\"]@content##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|小说|笔趣阁|免费.*",
      "tocUrl": "text.点击阅读@href"
    },
    "ruleContent": {
      "content": "id.acontent@html##去读书推荐各位.*|去读书.*com|如果您中途有事.*以便以后接着观看！|\\(|\\)"
    },
    "ruleExplore": {
      "author": "class.c_tag@tag.span.1@text&&",
      "bookList": "class.blockcontent@class.c_row",
      "bookUrl": "class.c_subject@tag.a.1@href",
      "coverUrl": "img@src",
      "intro": "class.c_description@text",
      "kind": "class.c_tag@tag.span.5@text&&\nclass.c_tag@tag.span.7@text",
      "lastChapter": "class.c_subject@tag.a.2@text",
      "name": "class.c_subject@tag.a.1@text"
    },
    "ruleSearch": {
      "author": "class.c_tag.0@tag.span.1@text",
      "bookList": "id.jieqi_page_contents@class.c_row",
      "bookUrl": "class.c_subject@a@href",
      "coverUrl": "img@src",
      "kind": "class.c_tag.0@tag.span.3@text&&\nclass.c_tag.0@tag.span.7@text&&\nclass.c_tag.1@tag.span.3@text",
      "lastChapter": "class.c_tag.1@tag.span.1@a@text",
      "name": "class.c_subject@a@text"
    },
    "ruleToc": {
      "chapterList": "class.index@li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.qudushu.la/modules/article/search.php?q={{key}}",
    "weight": 58
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "📕 圣武书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.sswsk.com/",
    "customButton": false,
    "customOrder": 689,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"全部🏷分类\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"奇幻·玄幻\",\"url\":\"/catalog/xuanhuan_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻·游戏\",\"url\":\"/catalog/game_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠·仙侠\",\"url\":\"/catalog/xianxia_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女生·言情\",\"url\":\"/catalog/yanqing_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市·娱乐\",\"url\":\"/catalog/dushi_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史·军事\",\"url\":\"/catalog/lishi_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"悬疑·灵异\",\"url\":\"/catalog/kongbu_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"耽美·纯爱\",\"url\":\"/catalog/chunai_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"轻小说\",\"url\":\"/catalog/light_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 14; V2304A; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/123.0.6312.118 Mobile Safari/537.36\",\"Referer\":\"https://www.sswsk.com/\"}",
    "lastUpdateTime": 1786213102057,
    "respondTime": 14130,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "wordCount": "[property$=status]@content"
    },
    "ruleContent": {
      "content": "#cont-body@html",
      "nextContentUrl": "class.col-md-6 text-center@tag.a.2@href"
    },
    "ruleExplore": {
      "bookList": ".row@.col-md-12",
      "bookUrl": "h4@a@href",
      "coverUrl": "img@src",
      "intro": ".media-info@text",
      "name": "h4@a@text"
    },
    "ruleSearch": {
      "author": "td.1@text",
      "bookList": "table@tbody@tr",
      "bookUrl": "a.0@href",
      "name": "a.0@text##.*《|》"
    },
    "ruleToc": {
      "chapterList": ".row@.col-md-6",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "https://www.sswsk.com/plus/search.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "by:九梦  若正文有些许不相关内容，请用替换",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "混混小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.hunhun.cc",
    "customButton": false,
    "customOrder": 690,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::/list1/{{page}}.html\n武侠::/list2/{{page}}.html\n都市::/list3/{{page}}.html\n历史::/list4/{{page}}.html\n网游::/list5/{{page}}.html\n科幻::/list6/{{page}}.html\n言情::/list7/{{page}}.html\n其他::/list8/{{page}}.html\n排行::/top/all_0_ {{page}}.html\n完本::/full/0_{{page}}.html",
    "header": "",
    "lastUpdateTime": 1734426904919,
    "respondTime": 13234,
    "ruleBookInfo": {
      "author": "li[class=\"\"]@a@text",
      "coverUrl": "img@src",
      "intro": "div[id=\"intro_pc\"]@text##您要是觉得.+",
      "kind": "div[class=\"title\"]@a.1@text&&ul[class=\"\"]@li.3:1@text##.+：",
      "lastChapter": "li[class=\"col-12\"]@a@text",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": "[class=\"font_max\"]@html##.\\(.+\\).|book.+list|dengbi.+cc",
      "nextContentUrl": "text.下一章@href",
      "title": "h1@text"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "span@text",
      "bookList": "class.row.-1@tag.div!0",
      "bookUrl": "dt@a@href",
      "checkKeyWord": "校花别哭了！宝藏女同桌才是我的白月光",
      "coverUrl": "img@src",
      "intro": "",
      "kind": "h3@a@text&&[class=\"book_other\"].1:2@text##\\[|\\].+|.+：|{{book.name}}",
      "lastChapter": "class.book_other.3@a@text",
      "name": "h3@a@text##\\[.+\\]"
    },
    "ruleToc": {
      "chapterList": "[class=\"row\"].-1@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "<js>\nlet list = [];\nlet p = java.getString(\".page-link@text\").match(/\\d\\/(\\d+)/);\n//java.log(p[1]);\nfor(let i = 1; i <= (p && p[1]? p[1] : 0); i++){  \n  let uri = baseUrl;\n  let href = uri + `index_${i}.html`;\n  //java.log(href);\n  list.push(href);\n}\nlist\n</js>"
    },
    "searchUrl": "/search.php?q={{key}}&p={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "顶点小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.dingdianxiaoshuo.com",
    "bookUrlPattern": "http://www.dingdianxiaoshuo.com/\\d+/\\d+/",
    "customButton": false,
    "customOrder": 691,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"⭕分类小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"首页\",\n    \"url\": \"/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/list1/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/list2/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/list3/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/list4/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/list5/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/list6/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/list7/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/list8/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕完结小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/full/1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/full/2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/full/3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/full/4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/full/5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/full/6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/full/7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/full/8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕排行榜⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"周榜\",\n    \"url\": \"/top/week_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月榜\",\n    \"url\": \"/top/month_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总榜\",\n    \"url\": \"/top/all_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/top/all_1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/top/all_2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/top/all_3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/top/all_4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/top/all_5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/top/all_6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/top/all_7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/top/all_8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "lastUpdateTime": 1736122051267,
    "respondTime": 16473,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content&&\n[property=\"og:novel:status\"]@content&&\n[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:title\"]@content##小说全文免费阅读完整版|小说全集|最新.*",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "class.font_max@html",
      "nextContentUrl": "text.下一@href",
      "replaceRegex": "##本章未完.*|第.*[(1/2)]页|(?:[^\\u4E00-\\u9FA5\\s！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}(?<![\\.．点丶。])[\\.．点丶。]{1,2}(?![\\.．点丶。])(?:[^A-Z\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])(?:[^\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])+|(?:[^\\u4E00-\\u9FA5\\n！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}[\\.．点丶。](?:[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[oO][^\\n\\u4E00-\\u9FA5A-z]*[mM]|[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[nN]|[^\\n\\u4E00-\\u9FA5A-z]*[nN][^\\n\\u4E00-\\u9FA5A-z]*[eE][^\\n\\u4E00-\\u9FA5A-z]*[tT])(?![A-z])"
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "kind": "",
      "lastChapter": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "dd.1@span.0@text",
      "bookList": ".col-md-6@dl",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": "",
      "kind": "dd.2:3@text##.*：|.*：",
      "lastChapter": "dd.4@a@text",
      "name": "h3@a@text##.*\\]|小说全文阅读|小说全集"
    },
    "ruleToc": {
      "chapterList": ".book_list2 li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "isVolume": "",
      "nextTocUrl": ".page-link@a@href\n@js:\nnext = [];\nurl = result[0];\nlength = result.length;\np = src.match(/page-link\">1\\/(\\d+)/)||[];\npage = Number(p[1]);\nif(length < page){\n\tfor(i = 2; i <= page; i++){\n\t\tlink = String(url).replace(/_\\d+/,`_${i}`);\n\t\tnext.push(link)\n\t\t}\n\t\tnext;\n\t}else result"
    },
    "searchUrl": "/search.php?q={{key}}&p={{page}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "稻草书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.iidcr.com",
    "bookUrlPattern": "https://www.iidcr.com/book/\\w+/",
    "customButton": false,
    "customOrder": 693,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nvar book=[\n[\"女生·言情\",\"love\"],\n[\"耽美·纯爱\",\"bl\"],\n[\"奇幻·玄幻\",\"qihuan\"],\n[\"武侠·仙侠\",\"wuxia\"],\n[\"科幻·游戏\",\"kehuan\"],\n[\"都市·娱乐\",\"dushi\"],\n[\"历史·军事\",\"lishi\"],\n[\"悬疑·灵异\",\"kongbu\"],\n[\"轻小说\",\"light\"],\n[\"国外文学\",\"guowai\"],\n[\"现当代\",\"modern\"],\n[\"名著\",\"classics\"]];\nsort=book.map(([title,uri])=>\n\t({\n    \"title\": title,\n    \"url\": `/nav/${uri}\\-{{page}}.html`,\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  })\n\t);\n\t\nJSON.stringify(sort)",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 9; MIX 2 Build/PKQ1.190118.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/80.0.3987.99 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1787144696079,
    "respondTime": 7989,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "downloadUrls": "@get:{d}\n<js>\n//var id=baseUrl.match(/\\d+/)[0],\n//url=book.origin+`/txt/${id}.html`;\nurl=book.origin+result;\njava.ajax(url)\n</js>\n.panel-default a.0@href\n##$##,{\"type\": \"zip\"}",
      "init": "@put:{n:\"[property$=book_name]@content\",\na:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property$=latest_chapter_name]@content\",\ni:\".book-detail@text\",\nc:\"[property$=image]@content\",\nd:\".reader-bar a.1@href\"}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}"
    },
    "ruleContent": {
      "content": "#cont-body@html",
      "nextContentUrl": ".page a@href"
    },
    "ruleExplore": {
      "bookList": ".media",
      "bookUrl": "a.1@href",
      "coverUrl": "img@src",
      "intro": ".media-info@text",
      "kind": "0",
      "name": "h4@text"
    },
    "ruleSearch": {
      "author": "td.1@text",
      "bookList": "tbody tr",
      "bookUrl": "a.0@href",
      "checkKeyWord": "七界传说",
      "coverUrl": "a.0@href##\\D*(\\d+)\\D*##\n/uploads/cover/$1s.jpg###",
      "kind": "0",
      "name": "a.0@title"
    },
    "ruleToc": {
      "chapterList": "#all-chapter a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/plus/search.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "甜梦文库",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.tmwk.cc",
    "bookUrlPattern": "https://www.tmwk.cc/go/\\d+/",
    "customButton": false,
    "customOrder": 694,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::/xuanhuan.html\n现代::/xiandai.html\n古代::/gudai.html\n悬疑::/xuanyi.html\n网游::/wangyou.html\n玻璃::/bl.html\n基佬::/gl.html",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; U; Android 13; zh-Hans-CN; PFJM10 Build/TP1A.251121.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/140.0.4896.58 Quark/10.0.6.960 Mobile Safari/537.36\",\"Accept-Language\":\"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"}",
    "lastUpdateTime": 1765617889619,
    "respondTime": 22099,
    "ruleBookInfo": {
      "author": "tag.a.8@textNodes",
      "coverUrl": "img@src\n@js:\na=java.ajax(result)\nif(a==\"\"){\tresult=\"https://www.tmwk.cc/skin/nocover.jpg\"}\nresult",
      "intro": ".bookintro@html",
      "kind": "tag.a.7@textNodes",
      "lastChapter": ".bookchapter@text",
      "name": ".booktitle@text",
      "wordCount": "class.blue.0@text"
    },
    "ruleContent": {
      "content": ".readcontent@textNodes",
      "nextContentUrl": "text.下一@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.author.0@text##作者：",
      "bookList": ".bookbox",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "{{\"https://www.tmwk.cc/skin/nocover.jpg\"}}",
      "intro": ".update@ownText",
      "lastChapter": "tag.a.1@text",
      "name": "tag.a.0@text",
      "wordCount": "class.author.1@text##字数：|字"
    },
    "ruleToc": {
      "chapterList": "#list-chapterAll@dd@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php,{\n  \"body\": \"searchkey={{key}}&action=login&submit=\",\n  \"method\": \"POST\",\n  \"charset\": \"GBK\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "兔九三网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.tu93.xyz",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 695,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻奇幻\",\"url\":\"/xuanhuan?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"武侠仙侠\",\"url\":\"/xianxia?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"都市言情\",\"url\":\"/dushi?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"历史军事\",\"url\":\"/lishi?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"科幻传奇\",\"url\":\"/kehuan?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"恐怖灵异\",\"url\":\"/kongbu?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"其他类型\",\"url\":\"/qita?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"全本小说\",\"url\":\"/quanben?page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/82.0.4080.0 Safari/537.36 Edg/82.0.453.0\"\n}",
    "lastUpdateTime": 1740790922845,
    "loginUrl": "",
    "respondTime": 7216,
    "ruleBookInfo": {
      "author": ".booktag@a.0@text",
      "coverUrl": "id.bookIntro@img@src",
      "init": "",
      "intro": "id.bookIntro@text##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": ".booktag@a.1@text&&.booktag@span.2@text&&p.visible-xs@text##.*：|（|\\s..:.*",
      "lastChapter": ".text-danger@title##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": ".bookTitle@text",
      "tocUrl": "",
      "wordCount": ".booktag@span.0@text##.*："
    },
    "ruleContent": {
      "content": "id.htmlContent@html",
      "nextContentUrl": "@js:\nif (result.indexOf(\"xyy2.png\") > -1) {\nvar code = result.match(/eval\\(function(.*)\\);/)[0]\ncode = code.replace(/__u[0-9a-f]+/, '__uData')\neval(code)\n\t\n\tif(!__uData.match('_')) {\n\t next = java.getElement(\"@@id.linkNext@a\")\n\t __uData = next.attr(\"href\")\n\t}\n__uData\n}",
      "replaceRegex": "##第.+章.+|.*最新章节！|.*完整章节.*|[\\(（]本章完[\\)）].*|「如章节缺失.*」|你看到的.内容.*|.*小说app阅读.*|为你提供最快的.*",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "td.2@text",
      "bookList": "tbody@tr",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.+\\D((\\d+)\\d{3})\\D##https://statics.tu93.net/$2/$1/$1s.jpg###",
      "kind": "td.5:4@text",
      "lastChapter": "a.1@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "a.0@text"
    },
    "ruleSearch": {
      "author": "a.1@text",
      "bookList": ".col-md-10",
      "bookUrl": "a.0@href",
      "coverUrl": "a.0@href##.+\\D((\\d+)\\d{3})\\D##https://statics.tu93.net/$2/$1/$1s.jpg###",
      "intro": "p.1@text",
      "kind": "p.3@text##.*：",
      "lastChapter": "a.2@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "name": "a.0@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": ".col-md-3@a",
      "chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "href##$##,{'webView': true}",
      "updateTime": ""
    },
    "searchUrl": "@js:\nvar su=source.getKey()\nvar htmlUrl=java.get(su,{}).headers('Location')\njava.log(`重定向：${htmlUrl[0]}`)\nvar posturl=htmlUrl[0]?htmlUrl[0]:(su.includes(\"#\")?su.match(/([^\\#]+)\\#/)[1]:su)\nposturl = posturl.slice(-1)=='/'?posturl.slice(0,-1):posturl\ncookie.removeCookie(posturl)\njava.log(`请求：${posturl}`)\n\n\nposturl+\"/search/,\"+JSON.stringify({\n\t\"method\": \"post\",\n       \"body\": \"keyword={{key}}\"\n\n})",
    "weight": 0
  },
  {
    "bookSourceComment": "error:List is empty.\n",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "英语资源（英语）",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.tingroom.com",
    "customButton": false,
    "customOrder": 696,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "天天商务口语::http://m.tingroom.com/?mid=2&catid=1421&page={{page}}\n英文民间故事::http://m.tingroom.com/?mid=2&catid=5324&page={{page}}\n一千零一夜英文故事::http://m.tingroom.com/?mid=2&catid=5086&page={{page}}\n英语口语::http://m.tingroom.com/?mid=2&catid=3185&page={{page}}\n新英语口语900句::http://m.tingroom.com/?mid=2&catid=3068&page={{page}}\n公务员英语口语::http://m.tingroom.com/?mid=2&catid=3070&page={{page}}\n校园英语情景对话::http://m.tingroom.com/?mid=2&catid=3074&page={{page}}\n购物英语口语对话::http://m.tingroom.com/?mid=2&catid=3075&page={{page}}\n三一口语::http://m.tingroom.com/?mid=2&catid=3575&page={{page}}\n生活英语情景对话::http://m.tingroom.com/?mid=2&catid=3076&page={{page}}\n英语日常口语::http://m.tingroom.com/?mid=2&catid=3247&page={{page}}\n美国俚语::http://m.tingroom.com/?mid=2&catid=3321&page={{page}}\n英语抢先学::http://m.tingroom.com/?mid=2&catid=136&page={{page}}\n英语学习方法::http://m.tingroom.com/?mid=2&catid=540&page={{page}}\n电信英语::http://m.tingroom.com/?mid=2&catid=537&page={{page}}\n奥运英语::http://m.tingroom.com/?mid=2&catid=529&page={{page}}\n医务英语::http://m.tingroom.com/?mid=2&catid=528&page={{page}}\n实用英语::http://m.tingroom.com/?mid=2&catid=128&page={{page}}\n英文语法词汇::http://m.tingroom.com/?mid=2&catid=126&page={{page}}\n阅读空间::http://m.tingroom.com/?mid=2&catid=129&page={{page}}\n英汉幽默故事选读::http://m.tingroom.com/?mid=2&catid=130&page={{page}}\n英文名句短语::http://m.tingroom.com/?mid=2&catid=127&page={{page}}\n趣味英语::http://m.tingroom.com/?mid=2&catid=131&page={{page}}\n Modern English 洋话连篇::http://m.tingroom.com/?mid=2&catid=165&page={{page}}\n小笨霖英语笔记::http://m.tingroom.com/?mid=2&catid=445&page={{page}}\n四六级词汇与结构练习::http://m.tingroom.com/?mid=2&catid=454&page={{page}}\n考研英语::http://m.tingroom.com/?mid=2&catid=485&page={{page}}\nGRE英语::http://m.tingroom.com/?mid=2&catid=510&page={{page}}\n财会英语::http://m.tingroom.com/?mid=2&catid=519&page={{page}}\n医学英语::http://m.tingroom.com/?mid=2&catid=3302&page={{page}}\n英文剧本::http://m.tingroom.com/?mid=2&catid=3312&page={{page}}\n英语笔译::http://m.tingroom.com/?mid=2&catid=3985&page={{page}}\n英语小短文::http://m.tingroom.com/?mid=2&catid=3340&page={{page}}\n雅思机经::http://m.tingroom.com/?mid=2&catid=3379&page={{page}}\n英语演讲稿::http://m.tingroom.com/?mid=2&catid=3508&page={{page}}\n雅思英语::http://m.tingroom.com/?mid=2&catid=3183&page={{page}}\n托福英语::http://m.tingroom.com/?mid=2&catid=3620&page={{page}}\n每日商务英语::http://m.tingroom.com/?mid=2&catid=3833&page={{page}}\n法律英语::http://m.tingroom.com/?mid=2&catid=3687&page={{page}}\n金融英语::http://m.tingroom.com/?mid=2&catid=3679&page={{page}}\n英语阅读理解::http://m.tingroom.com/?mid=2&catid=3283&page={{page}}\n面试英语::http://m.tingroom.com/?mid=2&catid=3275&page={{page}}\n求职英语::http://m.tingroom.com/?mid=2&catid=3189&page={{page}}\n英语常用短语::http://m.tingroom.com/?mid=2&catid=3353&page={{page}}\n英语演讲::http://m.tingroom.com/?mid=2&catid=3157&page={{page}}\n节日英语::http://m.tingroom.com/?mid=2&catid=3187&page={{page}}\n旅游英语::http://m.tingroom.com/?mid=2&catid=3191&page={{page}}\n英语美文::http://m.tingroom.com/?mid=2&catid=3193&page={{page}}\n英美文化::http://m.tingroom.com/?mid=2&catid=3230&page={{page}}\n英语口译::http://m.tingroom.com/?mid=2&catid=3231&page={{page}}\n励志英语::http://m.tingroom.com/?mid=2&catid=3232&page={{page}}\n轻松英语::http://m.tingroom.com/?mid=2&catid=3253&page={{page}}\n北外翻译笔记::http://m.tingroom.com/?mid=2&catid=3268&page={{page}}\n大学四六级阅读::http://m.tingroom.com/?mid=2&catid=1547&page={{page}}\n英语作文::http://m.tingroom.com/?mid=2&catid=1267&page={{page}}\n四六级写作指导::http://m.tingroom.com/?mid=2&catid=1557&page={{page}}\n英语四级作文范文::http://m.tingroom.com/?mid=2&catid=3281&page={{page}}\nGRE作文::http://m.tingroom.com/?mid=2&catid=3654&page={{page}}\nnull",
    "lastUpdateTime": 1785693822990,
    "respondTime": 8783,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "class.arc_content@html&&id.wz_jx@tbody@html##<!--share-->[\\s\\S]+?<!--share-->,##↓↓↓单词↓↓↓"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": "class.item_li",
      "bookUrl": "a@href",
      "name": "text"
    },
    "ruleToc": {
      "chapterList": "class.item_li||class.h1title",
      "chapterName": "a@text||text",
      "chapterUrl": "a@href@js:if(result!=null){result=\"http://m.tingroom.com/\"+result}else{result=baseUrl}",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "http://m.tingroom.com/?keyword={{key}}&mid=4&page={{page}}",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "创世中文网[自写]",
    "bookSourceType": 0,
    "bookSourceUrl": "https://chuangshi.qq.com",
    "customButton": false,
    "customOrder": 697,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "                    🍀全部🎀分类🍀                    \n玄幻::https://chuangshi.qq.com/tab/20001\n武侠::https://chuangshi.qq.com/tab/20010\n历史::https://chuangshi.qq.com/tab/20028\n游戏::https://chuangshi.qq.com/tab/20050\n科幻::https://chuangshi.qq.com/tab/20042\n轻小说::https://chuangshi.qq.com/tab/20059",
    "lastUpdateTime": 1769593254608,
    "respondTime": 9502,
    "ruleBookInfo": {
      "coverUrl": ".book-cover@tag.img@src",
      "kind": ".book-info__categories@tag.a@text",
      "lastChapter": ".catalogue-list__title.0@text",
      "tocUrl": "@js:\nvar id = baseUrl.match(/(\\d+)/);\n\"https://chuangshi.qq.com/chapter/\" + id[1]",
      "wordCount": ".book-info__categories@tag.span@text"
    },
    "ruleContent": {
      "content": "id.article@tag.p@html",
      "nextContentUrl": "text.下一页@href||text.下一章@href"
    },
    "ruleExplore": {
      "author": ".author@text",
      "bookList": ".book-li",
      "bookUrl": ".book-simple@tag.a.0@href",
      "intro": ".book-intro@text",
      "kind": ".rect!2@text",
      "name": ".book-title@text",
      "wordCount": ".rect.2@text"
    },
    "ruleSearch": {
      "author": ".book-survey@.author@text",
      "bookList": ".book-box@tag.li",
      "bookUrl": ".book-simple@tag.a.0@href",
      "checkKeyWord": "神墓",
      "intro": ".book-intro@text",
      "name": ".book-title@text##"
    },
    "ruleToc": {
      "chapterList": ".catalog-body@class.book-dir.1@tag.li!-1",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "https://chuangshi.qq.com/search/{{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "读万卷书",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.duwanjuan.org",
    "customButton": false,
    "customOrder": 698,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\": \"玄幻魔法\",\"url\": \"/sort/1/{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.25\n}},\n{\"title\": \"\u0000‍武侠修真\",\"url\": \"/sort/2/{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.25\n}},\n{\"title\": \"\u0000‍都市言情\",\"url\": \"/sort/3/{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.25\n}},\n{\"title\": \"\u0000‍历史军事\",\"url\": \"/sort/4/{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.25\n}},\n{\"title\": \"\u0000‍侦探推理\",\"url\": \"/sort/5/{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.25\n}},\n{\"title\": \"\u0000‍网游动漫\",\"url\": \"/sort/6/{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.25\n}},\n{\"title\": \"\u0000‍科幻小说\",\"url\": \"/sort/7/{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.25\n}},\n{\"title\": \"\u0000‍恐怖灵异\",\"url\": \"/sort/8/{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.25\n}},\n{\"title\": \"\u0000‍言情小说\",\"url\": \"/sort/9/{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.25\n}},\n{\"title\": \"\u0000‍其他类型\",\"url\": \"/sort/10/{{page}}.html\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 1\n}}\n]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; 22041211AC Build/SP1A.210812.016) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.104 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1787467606767,
    "respondTime": 10020,
    "ruleBookInfo": {
      "author": "p.0@text",
      "coverUrl": "img@src",
      "intro": "🏷简介：{{@@.intro@p@text}}",
      "kind": "p.1@text##类型：",
      "lastChapter": "p.3@text",
      "name": "h3.0@text",
      "wordCount": "p.2@text"
    },
    "ruleContent": {
      "content": ".novelcontent@p@textNodes##（本章未完，请点击下一页继续阅读）",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##.*※※※"
    },
    "ruleExplore": {
      "author": ".author@text",
      "bookList": ".article",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": ".simple@text",
      "name": "h6@a@text"
    },
    "ruleSearch": {
      "author": "a.1@text",
      "bookList": ".sone",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": "@js:\"🤔这里好像什么都没说介绍呢,要不你点进去看看!\"",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": ".list_xm@ul@li@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value"
    },
    "searchUrl": "/modules/article/search.php?q={{key}}",
    "variableComment": "🏄Mengteen",
    "weight": 0
  },
  {
    "bookSourceComment": "//25.03.28",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "夜寒书库",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.yehanshuku.com/",
    "bookUrlPattern": "https://www.yehanshu.com/book/\\d+/",
    "customButton": false,
    "customOrder": 700,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "首页::/\n玄幻::/list/xuanhuan/{{page}}/\n武侠::/list/wuxia/{{page}}/\n言情::/list/yanqing/{{page}}/\n科幻::/list/kehuan/{{page}}/\n网游::/list/wangyou/{{page}}/\n都市::/list/dushi/{{page}}/\n历史::/list/lishi/{{page}}/\n古典::/list/gudian/{{page}}/\n全本::/quanben/list/\n热门::/rank/allvisit/\n记录::/history.html",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (iPhone; CPU iPhone OS 18 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1 Mobile/16 Safari/604.1\"}",
    "lastUpdateTime": 1787425888358,
    "respondTime": 11094,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "init": "@put:{n:\"[property$=book_name]@content\",\n\ta:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nw:\"text.字数：@text##字数：\",\nl:\"[property$=latest_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"[property$=image]@content\",\nt:\"text.章节目录@href\"}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}",
      "tocUrl": "@get:{t}",
      "wordCount": "@get:{w}"
    },
    "ruleContent": {
      "content": "#booktxt@html",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".btm a@text",
      "bookList": ".item",
      "bookUrl": "a.1@href",
      "checkKeyWord": "剑来",
      "coverUrl": "img@data-original",
      "intro": "dd@text",
      "kind": "em.-1@text",
      "name": "a.1@text",
      "wordCount": "em.-2@text"
    },
    "ruleToc": {
      "chapterList": "#content_1 a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value||text.下一页@href"
    },
    "searchUrl": "<js>\ncookie.removeCookie(source.key);\nurl=source.key;\na=java.ajax(url);\n//java.log(a)\nb=a.match(/action=\\\"([^\"]*)\\\"/)[1];\nc=`?searchkey=${key},{\"method\": \"get\"}`;\nb+=c\n</js>",
    "weight": 0
  },
  {
    "bookSourceComment": "//By情无羁25.02.19",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "爱读书吧",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.aidushu8.com",
    "customButton": false,
    "customOrder": 702,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\n    \"title\": \"♕ 连载 ♕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/sort/1/{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"修真\",\n    \"url\": \"/sort/2/{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/sort/3/{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"穿越\",\n    \"url\": \"/sort/4/{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/sort/5/{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/sort/6/{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/sort/7/{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"♕ 全本 ♕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/quanben/sort/1/{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"修真\",\n    \"url\": \"/quanben/sort/2/{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/quanben/sort/3/{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"穿越\",\n    \"url\": \"/quanben/sort/4/{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/quanben/sort/5/{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/quanben/sort/6/{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/quanben/sort/7/{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36\"\n}",
    "lastUpdateTime": 1787323693910,
    "respondTime": 3963,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "intro": "[property=\"og:description\"]@content##[\\S\\s]*观看小说\\:",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "text.目录"
    },
    "ruleContent": {
      "content": "#article@p@html##.*更新速度全网最快.*",
      "nextContentUrl": "#next_url@href"
    },
    "ruleExplore": {
      "author": ".fa-user-circle-o@text",
      "bookList": ".flex@li",
      "bookUrl": "a.0@href",
      "coverUrl": "img@data-original",
      "intro": "p.0@text##[\\S\\s]*观看小说\\:",
      "kind": "span.0@text",
      "name": "h2@text",
      "wordCount": "em.0@text"
    },
    "ruleSearch": {
      "author": "p.0@ownText",
      "bookList": ".flex@li",
      "bookUrl": "a.0@href",
      "coverUrl": "img@data-original",
      "intro": "p.1@text##[\\S\\s]*观看小说\\:",
      "kind": "span.0@text",
      "lastChapter": "p.-1@text",
      "name": "img@title||h3@text",
      "wordCount": "span.2@text##字.*##字"
    },
    "ruleToc": {
      "chapterList": "#ul_all_chapters@li a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "{{cookie.removeCookie(source.key)}}/searchs/,{\n  \"body\": \"searchkey={{key}}&page={{page}}&searchtype=all&Submit=\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "🎼蜻蜓FM🎼",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.qingting.fm/",
    "customButton": false,
    "customOrder": 703,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n\"User-Agent\":\"Mozilla/5.0 (Linux; Android 11; Redmi K30 Pro Build/RKQ1.200826.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/92.0.4515.115 Mobile Safari/537.36\",\n\"referer\":\"https://m.qingting.fm/\"\n}",
    "lastUpdateTime": 1753723140074,
    "respondTime": 6063,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "<js>result</js>",
      "sourceRegex": ".*\\.(mp3|m4a).*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".text.-1@text",
      "bookList": ".swiper-slide@a",
      "bookUrl": "a@href",
      "coverUrl": "img.0@src",
      "intro": ".text.0@html",
      "kind": ".text.1@text",
      "lastChapter": ".text.2@text",
      "name": ".title@text"
    },
    "ruleToc": {
      "chapterList": ".vchannel-play-list",
      "chapterName": "a@text",
      "chapterUrl": "a@href@js:result+',{webView:“true”}'"
    },
    "searchUrl": "https://m.qingting.fm/search/all/{{key}}/,{'webView': true}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "开心文学#1",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.kxdu.net",
    "customButton": false,
    "customOrder": 704,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1786586574711,
    "respondTime": 3439,
    "ruleBookInfo": {
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content"
    },
    "ruleContent": {
      "content": ".mainContenr@p@text"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".grid@tr!0",
      "bookUrl": "a.0@href",
      "kind": "td.-1:-2@text",
      "lastChapter": "a.1@text",
      "name": "a.0@text",
      "wordCount": "td.-3@text"
    },
    "ruleToc": {
      "chapterList": ".chapterNum@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/search/{{key}}.html",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎃品书楼🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.pinshulou.com#🎃",
    "bookUrlPattern": "http://www.pinshulou.com/\\d+/\\d+/",
    "customButton": false,
    "customOrder": 705,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"⭕分类小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"首页\",\n    \"url\": \"/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/list1/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/list2/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/list3/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/list4/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/list5/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/list6/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/list7/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/list8/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕完结小说⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/full/1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/full/2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/full/3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/full/4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/full/5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/full/6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/full/7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/full/8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"⭕排行榜⭕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"周榜\",\n    \"url\": \"/top/week_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"月榜\",\n    \"url\": \"/top/month_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"总榜\",\n    \"url\": \"/top/all_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/top/all_1_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/top/all_2_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/top/all_3_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/top/all_4_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/top/all_5_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/top/all_6_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/top/all_7_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/top/all_8_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "lastUpdateTime": 0,
    "respondTime": 24202,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content&&\n[property=\"og:novel:status\"]@content&&\n[property=\"og:novel:update_time\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:title\"]@content##小说全文免费阅读完整版|小说全集|最新.*",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "class.font_max@html",
      "nextContentUrl": "text.下一@href",
      "replaceRegex": "##本章未完.*|第.*[(1/2)]页|(?:[^\\u4E00-\\u9FA5\\s！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}(?<![\\.．点丶。])[\\.．点丶。]{1,2}(?![\\.．点丶。])(?:[^A-Z\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])(?:[^\\u4E00-\\u9FA5\\s！？“「]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶])+|(?:[^\\u4E00-\\u9FA5\\n！？。”」]|[一二三四五六七八九零壹贰叁肆伍陆柒捌玖点丶]){4,}[\\.．点丶。](?:[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[oO][^\\n\\u4E00-\\u9FA5A-z]*[mM]|[^\\n\\u4E00-\\u9FA5A-z]*[cC][^\\n\\u4E00-\\u9FA5A-z]*[nN]|[^\\n\\u4E00-\\u9FA5A-z]*[nN][^\\n\\u4E00-\\u9FA5A-z]*[eE][^\\n\\u4E00-\\u9FA5A-z]*[tT])(?![A-z])"
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "kind": "",
      "lastChapter": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "dd@span@text",
      "bookList": ".col-md-6@dl",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": "",
      "kind": "tag.dd.2:3@text##.*：|.*：",
      "lastChapter": "tag.dd.4@a@text",
      "name": "h3@a@text##.*\\]|小说全文阅读|小说全集"
    },
    "ruleToc": {
      "chapterList": ".book_list2 li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": ".page-link@a@href\n@js:\nnext = [];\nurl = result[0];\nlength = result.length;\np = src.match(/page-link\">1\\/(\\d+)/)||[];\npage = Number(p[1]);\nif(length < page){\n\tfor(i = 2; i <= page; i++){\n\t\tlink = String(url).replace(/_\\d+/,`_${i}`);\n\t\tnext.push(link)\n\t\t}\n\t\tnext;\n\t}else result"
    },
    "searchUrl": "/search.php?q={{key}}&p={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🔞",
    "bookSourceName": "肉文屋🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.rouwenwu16.com#🎃",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 706,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"🎖 排行榜 🎖\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"总排行\",\"url\":\"/top/allvisit-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月排行\",\"url\":\"/top/monthvisit-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总推荐\",\"url\":\"/top/allvote-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月推荐\",\"url\":\"/top/monthvote-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总收藏\",\"url\":\"/top/goodnum-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"字数榜\",\"url\":\"/top/size-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"更新榜\",\"url\":\"/top/lastupdate-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"新入库\",\"url\":\"/top/postdate-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"全部分类\",\"url\":\"/sort/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"校园言情\",\"url\":\"/sort/1-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市言情\",\"url\":\"/sort/2-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古代言情\",\"url\":\"/sort/3-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"罗曼史\",\"url\":\"/sort/4-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"耽美\",\"url\":\"/sort/5-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"百合\",\"url\":\"/sort/6-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"同人\",\"url\":\"/sort/7-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奇幻玄幻\",\"url\":\"/sort/8-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游竞技\",\"url\":\"/sort/9-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻异能\",\"url\":\"/sort/10-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"恐怖灵异\",\"url\":\"/sort/11-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"惊悚推理\",\"url\":\"/sort/12-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠仙侠\",\"url\":\"/sort/13-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史军事\",\"url\":\"/sort/14-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越重生\",\"url\":\"/sort/15-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"综合其它\",\"url\":\"/sort/16-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"完本小说\",\"url\":\"/wanben-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1746069450007,
    "loginUrl": "",
    "respondTime": 8050,
    "ruleBookInfo": {
      "author": "##:author\"[^\"]+\"([^\"]*)##$1###",
      "coverUrl": "##og:image\"[^\"]+\"([^\"]*)##$1###",
      "intro": "##:description\"[^\"]+\"([^\"]*)##$1###",
      "kind": "##:category\"[^\"]+\"([^\"]*)##$1###",
      "lastChapter": "##_chapter_name\"[^\"]+\"([^\"]*)##$1###",
      "name": "##:book_name\"[^\"]+\"([^\"]*)##$1###",
      "tocUrl": ""
    },
    "ruleContent": {
      "content": "div#content@html",
      "nextContentUrl": "text.下一页@href\n//需要加载下一页,章节地址添加##$##,{\"webView\": true}",
      "replaceRegex": "##更多小说请收藏.*|\\s*_{4,}"
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": "",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": ".author@text",
      "bookList": "ul.topul>li",
      "bookUrl": "h2>a@href",
      "checkKeyWord": "我的",
      "coverUrl": "img@src",
      "intro": "p@text",
      "kind": "i.lianzai@text",
      "lastChapter": "",
      "name": "h2>a@text",
      "wordCount": ".other@text"
    },
    "ruleToc": {
      "chapterList": "tag.ul.2@tag.li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "text.下一页@href"
    },
    "searchUrl": "/s.php,{\n  \"body\": \"searchkey={{key}}\",\n  \"charset\": \"UTF-8\",\n  \"method\": \"POST\"\n}\n",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔下文学",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.bxwx8.la",
    "customButton": false,
    "customOrder": 707,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1787243637289,
    "respondTime": 4643,
    "ruleBookInfo": {
      "intro": "@js:(result=result.match(/内容简介[\\s\\S]+?div>([\\s\\S]*?)<br.*?\\n.*?bxwx/))?result[1].replace(/.*?bxwx.*?\\.org/,'<br>'):''",
      "tocUrl": "@js:baseUrl.replace(/binfo/,'b').replace(/(\\d)\\.htm.*/,'$1/')"
    },
    "ruleContent": {
      "content": "id.content@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "tr:has(.odd):lt(6)",
      "bookUrl": "tag.td.0@a@href",
      "coverUrl": "tag.td.0@a@href@js:result.replace(/binfo/,'image').replace(/\\/(\\d+).htm/,'/$1/$1s.jpg')",
      "kind": "tag.td.5@text&&tag.td.3@text@js:result+'字'",
      "lastChapter": "tag.td.1@text",
      "name": "tag.td.0@text"
    },
    "ruleToc": {
      "chapterList": "+@js:\nvar reg=new RegExp(/<dd(.).+?\"(\\d+\\.html)\">(.*?)<\\/a>/g);\nvar list1=[];\nvar list2=[];\nvar tmp,url,name;\nvar i=-1;\nwhile((tmp=reg.exec(result))){\nurl=tmp[2];\nname=tmp[3];\nif(tmp[1].match(/>/)){\ni=i+1;\nlist1.push({name:name,url:url});\n}\nelse\nlist2.push({name:name,url:url});\n\nif(i==1){\ni=-1;\nlist1=list1.concat(list2.reverse());\nlist2=[];\n}\n}\nlist1;",
      "chapterName": "name",
      "chapterUrl": "url"
    },
    "searchUrl": "http://www.bxwx8.la/cse/search?q={{key}}&submit=搜索",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "酷书阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.kushuge.com",
    "concurrentRate": "5",
    "customButton": false,
    "customOrder": 708,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/list1/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/list2/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/list3/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/list4/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"网游\",\n    \"url\": \"/list5/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/list6/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"言情\",\n    \"url\": \"/list7/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/list8/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  }\n]",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; U; Android 13; zh-Hans-CN; PFJM10 Build/TP1A.220905.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/135.0.4896.58 Quark/6.13.6.581 Mobile Safari/537.36\",\"Accept-Language\":\"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"}",
    "lastUpdateTime": 1785477516481,
    "respondTime": 37081,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "article@html##第\\(\\d+\\/\\d+\\)页",
      "nextContentUrl": "text.下一@href\n@js:\nvar next=/_\\d+\\.html/.test(result) ? result : '';\nnext;"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "span.0@text",
      "bookList": ".col-md-6@dl",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "kind": "{{@a.1@text##\\[(.*)\\].*##$1}}\n{{@dd.2:3##状态：?:?|更新时间：?:?}}",
      "lastChapter": "a.2@text",
      "name": "a.1@text##\\[.*\\](.*)##$1"
    },
    "ruleToc": {
      "chapterList": ".book_list2@ul@li@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": ".page-link.0@text##\\d+\\/(\\d+)##$1\n@js:\nres = JSON.parse(result)\nlist = [];\nfor (var i = 2; i <= res; i++) {\n\tlist.push(baseUrl.replace(/\\/$/,\"/index_\" + i + \".html\")); \n}\nlist;"
    },
    "searchUrl": "/search.php?q={{key}}&p={{page}}",
    "weight": 1
  },
  {
    "bookSourceComment": "//by: youke游客2580\n//优化详情页，修复补全目录下页",
    "bookSourceGroup": "🎉 优选,📚小说",
    "bookSourceName": "无限小说#2",
    "bookSourceType": 0,
    "bookSourceUrl": "https://wuxianxs123.com",
    "customButton": false,
    "customOrder": 709,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "首页::https://wuxianxs123.com/\n穿越小说::https://wuxianxs123.com/chuanyuexiaoshuo/\n重生小说::https://wuxianxs123.com/chongshengxiaoshuo/\n历史架空::https://wuxianxs123.com/lishijiakong/\n言情小说::https://wuxianxs123.com/yanqingxiaoshuo/\n耽美小说::https://wuxianxs123.com/danmei/\n玄幻小说::https://wuxianxs123.com/xuanhuan/\n总裁豪门::https://wuxianxs123.com/zongcaihaomen/",
    "lastUpdateTime": 1787020811141,
    "respondTime": 5112,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "{{book.origin}}/e/extend/bookpage/pages.php?id={{baseUrl.match(/(\\d+).?$/)[1]}}&pageNum=0&dz=asc"
    },
    "ruleContent": {
      "content": "id.text@html",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.book-author@text||p.0@text",
      "bookList": "li@class.search-wrap-first||li@class.listBig-li",
      "bookUrl": "a.0@href",
      "coverUrl": "class.scroll-load-img@img@src\n||class.book-cover-img@img@src",
      "intro": "p@text||p.1@text",
      "kind": "0",
      "name": "class.title@text||h3@text"
    },
    "ruleToc": {
      "chapterList": "$.list",
      "chapterName": "$.title",
      "chapterUrl": "$.pic",
      "nextTocUrl": "@js:\nvar next=[],\nregex=/(pageNum=)(\\d+)/,\nnum=baseUrl.match(regex)[2],\npage=JSON.parse(src).totalPage;\nif(page>num){\n\tfor(i=1;i<=page;i++){\n\t\turl=baseUrl.replace(regex,\n\t\t\t`$1${i}`);\n\t\t\tnext.push(url);\n\t\t}\n\tnext\n\t}"
    },
    "searchUrl": "https://wuxianxs123.com/e/search/index.php,{\n  \"body\": \"keyboard={{key}}&show=title\",\n  \"charset\": \"UTF-8\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "2K小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.2kzw.la/",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 710,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "lastUpdateTime": 1733687272555,
    "loginUrl": "",
    "respondTime": 1060,
    "ruleBookInfo": {
      "author": "tag.h3.0@tag.a.0@text",
      "coverUrl": "class.pannel-body info@class.info1@tag.img.0@src",
      "init": "",
      "intro": "class.pannel-body info@tag.p.0@textNodes",
      "kind": ".panel-body.text-center.info3@p.0:1@text<js>##小说类别：|写作状态：|最后更新：</js><js>##\\s\\/\\s##,</js>",
      "lastChapter": "class.panel-body text-center info3@tag.p.2@a@text",
      "name": "tag.h1@text"
    },
    "ruleContent": {
      "content": "class.panel-body content-body content-ext@textNodes"
    },
    "ruleExplore": {
      "bookList": ""
    },
    "ruleSearch": {
      "author": "tag.tr@tag.p.1@tag.a.0@text||tag.h3.0@tag.a.0@text",
      "bookList": "//*[@id=\"bookcon\"]//tr",
      "bookUrl": "tag.tr@tag.p.0@tag.a.0@href",
      "coverUrl": "",
      "kind": "tag.tr@tag.p.3@text||tag.p.1@text##.*状态：",
      "lastChapter": "",
      "name": "tag.tr@tag.p.0@tag.a.0@text||tag.h1@text"
    },
    "ruleToc": {
      "chapterList": "class.list-group list-charts.0@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "modules/article/search.php?searchkey={{key}}&submit=搜索",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "星星小说🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xxtxt.com#🎃",
    "customButton": false,
    "customOrder": 711,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 0,
    "loginCheckJs": "",
    "respondTime": 6595,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "intro": "[property$=description]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "{{@@[property$=chapter_name]@content}}\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(正文|VIP章节|最新章节)?(\\s+|_)|[\\(\\{（｛【].*[求含理更谢乐发推票盟补加字Kk\\/].*/g,'')\n.replace(/^(\\d+)[、．]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
      "name": "[property$=book_name]@content",
      "tocUrl": ""
    },
    "ruleContent": {
      "content": "class.font_max@html",
      "nextContentUrl": "text.下一@href",
      "replaceRegex": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".book_other.0@span.0@text",
      "bookList": "class.col-12 col-md-6",
      "bookUrl": "a.0@href",
      "checkKeyWord": "",
      "coverUrl": "img@src",
      "kind": ".book_other.1:2@text##.*：|.*：",
      "lastChapter": ".book_other.3@a@text",
      "name": "h3@a@text##.*\\]"
    },
    "ruleToc": {
      "chapterList": ".book_list2 li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "isPay": "",
      "isVip": "",
      "nextTocUrl": ".page-link@a@href\n@js:\nnext = [];\nurl = result[0];\nlength = result.length;\np = src.match(/page-link\">1\\/(\\d+)/)||[];\npage = Number(p[1]);\nif(length < page){\n\tfor(i = 2; i <= page; i++){\n\t\tlink = String(url).replace(/_\\d+/,`_${i}`);\n\t\tnext.push(link)\n\t\t}\n\t\tnext;\n\t}else result"
    },
    "searchUrl": "http://www.xxtxt.com/search.php?q={{key}},{\n  \"method\": \"GET\"\n}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "书文小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.shuww.com",
    "bookUrlPattern": "https://www.shuww.com/book/\\d+/",
    "customButton": false,
    "customOrder": 712,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"总排行\",\n    \"url\": \"/shuku/allvisit_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"总推荐\",\n    \"url\": \"/shuku/allvote_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"总收藏\",\n    \"url\": \"/shuku/goodnum_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"最新入库\",\n    \"url\": \"/shuku/postdate_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"最新更新\",\n    \"url\": \"/shuku/lastupdate_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"日排行\",\n    \"url\": \"/shuku/dayvisit_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"周排行\",\n    \"url\": \"/shuku/weekvisit_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"月排行\",\n    \"url\": \"/shuku/monthvisit_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"日推荐\",\n    \"url\": \"/shuku/dayvote_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"周推荐\",\n    \"url\": \"/shuku/weekvote_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"月推荐\",\n    \"url\": \"/shuku/monthvote_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.2\n    }\n  },\n  {\n    \"title\": \"全部分类\",\n    \"url\": \"/shuku/lastupdate_0_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻修真\",\n    \"url\": \"/shuku/lastupdate_1_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"重生穿越\",\n    \"url\": \"/shuku/lastupdate_2_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"都市小说\",\n    \"url\": \"/shuku/lastupdate_3_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"军史小说\",\n    \"url\": \"/shuku/lastupdate_4_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"网游小说\",\n    \"url\": \"/shuku/lastupdate_5_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"科幻小说\",\n    \"url\": \"/shuku/lastupdate_6_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"灵异小说\",\n    \"url\": \"/shuku/lastupdate_7_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"言情小说\",\n    \"url\": \"/shuku/lastupdate_8_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"其他小说\",\n    \"url\": \"/shuku/lastupdate_9_0_0_{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  }\n]",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; U; Android 13; zh-Hans-CN; PFJM10 Build/TP1A.220905.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/135.0.4896.58 Quark/6.13.6.581 Mobile Safari/537.36\",\"Accept-Language\":\"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"}",
    "lastUpdateTime": 1756583610324,
    "loginUi": "[\n    {\n        name: \"帐号\",\n        type: \"text\"\n    },\n    {\n        name: \"密码\",\n        type: \"password\"\n    },\n    {\n    \t   name: \"登录\",\n        type: \"button\",\n        action: \"login()\"\n    },\n    {\n        name: \"注册\",\n        type: \"button\",\n        action: \"https://www.shuww.com/register.html\"\n    }\n]",
    "loginUrl": "function login() {\n    java.log(\"模拟登录请求\");\n    cookie.removeCookie(source.key)\n    res = source.getLoginInfoMap()\n    \n    use=res.get(\"帐号\");\n    pwd=res.get(\"密码\");\n    \n    code=java.getVerificationCode(\"https://www.shuww.com/code.jpg?\"+Math.random())\n    \n    body=`user_name=${use}&user_pass=${java.md5Encode(pwd)}&user_code=${code}`\n    \n   headers= {\n    \"accept\": \"*/*\",\n    \"accept-language\": \"zh-CN,zh;q=0.9\",\n    \"cache-control\": \"no-cache\",\n    \"content-type\": \"application/x-www-form-urlencoded; charset=UTF-8\",\n    \"pragma\": \"no-cache\",\n    \"x-requested-with\": \"XMLHttpRequest\",\n    \"Referer\": \"https://www.shuww.com/\",\n    \"Referrer-Policy\": \"strict-origin-when-cross-origin\",\n    \"User-Agent\": \"Mozilla/5.0 (Linux; Android 15; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.9 Mobile Safari/537.36\"\n  }\n    html=java.ajax(\"https://www.shuww.com/qs_login_go.php,\"+JSON.stringify({\n  \"body\": body,\n  \"method\": \"POST\",\n  \"headers\": JSON.stringify(headers)\n    \t}))\n    \n    java.longToast(html)\n    Packages.java.lang.Thread.sleep(3000)\n    \n}\n",
    "respondTime": 20325,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property~=category|status|update_time]@content",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": "{{baseUrl}}##$##d1.html"
    },
    "ruleContent": {
      "content": "<js>\nvar bes = result.match(/PHA\\+[A-Za-z0-9+\\/]+={0,2}/g);\n//java.log(String(bes))\nif (!bes) {\n    var ml = java.webView(null,baseUrl,null);\n    var txt = java.getString(\"#txt@html\");\n    java.longToast(\"正文解密失败，转为webView动态加载。\");\n} else {\nvar result = [];\nfor (var i = 0; i < bes.length; i++) {\n    // 遍历数组，使用阅读内置Base64解码方法\n    var bsej = java.base64Decode(bes[i]);\n    var txtt = String(bsej);\n    result.push(txtt);\n      }\n\tvar txt = result.join('\\n');\n}\ntxt;\n</js>",
      "nextContentUrl": "[rel$=prefetch].1@href\n@js:\nvar next=/_\\d+\\.html/.test(result) ? result : '';\nnext;",
      "replaceRegex": "##{{book.name}}"
    },
    "ruleExplore": {
      "bookList": ".dv1@a",
      "bookUrl": "href",
      "coverUrl": "href##.*\\/(\\d+).*##/img/$1.jpg",
      "intro": ".info@text",
      "name": "h4@text"
    },
    "ruleSearch": {
      "bookList": "<js>\nu=source.key\nc=String(cookie.getCookie(u)).replace(/search_time=\\d+/,\"\")\ncookie.setCookie(source.key, c)\nresult\n</js>.fmtj.0@a",
      "bookUrl": "href",
      "coverUrl": "href##.*\\/(\\d+).*##/img/$1.jpg",
      "intro": ".info@text",
      "name": "h4@text"
    },
    "ruleToc": {
      "chapterList": "-.ph_list.0@.br-b-1@a",
      "chapterName": "text",
      "chapterUrl": "onclick##read_tz\\((\\d+)\\);##$1\n@js:\nurl=baseUrl.replace(/d\\d+/,result)",
      "nextTocUrl": "option@value"
    },
    "searchUrl": "/search.html,{\n  \"body\": \"s={{key}}&type=submit\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "❤️快眼小说🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.kyxsw.info",
    "customButton": false,
    "customOrder": 714,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"分类\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"玄幻魔法\",\"url\":\"/fenlei1_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"武侠修真\",\"url\":\"/fenlei2_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"都市青春\",\"url\":\"/fenlei3_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"历史军事\",\"url\":\"/fenlei4_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"侦探推理\",\"url\":\"/fenlei5_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"网游动漫\",\"url\":\"/fenlei6_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"科幻小说\",\"url\":\"/fenlei7_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"恐怖灵异\",\"url\":\"/fenlei8_{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"完本小说\",\"url\":\"/quanben/{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"排行\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"最近更新\",\"url\":\"/toplastupdate/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"最新入库\",\"url\":\"/toppostdate/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"日排行榜\",\"url\":\"/topdayvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"周排行榜\",\"url\":\"/topweekvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"月排行榜\",\"url\":\"/topmonthvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"总排行榜\",\"url\":\"/topallvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"日推荐榜\",\"url\":\"/topdayvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"周推荐榜\",\"url\":\"/topweekvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"月推荐榜\",\"url\":\"/topmonthvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"总推荐榜\",\"url\":\"/topallvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"字数排行\",\"url\":\"/topsize/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"总收藏榜\",\"url\":\"/topgoodnum/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"本站推荐\",\"url\":\"/toptoptime/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1769590189652,
    "respondTime": 2249,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "coverUrl": "[property$=image]@content",
      "init": ".small&&meta",
      "intro": "[property$=description]@content##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "[property~=category|status|update_time]@content##\\s.*",
      "lastChapter": "[property$=chapter_name]@content##[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]",
      "name": "[property$=book_name]@content",
      "wordCount": "span.3@text##字数："
    },
    "ruleContent": {
      "content": "#content@textNodes##\\/.+快眼小说网.*\\/|\\n.*$|{{baseUrl}}|.{0,3}阅读本书.{35}也喜欢.\\s*\\S*",
      "replaceRegex": ""
    },
    "ruleExplore": {
      "author": ".s4l@text",
      "bookList": ".l li||.novelslistss li",
      "bookUrl": "@get:{u}",
      "coverUrl": "@get:{u}##/book/(\\d+)/(\\d+)/##/files/article/image/$1/$2/$2s.jpg",
      "kind": ".s1,.s5l@text||.s1l,.s7l@text&&.s5l@text##\\[|]",
      "lastChapter": ".s3l@text",
      "name": ".s2l@text@put:{u:\"a.0@href\"}"
    },
    "ruleSearch": {
      "author": ".author@text",
      "bookList": "+@css:.bookbox",
      "bookUrl": "@get:{u}",
      "coverUrl": "img@src",
      "kind": ".cat@text##分类：",
      "lastChapter": ".update a@text##[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]",
      "name": ".bookname@text@put:{u:\"a.0@href\"}"
    },
    "ruleToc": {
      "chapterList": ":正文卷[\\s\\S]*?/dl&&href =\"([^\"]+)\">([^<]+)",
      "chapterName": "$2##[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]",
      "chapterUrl": "$1"
    },
    "searchUrl": "/modules/article/search.php?ie=utf-8&s=00000&q={{key}}",
    "weight": 100
  },
  {
    "bookSourceComment": "不知道为什么，发现和搜索获取不了封面。\n                                                                               --By[曦灵]",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎉QQ阅读_By-[曦灵]",
    "bookSourceType": 0,
    "bookSourceUrl": "https://ubook.reader.qq.com/  ##_By-[曦灵]",
    "customButton": false,
    "customOrder": 716,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "首页:://ubook.reader.qq.com/\n排行:://ubook.reader.qq.com/book-rank/male-monthly\n分类:://ubook.reader.qq.com/book-cate\n免费:://ubook.reader.qq.com/book-free/male\n广场:://ubook.reader.qq.com/book-shortage\n首页:://ubook.reader.qq.com/\n玄幻 :://ubook.reader.qq.com/book-cate/20001-0-0-0-0-0-0-1\n奇幻  :://ubook.reader.qq.com/book-cate/20005-0-0-0-0-0-0-1\n武侠:://ubook.reader.qq.com/book-cate/20010-0-0-0-0-0-0-1\n仙侠 :://ubook.reader.qq.com/book-cate/20014-0-0-0-0-0-0-1\n都市:://ubook.reader.qq.com/book-cate/20019-0-0-0-0-0-0-1\n现实:://ubook.reader.qq.com/book-cate/20065-0-0-0-0-0-0-1\n历史 :://ubook.reader.qq.com/book-cate/20028-0-0-0-0-0-0-1\n军事:://ubook.reader.qq.com/book-cate/20032-0-0-0-0-0-0-1\n游戏  :://ubook.reader.qq.com/book-cate/20050-0-0-0-0-0-0-1\n体育:://ubook.reader.qq.com/book-cate/20054-0-0-0-0-0-0-1\n科幻:://ubook.reader.qq.com/book-cate/20042-0-0-0-0-0-0-1\n悬疑:://ubook.reader.qq.com/book-cate/20037-0-0-0-0-0-0-1\n轻小说:://ubook.reader.qq.com/book-cate/20059-0-0-0-0-0-0-1\n诸天无限:://ubook.reader.qq.com/book-cate/20109-0-0-0-0-0-0-1\n短篇:://ubook.reader.qq.com/book-cate/20076-0-0-0-0-0-0-1\n古言:://ubook.reader.qq.com/book-cate/30013-0-0-0-0-0-0-1\n现言:://ubook.reader.qq.com/book-cate/30020-0-0-0-0-0-0-1\n幻情:://ubook.reader.qq.com/book-cate/30001-0-0-0-0-0-0-1\n仙侠:://ubook.reader.qq.com/book-cate/30008-0-0-0-0-0-0-1\n青春:://ubook.reader.qq.com/book-cate/30031-0-0-0-0-0-0-1\n游戏:://ubook.reader.qq.com/book-cate/30050-0-0-0-0-0-0-1\n科幻:://ubook.reader.qq.com/book-cate/30042-0-0-0-0-0-0-1\n悬疑:://ubook.reader.qq.com/book-cate/30036-0-0-0-0-0-0-1\n轻小说:://ubook.reader.qq.com/book-cate/30055-0-0-0-0-0-0-1\n短篇:://ubook.reader.qq.com/book-cate/30083-0-0-0-0-0-0-1\n现实:://ubook.reader.qq.com/book-cate/30120-0-0-0-0-0-0-1\n小说:://ubook.reader.qq.com/book-cate/13100-0-0-0-0-0-0-1\n青春:://ubook.reader.qq.com/book-cate/14300-0-0-0-0-0-0-1\n文学:://ubook.reader.qq.com/book-cate/14100-0-0-0-0-0-0-1\n励志:://ubook.reader.qq.com/book-cate/13400-0-0-0-0-0-0-1\n历史:://ubook.reader.qq.com/book-cate/14400-0-0-0-0-0-0-1\n心理:://ubook.reader.qq.com/book-cate/14000-0-0-0-0-0-0-1\n公版:://ubook.reader.qq.com/book-cate/19100-0-0-0-0-0-0-1\n哲学:://ubook.reader.qq.com/book-cate/15000-0-0-0-0-0-0-1\n管理:://ubook.reader.qq.com/book-cate/13300-0-0-0-0-0-0-1\n传记:://ubook.reader.qq.com/book-cate/14500-0-0-0-0-0-0-1\n古籍:://ubook.reader.qq.com/book-cate/16900-0-0-0-0-0-0-1\n经济  :://ubook.reader.qq.com/book-cate/13200-0-0-0-0-0-0-1\n社科:://ubook.reader.qq.com/book-cate/14200-0-0-0-0-0-0-1\n童书:://ubook.reader.qq.com/book-cate/15800-0-0-0-0-0-0-1\n教材教辅:://ubook.reader.qq.com/book-cate/16500-0-0-0-0-0-0-1\n文化:://ubook.reader.qq.com/book-cate/15500-0-0-0-0-0-0-1\n政治:://ubook.reader.qq.com/book-cate/14900-0-0-0-0-0-0-1\n养生:://ubook.reader.qq.com/book-cate/13800-0-0-0-0-0-0-1\n医学:://ubook.reader.qq.com/book-cate/15300-0-0-0-0-0-0-1\n投资:://ubook.reader.qq.com/book-cate/15700-0-0-0-0-0-0-1\n两性:://ubook.reader.qq.com/book-cate/13700-0-0-0-0-0-0-1\n军事 :://ubook.reader.qq.com/book-cate/14600-0-0-0-0-0-0-1\n亲子 :://ubook.reader.qq.com/book-cate/13500-0-0-0-0-0-0-1\n宗教:://ubook.reader.qq.com/book-cate/14700-0-0-0-0-0-0-1\n计算机:://ubook.reader.qq.com/book-cate/16800-0-0-0-0-0-0-1\n科普:://ubook.reader.qq.com/book-cate/16300-0-0-0-0-0-0-1\n法律:://ubook.reader.qq.com/book-cate/17300-0-0-0-0-0-0-1\n漫画书:://ubook.reader.qq.com/book-cate/19000-0-0-0-0-0-0-1\n艺术:://ubook.reader.qq.com/book-cate/15200-0-0-0-0-0-0-1\n工业:://ubook.reader.qq.com/book-cate/17000-0-0-0-0-0-0-1\n自然:://ubook.reader.qq.com/book-cate/14800-0-0-0-0-0-0-1\n外语 :://ubook.reader.qq.com/book-cate/15600-0-0-0-0-0-0-1\n考试 :://ubook.reader.qq.com/book-cate/16400-0-0-0-0-0-0-1\n美食:://ubook.reader.qq.com/book-cate/16100-0-0-0-0-0-0-1\n体育 :://ubook.reader.qq.com/book-cate/15900-0-0-0-0-0-0-1\n杂志 :://ubook.reader.qq.com/book-cate/18000-0-0-0-0-0-0-1\n时尚 :://ubook.reader.qq.com/book-cate/13600-0-0-0-0-0-0-1\n旅游 :://ubook.reader.qq.com/book-cate/13900-0-0-0-0-0-0-1\n休闲  :://ubook.reader.qq.com/book-cate/15400-0-0-0-0-0-0-1\n 建筑 :://ubook.reader.qq.com/book-cate/16600-0-0-0-0-0-0-1\n工具:://ubook.reader.qq.com/book-cate/17100-0-0-0-0-0-0-1\n短篇 :://ubook.reader.qq.com/book-cate/17400-0-0-0-0-0-0-1\n英文图书 :://ubook.reader.qq.com/book-cate/15100-0-0-0-0-0-0-1\n农林:://ubook.reader.qq.com/book-cate/16200-0-0-0-0-0-0-1\n手工 :://ubook.reader.qq.com/book-cate/16000-0-0-0-0-0-0-1\n家居  :://ubook.reader.qq.com/book-cate/16700-0-0-0-0-0-0-1\n月票榜:://ubook.reader.qq.com/book-rank/male-monthly\n畅销榜:://ubook.reader.qq.com/book-rank/male-sell\n潜力榜:://ubook.reader.qq.com/book-rank/male-poten\n完结榜:://ubook.reader.qq.com/book-rank/male-finish\n新书榜:://ubook.reader.qq.com/book-rank/male-new\n比心榜:://ubook.reader.qq.com/book-rank/male-heart\n免费爆款:://ubook.reader.qq.com/book-rank/male-freehot\n免费完结:://ubook.reader.qq.com/book-rank/male-freefinish\n免费飙升:://ubook.reader.qq.com/book-rank/male-freesoar\n免费新书:://ubook.reader.qq.com/book-rank/male-freenew\n免费口碑:://ubook.reader.qq.com/book-rank/male-freepraise\n免费 :://ubook.reader.qq.com/book-free/male",
    "lastUpdateTime": 1745852968068,
    "loginUrl": "https://passport.yuewen.com/login.html?appid=1450000221&areaid=1&logintype=2&tabshow=1101&auto=0&ticket=1&returnurl=https%3A%2F%2Fubook.reader.qq.com%2FloginSuccess%3FreturnUrl%3Dhttps%253A%252F%252Fubook.reader.qq.com%252F",
    "respondTime": 7705,
    "ruleBookInfo": {
      "author": "@get:{x}",
      "canReName": "True",
      "coverUrl": "@js:(s=java.getStringList('img[alt*='+book.name+']@src||meta[property$=image]@content||img[src~=(cover|file|article)[^a-z]|/\\\\d+[/_-]\\\\d+(s?\\\\.|$)]@src||img[data-src~=\\\\S]@data-src||img[src*=/img]@src||img[src~=^(data|https?):|^[^:]+/]@src')).size()?/^data:/.test(s=s.get(0))?java.base64Encode(s):s:null",
      "intro": "@js:'　　'+java.get(\"g\")",
      "kind": "@js:java.get(\"v\")",
      "lastChapter": "@get:{z}##[APP免费]*",
      "name": "@js:\nj=String(java.get(\"custom\")).match(/^ *((?:[录原单动静直全跳逆字图]|\\[[^\\[\\]]+\\]|\\d+#[^#]+#)+)/);\n\nkey=String((u=(baseUrl=String(book.bookUrl).replace(/,{[^{}]+}$/,'')).match(/^(.+)\\?((?:[录原单动静直全跳逆字图]|\\[[^\\[\\]]+\\]|\\d+#[^#]+#)+)$/))&&(baseUrl=u[1])&&j?j[1]+u[2]:u?u[2]:j?j[1]:'');\n\n$=it=>(fn=r.select(it)).size()&&(fn=fn.first());\n\nr=org.jsoup.Jsoup.parse(result);\nr.select(\"script,noscript,style,head>:not(meta,title),footer,[class~=^foot],[id~=^foot],a:has(>:last-child:matchesOwn(^分类$)),[value]\").remove();\n\nm=String(r).replace(/(?:&nbsp;)+/g,\" \");\n\n书=false;\nn=($('[property$=book_name]')&&(书=String(fn.attr('content')).replace(/^[\\s「『【〖（(\\[]+/,\"\"))\n||(function(){\nif($('title')&&(书=String(fn.text()).replace(/^(简介页|详情页|目录页|正版|全本|免费阅读|[\\s。.,_/|「『【〖（(\\[\\])）〗】』」─—-]+)+/,\"\"))){\nfor(x=0,c=r.select(\"h1,h2,h3,strong\").eachText();x<c.size();x++)if(\n(y=c.get(x))!=''&&(u=书.indexOf(y),~u&&u<4))return String(y)}return 书}())||\"请自行修改书名\")\n.replace(/(?!^)[^\\u4e00-\\u9fa5a-zA-Z0-9《》]*(?:笔趣阁|思路客|燃文|小说|漫画|手机)?(?:[.|,_/\\s「『【〖（(\\[\\])）〗】』」。─—-]|(?:人工|机器|电脑)?校正|精校|完[整结]|加料|番外|未删节|简介|全[文本集]|下载|(?:小说|漫画|大全|正版(?:小说|漫画)?|免费|免费小说|免费漫画|免费全[文本]|在线|最[新快]|全部|手机|电脑)(?:全[文本集部]|大全|免费|在线|阅读|下载|章节|小说|更新|漫画|\\.)|([^a-zA-Z0-9])(?:azw|mobi|epub|txt)(?![a-zA-Z0-9])|(?:最全)?(?:章节|目录|列表){2,}|更新章节最快|无广告|(?::顶点)?无弹窗|无防盗|小说网|手打全文|[纯全](?:手打|文字)|\\s*by\\s*(?=[\\u4e00-\\u9fa5]))[\\S\\s]*/i,\"$1\");\n\nif(n[0]==\"《\"&&n[n.length-1]==\"》\")n=n.slice(1,-1);\n\nif($('[property$=author]')){\nx=String(fn.attr(\"content\")).replace(/^作\\s*[者家][\\s:：]*|(?!^)[/／｜|，,\\s][^⚙️]*$/,\"\")\n}else{\nx=m.match(/>\\s*([^>]+?)(?:\\s*<\\/[a-z]+>\\s*|\\s+)著\\s*<|[\\s\\[\\];?!,.()、，；？！。…─（）［］〖〗【】>《》](?:小说|漫画)?作\\s*者(?![^>]+->)(?:[:：\\s〖【（《［\\[\\(]|<[^it\\/][^>]*>|<\\/[^>]+>)+([^\\s<\">,，/／｜|\\)\\]］》）】〗]+)/);\nx=x?x[1]?x[1]:x[2]:$('#author,.author')?String(fn.text()).replace(/(?!^)[/／｜|，,\\s][^⚙️]*$/,\"\"):\"\"}\njava.put(\"x\",x);\n\nc=(fn=r.select(\"meta[property~=category$]\")).size()?String(fn.attr(\"content\"))\n.replace(/(?!^)\\s*[，,./／｜|]\\s*/,\",\"):(fn=m.match(/(?:[\\s\\[\\];?!,.()、，；？！。…─（）［］〖〗【】》]|<[^a/][^>]*>|<\\/[^>]+>)(?:[分大]\\s*类|类\\s*[型别])(?:[:：\\s]|<[^>]+>)+([^\\s<.\"/／｜|>]+)/))&&fn[1];\nif(c)java.put(\"v\",c);\n\nc=(fn=r.select(\"meta[property~=status$]\")).size()?fn.attr(\"content\"):(fn=m.match(/(?:[\\s\\[\\];?!,.()、，；？！。…─（）［］〖〗【】》]|<[^a/][^>]*>|<\\/[^>]+>)状\\s*态(?:[:：\\s]|<[^>]+>)+([^\\s<.\"/／｜|>]+)/))&&fn[1];\nif(c)java.put(\"s\",c);\n\nc=$('meta[property~=latest_chapter_name$]')?fn.attr(\"content\"):(fn=m.match(/>(?:\\s*[更最]\\s*[新近])+(?:\\s*章\\s*节)?(?:[:：\\s\\[]|<[^>]+>)+(?!\\s*(?:-|&gt;)\\s*<|[:：\\s0-9T年月日时分秒*-]{5,}<|[^:：]+[^章\\s]\\s*[:：]\\s*<|更新(?:时间)?[:：])([^<\"/／｜|\\]>]+)/))&&fn[1];\nif(c)java.put(\"z\",c);\n\n正=true;\nif(key.length){\nif(~key.indexOf(\"全\"))java.put(\"全\",1);\nif((\nu=key.match(/[^\\[\\]]+(?=\\])/),\nc=~key.indexOf(\"录\"),\ny=~key.indexOf(\"单\"),\nbaseUrl=u?u[0]:baseUrl,\n(c||u)&&(baseUrl=c||y?(baseUrl=String((c=baseUrl.match(/(.+[^\\d])(\\d+)([^\\d]*)$/))[1]+1+c[3]),\nc=c[2]+'🌕'+c[1]+'🌕'+2+'🌕'+c[3],\nbaseUrl):baseUrl)\n)||~key.indexOf(\"直\")\n)java.put(\"目\",1),正=1;\nif(~key.indexOf(\"录\"))java.put(\"录\",c),正=1;\nif(y||~key.indexOf(\"#\")){\nif(!u){\nif((网=key.match(/(\\d+)#([^#]+)/))\n&&(尾=网[1],网=网[2].match(/^(.*[^\\d])([12])([^/?\\d]*)$/))\n||(尾=r.select('a[href~=\\\\d[^/?\\\\d]*$]:matches(^(尾|末|最后一)[頁页篇章回节節话話]$)')).size()\n&&(网=r.select('a:matches(^2$)')).size()\n&&(网=String(网.first().attr('href')).match(/^(.*[^\\d])([12])([^/?\\d]*)$/))\n&&(尾=String(尾.first().attr('href')).match(/\\d+(?=[^/?\\d]*$)/)[0])){\nc=尾+'🌕'+网[1]+'🌕'+网[2]+'🌕'+网[3]\n}else if((c=r.select('a:matches(^(\\\\d+|…+|\\\\.+)$)')).size()){\nif((网=String(c).split(/<a[^>]+>[^\\d<]+<\\/a>/)).length==2){\nfor(c=网[0],尾=网[1],x=+网[1].match(/>([^<]+)/)[1],网=网[0].match(/href=\"([^\"]*[^\\d])(\\d+)([^/?\\d\"]*)\"[^>]*>([^<]+)<[^<]+$/),j=+网[4],i=+网[2]-j;j<x;j++)c+=\"<a href='\"+网[1]+(j+i)+网[3]+\"'>\"+j+\"</a>\";\nc+=尾}\n}else c=1}\njava.put(\"单\",c),正=false}\nif(~key.indexOf(\"跳\"))java.put(\"跳\",1);\nif(~key.indexOf(\"逆\"))book.setReverseToc(true);\nelse book.setReverseToc(false);\nif((u=~key.indexOf(\"图\"))||~key.indexOf(\"原\"))java.put(\"原\",1);\nif(~key.indexOf(\"动\"))java.put(\"动\",',{\"webView\":true}');\nelse if(~key.indexOf(\"静\"))java.put(\"静\",1);\nif(u||~key.indexOf(\"字\"))java.put(\"文\",u?1:2)\n}else book.setReverseToc(false);\n\nc=(fn=r.select(\"meta[property$=description][content~=\\\\S]\")).size()?fn.get(fn.size()-1).attr(\"content\"):(r.select(':matchesOwn([\\\\u4e00-\\\\u9fa5]{2,})>:not(br),:not(body,br,:matchesOwn([\\\\s\\\\S]{50}),:has(body,:matchesOwn([\\\\s\\\\S]{50})))').remove(),r.select(\":matchesOwn(\\\\S)\").text());\n\njava.put(\"g\",c=String(c).replace(/[\\snbsp;]*(?:&nbsp;|\\s){2,}|\\s*([？！。]+[”」』\\]\\}\\)）｝】〗〕〉]?)\\s*/g,\"$1　　\").replace(/(?=　　)/g,\"\\n\"));\n\nif(c.length&&(c=c.match(/(.{0,2})《([^《》]+)》(.{0,3})/))&&c[3]!=\"作品集\"&&!c[1].match(/新[书作]/)&&(c=c[2],书?~String(书).indexOf(c)&&!~c.indexOf(n):true))n=c;\n\nif(正==1)m=java.ajax(baseUrl);\njava.setContent(m,baseUrl);\n\nif(正){\nzl=java.getStringList(\"[property$=latest_chapter_url]@content||:matches(^最新章节)>a:only-child:not([href~=^$|#|javascript:])@href||a:matches(^正文\\\\s*[\\\\d第一二三四五六七八九十〇零百千]|^[【《]?(\"+n+\")?[\\\\s》】（\\\\u0028:：＿_－-]*(第[\\\\s0〇零]*[一1]\\\\s*[\\\\u4e00-\\\\u9fa5]|([\\\\u4e00-\\\\u9fa5]{2}阅读[（\\\\u0028:：＿_－-]?)?(0*1([）\\\\u0029.、:：_-]|$)|[〇零]*一([）\\\\u0029\\\\s.、:：_-]|$)))):not([href~=(^|[^/])/[vV][iI][pP]|([A-Za-z]\\\\d+|\\\\d[A-Za-z]+|[A-Z][a-z]+|[a-z][A-Z]+){3,}[^/?&_-]*$|^$|#|javascript:|\"+(bas=baseUrl.replace(/\\/+$|\\.[a-zA-Z]+$/,'')).match(/[^?/]+$/)[0].replace(/([*$|?+\\\\\\^\\[\\](){}])/g,'\\\\$1')+\"(?:[/_-]1)?(?:\\\\/|\\\\.[a-zA-Z]+)?$])@href||a:matches(^[^\\\\u4e00-\\\\u9fa5]*(免费|在线|开始|立即|全文|正文|从头)+[试阅]读[^\\\\u4e00-\\\\u9fa5]*$):not([href~=^$|#|javascript:])@href||a:matches(^0*1[^\\\\d]):not([href~=(^|[^/])/[vV][iI][pP]|([A-Za-z]\\\\d+|\\\\d[A-Za-z]+|[A-Z][a-z]+|[a-z][A-Z]+){3,}[^/?&_-]*$|^$|#|javascript:])@href\");\n\nif(zl.size()&&(ck=String(zl.get(0)).match(/^(.*\\/\\/[^/]+)?([/?]?[^/].+[?&/_-])[^&/_-]+\\/?$/)))(jd=ck[1])&&(h=baseUrl.lastIndexOf('/',baseUrl.indexOf(jd.match(/(?:\\.[^.]+){2,}$|[^./]+\\.[^.]+$/)[0])))>8&&(\nq=baseUrl.indexOf(':'),\n(bas=java.get(baseUrl=baseUrl.slice(0,q+2)+baseUrl.slice(h),{})).statusCode()==200&&java.setContent(bas.body(),baseUrl)\n),java.put(\"ck\",ck[2])}\nn",
      "tocUrl": "@js:if(java.get(\"单\")==''){\nif(java.get(\"录\")==java.get(\"目\")){\nr=org.jsoup.Jsoup.parse(result);\n\nscript=r.select(\":matchesOwn(^$)>a[href^=javascript:]:matches(全文|章[節节]|目[錄录]):not(:matches(最新))\");re=false;\n\nif(!script.size()){\nba=(bas=baseUrl.replace(/\\/$|\\.[a-zA-Z]+$/,'')).match(/(http....[^/?]+)(?:([?/])(.*))?$/);b=ba[1];v=ba[3];\n\nr.select(\"a[href~=[^a-z]page[^a-z]]:not(:matches([反正顺順逆倒]序|[全正]文|更多|全部|所有|章[節节]|作品|目[錄录]|列表)),a:not([href~=^(?!//)[^#:]+$|\"+b.split(':')[1]+\"]),:matchesOwn(\\\\S)>a,a[href~=javascript:|#],a:matches(^\\\\S{1,4}$):not(:matches([反正顺順逆倒]序|[阅閱][讀读]|查看|展[开開]|进入|[全正]文|更多|完整|全部|所有|目[錄录]|列表|章[節节]):not(:contains(分类)))\").remove();\n\ny=r.select(\"a[href~=(?i)catalog|contents|chapters|mulu|(^|[^a-z])ml|showchapter|(^|chapter[/_-]?|\"+v.replace(/(.+)((\\/\\d\\d)\\d+)$/,\"$1$3$2\")+\"[/_-])(more|list|all)|sort[/=_-]asc]\");\n\nif(!y.size()){b3='';\n\nif(ba[2]==\"?\"){\nb3='[href~=^[^?]+$],'\n}else if(ba[3]){\nb3=ba[3].replace(/[*$|?+\\\\\\^\\[\\](){}]/g,'\\\\$0');\n\nb3=\"[href~=\"+b3+\"(\\\\.[^.]+|/\\\\d+(\\\\.[^.]+|/)?)?$],[href~=[/?]\"+b3.replace(/[&/_-][^/_-]+$/,'')+\".*$]:not([href~=[/?]\"+b3.replace(/[/_-]/g,'[/_-]')+\"]),\"}\n\ny=r.select(\"a:not(\"+b3+\"[href~=(?i)(^|[^/])[?/].*((book|[^a-z])(info|case)[^a-z]|(cid|buy)[^a-z]|desc|coins|nutrition|review|ticket|update|(app|author|xiazai|down)(?!=))|/chapter|/index/|/d/],:matches((?i)^$|[0-9零〇一二三四五六七八九十百千万、，：；？！。…‘’“”（）()]|[票榜:：.]|推荐|排行|等级|说明|收藏|书评|简介|分[类卷]|简介|作者|手机|软件|应用|安装|客户|移动|pc|电脑|安卓|苹果|下载|最新|ap[kp]|ipa|plx|deb|exe|zip|rar|txt|epub))\")}\n\nif(y.size()){\nys=y.select(\"a[href~=(?i)catalog|contents|list|chapter|mulu|(^|[^a-z])ml|more|read|all]:matches([反正顺順逆倒]序|全文|章[節节]|目[錄录]):not(:matches(阅读)),a[href~=(?i)catalog|contents|chapter|(^|[^a-z])ml|mulu|read]:matches(更多|列表),a[href~=(?i)catalog|contents|list|chapter|mulu|(^|[^a-z])ml|more|all]:matches(^$),a:matches(^[^\\\\u4e00-\\\\u9fa50-9]*([反正顺順逆倒]序|全文(免[費费])?[阅閱][讀读]|(点击|查看|展[开開]|进入|返?回到?)*([全正]文|(更多|完整|全部|所有)?(章[節节]|(作品)?目[錄录])+)+(列表)?(\\\\s*(查看|展开)?更多)?)[^\\\\u4e00-\\\\u9fa50-9]*$)\");zt=false;\n\nif(!ys.size()){\nba=bas.match(/(\\?(?:[^=]+=)+)(.+)$/)||bas.match(/(?:[^/_-][/_-]([^/._-]+))?[/_-]([^/._-]+)(?:\\/index[^/]*)?$/);\n\nif(xi=(id=ba[2]).match(/\\?[^=]+=([^&]+)/)||id.match(/^[^\\d%]*(\\d{2,}|[1-9])$/))id=xi[1];\nif(ba[1])if(xi=ba[1].match(/^[^\\d%]*(\\d{2,})$/))id=/^\\d$/.test(id)||!xi[1].indexOf(id)?xi[1]:\"(\"+id+\"|\"+xi[1]+\")\";\n\nys=y.select(\"[href~=(?i)^((.*//[^/]+/)?[^=.]*[^\\\\d=.])?\"+id+\"([?_-][a-z=_-]*0|\\\\.[^.]+|[/?]([^\\\\d]*|[^/\\\\d]*/?|(list|more|all)([=_-][a-z]*)?\\\\d+[^\\\\d]*)?)?(&.+)?$]:not(:contains(\"+(bs=String(book.name)[0])+\"))\");\n\nif(!ys.size()){zt=true;\nys=y.select(\"[href~=(?i)^((.*//[^/]+/)?[^=.]*[^\\\\d=.])?(\\\\d+/\"+id+\"[_-]\\\\d+[^\\\\d]*|\"+id+\"[_-][a-z_-]*1[^\\\\d]*)$]:not(:matches(阅读|\"+bs+\"))\")}}\n\nif(ys.size()){\nif((re=ys.select(\"[href~=(/|^)[^.]+$]\")).size())ys=re;\nre=String(ys.first().attr(\"href\"));\n\nfor(x=1;x<ys.size();x++)if((xs=String(ys.get(x).attr(\"href\"))).length>re.length)re=xs;\n\nif(/(?:[2-9]\\d*|1\\d+)[^\\d]*$/.test(re)){\nif(!zt&&(q=re.match(/^(.*[^/])?[&?/].*(?:catalog(ue)?|contents|(?:show)?chapters?|mulu|ml|more|all|list|page)(?:[=_-][a-z]*)?\\d+[^\\d]*$/i))&&v==(q[1]||'').replace(/^http....[^/?]+/,''))zt=true;\nif(zt)re=re.replace(/\\d+(?=[^\\d]*$)/,\"☯1\")}\n\n}}}\n\nre=String(!re?baseUrl:(java.put(\"基\",baseUrl),/^\\/[^/]/.test(re)?b+re:/^https?:/.test(re)?re:/^\\/\\//.test(re)?b.split('//')[0]+re:String(baseUrl).replace(/[^/]*$/,'')+re))}else re=baseUrl;\n\nr=re.replace(/(?:[☯?&/_-][^\\d?/&_-]*[01])+[^\\d]*$/,\"\");\njava.put(\"ba\",r);\nre=re.replace(\"☯\",\"\")}else re=baseUrl;\n\njava.get(\"跳\")==1||re==baseUrl&&/,/.test(book.bookUrl)?re+',{\"webView\":true}':re",
      "wordCount": "@get:{s}##[·]*"
    },
    "ruleContent": {
      "content": "@js:dt=lr='';c=1;动=java.get(\"动\");\nif(动!=''&&!~baseUrl.indexOf(\",\")){\nresult=String(java.ajax(baseUrl+动))\n}else if(java.get(\"静\")==动)c=dt=2;\n\nr=org.jsoup.Jsoup.parse(r1=result.replace(/&nbsp;/g,' '));\n查=i=java.get(\"序\");\n\nif(java.get(\"文\")==1){for(;c;c--){\nd=[\"img[data-src],img[src~=[^a-z]cid[^a-z]]\"\n,\"img:not([src~=(?i)^$|^javascript:|\\\\.gif|\\\\.png|[^a-z](cover|css|ic(on)?|load(ing|ed)?)[^a-z]])\"\n,\"img[src~=(?i)\\\\.png]:not([src~=(?i)[^a-z](cover|css|ic(on)?|load(ing|ed)?)[^a-z]])\"\n,'img[src~=(?i)\\\\.gif]:not([src~=(?i)[^a-z](cover|css|ic(on)?|load(ing|ed)?)[^a-z]])'];\n\nif(!(查!=\"\"&&(查!=-1&&((lr=r.select(d[查])).size(),true)))){\n$=it=>(lr=r.select(it)).size();\nif($(d[i=0])||$(d[i=1])||$(d[i=2])||false)break;\n\nif(c==2){dt=1;\nr=org.jsoup.Jsoup.parse(java.ajax(baseUrl+',{\"webView\":true}'))\n}else i=$(d[3])?3:-1}}\nif(i==0)lr=String(lr).replace(/(?:src=['\"][^'\"]+['\"] +)?data-/g,'');\nif(查==\"\")book.putVariable(\"序\",i);\n\n}else{\nsc=java.get(\"文\")==2?\n'[style~=(?i)text-align:center|(^| |;)color: *(rgb.(?!255[ ,]+255[ ,]+255)[\\\\d, ]*2\\\\d\\\\d|#(?=[a-f\\\\d]{3}([^a-f\\\\d]|$))(?!fff)[a-f\\\\d]*[d-f]|#(?=[a-f\\\\d]{4})(?!ffffff)([\\\\da-f]{2})*[d-f][\\\\da-f]|green|red|blue|yellow|purple|pink|brown)],script,noscript,style,header,footer,[class~=^foot|^head],[id~=^foot|^head],:has(>a):not(:has(p:matchesOwn(\\\\S),br)),a>*,:has(a):not(:matchesOwn([\\\\S\\\\s]{50,}),:has(:matchesOwn([\\\\S\\\\s]{50,}))),:matchesOwn([\\\\s\\\\S]{50})>:not(br,a,:matchesOwn([\\\\s\\\\S]{50})),:not(br,p,a,:matches([\\\\s\\\\S]{200}),:has(p,br,div:matchesOwn(，|。)+div:matchesOwn(，|。)),:has(p,br,div:matchesOwn(，|。)+div:matchesOwn(，|。)) :matchesOwn(\\\\S):not(:not(p,div,span:has(br))))'\n:\n'[style~=(?i)text-align:center|(^| |;)color: *(rgb.(?!255[ ,]+255[ ,]+255)[\\\\d, ]*2\\\\d\\\\d|#(?=[a-f\\\\d]{3}([^a-f\\\\d]|$))(?!fff)[a-f\\\\d]*[d-f]|#(?=[a-f\\\\d]{4})(?!ffffff)([\\\\da-f]{2})*[d-f][\\\\da-f]|green|red|blue|yellow|purple|pink|brown)],script,noscript,style,header,footer,[class~=^foot|^head],[id~=^foot|^head],:has(>a):not(:has(p:matchesOwn(\\\\S),br,img:not([src~=(?i)^$|^javascript:|[^a-z](css|ic(on)?|load(ing|ed)?)[^a-z]|/\\\\d+s\\\\.jpg]))),img[src~=(?i)^$|^javascript:|[^a-z](css|ic(on)?|load(ing|ed)?)[^a-z]|/\\\\d+s\\\\.jpg],a:not(:matches(^$)>img)>*,:has(a):not(img,:matchesOwn([\\\\S\\\\s]{50,}),:has(img,:matchesOwn([\\\\S\\\\s]{50,}))),:matchesOwn([\\\\s\\\\S]{50})>:not(img,br,a,:has(img),:matchesOwn([\\\\s\\\\S]{50})),:not(img,br,p,a,:matches([\\\\s\\\\S]{200}),:has(p,br,img,div:matchesOwn(，|。)+div:matchesOwn(，|。)),:has(img,p,br,div:matchesOwn(，|。)+div:matchesOwn(，|。)) :matchesOwn(\\\\S):not(:not(p,div,span:has(br))))';\n\nd=[\":matchesOwn(\\\\S):has(br):has(:matchesOwn(\\\\S):has(br))\"\n,\":matchesOwn(\\\\S):has(br)\"\n,\":has(>:matchesOwn(\\\\S):not(:has(*))+:matchesOwn(\\\\S):not(:has(*)))\"\n,\":has(>:has(>p:only-child:matchesOwn(\\\\S):not(:has(*)))+:has(>p:only-child:matchesOwn(\\\\S):not(:has(*))))\"\n,\"img\"\n,\":matchesOwn(\\\\S)\"];\n\ntry{for(查=i!=''?i:java.get(\"元\");c;c--){\n\nif(!(c>1&&(String(r.text()).length<400||r.select(':matchesOwn(内容未加载完成|关闭(阅读|小说)模式)').size()))){\nr.select(sc).remove();\n\nif(!(查!=\"\"&&(lr=r.select(i?d[i==6?5:i]:查)).size()))for(i=0;i<6&&(lr=r.select(d[i]),i==4&&c==1?!lr.size():String(lr.text()).length<200);i++);\nif(c<2||i<6)break;}\n\nr=org.jsoup.Jsoup.parse(r2=String(java.ajax(baseUrl+',{\"webView\":true}')).replace(/(<[a-z]+)&nbsp;/g,'$1 '));\ndt=r1.length==r2.length?2:1}\n\nfor(c=lr.first(),v=1;v<lr.size();v++)if(lr.get(v).parents().contains(c)){\nlr.remove(v);\nv--}else c=lr.get(v);\n\nlr=String((c=lr.size()==2&&i<4)?String(lr.first().text()).length>String(lr.get(1).text()).length?lr.first():lr.get(1):(c=lr.size()==1)?lr.first():lr);\n\nif(查==\"\"){\nif(c&&(查=lr.match(/<([a-z]+) ([^>]+)>/))&&(查[2]=查[2].match(/(?:id|class|style)=(?:\"[^\"]+\"|'[^']+')|[^= ]+(?==\"[^\"]+\"|'[^']+')/g))){\nbook.putVariable(\"元\",查[1]+'['+查[2].join('][')+']')\n}else book.putVariable(\"序\",i)}\n\nlr=lr.replace(/<([a-z]+)[^>]*\"-\\d+\"[^>]*>[^<]+<\\/\\1>|[^<>]*<a[^<]+<\\/a>[^<]*|&lt[; ]?\\/?[a-z]+(?= |\\/?&gt)(?:[ a-z=-]+|\"[^\"]+\"|'[^']+')*\\/?&gt[; ]?|[☯📑⚙️🌕︴]/g,\"\").replace(/\\s+(?:\\s|(?:(?:(?:n?b)?s)?p)?;)/g,\"　　\");\n\nif(java.get(\"原\")!=1)lr=(!lr.indexOf(\"　　\")?lr.replace(/>(?!　　|\\s*(?:(?:(?:n?b)?s)?p)?;)\\s*(?=[^\\s<>])/g,\">︴\"):lr)\n.replace(/((?:[〖【『「（《〈〔［\\[(][^〖【『「（《〈〔［\\[()］〕〉》）」』】〗\\]]*[)］〕〉》）」』】〗\\]]\\s*)*(?:第?\\s*[一二三四五六七八九十百千万〇零0-9]+\\s*[章节回話话：:.．,，、]*\\s*)?{{\nn=(t=title.match(/\\S+$/)[0].replace(/[*$|?+\\\\\\^\\[\\](){}/]/g,\".?\")).replace(/^(正文[^\\u4e00-\\u9fa5A-Za-z]*|第?[一二三四五六七八九十百千万〇零0-9]+[章节回話话\\s：:.．,，、]*)+/,\"\"),n!=t&&/\\S/.test(n)?\"(?:第?\\\\s*[一二三四五六七八九十百千万〇零0-9]+\\\\s*[章节回話话：:.．,，、]*\\\\s*\"+n+\"|\"+t+\")\":t\n}}(?:\\s*[〖【『「（《〈〔［\\[(][^〖【『「（《〈〔［\\[()］〕〉》）」』】〗\\]]*[)］〕〉》）」』】〗\\]])*)/g,\"⚙️$1⚙️\")+\"📑\"\n\n}catch(e){}}\nif(dt)book.putVariable(dt==1?\"动\":\"静\",',{\"webView\":true}');lr",
      "imageDecode": "JavaScript",
      "imageStyle": "FULL",
      "nextContentUrl": "@js:\nif((r=java.getStringList((nx=java.get(\"next\"))+\"a:matches(第二[頁页]|下[一\\\\s]*[頁页]):not([href~=^javascript:|^#])@href||a:matches(下[一\\\\s]*[篇章回节節话話]):not([href~=^javascript:|^#])@href||a[href~=[_-]\\\\d+(/|\\\\.[a-z]+)?$]:has(i,img):not(:matches(\\\\S),[href~=^javascript:|^#])@href\")).size()){\nif(~String(book.tocUrl+(nextChapterUrl||'')).indexOf(r=String(r.get(r.size()-1)))||~r.indexOf(nextChapterUrl||String(book.tocUrl).replace(/.+(?=_\\d+\\/$)/,'')))r=null\n}else r=null;\n\nif(r){\nif(nx!='')chapter.putVariable(\"next\",(n=r.replace(/\\d+(?=[^\\d]*$)/,it=>+it+1))==r?'':'a[href=\"'+n+'\"]@href||');\nr+java.get(\"动\")\n}",
      "replaceRegex": "@js:if(java.get(\"原\")==1){result}else{\nresult=result.replace(/⚙️([^\\u4e00-\\u9fa5⚙️]+|[零〇一二三四五六七八九十百千万\\s]+|(?!第[零〇一二三四五六七八九十])[\\u4e00-\\u9fa5]+)⚙️/g,'$1').split('📑');\nl=result.length-1;\nwhile(l)if(r=result[--l].match(/^(\\n+(?:[^\\n]{1,30}\\n+){1,3})([\\S\\s]+)$/))result[l]=r[1]+r[2].replace(/⚙️/g,'');\nresult.join('📑')\n.replace(/—/g,\"─\")\n.replace(/[·۰•・]/g,\"・\")\n.replace(/\\s*(?:︴[^\\n　]+\\s+)*📑\\s*|^\\s*(︴[^\\n　]+\\s+)*|\\s*(?:　　|\\n)(?:[\\s&#a-zA-Z0-9]*;)?[\\s　?]*/g,\"☯\")\n.replace(/(?:︴[^☯]*☯)+(?=︴)|☯(?:温馨|[^a-zA-Z0-9\\u4e00-\\u9fa5☯]+)提示.?[:：][^☯]+|☯[^☯]+字体不会安装.?请百度[^☯]+|☯.{0,2}正版订阅在阅文旗下的起点和QQ书城，可以第一时间看到最新章节.{0,2}(?=☯)|︴\\s*第?[〖【『「（《〈〔［｛\\[{(][^☯]+(?=☯)|☯第\\s*[（(][^（()）]+[)）][頁页](?=☯)|[^☯]*(?:关注|[微vVＶｖ][^\\u4e00-\\u9fa5A-Za-z0-9]*[信xXｘＸ]|公[^\\u4e00-\\u9fa5]*众[^\\u4e00-\\u9fa5]*号){2,}[^☯]*|(?:&#?[a-z0-9]*;?)+(?=;|☯);*|read[sx][；;?？]+/g,\"\")\n.replace(/\\s+/g,\" \")\n.replace(/☯[ ☯]*/g,\"\\n\")\n.replace(/(\\n[〖【『「（《〈〔［｛\\[{(]?)([pPＰｐ][SsｓＳ]+(?=[ ：:;；，,、。.─\\d\\u4e00-\\u9fa5])[^\\n]+)/g,\"$1🌕$2\")\n.replace(/\\[\\[\\[[^\\[\\]]+http:file2.qidian.comchapters(.{5,6})(..)([^\\[\\]]{35})\\]\\]\\]/g,'<img src=\"http://file2.qidian.com/chapters/$1/$2/$3\">')\n.replace(/(<img )[^>]*(src=\"[^\"]+\")[^>]*(>)|((?: ?[＋+－-]?[0-9０-９]+(?:[．.／/][0-9０-９]+)?[％%:：]?[a-zA-Z]*)+ ?|[ _＿－-]?[a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９]+)/g,\"$1$2$3☯$4☯\")\n.replace(/☯[・。](?=☯)/g,\"☯.\")\n.replace(/,\\n/g,\"，\")\n.replace(/!(?=\\n)/g,\"！\")\n.replace(/\\?(?=\\n)/g,\"？\")\n.replace(/(<[^<]+)☯☯/g,\"⚙️$1⚙️\\n\")\n.replace(/(?:\\n[^āáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ\\u4e00-\\u9fa5\\n〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗、，：；？！。…─🌕︴\\n]+|([。？！…”』」】〗])[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗、，：；？！。…─☯︴\\n]+[\\u4e00-\\u9fa5]+)?[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗、，：；？！。…─⚙️☯︴\\n]+(?=\\n)|[^☯!\"'(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛｝］〕〉）＞’”》」』】〗]*☯([a-zA-ZＡ-Ｚａ-ｚ]*[āáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ][a-zA-ZＡ-Ｚａ-ｚ]*)☯[^☯!\"'(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛｝］〕〉）＞’”》」』】〗]*/g,\"$1$2\")\n.replace(/[^!\"'(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜<（〈〔［｛({\\[\\]})｝］〕〉）>＞’”》」』】〗︴🌕]*(?:☯[^.．!(),\\n\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗⚙️]+|([^☯!(),\\na-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘<＜（〈〔［｛({\\[\\]})｝］〕〉）＞>’”》」』】〗⚙️])(?!\\1)|☯(?=[^☯!(),\\na-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗][!(),\\s\\u4e00-\\u9fa5、，：；？！。…─〖【『「《“‘＜（〈〔［｛({\\[\\]})｝］〕〉）＞’”》」』】〗])|[〖【『「（《〈〔［｛\\[{(][^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[)｝］〕〉》）」』】〗\\]}]){4,}|[^；;％%～~?？!！\"'”’。…─\\na-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[〖【『「（《〈〔［｛\\[{(][^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[)｝］〕〉》）」』】〗\\]}](?:[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+(?=[)｝］〕〉》）」』】〗\\]}]))?/g,\"📑\")\n.replace(/([；;％%～~?？!！\"'”’。…─])📑(?=[)｝］〕〉》）」』】〗\\]}])/g,'$1')\n.replace(/(?:([\\n。？！])[^\\n。？！]{1,10})?[〖【『「（《〈〔［｛\\[{(][^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*(?:☯[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]☯|📑|🌕)[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[｝］〕〉》）」』】〗\\]})](?:[^。]{0,5}(?:[〖【『「（《〈〔［｛\\[{(][^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*(?:☯[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]☯|📑)[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]*[｝］〕〉》）」』】〗\\]})]|[^📑!,()\\s\\u4e00-\\u9fa5、，：；？！。…─‘’“”（）《》〖〗【】]+))*(?:(?:[^\\n]{1,10}|(?:[\\u4e00-\\u9fa5]{0,5}[，、])*[\\u4e00-\\u9fa5]+[！。]?)(?=\\n))?/g,\"$1\")\n.replace(/((?:[请請][记記]住)?[^⚙️🌕📑︴*\\n(),\\u4e00-\\u9fa5、，：；？！。…─「」‘’“”（）《》〖〗【】]*(?:(?:[^⚙️🌕📑︴*\\n(),\\u4e00-\\u9fa5、：，；？！。…─「」‘’“”（）《》〖〗【】]+[*(), \\u4e00-\\u9fa5、，:：；？！。…─「」‘’“”（）《》〖〗【】]{1,3})*[^*︴📑☯⚙️🌕\\s&;(),āáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜa-zA-ZＡ-Ｚａ-ｚ0-9０-９\\u4e00-\\u9fa5、,，:：;；?？!！。…～~─'\"‘’“”【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}％%・/／＝=_＿.．＋+－-]+(?!(?:[^>]+>)?⚙️)|☯[^☯\\n]+☯\\.☯[^☯\\n]+☯|本[文书](?:首发|来自)|(?:章节不完整.?|完整章节)?请.{2,6}(?:搜索|百度|引擎|关键[词字])+|(?:[阅閱][讀读]|访问|訪問|[網网地][站址]|链接|鏈接|[\\u4e00-\\u9fa50-9a-zA-Z]{0,4}(?:文学|中文|[網网]))+[:：]|[\\u4e00-\\u9fa50-9a-zA-Z]{0,6}(?:[網网地][站址]|链接|鏈接)为|.{2,4}文[学學][網网]|[请請].{2,4}收藏(?:.{0,2}推[荐薦])?|(?:天才)一秒[記记]住|，?請?訪問|(?:[更最][快新]|[快高]速|热门|(?:[阅閱][讀读])?完整|本|(?:官[網网]|本站).{0,2})(?:章[節节]|小说|更新|[網网地][址站][:：]?|快速)|更新(?:速度)?[最更]?快|(?:(?:无错)?小说|正版|免费|全[文本]|在线|访问|訪問|txt|TXT|继续|各种|推[荐薦]|收藏|分享|交流|你?喜欢的)+(?:全文|免费|在线|[阅閱]?[讀读]|下载|章[節节]|小说|好书)|章[節节](?:目录|列表)|小说[網网](?:更新)?|手打全文|[纯全](?:手打|文字)|手机看书|手机版|笔趣阁|(?:本站|[網网]站|站内|看)?无(?:任何)?(?:广告|弹窗|防盗)(?:章节)?|不弹窗|(?:(?:請|请|或者?)?(?:訪問|访问|[電电手][腦脑机機]|[網网][址站]|用[户戶]|浏览|瀏覽|閱讀|阅读|看小说|看漫画)){2,}|看小说|看漫画|(?:用[^\\n]{2,6})?(?:[追看]书|小说)(?:就用|软件|☯[^☯]+☯)，?|用[^\\n]{2,6}[追看]书|(?:..的)?(?:最佳选择|阅读体验)|(?:推[荐薦]|收藏|分享)(?:本站|我们)|小说..版|文章质量更好|谢谢各位(?:读者|书友)支持|水印广告测试|本章未完|请翻页|点击下一页|领.{0,2}红包|同步更新《[^《》]+》|关注[〖【『「（《〈〔［｛\\[{(][^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+[)｝］〕〉》）」』】〗\\]}])(?:[* (),\\u4e00-\\u9fa5、，：；？！。…─‘’“”（）《》〖〗【】]{0,3}[^⚙️📑*\\n(),\\u4e00-\\u9fa5、，：；？！。…─「」‘’“”（）《》〖〗【】]+|[….。!！]+(?=\\n))*|⚙️(?!<)[^⚙️\\n]+⚙️)/g,\"\\n⚙️$1⚙️\\n\")\n.replace(/⚙️(<[^<>]+>)⚙️\\n|[〖【『「（《〈〔［｛\\[{(](?:[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]{0,3}\\n⚙️(?!\\s*\\S\\s*⚙️).+⚙️\\n*)+[^〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]{0,3}[)｝］〕〉》）」』】〗\\]}]|(🌕)\\s*⚙️|⚙️\\n[^\\u4e00-\\u9fa5]{0,5}\\n⚙️|\\n⚙️\\s*(\\S)\\s*⚙️\\n(?![^⚙️]{1,3}⚙️)|(⚙️\\n)|([，、；])[\\s,，。、…:：;；?？!！`’]*[,，。、…:：;；?？!！`’](?!⚙️)|\\n[\\s,，。、…:：;；?？!！`’]*(?=[,，。、:：;；?？!！])|([：？！。…─])(?:[^⚙️☯a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n…─“‘’”〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+(?=\\n)|[^⚙️☯a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n…─“‘’”〖【『「（《〈〔［｛\\[{()｝］〕〉》）」』】〗\\]}]+)|☯/g,\"$1$2$3$4$5$6\")\n.replace(/([)）？！?!…」』”\\s。])(?:[^\\n（(🌕)）”』」’。]{0,5}(?:(?:\\n⚙️.+⚙️\\n|[^（()）\\n”』」。]{0,5}📑)[^（()）\\n。]{0,5}(?:\\n⚙️.+⚙️(?:\\n(?=\\n⚙️|[^（()）\\n]{1,5}\\n))?|[^（()）\\n。]{0,5}📑(?:[^📑]{1,5}(?=\\n⚙️))?)+(?:[^（()）\\n]{1,5}(?=\\n))?|(?:(?:(?:\\n⚙️.+⚙️\\n|[^（()）\\n。]{0,5}📑)[^（()）\\n]{0,5}){2,}|[^（(🌕)）”』」’\\n。]{0,5}(?:(?:請|关键[词字]|[電电手][腦機]|用戶|瀏覽|[阅閱]讀|推[薦荐]|收藏|分享|文章质量|谢谢(各位|支持|大家)|水印|翻页|点击|下[一\\s]*[页頁篇章回节節话話]|免费|热门|官网|正版|在线|同步|下载|文学|中文|章节|[本网][站址]|站内|小说|更新|无错|[本全][文本章]|首发|广个?告|弹窗|防盗|访问|訪問|txt|TXT|读者|书友|百度|[插说]一?[下句]话?，[\\u4e00-\\u9fa5]{0,5})[^（()）\\n]{0,5})*(?:📑|\\n⚙️[^\\n]+⚙️\\n)[^（()）\\n]{0,5}(?:(?:請|关键[词字]|[電电手][腦機]|用戶|瀏覽|[阅閱]讀|推[薦荐]|收藏|分享|文章质量|谢谢(各位|支持|大家)|水印|翻页|点击|下[一\\s]*[页頁篇章回节節话話]|免费|热门|官网|正版|在线|下载|同步|文学|中文|章节|[本网][站址]|站内|小说|更新|无错|[本全][文本章]|首发|广个?告|弹窗|防盗|访问|訪問|txt|TXT|读者|书友|百度)[^（()）\\n]{0,5})*|[^（(🌕)）\\n”』」’。]{0,3}\\n⚙️.+⚙️\\n[^（()）\\n。]{0,3})(?:[\\u4e00-\\u9fa5]+[！。]?|[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n]+)?(?=\\n)))+|\\n⚙️[^\\u4e00-\\u9fa5]+⚙️\\n|📑|\\s*︴\\s*|\\n?⚙️\\n?|\\n[^a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n]{2,}\\n[^🌕a-zA-ZＡ-Ｚａ-ｚāáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ0-9０-９\\u4e00-\\u9fa5\\n“《‘【〖『「]*/g,\"$1\")\n.replace(/(?:(?:\\n🌕[^\\n]*)+(?:\\n+[^\\n]+){0,4}|\\n(?:[(（{｛][^(（<{｛｝}>）)]*(?:(?:[(（{｛][^(（<{｛｝}>）)]*[）)｝}])[^(（<{｛｝}>）)]*)*[）)｝}]?\\s*)+|[^\\n]*起点(?:原创|中文)[^\\n]*|[〖【『「（《〈〔［｛\\[{(]?未完待续[^\\n]*)[^\\u4e00-\\u9fa5<>]*$|^\\s*(?:(?:[^\\n]+\\n+){0,4}(?:🌕[^\\n]*\\n?)+|(?:[(（{｛][^(（<{｛｝}>）)]*(?:(?:[(（{｛][^(（<{｛｝}>）)]*[）)｝}])[^(（<{｛｝}>）)]*)*[）)｝}]?\\s*)+|，[^\\n]+)\\n|(?:^|\\n)[^a-z0-9A-Z\\u4e00-\\u9fa5]*(?=\\n)|🌕|\\n\\s*[a-zA-Z]+\\s*$/g,\"\")}"
    },
    "ruleExplore": {
      "author": "object.0@text",
      "bookList": "li",
      "bookUrl": "li@a@href",
      "coverUrl": "@js:(s=java.getStringList('img[alt*='+book.name+']@src||meta[property$=image]@content||img[src~=(cover|file|article)[^a-z]|/\\\\d+[/_-]\\\\d+(s?\\\\.|$)]@src||img[data-src~=\\\\S]@data-src||img[src*=/img]@src||img[src~=^(data|https?):|^[^:]+/]@src')).size()?/^data:/.test(s=s.get(0))?java.base64Encode(s):s:null",
      "intro": "class.book-intro@text",
      "kind": "object.1@text",
      "lastChapter": "",
      "name": "h4@text",
      "wordCount": "span.-1@text"
    },
    "ruleSearch": {
      "author": "class.book-survey@a.0@text",
      "bookList": "class.list-item",
      "bookUrl": "class.list-item@a@href",
      "checkKeyWord": "龙藏",
      "coverUrl": "",
      "intro": "class.book-intro@text",
      "kind": "object.1||span@text##[·]*",
      "name": "h4@text",
      "wordCount": "span.-2@text##[·]*"
    },
    "ruleToc": {
      "chapterList": "@js:if(java.get(\"单\")==''){\nsrc=org.jsoup.Jsoup.parse(src);\n\nif((result=java.get(\"录\"))==\"\"){if(页=(result=src.select('a[href~=\\\\S]:matches(下[一\\\\s]*[页頁]|下[一二三四五六七八九十百千万〇零0-9]{2,}章):not([href~=^#|javascript:])')).size())result=result.first().attr('href')\n}else{网=String(result).split(\"🌕\");\nfor(i=3,页=+网[0],result=网[1]+2+网[3];i<=页;i++)result+='\\n'+网[1]+i+网[3];\nresult=String(result)}\n\nif(页)java.put(\"页\",/,/.test(book.tocUrl)?result.split('\\n').join(',{\"webView\":true}\\n')+',{\"webView\":true}':result);\n\n嗅=()=>String(src).match(/[\\[(]([\"'])<[a-z]+[ >][^\\[\\]()]+<\\/a>(?:[^\\[\\],()]*<\\/[a-z]+>)?\\1[\\])]/);\n转=it=>it.replace(/\\\\[Uu]([0-9a-zA-Z]{4})/g,(_,it)=>String.fromCharCode(parseInt('0x'+it)));\n兜=()=>src.select(':matchesOwn(^$|[0-9〇一二三四五六七八九十])>a:matches(\\\\S):not(:has(*>*>:not(span)),[href~=(?i)passport|\\\\.aspx$|\\\\.php$|^https://[^/]+(/|index\\\\.[a-z]+)?$|(^|[^/])[?/].*((book|[^a-z])(info|case|page|reg|Game|Play)[^a-z]|buy[^a-z]|SystemInfo|hot|sort|desc|asc|top|coins|nutrition|review|ticket|update|(app|author|xiazai|down)(?!=))|/list\\\\d*([/_-][^/_-]+/?)?$|\\\\d+_\\\\d+_\\\\d+|target=iframe|https%],:matches((?i)^((点击|软件|应用|安装|客户|移动|手机|电脑|安卓|苹果|下载|阅读|pc|ap[kp]|ipa|plx|deb|exe|zip|rar|txt|epub)[\\\\s.端版]*(?=$|点击|软件|应用|安装|客户|移动|手机|电脑|安卓|苹果|下载|阅读|pc|ap[kp]|ipa|plx|deb|exe|zip|rar|txt|epub)|[A-Za-z0-9\\\\u4e00-\\\\u9fa5]?返回.*(简介|书页|目录)[A-Za-z0-9\\\\u4e00-\\\\u9fa5]?|[<>-]+|\\\\d+-\\\\d+章|书页|目录|简介|[上下首尾]([一\\\\s]*[页頁]|[\\\\s\\\\d零〇一二三四五六七八九十百]*章)|[↑\\\\[]?[倒正反逆顺順]序[↓\\\\]]?)$))');\n\nif((zt=java.get(\"嗅\"))!=''){\nif(zt>0&&(嗅=嗅())){\nsrc=嗅[0];\nif(zt==2)src=转(src);\nsrc=org.jsoup.Jsoup.parse(src)}\nsrc.select(java.get(\"除\")).remove();\nif(java.get(\"兜\")==1)src=兜();\nsrc=src.select(java.get(\"查\"))\n\nif(!页){for(首=String(java.get(\"首\")).split('\\n'),ss=src.size(),i=0;i<ss;i++)if(首[i]!=src.get(i)){\nif(i>1)src.subList(1,i).clear();break;}}\n\n}else{\nbook.putVariable(\"除\",除=\"meta,link,a:has(img),\"+((zt=java.get(\"全\")!=1)?\"a[href$=\"+String(book.tocUrl).replace(/,\\{\"webView\":true\\}|^.{8}[^/]*/g,'')+\"],\":\"\")+(基=String(java.get(\"基\")),基==''?'':\"a[href$=\"+基.replace(/^.{8}[^/]*/,'')+\"],\")+\"a[href~=javascript:|#|[a-z]+[A-Z][a-z]+Id[=_-]|[^/][/?&]sub[A-Z]|action=list],a:matches(^$|最新章节$|^[^\\\\u4e00-\\\\u9fa5A-Z0-9]*(正文|.{0,2}书架|(免费|在线|开始|立即|全文|从头|点击|正文)+[试阅]读|[^\\\\s\\\\d外内楔前后卷篇章]*(更新调整|[两一二三四五六七八九十]+连更|作者[:：给要有]|双倍月票|感言|推书|推[a-z0-9A-Z_\\\\u4e00-\\\\u9fa5-]+书|[求个请投点下张](月?票|收藏|订阅|推荐)|(感谢|作者)[^\\\\s]*(读者|书友|大家|各位)|[书点]评[^\\\\s]*活动|[没有空]更新|没时间更新|请个?假|关于本书|关于更新|打赏名单|起点活动)[^\\\\s]*)[^\\\\u4e00-\\\\u9fa5A-Z0-9]*$)\");\n\nbook.putVariable(\"嗅\",(基=嗅())?(src=org.jsoup.Jsoup.parse((zt=/\\\\[Uu]([0-9a-zA-Z]{4})/.test(基=基[0]))?转(基):基),zt)?2:1:0);\nsrc.select(除).remove();\n\nif(zt=java.get(\"全\")!=1){\n找=ll=null;\n$=it=>(qc=ll,查=找,ll=src.select(找=it)).size()>14&&(查=it,src=re=ll);\n\nif(!(((ck=java.get(\"ck\"))!=\"\"&&$(\"[href~=\"+ck+\"(?!index(/|\\.[a-z]+)?$)[^.?/_-][^&/_-]*/?$|/[vV][iI][pP][_-]?([Rr]ead|[Cc]hapter|action=article)|([A-Za-z]\\\\d+|\\\\d[A-Za-z]+|[A-Z][a-z]+|[a-z][A-Z]+){3,}[^/?&]*$]\"))||$(\"[href~=^[a-z0-9]+(/|\\\\.[^./]+)?$]\"))){\nif(qc&&qc.size()>ll.size())找=查,ll=qc;\n\n$=it=>(re=src.select(it)).size()&&(查=it,src=re);\n\nif(!($(\"[data-cid]\")||$(\"[href~=(?i)(^|[/_-])(chapter|read)+([_-]?id)?/[^/_-]+[/_-][^/_-]+]\")||$(\"[href~=(?i)(^|[&?/_-](book|novel|comic|manhua|mh?)?)(chapter|read)+([_-]?id)?[?/=]]\")||$(\"[href~=(?i)[&?/_-]cid[&?/_=-]]\")||$(\"[data-href]\"))){\nsrc=兜();\nbook.putVariable(\"兜\",1);\n\nba=(ba=String(java.get(\"ba\"))).match(/(\\?(?:[^=]+=)+)(.+)$/)||ba.match(/(?:[^/_-][/_-]([^/._-]+))?[/_-]([^/._-]+)(?:\\/|\\/index[^/]*|\\.[^/.]+)?$/);\n\nif(xi=(id=ba[2]).match(/\\?[^=]+=([^&]+)/)||id.match(/^[^\\d%]*(\\d{2,}|[1-9])$/)||ba[1]&&ba[1].match(/^[^\\d%]*(\\d{2,})$/))id=xi[1];\n\n$(\"[href~=([^\\\\d]|^)\"+id+\"[/_&-][^\\\\d]*\\\\d+]:not([href~=\"+id+\"[^\\\\d]*$]),[href~=/[vV][iI][pP]|([A-Za-z]\\\\d+|\\\\d[a-zA-Z]+|[A-Z][a-z]+|[a-z][A-Z]+){3,}[^/?]*$|([^\\\\d]|^)\"+id+\"[/_&-][^\\\\d]*\"+id+\"(/|\\\\.[^.]+|&.+)?$]\")||$(\"[title]\")||$(\"[href~=/view/\\\\d+\\\\.[a-zA-Z]+$]\")}\nif(re.size()<ll.size())查=找,src=ll}}\n\nif(!(zt&&re.size()))src=src.select('a'),查='a';\nif(查)book.putVariable(\"查\",查);\nif(页)java.put(\"首\",src)}\n\nsrc}else if((list=java.get(\"单\"))!=1){\n\nif((网=String(list).split(\"🌕\")).length>1){\nfor(i=+网[2],x=+网[0],j=2,list=\"<a href='\"+baseUrl+\"'>正文1</a>\";i<=x;i++,j++)list+=\"<a href='\"+网[1]+i+网[3]+\"'>正文\"+j+\"</a>\"}\n\norg.jsoup.Jsoup.parse(list).select('a')\n\n}else org.jsoup.Jsoup.parse(\"<a href='\"+baseUrl+\"'>正文</a>\").select('a')",
      "chapterName": "text##[APP免费]*",
      "chapterUrl": "href@js:chapter.putVariable(\"next\",'a[href~=(?:^|[?/])'+(r=result.trim().replace(/([*$|?+(){}\\[\\]\\^\\\\])/g,'\\\\$1')).match(/[^?/=.]+(?:=(?![01]$)[^=]+)*(?=\\/*$|\\.[^?/.]+$|=[01]$)/)[0]+'[=/_-]2(?:\\\\/|\\\\.[^?/.]+)? *$]@href||a[href~=(?:^|[?/])'+r.replace(/\\d+(?=[^\\d]*$)/,it=>+it+1)+' *$]@href||');result+java.get(\"动\")",
      "isPay": "",
      "isVip": "",
      "nextTocUrl": "@js:java.get(\"页\")",
      "updateTime": "class.charpter-time@text"
    },
    "searchUrl": "https://ubook.reader.qq.com/so/{{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "顶点小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.terry-haass.com",
    "customButton": false,
    "customOrder": 717,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻魔法::/dingdiansort_1_{{page}}.html\n武侠修真::/dingdiansort_2_{{page}}.html\n都市言情::/dingdiansort_3_{{page}}.html\n历史军事::/dingdiansort_4_{{page}}.html\n网游竞技::/dingdiansort_5_{{page}}.html\n科幻灵异::/dingdiansort_6_{{page}}.html\n侦探推理::/dingdiansort_7_{{page}}.html\n女生言情::/dingdiansort_8_{{page}}.html\n其他小说::/dingdiansort_9_{{page}}.html\n最近更新::/dingdiantop_lastupdate_{{page}}.html",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36\",\"Referer\":\"https://m.terry-haass.com/\",\"Accept\":\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\",\"Accept-Language\":\"zh-CN,zh;q=0.9,en;q=0.8\",\"Connection\":\"keep-alive\"}",
    "lastUpdateTime": 1778225172929,
    "loginCheckJs": "if (result.body().match(/安全验证-反机器人/)) {\n\t   c = result.body().match(/encryptedCookieValue = \"([^\"]+)\";/)[1]\n\t   cookie.replaceCookie(source.key, `is_human=${c}`)\n\t   java.connect(source.key+java.ruleUrl)\n} else result",
    "respondTime": 106641,
    "ruleBookInfo": {
      "author": "class.infotype@p.1@text",
      "coverUrl": "img.0@src",
      "lastChapter": "class.infoad.0@text",
      "name": "class.cataloginfo@h1@text",
      "tocUrl": "text.章节目录@a@href"
    },
    "ruleContent": {
      "content": "#novelcontent > p:not(:last-of-type) @text",
      "nextContentUrl": "#novelcontent > ul > li:nth-child(4) > p > a@href"
    },
    "ruleExplore": {
      "bookList": "dl dd a",
      "bookUrl": "@href",
      "name": "@text"
    },
    "ruleSearch": {
      "author": "a.-1@text",
      "bookList": "class.searchresult@class.sone",
      "bookUrl": "a.0@href##javascript:sovote\\((\\d+),'([^']+)'\\);##https://m.terry-haass.com$2",
      "checkKeyWord": "",
      "kind": "class.author.-1@text",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": "<js>\nif(result.includes('Just a moment') || result.includes('Cloudflare') || result.includes('enable JavaScript')){\n    var ajaxResult = java.ajax(baseUrl);\n    result = String(ajaxResult);\n}\nresult;\n</js>\nclass.zj_list@dd",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "/modules/article/search.php?searchkey={{key}}&Submit.x=0&Submit.y=0",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "爱巴士",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.ibusrm.com",
    "customButton": false,
    "customOrder": 718,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "@js:\nlet sort = []\nlet categoryInfo = {\"94\":\"仙侠\",\"95\":\"言情\",\"96\":\"战争军事\",\"97\":\"玄门\",\"98\":\"穿越\",\"101\":\"道听途说\",\"102\":\"舞文弄墨\",\"103\":\"僵尸鬼话\",\"104\":\"情感生活\",\"105\":\"BLGL\",\"106\":\"历史演说\",\"108\":\"科幻\",\"109\":\"游戏\",\"110\":\"商业经济\",\"111\":\"武侠\",\"200\":\"传记回忆\",\"201\":\"随笔杂谈\",\"202\":\"言情小说\",\"203\":\"历史小说\",\"204\":\"侦探推理\",\"205\":\"惊悚悬疑\",\"206\":\"网络玄幻\",\"207\":\"寓言童话\",\"208\":\"青春都市\",\"209\":\"社会心理\",\"210\":\"外国小说\",\"211\":\"科幻小说\",\"212\":\"当代小说\",\"213\":\"武侠小说\",\"214\":\"纪实报告\",\"215\":\"世界历史\",\"216\":\"中国历史\",\"217\":\"科普学习\",\"218\":\"诗歌戏曲\",\"219\":\"宗教哲学\",\"220\":\"文学理论\",\"221\":\"日语读物\",\"222\":\"作品集\",\"223\":\"国学古籍\",\"224\":\"战争军事\",\"225\":\"政治经济\",\"226\":\"古典文学\",\"227\":\"现代小说\",\"228\":\"官场小说\",\"229\":\"轻小说\",\"301\":\"现代耽美\",\"302\":\"古耽架空\",\"303\":\"穿越重生\",\"304\":\"BL同人\",\"305\":\"GL百合\",\"306\":\"玄幻科幻\",\"307\":\"都市言情\",\"308\":\"古代言情\",\"309\":\"网游竞技\",\"310\":\"推理悬疑\",\"311\":\"书友推荐\",\"312\":\"站内推荐\",\"313\":\"小妈文学\",\"314\":\"蛇耽系列\",\"315\":\"追夫火葬场\",\"316\":\"久别重逢\",\"317\":\"虫族系列\",\"318\":\"键盘网游\",\"319\":\"校园文学\",\"320\":\"人外系列\",\"500\":\"糙汉系列\",\"501\":\"综合荟萃\",\"502\":\"快穿系列\",\"503\":\"家庭系列\",\"504\":\"师生系列\",\"505\":\"绿色系列\",\"506\":\"大长篇\",\"507\":\"青青校园\",\"508\":\"玄幻仙侠\",\"509\":\"职场生活\",\"510\":\"乡野山村\",\"511\":\"凌辱暴力\",\"512\":\"古代言情\",\"513\":\"都市言情\",\"514\":\"精品无H\"}\n\nlet categoryList = Object.entries(categoryInfo).map(([cid, name]) => ({ cid, name }));\n\npush = (title, url, type) => sort.push({\n    title: title,\n    url: url,\n    style: {\n        layout_flexGrow: 1,\n        layout_flexBasisPercent: type\n    }\n});\n\n// let so = 'https://www.wxzpyd.com'\nlet so = source.key\nlet url = so + '/api/category/list,'\n\ncategoryList.forEach(({ cid, name }) => {\n    let body = `category=${cid}&type=0&page_index={{page}}` \n    let head = { \"referer\": so + \"/category/\" + cid };\n    let option = {\n        method: \"POST\",\n        body: body,\n        headers: head\n    };\n    let Url = url + JSON.stringify(option);\n    push(name, Url, 0.25);\n});\n\nJSON.stringify(sort);",
    "header": "{\n  \"User-Agent\":\"Mozilla/5.0 (Linux; Android 12.0; wv) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/4.0 Chrome/100.0.2987.108 Mobile Safari/537.36\" \n}",
    "lastUpdateTime": 1748426706791,
    "respondTime": 4211,
    "ruleBookInfo": {
      "author": "[property$=author]@content",
      "intro": "[property$=description]@content",
      "kind": "[property~=category]@content",
      "lastChapter": ".bookinfo@tag.dl@span.1@text",
      "name": "[property$=book_name]@content",
      "tocUrl": ".g-nav-control@a.0@href"
    },
    "ruleContent": {
      "content": "$.data.content_data\n@js:\nresult = result.match(/\\[\"(.*)\"\\]/)[1].split(\"\\\",\\\"\").join(\"\\n\")"
    },
    "ruleExplore": {
      "author": "auth",
      "bookUrl": "/novel/{{$._id}}",
      "kind": "theme",
      "name": "name"
    },
    "ruleSearch": {
      "author": "auth",
      "bookList": "data.list[*]",
      "bookUrl": "/novel/{{$._id}}",
      "kind": "tags",
      "name": "name"
    },
    "ruleToc": {
      "chapterList": ".list li a",
      "chapterName": "text",
      "chapterUrl": "href\n@js:\ntry {\n  var u = result.match(/target=(https?.*.html)/)[1]\n  url = decodeURIComponent(u)\n  id = url.match(/chapter\\/(.+)\\.html/)[1]\n  burl = 'https://www.ibusread.com/api/chapter/detail,'\n  body = String('id='+id)\n  head = { \"referer\": url }\n  option = JSON.stringify({\n   method: \"POST\",\n   body: body,\n   headers: head\n  })\n  result = burl + option\n} catch(e) {\n  java.log(e)\n  result\n} finally {\n  result;\n}",
      "nextTocUrl": ".section-list@li@a@href"
    },
    "searchUrl": "@js:\nlet so = source.key + '/search'\nlet res = org.jsoup.Jsoup.parse(java.ajax(so))\nlet id = res.select('.page-search').attr('data-id')\nlet key = java.encodeURI(key)\nlet url = source.key + '/api/search/list,'\nlet body = String('name=' + key + '&tags=&type=3&tt=&page_index=' + page + '&app=2&searchkey=') \nlet head = {\n  \"referer\": so + \"?name=\" + key + \"&tags=&type=3\"\n}\nlet option = {\n   \"method\": \"POST\",\n   \"body\": body,\n   \"headers\": head\n}\nurl + JSON.stringify(option)",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎉 梦幻小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.pan5.info",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 719,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "",
    "lastUpdateTime": 1776744252115,
    "loginUrl": "",
    "respondTime": 1192,
    "ruleBookInfo": {
      "author": "class.author fl@text",
      "coverUrl": "class.pic fl@tag.img@src",
      "intro": "class.brief_text@text##内容介绍.|阅读.*",
      "kind": "class.tags clearfixer@text",
      "lastChapter": "class.chaptername fl@tag.a.0@text",
      "name": "class.name fl@text",
      "tocUrl": "class.tab fl j-content-tab@tag.a.1@href",
      "wordCount": "class.hits@tag.span.0@text"
    },
    "ruleContent": {
      "content": "@js:\nlist=java.getElements(\"@@id.txt@dd\").toArray().sort((a,b)=>a.attr(\"data-id\")-b.attr(\"data-id\"));\nlist.join('\\n')",
      "replaceRegex": "##阅读.*最新章节.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.a.2@text",
      "bookList": "class.secd-rank-list",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "tag.img@src",
      "kind": "tag.a.3@text",
      "lastChapter": "tag.p.-1@text##最近更新|更新",
      "name": "tag.a.1@text",
      "wordCount": "class.clicknum@text##总字数"
    },
    "ruleToc": {
      "chapterList": "id.listsss@ul@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://www.pan5.info/search.php?key={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "❤️上古卷轴🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "https://wiki.biligame.com/skyrim",
    "customButton": false,
    "customOrder": 721,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1769591424349,
    "loginUrl": "https://wiki.biligame.com/skyrim/%E5%9B%BE%E4%B9%A6",
    "respondTime": 487,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": ".mw-parser-output > h2:nth-of-type(1) ~ p:not(.mw-parser-output > h2:nth-of-type(2) ~ p)@textNodes"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": ".searchresults ul li",
      "bookUrl": ".searchalttitle a@href",
      "checkKeyWord": "火中舞",
      "name": ".searchalttitle a@text##，##·"
    },
    "ruleToc": {
      "chapterList": "@js:[{\"text\":\"正文\"}]",
      "chapterName": "text"
    },
    "searchUrl": "https://searchwiki.biligame.com/skyrim/index.php?search={{key}}&title=%E7%89%B9%E6%AE%8A%3A%E6%90%9C%E7%B4%A2&profile=advanced&fulltext=1&ns0=1",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.biquluo.la",
    "bookUrlPattern": "https://www.biquluo.la/\\d+/\\d+",
    "customButton": false,
    "customOrder": 722,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻小说::/xuanhuan_{{page}}.html\n仙侠小说::/xianxia_{{page}}.html\n都市小说::/dushi_{{page}}.html\n历史小说::/lishi_{{page}}.html\n网游小说::/wangyou_{{page}}.html\n科幻小说::/kehuan_{{page}}.html\n灵异小说::/lingyi_{{page}}.html\n其它小说::/qita_{{page}}.html",
    "header": "",
    "lastUpdateTime": 1721325083824,
    "loginUrl": "{\n  \"url\": \"null\"\n}",
    "respondTime": 2378,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text",
      "coverUrl": "id.fmimg@img@src",
      "init": "",
      "intro": "id.intro@text",
      "kind": "id.info@tag.p.2@text##最后更新：",
      "lastChapter": "id.info@tag.p.3@tag.a@text##免费章节 |正文卷 |正文 |VIP章节 |卷1 ",
      "name": "id.info@tag.h1@text",
      "tocUrl": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "id.content@html##一秒记住.*无弹窗免费阅读！|笔趣阁.*最新章节！|一秒记住【笔趣阁　】|手机用户请浏.*阅读体验。|天才一秒记住本.*无广告！|章节错误.*请耐心等待。",
      "nextContentUrl": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "class.s4@tag.a@text",
      "bookList": "class.l@li",
      "bookUrl": "class.s2@tag.a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.biquluo.la/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "intro": "",
      "kind": "class.s5@text",
      "lastChapter": "class.s3@tag.a@text",
      "name": "class.s2@tag.a@text"
    },
    "ruleSearch": {
      "author": "class.s4@text",
      "bookList": "class.novelslist2@tag.li",
      "bookUrl": "class.s2@tag.a@href",
      "coverUrl": "class.s2@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'https://www.biquluo.la/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "intro": "",
      "kind": "class.s1@text&&\nclass.s7@text",
      "lastChapter": "class.s3@tag.a@text##免费章节 |正文卷 |正文 |VIP章节|卷1",
      "name": "class.s2@tag.a@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text##【求收藏！】|（.*）",
      "chapterUrl": "tag.a@href",
      "isVip": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "https://www.biquluo.la/search.html?name={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "//By情无羁25.02.17\n//by天天的鸟蛋蛋 正文解密无需webView \n//隔壁几章易没图",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "歪瑞古德漫画（卡）",
    "bookSourceType": 2,
    "bookSourceUrl": "https://www.veryim.com",
    "customButton": false,
    "customOrder": 723,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\n    \"title\": \"♕ 按状态 ♕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"完结漫画\",\n    \"url\": \"/list/wanjie/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"连载漫画\",\n    \"url\": \"/list/lianzai/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"♕ 按字母 ♕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"A\",\n    \"url\": \"/list/lettera/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"B\",\n    \"url\": \"/list/letterb/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"C\",\n    \"url\": \"/list/letterc/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"D\",\n    \"url\": \"/list/letterd/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"E\",\n    \"url\": \"/list/lettere/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"F\",\n    \"url\": \"/list/letterf/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"G\",\n    \"url\": \"/list/letterg/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"H\",\n    \"url\": \"/list/letterh/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"I\",\n    \"url\": \"/list/letteri/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"J\",\n    \"url\": \"/list/letterj/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"K\",\n    \"url\": \"/list/letterk/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"L\",\n    \"url\": \"/list/letterl/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"M\",\n    \"url\": \"/list/letterm/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"N\",\n    \"url\": \"/list/lettern/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"O\",\n    \"url\": \"/list/lettero/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"P\",\n    \"url\": \"/list/letterp/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"Q\",\n    \"url\": \"/list/letterq/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"R\",\n    \"url\": \"/list/letterr/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"S\",\n    \"url\": \"/list/letters/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"T\",\n    \"url\": \"/list/lettert/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"U\",\n    \"url\": \"/list/letteru/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"V\",\n    \"url\": \"/list/letterv/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"W\",\n    \"url\": \"/list/letterw/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"X\",\n    \"url\": \"/list/letterx/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"Y\",\n    \"url\": \"/list/lettery/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"Z\",\n    \"url\": \"/list/letterz/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"♕ 数字开头 ♕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"0~9\",\n    \"url\": \"/list/letterqita/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"♕ 分类 ♕\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"热血\",\n    \"url\": \"/list/rexue/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"格斗\",\n    \"url\": \"/list/gedou/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻\",\n    \"url\": \"/list/kehuan/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"竞技\",\n    \"url\": \"/list/jingji/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"搞笑\",\n    \"url\": \"/list/gaoxiao/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"推理\",\n    \"url\": \"/list/tuili/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"恐怖\",\n    \"url\": \"/list/kongbu/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"耽美\",\n    \"url\": \"/list/danmei/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"少女\",\n    \"url\": \"/list/shaonv/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"爱情\",\n    \"url\": \"/list/aiqing/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"恋爱\",\n    \"url\": \"/list/lianai/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"生活\",\n    \"url\": \"/list/shenghuo/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"战争\",\n    \"url\": \"/list/zhanzheng/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"故事\",\n    \"url\": \"/list/gushi/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"冒险\",\n    \"url\": \"/list/maoxian/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"魔幻\",\n    \"url\": \"/list/mohuan/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"玄幻\",\n    \"url\": \"/list/xuanhuan/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"校园\",\n    \"url\": \"/list/xiaoyuan/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"悬疑\",\n    \"url\": \"/list/xuanyi/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"萌系\",\n    \"url\": \"/list/mengxi/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"穿越\",\n    \"url\": \"/list/chuanyue/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"后宫\",\n    \"url\": \"/list/hougong/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市\",\n    \"url\": \"/list/dushi/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠\",\n    \"url\": \"/list/wuxia/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史\",\n    \"url\": \"/list/lishi/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"同人\",\n    \"url\": \"/list/tongren/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"励志\",\n    \"url\": \"/list/lizhi/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"百合\",\n    \"url\": \"/list/baihe/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"治愈\",\n    \"url\": \"/list/zhiyu/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"机甲\",\n    \"url\": \"/list/jijia/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"纯爱\",\n    \"url\": \"/list/chunai/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"美食\",\n    \"url\": \"/list/meishi/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"血腥\",\n    \"url\": \"/list/xuexing/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"僵尸\",\n    \"url\": \"/list/jiangshi/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"恶搞\",\n    \"url\": \"/list/egao/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"虐心\",\n    \"url\": \"/list/nuexin/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"动作\",\n    \"url\": \"/list/dongzuo/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"惊险\",\n    \"url\": \"/list/jingxian/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"唯美\",\n    \"url\": \"/list/weimei/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"震撼\",\n    \"url\": \"/list/zhenhan/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"复仇\",\n    \"url\": \"/list/fuchou/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"侦探\",\n    \"url\": \"/list/zhentan/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"脑洞\",\n    \"url\": \"/list/naodong/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"奇幻\",\n    \"url\": \"/list/qihuan/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"宫斗\",\n    \"url\": \"/list/gongdou/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"爆笑\",\n    \"url\": \"/list/baoxiao/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"运动\",\n    \"url\": \"/list/yundong/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"青春\",\n    \"url\": \"/list/qingchun/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"灵异\",\n    \"url\": \"/list/lingyi/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"古风\",\n    \"url\": \"/list/gufeng/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"权谋\",\n    \"url\": \"/list/quanmou/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"节操\",\n    \"url\": \"/list/jiecao/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"明星\",\n    \"url\": \"/list/mingxing/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"暗黑\",\n    \"url\": \"/list/anhei/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"社会\",\n    \"url\": \"/list/shehui/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"浪漫\",\n    \"url\": \"/list/langman/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"栏目\",\n    \"url\": \"/list/lanmu/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"仙侠\",\n    \"url\": \"/list/xianxia/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"腐女\",\n    \"url\": \"/list/funv/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"AI\",\n    \"url\": \"/list/ai/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其他\",\n    \"url\": \"/list/qita/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"JJ韩漫\",\n    \"url\": \"/list/JJ/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"韩耽\",\n    \"url\": \"/list/handan/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"AI绘画\",\n    \"url\": \"/list/aihh/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"3D漫画\",\n    \"url\": \"/list/3dmanhua/{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"近期更新\",\n    \"url\": \"/update/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"热门排行\",\n    \"url\": \"/rank/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "lastUpdateTime": 1782969943780,
    "respondTime": 2068,
    "ruleBookInfo": {
      "author": "h3.0@a@text",
      "intro": ".info2@p@html",
      "kind": "",
      "lastChapter": ".info3@p.-1@a@text"
    },
    "ruleContent": {
      "content": "<js>\n\nvar b64Match = src.match(/qTcms_S_m_murl_e=\"([^\"]*)\"/);\nvar idMatch = src.match(/qTcms_m_url=\"\\/manhua\\/(\\d+)\\/\"/);\n\n\n    \n\nlet options = {\n    \"headers\": {\n        'User-Agent': \"Mozilla/5.0 (Linux; Android 13; PFJM10 Build/TP1A.220905.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/132.0.6834.163 Mobile Safari/537.36\",\n        'referer': \"https://www.veryim.com/\"\n    }\n};\n\nif (b64Match&&idMatch) {\n    var b64 = java.base64Decode(b64Match[1]);\n    \n     var id = idMatch[1]\n    \n    var imgMatches = b64.match(/(https?:\\/\\/[^$]+)(\\$qingtiandy\\$|$)/g);\n\n    if (imgMatches) {\n        var imgArray = imgMatches.map(function(match) {\n            return match.split('$qingtiandy$')[0]; \n        });\n\n        var uniqueImgArray = Array.from(new Set(imgArray));\n\n        var data = JSON.stringify(uniqueImgArray);\n\n        var html = uniqueImgArray.map(function(img) {\n            return '<img src=\"https://c3.imgsss.com/statics/pic/?p='+ img + \"&picid=\" + id+\",\"+JSON.stringify(options)+'\">'; \n        }).join('');\n\n        \n        html;\n    } else {\n        java.log(\"未找到图片链接\");\n    }\n} else {\n    java.log(\"未找到 Base64 编码的字符串\");\n}\n\n\n\n</js>"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": ".col-sm-index",
      "bookUrl": "a.0@href",
      "checkKeyWord": "--https://www.veryim.com/manhua/11870/1038685.html",
      "coverUrl": "img@src",
      "name": "a.0@title"
    },
    "ruleToc": {
      "chapterList": "-#play_0@ul@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "https://www.veryim.com/statics/search.aspx?key={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "4020电子书#2",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.4020xs.com",
    "customButton": false,
    "customOrder": 724,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"\n}",
    "lastUpdateTime": 1787466823494,
    "respondTime": 1668,
    "ruleBookInfo": {
      "author": "class.block_txt2@tag.p.1@text##作者：",
      "coverUrl": "class.block_img2@tag.img@src",
      "intro": "class.intro_info@text##最新章节推荐地址.*",
      "kind": "class.block_txt2@tag.a.0@text",
      "lastChapter": "class.block_txt2@tag.a.1@text",
      "name": "class.block_txt2@tag.h2@text"
    },
    "ruleContent": {
      "content": "id.nr1@html##（本章未完.*?继续阅读）|<div id=\"cont_tip\">.*?</div>|\\(第\\d+/\\d+页\\)",
      "nextContentUrl": "id.pb_next@href<js>\n(function(result){\n    result=String(result);\n    if(result&&result.match(/_\\d+\\.html/))return result;\n    return\"\";\n})(result)\n</js>"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.author@text##作者：",
      "bookList": "class.bookbox",
      "bookUrl": "class.bookname@tag.a@href",
      "coverUrl": "class.bookimg@tag.img@src",
      "lastChapter": "class.updatelast@tag.a@text",
      "name": "class.bookname@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "class.chapter@tag.li@tag.a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "class.listpage@tag.select@tag.option@value"
    },
    "searchUrl": "/search.php,{\"method\":\"POST\",\"body\":\"searchkey={{key}}&act=search\"}",
    "weight": 0
  },
  {
    "bookSourceComment": "加载超级慢",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "天翼文学",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.tywxw.la",
    "customButton": false,
    "customOrder": 725,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"玄幻小说\",\"url\":\"/gengxin/1.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠仙侠\",\"url\":\"/gengxin/2.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市小说\",\"url\":\"/gengxin/3.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古代言情\",\"url\":\"/gengxin/4.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代言情\",\"url\":\"/gengxin/5.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"网游小说\",\"url\":\"/gengxin/6.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻小说\",\"url\":\"/gengxin/7.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"历史军事\",\"url\":\"/gengxin/8.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"恐怖悬疑\",\"url\":\"/gengxin/9.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "header": "{\n    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'\n}",
    "lastUpdateTime": 1654006733871,
    "loginUrl": "",
    "respondTime": 15599,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "init": "",
      "intro": "[property=\"og:description\"]@content##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content##小说|\\s.*",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": "#content@html",
      "nextContentUrl": "text.下一页@href##$##,{'webView': true}",
      "replaceRegex": "##\\$请到.*章节\\$|\\\\.*上传\\\\|.*下一页继续.*|.*天翼文学.*|"
    },
    "ruleExplore": {
      "author": ".s5@text",
      "bookList": ".l li",
      "bookUrl": "a.0@href##$##,{'webView': true}",
      "coverUrl": "",
      "kind": ".s3@textNodes##\\(|\\)|\\s.*",
      "lastChapter": "a.1@text",
      "name": "a.0@text"
    },
    "ruleSearch": {
      "author": "td.2@text",
      "bookList": "#nr",
      "bookUrl": "a.0@href##$##,{'webView': true}",
      "coverUrl": "",
      "kind": "td.5:4@text##小说|\\s.*",
      "lastChapter": "td.1@text",
      "name": "td.0@text",
      "wordCount": "td.3@text"
    },
    "ruleToc": {
      "chapterList": "#list dd a",
      "chapterName": "text##正文",
      "chapterUrl": "href##$##,{'webView': true}"
    },
    "searchUrl": "/book/Search.aspx?key={{key}}&searchtype=articlename,{'webView': true}",
    "weight": 0
  },
  {
    "bookSourceComment": "有黄广告",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "39小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.sanjiusk.info",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 726,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "",
    "lastUpdateTime": 1780932219812,
    "loginUrl": "",
    "respondTime": 1143,
    "ruleBookInfo": {
      "author": "//*[@id=\"content\"]/div/div[2]/div[2]/div[1]/h2[1]/text()##作者：",
      "coverUrl": "//*[@id=\"content\"]/div/div[2]/div[1]/img/@src",
      "intro": "//*[@id=\"content\"]/div/div[2]/div[2]/div[3]/p/text()",
      "kind": "h2.2:3:1@text##.*：",
      "lastChapter": "h3@a@text",
      "name": "//*[@id=\"content\"]/div/div[2]/div[2]/div[1]/h1/text()"
    },
    "ruleContent": {
      "content": "class.novel_content@html##最新网址：www.xyshuk.com",
      "replaceRegex": "##.*最新网址.*|无尽的昏迷过后.*时宇猛地从床上起身.*想要看最新章节.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*\\n.*"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "@tag.td.2@text",
      "bookList": "class.grid@tbody@tr!0",
      "bookUrl": "@tag.td.0@a@href",
      "coverUrl": "@tag.td.0@a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\nsource.bookSourceUrl + 'files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "@tag.td.1@a@text",
      "name": "@tag.td.0@tag.a@text"
    },
    "ruleToc": {
      "chapterList": "class.zhangjie",
      "chapterName": "@tag.a@text",
      "chapterUrl": "@tag.a@href"
    },
    "searchUrl": "modules/article/search.php?searchkey={{key}}&searchtype=articlename",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "❤️趣书网",
    "bookSourceType": 3,
    "bookSourceUrl": "https://qushu123.com",
    "bookUrlPattern": "https?://qushu123.com/txt/.*/txt\\d+.html",
    "customButton": false,
    "customOrder": 727,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"小说分类\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"男生小说\",\n    \"url\": \"/txt/nansheng/<,index_{{page}}.html>\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"女生言情\",\n    \"url\": \"/txt/yanqing/<,index_{{page}}.html>\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"耽美同人\",\n    \"url\": \"/txt/tongren/<,index_{{page}}.html>\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"都市小说\",\n    \"url\": \"/txt/dushi/<,index_{{page}}.html>\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"玄幻奇幻\",\n    \"url\": \"/txt/xuanhuan/<,index_{{page}}.html>\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"武侠修真\",\n    \"url\": \"/txt/xiuzhen/<,index_{{page}}.html>\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"网游竞技\",\n    \"url\": \"/txt/wangyou/<,index_{{page}}.html>\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"历史军事\",\n    \"url\": \"/txt/lishi/<,index_{{page}}.html>\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"科幻灵异\",\n    \"url\": \"/txt/kehuan/<,index_{{page}}.html>\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"其他小说\",\n    \"url\": \"/txt/qita/<,index_{{page}}.html>\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  }\n]",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; U; Android 13; zh-Hans-CN; PFJM10 Build/TP1A.220905.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/135.0.4896.58 Quark/6.13.6.581 Mobile Safari/537.36\",\"Accept-Language\":\"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\",\"Referer\":\"https://qushu123.com/}",
    "lastUpdateTime": 1769592016665,
    "respondTime": 8033,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "downloadUrls": "@js:\nu=java.getString(\".bookbutton@a@href\")\nuu=String(java.ajax(source.key+u)).match(/\\<td\\>\\<a href=\"(.*)\" ti/)[1]",
      "intro": ".con@html##趣书网.*",
      "kind": "{{@[property~=category|status]@content}}\n{{book.kind}}",
      "lastChapter": "[property~=las?test_chapter_name]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {},
    "ruleExplore": {
      "author": "p.1@text##\\s著",
      "bookList": ".imgtextlist@li",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": "p.3@text##简介：?:?",
      "kind": "p.2@text&&span.0@text##\\[|\\]",
      "name": "a.1@text##《|》"
    },
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".imgtextlist@li",
      "bookUrl": "a.0@href",
      "coverUrl": "img@src",
      "intro": "p.4@text##简介：?:?",
      "kind": "p.3:2@text##更新：?:?\\[|\\]",
      "name": "a.1@text##《|》"
    },
    "ruleToc": {},
    "searchUrl": "@js:\nu=\"https://qushu123.com/e/search/index.php\"\nbd=`show=title%2Csoftsay%2Csoftwriter&keyboard=${java.encodeURI(key, 'utf-8')}&tbname=download&tempid=1&Submit22=%E6%90%9C%E7%B4%A2`\nlo=String(java.post(u,bd,{}).headers(\"Location\")).replace(/\\[(result)\\/(.*)\\]/,\"$1/index.php$2&page={{(page-1)}}\")\njava.log(lo)\nurl=\"https://qushu123.com/e/search/\"+lo\n",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "❤️绾书文学🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "https://api.wanshu.com",
    "customButton": false,
    "customOrder": 729,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"榜单\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"最近更新\",\"url\":\"/novel/libraryList?page={{page}}&pageSize=20&order=update\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月点击榜\",\"url\":\"/novel/libraryList?page={{page}}&pageSize=20&order=mouth_view_count\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总字数榜\",\"url\":\"/novel/libraryList?page={{page}}&pageSize=20&order=word_num\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"都市言情\",\"url\":\"/novel/libraryList?page={{page}}&pageSize=20&category_id=1\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"时空穿越\",\"url\":\"/novel/libraryList?page={{page}}&pageSize=20&category_id=2\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总裁豪门\",\"url\":\"/novel/libraryList?page={{page}}&pageSize=20&category_id=3\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻仙侠\",\"url\":\"/novel/libraryList?page={{page}}&pageSize=20&category_id=4\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"浪漫青春\",\"url\":\"/novel/libraryList?page={{page}}&pageSize=20&category_id=5\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑灵异\",\"url\":\"/novel/libraryList?page={{page}}&pageSize=20&category_id=6\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市异能\",\"url\":\"/novel/libraryList?page={{page}}&pageSize=20&category_id=7\",\"style\":{\"layout_flexBasisPercent\":0.29}}]",
    "lastUpdateTime": 1769593461145,
    "loginUrl": "https://account.wanshu.com/login",
    "respondTime": 3161,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": "data.content",
      "imageStyle": "0"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "author",
      "bookList": "data",
      "bookUrl": "/novel/chapterList?page=1&pageSize=19999&novel_id={{$.novel_id}}",
      "coverUrl": "cover",
      "intro": "description##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "complete_status&&category_name",
      "lastChapter": "latest_chapter_update_time&&latest_chapter##\\h[\\d:]+\\d\\n##▪",
      "name": "name",
      "wordCount": "word_num"
    },
    "ruleToc": {
      "chapterList": "data",
      "chapterName": "name",
      "chapterUrl": "/novel/chapterInfo?novel_chapter_id={{$.id}}",
      "isVip": "¥{{$.is_free}}##¥true"
    },
    "searchUrl": "/novel/search?pageSize=100&kw={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "SF轻小说",
    "bookSourceType": 0,
    "bookSourceUrl": "book.sfacg.com",
    "bookUrlPattern": "已校验",
    "customButton": false,
    "customOrder": 730,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1769589047566,
    "loginUrl": "http://passport.sfacg.com/Login.aspx",
    "respondTime": 783,
    "ruleBookInfo": {
      "kind": "class.tag-list@class.text@text",
      "tocUrl": "text.点击阅读@href"
    },
    "ruleContent": {
      "content": "class.article-content font16@text"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "tag.li.1@text##.+综合信息：\\s*([^\\/]+).*##$1",
      "bookList": "tag.form@tag.table.-2@tag.ul",
      "bookUrl": "tag.a@href",
      "coverUrl": "tag.img@src",
      "intro": "tag.li.1@text##.+\\d+:\\d+\\s*(.+).*##$1",
      "lastChapter": "tag.li.1@text##.+\\/(\\d+\\/\\d+\\/\\d+).*##$1",
      "name": "tag.a@text"
    },
    "ruleToc": {
      "chapterList": "class.catalog-list@tag.ul@tag.li@tag.a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://s.sfacg.com/?Key={{key}}&S=1&SS=0",
    "weight": 0
  },
  {
    "bookSourceComment": "未月十八发现",
    "bookSourceGroup": "🎨漫画,🔞",
    "bookSourceName": "快看漫画2",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.kuaikanmanhua.com#未月十八发现#wy18-1001",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 731,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"✿　　　　　　　榜    单　　　　　　　✿\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"国漫榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=9\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日漫榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=10\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"韩漫榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=11\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"少女榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=6\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"少年榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=5\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"青女榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=7\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"青年榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=8\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"新作榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=2\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"完结榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=12\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"口碑榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=3\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"畅销榜\",\"url\":\"http://m.kuaikanmanhua.com/mini/v1/comic/mkuaikan/rank_list?since={{24*(page-1)}}&limit=24&need_ranks=true&rank_id=4\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"🔹　　 　　　　状    态　 　　　　　🔹 \",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"推荐\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最火热\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=0&pay_status=0&sort=2&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"新上架\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=0&pay_status=0&sort=3&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"连载中\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=1&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"已完结\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=2&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"►免费\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=0&pay_status=1&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"►付费\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=0&pay_status=2&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"►抢先看\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=0&update_status=0&pay_status=3&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"🔹　　 　　　　分    类　 　　　　　🔹 \",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"恋爱\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=20&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"强剧情\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=82&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古风\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=46&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"校园\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=47&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"奇幻\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=22&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"唯美\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=58&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"热血\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=67&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"日漫\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=57&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"韩漫\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=60&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"大女主\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=77&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"完结\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=40&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"穿越\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=80&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"萌系\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=62&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"灵异\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=32&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"玄幻\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=63&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"搞笑\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=71&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=48&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"正能量\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=54&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总裁\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=52&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"投稿\",\"url\":\"http://m.kuaikanmanhua.com/search/mini/topic/multi_filter?page={{page}}&size=24&tag_id=76&update_status=0&pay_status=0&sort=1&fav_filter=0&gender=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 10; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/78.0.3904.108 Mobile Safari/537.36 SearchCraft/3.6.5 (Baidu; P1 9.0)\"\n}",
    "lastUpdateTime": 1752458864340,
    "loginUrl": "",
    "respondTime": 3165,
    "ruleBookInfo": {
      "author": "<js>\na=eval(result.match(/__NUXT__[^<]*/)[0]);\nresult=JSON.stringify(__NUXT__);\n</js>\n$.data[*].topicInfo.user.nickname",
      "coverUrl": "@js:\neval(result.match(/__NUXT__[^<]*/)[0]);\n__NUXT__.data[0].topicInfo.vertical_image_url",
      "intro": "@js:\neval(result.match(/__NUXT__[^<]*/)[0]);\n__NUXT__.data[0].topicInfo.description",
      "kind": "@js:\neval(result.match(/__NUXT__[^<]*/)[0]);\n__NUXT__.data[0].topicInfo.tags",
      "lastChapter": "@js:\neval(result.match(/__NUXT__[^<]*/)[0]);\n__NUXT__.data[0].topicInfo.update_status.replace(/^.*?已更/,\"\")",
      "name": "@js:\neval(result.match(/__NUXT__[^<]*/)[0]);\n__NUXT__.data[0].topicInfo.title"
    },
    "ruleContent": {
      "content": "class.ComicPics@img@html##data-src##src",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.author_name",
      "bookList": "$.data.topics||$.data.cards||$.hits.topicMessageList||$.hits",
      "bookUrl": "$.id||$.topic_id@js:\"http://m.kuaikanmanhua.com/mobile/\"+result+\"/list/\"",
      "coverUrl": "$.vertical_image_url||$.image_url||$.cover_image_info.images[*].url",
      "intro": "description",
      "kind": "$.category||$.recommend_tag[1].title",
      "lastChapter": "$.latest_comic_title",
      "name": "$.title.text||$.title"
    },
    "ruleToc": {
      "chapterList": "<js>\na=eval(result.match(/__NUXT__[^<]*/)[0]);\nresult=JSON.stringify(__NUXT__);\n</js>\n$.data[*].comicList[*]",
      "chapterName": "$.title",
      "chapterUrl": "$.id\n@js:\"http://m.kuaikanmanhua.com/mobile/comics/\"+result",
      "isVip": "$.is_free\n@js:result=='true'?false:true",
      "updateTime": "@js:java.timeFormat({{$.updated_at}})"
    },
    "searchUrl": "http://m.kuaikanmanhua.com/search/mini/topic/title_and_author?page={{page}}&size=24&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "海棠文学",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.woo16.vip",
    "customButton": false,
    "customOrder": 732,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"校园言情\",\n    \"url\": \"/sort/1_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"都市言情\",\n    \"url\": \"/sort/2_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"古代言情\",\n    \"url\": \"/sort/3_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"罗曼史\",\n    \"url\": \"/sort/4_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"耽美\",\n    \"url\": \"/sort/5_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"百合\",\n    \"url\": \"/sort/6_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"同人\",\n    \"url\": \"/sort/7_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"奇幻玄幻\",\n    \"url\": \"/sort/8_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"网游竞技\",\n    \"url\": \"/sort/9_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"科幻异能\",\n    \"url\": \"/sort/10_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"恐怖灵异\",\n    \"url\": \"/sort/11_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"惊悚推理\",\n    \"url\": \"/sort/12_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"武侠仙侠\",\n    \"url\": \"/sort/13_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"历史军事\",\n    \"url\": \"/sort/14_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"穿越重生\",\n    \"url\": \"/sort/15_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"综合其他\",\n    \"url\": \"/sort/16_{{page}}/\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  }\n]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.0.0; MI 5s Plus Build/OPR1.170623.032; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/71.0.3578.99 Mobile Safari/537.36\"\n}",
    "lastUpdateTime": 1784113508583,
    "respondTime": 5866,
    "ruleBookInfo": {
      "author": ".xx@ul@li.2@a@text",
      "coverUrl": "img@src",
      "intro": ".jianjie@html",
      "kind": ".xx@ul@li.1@a@text",
      "lastChapter": ".xx@ul@li.3@a@text",
      "name": ".xx@ul@li.0@text",
      "tocUrl": "text.查看更多章节@href"
    },
    "ruleContent": {
      "content": "#nr@html"
    },
    "ruleExplore": {
      "author": "span.1@text",
      "bookList": ".fk@ul",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "intro": "span.2@text",
      "kind": "span.3@text",
      "name": "span.0@text"
    },
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".fk@li",
      "bookUrl": "a.1@href",
      "checkKeyWord": "大理寺",
      "coverUrl": "a.1@href##\\D((\\d+)\\d{3})##https://img.woo16.vip/image/$2/$1/$1s.jpg###",
      "kind": "a.0@text",
      "name": "a.1@text"
    },
    "ruleToc": {
      "chapterList": ".lb@li!-1@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": ".showpage.0@ul@li@a@href"
    },
    "searchUrl": "/s.php,{\n  \"body\": \"submit=&type=articlename&s={{key}}\",\n  \"method\": \"POST\",\n  \"charset\": \"GBK\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "\n /**\n    * href##$##,{\"webView\":true}\"\n     * 在js中这样使用\n     * java.createSymmetricCrypto(transformation, key, iv).decrypt(data)\n     * java.createSymmetricCrypto(transformation, key, iv).decryptStr(data)\n     * java.createSymmetricCrypto(transformation, key, iv).encrypt(data)\n     * java.createSymmetricCrypto(transformation, key, iv).encryptBase64(data)\n     * java.createSymmetricCrypto(transformation, key, iv).encryptHex(data)\n     */\n",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "800小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.texasreadyblog.net/",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 733,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "{\n    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',\"Cookie\":\"0\",\"Origin\":\"https://www.texasreadyblog.net\",\"Referer\":\"https://www.texasreadyblog.net/\"\n}",
    "jsLib": "",
    "lastUpdateTime": 1770711057059,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 7686,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "init": "@put:{\nn:\"[property~=book_name|title]@content\",\na:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property~=latest_chapter_name|lastest_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"[property$=image]@content\",\ntac:\"[property$=read_url]@content\"\n}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}",
      "tocUrl": "class.bookmore.bookmore-34e68100@a.1@href##$##,{\"webView\":true}\"",
      "wordCount": "p[class^=lastchapter-]@a@title||p[^lastchapter-]@a@title||.caption-bookinfo .btn-primary@textNodes"
    },
    "ruleContent": {
      "content": "#chaptercontent@html##看后求收藏.*.再看更方便|本章未完.*.退出阅读模式即可，谢谢！|更多内容.*.请稍候|本站只支持手机浏览器访问.*.其他浏览器阅读！##\n@js:\n/*\nvar data = src.match(/\\$\\('#booktxthtml'\\).html\\(x\\((.+)\\)\\)/)[1].replace(/\"|'/g,'').split(\",\")\n\nresult + java.createSymmetricCrypto(\n\"AES/CBC/ZeroPadding\",\n`${data[1].replace(/^\\s+|\\s+$/g,\"\")}`,\n`${data[2].replace(/^\\s+|\\s+$/g,\"\").slice(0,16)}`\n).decryptStr(`${data[0]}`)\n*/\nresult ",
      "imageDecode": "",
      "imageStyle": "",
      "nextContentUrl": "text.下一页@text\n@js:\nnext=((src.match(/const next_page+( = |=)+(\"(.+)\"|'(.+)')/)||[])[2]||'').replace(/\"|'/g,'')\nif(next.includes(\"_\")){\nresult = next\n}else{\nresult = ''\n}\n//result\nresult+\",\"+JSON.stringify({\"webView\":true})",
      "payAction": "",
      "replaceRegex": "##.*{{book.name}}.*|.*{{book.author}}.*|.*{{chapter.title}}.*|本章未完.*",
      "sourceRegex": "",
      "title": "",
      "webJs": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author@text",
      "bookList": ".book-coverlist",
      "bookUrl": "h4@a@href",
      "checkKeyWord": "三国之我的霸业在三国",
      "coverUrl": "img@src",
      "intro": ".intro@text",
      "kind": ".status .label@text",
      "name": "h4@a@title"
    },
    "ruleToc": {
      "chapterList": "dl@dd@a",
      "chapterName": "text",
      "chapterUrl": "href##$##,{\"webView\":true}\"\n@js:\n// result\nresult+\",\"+JSON.stringify({\"webView\":true})",
      "nextTocUrl": "class.onclick@href##$##,{\"webView\":true}\""
    },
    "searchUrl": "@js:\nvar su=source.getKey()\nvar htmlUrl=java.get(su,{}).headers('Location')\njava.log(`重定向：${htmlUrl[0]}`)\nvar posturl=htmlUrl[0]?htmlUrl[0]:(su.includes(\"#\")?su.match(/([^\\#]+)\\#/)[1]:su)\nposturl = posturl.slice(-1)=='/'?posturl.slice(0,-1):posturl\ncookie.removeCookie(posturl)\njava.log(`请求：${posturl}`)\n\nck=cookie.getCookie(posturl);\n\ncookie.setCookie(posturl,String(ck).replace(/search_delay=.*/,\"\"));\n\nso=posturl+\"/search,\"+JSON.stringify({\n  \"body\": \"searchkey=\"+key,\n  \"method\": \"POST\"\n});\njava.put(\"url\",String(so))\nso",
    "variableComment": "",
    "weight": 0
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "❤️全本小说网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.quanben-xiaoshuo.net",
    "customButton": false,
    "customOrder": 734,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"♨️男生小说♨️\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"玄幻小说\",\n    \"url\": \"/category/xuanhuanxiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"奇幻小说\",\n    \"url\": \"/category/qihuanxiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"科幻小说\",\n    \"url\": \"/category/kehuanxiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"武侠小说\",\n    \"url\": \"/category/wuxiaxiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"仙侠小说\",\n    \"url\": \"/category/xianxiaxiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"网游小说\",\n    \"url\": \"/category/wangyouxiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"推理小说\",\n    \"url\": \"/category/tuilixiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"灵异小说\",\n    \"url\": \"/category/lingyixiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"恐怖小说\",\n    \"url\": \"/category/kongbuxiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"历史小说\",\n    \"url\": \"/category/lishixiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"军事小说\",\n    \"url\": \"/category/junshixiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"都市小说\",\n    \"url\": \"/category/dushixiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"♨️女生小说♨️\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"言情小说\",\n    \"url\": \"/category/yanqingxiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"架空小说\",\n    \"url\": \"/category/jiakongxiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"耽美小说\",\n    \"url\": \"/category/danmeixiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"青春小说\",\n    \"url\": \"/category/qingchunxiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"校园小说\",\n    \"url\": \"/category/xiaoyuanxiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"生活小说\",\n    \"url\": \"/category/shenghuoxiaoshuo-{{page}}.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"♨️在线书库♨️\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"古典书籍\",\n    \"url\": \"/category/gudianshuji.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"古典小说\",\n    \"url\": \"/category/gudianxiaoshuo.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"其它书籍\",\n    \"url\": \"/category/qitashuji.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"♨️字母索引♨️\",\n    \"url\": \"\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 1\n    }\n  },\n  {\n    \"title\": \"A\",\n    \"url\": \"/letter/A.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"B\",\n    \"url\": \"/letter/B.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"C\",\n    \"url\": \"/letter/C.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"D\",\n    \"url\": \"/letter/D.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"E\",\n    \"url\": \"/letter/E.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"F\",\n    \"url\": \"/letter/F.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"G\",\n    \"url\": \"/letter/G.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"H\",\n    \"url\": \"/letter/H.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"I\",\n    \"url\": \"/letter/I.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"J\",\n    \"url\": \"/letter/J.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"K\",\n    \"url\": \"/letter/K.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"L\",\n    \"url\": \"/letter/L.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"M\",\n    \"url\": \"/letter/M.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"N\",\n    \"url\": \"/letter/N.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"O\",\n    \"url\": \"/letter/O.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"P\",\n    \"url\": \"/letter/P.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"Q\",\n    \"url\": \"/letter/Q.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"R\",\n    \"url\": \"/letter/R.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"S\",\n    \"url\": \"/letter/S.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"T\",\n    \"url\": \"/letter/T.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"U\",\n    \"url\": \"/letter/U.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"V\",\n    \"url\": \"/letter/V.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"W\",\n    \"url\": \"/letter/W.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"X\",\n    \"url\": \"/letter/X.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"Y\",\n    \"url\": \"/letter/Y.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  },\n  {\n    \"title\": \"Z\",\n    \"url\": \"/letter/Z.html\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.25\n    }\n  }\n]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; Android 10;  Build/QP1A.190711.020) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1779722064992,
    "respondTime": 5728,
    "ruleBookInfo": {
      "author": "p.0@text",
      "coverUrl": "class.pic@img@src",
      "intro": ".articlebody@text",
      "kind": "p.1@text##类别：",
      "name": "h1@text",
      "tocUrl": "text.开始阅读@href"
    },
    "ruleContent": {
      "content": "id.articlebody@html"
    },
    "ruleExplore": {
      "bookList": "class.list2@li",
      "bookUrl": "a.0@href",
      "name": "span.0@text"
    },
    "ruleSearch": {
      "author": "span.0@text",
      "bookList": "<js>\nsearch=(result)=>result.content;\nbaseUrl.match(/&b=/)?eval(result):result;\n</js>\n.book",
      "bookUrl": "a.0@href",
      "checkKeyWord": "快穿",
      "intro": "p.1@text",
      "kind": "a.1@text",
      "name": "h1@a@text"
    },
    "ruleToc": {
      "chapterList": "class.list@li",
      "chapterName": "a@span@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "@js:\nfunction base64(_str){\n\tvar staticchars=\"PAhw7UT1B0a9kQDKZsjIASmOezxYG4CHo5Jyfg2b8FLpEvRr3WtVnlqMidu6oN\";\n\tvar encodechars=\"\";\n\tfor(var i=0;i<_str.length;i++){\n\t\tvar num0=staticchars.indexOf(_str[i]);\n\t\tvar code=num0==-1 ? _str[i] : staticchars[(num0+3)%62];\n\t\tvar num1=parseInt(Math.random()*62,10);\n\t\tvar num2=parseInt(Math.random()*62,10);\n\t\tencodechars += staticchars[num1]+code+staticchars[num2]\n\t\t}\n\treturn encodechars\n};\n\n'/?c=book&a=search.json&callback=search&t='+Date.now()+'&keywords='+key+'&b='+\nencodeURI(base64(encodeURI(key)))\n+',{\"headers\":{\"Referer\":\"https://www.quanben-xiaoshuo.net/search.html\"}}';",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "第一站",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.diyizhan.cc",
    "customButton": false,
    "customOrder": 735,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n\n{\"title\":\"排行榜\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n\n{\"title\":\"总点击榜\",\"url\":\"/allvisit-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月点击榜\",\"url\":\"/monthvisit-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周点击榜\",\"url\":\"/weekvisit-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总推荐榜\",\"url\":\"/allvote-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月推荐榜\",\"url\":\"/monthvote-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"收藏排行\",\"url\":\"/goodnum-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最近更新\",\"url\":\"/lastupdate-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"新书上架\",\"url\":\"/postdate-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"字数排行\",\"url\":\"/size-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n\n\n\n{\"title\":\"书库\",\"url\":\"/all-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"家庭乱伦\",\"url\":\"/xuanhuan-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"人妻女友\",\"url\":\"/xianxia-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古典玄幻\",\"url\":\"/dushi-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市生活\",\"url\":\"/junshi-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学生校园\",\"url\":\"/wangyou-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"强暴性虐\",\"url\":\"/kehuan-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"多人群交\",\"url\":\"/lingyi-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"绿帽主题\",\"url\":\"/yanqing-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他小说\",\"url\":\"/qita-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"全本\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},{\"title\":\"家庭乱伦\",\"url\":\"/xuanhuan-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"人妻女友\",\"url\":\"/xianxia-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"古典玄幻\",\"url\":\"/dushi-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市生活\",\"url\":\"/junshi-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"学生校园\",\"url\":\"/wangyou-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"强暴性虐\",\"url\":\"/kehuan-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"多人群交\",\"url\":\"/lingyi-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"绿帽主题\",\"url\":\"/yanqing-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他小说\",\"url\":\"/qita-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}\n\n\n]\n\n",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; U; Android 13; zh-Hans-CN; PFJM10 Build/TP1A.220905.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/135.0.4896.58 Quark/6.13.6.581 Mobile Safari/537.36\",\"Accept-Language\":\"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"}",
    "lastUpdateTime": 0,
    "respondTime": 3961,
    "ruleBookInfo": {
      "coverUrl": "[name=\"twitter:image\"]@content",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:update_time\"]@content",
      "wordCount": ".booktag@span.0@text"
    },
    "ruleContent": {
      "content": "<js>\nvar na=source.bookSourceComment;\n\nvar ra=java.base64Decode('QnnlsI/mlrAK6aaW5Y+R6K665Z2bOmh0dHBzOi8vc3JjYmJzLmNvbS8=');\n\nif(na.includes(ra)){\n   result=java['getString']('[class=\"readcontent\"]@textNodes');\n}\nelse{\tresult=java.base64Decode('6K+35LiN6KaB5L+u5pS55L2c6ICFLOivt+S4jeimgeebl+a6kA==');\n\t}\n\tresult\n</js>",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "\n<js>\n//字体替换，以下代码勿动🚫，手打很累😢。\nvar ys = [\"\\ue800\",\"\\ue801\",\"\\ue802\",\"\\ue803\",\"\\ue804\",\"\\ue805\",\"\\ue806\",\"\\ue807\",\"\\ue808\",\"\\ue809\",\"\\ue80A\",\"\\ue80B\",\"\\ue80C\",\"\\ue80D\",\"\\ue80E\",\"\\ue80F\",\"\\ue810\",\"\\ue811\",\"\\ue812\",\"\\ue813\",\"\\ue814\",\"\\ue815\",\"\\ue816\",\"\\ue817\",\"\\ue818\",\"\\ue819\",\"\\ue81A\",\"\\ue81B\",\"\\ue81C\",\"\\ue81D\",\"\\ue81E\",\"\\ue81F\",\"\\ue820\",\"\\ue821\",\"\\ue822\",\"\\ue823\",\"\\ue824\",\"\\ue825\",\"\\ue826\",\"\\ue827\",\"\\ue828\",\"\\ue829\",\"\\ue82A\",\"\\ue82B\",\"\\ue82C\",\"\\ue82D\",\"\\ue82E\",\"\\ue82F\",\"\\ue830\",\"\\ue831\",\"\\ue832\",\"\\ue833\",\"\\ue834\",\"\\ue835\",\"\\ue836\",\"\\ue837\",\"\\ue838\",\"\\ue839\",\"\\ue83A\",\"\\ue83B\",\"\\ue83C\",\"\\ue83D\",\"\\ue83E\",\"\\ue83F\",\"\\ue840\",\"\\ue841\",\"\\ue842\",\"\\ue843\",\"\\ue844\",\"\\ue845\",\"\\ue846\",\"\\ue847\",\"\\ue848\",\"\\ue849\",\"\\ue84A\",\"\\ue84B\",\"\\ue84C\",\"\\ue84D\",\"\\ue84E\",\"\\ue84F\",\"\\ue850\",\"\\ue851\",\"\\ue852\",\"\\ue853\",\"\\ue854\",\"\\ue855\",\"\\ue856\",\"\\ue857\",\"\\ue858\",\"\\ue859\",\"\\ue85A\",\"\\ue85B\",\"\\ue85C\",\"\\ue85D\",\"\\ue85E\",\"\\ue85F\",\"\\ue860\",\"\\ue861\",\"\\ue862\",\"\\ue863\"];\nvar th = [\"的\",\"一\",\"是\",\"了\",\"我\",\"不\",\"人\",\"在\",\"他\",\"有\",\"这\",\"个\",\"上\",\"们\",\"来\",\"到\",\"时\",\"大\",\"地\",\"为\",\"子\",\"中\",\"你\",\"说\",\"生\",\"国\",\"年\",\"着\",\"就\",\"那\",\"和\",\"要\",\"她\",\"出\",\"也\",\"得\",\"里\",\"后\",\"自\",\"以\",\"会\",\"家\",\"可\",\"下\",\"而\",\"过\",\"天\",\"去\",\"能\",\"对\",\"小\",\"多\",\"然\",\"于\",\"心\",\"学\",\"么\",\"之\",\"都\",\"好\",\"看\",\"起\",\"发\",\"当\",\"没\",\"成\",\"只\",\"如\",\"事\",\"把\",\"还\",\"用\",\"第\",\"样\",\"道\",\"想\",\"作\",\"种\",\"开\",\"美\",\"乳\",\"阴\",\"液\",\"茎\",\"欲\",\"呻\",\"肉\",\"交\",\"性\",\"胸\",\"私\",\"穴\",\"淫\",\"臀\",\"舔\",\"射\",\"脱\",\"裸\",\"骚\",\"唇\"];\n\nif (ys.length === th.length) {\n    for (var i = 0; i < ys.length; i++) {\n        result = result.replace(new RegExp(ys[i], 'g'), th[i]);\n       }\n  } else {\n  \tjava.toast(\"让你不要乱动了😡\");\n  \tresult = result;\n  \t}\n  \tresult;\n</js>"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": ".author@text",
      "bookList": "[class=\"bookbox\"]",
      "bookUrl": "a.-1@href##go##zhan",
      "intro": ".update@textNodes",
      "lastChapter": ".cat@a@text",
      "name": ".bookname@text",
      "wordCount": ".bookname@div.1@text"
    },
    "ruleToc": {
      "chapterList": "[id=\"list-chapterAll\"]@dd",
      "chapterName": "a.0@text",
      "chapterUrl": "a.0@href"
    },
    "searchUrl": "{{cookie.removeCookie(source.key)}}/modules/article/search.php,{\n\t\"body\": \"searchkey={{key}}&action=login&submit=\",\n\t\"method\": \"POST\",\n\t\"charset\": \"GBK\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "六六文学🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.66wx.org#🎃",
    "customButton": false,
    "customOrder": 736,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "小说周点击榜::/paihang/weekvisit/?page={{page}}\n小说月点击榜::/paihang/monthvisit/?page={{page}}\n小说总点击榜::/paihang/allvisit/?page={{page}}\n玄幻小说榜::/fenlei/1_{{page}}.html\n仙侠小说榜::/fenlei/2_{{page}}.html\n都市小说榜::/fenlei/3_{{page}}.html\n历史小说榜::/fenlei/4_{{page}}.html\n网游小说榜::/fenlei/5_{{page}}.html\n科幻小说榜::/fenlei/6_{{page}}.html\n灵异小说榜::/fenlei/7_{{page}}.html\n言情小说榜::/fenlei/8_{{page}}.html\n其他小说榜::/fenlei/9_{{page}}.html\n全本小说榜::/fenlei/{{page}}.html",
    "header": "",
    "lastUpdateTime": 0,
    "respondTime": 3364,
    "ruleBookInfo": {
      "author": ".bookdes a.link-instanted@text",
      "coverUrl": "img@src",
      "init": "",
      "intro": "🕰  更新时间：{{@@.bookdes p:nth-of-type(4)@text##最后更新：}}\n📒  作品Tags：{{@@ol li:nth-of-type(2)@text}}\n🔶  状态：{{@@.bookdes p:nth-of-type(2)@text##状态：}}\n📜  内容简介：\n{{@@.bookintro p@text}}##(^|[。！？……；]+[”」）】]?)##$1<br>",
      "kind": "div.bookintro > span > a@text",
      "lastChapter": "div.bookdes > p > a[rel='chapter']@text",
      "name": "h1@text",
      "tocUrl": ".bookbtn a:nth-of-type(2)@href",
      "wordCount": ".bookdes p:nth-of-type(2)@text"
    },
    "ruleContent": {
      "content": "div.content p@text"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "dd a@text",
      "bookList": "dl",
      "bookUrl": "dt a@href",
      "checkKeyWord": "剑来",
      "coverUrl": "img@src",
      "intro": "dd:nth-of-type(1)@text",
      "kind": "span:nth-of-type(3)@text",
      "lastChapter": "",
      "name": "dt a@text",
      "wordCount": "span:nth-of-type(2)@text"
    },
    "ruleToc": {
      "chapterList": ".all li a",
      "chapterName": "text",
      "chapterUrl": "onclick\n@js:\nvar location = ({});\neval(String(result));",
      "nextTocUrl": "text.下一页@onclick\n@js:\nvar location = ({});\neval(String(result));",
      "preUpdateJs": ""
    },
    "searchUrl": "https://www.66wx.org/search/?searchkey={{key}}&order=0&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "📚 书耽网站",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.shubl.com/",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 739,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"签约\",\"url\":\"/index/filter_book_list?tag=%E7%AD%BE%E7%BA%A6&tag_module=signed&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"甜文\",\"url\":\"/index/filter_book_list?tag=%E7%94%9C%E6%96%87&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"爽文\",\"url\":\"/index/filter_book_list?tag=%E7%88%BD%E6%96%87&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"ＨＥ\",\"url\":\"/index/filter_book_list?tag=HE&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"ＢＥ\",\"url\":\"/index/filter_book_list?tag=BE&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"快穿\",\"url\":\"/index/filter_book_list?tag=%E5%BF%AB%E7%A9%BF&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"青春\",\"url\":\"/index/filter_book_list?tag=%E9%9D%92%E6%98%A5&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"/index/filter_book_list?tag=%E6%A0%A1%E5%9B%AD&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"百合\",\"url\":\"/index/filter_book_list?tag=%E7%99%BE%E5%90%88&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/index/filter_book_list?tag=%E7%A7%91%E5%B9%BB&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"古代\",\"url\":\"/index/filter_book_list?tag=%E5%8F%A4%E4%BB%A3&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"民国\",\"url\":\"/index/filter_book_list?tag=%E6%B0%91%E5%9B%BD&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"/index/filter_book_list?tag=%E7%8E%B0%E4%BB%A3&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/index/filter_book_list?tag=%E9%83%BD%E5%B8%82&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"/index/filter_book_list?tag=%E6%AD%A6%E4%BE%A0&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"仙侠\",\"url\":\"/index/filter_book_list?tag=%E4%BB%99%E4%BE%A0&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/index/filter_book_list?tag=%E7%8E%84%E5%B9%BB&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"/index/filter_book_list?tag=%E6%9E%B6%E7%A9%BA&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"/index/filter_book_list?tag=%E7%A9%BF%E8%B6%8A&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"重生\",\"url\":\"/index/filter_book_list?tag=%E9%87%8D%E7%94%9F&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"动漫\",\"url\":\"/index/filter_book_list?tag=%E5%8A%A8%E6%BC%AB&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"/index/filter_book_list?tag=%E7%BD%91%E6%B8%B8&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"/index/filter_book_list?tag=%E6%82%AC%E7%96%91&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"灵异\",\"url\":\"/index/filter_book_list?tag=%E7%81%B5%E5%BC%82&tag_module=&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"完本\",\"url\":\"/index/filter_book_list?tag=%E5%AE%8C%E6%9C%AC&tag_module=ended&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.21}}]",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.25 Mobile Safari/537.36\"\n}",
    "lastUpdateTime": 1681044508442,
    "loginUrl": "https://m.shubl.com/signup/login",
    "respondTime": 3351,
    "ruleBookInfo": {
      "author": "class.author.0@text##\\s.*",
      "coverUrl": "class.thumb.0@img@data-original",
      "intro": ".info div.4@html&&.J_DescContent@html",
      "kind": "class.author.0@text&&class.pull-right.0@text##.*\\s|.*：",
      "name": ".name@text",
      "tocUrl": "class.container.1@a@href",
      "wordCount": ".numbers span.0@text"
    },
    "ruleContent": {
      "content": "#J_BookRead@html",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "div.1@text",
      "bookList": ".book-list li",
      "bookUrl": "a@href",
      "coverUrl": "img@data-original",
      "intro": "div.2@text",
      "name": "span.1@text"
    },
    "ruleToc": {
      "chapterList": ".list li",
      "chapterName": "p.0@text",
      "chapterUrl": "a@href##$##,{\"webView\":true}",
      "isVip": "i@text##^##🔒",
      "updateTime": "p.1@text"
    },
    "searchUrl": "index/search_book?key={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "奇奇怪怪",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "一个阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "http://m.wufazhuce.com#🎃",
    "customButton": false,
    "customOrder": 740,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n    {\n        \"title\": \"添加书籍\",\n        \"url\": \"/article\",\n        \"style\": {\"layout_flexBasisPercent\":1}\n    }\n]",
    "header": "",
    "lastUpdateTime": 1721269166646,
    "respondTime": 620,
    "ruleBookInfo": {
      "author": "<js>\"ONE·阅读\"</js>",
      "coverUrl": "<js>\"https://gitee.com/lyc486/yuedu/raw/master/cover486.webp\"</js>",
      "init": "",
      "name": "<js>\"ONE·阅读\"</js>",
      "tocUrl": ""
    },
    "ruleContent": {
      "content": "<js>\ndo{\nt=Date();t1=Number(t.charAt(17));t2=Number(t.charAt(19));t3=Number(t.charAt(20));t4=Number(t.charAt(22));t5=Number(t.charAt(23));\n//var t=new Date();\n//year=t.getFullYear();\n//java.log(\"🍊\"+year);\nn=(t2+t4)%6*1000+t1*100+t3*10+t5;\nr=java.ajax(\"http://m.wufazhuce.com/article/\"+n.toString());\njava.setContent(r);\n}\nwhile(r.includes(\"404 Not Found\"));\n//获取4个随机数其中第一个数小于6，大概大于5919无内容，并访问网址\nchapter.title=java.getString('class.text-title@text');\nchapter.url=\"http://m.wufazhuce.com/article/\"+n.toString();\n//传出标题\ns=String(java.getString('class.text-content@html'));\n//获取正文内容\nif(s.includes(\"<img\")){s=s.replace(/<img [^>]*src\\=\\\"([^\"]+?)(\\?imageView[^\"]+)?\\\"[^>]*>/g,'<img src=\"$1\">')}\n//判断正文是否有图片并处理\nelse if(s.includes(\"<![endif]-->\")){s=s.replace(/<!--\\[if gte[\\S\\s]+<!\\[endif\\]-->/,\"\")}\nif(source.getVariable()<=0||source.getVariable()==\"NaN\"||book.variable==null){\nbook.variable=\"\";\nsource.setVariable(39);\n}\nelse{\nsource.setVariable(source.getVariable()-1);\n}\nbook.variable+=\"\\n★\"+chapter.title+\"\\n\"+s;\nbook.variable;\n</js>",
      "imageStyle": "",
      "nextContentUrl": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "<js>[\"ONE·阅读\"]</js>",
      "bookUrl": "<js>\"http://m.wufazhuce.com/article/\"</js>",
      "name": "<js>\"ONE·阅读\"</js>"
    },
    "ruleSearch": {
      "bookList": "<js>[\"ONE·阅读\"]</js>",
      "bookUrl": "<js>\"http://m.wufazhuce.com/article/\"</js>",
      "checkKeyWord": "lyc486",
      "name": "<js>\nif(baseUrl.endsWith(\"lyc486\")){\n\tjava.log(baseUrl)\n\"ONE·阅读\"}else{\"\"}\n</js>"
    },
    "ruleToc": {
      "chapterList": "<js>[\"ONE·阅读\"]</js>",
      "chapterName": "<js>\"ONE·阅读\"</js>",
      "chapterUrl": "",
      "preUpdateJs": "if(source.getVariable()<=0||source.getVariable()==\"NaN\"||book.variable==null){\nbook.variable=\"\";\nsource.setVariable(39);\n}"
    },
    "searchUrl": "/article/{{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "正文无分段，需启用重新分段",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "一纸倾城[api]",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.yizhiqc.com/",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 741,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "header": "",
    "lastUpdateTime": 1686040217358,
    "loginUrl": "",
    "respondTime": 1950,
    "ruleBookInfo": {
      "author": "writerName",
      "coverUrl": "bookImage",
      "init": "data.bookListInfo",
      "intro": "bookIntroduction",
      "kind": "classificationName",
      "lastChapter": "{{$.lastUpdateChapterName}}·{{java.timeFormat(java.getString('$.lastUpdateTime'))}}",
      "name": "bookName",
      "tocUrl": "/api/books-volumeChapterList/{{$.bookId}}",
      "wordCount": "bookWorldCount"
    },
    "ruleContent": {
      "content": "<js>baseUrl</js>##https://www.baidu.com/",
      "imageStyle": "TEXT",
      "replaceRegex": "##[a-z0-9\\-]{6}"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "writerName",
      "bookList": "data.list",
      "bookUrl": "/api/book-bookInfo,{\"method\":\"POST\",\"body\":\"bookid={{$.bookId}}\"}",
      "coverUrl": "bookImage",
      "intro": "bookIntroduction",
      "kind": "classificationName",
      "lastChapter": "{{$.lastUpdateChapterName}}·{{java.timeFormat(java.getString('$.lastUpdateTime'))}}",
      "name": "bookName",
      "wordCount": "bookWorldCount"
    },
    "ruleToc": {
      "chapterList": "data.chapterInfo[*].resultList[*]",
      "chapterName": "chapterTitle",
      "chapterUrl": "chapterContent@js:'https://www.baidu.com/'+result"
    },
    "searchUrl": "/api/stacks-search,{\"method\":\"POST\",\"body\":\"keyWord={{key}}&startPage={{page}}&isHotWorld=1\"}",
    "weight": 0
  },
  {
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "涨姿势",
    "bookSourceType": 0,
    "bookSourceUrl": "http://120.25.175.92",
    "customButton": false,
    "customOrder": 743,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全部::/wp-admin/admin-ajax.php,{\"body\":\"action=wpcom_load_posts&page={{page}}&type=default\",\"method\":\"POST\"}",
    "header": "{\"host\":\"www.zhangzs.com\"}",
    "lastUpdateTime": 32500886400000,
    "respondTime": 617,
    "ruleBookInfo": {},
    "ruleContent": {
      "content": ".entry-content>*:not(.entry-copyright)@html##<noscript[\\s\\S]*?noscript>",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": "li:not(:contains(好物推荐))",
      "bookUrl": "a@href##https://www.zhangzs.com",
      "checkKeyWord": "2025",
      "coverUrl": "img@data-original",
      "intro": "p@text##(?<=[”。？！]).*",
      "kind": "{{@@.data@text}}\n{{@@.item-category@text}}\n{{@@.comments@text}}📝\n{{@@.hearts@text}}❤️\n{{@@.likes@text}}👍🏻",
      "name": "h2@text"
    },
    "ruleToc": {
      "chapterList": "title",
      "chapterName": "{{book.name}}"
    },
    "searchUrl": "/<,page/{{page}}>?s={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🔞",
    "bookSourceName": "🎃PO18文学🎃#15",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.po18gw.com#🎃",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 744,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "最近更新::/top/lastupdate_{{page}}/\n最新入库::/top/postdate_{{page}}/\n完本小说::/full/{{page}}/\n总点击榜::/top/allvisit_{{page}}/\n月点击榜::/top/monthvisit_{{page}}/\n周点击榜::/top/weekvisit_{{page}}/\n总推荐榜::/top/allvote_{{page}}/\n月推荐榜::/top/monthvote_{{page}}/\n周推荐榜::/top/weekvote_{{page}}/\n总收藏榜::/top/goodnum_{{page}}/\n字数排行::/top/size_{{page}}/\n玄幻奇幻::/sort/1_{{page}}/\n武侠仙侠::/sort/2_{{page}}/\n都市言情::/sort/3_{{page}}/\n科幻网游::/sort/4_{{page}}/\n惊悚悬疑::/sort/5_{{page}}/\n耽美同人::/sort/6_{{page}}/\n穿越架空::/sort/7_{{page}}/\n高辣浓情::/sort/8_{{page}}/\n禁忌百合::/sort/9_{{page}}/\n精品文学::/sort/10_{{page}}/",
    "header": "",
    "lastUpdateTime": 0,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 4920,
    "ruleBookInfo": {
      "author": ".tab@tag.p.0@text##.*：",
      "canReName": "",
      "coverUrl": ".tu@img@src",
      "init": "",
      "intro": ".jj@p@html",
      "kind": ".tab1@tag.p.0@text&&.tab1@tag.p.1@text##小说",
      "lastChapter": ".tab@a@text",
      "name": "tag.h1.0@text##\\_.*",
      "tocUrl": "",
      "wordCount": ".tab1@tag.p.2@text"
    },
    "ruleContent": {
      "content": "#novelcontent@textNodes",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "##分卷阅读.*|.*作者.*",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": ".p4@text||.p3 a@text",
      "bookList": ".tt||.content_link",
      "bookUrl": "tag.a.1@href",
      "coverUrl": "img@src",
      "intro": ".p5@text##.*简介.|\\s",
      "kind": "p@.p2@text&&.p1 a@text##\\[|\\]",
      "lastChapter": "",
      "name": "tag.a.1@text##\\_.*",
      "wordCount": "p@.p3@text"
    },
    "ruleSearch": {
      "author": "tag.a.2@text",
      "bookList": ".search_list",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.img@src",
      "intro": "",
      "kind": "tag.a.1@text",
      "lastChapter": "",
      "name": "tag.a.0@text##\\_.*",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "option@value",
      "updateTime": ""
    },
    "searchUrl": "/s.php,{\n  \"charset\": \"gbk\",\n  \"method\": \"POST\",\n  \"body\": \"s={{key}}&type=articlename\"\n}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceGroup": "📚小说",
    "bookSourceName": "书客吧网",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.shuke8.cc",
    "customButton": false,
    "customOrder": 745,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n    {\n        \"title\":\"奇幻玄幻✨\",\n        \"url\":\"/qihuan/11-{{page}}.html\",\n        \"style\":{\n            \"layout_flexBasisPercent\":0.3,\n            \"layout_flexGrow\":1\n        }\n    },\n    {\n        \"title\":\"武侠仙侠🗡️\",\n        \"url\":\"/wuxia/22-{{page}}.html\",\n        \"style\":{\n            \"layout_flexBasisPercent\":0.3,\n            \"layout_flexGrow\":1\n        }\n    },\n    {\n        \"title\":\"都市青春🏙️\",\n        \"url\":\"/dushi/33-{{page}}.html\",\n        \"style\":{\n            \"layout_flexBasisPercent\":0.3,\n            \"layout_flexGrow\":1\n        }\n    },\n    {\n        \"title\":\"历史穿越📜\",\n        \"url\":\"/lishi/44-{{page}}.html\",\n        \"style\":{\n            \"layout_flexBasisPercent\":0.3,\n            \"layout_flexGrow\":1\n        }\n    },\n    {\n        \"title\":\"游戏竞技🎮\",\n        \"url\":\"/youxi/55-{{page}}.html\",\n        \"style\":{\n            \"layout_flexBasisPercent\":0.3,\n            \"layout_flexGrow\":1\n        }\n    },\n    {\n        \"title\":\"科幻灵异👽\",\n        \"url\":\"/kehuan/66-{{page}}.html\",\n        \"style\":{\n            \"layout_flexBasisPercent\":0.3,\n            \"layout_flexGrow\":1\n        }\n    },\n    {\n        \"title\":\"全本小说📚\",\n        \"url\":\"/quanben/77-{{page}}.html\",\n        \"style\":{\n            \"layout_flexBasisPercent\":0.3,\n            \"layout_flexGrow\":1\n        }\n    }\n]\n",
    "lastUpdateTime": 1787020220817,
    "respondTime": 6987,
    "ruleBookInfo": {
      "author": ".novel_info_title@a.0@text",
      "coverUrl": ".novel_info_main@img.0@src",
      "kind": ".novel_info_title@span@text",
      "lastChapter": ".novel_info_title@a.1@text",
      "name": ".novel_info_title@h1@text",
      "tocUrl": "[class=\"section chapter_list\"]@a.-1@href"
    },
    "ruleContent": {
      "content": "#bodybox@p@textNodes##[^.]+侵权必究"
    },
    "ruleExplore": {
      "author": "a.-1@text",
      "bookList": ".flex@li",
      "bookUrl": "a.0@href",
      "coverUrl": "img.0@src",
      "intro": "p.-1@text",
      "kind": "span.0@text&&em.1@text##.\\/.##\\,",
      "name": "img.0@title",
      "wordCount": "em.0@text"
    },
    "ruleSearch": {
      "author": "a.-1@text",
      "bookList": ".flex@li",
      "bookUrl": "a.0@href",
      "coverUrl": "img.0@src",
      "intro": "p.-1@text",
      "kind": "span.0@text&&em.1@text##.\\/.##\\,",
      "name": "img.0@title",
      "wordCount": "em.0@text"
    },
    "ruleToc": {
      "chapterList": "[class=\"section chapter_list\"]@ul@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href"
    },
    "searchUrl": "{{url=source.getKey();\ncookie.removeCookie(url)}}\n/so/{{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "学渣自写,正文js加密搞不定",
    "bookSourceGroup": "🎨漫画",
    "bookSourceName": "COLA漫画（外部）",
    "bookSourceType": 2,
    "bookSourceUrl": "https://www.colamanga.com/",
    "customButton": false,
    "customOrder": 746,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n'referer': 'https://www.colamanga.com/'\n}",
    "lastUpdateTime": 1747112719850,
    "loginCheckJs": "cookie.removeCookie(source.getKey())\nresult",
    "respondTime": 3165,
    "ruleBookInfo": {
      "author": "li.1@a@text",
      "coverUrl": "dt@a@data-original",
      "init": "class.fed-deta-info fed-margin fed-part-rows fed-part-over",
      "intro": "li.-1@text",
      "kind": "li.4@a@textNodes",
      "lastChapter": "li.3@a@text",
      "name": "h1@text",
      "wordCount": "li.0@a@text"
    },
    "ruleContent": {},
    "ruleExplore": {},
    "ruleSearch": {
      "author": "li.3@textNodes",
      "bookList": "class.fed-deta-info fed-deta-padding fed-line-top fed-margin fed-part-rows fed-part-over",
      "bookUrl": "h1@a@href",
      "coverUrl": "dt@a@data-original",
      "intro": "li.5@div@text",
      "kind": "li.0@a@text",
      "lastChapter": "li.1@text",
      "name": "h1@a@text",
      "wordCount": "li.2@textNodes"
    },
    "ruleToc": {
      "chapterList": "class.all_data_list@li[-1:0]@a",
      "chapterName": "text",
      "chapterUrl": "href@js:\nurl=book.origin+result"
    },
    "searchUrl": "https://www.colamanga.com/search?type=2&searchString={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "宜搜小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://api.ieasou.com#",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 747,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "[\n{\"title\": \"❀ 男 生 分 类 ❀\",\"url\": \"\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代都市\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%8E%B0%E4%BB%A3%E9%83%BD%E5%B8%82&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&appverion=1115&appid=10001\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代修真\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%8E%B0%E4%BB%A3%E4%BF%AE%E7%9C%9F&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"都市纵横\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E9%83%BD%E5%B8%82%E7%BA%B5%E6%A8%AA&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"都市异能\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E9%83%BD%E5%B8%82%E5%BC%82%E8%83%BD&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"娱乐明星\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%A8%B1%E4%B9%90%E6%98%8E%E6%98%9F&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"校园生活\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%A0%A1%E5%9B%AD%E7%94%9F%E6%B4%BB&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"升迁之路\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8D%87%E8%BF%81%E4%B9%8B%E8%B7%AF&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"职场商战\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%81%8C%E5%9C%BA%E5%95%86%E6%88%98&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"小康致富\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%B0%8F%E5%BA%B7%E8%87%B4%E5%AF%8C&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"玄幻奇幻\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%8E%84%E5%B9%BB%E5%A5%87%E5%B9%BB&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"东方玄幻\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E4%B8%9C%E6%96%B9%E7%8E%84%E5%B9%BB&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"西方魔幻\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%A5%BF%E6%96%B9%E9%AD%94%E5%B9%BB&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"异界争霸\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%BC%82%E7%95%8C%E4%BA%89%E9%9C%B8&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"洪荒神话\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%B4%AA%E8%8D%92%E7%A5%9E%E8%AF%9D&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"武侠仙侠\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%AD%A6%E4%BE%A0%E4%BB%99%E4%BE%A0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"传统武侠\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E4%BC%A0%E7%BB%9F%E6%AD%A6%E4%BE%A0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古典仙侠\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8F%A4%E5%85%B8%E4%BB%99%E4%BE%A0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻小说\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%A7%91%E5%B9%BB%E5%B0%8F%E8%AF%B4&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"未来世界\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%9C%AA%E6%9D%A5%E4%B8%96%E7%95%8C&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"科技争霸\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%A7%91%E6%8A%80%E4%BA%89%E9%9C%B8&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"古武机甲\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8F%A4%E6%AD%A6%E6%9C%BA%E7%94%B2&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"末世进化\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%9C%AB%E4%B8%96%E8%BF%9B%E5%8C%96&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"时空穿梭\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%97%B6%E7%A9%BA%E7%A9%BF%E6%A2%AD&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史军事\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8E%86%E5%8F%B2%E5%86%9B%E4%BA%8B&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"历史传记\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8E%86%E5%8F%B2%E4%BC%A0%E8%AE%B0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"架空穿越\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%9E%B6%E7%A9%BA%E7%A9%BF%E8%B6%8A&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"峥嵘岁月\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%B3%A5%E5%B5%98%E5%B2%81%E6%9C%88&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"谍战特工\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%B0%8D%E6%88%98%E7%89%B9%E5%B7%A5&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"灵异悬疑\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%81%B5%E5%BC%82%E6%82%AC%E7%96%91&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"推理悬念\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%8E%A8%E7%90%86%E6%82%AC%E5%BF%B5&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"灵异怪谈\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%81%B5%E5%BC%82%E6%80%AA%E8%B0%88&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"风水秘术\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E9%A3%8E%E6%B0%B4%E7%A7%98%E6%9C%AF&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"探险异闻\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%8E%A2%E9%99%A9%E5%BC%82%E9%97%BB&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"游戏竞技\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%B8%B8%E6%88%8F%E7%AB%9E%E6%8A%80&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"虚拟网游\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%99%9A%E6%8B%9F%E7%BD%91%E6%B8%B8&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"电子竞技\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%94%B5%E5%AD%90%E7%AB%9E%E6%8A%80&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"体育竞技\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E4%BD%93%E8%82%B2%E7%AB%9E%E6%8A%80&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"宅小说\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%AE%85%E5%B0%8F%E8%AF%B4&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"同人幻想\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%90%8C%E4%BA%BA%E5%B9%BB%E6%83%B3&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"原生幻想\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8E%9F%E7%94%9F%E5%B9%BB%E6%83%B3&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"轻松搞笑\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%BD%BB%E6%9D%BE%E6%90%9E%E7%AC%91&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"❀ 女 生 分 类 ❀\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代言情\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%8E%B0%E4%BB%A3%E8%A8%80%E6%83%85&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"都市情缘\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E9%83%BD%E5%B8%82%E6%83%85%E7%BC%98&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"总裁豪门\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%80%BB%E8%A3%81%E8%B1%AA%E9%97%A8&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"婚恋家庭\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%A9%9A%E6%81%8B%E5%AE%B6%E5%BA%AD&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"白领生涯\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%99%BD%E9%A2%86%E7%94%9F%E6%B6%AF&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"民国旧影\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%B0%91%E5%9B%BD%E6%97%A7%E5%BD%B1&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"娱乐巨星\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%A8%B1%E4%B9%90%E5%B7%A8%E6%98%9F&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"强势宠婚\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%BC%BA%E5%8A%BF%E5%AE%A0%E5%A9%9A&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古代言情\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8F%A4%E4%BB%A3%E8%A8%80%E6%83%85&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"古代情缘\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8F%A4%E4%BB%A3%E6%83%85%E7%BC%98&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"穿越架空\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%A9%BF%E8%B6%8A%E6%9E%B6%E7%A9%BA&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"女尊权谋\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%A5%B3%E5%B0%8A%E6%9D%83%E8%B0%8B&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"宫闱宅斗\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%AE%AB%E9%97%B1%E5%AE%85%E6%96%97&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"经商种田\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%BB%8F%E5%95%86%E7%A7%8D%E7%94%B0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"幻想言情\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%B9%BB%E6%83%B3%E8%A8%80%E6%83%85&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"仙侠奇缘\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E4%BB%99%E4%BE%A0%E5%A5%87%E7%BC%98&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"魔幻情缘\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E9%AD%94%E5%B9%BB%E6%83%85%E7%BC%98&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"穿越时光\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%A9%BF%E8%B6%8A%E6%97%B6%E5%85%89&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"末世危情\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%9C%AB%E4%B8%96%E5%8D%B1%E6%83%85&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"网配快穿\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%BD%91%E9%85%8D%E5%BF%AB%E7%A9%BF&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"浪漫青春\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%B5%AA%E6%BC%AB%E9%9D%92%E6%98%A5&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"青春校园\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E9%9D%92%E6%98%A5%E6%A0%A1%E5%9B%AD&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"唯美绝恋\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%94%AF%E7%BE%8E%E7%BB%9D%E6%81%8B&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"轻小说\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%BD%BB%E5%B0%8F%E8%AF%B4&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"衍生同人\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%A1%8D%E7%94%9F%E5%90%8C%E4%BA%BA&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"换身入替\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%8D%A2%E8%BA%AB%E5%85%A5%E6%9B%BF&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"青春日常\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E9%9D%92%E6%98%A5%E6%97%A5%E5%B8%B8&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"❀出版专区❀\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"短篇全部\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%9F%AD%E7%AF%87&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"儿童文学\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%84%BF%E7%AB%A5%E6%96%87%E5%AD%A6&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"影视剧本\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%BD%B1%E8%A7%86%E5%89%A7%E6%9C%AC&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"人物传记\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E4%BA%BA%E7%89%A9%E4%BC%A0%E8%AE%B0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"短篇小说\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%9F%AD%E7%AF%87%E5%B0%8F%E8%AF%B4&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"美文游记\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%BE%8E%E6%96%87%E6%B8%B8%E8%AE%B0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"生活随笔\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%94%9F%E6%B4%BB%E9%9A%8F%E7%AC%94&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"诗词散文\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%AF%97%E6%AD%8C%E6%95%A3%E6%96%87&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"评论文集\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%AF%84%E8%AE%BA%E6%96%87%E9%9B%86&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"经典名著\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%BB%8F%E5%85%B8%E5%90%8D%E8%91%97&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"经管励志\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%BB%8F%E7%AE%A1%E5%8A%B1%E5%BF%97&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"社科科普\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%A4%BE%E7%A7%91%E7%A7%91%E6%99%AE&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"其他出版\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%85%B6%E4%BB%96%E5%87%BA%E7%89%88&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"文史传记\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%96%87%E5%8F%B2%E4%BC%A0%E8%AE%B0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"悬疑出版\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%82%AC%E7%96%91%E5%87%BA%E7%89%88&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"现代文学\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%8E%B0%E4%BB%A3%E6%96%87%E5%AD%A6&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"文学小说\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%96%87%E5%AD%A6%E5%B0%8F%E8%AF%B4&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"原创出版\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8E%9F%E5%88%9B%E5%87%BA%E7%89%88&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"情感小说\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%83%85%E6%84%9F%E5%B0%8F%E8%AF%B4&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}}\n]",
    "header": "",
    "lastUpdateTime": 1734434235611,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 1092,
    "ruleBookInfo": {
      "author": "",
      "canReName": "",
      "coverUrl": "",
      "init": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": "",
      "tocUrl": "http://api.ieasou.com/api/bookapp/bookSummary.m?gid=@get:{gid}&nid=@get:{nid}&sort=1&size=1000&session_id=-nEGYU48h9ZiOcED3oVOOzJ&returnType=100&gsort=1&cid=eef_easou_book&version=002&os=android&udid=5f0523be952d7c668bc069ad38d9470ae15fc6c5&appverion=1122&ch=blf1298_12337_001&session_id=-nEGYU48h9ZiOcED3oVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=3&pushid=9f8b02370838a641dc4ddff894b98848&ptype=5&gender=0&userInitPay=3&birt=1660848272929&instime=1660848269464&instId=1660848269464&chType=3&bidType=0&recSw=1&appType=0",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "$..content",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": "",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "author@put:{gid:gid}",
      "bookList": "all_book_items",
      "bookUrl": "http://api.ieasou.com/api/bookapp/bookSummary.m?nid={{$.nid}}&gid={{$.gid}}&sort=1&size=50&returnType=010&cid=eef_easou_book&vm=5.4.3&os=android&appverion=1131",
      "coverUrl": "imgUrl",
      "intro": "desc",
      "kind": "classes",
      "lastChapter": "lastChapterName",
      "name": "name@put:{nid:nid}",
      "wordCount": "wordCount"
    },
    "ruleToc": {
      "chapterList": "<js>\n  //showjname设置章节名显示卷名true or false\n  let obj = {showjname: false}\n  let $ = JSON.parse(String(result))\n  let array = []\n  $.volumes.forEach((booklet) => {\n  \t  java.put('jname',booklet.name)\n    array.push({ \n    \t    name:'◆◇'+String(booklet.name)+'◇◆',\n    \t    voltype:true\n    \t })\n    booklet.chapters.forEach((chapter) => {\nhref='http://api.ieasou.com/api/bookapp/chargeChapter.m?a=1&autoBuy=0&cid=eef_easou_book&version=002&os=android&udid=1c5b2618a57a0848e2510649dc1e03896f462284&appverion=1122&ch=blf1298_12337_001&session_id=-nEvkqSq_9ZyORN5OoVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=3&pushid=f97b7f81a269472c07708277b7c40b4f&ptype=5&gender=0&userInitPay=3&birt=1658424532472&instime=1658424529924&instId=1658424529924&chType=3&bidType=0&recSw=1&appType=0&gid='+java.get('gid')+'&nid='+chapter.nid+'&sort='+chapter.sort+'&gsort=0&sgsort=0&sequence=4&chapter_name='+chapter.chapter_name\n      array.push({\n        name: !java.get('jname')?chapter.chapter_name:((obj.showjname?'※'+java.get('jname')+'※ ':'').padStart(3,''))+chapter.chapter_name,\n        url: href,\n        time:\"本章字数:\"+String(chapter.wordCount)+\"字\",\n        voltype:false\n      })\n    })\n  })\n  array\n</js>",
      "chapterName": "name",
      "chapterUrl": "url",
      "isVip": "",
      "isVolume": "voltype",
      "nextTocUrl": "",
      "updateTime": "time"
    },
    "searchUrl": "http://api.ieasou.com/api/bookapp/searchdzh.m?word={{key}}&type=0&page_id=1&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=173a721b9bdfca6593765d05dc85e02b9a882541&appverion=1122&ch=blf1298_12337_001&session_id=-nEFnuCGf9ZXO3Vr3oVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=3&pushid=f617257c775dc02f0405ace9a62ede52&ptype=5&gender=0&userInitPay=3&birt=1662195839903&instime=1662195839480&instId=1662195839480&chType=3&bidType=0&recSw=1&appType=0",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🔞",
    "bookSourceName": "po18文学",
    "bookSourceType": 0,
    "bookSourceUrl": "https://wap.po18.work/##彩虹",
    "customButton": false,
    "customOrder": 748,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "耽美::https://wap.po18.work/sort/5-{{page}}.html",
    "lastUpdateTime": 1735294389363,
    "respondTime": 17071,
    "ruleBookInfo": {
      "author": ".author@text",
      "coverUrl": ".fm@tag.img@src",
      "intro": ".intro@textNodes",
      "kind": ".markbtn@tag.span@tag.a@text",
      "lastChapter": ".lastchapter.1@tag.a@text",
      "name": ".article@tag.h1@text",
      "wordCount": "0"
    },
    "ruleContent": {
      "content": ".content@html",
      "nextContentUrl": "text.下一页@href",
      "replaceRegex": "##《{{book.name}}》"
    },
    "ruleExplore": {
      "author": ".author@text",
      "bookList": ".topul@tag.li",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.img@src",
      "intro": "tag.p@text",
      "name": "tag.h2@tag.a@text"
    },
    "ruleSearch": {
      "author": ".author@text",
      "bookList": ".topul@tag.li",
      "bookUrl": "tag.a.0@href",
      "checkKeyWord": "魔道",
      "coverUrl": "tag.img@src",
      "intro": "tag.p.0@text",
      "name": "tag.h2@tag.a@text"
    },
    "ruleToc": {
      "chapterList": ".chapters@tag.ul@tag.li",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href",
      "nextTocUrl": ".pagelist@tag.li@tag.a@href"
    },
    "searchUrl": "https://wap.po18.work/s.php,{\n \"body\": \"searchkey={{key}}&page={{page}}\",\n \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "顶点小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.23us.tw#",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 749,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "lastUpdateTime": 1721154452359,
    "loginUrl": "",
    "respondTime": 1509,
    "ruleBookInfo": {
      "author": "id.info@tag.p.0@text##作    者：",
      "coverUrl": "id.fmimg@tag.img@src",
      "intro": "id.intro@text",
      "kind": "id.info@tag.p.2@text##\\更新时间：|\\[|\\]",
      "lastChapter": "id.info@tag.p.3@a@text",
      "name": "id.info@tag.h1.0@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleContent": {
      "content": "id.content@html##您可以在百度里.*查找最新章节！|顶点小说.*us",
      "nextContentUrl": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "tag.td.2@text",
      "bookList": "class.grid@tag.tr!0",
      "bookUrl": "tag.td.0@tag.a@href",
      "coverUrl": "tag.td.0@tag.a@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\nvar iid = parseInt(id/1000);\n'http://www.23us.tw/files/article/image/'+iid+'/'+id+'/'+id+'s.jpg';\n</js>",
      "lastChapter": "tag.td.1@tag.a@text",
      "name": "tag.td.0@tag.a@text##\\（.*|\\(.*|免费阅读|全文.*阅读|最新章节|笔趣阁|小说"
    },
    "ruleToc": {
      "chapterList": "id.list@tag.dd",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.23us.tw/modules/article/search.php?q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "同站：\n一曲书屋 https://www.yiqushuwu.com",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "海棠书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.haitangshufang.com",
    "customButton": false,
    "customOrder": 750,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻奇幻::/xuanhuan/\n武侠修真::/wuxia/\n都市言情::/dushi/\n历史军事::/lishi/\n网游竞技::/wangyou/\n科幻未来::/kehuan/\n恐怖悬疑::/kongbu/\n其他类型::/qita/\n全本小说::/quanben/\n排行榜单::/paihang/",
    "lastUpdateTime": 1782368376998,
    "respondTime": 3320,
    "ruleBookInfo": {
      "author": ".auths@textNodes##作者：",
      "coverUrl": "img@src",
      "intro": ".u-bx@p@text",
      "name": "h1@text"
    },
    "ruleContent": {
      "content": ".zhang-txt-nei-rong@html"
    },
    "ruleExplore": {
      "author": "div.2@text",
      "bookList": ".topba-list@li",
      "bookUrl": "a.0@href",
      "kind": "div.5@text",
      "lastChapter": "div.1@text",
      "name": "a.0@text",
      "wordCount": "div.3@text"
    },
    "ruleSearch": {
      "author": "td.2@text",
      "bookList": "tr!0",
      "bookUrl": "a.0@href",
      "lastChapter": "td.1@text",
      "name": "td.0@text",
      "wordCount": "td.3@text"
    },
    "ruleToc": {
      "chapterList": ".pox@li@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php,{\n 'method': 'POST',\n 'charset': 'gbk',\n 'body':'searchkey={{key}}&t_btnsearch=搜索&searchtype=articlename'\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "小说-🥝松鹤阅读🍒",
    "bookSourceType": 0,
    "bookSourceUrl": "QQ浏览器",
    "customButton": false,
    "customOrder": 751,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n    \"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 13; zh-cn; V2183A Build/TP1A.220624.014) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/89.0.4389.72 MQQBrowser/13.4 Mobile Safari/537.36 COVC/046223\",\n    \"Referer\":\"https://novel.html5.qq.com/\",\n\t\"Q-GUID\":\"0ee63838b72eb075f63e93ae0bc288cb\",\n\t\"QIMEI36\":\"8ff310843a87a71101958f5610001e316a11\"\n}",
    "lastUpdateTime": 1753732041642,
    "respondTime": 1265,
    "ruleBookInfo": {
      "author": "$..author",
      "coverUrl": "$..picurl",
      "init": "$.data.bookInfo",
      "intro": "<p>{{(t=String(java.getString('$.tag'))).length?'🏷️ '+t.replace(/\\|/g,', '):''}}</p>{{'\\n&lrm;'}}\n<p>{{$.summary}}</p>",
      "kind": "$..resourceID",
      "lastChapter": "{{$.lastSerialname}} • {{java.get('time')}}",
      "name": "$..resourceName",
      "tocUrl": "https://novel.html5.qq.com/qbread/api/book/all-chapter?bookId={{book.kind}}",
      "wordCount": "$..contentsize"
    },
    "ruleContent": {
      "content": "<p>{{$.data.Content[0].Content}}</p>"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$..author",
      "bookList": "$.data.state[*]",
      "bookUrl": "https://novel.html5.qq.com/qbread/api/novel/bookInfo?resourceId={{book.kind}}",
      "coverUrl": "$.bid\n@js:\nvar s = result\nfunction gt(s){\n\tlet a = s.slice(-3)\n\tif(a<10){\n\t\t\tn = s.slice(-1)\n\t\t}\n\telse if(a<100){\n\t\t\tn = s.slice(-2)\n\t\t}\n\telse{\n\t\t\tn = a\n\t\t}\n\treturn n\n}\n\"http://wfqqreader-1252317822.image.myqcloud.com/cover/\"+gt(s)+\"/\"+s+\"/b_\"+s+\".jpg\"",
      "intro": "$..abstract",
      "kind": "$.groupID##.*_##",
      "lastChapter": "$..lastSerialname",
      "name": "$..title",
      "wordCount": "$..contentsize"
    },
    "ruleToc": {
      "chapterList": "$..rows[*]",
      "chapterName": "$.serialName",
      "chapterUrl": "$.serialID\n@js:\nlet data = JSON.stringify({\n  ContentAnchorBatch: [{\n    BookID: book.kind,\n    ChapterSeqNo: [\n      result\n    ]\n  }],\n  Scene: \"chapter\"\n})\nlet option = {\"method\":\"POST\",\"body\":data}\n\"https://novel.html5.qq.com/be-api/content/ads-read,\"+JSON.stringify(option)",
      "isPay": "$.isFree",
      "isVip": "$.isFree",
      "preUpdateJs": "java.refreshTocUrl()"
    },
    "searchUrl": "https://so.html5.qq.com/ajax/real/search_result?tabId=360&q={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "涩涩书屋",
    "bookSourceType": 0,
    "bookSourceUrl": "https://sesebooks.com/#",
    "customButton": false,
    "customOrder": 753,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n  {\n    \"title\": \"人气\",\n    \"url\": \"/book/category/page/{{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"最新\",\n    \"url\": \"/book/category/order/addtime/page/{{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"全部\",\n    \"url\": \"/book/category/list/4/page/{{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"连载\",\n    \"url\": \"/book/category/finish/1/page/{{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"综合\",\n    \"url\": \"/book/category/list/4/tags/25/page/{{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  },\n  {\n    \"title\": \"乱伦\",\n    \"url\": \"/book/category/list/4/tags/21/page/{{page}}\",\n    \"style\": {\n      \"layout_flexGrow\": 1,\n      \"layout_flexBasisPercent\": 0.4\n    }\n  }\n]",
    "header": "{\"User-Agent\":\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.3240.64\"}",
    "lastUpdateTime": 1786691257167,
    "respondTime": 1516,
    "ruleBookInfo": {
      "author": "#bookinfo@.wt@text##作者：",
      "kind": "#bookinfo@p[1,2,3]@text##分类：|状态：|时间："
    },
    "ruleContent": {
      "content": "#source@html"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": "ul li a",
      "bookUrl": "href",
      "coverUrl": "img@src",
      "intro": ".decs@text",
      "kind": "span.-1@text",
      "name": ".name@text"
    },
    "ruleToc": {
      "chapterList": "#chapterlsit@a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "/book/search/{{key}}<,/{{page}}>",
    "weight": 49
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "SF轻小说🎃#3",
    "bookSourceType": 0,
    "bookSourceUrl": "https://minipapi.sfacg.com#🎃",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 755,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "魔幻::https://api.sfacg.com/novels/21/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate\n玄幻::https://api.sfacg.com/novels/22/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate\n古风::https://api.sfacg.com/novels/23/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate\n科幻::https://api.sfacg.com/novels/24/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate\n校园::https://api.sfacg.com/novels/25/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate\n都市::https://api.sfacg.com/novels/26/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate\n游戏::https://api.sfacg.com/novels/27/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate\n悬疑::https://api.sfacg.com/novels/28/sysTags/novels?sort=latest&systagids=&isfree=both&isfinish=both&updatedays=-1&charcountbegin=0&charcountend=0&page={{page - 1}}&size=20&expand=typeName,tags,discount,discountExpireDate",
    "header": "{\n\"content-type\": \"application/json\",\n\"sf-minip-info\": \"minip_novel/1.0.70(android;10)/wxmp\",\n\"authorization\": \"Basic YW5kcm9pZHVzZXI6MWEjJDUxLXl0Njk7KkFjdkBxeHE=\"\n}",
    "lastUpdateTime": 1753257578645,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 2078,
    "ruleBookInfo": {
      "author": "$.data.authorName",
      "canReName": "",
      "coverUrl": "$.data.novelCover",
      "init": "",
      "intro": "$.data.expand.intro",
      "kind": "$.data.typeName",
      "lastChapter": "$.data.expand.latestChapter.title",
      "name": "$.data.novelName",
      "tocUrl": "https://minipapi.sfacg.com/pas/mpapi/novels/{{$.data.novelId}}/dirs",
      "wordCount": "$.data.charCount"
    },
    "ruleContent": {
      "content": "$.data.expand.content",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "$.authorName",
      "bookList": "$.data",
      "bookUrl": "https://minipapi.sfacg.com/pas/mpapi/novels/{{$.novelId}}?expand=latestchapter,chapterCount,typeName,intro,fav,ticket,pointCount,tags,sysTags,signlevel,discount,discountExpireDate,totalNeedFireMoney,originTotalNeedFireMoney",
      "coverUrl": "$.novelCover",
      "intro": "",
      "kind": "$.expand.typeName",
      "lastChapter": "",
      "name": "$.novelName",
      "wordCount": "$.charCount"
    },
    "ruleSearch": {
      "author": "$.AuthorName",
      "bookList": "$.Novels",
      "bookUrl": "https://minipapi.sfacg.com/pas/mpapi/novels/{{$.NovelID}}?expand=latestchapter,chapterCount,typeName,intro,fav,ticket,pointCount,tags,sysTags,signlevel,discount,discountExpireDate,totalNeedFireMoney,originTotalNeedFireMoney",
      "coverUrl": "https://rs.sfacg.com/web/novel/images/NovelCover/Big/{{$.NovelCover}}",
      "intro": "",
      "kind": "$.TypeName",
      "lastChapter": "",
      "name": "$.NovelName",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "$.data.volumeList[*].chapterList[*]",
      "chapterName": "$.title",
      "chapterUrl": "https://minipapi.sfacg.com/pas/mpapi/Chaps/{{$.chapId}}?expand=content,needFireMoney,originNeedFireMoney,tsukkomi&autoOrder=false",
      "isVip": "$.isVip",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": "$.updateTime"
    },
    "searchUrl": "https://m.sfacg.com/API/HTML5.ashx?op=search&keyword={{key}}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁 b5200",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.b5200.net-By Dark",
    "customButton": false,
    "customOrder": 756,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36\"\n}",
    "lastUpdateTime": 0,
    "respondTime": 366,
    "ruleBookInfo": {
      "coverUrl": "id.fmimg.0@tag.img.0@src",
      "intro": "id.intro.0@tag.p.0@text"
    },
    "ruleContent": {
      "content": "id.content@tag.p@text"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "class.odd.1@text",
      "bookList": "class.grid@tag.tr",
      "bookUrl": "class.odd.0@tag.a.0@href",
      "lastChapter": "class.even.0@tag.a.0@text",
      "name": "class.odd.0@tag.a.0@text"
    },
    "ruleToc": {
      "chapterList": "class.box_con@tag.dd!0:1:2:3:4:5:6:7:8",
      "chapterName": "tag.a@text",
      "chapterUrl": "tag.a@href"
    },
    "searchUrl": "http://www.b5200.net/modules/article/search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "飞卢小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://wap.faloo.com#",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 758,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "[{\"title\":\"榜单·全部\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"最新\",\"url\":\"/y_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周点击\",\"url\":\"/y_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月点击\",\"url\":\"/y_0_0_0_0_0_2_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总点击\",\"url\":\"/y_0_0_0_0_0_3_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周打赏\",\"url\":\"/y_0_0_0_0_0_13_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月打赏\",\"url\":\"/y_0_0_0_0_0_17_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总打赏\",\"url\":\"/y_0_0_0_0_0_18_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"催更榜\",\"url\":\"/y_0_0_0_0_0_19_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周鲜花\",\"url\":\"/y_0_0_0_0_0_4_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月鲜花\",\"url\":\"/y_0_0_0_0_0_5_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总鲜花\",\"url\":\"/y_0_0_0_0_0_6_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周收藏\",\"url\":\"/y_0_0_0_0_0_7_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月收藏\",\"url\":\"/y_0_0_0_0_0_8_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总收藏\",\"url\":\"/y_0_0_0_0_0_9_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月字数\",\"url\":\"/y_0_0_0_0_0_12_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总字数\",\"url\":\"/y_0_0_0_0_0_10_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"新书PK榜\",\"url\":\"/y_0_0_0_0_0_66_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月票\",\"url\":\"/y_0_0_0_0_0_15_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻奇幻·全部\",\"url\":\"/y_1_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"异世大陆\",\"url\":\"/y_1_28_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"东方玄幻\",\"url\":\"/y_1_29_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"神话传说\",\"url\":\"/y_1_50_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"转世重生\",\"url\":\"/y_1_30_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"王朝争霸\",\"url\":\"/y_1_31_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上古神话\",\"url\":\"/y_1_56_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"变身情缘\",\"url\":\"/y_1_32_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"穿越附身\",\"url\":\"/y_1_81_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"武侠仙侠·全部\",\"url\":\"/y_6_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"传统武侠\",\"url\":\"/y_6_26_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠修真\",\"url\":\"/y_6_25_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"浪子异侠\",\"url\":\"/y_6_27_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古典仙侠\",\"url\":\"/y_6_78_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"星际修真\",\"url\":\"/y_6_79_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代修真\",\"url\":\"/y_6_80_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"同人小说·全部\",\"url\":\"/y_44_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"动漫同人\",\"url\":\"/y_44_69_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"小说同人\",\"url\":\"/y_44_53_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"影视同人\",\"url\":\"/y_44_52_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"耽美小说\",\"url\":\"/y_44_68_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"都市言情·全部\",\"url\":\"/y_4_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"浪漫言情\",\"url\":\"/y_4_13_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市生活\",\"url\":\"/y_4_14_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市异能\",\"url\":\"/y_4_45_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"商海沉浮\",\"url\":\"/y_4_15_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"宦海风云\",\"url\":\"/y_4_17_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"职场生涯\",\"url\":\"/y_4_16_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"豪门恩怨\",\"url\":\"/y_4_18_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"军事历史·全部\",\"url\":\"/y_3_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"穿越时空\",\"url\":\"/y_3_71_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"架空历史\",\"url\":\"/y_3_19_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"历史传记\",\"url\":\"/y_3_72_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"三国梦想\",\"url\":\"/y_3_73_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"人文历史\",\"url\":\"/y_3_74_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代战争\",\"url\":\"/y_3_20_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"战争幻想\",\"url\":\"/y_3_76_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"特种军旅\",\"url\":\"/y_3_21_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"科幻网游·全部\",\"url\":\"/y_2_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"虚拟网游\",\"url\":\"/y_2_33_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"电子竞技\",\"url\":\"/y_2_70_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"超黑科技\",\"url\":\"/y_2_101_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"星际科幻\",\"url\":\"/y_2_102_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"足球运动\",\"url\":\"/y_2_36_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"篮球运动\",\"url\":\"/y_2_35_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"其它竞技\",\"url\":\"/y_2_34_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"恐怖灵异·全部\",\"url\":\"/y_5_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"恐怖惊悚\",\"url\":\"/y_5_24_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"推理悬念\",\"url\":\"/y_5_22_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"灵异神怪\",\"url\":\"/y_5_23_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"神秘时空\",\"url\":\"/y_5_65_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"青春校园·全部\",\"url\":\"/y_7_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"菁菁校园\",\"url\":\"/y_7_10_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园言情\",\"url\":\"/y_7_11_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"另类校园\",\"url\":\"/y_7_12_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"贵爵童话\",\"url\":\"/y_7_90_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"魔法校园\",\"url\":\"/y_7_55_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园同人\",\"url\":\"/y_7_89_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"女生小说·全部\",\"url\":\"/y_54_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"古色添香\",\"url\":\"/y_54_91_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市豪门\",\"url\":\"/y_54_92_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"纯爱耽美\",\"url\":\"/y_54_93_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"穿越架空\",\"url\":\"/y_54_94_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"豪门恩怨\",\"url\":\"/y_54_95_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"幻想精灵\",\"url\":\"/y_54_96_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古典言情\",\"url\":\"/y_54_48_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"轻小说·全部\",\"url\":\"/y_97_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"轻幻想\",\"url\":\"/y_97_98_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"重幻想\",\"url\":\"/y_97_99_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"日常类\",\"url\":\"/y_97_100_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"短篇其他·全部\",\"url\":\"/y_9_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"历史演义\",\"url\":\"/y_9_47_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"散文诗词\",\"url\":\"/y_9_58_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"休闲美文\",\"url\":\"/y_9_59_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"杂文笔记\",\"url\":\"/y_9_41_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"短篇小说\",\"url\":\"/y_9_42_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"改编剧本\",\"url\":\"/y_9_63_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"其他\",\"url\":\"/y_9_43_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"榜单·完本\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"最新\",\"url\":\"/y_0_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周点击\",\"url\":\"/y_0_0_0_0_2_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月点击\",\"url\":\"/y_0_0_0_0_2_2_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总点击\",\"url\":\"/y_0_0_0_0_2_3_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周打赏\",\"url\":\"/y_0_0_0_0_2_13_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月打赏\",\"url\":\"/y_0_0_0_0_2_17_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总打赏\",\"url\":\"/y_0_0_0_0_2_18_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"催更榜\",\"url\":\"/y_0_0_0_0_2_19_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周鲜花\",\"url\":\"/y_0_0_0_0_2_4_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月鲜花\",\"url\":\"/y_0_0_0_0_2_5_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总鲜花\",\"url\":\"/y_0_0_0_0_2_6_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周收藏\",\"url\":\"/y_0_0_0_0_2_7_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月收藏\",\"url\":\"/y_0_0_0_0_2_8_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总收藏\",\"url\":\"/y_0_0_0_0_2_9_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月字数\",\"url\":\"/y_0_0_0_0_2_12_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总字数\",\"url\":\"/y_0_0_0_0_2_10_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"新书PK榜\",\"url\":\"/y_0_0_0_0_2_66_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月票\",\"url\":\"/y_0_0_0_0_2_15_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻奇幻·完本\",\"url\":\"/y_1_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"异世大陆\",\"url\":\"/y_1_28_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"东方玄幻\",\"url\":\"/y_1_29_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"神话传说\",\"url\":\"/y_1_50_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"转世重生\",\"url\":\"/y_1_30_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"王朝争霸\",\"url\":\"/y_1_31_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上古神话\",\"url\":\"/y_1_56_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"变身情缘\",\"url\":\"/y_1_32_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"穿越附身\",\"url\":\"/y_1_81_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"武侠仙侠·完本\",\"url\":\"/y_6_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"传统武侠\",\"url\":\"/y_6_26_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠修真\",\"url\":\"/y_6_25_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"浪子异侠\",\"url\":\"/y_6_27_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古典仙侠\",\"url\":\"/y_6_78_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"星际修真\",\"url\":\"/y_6_79_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代修真\",\"url\":\"/y_6_80_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"同人小说·完本\",\"url\":\"/y_44_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"动漫同人\",\"url\":\"/y_44_69_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"小说同人\",\"url\":\"/y_44_53_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"影视同人\",\"url\":\"/y_44_52_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"耽美小说\",\"url\":\"/y_44_68_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"都市言情·完本\",\"url\":\"/y_4_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"浪漫言情\",\"url\":\"/y_4_13_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市生活\",\"url\":\"/y_4_14_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市异能\",\"url\":\"/y_4_45_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"商海沉浮\",\"url\":\"/y_4_15_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"宦海风云\",\"url\":\"/y_4_17_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"职场生涯\",\"url\":\"/y_4_16_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"豪门恩怨\",\"url\":\"/y_4_18_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"军事历史·完本\",\"url\":\"/y_3_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"穿越时空\",\"url\":\"/y_3_71_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"架空历史\",\"url\":\"/y_3_19_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"历史传记\",\"url\":\"/y_3_72_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"三国梦想\",\"url\":\"/y_3_73_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"人文历史\",\"url\":\"/y_3_74_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代战争\",\"url\":\"/y_3_20_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"战争幻想\",\"url\":\"/y_3_76_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"特种军旅\",\"url\":\"/y_3_21_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"科幻网游·完本\",\"url\":\"/y_2_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"虚拟网游\",\"url\":\"/y_2_33_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"电子竞技\",\"url\":\"/y_2_70_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"超黑科技\",\"url\":\"/y_2_101_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"星际科幻\",\"url\":\"/y_2_102_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"足球运动\",\"url\":\"/y_2_36_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"篮球运动\",\"url\":\"/y_2_35_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"其它竞技\",\"url\":\"/y_2_34_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"恐怖灵异·完本\",\"url\":\"/y_5_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"恐怖惊悚\",\"url\":\"/y_5_24_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"推理悬念\",\"url\":\"/y_5_22_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"灵异神怪\",\"url\":\"/y_5_23_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"神秘时空\",\"url\":\"/y_5_65_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"青春校园·完本\",\"url\":\"/y_7_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"菁菁校园\",\"url\":\"/y_7_10_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园言情\",\"url\":\"/y_7_11_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"另类校园\",\"url\":\"/y_7_12_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"贵爵童话\",\"url\":\"/y_7_90_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"魔法校园\",\"url\":\"/y_7_55_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园同人\",\"url\":\"/y_7_89_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"女生小说·完本\",\"url\":\"/y_54_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"古色添香\",\"url\":\"/y_54_91_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市豪门\",\"url\":\"/y_54_92_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"纯爱耽美\",\"url\":\"/y_54_93_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"穿越架空\",\"url\":\"/y_54_94_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"豪门恩怨\",\"url\":\"/y_54_95_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"幻想精灵\",\"url\":\"/y_54_96_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古典言情\",\"url\":\"/y_54_48_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"轻小说·完本\",\"url\":\"/y_97_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"轻幻想\",\"url\":\"/y_97_98_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"重幻想\",\"url\":\"/y_97_99_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"日常类\",\"url\":\"/y_97_100_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"短篇其他·完本\",\"url\":\"/y_9_0_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"历史演义\",\"url\":\"/y_9_47_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"散文诗词\",\"url\":\"/y_9_58_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"休闲美文\",\"url\":\"/y_9_59_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"杂文笔记\",\"url\":\"/y_9_41_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"短篇小说\",\"url\":\"/y_9_42_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"改编剧本\",\"url\":\"/y_9_63_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"其他\",\"url\":\"/y_9_43_0_0_2_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}}]",
    "header": "",
    "lastUpdateTime": 1716236100398,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "https://u.faloo.com/regist/login.aspx?backUrl=https%3a%2f%2fwap.faloo.com%2f",
    "respondTime": 1245,
    "ruleBookInfo": {
      "author": ".info a.0@text",
      "canReName": "",
      "coverUrl": ".cover_box img@src",
      "init": "",
      "intro": "🏷️   {{@class.tagList.0@text}}{{'\\n'+'​'}}\n{{@#novel_intro@html}}##展开收起|飞卢小说(.|\\n)*",
      "kind": ".info a.1@text&&.info .tag@text&&.info li.4@text##.*：|\\s.*|小说",
      "lastChapter": ".newNode@text##[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]",
      "name": ".info h1@text",
      "tocUrl": ".btnLayout@a.1@href",
      "wordCount": ".info li.2@textNodes##\\s.*"
    },
    "ruleContent": {
      "content": ".nodeContent@p@html",
      "imageStyle": "FULL",
      "nextContentUrl": "",
      "replaceRegex": "##本书来自.*|本书由飞卢.*|用飞卢.*",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": "",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": ".nl_r1_author a.0@text",
      "bookList": ".novelList li",
      "bookUrl": "a.1@href",
      "coverUrl": "img.0@src",
      "intro": "a.2@text",
      "kind": ".nl_r1_author a.1@text&&em@text&&.date@text&&.tag@text",
      "lastChapter": "",
      "name": "a.1@text",
      "wordCount": "i.0@text"
    },
    "ruleToc": {
      "chapterList": ".v_nodeList li",
      "chapterName": "a@text##[\\(（【].*?[求更谢乐发订合补加].*?[】）\\)]",
      "chapterUrl": "a@href",
      "isVip": "i@html",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "/search_0_{{page}}.html?t=1&k={{key}},{\n'charset': 'gb2312'\n}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "🔞,📚小说",
    "bookSourceName": "看的书🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.rourouwu18.com#🎃",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 759,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"◎排行榜◎\",\"url\":\"\",\"style\":{layout_flexGrow: 1,layout_flexBasisPercent:1}},\n{\"title\":\"最近更新\",\"url\":\"/top/lastupdate/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"最新入库\",\"url\":\"/top/postdate/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"点击总榜\",\"url\":\"/top/allvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"推荐总榜\",\"url\":\"/top/allvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"点击月榜\",\"url\":\"/top/monthvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"推荐月榜\",\"url\":\"/top/monthvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周排行榜\",\"url\":\"/top/weekvisit/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周推荐榜\",\"url\":\"/top/weekvote/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"总收藏榜\",\"url\":\"/top/goodnum/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"本站推荐\",\"url\":\"/top/toptime/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"字数排行\",\"url\":\"/top/size/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"完本小说\",\"url\":\"/wanben/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"分类全部\",\"url\":\"/list/0/{{page}}.html\",\"style\":{layout_flexGrow: 1,layout_flexBasisPercent:1}},\n{\"title\":\"玄幻\",\"url\":\"/list/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"修真\",\"url\":\"/list/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"言情\",\"url\":\"/list/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"都市\",\"url\":\"/list/4/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"耽美\",\"url\":\"/list/5/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"校园\",\"url\":\"/list/6/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"高辣\",\"url\":\"/list/7/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"腹黑\",\"url\":\"/list/8/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"种田\",\"url\":\"/list/9/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"高干\",\"url\":\"/list/10/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"百合\",\"url\":\"/list/11/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"其他\",\"url\":\"/list/12/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}}]",
    "lastUpdateTime": 0,
    "loginUrl": "",
    "respondTime": 3884,
    "ruleBookInfo": {
      "author": "class.red.0@text",
      "coverUrl": "",
      "init": "",
      "intro": "id.bookIntro@text",
      "kind": "class.red.-1@text",
      "lastChapter": "p.1@text##最新章节：|\\（|\\）",
      "name": "h1@text",
      "tocUrl": "",
      "wordCount": "class.blue.0@text"
    },
    "ruleContent": {
      "content": ".panel-body@html",
      "nextContentUrl": ""
    },
    "ruleExplore": {
      "author": "class.text-muted.-1@text||class.list-group-item@tag.small@text",
      "bookList": "class.table@tag.tr!0||class.list-group-item",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "@js:'/modules/article/images/nocover.jpg'",
      "intro": "",
      "kind": "tag.td.-1@text",
      "lastChapter": "class.text-muted.0@text",
      "name": "tag.a.0@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "tag.li.2@text",
      "bookList": "class.mySearch@tag.ul!-1",
      "bookUrl": "tag.a.0@href",
      "checkKeyWord": "",
      "coverUrl": "@js:'/modules/article/images/nocover.jpg'",
      "intro": "class.intro@text",
      "kind": "tag.li.-1@text##状态：",
      "lastChapter": "class.chapter@text",
      "name": "tag.a.0@text",
      "wordCount": "tag.li.3@text##大小："
    },
    "ruleToc": {
      "chapterList": ".col-md-3 a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "",
      "updateTime": "class.visible-xs@text##更新时间："
    },
    "searchUrl": "/modules/article/search.php?searchkey={{key}},{\n'charset': 'gbk'}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "国外小说（英文）",
    "bookSourceType": 0,
    "bookSourceUrl": "http://novel.tingroom.com/wap/index.php",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 761,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "金典英文::http://novel.tingroom.com/wap/index.php?moduleid=1025&catid=1&type=2&page={{page}}\n双语小说::http://novel.tingroom.com/wap/index.php?moduleid=1025&catid=33&type=2&page={{page}}\n名人传记::http://novel.tingroom.com/wap/index.php?moduleid=1025&catid=32&type=2&page={{page}}\n英文励志::http://novel.tingroom.com/wap/index.php?moduleid=1025&catid=6&type=2&page={{page}}\n儿童英文::http://novel.tingroom.com/wap/index.php?moduleid=1025&catid=29&type=2&page={{page}}\n英文科幻::http://novel.tingroom.com/wap/index.php?moduleid=1025&catid=30&type=2&page={{page}}\n宗教英文::http://novel.tingroom.com/wap/index.php?moduleid=1025&catid=28&type=2&page={{page}}",
    "header": "{\n  \"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 9; zh-cn; MI 6 Build/PKQ1.190118.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.128 Mobile Safari/537.36 XiaoMi/MiuiBrowser/10.8.1\"\n}",
    "lastUpdateTime": 1764995619441,
    "loginUrl": "",
    "respondTime": 10443,
    "ruleBookInfo": {
      "author": "class.writer.0@text##\\s+",
      "coverUrl": "class.f_l@tag.img@src",
      "intro": "id.infoShort@text",
      "name": "class.sm@text"
    },
    "ruleContent": {
      "content": "id.nr1@html##首页(.|\\n)*尾页|\\\\",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "bookList": "class.list_1",
      "bookUrl": "class.name.0@tag.a.0@href##amp;",
      "checkKeyWord": "我的",
      "coverUrl": "tag.img@src",
      "name": "class.name.0@text"
    },
    "ruleToc": {
      "chapterList": "class.listtxt@tag.li",
      "chapterName": "text",
      "chapterUrl": "tag.a.0@href"
    },
    "searchUrl": "http://novel.tingroom.com/wap/index.php?moduleid=1025&catid=1&areaid=0&type=2&kw={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "溜达小说🎃",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.liudatxt.org#🎃",
    "customButton": false,
    "customOrder": 763,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "",
    "lastUpdateTime": 1685878399036,
    "respondTime": 1806,
    "ruleBookInfo": {
      "author": "#author@a@text",
      "coverUrl": "#bookimg@img@src",
      "intro": "#bookintro@p@text",
      "kind": ".bookright@span.1:5@text",
      "lastChapter": "#newlist@li.0@a@text",
      "name": "h1@text",
      "tocUrl": "div.newrap@a.0@href",
      "wordCount": ".bookright@span.7@text&&span.uptime@sapn@text@js:result+'字'"
    },
    "ruleContent": {
      "content": "id.content@html"
    },
    "ruleExplore": {
      "bookList": "",
      "name": ""
    },
    "ruleSearch": {
      "author": "class.book_other.0@tag.span.0@text",
      "bookList": "id.sitembox@tag.dl",
      "bookUrl": "tag.a.0@href",
      "coverUrl": "tag.img@src",
      "kind": "class.book_other.0@tag.span.1@text",
      "lastChapter": "class.book_other.1@tag.a@text",
      "name": "tag.a.1@text",
      "wordCount": "class.book_other.0@tag.span.3@text"
    },
    "ruleToc": {
      "chapterList": "id.readerlist@tag.li@tag.a",
      "chapterName": "text##正文|_",
      "chapterUrl": "href"
    },
    "searchUrl": "search.php?searchkey={{key}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "黑岩阅读",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.heiyan.com#",
    "customButton": false,
    "customOrder": 764,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"免费完结\",\"url\":\"/all/-1_-1_1_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"历史\",\"url\":\"/all/3_-1_1_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"军事\",\"url\":\"/all/5_-1_1_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/all/6_-1_1_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"奇幻\",\"url\":\"/all/14_-1_1_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"仙侠\",\"url\":\"/all/7_-1_1_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"/all/8_-1_1_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/all/10_-1_1_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏\",\"url\":\"/all/9_-1_1_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"/all/25_-1_1_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古言\",\"url\":\"/all/37_-1_1_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"免费连载\",\"url\":\"/all/-1_-1_1_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"历史\",\"url\":\"/all/3_-1_1_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"军事\",\"url\":\"/all/5_-1_1_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/all/6_-1_1_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"奇幻\",\"url\":\"/all/14_-1_1_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"仙侠\",\"url\":\"/all/7_-1_1_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"/all/8_-1_1_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/all/10_-1_1_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏\",\"url\":\"/all/9_-1_1_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"/all/25_-1_1_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古言\",\"url\":\"/all/37_-1_1_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"收费完结\",\"url\":\"/all/-1_-1_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"历史\",\"url\":\"/all/3_-1_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"军事\",\"url\":\"/all/5_-1_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/all/6_-1_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"奇幻\",\"url\":\"/all/14_-1_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"仙侠\",\"url\":\"/all/7_-1_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"/all/8_-1_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/all/10_-1_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏\",\"url\":\"/all/9_-1_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"/all/25_-1_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古言\",\"url\":\"/all/37_-1_0_1_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}},\n{\"title\":\"收费连载\",\"url\":\"/all/-1_-1_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"历史\",\"url\":\"/all/3_-1_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"军事\",\"url\":\"/all/5_-1_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/all/6_-1_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"奇幻\",\"url\":\"/all/14_-1_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"仙侠\",\"url\":\"/all/7_-1_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"/all/8_-1_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/all/10_-1_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏\",\"url\":\"/all/9_-1_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代\",\"url\":\"/all/25_-1_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古言\",\"url\":\"/all/37_-1_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.29}}]",
    "lastUpdateTime": 1759634600925,
    "loginUrl": "https://www.heiyan.com/accounts/login?backUrl=/",
    "respondTime": 1897,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": "[property=\"og:image\"]@content",
      "intro": "[property=\"og:description\"]@content##(^|[。！？]+[”」）】]?)##$1<br>",
      "kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content##\\s.*",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content",
      "tocUrl": ".buttons a.0@href",
      "wordCount": ".words@text##字"
    },
    "ruleContent": {
      "content": "$.chapter.htmlContent<js>result.replace(/<.*?>/g,'').replace(/\\r/g,'\\n　　')</js>",
      "imageStyle": "0"
    },
    "ruleExplore": {
      "author": "a.2@text",
      "bookList": "tbody tr",
      "bookUrl": "a.0@href",
      "kind": "td.5@text##\\s.*",
      "lastChapter": "a.1@text",
      "name": "a.0@text",
      "wordCount": "td.3@text"
    },
    "ruleSearch": {
      "author": "$.authorname##<.*?>",
      "bookList": "$.data.content[*]",
      "bookUrl": "$.id@js:'https://www.heiyan.com/book/'+result",
      "coverUrl": "$.iconUrlSmall##@.*",
      "intro": "$.introduce",
      "kind": "$.sortname##<.*?>",
      "lastChapter": "$.lastchaptername",
      "name": "$.name##<.*?>",
      "wordCount": "{$.words}"
    },
    "ruleToc": {
      "chapterList": "//li[span]/a",
      "chapterName": "<js>(/isvip/.test(String(result))?'🔒':'') + String(result).match(/>(.*?)</)[1]</js>",
      "chapterUrl": "//@href<js>'https://a.heiyan.com/ajax/chapter/content/'+result.match(/\\d+$/)[0]</js>"
    },
    "searchUrl": "https://search.heiyan.com/web/search?queryString={{key}}&page={{page}}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "有度中文",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.yoduzw.com#",
    "bookUrlPattern": "https://www.yoduzw.com/book/\\d+/?for-search",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 765,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "❀                       经 典 文 学                      ❀::\n传记回忆::/zhuanjihuiyi/{{page}}.html\n杂文随笔::/zawensuibi/{{page}}.html\n经典历史::/jingdianlishi/{{page}}.html\n侦探推理::/zhentantuili/{{page}}.html\n惊悚悬疑::/jingsongxuanyi/{{page}}.html\n网络玄幻::/wangluoxuanhuan/{{page}}.html\n青春都市::/qingchundushi/{{page}}.html\n社会心理::/shehuixinli/{{page}}.html\n经典科幻::/jingdiankehuan/{{page}}.html\n外国小说::/waiguoxiaoshuo/{{page}}.html\n当代小说::/dangdaixiaoshuo/{{page}}.html\n现代小说::/xiandaixiaoshuo/{{page}}.html\n官场小说::/guanchangxiaoshuo/{{page}}.html\n经典武侠::/jingdianwuxia/{{page}}.html\n纪实报告::/jishibaogao/{{page}}.html\n世界历史::/shijielishi/{{page}}.html\n中国历史::/zhongguolishi/{{page}}.html\n科普学习::/kepuxuexi/{{page}}.html\n宗教哲学::/zongjiaozhexue/{{page}}.html\n文学理论::/wenxuelilun/{{page}}.html\n寓言童话::/yuyantonghua/{{page}}.html\n作  品  集::/zuopinji/{{page}}.html\n国学古籍::/guoxueguji/{{page}}.html\n战争军事::/zhanzhengjunshi/{{page}}.html\n政治经济::/zhengzhijingji/{{page}}.html\n古典文学::/gudianwenxue/{{page}}.html\n经典言情::/jingdianyanqing/{{page}}.html\n英文读本::/yingwenduben/{{page}}.html\n日语读物::/riyuduwu/{{page}}.html\n诗歌戏曲::/shigexiqu/{{page}}.html\n❀                       网 络 小 说                      ❀::\n玄    幻::/xuanhuanxiaoshuo/{{page}}.html\n仙    侠::/xianxiaxiaoshuo/{{page}}.html\n都    市::/dushixiaoshuo/{{page}}.html\n武    侠::/wuxiaxiaoshuo/{{page}}.html\n悬    疑::/xuanyixiaoshuo/{{page}}.html\n军    事::/junshixiaoshuo/{{page}}.html\n灵    异::/lingyixiaoshuo/{{page}}.html\n科    幻::/kehuanxiaoshuo/{{page}}.html\n历    史::/lishixiaoshuo/{{page}}.html\n竞    技::/jingjixiaoshuo/{{page}}.html\n穿    越::/chuanyuexiaoshuo/{{page}}.html\n言    情::/yanqingxiaoshuo/{{page}}.html\n网    游::/wangyouxiaoshuo/{{page}}.html\n❀                       轻 小 说 区                      ❀::\n富士见文库::/fushijianwenku/{{page}}.html\nFami通文库::/Famitongwenku/{{page}}.html\n  电击文库  ::/dianjiwenku/{{page}}.html\n  角川文库  ::/jiaochuanwenku/{{page}}.html\n  少女文库  ::/shaonvwenku/{{page}}.html\n  其他文库  ::/qitawenku/{{page}}.html\n   MF文库J  ::/MFwenkuJ/{{page}}.html\n   GA文库   ::/GAwenku/{{page}}.html\n   HJ文库   ::/HJwenku/{{page}}.html\n一迅社::/yixunshe/{{page}}.html\n集英社::/jiyingshe/{{page}}.html\n小学馆::/xiaoxueguan/{{page}}.html\n讲谈社::/jiangtanshe/{{page}}.html",
    "header": "",
    "lastUpdateTime": 1716236238881,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "https://www.yoduzw.com/",
    "respondTime": 2691,
    "ruleBookInfo": {
      "author": "class.mb15 ell _tags pt2@tag.span.0@tag.a@text",
      "canReName": "",
      "coverUrl": "class.cover g_col_4@tag.img@src",
      "init": "",
      "intro": "class.h112 mb15 det-abt lh1d8 c_strong fs16 hm-scroll@tag.p@text",
      "kind": "class.c_small ml10 vam ml0@text&&\nclass.mb15 ell _tags pt2@tag.span.1@text&&\nclass.mb15 ell _tags pt2@tag.span.2@text",
      "lastChapter": "class.ell lst-chapter dib vam@text",
      "name": "class.g_col_8 pr@tag.h1@text",
      "tocUrl": "",
      "wordCount": "class.mb15 ell _tags pt2@tag.span.3@text"
    },
    "ruleContent": {
      "content": "class.read-content@tag.p@textNodes##(本章未完)",
      "imageStyle": "",
      "nextContentUrl": "class.mlfy_page@tag.a.4@href",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "class.mb5 ell _tags pt2@tag.span.0@text",
      "bookList": "class.g_row lis-mn j_bookList@tag.li",
      "bookUrl": "class.lst-item pr lh1d5@tag.a.1@href",
      "coverUrl": "tag.img@_src",
      "intro": "class.lst-item pr lh1d5@tag.a.1@text",
      "kind": "class.mb5 ell _tags pt2@tag.span.1@text||class.mb5 ell _tags pt2@tag.span.2@text",
      "lastChapter": "",
      "name": "class.mb5 fs20 f_mbo pt5 oh@text",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "class.c_small db mb5 ell ttc fs14@tag.span.1@text",
      "bookList": "class.ser-ret@tag.li",
      "bookUrl": "class.mb5 fs20 f_mbo pt5 ell@tag.a@href",
      "coverUrl": "tag.img@_src",
      "intro": "class.fs16 mb10 c_strong g_ells@text",
      "kind": "class.c_small db mb5 ell ttc fs14@tag.span.2@text",
      "lastChapter": "class.db mb5 ell ttc fs16@class.vam@tag.a@text",
      "name": "class.mb5 fs20 f_mbo pt5 ell@tag.a@text",
      "wordCount": ""
    },
    "ruleToc": {
      "chapterList": "id.chapterList@tag.li",
      "chapterName": "class.w33p@tag.span@text",
      "chapterUrl": "class.w33p@tag.a@href",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "https://www.yoduzw.com/sa,{\n\"method\": \"POST\",\n\"body\": \"searchkey={{key}}&searchtype=all\"\n}",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "猪猪小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://gg.zzxsa.com",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "coverDecodeJs": "",
    "customButton": false,
    "customOrder": 766,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreScreen": "",
    "exploreUrl": "@js:\nvar sort = [];\npush=(title,link,size)=>sort.push({\n    \"title\": title,\n    \"url\": link,\n    \"style\": {\n      \"layout_flexGrow\": 1,\n       \"layout_flexBasisPercent\": size\n    }\n  });\npush(\"男主角🔹♂️按分类\",\"\",1);\ntags=[\"玄幻\",\"奇幻\",\"武侠\",\"仙侠\",\n\"灵异\",\"科幻\",\"游戏\",\"竞技\",\n\"职场\",\"都市\",\"历史\",\"军事\",\"轻小说\",\n\"同人\",\"其他\"].map((t,i)=>push(\n\tjava.t2s(t), `https://gg.zzxsa.com/booksort/list?gender=0&type=star&major=${t}&minor=&start={{(page-1)*20}}&limit=20&language=zh_cn`, \n\t t.length > 2 ? 0.25 : 0.2) );\n\t push(\"男主角🔹♂️按题材\",\"\",1);\ntags=[\"装备\",\"赚钱\",\"轮回\",\"重生\",\n\"种田\",\"治愈\",\"直播\",\"征战\",\n\"征服\",\"争斗\",\"战争\",\"缘分\",\"游戏\",\n\"阴阳\",\"异世\",\"异能\",\"异界\",\"医术\",\"妖魔\",\n\"血脉\",\"悬疑\",\"虚拟\",\"修炼\",\n\"兄弟\",\"星辰\",\"信仰\",\"邪恶\",\"现实\",\n\"武道\",\"五行\",\"文明\",\"位面\",\"未来\",\"猥琐\",\n\"危机\",\"同人\",\"挑战\",\"体育\",\n\"逃亡\",\"守护\",\"生死\",\"生活\",\"神兽\",\n\"神魔\",\"神秘\",\"神话\",\"烧脑\",\"杀戮\",\"任务\",\n\"热血\",\"权谋\",\"求生\",\"奇幻\",\n\"破案\",\"泡妞\",\"逆袭\",\"逆天\",\"末世\",\n\"魔法\",\"命运\",\"秘术\",\n\"梦想\",\"冒险\",\"炼药\",\"恐怖\",\"空间\",\n\"科技\",\"科幻\",\"开局\",\n\"军事\",\"竞技\",\"惊悚\",\"僵尸\",\n\"鉴宝\",\"家族\",\"回忆\",\n\"荒岛\",\"红颜\",\"鬼怪\",\"功夫\",\"搞笑\",\n\"复仇\",\"封印\",\"奋斗\",\n\"废物\",\"犯罪\",\"电竞\",\"大唐\",\"传说\",\n\"称霸\",\"变异\",\"变身\"].map((t,i)=>push(\n\tjava.t2s(t), `https://gg.zzxsa.com/booktag/list?gender=0&type=star&tags=${t}&start={{(page-1)*20}}&limit=20&language=zh_cn`, \n\t t.length > 2 ? 0.25 : 0.2) );\n\t \t push(\"男主角🔹♂️按流派\",\"\",1);\ntags=[\"金手指\",\"重生\",\"直播\",\"争霸流\",\n\"召唤流\",\"异兽流\",\"医生\",\"学院流\",\n\"校花\",\"乡村\",\"系统流\",\"武侠\",\"无限流\",\n\"无敌流\",\"文娱\",\"网游\",\"透视\",\"天才流\",\"随身流\",\n\"爽文\",\"升级流\",\"神豪\",\"软饭流\",\n\"轻小说\",\"奶爸\",\"练功流\",\"可爱流\",\"惊悚\",\n\"技术流\",\"洪荒流\",\"红包\",\"废材流\",\"凡人流\",\"恶搞\",\n\"都市\",\"兵王\",\"保镖\"].map((t,i)=>push(\n\tjava.t2s(t), `https://gg.zzxsa.com/booktag/list?gender=0&type=star&tags=${t}&start={{(page-1)*20}}&limit=20&language=zh_cn`, \n\t t.length > 2 ? 0.25 : 0.2) );\n\t \t \t push(\"男主角🔹♂️按身份\",\"\",1);\ntags=[\"至尊\",\"战神\",\"宅男\",\"业界精英\",\n\"药师\",\"学生\",\"枭雄\",\"仙尊\",\n\"武神\",\"同人\",\"特种兵\",\"书生\",\"神医\",\n\"神豪\",\"少年\",\"商人\",\"杀手\",\"强者\",\"乞丐\",\n\"女婿\",\"农民\",\"奶爸\",\"明星\",\n\"美女\",\"流氓\",\"教师\",\"剑客\",\"火影\",\n\"黑客\",\"海贼\",\"贵族\",\"盗贼\",\"孤儿\",\"公子\",\n\"法医\",\"帝王\",\"道士\",\"大侠\",\"刺客\",\"吃货\",\"草根\",\"兵王\",\n\"保镖\",\"保安\",\"白领\"].map((t,i)=>push(\n\tjava.t2s(t), `https://gg.zzxsa.com/booktag/list?gender=0&type=star&tags=${t}&start={{(page-1)*20}}&limit=20&language=zh_cn`, \n\t t.length > 2 ? 0.25 : 0.2) );\n\t \t \t \t push(\"男主角🔹♂️按性格\",\"\",1);\ntags=[\"装逼\",\"勇猛\",\"野蛮\",\"阳光\",\n\"嚣张\",\"侠义\",\"玩世不恭\",\"铁血\",\n\"杀伐果断\",\"懦弱\",\"狂傲\",\"狡猾\",\"坚毅\",\n\"搞笑\",\"疯狂\",\"风流\",\"逗逼\",\"暗黑\"].map((t,i)=>push(\n\tjava.t2s(t), `https://gg.zzxsa.com/booktag/list?gender=0&type=star&tags=${t}&start={{(page-1)*20}}&limit=20&language=zh_cn`, \n\t t.length > 2 ? 0.25 : 0.2) );\n\t \t \t \t \t push(\"男主角🔹♂️按情节\",\"\",1);\ntags=[\"扮猪吃虎\",\"宝物\",\"超能力\",\"打脸\",\n\"丹药\",\"吊炸天\",\"发财\",\"翻身\",\n\"废材\",\"废材逆袭\",\"洪荒\",\"戒指\",\"金手指\",\n\"金庸\",\"坑爹\",\"逆天改命\",\"入侵\",\"三国\",\"神器\",\"随身空间\",\"特殊技能\",\"天书\",\n\"王者荣耀\",\"西游\",\"咸鱼翻身\",\"血腥\",\"一统天下\"].map((t,i)=>push(\n\tjava.t2s(t), `https://gg.zzxsa.com/booktag/list?gender=0&type=star&tags=${t}&start={{(page-1)*20}}&limit=20&language=zh_cn`, \n\t t.length > 2 ? 0.25 : 0.2) );\n\t push(\"女主角🔸♀️按分类\",\"\",1);\ntags=[\"玄幻奇幻\",\"武侠仙侠\",\"悬疑灵异\",\"游戏竞技\",\n\"古代言情\",\"现代言情\",\"青春校园\",\"同人\",\n\"科幻\",\"女尊\",\"其他\"].map((t,i)=>push(\n\tjava.t2s(t), `https://gg.zzxsa.com/booksort/list?gender=1&type=star&major=${t}&minor=&start={{(page-1)*20}}&limit=20&language=zh_cn`, \n\t t.length > 2 ? 0.25 : 0.2) );\n\t \t push(\"女主角🔸♀️按题材\",\"\",1);\ntags=[\"总裁\",\"赚钱\",\"专宠\",\"重逢\",\n\"智谋\",\"职场\",\"正剧\",\"争斗\",\n\"争宠\",\"缘分\",\"冤家\",\"娱乐圈\",\"友情\",\n\"游戏\",\"音乐\",\"妖魔\",\"选秀\",\"相亲\",\"现实\",\n\"喜剧\",\"亡国\",\"吐槽\",\"甜心\",\n\"甜宠\",\"替身\",\"替嫁\",\"桃花\",\"守护\",\n\"嗜血\",\"生活\",\"深情\",\"烧脑\",\"商业\",\"伤痛\",\n\"闪婚\",\"三生三世\",\"日常\",\"权利\",\n\"情有独钟\",\"倾城\",\"青梅竹马\",\"青春\",\"契约\",\n\"婆媳\",\"虐渣\",\"男强\",\"命运\",\"美食\",\"卖萌\",\n\"励志\",\"江山\",\"家族\",\"家长里短\",\n\"婚姻\",\"回忆\",\"皇权\",\"欢乐\",\"豪门\",\n\"闺蜜\",\"古风\",\"孤独\",\n\"狗血\",\"宫斗宅斗\",\"搞笑\",\"感人\",\"复仇\",\n\"斗智斗勇\",\"初念\",\"宠妻\",\n\"宠溺\",\"宠婚\",\"车祸\",\"背叛\",\n\"爱情\",\"BE\"].map((t,i)=>push(\n\tjava.t2s(t), `https://gg.zzxsa.com/booktag/list?gender=1&type=star&tags=${t}&start={{(page-1)*20}}&limit=20&language=zh_cn`, \n\t t.length > 2 ? 0.25 : 0.2) );\n\t \t \t push(\"女主角🔸♀️按流派\",\"\",1);\ntags=[\"搞笑\",\"种田文\",\"医生\",\"养成\",\n\"言情\",\"现言\",\"甜宠文\",\"爽文\",\n\"轻小说\",\"轻松文\",\"女尊文\",\"虐文\",\"虐恋\",\n\"暖文\",\"年代文\",\"脑洞\",\"萌宠\",\"可爱流\",\"婚恋\",\n\"古言\",\"总裁文\",\"穿越\",\"宝宝\",\n].map((t,i)=>push(\n\tjava.t2s(t), `https://gg.zzxsa.com/booktag/list?gender=1&type=star&tags=${t}&start={{(page-1)*20}}&limit=20&language=zh_cn`, \n\t t.length > 2 ? 0.25 : 0.2) );\n\t \t \t push(\"女主角🔸♀️按身份\",\"\",1);\ntags=[\"御姐\",\"娱乐明星\",\"业界精英\",\"学霸\",\n\"校花\",\"王侯将相\",\"王妃\",\"替身\",\n\"特工\",\"庶女\",\"首席\",\"神医\",\"设计师\",\n\"商女\",\"人妻\",\"前妻\",\"千金\",\"弃妇\",\"女强\",\n\"女配\",\"农女\",\"明星\",\"萌宝\",\n\"灰姑娘\",\"皇后\",\"贵族\",\"公主\",\"高富帅\",\n\"毒医\",\"第三者\",\"嫡女\",\"变身\",\"白领\",\"BL\"].map((t,i)=>push(\n\tjava.t2s(t), `https://gg.zzxsa.com/booktag/list?gender=1&type=star&tags=${t}&start={{(page-1)*20}}&limit=20&language=zh_cn`, \n\t t.length > 2 ? 0.25 : 0.2) );\n\t \t \t push(\"女主角🔸♀️按性格\",\"\",1);\ntags=[\"搞笑\",\"懦弱\",\"腹黑\",\"霸道\",\n\"冰冷\",\"温柔\",\"阳光\",\"可爱\",\n\"傲娇\",\"冷酷\",\"淡定\",\"纯真\",\"善良\",\n\"强势\",\"高冷\",\"八卦\",\"妖娆\",\"风流\",\"杀伐果断\",\n\"情深\",\"专情\",\"甜美\",\"张扬\",\n\"奇葩\",\"冰山\",\"冷血\",\"狡猾\",\"柔情\",\n\"毒舌\",\"呆萌\",\"玩世不恭\",\"刁蛮\",\"野蛮\",\"古灵精怪\",\n\"勇敢\",\"花心\",\"妖媚\",\"逗逼\",\n\"幽默\",\"多情\",\"机智\",\"暖心\",\"欢脱\",\n\"专一\",\"傻白甜\",\"萌萌哒\",\"高智商\",\"慢热\",\"敢爱敢恨\",\n\"逗比\"].map((t,i)=>push(\n\tjava.t2s(t), `https://gg.zzxsa.com/booktag/list?gender=1&type=star&tags=${t}&start={{(page-1)*20}}&limit=20&language=zh_cn`, \n\t t.length > 2 ? 0.25 : 0.2) );\n\t \t \t push(\"女主角🔸♀️按情节\",\"\",1);\ntags=[\"阴差阳错\",\"一往情深\",\"一见钟情\",\"未婚先孕\",\n\"逃婚\",\"死缠烂打\",\"生死大爱\",\"情有独钟\",\n\"青梅竹马\",\"强取豪夺\",\"破镜重圆\",\"女追男\",\"女强男尊\",\n\"虐渣打脸\",\"涅槃\",\"麻雀变凤凰\",\"浪漫情缘\",\"纠缠\",\"欢喜冤家\",\n\"黑化\",\"复婚\",\"复合\",\"反转\",\n\"反套路\",\"错嫁\",\"错爱\",\"变身\",\"出轨\",\n\"不离不弃\",\"春风一度\",\"爱而不得\"].map((t,i)=>push(\n\tjava.t2s(t), `https://gg.zzxsa.com/booktag/list?gender=1&type=star&tags=${t}&start={{(page-1)*20}}&limit=20&language=zh_cn`, \n\t t.length > 2 ? 0.25 : 0.2) );\nJSON.stringify(sort);",
    "header": "",
    "lastUpdateTime": 1759283388703,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 5633,
    "ruleBookInfo": {
      "author": "$.writer",
      "canReName": "",
      "coverUrl": "$.cover",
      "init": "$.data",
      "intro": "$.bookJs",
      "kind": "$.tags",
      "lastChapter": "$.chapterLast",
      "name": "$.bookName@put:{xid:x_id}",
      "tocUrl": "https://gg.zzxsa.com/chapters/{{$._id}}?view=chapters&appName=com.zhuxshah.mszlhdgwa&https=1&language=zh_cn",
      "wordCount": "$.wordNum"
    },
    "ruleContent": {
      "content": "$.chapter.body||$.msg",
      "imageStyle": "",
      "nextContentUrl": "",
      "replaceRegex": "",
      "sourceRegex": "",
      "webJs": ""
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": "",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": "$.writer",
      "bookList": "$.books[*]",
      "bookUrl": "https://gg.zzxsa.com/bookintro/{{$._id}}?language=zh_cn",
      "coverUrl": "$.cover",
      "intro": "$.bookJs",
      "kind": "$.tags",
      "lastChapter": "",
      "name": "$.bookName",
      "wordCount": "$.wordNum"
    },
    "ruleToc": {
      "chapterList": "$.data.chapters",
      "chapterName": "$.tit",
      "chapterUrl": "https://xs.zzxsa.com/read/@get:{xid}/{{$.num}}?app_name=com.zhuxshah.mszlhdgwa&app_vn=2.7&dev_id=89b2628c-292f-32c6-b512-8ef3cbe58315&ts={{Date.now()}}&app_vc=20227&token=030590f5f9f4b2ab0879ea5cda0670a2",
      "isVip": "",
      "isVolume": "",
      "nextTocUrl": "",
      "updateTime": ""
    },
    "searchUrl": "https://gg.zzxsa.com/search/result?query={{key}}&language=zh_cn",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "📚 万层中文",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.oneceng.com#🎃",
    "customButton": false,
    "customOrder": 767,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"作品分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"全部\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"都市异能\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_1_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑灵异\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_2_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻奇幻\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_3_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"仙侠修真\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_4_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"军事历史\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_5_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏竞技\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_6_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻未来\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_7_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古代言情\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_8_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代言情\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_9_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"灵异惊悚\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_10_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"仙侠情缘\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_11_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"浪漫青春\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_12_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"幻想言情\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_13_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"耽美同人\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_14_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"书名首字母\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"不限\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_0_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"[A]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_A_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[B]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_B_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[C]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_C_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[D]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_D_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[E]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_E_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[F]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_F_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[G]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_G_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[H]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_H_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[I]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_I_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[J]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_J_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[K]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_K_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[L]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_L_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[M]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_M_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[N]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_N_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[O]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_O_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[P]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_P_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[Q]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_Q_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[R]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_R_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[S]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_S_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[T]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_T_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[U]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_U_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[V]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_V_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[W]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_W_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[X]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_X_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[Y]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_Y_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"[Z]\",\"url\":\"http://www.oneceng.com/shuku/lastupdate_0_0_0_0_Z_0_0_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}\n]",
    "lastUpdateTime": 1738413285942,
    "respondTime": 6447,
    "ruleBookInfo": {
      "author": "span a@text",
      "coverUrl": "a img@src",
      "intro": ".tabvalue td@text&&.tabvalue div@text",
      "kind": "td[width]:nth-of-type(1)@text",
      "lastChapter": "div.title@text",
      "name": ".divbox > div > div > span:nth-of-type(1)@text",
      "tocUrl": "a.catalogbtn@href"
    },
    "ruleContent": {
      "content": "div.acontent@html",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {
      "author": "td:nth-of-type(3)@text",
      "bookList": "#jieqi_page_contents tr",
      "bookUrl": "a.pop@href",
      "coverUrl": "a.pop@href<js>java.ajax(result)</js>a img@src",
      "kind": "td:nth-of-type(6)@text",
      "lastChapter": "#jieqi_page_contents td:nth-of-type(2) a@text",
      "name": "a.pop@text",
      "wordCount": "td:nth-of-type(4)@text"
    },
    "ruleSearch": {
      "author": "div.c_tag:nth-of-type(2) a@text",
      "bookList": "div.c_row",
      "bookUrl": ".c_subject a@href",
      "checkKeyWord": "我的",
      "coverUrl": "a img@src",
      "intro": "div.c_description@text",
      "kind": "div.c_tag:nth-of-type(2) span:nth-of-type(4)@text&&span:nth-of-type(n+7)@text",
      "lastChapter": "div:nth-of-type(4) .c_value a@text",
      "name": ".c_subject a@text",
      "wordCount": "span:nth-of-type(6)@text"
    },
    "ruleToc": {
      "chapterList": "dd a",
      "chapterName": "text",
      "chapterUrl": "href"
    },
    "searchUrl": "http://www.oneceng.com/modules/article/search.php,{\n\"method\":\"POST\",\n\"charset\":\"GBK\",\n\"body\":\"searchtype=articlename&searchkey={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "🎉 宜搜小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://api.ieasou.com",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 768,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\": \"❀ 男 生 分 类 ❀\",\"url\": \"\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代都市\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%8E%B0%E4%BB%A3%E9%83%BD%E5%B8%82&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&appverion=1115&appid=10001\",\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代修真\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%8E%B0%E4%BB%A3%E4%BF%AE%E7%9C%9F&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"都市纵横\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E9%83%BD%E5%B8%82%E7%BA%B5%E6%A8%AA&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"都市异能\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E9%83%BD%E5%B8%82%E5%BC%82%E8%83%BD&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"娱乐明星\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%A8%B1%E4%B9%90%E6%98%8E%E6%98%9F&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"校园生活\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%A0%A1%E5%9B%AD%E7%94%9F%E6%B4%BB&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"升迁之路\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8D%87%E8%BF%81%E4%B9%8B%E8%B7%AF&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"职场商战\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%81%8C%E5%9C%BA%E5%95%86%E6%88%98&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"小康致富\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%B0%8F%E5%BA%B7%E8%87%B4%E5%AF%8C&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"玄幻奇幻\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%8E%84%E5%B9%BB%E5%A5%87%E5%B9%BB&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"东方玄幻\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E4%B8%9C%E6%96%B9%E7%8E%84%E5%B9%BB&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"西方魔幻\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%A5%BF%E6%96%B9%E9%AD%94%E5%B9%BB&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"异界争霸\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%BC%82%E7%95%8C%E4%BA%89%E9%9C%B8&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"洪荒神话\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%B4%AA%E8%8D%92%E7%A5%9E%E8%AF%9D&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"武侠仙侠\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%AD%A6%E4%BE%A0%E4%BB%99%E4%BE%A0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"传统武侠\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E4%BC%A0%E7%BB%9F%E6%AD%A6%E4%BE%A0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古典仙侠\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8F%A4%E5%85%B8%E4%BB%99%E4%BE%A0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻小说\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%A7%91%E5%B9%BB%E5%B0%8F%E8%AF%B4&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"未来世界\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%9C%AA%E6%9D%A5%E4%B8%96%E7%95%8C&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"科技争霸\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%A7%91%E6%8A%80%E4%BA%89%E9%9C%B8&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"古武机甲\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8F%A4%E6%AD%A6%E6%9C%BA%E7%94%B2&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"末世进化\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%9C%AB%E4%B8%96%E8%BF%9B%E5%8C%96&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"时空穿梭\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%97%B6%E7%A9%BA%E7%A9%BF%E6%A2%AD&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史军事\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8E%86%E5%8F%B2%E5%86%9B%E4%BA%8B&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"历史传记\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8E%86%E5%8F%B2%E4%BC%A0%E8%AE%B0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"架空穿越\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%9E%B6%E7%A9%BA%E7%A9%BF%E8%B6%8A&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"峥嵘岁月\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%B3%A5%E5%B5%98%E5%B2%81%E6%9C%88&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"谍战特工\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%B0%8D%E6%88%98%E7%89%B9%E5%B7%A5&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"灵异悬疑\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%81%B5%E5%BC%82%E6%82%AC%E7%96%91&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"推理悬念\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%8E%A8%E7%90%86%E6%82%AC%E5%BF%B5&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"灵异怪谈\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%81%B5%E5%BC%82%E6%80%AA%E8%B0%88&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"风水秘术\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E9%A3%8E%E6%B0%B4%E7%A7%98%E6%9C%AF&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"探险异闻\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%8E%A2%E9%99%A9%E5%BC%82%E9%97%BB&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"游戏竞技\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%B8%B8%E6%88%8F%E7%AB%9E%E6%8A%80&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"虚拟网游\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%99%9A%E6%8B%9F%E7%BD%91%E6%B8%B8&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"电子竞技\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%94%B5%E5%AD%90%E7%AB%9E%E6%8A%80&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"体育竞技\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E4%BD%93%E8%82%B2%E7%AB%9E%E6%8A%80&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"宅小说\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%AE%85%E5%B0%8F%E8%AF%B4&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"同人幻想\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%90%8C%E4%BA%BA%E5%B9%BB%E6%83%B3&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"原生幻想\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8E%9F%E7%94%9F%E5%B9%BB%E6%83%B3&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"轻松搞笑\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%BD%BB%E6%9D%BE%E6%90%9E%E7%AC%91&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"❀ 女 生 分 类 ❀\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代言情\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%8E%B0%E4%BB%A3%E8%A8%80%E6%83%85&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"都市情缘\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E9%83%BD%E5%B8%82%E6%83%85%E7%BC%98&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"总裁豪门\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%80%BB%E8%A3%81%E8%B1%AA%E9%97%A8&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"婚恋家庭\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%A9%9A%E6%81%8B%E5%AE%B6%E5%BA%AD&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"白领生涯\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%99%BD%E9%A2%86%E7%94%9F%E6%B6%AF&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"民国旧影\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%B0%91%E5%9B%BD%E6%97%A7%E5%BD%B1&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"娱乐巨星\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%A8%B1%E4%B9%90%E5%B7%A8%E6%98%9F&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"强势宠婚\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%BC%BA%E5%8A%BF%E5%AE%A0%E5%A9%9A&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古代言情\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8F%A4%E4%BB%A3%E8%A8%80%E6%83%85&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"古代情缘\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8F%A4%E4%BB%A3%E6%83%85%E7%BC%98&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"穿越架空\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%A9%BF%E8%B6%8A%E6%9E%B6%E7%A9%BA&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"女尊权谋\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%A5%B3%E5%B0%8A%E6%9D%83%E8%B0%8B&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"宫闱宅斗\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%AE%AB%E9%97%B1%E5%AE%85%E6%96%97&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"经商种田\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%BB%8F%E5%95%86%E7%A7%8D%E7%94%B0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"幻想言情\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%B9%BB%E6%83%B3%E8%A8%80%E6%83%85&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"仙侠奇缘\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E4%BB%99%E4%BE%A0%E5%A5%87%E7%BC%98&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"魔幻情缘\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E9%AD%94%E5%B9%BB%E6%83%85%E7%BC%98&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"穿越时光\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%A9%BF%E8%B6%8A%E6%97%B6%E5%85%89&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"末世危情\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%9C%AB%E4%B8%96%E5%8D%B1%E6%83%85&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"网配快穿\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%BD%91%E9%85%8D%E5%BF%AB%E7%A9%BF&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"浪漫青春\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%B5%AA%E6%BC%AB%E9%9D%92%E6%98%A5&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"青春校园\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E9%9D%92%E6%98%A5%E6%A0%A1%E5%9B%AD&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"唯美绝恋\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%94%AF%E7%BE%8E%E7%BB%9D%E6%81%8B&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"轻小说\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%BD%BB%E5%B0%8F%E8%AF%B4&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"衍生同人\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%A1%8D%E7%94%9F%E5%90%8C%E4%BA%BA&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"换身入替\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%8D%A2%E8%BA%AB%E5%85%A5%E6%9B%BF&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"青春日常\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E9%9D%92%E6%98%A5%E6%97%A5%E5%B8%B8&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"❀出版专区❀\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"短篇全部\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%9F%AD%E7%AF%87&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"儿童文学\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%84%BF%E7%AB%A5%E6%96%87%E5%AD%A6&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"影视剧本\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%BD%B1%E8%A7%86%E5%89%A7%E6%9C%AC&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"人物传记\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E4%BA%BA%E7%89%A9%E4%BC%A0%E8%AE%B0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"短篇小说\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%9F%AD%E7%AF%87%E5%B0%8F%E8%AF%B4&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"美文游记\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%BE%8E%E6%96%87%E6%B8%B8%E8%AE%B0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"生活随笔\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%94%9F%E6%B4%BB%E9%9A%8F%E7%AC%94&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"诗词散文\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%AF%97%E6%AD%8C%E6%95%A3%E6%96%87&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"评论文集\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E8%AF%84%E8%AE%BA%E6%96%87%E9%9B%86&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"经典名著\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%BB%8F%E5%85%B8%E5%90%8D%E8%91%97&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"经管励志\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%BB%8F%E7%AE%A1%E5%8A%B1%E5%BF%97&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"社科科普\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%A4%BE%E7%A7%91%E7%A7%91%E6%99%AE&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"其他出版\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%85%B6%E4%BB%96%E5%87%BA%E7%89%88&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"文史传记\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%96%87%E5%8F%B2%E4%BC%A0%E8%AE%B0&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"悬疑出版\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%82%AC%E7%96%91%E5%87%BA%E7%89%88&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"现代文学\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E7%8E%B0%E4%BB%A3%E6%96%87%E5%AD%A6&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"文学小说\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%96%87%E5%AD%A6%E5%B0%8F%E8%AF%B4&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"原创出版\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E5%8E%9F%E5%88%9B%E5%87%BA%E7%89%88&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}},\n{\"title\": \"情感小说\",\"url\": \"http://api.ieasou.com/api/bookapp/searchdzh.m?word=%E6%83%85%E6%84%9F%E5%B0%8F%E8%AF%B4&type=2&page_id={{page}}&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=c71b3fa8116bbfb1617fe655113be528202031df&appverion=1115&ch=blf1298_10928_001&session_id=-nEGwG-4MUZtO4c-8uVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=2&pushid=bbef69cfaca55486e580b709c59ff5ff&ptype=5&gender=1&userInitPay=3&birt=1630233177844&userNewMedia=0&instime=1630233176330&chType=3&recSw=1&appType=0\",\n\"style\": {\"layout_flexGrow\": 0.25,\n\"layout_flexBasisPercent\": -1\n}}\n]",
    "header": "",
    "jsLib": "",
    "lastUpdateTime": 1768359602349,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 950,
    "ruleBookInfo": {
      "tocUrl": "http://api.ieasou.com/api/bookapp/bookSummary.m?gid=@get:{gid}&nid=@get:{nid}&sort=1&size=1000&session_id=-nEGYU48h9ZiOcED3oVOOzJ&returnType=100&gsort=1&cid=eef_easou_book&version=002&os=android&udid=5f0523be952d7c668bc069ad38d9470ae15fc6c5&appverion=1122&ch=blf1298_12337_001&session_id=-nEGYU48h9ZiOcED3oVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=3&pushid=9f8b02370838a641dc4ddff894b98848&ptype=5&gender=0&userInitPay=3&birt=1660848272929&instime=1660848269464&instId=1660848269464&chType=3&bidType=0&recSw=1&appType=0"
    },
    "ruleContent": {
      "content": "$..content",
      "imageDecode": "",
      "imageStyle": "",
      "payAction": "",
      "sourceRegex": "",
      "title": "",
      "webJs": ""
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "author@put:{gid:gid}",
      "bookList": "all_book_items",
      "bookUrl": "http://api.ieasou.com/api/bookapp/bookSummary.m?nid={{$.nid}}&gid={{$.gid}}&sort=1&size=50&returnType=010&cid=eef_easou_book&vm=5.4.3&os=android&appverion=1131",
      "coverUrl": "imgUrl",
      "intro": "desc",
      "kind": "classes",
      "lastChapter": "lastChapterName",
      "name": "name@put:{nid:nid}",
      "wordCount": "wordCount"
    },
    "ruleToc": {
      "chapterList": "<js>\n  //showjname设置章节名显示卷名true or false\n  let obj = {showjname: false}\n  let $ = JSON.parse(String(result))\n  let array = []\n  $.volumes.forEach((booklet) => {\n  \t  java.put('jname',booklet.name)\n    array.push({ \n    \t    name:'◆◇'+String(booklet.name)+'◇◆',\n    \t    voltype:true\n    \t })\n    booklet.chapters.forEach((chapter) => {\nhref='http://api.ieasou.com/api/bookapp/chargeChapter.m?a=1&autoBuy=0&cid=eef_easou_book&version=002&os=android&udid=1c5b2618a57a0848e2510649dc1e03896f462284&appverion=1122&ch=blf1298_12337_001&session_id=-nEvkqSq_9ZyORN5OoVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=3&pushid=f97b7f81a269472c07708277b7c40b4f&ptype=5&gender=0&userInitPay=3&birt=1658424532472&instime=1658424529924&instId=1658424529924&chType=3&bidType=0&recSw=1&appType=0&gid='+java.get('gid')+'&nid='+chapter.nid+'&sort='+chapter.sort+'&gsort=0&sgsort=0&sequence=4&chapter_name='+chapter.chapter_name\n      array.push({\n        name: !java.get('jname')?chapter.chapter_name:((obj.showjname?'※'+java.get('jname')+'※ ':'').padStart(3,''))+chapter.chapter_name,\n        url: href,\n        time:\"本章字数:\"+String(chapter.wordCount)+\"字\",\n        voltype:false\n      })\n    })\n  })\n  array\n</js>",
      "chapterName": "name",
      "chapterUrl": "url",
      "isVolume": "voltype",
      "updateTime": "time"
    },
    "searchUrl": "http://api.ieasou.com/api/bookapp/searchdzh.m?word={{key}}&type=0&page_id=1&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=173a721b9bdfca6593765d05dc85e02b9a882541&appverion=1122&ch=blf1298_12337_001&session_id=-nEFnuCGf9ZXO3Vr3oVOOzJ&dzh=1&scp=0&appid=10001&utype=0&rtype=3&pushid=f617257c775dc02f0405ace9a62ede52&ptype=5&gender=0&userInitPay=3&birt=1662195839903&instime=1662195839480&instId=1662195839480&chType=3&bidType=0&recSw=1&appType=0",
    "variableComment": "",
    "weight": 1
  },
  {
    "bookSourceComment": "2025.1.8\nby墨殇",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "书坊文学",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.sfwx.com",
    "bookUrlPattern": "http://www.sfwx.com/\\d+/\\d+/",
    "customButton": false,
    "customOrder": 769,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"首页\",\"url\":\"/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1.00}},{\"title\":\"玄幻\",\"url\":\"/list1/<,{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠\",\"url\":\"/list2/<,{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市\",\"url\":\"/list3/<,{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史\",\"url\":\"/list4/<,{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"网游\",\"url\":\"/list5/<,{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻\",\"url\":\"/list6/<,{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"言情\",\"url\":\"/list7/<,{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"其他\",\"url\":\"/list8/<,{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"排行\",\"url\":\"/top/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1.00}},{\"title\":\"总榜\",\"url\":\"/top/<,all_0_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"月榜\",\"url\":\"/top/<,month_0_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"周榜\",\"url\":\"/top/<,week_0_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"完本\",\"url\":\"/full/<,0_{{page}}.html>\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
    "lastUpdateTime": 1787192102021,
    "respondTime": 64060,
    "ruleBookInfo": {
      "author": "@get:{a}",
      "coverUrl": "@get:{c}",
      "init": "@put:{n:\"[property$=book_name]@content\",\na:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nw:\".caption-bookinfo span.1@text\",\nl:\"[property$=latest_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"img@src\",\nt:\"text.全部章节@href\"}",
      "intro": "@get:{i}",
      "kind": "@get:{k}",
      "lastChapter": "@get:{l}",
      "name": "@get:{n}"
    },
    "ruleContent": {
      "content": ".font_max@html",
      "nextContentUrl": "text.下一章@href",
      "replaceRegex": "##\\s第\\(\\d+/\\d+\\)页|第\\(1/\\d+\\)页"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "span.0@text",
      "bookList": ".col-12 dl",
      "bookUrl": "a@href",
      "coverUrl": "img@src",
      "kind": ".book_other[1:2]@text##状态|更新时间|：",
      "lastChapter": ".book_other.-1@text##最新章节：",
      "name": "h3@text##\\[\\w+\\]"
    },
    "ruleToc": {
      "chapterList": ".book_list2 ul li a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": ".page-item@a@href"
    },
    "searchUrl": "/search.php?q={{key}}<,&p={{page}}>",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "💰 黑岩小说",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.heiyan.com",
    "bookUrlPattern": "",
    "customButton": false,
    "customOrder": 770,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "全部小说::/web/all/-1/-1/-1/-1/0/{{page}}/100\n免费小说::/web/all/-1/-1/1/-1/0/{{page}}/100\n收费小说::/web/all/-1/-1/0/-1/0/{{page}}/100\n完结小说::/web/all/-1/-1/-1/1/0/{{page}}/100\n连载小说::/web/all/-1/-1/-1/0/0/{{page}}/100\n悬疑全部::/web/all/1/-1/-1/-1/0/{{page}}/100\n悬疑免费::/web/all/1/-1/1/-1/0/{{page}}/100\n悬疑收费::/web/all/1/-1/0/-1/0/{{page}}/100\n悬疑完结::/web/all/1/-1/-1/1/0/{{page}}/100\n悬疑连载::/web/all/1/-1/-1/0/0/{{page}}/100\n历史全部::/web/all/3/-1/-1/-1/0/{{page}}/100\n历史免费::/web/all/3/-1/1/-1/0/{{page}}/100\n历史收费::/web/all/3/-1/0/-1/0/{{page}}/100\n历史完结::/web/all/3/-1/-1/1/0/{{page}}/100\n历史连载::/web/all/3/-1/-1/0/0/{{page}}/100\n军事全部::/web/all/5/-1/-1/-1/0/{{page}}/100\n军事免费::/web/all/5/-1/1/-1/0/{{page}}/100\n军事收费::/web/all/5/-1/0/-1/0/{{page}}/100\n军事完结::/web/all/5/-1/-1/1/0/{{page}}/100\n军事连载::/web/all/5/-1/-1/0/0/{{page}}/100\n玄幻全部::/web/all/6/-1/-1/-1/0/{{page}}/100\n玄幻免费::/web/all/6/-1/1/-1/0/{{page}}/100\n玄幻收费::/web/all/6/-1/0/-1/0/{{page}}/100\n玄幻完结::/web/all/6/-1/-1/1/0/{{page}}/100\n玄幻连载::/web/all/6/-1/-1/0/0/{{page}}/100\n奇幻全部::/web/all/14/-1/-1/-1/0/{{page}}/100\n奇幻免费::/web/all/14/-1/1/-1/0/{{page}}/100\n奇幻收费::/web/all/14/-1/0/-1/0/{{page}}/100\n奇幻完结::/web/all/14/-1/-1/1/0/{{page}}/100\n奇幻连载::/web/all/14/-1/-1/0/0/{{page}}/100\n仙侠全部::/web/all/7/-1/-1/-1/0/{{page}}/100\n仙侠免费::/web/all/7/-1/1/-1/0/{{page}}/100\n仙侠收费::/web/all/7/-1/0/-1/0/{{page}}/100\n仙侠完结::/web/all/7/-1/-1/1/0/{{page}}/100\n仙侠连载::/web/all/7/-1/-1/0/0/{{page}}/100\n武侠全部::/web/all/8/-1/-1/-1/0/{{page}}/100\n武侠免费::/web/all/8/-1/1/-1/0/{{page}}/100\n武侠收费::/web/all/8/-1/0/-1/0/{{page}}/100\n武侠完结::/web/all/8/-1/-1/1/0/{{page}}/100\n武侠连载::/web/all/8/-1/-1/0/0/{{page}}/100\n科幻全部::/web/all/10/-1/-1/-1/0/{{page}}/100\n科幻免费::/web/all/10/-1/1/-1/0/{{page}}/100\n科幻收费::/web/all/10/-1/0/-1/0/{{page}}/100\n科幻完结::/web/all/10/-1/-1/1/0/{{page}}/100\n科幻连载::/web/all/10/-1/-1/0/0/{{page}}/100\n游戏全部::/web/all/9/-1/-1/-1/0/{{page}}/100\n游戏免费::/web/all/9/-1/1/-1/0/{{page}}/100\n游戏收费::/web/all/9/-1/0/-1/0/{{page}}/100\n游戏完结::/web/all/9/-1/-1/1/0/{{page}}/100\n游戏连载::/web/all/9/-1/-1/0/0/{{page}}/100\n同人全部::/web/all/16/-1/-1/-1/0/{{page}}/100\n同人免费::/web/all/16/-1/1/-1/0/{{page}}/100\n同人收费::/web/all/16/-1/0/-1/0/{{page}}/100\n同人完结::/web/all/16/-1/-1/1/0/{{page}}/100\n同人连载::/web/all/16/-1/-1/0/0/{{page}}/100\n社会全部::/web/all/25/-1/-1/-1/0/{{page}}/100\n社会免费::/web/all/25/-1/1/-1/0/{{page}}/100\n社会收费::/web/all/25/-1/0/-1/0/{{page}}/100\n社会完结::/web/all/25/-1/-1/1/0/{{page}}/100\n社会连载::/web/all/25/-1/-1/0/0/{{page}}/100\n古言全部::/web/all/37/-1/-1/-1/0/{{page}}/100\n古言免费::/web/all/37/-1/1/-1/0/{{page}}/100\n古言收费::/web/all/37/-1/0/-1/0/{{page}}/100\n古言完结::/web/all/37/-1/-1/1/0/{{page}}/100\n古言连载::/web/all/37/-1/-1/0/0/{{page}}/100",
    "lastUpdateTime": 1687369891357,
    "loginUrl": "/accounts/login",
    "respondTime": 1580,
    "ruleBookInfo": {
      "author": "//strong/text()",
      "coverUrl": "//*[@class=\"book-cover\"]/@src",
      "intro": "//*[@class=\"note\"]/text()",
      "kind": "//*[@class=\"cate\"]/a/text()",
      "lastChapter": "//h4[1]/a/text()<js>result.replace(\">>\",\"\")</js>",
      "name": "//*[@class=\"hd\"]/h1/text()",
      "tocUrl": "//*[@class=\"read\"]/@href"
    },
    "ruleContent": {
      "content": "$.chapter.htmlContent<js>result.replace(/<.*?>/g,'').replace(/\\r/g,'\\n　　')</js>"
    },
    "ruleExplore": {
      "author": "//a[@class=\"author\"]/text()",
      "bookList": "//*[@id=\"resultDiv\"]/tr",
      "bookUrl": "//*[@class=\"title\"]/@href",
      "coverUrl": "//*[@class=\"title\"]/@href<js>result.replace(/.*\\/(\\d+)/,\"https://b.heiyanimg.com/book/$1.jpg@!bm?1\")</js>",
      "intro": "",
      "kind": "//*[@class=\"time\"]/text()",
      "lastChapter": "//*[@class=\"chapter\"]/text()",
      "name": "//*[@class=\"title\"]/text()"
    },
    "ruleSearch": {
      "author": "$.authorname",
      "bookList": "$.data.content[*]",
      "bookUrl": "$.id@js:'https://www.heiyan.com/book/'+result",
      "coverUrl": "$.iconUrlSmall",
      "intro": "$.introduce",
      "kind": "$.sortname",
      "lastChapter": "$.lastchaptername",
      "name": "$.name"
    },
    "ruleToc": {
      "chapterList": ":(?s)(\\d+)\" class=\"(isvip)?[^\"]*name[^>]*>([^<]*)",
      "chapterName": "$2$3",
      "chapterUrl": "https://a.heiyan.com/ajax/chapter/content/$1"
    },
    "searchUrl": "https://search.heiyan.com/web/search?queryString={{key}}&highlight=false&page={{page}}",
    "weight": 100
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "7wav",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.7wav.com",
    "customButton": false,
    "customOrder": 771,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"分类(标签)\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻 | 7051本\",\"url\":\"/sort/1_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"武侠 | 1091本\",\"url\":\"/sort/2_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"言情 | 26531本\",\"url\":\"/sort/3_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"穿越 | 21409本\",\"url\":\"/sort/4_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"都市 | 8786本\",\"url\":\"/sort/5_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"科幻 | 651本\",\"url\":\"/sort/6_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"网游 | 534本\",\"url\":\"/sort/7_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"恐怖 | 586本\",\"url\":\"/sort/8_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"耽美 | 46039本\",\"url\":\"/sort/9_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"校园 | 5702本\",\"url\":\"/sort/10_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"高辣 | 22900本\",\"url\":\"/sort/11_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"腹黑 | 30本\",\"url\":\"/sort/12_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"种田 | 2406本\",\"url\":\"/sort/13_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"高干 | 4566本\",\"url\":\"/sort/14_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"百合 | 4074本\",\"url\":\"/sort/15_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"其他 | 18011本\",\"url\":\"/sort/16_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"排行榜(标签)\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"月点击\",\"url\":\"/top/monthvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"周点击\",\"url\":\"/top/weekvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"总点击\",\"url\":\"/top/allvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "lastUpdateTime": 1722437914335,
    "respondTime": 8710,
    "ruleBookInfo": {
      "author": "class.xx@tag.li.2@tag.a@text",
      "coverUrl": "class.xsfm@tag.img@src",
      "intro": "class.jianjie bk@text",
      "kind": "class.xx@tag.li.1@tag.a@text",
      "lastChapter": "class.xx@tag.li.3@tag.a@text",
      "name": "class.xx@tag.li.0@text",
      "tocUrl": "text.查看更多章节@href"
    },
    "ruleContent": {
      "content": "id.nr@html\n@js:java.t2s(result)",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {
      "author": "class.tjxs@tag.span.1@tag.a@text",
      "bookList": "class.xbk",
      "bookUrl": "class.xsm@tag.a@href",
      "coverUrl": "class.tjimg@tag.img@src",
      "intro": "class.tjxs@tag.span.2@text",
      "name": "class.xsm@tag.a@text",
      "wordCount": "class.tjrs@text"
    },
    "ruleSearch": {
      "author": "tag.a.2@text",
      "bookList": "class.fk@tag.li",
      "bookUrl": "tag.a.1@href",
      "checkKeyWord": "我的奥薇塔公主",
      "kind": "tag.a.0@text",
      "name": "tag.a.1@text"
    },
    "ruleToc": {
      "chapterList": "\n<js>\nlist=[]\nlis=java.getElements('class.lb fk@tag.li@tag.a')\nfor(i in lis){\n\tsurl=lis[i].attr('href')\n\tif(surl!=''){\n\t\ttemp={\n\t\t\t\"name\":lis[i].text(),\n\t\t\t\"surl\":surl\n\t\t\t}\n\t\t\tlist.push(temp)\n\t\t}\n\t\tsurl=''\n\t}\n\t//java.log(JSON.stringify(list))\n\tlist\n</js>",
      "chapterName": "name",
      "chapterUrl": "surl",
      "nextTocUrl": "<js>\nlist=[]\nif(/_/.test(baseUrl)==0){\nlis=java.getElements('class.fy@class.showpage r3.0@tag.a')\nfor(i in lis){\n\tif(lis[i].attr('href')!=null){\n\t\tlist.push(lis[i].attr('href'))\n\t\t}\n\t}}\n\tlist\n</js>"
    },
    "searchUrl": "/s.php,{\n  \"body\": \"type=articlename&s={{key}}&submit=\",\n  \"charset\": \"GBK\",\n  \"method\": \"POST\"\n}\n",
    "weight": 0
  },
  {
    "bookSourceComment": "登录未测试，没有账号，不知道付费章可不可以看\"",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "悦读小说",
    "bookSourceType": 0,
    "bookSourceUrl": "https://hareading.com",
    "customButton": false,
    "customOrder": 772,
    "enabled": true,
    "enabledCookieJar": false,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "古代::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=12\"}\n實境::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=11\"}\n奇幻::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=1\"}\n靈異::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=2\"}\n言情::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=3\"}\n都會::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=4\"}\n武俠::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=5\"}\n耽美::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=6\"}\n同人::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=7\"}\n懸疑::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=8\"}\n推理::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=9\"}\n科幻::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=10\"}\n百合::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=13\"}\n成人::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=14\"}\n宮鬥::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=15\"}\n網遊::https://hareading.com/website/getNewChaptersCache,{\"method\":\"POST\",\"body\": \"classifyId=16\"}",
    "lastUpdateTime": 1785685064096,
    "loginUrl": "https://hareading.com/login",
    "respondTime": 1703,
    "ruleBookInfo": {
      "coverUrl": "//*[@property=\"og:image\"]/@content",
      "intro": "//*[@property=\"og:description\"]/@content",
      "kind": "<js>list=result.match(/var classify = ([\\s\\S]+?);/)[1];</js>\n$.[*].classifyName",
      "name": "//*[@property=\"og:title\"]/@content",
      "tocUrl": "https://hareading.com/books/getChapterList,{\n\"method\": \"POST\",\n\"body\": \"bookId={{baseUrl.match(/(\\d+)/)[1]}}\"\n}",
      "wordCount": "@js:unescape(result.match(/\"overStatus\":\".*? : ([^\"]+)\"/)[1].replace(/\\\\/g,'%'))"
    },
    "ruleContent": {
      "content": "$.chapterArticle\n<js>doc=org.jsoup.Jsoup.parse(result)\ndoc.select(\".articleHide\").remove();\ndoc</js>"
    },
    "ruleExplore": {
      "author": "$.authorName",
      "bookList": "$.[*].data[*]",
      "bookUrl": "https://hareading.com/books?bookId={{$.bookId}}",
      "coverUrl": "https://storage.googleapis.com/something.hareading.com/hareading/assets/uploads/images/{{$.bookPhoto}}",
      "intro": "$.bookDescription",
      "kind": "$.classify[*].classifyName",
      "lastChapter": "$.chapterName",
      "name": "$.bookName"
    },
    "ruleSearch": {
      "author": "$.authorName",
      "bookList": "$.searchResult.data",
      "bookUrl": "/books?bookId={$.bookId}",
      "coverUrl": "https://storage.googleapis.com/something.hareading.com/hareading/assets/uploads/images/{$.bookPhoto}",
      "intro": "$.bookDescription",
      "name": "$.bookName"
    },
    "ruleToc": {
      "chapterList": "$.[*]",
      "chapterName": "$.chapterName",
      "chapterUrl": "https://hareading.com/chapters/getArticle,{\n\"method\": \"POST\",\n\"body\": \"chapterId={{$.chapterId}}&isAdult=1\"}",
      "isVip": "$.chapterCoinStatus\n@js:result.indexOf('免費')>-1?'':1",
      "updateTime": "{{$.chapterDatePublish}}•{{$.chapterCoinStatus}}"
    },
    "searchUrl": "https://hareading.com/search/getSearchResult,{\n\"method\": \"POST\",\n\"body\": \"datas[searchString]={{key}}&datas[page]={{page}}&datas[pageRow]=20\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "免网页验证，可选国内专线：\nhttps://www.banzhu99999.com\nbanzhu22222.com\n发布页：\nhttp://diyibanzhu.app\nhttp://diyibanzhu.net\n \n本次处理多余无用规则，更换正文规则，原来沿用的是任尚仁大佬的正文规则，看不懂\n    js模板来自版主178或永远的神，用的版主444免验证专线，简化发现和大量规则",
    "bookSourceGroup": "杂乱无章",
    "bookSourceName": "📪第一版主820",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.bz88888.net////##",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 773,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[{\"title\":\"全部\",\"url\":\"/shuku/0-lastupdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"连载中\",\"url\":\"/shuku/0-lastupdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"已完本\",\"url\":\"/shuku/0-lastupdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总人气\",\"url\":\"/shuku/0-allvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月人气\",\"url\":\"/shuku/0-monthvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"字数\",\"url\":\"/shuku/0-size-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"新书\",\"url\":\"/shuku/0-postdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-lastupdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠仙侠\",\"url\":\"/shuku/2-lastupdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-lastupdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-lastupdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-lastupdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-lastupdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-lastupdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\" \",\"url\":\" \",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
    "header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; MI 8 Lite Build/OPM1.171019.019) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/78.0.3904.108 UCBrowser/13.2.0.1100 Mobile Safari/537.36\"}",
    "lastUpdateTime": 1771021937932,
    "loginCheckJs": "",
    "loginUi": "",
    "loginUrl": "",
    "respondTime": 86205,
    "ruleBookInfo": {
      "author": "",
      "coverUrl": "",
      "init": "",
      "intro": ".bd.2@text",
      "kind": "",
      "lastChapter": "ul.list.0@li.0@text",
      "name": "h1@text",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "<js>\nfunction x(a, b) {\n\tresult = String(result).replace(a, b);\n}\n//debug\nfunction d(debug) {\n\tjava.log(debug);\n\tjava.log(result);\n}\n\n//同时加载多章时，自动验证成功后有的页面加载失败时重新获取\nif(/<div\\s*class=\"title\"\\s*>.*1234/.test(src)){\n \t//重新设置正文解析内容\n\tjava.setContent(java.ajax(baseUrl));\n}\n\n//获取正文内容\nresult = java.getString('.page-content@tag.p.0@html');\n\n//大概第四页正文有切割，需要调接口获取这一页剩余正文\nif (/\\$.post\\('',{'j':'1'}/.test(src)) {\n\tresult += java.ajax(String(baseUrl + ',' + JSON.stringify({\n\t\t\"method\": \"POST\",\n\t\t\"body\": \"j=1\"\n\t})))\n}\n\n//d(\"正文\"+baseUrl)\n\n//有问题修改下面正则 两个br标签换行显示\nx(/((\\s*)<br>\\n?){2}/g,\"<br><br>\");\n//d('1.0:')\nx(/<script.*<\\/script>/g,\"\");\n\ntry {\n\t// Aes解密\n\tsecret = src.match(/=\\s*secret\\(\\s*['\"](.+?)['\"],[\\s]*['\"](.+?)['\"],[^);]*?/);\n\tstring = secret[1]\n\tcode = java.md5Encode(secret[2]);\n\tiv = code.substring(0, 16);\n\tkey = code.substring(16);\n\t//java.log(baseUrl + \" Aes解密ok：\" + code + \"\\n\" + iv + \"\\n\" + key)\n\tresult = java.createSymmetricCrypto(\"AES/CBC/PKCS7Padding\", key, iv).decryptStr(string);\n} catch (err) {\n\ttry {\n\t\t// 乱序恢复\n\t\tns = java.base64Decode(src.match(/var ns='(.+?)';/)[1]).split(',');\n\t\t//java.log(baseUrl + \"乱序恢复ok\")\n\t\tparagraphArr = result.split('<br><br>');\n\t\tresult = \"\";\n\t\tfor (i = 1; i <= paragraphArr.length; i++) {\n\t\t\tresult += paragraphArr[ns[i] - ns[0]] + '<br><br>';\n\t\t}\n\t} catch (err) {\n\t\t//java.log(baseUrl + \"乱序恢复Aes解密no\")\n\t}\n}\n\n//初始化图片链接\nx(/(<img\\s+)data\\-cfsrc=\"[^\"]+\"/g,\"$1\");\nx(/[\\r\\n]?[\\t ]*<img .+?toimg\\/data\\/([^\\.]+)[^>]+>[\\t ]*[\\r\\n]?/g, \"#$1#\");\n\n//初始化字体格式的文字,匹配<i>&#xe800</i>\nx(/<i>(.*?)<\\/i>/g, function(str, p1) {\n\t//java.log(p1.charCodeAt().toString(16));\n\t//返回16进制，例：p1=&#xe800 返回格式#e800#\n\treturn '#' + p1.charCodeAt().toString(16) + '#'\n})\n//d('2.0:')\n\n//转换空格\nx(/&nbsp;/g, ' ');\n//初始化分段准备\nx(/[\\t  ]{2,2}/g, \"　\");\n\n//去掉标签里的属性\nx(/(\\<|&lt;)([^\\>]*?)(\\s|&nbsp;)[^\\>]*(\\>|&gt;)/g, \"<$2>\");\n//d('2.1:')\n//段落换行\nx(/\\s*(\\n|<br\\/?>)+\\s*(　{2,})?/gi, \"\\r\\n\");\n//d('3.0:')\n//去掉不需要的标签\nx(/([\\r\\n　]*\\<\\/?([A-Za-z]*)?\\>[\\r\\n　]*)/gi, \"\");\n\n//引号替换\nx(/‘/g, \"『\");\nx(/’/g, \"』\");\nx(/“/g, \"「\");\nx(/”/g, \"」\");\n\nif (/(Undefined|(^\\s*$))/.test(result)) {\n\tresult =\n\t\t\"<br/>　　网站分页有时有问题不可用，速度慢的时候就会是现在这样了，网站速度快的时候就没事了。<br/>　　换个时间刷新试试！！！<br/>　　换个时间刷新试试！！！<br/>　　换个时间刷新试试！！！<br/>\" + result;\n}\n\n//d(\"正文\"+baseUrl)\n\"\\r\\n\" + result + \"hereispagebreak\";\n</js>",
      "imageStyle": "TEXT",
      "nextContentUrl": ".chapterPages@tag.a!0@href@js:\nfor (let i in result) {\n\tresult[i] = String(result[i]).replace(/.+?\\('\\d+','\\d+','(\\d+)','(\\d+)'\\).+?/, (str, p1, p2) => p1 + '_' + p2 + '.html');\n}\nresult",
      "replaceRegex": "<js>\nfunction d(debug) {\n\tjava.log(debug);\n\tjava.log(result);\n}\n/*\nfunction x(a, b, c) {\n\tif (c) {\n\t\twhile (c.exec(result)) {\n\t\t\treplace(a, b)\n\t\t}\n\t\treturn false\n\t}\n\treplace(a, b)\n}\n*/\nfunction x(a, b, c) {\n\tif (!c) return replace(a, b);\n\twhile (c.exec(result)) {\n\t\treplace(a, b)\n\t}\n}\nfunction replace(a, b) {\n\tresult = String(result).replace(a, b);\n}\n\n// 拼音还原\n// 逐条添加：x(/#正则#/gi,\"文本\");\nx(/#1040782805#/gi,\"奸\");\nx(/#1063785572#/gi,\"搞\");\nx(/#1082275499#/gi,\"台\");\nx(/#1218400718#/gi,\"虐\");\nx(/#1697595086#/gi,\"斩\");\nx(/#1801354585#/gi,\"勃\");\nx(/#1810002091#/gi,\"九\");\nx(/#1947937898#/gi,\"粉\");\nx(/#2022721869#/gi,\"粉\");\nx(/#2033008053#/gi,\"撸\");\nx(/#2063259833#/gi,\"色\");\nx(/#2090369734#/gi,\"熟\");\nx(/#2173857009#/gi,\"高\");\nx(/#2174754224#/gi,\"暴\");\nx(/#2276251664#/gi,\"嫩\");\nx(/#2293535402#/gi,\"兽\");\nx(/#2444947917#/gi,\"性\");\nx(/#2471389451#/gi,\"湿\");\nx(/#2525826615#/gi,\"狗\");\nx(/#2548022544#/gi,\"狗\");\nx(/#2553168545#/gi,\"穴\");\nx(/#2633701054#/gi,\"棒\");\nx(/#2761875847#/gi,\"胸\");\nx(/#2769203094#/gi,\"未\");\nx(/#2781961287#/gi,\"厥\");\nx(/#2811411890#/gi,\"亡\");\nx(/#2965616717#/gi,\"爱\");\nx(/#3043454467#/gi,\"日\");\nx(/#3089649511#/gi,\"宫\");\nx(/#3296363576#/gi,\"欲\");\nx(/#3309926634#/gi,\"宰\");\nx(/#3342690501#/gi,\"舌\");\nx(/#3382216428#/gi,\"义\");\nx(/#3746262645#/gi,\"舔\");\nx(/#3893173869#/gi,\"介\");\nx(/#4006928252#/gi,\"吞\");\nx(/#4017050851#/gi,\"交\");\nx(/#0678663477#/gi,\"情\");\nx(/#5736430795#/gi,\"内\");\nx(/#5110754259#/gi,\"吸\");\nx(/#9763512263#/gi,\"美\");\nx(/#0923672614#/gi,\"死\");\nx(/#5318824731#/gi,\"妈\");\nx(/#6197424834#/gi,\"中\");\nx(/#9925956069#/gi,\"处\");\nx(/#0486110525#/gi,\"水\");\nx(/#6378369235#/gi,\"胡\");\nx(/#5732450242#/gi,\"母\");\nx(/#8087788059#/gi,\"国\");\nx(/#6259252852#/gi,\"杀\");\nx(/#6514831790#/gi,\"血\");\nx(/#7228562021#/gi,\"纪\");\nx(/#7051993783#/gi,\"硬\");\nx(/#9636759436#/gi,\"药\");\nx(/#6789528781#/gi,\"学\");\nx(/#5213317466#/gi,\"具\");\nx(/#9134848937#/gi,\"做\");\nx(/#5910985788#/gi,\"足\");\nx(/#7074467222#/gi,\"逼\");\nx(/#5265224411#/gi,\"干\");\nx(/#9860153795#/gi,\"麻\");\nx(/#4933790542#/gi,\"枪\");\nx(/#8698737337#/gi,\"奶\");\nx(/#7051410763#/gi,\"马\");\nx(/#4740869798#/gi,\"操\");\nx(/#8478694653#/gi,\"主\");\nx(/#6855685283#/gi,\"摇\");\nx(/#6281647881#/gi,\"流\");\nx(/#0423651377#/gi,\"插\");\nx(/#4808579862#/gi,\"臀\");\nx(/#5946892177#/gi,\"淫\");\nx(/#4481675898#/gi,\"荡\");\nx(/#8280163404#/gi,\"蛋\");\nx(/#9308659858#/gi,\"射\");\nx(/#0961296593#/gi,\"弹\");\nx(/#5229950952#/gi,\"肉\");\nx(/#5260398634#/gi,\"指\");\nx(/#6050660618#/gi,\"屁\");\nx(/#5969522288#/gi,\"亲\");\nx(/#5429058065#/gi,\"弟\");\nx(/#5366734122#/gi,\"共\");\nx(/#6957748176#/gi,\"尸\");\nx(/#9928120606#/gi,\"腿\");\nx(/#0551252288#/gi,\"龟\");\nx(/#7618693335#/gi,\"呻\");\nx(/#0975893408#/gi,\"吟\");\nx(/#0026372214#/gi,\"丝\");\nx(/#5318162318#/gi,\"贱\");\nx(/#0720742117#/gi,\"乳\");\nx(/#4488426878#/gi,\"缝\");\nx(/#6768988724#/gi,\"鸡\");\nx(/#0092238155#/gi,\"阴\");\nx(/#0551722925#/gi,\"唇\");\nx(/#6534003186#/gi,\"蜜\");\nx(/#5518664754#/gi,\"骚\");\nx(/#4668655063#/gi,\"潮\");\nx(/#4766000693#/gi,\"精\");\nx(/#8666880661#/gi,\"凌\");\nx(/#5105645092#/gi,\"温\");\nx(/#5329628684#/gi,\"辱\");\nx(/#0473556214#/gi,\"含\");\nx(/#4472054519#/gi,\"咪\");\nx(/#7508904751#/gi,\"帮\");\nx(/#0783213298#/gi,\"丁\");\nx(/#9821815185#/gi,\"裸\");\nx(/#0146287633#/gi,\"露\");\nx(/#0756494362#/gi,\"偷\");\nx(/#5710915044#/gi,\"童\");\nx(/#8954155954#/gi,\"炮\");\nx(/#5004143384#/gi,\"乱\");\nx(/#9829762678#/gi,\"妇\");\nx(/#4538628495#/gi,\"挤\");\nx(/#9173059916#/gi,\"毒\");\nx(/#9720548295#/gi,\"杜\");\nx(/#7130632296#/gi,\"席\");\nx(/#8993789017#/gi,\"洞\");\nx(/#5758773674#/gi,\"棍\");\nx(/#5245263419#/gi,\"轮\");\nx(/#0261725863#/gi,\"泽\");\nx(/#9572021917#/gi,\"尿\");\nx(/#8926554707#/gi,\"炸\");\nx(/#0351216125#/gi,\"坑\");\nx(/#0050897572#/gi,\"涛\");\nx(/#4436421269#/gi,\"党\");\nx(/#8997927012#/gi,\"灭\");\nx(/#8592042303#/gi,\"腐\");\nx(/#6560841485#/gi,\"伦\");\nx(/#1607055014#/gi,\"酸\");\nx(/#2158558763#/gi,\"幼\");\nx(/#8051876761#/gi,\"漪\");\nx(/#4704630913#/gi,\"茎\");\nx(/#0519063805#/gi,\"秽\");\nx(/#8861933232#/gi,\"婊\");\nx(/#8261828414#/gi,\"肛\");\nx(/#8025291368#/gi,\"锦\");\nx(/#0813524594#/gi,\"妓\");\nx(/#2729628100#/gi,\"颅\");\nx(/#4510436554#/gi,\"菊\");\nx(/#1024850854#/gi,\"嫡\");\n//字体格式文字替换\n//替换格式规则  x(/#正则#/gi,\"文本\");\n//例：一般在字体编辑器复制出来对应的编号 uniE800或者$E800为\"的\"这个字,  正则替换格式：\n\n//净化替换\nx(/([^\\n]*?(手.?机.?看.?[小片](.?[书说])?|搜?.{0,4}索?.{0,4}第.{0,4}一.{0,4}版.{0,4}主)[^\\n]*)/gi,\"\");\nx(/([^\\n]*([最樶]新.?)?[地网].?[址祉阯].?[发發沷].?[布怖].?[页頁]?[\\:：]?[1１4４]?[^\\n]*)/g,\"\");\nx(/([^\\n]*([最寻找发].{0,3}[新回].{0,3}[网地{0,3}[址阯])[^\\n]*)/gi,\"\");\nx(/([^\\n]*\\\\u5730\\\\u5740\\\\u767c\\\\u5e03\\\\u9801[^\\n]*)/gi,\"\");\nx(/([^\\n]*[1１][a-zA-Zａ-ｚＡ-Ｚ][2２][a-zA-Zａ-ｚＡ-Ｚ][3３][a-zA-Zａ-ｚＡ-Ｚ]([4４][a-zA-Zａ-ｚＡ-Ｚ])?[^<\\r\\n]*)/gi,\"\");\nx(/([^\\n]*ＹＹＤＳＴxＴ(．ＣＣ)?[^\\n]*)/,\"\");\nx(/(.*[0０][1１][bЪｂ][ｚz].*)/gi,\"\");\nx(/(.*[真发即百更].?[正送可度多].?[网电获搜精].?[站子得索彩].?\\s?[请邮最第小].*)/gi,\"\");\nx(/([^<\\n]*?手.机.看.小.[书说][^\\n]*)/gi,\"\");\nx(/(ｂｚ２０２１)[^<\\n]+/gi,\"\");\nx(/(手机阅读小说：７７７８８７７[^\\n]*)/gi,\"\");\nx(/(diyibanzhu@gmail.com)/gi,\"\");\n(/((（待续）|(地~址~)|(手机看片))[^\\n]*)/gi,\"\");\nx(/([^\\n]*#chao#.+?#lian#.+?#jie#[^\\n]*)/gi,\"\");\nx(/([^\\n]*[wШЩ]*?.*[c℃ㄈＣ][oО⊙ò〇Ο０][mмМＭΜ][^\\n]*)/gi,\"\");\nx(/([^\\n]*使用chrome谷歌浏览[^\\n]*)/gi,\"\");\nx(/（苹果手机使用.+/g,\"\");\nx(/.*((５|６|７|８)X)+.*/g,\"\");\nx(/www.diyibanzhu.net/g,\"\");\n\n//分页后的断行还原\nx(/([\\r\\n]?\\s*(hereispagebreak)[\\r\\n]?\\s*)/gi, \"\");\n\n//35字换行排版恢复\nx(/([\\r\\n])((tjjtds)?.{33,39}[，、．～…“：；‘—『「\\u4e00-\\u9fa5][\\r\\n])\\s{2}/gi, \"$1$2tjjtds\", /([\\r\\n])((tjjtds)?.{33,39}[，、．～…“：；‘—『「\\u4e00-\\u9fa5][\\r\\n])\\s{2}/gi);\n\n// 换行修复\n//x(/([\\r\\n])((tjjtds)?.{33,39}[，、．～…“：；‘—『「\\u4e00-\\u9fa5][\\r\\n])\\s{2}/gi, \"$1$2tjjtds\", 1);\n\nx(/[\\r\\n](tjjtds|　+?[\\r\\n])/g, \"\");\n//为防万一，去掉汉字之间的空格\nx(/([\\u4e00-\\u9fa5])[ 　]+([\\u4e00-\\u9fa5])/g, '$1$2');\n//去掉多余换行\nx(/[\\r\\n]{2,}/g, \"\\r\\n\")\n\nx(/([「][^」]+)\\s*\\n\\s*/g, \"$1\", /([「][^」]+)\\s*\\n\\s*/g);\nx(/([\\u4e00-\\u9fa5][『「][^，。？！：；]{1,12}[」』])\\s+/g, \"$1\");\nx(/([。！？…])([『「])/g, \"$1\\r\\n　　$2\");\n// 日期换行\nfunction dateBreak(){\n  let reg = /^.{1,100}/;\n  let r100 = result.match(reg);\n  if(r100 && r100[0]){\n    let str = r100[0];\n    let reg2 = /(\\d+年\\d+月\\d+日)/\n    if(reg2.test(str)){\n      result = result.replace(reg,str.replace(reg2,'$1\\r\\n'));\n    }\n  }\n}\ndateBreak()\nx(/([\\u4e00-\\u9fa5])\\s+([\\u4e00-\\u9fa5])/g,'$1$2');\nresult;\n</js>"
    },
    "ruleExplore": {
      "author": "",
      "bookList": "",
      "bookUrl": "",
      "coverUrl": "",
      "intro": "",
      "kind": "",
      "lastChapter": "",
      "name": "",
      "wordCount": ""
    },
    "ruleSearch": {
      "author": ".info.0@text##\\s+字数：.*",
      "bookList": ".column-2 ",
      "bookUrl": ".name@href",
      "checkKeyWord": "",
      "coverUrl": "@js:'http://m.diyibanzhu.quest/images/jipin-default.jpg'",
      "intro": "",
      "kind": "span.0@text&&p.info.1@text##更新：",
      "lastChapter": ".update@a@text",
      "name": ".name@text",
      "wordCount": ".info@span@text##字数："
    },
    "ruleToc": {
      "chapterList": ".chapter-list.1@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": "text.下页@href"
    },
    "searchUrl": "@js:\ntry {\n\tdata = JSON.parse(source.getVariable())\n} catch (err) {\n\tdata = {}\n}\nurl = data.url || baseUrl;\nurl + \"s.php,\" + JSON.stringify({\n\t\"charset\": \"GBK\",\n\t\"method\": \"POST\",\n\t\"body\": \"objectType=2&type=articlename&s=\" + key + \"&page=\" + page\n})",
    "weight": 0
  },
  {
    "bookSourceComment": "搜索无限弹出cloudflare验证请更换成真实UA\n最新地址获取 http://diyibanzhu.net",
    "bookSourceGroup": "🔞",
    "bookSourceName": "🔞第一版主 banzhu",
    "bookSourceType": 0,
    "bookSourceUrl": "https://www.diyibanzhu.me/",
    "bookUrlPattern": "",
    "concurrentRate": "",
    "customButton": false,
    "customOrder": 774,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "[\n{\"title\":\"🚫小说状态---全部🚫\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"📫新书\",\"url\":\"/wap.php?action=shuku&tid=&over=&order=3&uid=&totalresult=13564&pageno={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-postdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"仙侠武侠\",\"url\":\"/shuku/2-postdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-postdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-postdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-postdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-postdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-postdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"📫月榜\",\"url\":\"/shuku/0-monthvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-monthvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"仙侠武侠\",\"url\":\"/shuku/2-monthvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-monthvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-monthvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-monthvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-monthvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-monthvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"📫总榜\",\"url\":\"/shuku/0-allvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-allvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"仙侠武侠\",\"url\":\"/shuku/2-allvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-allvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-allvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-allvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-allvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-allvisit-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"📫更新\",\"url\":\"/wap.php?action=shuku&tid=&over=&order=&uid=&totalresult=13564&pageno={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-lastupdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"仙侠武侠\",\"url\":\"/shuku/2-lastupdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-lastupdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-lastupdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-lastupdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-lastupdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-lastupdate-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"📫字数\",\"url\":\"/shuku/0-size-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-size-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"仙侠武侠\",\"url\":\"/shuku/2-size-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-size-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-size-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-size-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-size-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-size-0-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"🚫小说状态---连载中🚫\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"📫新书\",\"url\":\"/shuku/0-postdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-postdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"仙侠武侠\",\"url\":\"/shuku/2-postdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-postdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-postdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-postdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-postdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-postdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\" 📫月榜\",\"url\":\"/shuku/0-monthvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-monthvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"仙侠武侠\",\"url\":\"/shuku/2-monthvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-monthvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-monthvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-monthvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-monthvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-monthvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"📫总榜\",\"url\":\"/shuku/0-allvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-allvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"仙侠武侠\",\"url\":\"/shuku/2-allvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-allvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-allvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-allvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-allvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-allvisit-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"📫更新\",\"url\":\"/shuku/0-lastupdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-lastupdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"仙侠武侠\",\"url\":\"/shuku/2-lastupdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-lastupdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-lastupdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-lastupdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-lastupdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-lastupdate-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"📫字数\",\"url\":\"/shuku/0-size-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-size-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"仙侠武侠\",\"url\":\"/shuku/2-size-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-size-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-size-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-size-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-size-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-size-1-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"🚫小说状态---已完本🚫\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"📫新书\",\"url\":\"/shuku/0-postdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-postdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"仙侠武侠\",\"url\":\"/shuku/2-postdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-postdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-postdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-postdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-postdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-postdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"📫月榜\",\"url\":\"/shuku/0-monthvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-monthvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"仙侠武侠\",\"url\":\"/shuku/2-monthvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-monthvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-monthvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-monthvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-monthvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-monthvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"📫总榜\",\"url\":\"/shuku/0-allvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-allvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"仙侠武侠\",\"url\":\"/shuku/2-allvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-allvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-allvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-allvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-allvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-allvisit-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"📫更新\",\"url\":\"/shuku/0-lastupdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-lastupdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"仙侠武侠\",\"url\":\"/shuku/2-lastupdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-lastupdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-lastupdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-lastupdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-lastupdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-lastupdate-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"📫字数\",\"url\":\"/shuku/0-size-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"玄幻奇幻\",\"url\":\"/shuku/1-size-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"仙侠武侠\",\"url\":\"/shuku/2-size-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"都市言情\",\"url\":\"/shuku/3-size-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"穿越历史\",\"url\":\"/shuku/4-size-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"科幻灵异\",\"url\":\"/shuku/5-size-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.24,\"layout_flexGrow\":0.32}},\n{\"title\":\"藏经阁\",\"url\":\"/shuku/6-size-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"其他类别\",\"url\":\"/shuku/7-size-2-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.45,\"layout_flexGrow\":0.32}},\n{\"title\":\"↑↑▲▲▲▲↑↑\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}}\n]",
    "header": "{\n    \"User-Agent\": \"Mozilla/5.0 (Linux; Android 12; HarmonyOS; HBP-AL00; HMSCore 6.14.0.302) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5735.196 HuaweiBrowser/15.0.4.312 Mobile Safari/537.36\"\n}",
    "lastUpdateTime": 1746069070480,
    "loginCheckJs": "",
    "loginUi": "https://m.diyibanzhu.me/wap.php?action=article&id=767849",
    "loginUrl": "",
    "respondTime": 16440,
    "ruleBookInfo": {
      "author": "",
      "init": "",
      "intro": "//div[@class=\"mod book-intro\"]/div/text()",
      "kind": "",
      "lastChapter": "",
      "name": "",
      "wordCount": ""
    },
    "ruleContent": {
      "content": "<js>\nfunction x(a, b) {\n\tresult = String(result).replace(a, b);\n}\nresult = java.getString('id.nr1@html');\nx(/<em class=\"n_1\"><\\/em>/g,'<em class=\"n_1\">男<\\/em>');\nx(/<em class=\"n_2\"><\\/em>/g,'<em class=\"n_2\">人<\\/em>');\nx(/<em class=\"n_3\"><\\/em>/g,'<em class=\"n_3\">啊<\\/em>');\nx(/<em class=\"n_4\"><\\/em>/g,'<em class=\"n_4\">爱<\\/em>');\nx(/<em class=\"n_5\"><\\/em>/g,'<em class=\"n_5\">按<\\/em>');\nx(/<em class=\"n_6\"><\\/em>/g,'<em class=\"n_6\">暴<\\/em>');\nx(/<em class=\"n_7\"><\\/em>/g,'<em class=\"n_7\">臀<\\/em>');\nx(/<em class=\"n_8\"><\\/em>/g,'<em class=\"n_8\">逼<\\/em>');\nx(/<em class=\"n_9\"><\\/em>/g,'<em class=\"n_9\">擦<\\/em>');\nx(/<em class=\"n_10\"><\\/em>/g,'<em class=\"n_10\">潮<\\/em>');\nx(/<em class=\"n_11\"><\\/em>/g,'<em class=\"n_11\">操<\\/em>');\nx(/<em class=\"n_12\"><\\/em>/g,'<em class=\"n_12\">插<\\/em>');\nx(/<em class=\"n_13\"><\\/em>/g,'<em class=\"n_13\">吃<\\/em>');\nx(/<em class=\"n_14\"><\\/em>/g,'<em class=\"n_14\">抽<\\/em>');\nx(/<em class=\"n_15\"><\\/em>/g,'<em class=\"n_15\">处<\\/em>');\nx(/<em class=\"n_16\"><\\/em>/g,'<em class=\"n_16\">床<\\/em>');\nx(/<em class=\"n_17\"><\\/em>/g,'<em class=\"n_17\">春<\\/em>');\nx(/<em class=\"n_18\"><\\/em>/g,'<em class=\"n_18\">唇<\\/em>');\nx(/<em class=\"n_19\"><\\/em>/g,'<em class=\"n_19\">刺<\\/em>');\nx(/<em class=\"n_20\"><\\/em>/g,'<em class=\"n_20\">粗<\\/em>');\nx(/<em class=\"n_21\"><\\/em>/g,'<em class=\"n_21\">大<\\/em>');\nx(/<em class=\"n_22\"><\\/em>/g,'<em class=\"n_22\">洞<\\/em>');\nx(/<em class=\"n_23\"><\\/em>/g,'<em class=\"n_23\">逗<\\/em>');\nx(/<em class=\"n_24\"><\\/em>/g,'<em class=\"n_24\">硬<\\/em>');\nx(/<em class=\"n_25\"><\\/em>/g,'<em class=\"n_25\">儿<\\/em>');\nx(/<em class=\"n_26\"><\\/em>/g,'<em class=\"n_26\">反<\\/em>');\nx(/<em class=\"n_27\"><\\/em>/g,'<em class=\"n_27\">犯<\\/em>');\nx(/<em class=\"n_28\"><\\/em>/g,'<em class=\"n_28\">峰<\\/em>');\nx(/<em class=\"n_29\"><\\/em>/g,'<em class=\"n_29\">妇<\\/em>');\nx(/<em class=\"n_30\"><\\/em>/g,'<em class=\"n_30\">抚<\\/em>');\nx(/<em class=\"n_31\"><\\/em>/g,'<em class=\"n_31\">夫<\\/em>');\nx(/<em class=\"n_32\"><\\/em>/g,'<em class=\"n_32\">腹<\\/em>');\nx(/<em class=\"n_33\"><\\/em>/g,'<em class=\"n_33\">干<\\/em>');\nx(/<em class=\"n_34\"><\\/em>/g,'<em class=\"n_34\">搞<\\/em>');\nx(/<em class=\"n_35\"><\\/em>/g,'<em class=\"n_35\">根<\\/em>');\nx(/<em class=\"n_36\"><\\/em>/g,'<em class=\"n_36\">公<\\/em>');\nx(/<em class=\"n_37\"><\\/em>/g,'<em class=\"n_37\">宫<\\/em>');\nx(/<em class=\"n_38\"><\\/em>/g,'<em class=\"n_38\">勾<\\/em>');\nx(/<em class=\"n_39\"><\\/em>/g,'<em class=\"n_39\">股<\\/em>');\nx(/<em class=\"n_40\"><\\/em>/g,'<em class=\"n_40\">狠<\\/em>');\nx(/<em class=\"n_41\"><\\/em>/g,'<em class=\"n_41\">花<\\/em>');\nx(/<em class=\"n_42\"><\\/em>/g,'<em class=\"n_42\">滑<\\/em>');\nx(/<em class=\"n_43\"><\\/em>/g,'<em class=\"n_43\">坏<\\/em>');\nx(/<em class=\"n_44\"><\\/em>/g,'<em class=\"n_44\">魂<\\/em>');\nx(/<em class=\"n_45\"><\\/em>/g,'<em class=\"n_45\">鸡<\\/em>');\nx(/<em class=\"n_46\"><\\/em>/g,'<em class=\"n_46\">激<\\/em>');\nx(/<em class=\"n_47\"><\\/em>/g,'<em class=\"n_47\">夹<\\/em>');\nx(/<em class=\"n_48\"><\\/em>/g,'<em class=\"n_48\">奸<\\/em>');\nx(/<em class=\"n_49\"><\\/em>/g,'<em class=\"n_49\">交<\\/em>');\nx(/<em class=\"n_50\"><\\/em>/g,'<em class=\"n_50\">叫<\\/em>');\nx(/<em class=\"n_51\"><\\/em>/g,'<em class=\"n_51\">娇<\\/em>');\nx(/<em class=\"n_52\"><\\/em>/g,'<em class=\"n_52\">姐<\\/em>');\nx(/<em class=\"n_53\"><\\/em>/g,'<em class=\"n_53\">禁<\\/em>');\nx(/<em class=\"n_54\"><\\/em>/g,'<em class=\"n_54\">精<\\/em>');\nx(/<em class=\"n_55\"><\\/em>/g,'<em class=\"n_55\">进<\\/em>');\nx(/<em class=\"n_56\"><\\/em>/g,'<em class=\"n_56\">紧<\\/em>');\nx(/<em class=\"n_57\"><\\/em>/g,'<em class=\"n_57\">菊<\\/em>');\nx(/<em class=\"n_58\"><\\/em>/g,'<em class=\"n_58\">渴<\\/em>');\nx(/<em class=\"n_59\"><\\/em>/g,'<em class=\"n_59\">口<\\/em>');\nx(/<em class=\"n_60\"><\\/em>/g,'<em class=\"n_60\">裤<\\/em>');\nx(/<em class=\"n_61\"><\\/em>/g,'<em class=\"n_61\">胯<\\/em>');\nx(/<em class=\"n_62\"><\\/em>/g,'<em class=\"n_62\">快<\\/em>');\nx(/<em class=\"n_63\"><\\/em>/g,'<em class=\"n_63\">浪<\\/em>');\nx(/<em class=\"n_64\"><\\/em>/g,'<em class=\"n_64\">力<\\/em>');\nx(/<em class=\"n_65\"><\\/em>/g,'<em class=\"n_65\">搂<\\/em>');\nx(/<em class=\"n_66\"><\\/em>/g,'<em class=\"n_66\">乱<\\/em>');\nx(/<em class=\"n_67\"><\\/em>/g,'<em class=\"n_67\">裸<\\/em>');\nx(/<em class=\"n_68\"><\\/em>/g,'<em class=\"n_68\">妈<\\/em>');\nx(/<em class=\"n_69\"><\\/em>/g,'<em class=\"n_69\">毛<\\/em>');\nx(/<em class=\"n_70\"><\\/em>/g,'<em class=\"n_70\">迷<\\/em>');\nx(/<em class=\"n_71\"><\\/em>/g,'<em class=\"n_71\">靡<\\/em>');\nx(/<em class=\"n_72\"><\\/em>/g,'<em class=\"n_72\">妹<\\/em>');\nx(/<em class=\"n_73\"><\\/em>/g,'<em class=\"n_73\">摸<\\/em>');\nx(/<em class=\"n_74\"><\\/em>/g,'<em class=\"n_74\">嫩<\\/em>');\nx(/<em class=\"n_75\"><\\/em>/g,'<em class=\"n_75\">母<\\/em>');\nx(/<em class=\"n_76\"><\\/em>/g,'<em class=\"n_76\">娘<\\/em>');\nx(/<em class=\"n_77\"><\\/em>/g,'<em class=\"n_77\">尿<\\/em>');\nx(/<em class=\"n_78\"><\\/em>/g,'<em class=\"n_78\">咛<\\/em>');\nx(/<em class=\"n_79\"><\\/em>/g,'<em class=\"n_79\">女<\\/em>');\nx(/<em class=\"n_80\"><\\/em>/g,'<em class=\"n_80\">哦<\\/em>');\nx(/<em class=\"n_81\"><\\/em>/g,'<em class=\"n_81\">趴<\\/em>');\nx(/<em class=\"n_82\"><\\/em>/g,'<em class=\"n_82\">喷<\\/em>');\nx(/<em class=\"n_83\"><\\/em>/g,'<em class=\"n_83\">婆<\\/em>');\nx(/<em class=\"n_84\"><\\/em>/g,'<em class=\"n_84\">屁<\\/em>');\nx(/<em class=\"n_85\"><\\/em>/g,'<em class=\"n_85\">气<\\/em>');\nx(/<em class=\"n_86\"><\\/em>/g,'<em class=\"n_86\">枪<\\/em>');\nx(/<em class=\"n_87\"><\\/em>/g,'<em class=\"n_87\">窃<\\/em>');\nx(/<em class=\"n_88\"><\\/em>/g,'<em class=\"n_88\">骑<\\/em>');\nx(/<em class=\"n_89\"><\\/em>/g,'<em class=\"n_89\">妻<\\/em>');\nx(/<em class=\"n_90\"><\\/em>/g,'<em class=\"n_90\">情<\\/em>');\nx(/<em class=\"n_91\"><\\/em>/g,'<em class=\"n_91\">亲<\\/em>');\nx(/<em class=\"n_92\"><\\/em>/g,'<em class=\"n_92\">裙<\\/em>');\nx(/<em class=\"n_93\"><\\/em>/g,'<em class=\"n_93\">热<\\/em>');\nx(/<em class=\"n_94\"><\\/em>/g,'<em class=\"n_94\">日<\\/em>');\nx(/<em class=\"n_95\"><\\/em>/g,'<em class=\"n_95\">肉<\\/em>');\nx(/<em class=\"n_96\"><\\/em>/g,'<em class=\"n_96\">揉<\\/em>');\nx(/<em class=\"n_97\"><\\/em>/g,'<em class=\"n_97\">乳<\\/em>');\nx(/<em class=\"n_98\"><\\/em>/g,'<em class=\"n_98\">软<\\/em>');\nx(/<em class=\"n_99\"><\\/em>/g,'<em class=\"n_99\">润<\\/em>');\nx(/<em class=\"n_100\"><\\/em>/g,'<em class=\"n_100\">入<\\/em>');\nx(/<em class=\"n_101\"><\\/em>/g,'<em class=\"n_101\">塞<\\/em>');\nx(/<em class=\"n_102\"><\\/em>/g,'<em class=\"n_102\">骚<\\/em>');\nx(/<em class=\"n_103\"><\\/em>/g,'<em class=\"n_103\">色<\\/em>');\nx(/<em class=\"n_104\"><\\/em>/g,'<em class=\"n_104\">上<\\/em>');\nx(/<em class=\"n_105\"><\\/em>/g,'<em class=\"n_105\">舌<\\/em>');\nx(/<em class=\"n_106\"><\\/em>/g,'<em class=\"n_106\">射<\\/em>');\nx(/<em class=\"n_107\"><\\/em>/g,'<em class=\"n_107\">身<\\/em>');\nx(/<em class=\"n_108\"><\\/em>/g,'<em class=\"n_108\">深<\\/em>');\nx(/<em class=\"n_109\"><\\/em>/g,'<em class=\"n_109\">湿<\\/em>');\nx(/<em class=\"n_110\"><\\/em>/g,'<em class=\"n_110\">兽<\\/em>');\nx(/<em class=\"n_111\"><\\/em>/g,'<em class=\"n_111\">受<\\/em>');\nx(/<em class=\"n_112\"><\\/em>/g,'<em class=\"n_112\">舒<\\/em>');\nx(/<em class=\"n_113\"><\\/em>/g,'<em class=\"n_113\">爽<\\/em>');\nx(/<em class=\"n_114\"><\\/em>/g,'<em class=\"n_114\">水<\\/em>');\nx(/<em class=\"n_115\"><\\/em>/g,'<em class=\"n_115\">睡<\\/em>');\nx(/<em class=\"n_116\"><\\/em>/g,'<em class=\"n_116\">酥<\\/em>');\nx(/<em class=\"n_117\"><\\/em>/g,'<em class=\"n_117\">死<\\/em>');\nx(/<em class=\"n_118\"><\\/em>/g,'<em class=\"n_118\">烫<\\/em>');\nx(/<em class=\"n_119\"><\\/em>/g,'<em class=\"n_119\">痛<\\/em>');\nx(/<em class=\"n_120\"><\\/em>/g,'<em class=\"n_120\">舔<\\/em>');\nx(/<em class=\"n_121\"><\\/em>/g,'<em class=\"n_121\">天<\\/em>');\nx(/<em class=\"n_122\"><\\/em>/g,'<em class=\"n_122\">体<\\/em>');\nx(/<em class=\"n_123\"><\\/em>/g,'<em class=\"n_123\">挺<\\/em>');\nx(/<em class=\"n_124\"><\\/em>/g,'<em class=\"n_124\">头<\\/em>');\nx(/<em class=\"n_125\"><\\/em>/g,'<em class=\"n_125\">腿<\\/em>');\nx(/<em class=\"n_126\"><\\/em>/g,'<em class=\"n_126\">脱<\\/em>');\nx(/<em class=\"n_127\"><\\/em>/g,'<em class=\"n_127\">味<\\/em>');\nx(/<em class=\"n_128\"><\\/em>/g,'<em class=\"n_128\">慰<\\/em>');\nx(/<em class=\"n_129\"><\\/em>/g,'<em class=\"n_129\">吻<\\/em>');\nx(/<em class=\"n_130\"><\\/em>/g,'<em class=\"n_130\">握<\\/em>');\nx(/<em class=\"n_131\"><\\/em>/g,'<em class=\"n_131\">喔<\\/em>');\nx(/<em class=\"n_132\"><\\/em>/g,'<em class=\"n_132\">污<\\/em>');\nx(/<em class=\"n_133\"><\\/em>/g,'<em class=\"n_133\">下<\\/em>');\nx(/<em class=\"n_134\"><\\/em>/g,'<em class=\"n_134\">小<\\/em>');\nx(/<em class=\"n_135\"><\\/em>/g,'<em class=\"n_135\">性<\\/em>');\nx(/<em class=\"n_136\"><\\/em>/g,'<em class=\"n_136\">胸<\\/em>');\nx(/<em class=\"n_137\"><\\/em>/g,'<em class=\"n_137\">血<\\/em>');\nx(/<em class=\"n_138\"><\\/em>/g,'<em class=\"n_138\">穴<\\/em>');\nx(/<em class=\"n_139\"><\\/em>/g,'<em class=\"n_139\">阳<\\/em>');\nx(/<em class=\"n_140\"><\\/em>/g,'<em class=\"n_140\">痒<\\/em>');\nx(/<em class=\"n_141\"><\\/em>/g,'<em class=\"n_141\">药<\\/em>');\nx(/<em class=\"n_142\"><\\/em>/g,'<em class=\"n_142\">腰<\\/em>');\nx(/<em class=\"n_143\"><\\/em>/g,'<em class=\"n_143\">夜<\\/em>');\nx(/<em class=\"n_144\"><\\/em>/g,'<em class=\"n_144\">液<\\/em>');\nx(/<em class=\"n_145\"><\\/em>/g,'<em class=\"n_145\">野<\\/em>');\nx(/<em class=\"n_146\"><\\/em>/g,'<em class=\"n_146\">衣<\\/em>');\nx(/<em class=\"n_147\"><\\/em>/g,'<em class=\"n_147\">姨<\\/em>');\nx(/<em class=\"n_148\"><\\/em>/g,'<em class=\"n_148\">吟<\\/em>');\nx(/<em class=\"n_149\"><\\/em>/g,'<em class=\"n_149\">淫<\\/em>');\nx(/<em class=\"n_150\"><\\/em>/g,'<em class=\"n_150\">荫<\\/em>');\nx(/<em class=\"n_151\"><\\/em>/g,'<em class=\"n_151\">幽<\\/em>');\nx(/<em class=\"n_152\"><\\/em>/g,'<em class=\"n_152\">诱<\\/em>');\nx(/<em class=\"n_153\"><\\/em>/g,'<em class=\"n_153\">尤<\\/em>');\nx(/<em class=\"n_154\"><\\/em>/g,'<em class=\"n_154\">欲<\\/em>');\nx(/<em class=\"n_155\"><\\/em>/g,'<em class=\"n_155\">吁<\\/em>');\nx(/<em class=\"n_156\"><\\/em>/g,'<em class=\"n_156\">玉<\\/em>');\nx(/<em class=\"n_157\"><\\/em>/g,'<em class=\"n_157\">吮<\\/em>');\nx(/<em class=\"n_158\"><\\/em>/g,'<em class=\"n_158\">窄<\\/em>');\nx(/<em class=\"n_159\"><\\/em>/g,'<em class=\"n_159\">占<\\/em>');\nx(/<em class=\"n_160\"><\\/em>/g,'<em class=\"n_160\">征<\\/em>');\nx(/<em class=\"n_161\"><\\/em>/g,'<em class=\"n_161\">汁<\\/em>');\nx(/<em class=\"n_162\"><\\/em>/g,'<em class=\"n_162\">嘴<\\/em>');\nx(/<em class=\"n_163\"><\\/em>/g,'<em class=\"n_163\">，<\\/em>');\nx(/<em class=\"n_164\"><\\/em>/g,'<em class=\"n_164\">。<\\/em>');\nx(/<em class=\"n_165\"><\\/em>/g,'<em class=\"n_165\">...<\\/em>');\nx(/<em class=\"n_166\"><\\/em>/g,'<em class=\"n_166\">慾<\\/em>');\nx(/<em class=\"n_167\"><\\/em>/g,'<em class=\"n_167\">丢<\\/em>');\nx(/<em class=\"n_168\"><\\/em>/g,'<em class=\"n_168\">弄<\\/em>');\nresult\n</js>",
      "imageStyle": "TEXT",
      "nextContentUrl": "//*[@class=\"curr\"]/following-sibling::a[1]/@href",
      "replaceRegex": "<js>\nfunction d(debug) {\n\tjava.log(debug);\n\tjava.log(result);\n}\n/*\nfunction x(a, b, c) {\n\tif (c) {\n\t\twhile (c.exec(result)) {\n\t\t\treplace(a, b)\n\t\t}\n\t\treturn false\n\t}\n\treplace(a, b)\n}\n*/\nfunction x(a, b, c) {\n\tif (!c) return replace(a, b);\n\twhile (c.exec(result)) {\n\t\treplace(a, b)\n\t}\n}\nfunction replace(a, b) {\n\tresult = String(result).replace(a, b);\n}\n\n// 拼音还原\n// 逐条添加：x(/#正则#/gi,\"文本\");\nx(/#1040782805#/gi,\"奸\");\nx(/#1063785572#/gi,\"搞\");\nx(/#1082275499#/gi,\"台\");\nx(/#1218400718#/gi,\"虐\");\nx(/#1697595086#/gi,\"斩\");\nx(/#1801354585#/gi,\"勃\");\nx(/#1810002091#/gi,\"九\");\nx(/#1947937898#/gi,\"粉\");\nx(/#2022721869#/gi,\"粉\");\nx(/#2033008053#/gi,\"撸\");\nx(/#2063259833#/gi,\"色\");\nx(/#2090369734#/gi,\"熟\");\nx(/#2173857009#/gi,\"高\");\nx(/#2174754224#/gi,\"暴\");\nx(/#2276251664#/gi,\"嫩\");\nx(/#2293535402#/gi,\"兽\");\nx(/#2444947917#/gi,\"性\");\nx(/#2471389451#/gi,\"湿\");\nx(/#2525826615#/gi,\"狗\");\nx(/#2548022544#/gi,\"狗\");\nx(/#2553168545#/gi,\"穴\");\nx(/#2633701054#/gi,\"棒\");\nx(/#2761875847#/gi,\"胸\");\nx(/#2769203094#/gi,\"未\");\nx(/#2781961287#/gi,\"厥\");\nx(/#2811411890#/gi,\"亡\");\nx(/#2965616717#/gi,\"爱\");\nx(/#3043454467#/gi,\"日\");\nx(/#3089649511#/gi,\"宫\");\nx(/#3296363576#/gi,\"欲\");\nx(/#3309926634#/gi,\"宰\");\nx(/#3342690501#/gi,\"舌\");\nx(/#3382216428#/gi,\"义\");\nx(/#3746262645#/gi,\"舔\");\nx(/#3893173869#/gi,\"介\");\nx(/#4006928252#/gi,\"吞\");\nx(/#4017050851#/gi,\"交\");\nx(/#0678663477#/gi,\"情\");\nx(/#5736430795#/gi,\"内\");\nx(/#5110754259#/gi,\"吸\");\nx(/#9763512263#/gi,\"美\");\nx(/#0923672614#/gi,\"死\");\nx(/#5318824731#/gi,\"妈\");\nx(/#6197424834#/gi,\"中\");\nx(/#9925956069#/gi,\"处\");\nx(/#0486110525#/gi,\"水\");\nx(/#6378369235#/gi,\"胡\");\nx(/#5732450242#/gi,\"母\");\nx(/#8087788059#/gi,\"国\");\nx(/#6259252852#/gi,\"杀\");\nx(/#6514831790#/gi,\"血\");\nx(/#7228562021#/gi,\"纪\");\nx(/#7051993783#/gi,\"硬\");\nx(/#9636759436#/gi,\"药\");\nx(/#6789528781#/gi,\"学\");\nx(/#5213317466#/gi,\"具\");\nx(/#9134848937#/gi,\"做\");\nx(/#5910985788#/gi,\"足\");\nx(/#7074467222#/gi,\"逼\");\nx(/#5265224411#/gi,\"干\");\nx(/#9860153795#/gi,\"麻\");\nx(/#4933790542#/gi,\"枪\");\nx(/#8698737337#/gi,\"奶\");\nx(/#7051410763#/gi,\"马\");\nx(/#4740869798#/gi,\"操\");\nx(/#8478694653#/gi,\"主\");\nx(/#6855685283#/gi,\"摇\");\nx(/#6281647881#/gi,\"流\");\nx(/#0423651377#/gi,\"插\");\nx(/#4808579862#/gi,\"臀\");\nx(/#5946892177#/gi,\"淫\");\nx(/#4481675898#/gi,\"荡\");\nx(/#8280163404#/gi,\"蛋\");\nx(/#9308659858#/gi,\"射\");\nx(/#0961296593#/gi,\"弹\");\nx(/#5229950952#/gi,\"肉\");\nx(/#5260398634#/gi,\"指\");\nx(/#6050660618#/gi,\"屁\");\nx(/#5969522288#/gi,\"亲\");\nx(/#5429058065#/gi,\"弟\");\nx(/#5366734122#/gi,\"共\");\nx(/#6957748176#/gi,\"尸\");\nx(/#9928120606#/gi,\"腿\");\nx(/#0551252288#/gi,\"龟\");\nx(/#7618693335#/gi,\"呻\");\nx(/#0975893408#/gi,\"吟\");\nx(/#0026372214#/gi,\"丝\");\nx(/#5318162318#/gi,\"贱\");\nx(/#0720742117#/gi,\"乳\");\nx(/#4488426878#/gi,\"缝\");\nx(/#6768988724#/gi,\"鸡\");\nx(/#0092238155#/gi,\"阴\");\nx(/#0551722925#/gi,\"唇\");\nx(/#6534003186#/gi,\"蜜\");\nx(/#5518664754#/gi,\"骚\");\nx(/#4668655063#/gi,\"潮\");\nx(/#4766000693#/gi,\"精\");\nx(/#8666880661#/gi,\"凌\");\nx(/#5105645092#/gi,\"温\");\nx(/#5329628684#/gi,\"辱\");\nx(/#0473556214#/gi,\"含\");\nx(/#4472054519#/gi,\"咪\");\nx(/#7508904751#/gi,\"帮\");\nx(/#0783213298#/gi,\"丁\");\nx(/#9821815185#/gi,\"裸\");\nx(/#0146287633#/gi,\"露\");\nx(/#0756494362#/gi,\"偷\");\nx(/#5710915044#/gi,\"童\");\nx(/#8954155954#/gi,\"炮\");\nx(/#5004143384#/gi,\"乱\");\nx(/#9829762678#/gi,\"妇\");\nx(/#4538628495#/gi,\"挤\");\nx(/#9173059916#/gi,\"毒\");\nx(/#9720548295#/gi,\"杜\");\nx(/#7130632296#/gi,\"席\");\nx(/#8993789017#/gi,\"洞\");\nx(/#5758773674#/gi,\"棍\");\nx(/#5245263419#/gi,\"轮\");\nx(/#0261725863#/gi,\"泽\");\nx(/#9572021917#/gi,\"尿\");\nx(/#8926554707#/gi,\"炸\");\nx(/#0351216125#/gi,\"坑\");\nx(/#0050897572#/gi,\"涛\");\nx(/#4436421269#/gi,\"党\");\nx(/#8997927012#/gi,\"灭\");\nx(/#8592042303#/gi,\"腐\");\nx(/#6560841485#/gi,\"伦\");\nx(/#1607055014#/gi,\"酸\");\nx(/#2158558763#/gi,\"幼\");\nx(/#8051876761#/gi,\"漪\");\nx(/#4704630913#/gi,\"茎\");\nx(/#0519063805#/gi,\"秽\");\nx(/#8861933232#/gi,\"婊\");\nx(/#8261828414#/gi,\"肛\");\nx(/#8025291368#/gi,\"锦\");\nx(/#0813524594#/gi,\"妓\");\nx(/#2729628100#/gi,\"颅\");\nx(/#4510436554#/gi,\"菊\");\nx(/#1024850854#/gi,\"嫡\");\n//字体格式文字替换\n//替换格式规则  x(/#正则#/gi,\"文本\");\n//例：一般在字体编辑器复制出来对应的编号 uniE800或者$E800为\"的\"这个字,  正则替换格式：\n\n//净化替换\nx(/([^\\n]*?(手.?机.?看.?[小片](.?[书说])?|搜?.{0,4}索?.{0,4}第.{0,4}一.{0,4}版.{0,4}主)[^\\n]*)/gi,\"\");\nx(/([^\\n]*([最樶]新.?)?[地网].?[址祉阯].?[发發沷].?[布怖].?[页頁]?[\\:：]?[1１4４]?[^\\n]*)/g,\"\");\nx(/([^\\n]*([最寻找发].{0,3}[新回].{0,3}[网地{0,3}[址阯])[^\\n]*)/gi,\"\");\nx(/([^\\n]*\\\\u5730\\\\u5740\\\\u767c\\\\u5e03\\\\u9801[^\\n]*)/gi,\"\");\nx(/([^\\n]*[1１][a-zA-Zａ-ｚＡ-Ｚ][2２][a-zA-Zａ-ｚＡ-Ｚ][3３][a-zA-Zａ-ｚＡ-Ｚ]([4４][a-zA-Zａ-ｚＡ-Ｚ])?[^<\\r\\n]*)/gi,\"\");\nx(/([^\\n]*ＹＹＤＳＴxＴ(．ＣＣ)?[^\\n]*)/,\"\");\nx(/(.*[0０][1１][bЪｂ][ｚz].*)/gi,\"\");\nx(/(.*[真发即百更].?[正送可度多].?[网电获搜精].?[站子得索彩].?\\s?[请邮最第小].*)/gi,\"\");\nx(/([^<\\n]*?手.机.看.小.[书说][^\\n]*)/gi,\"\");\nx(/(ｂｚ２０２１)[^<\\n]+/gi,\"\");\nx(/(手机阅读小说：７７７８８７７[^\\n]*)/gi,\"\");\nx(/(diyibanzhu@gmail.com)/gi,\"\");\n(/((（待续）|(地~址~)|(手机看片))[^\\n]*)/gi,\"\");\nx(/([^\\n]*#chao#.+?#lian#.+?#jie#[^\\n]*)/gi,\"\");\nx(/([^\\n]*[wШЩ]*?.*[c℃ㄈＣ][oО⊙ò〇Ο０][mмМＭΜ][^\\n]*)/gi,\"\");\nx(/([^\\n]*使用chrome谷歌浏览[^\\n]*)/gi,\"\");\nx(/（苹果手机使用.+/g,\"\");\nx(/.*((５|６|７|８)X)+.*/g,\"\");\nx(/www.diyibanzhu.net/g,\"\");\n\n//分页后的断行还原\nx(/([\\r\\n]?\\s*(hereispagebreak)[\\r\\n]?\\s*)/gi, \"\");\n\n//35字换行排版恢复\nx(/([\\r\\n])((tjjtds)?.{33,39}[，、．～…“：；‘—『「\\u4e00-\\u9fa5][\\r\\n])\\s{2}/gi, \"$1$2tjjtds\", /([\\r\\n])((tjjtds)?.{33,39}[，、．～…“：；‘—『「\\u4e00-\\u9fa5][\\r\\n])\\s{2}/gi);\n\n// 换行修复\n//x(/([\\r\\n])((tjjtds)?.{33,39}[，、．～…“：；‘—『「\\u4e00-\\u9fa5][\\r\\n])\\s{2}/gi, \"$1$2tjjtds\", 1);\n\nx(/[\\r\\n](tjjtds|　+?[\\r\\n])/g, \"\");\n//为防万一，去掉汉字之间的空格\nx(/([\\u4e00-\\u9fa5])[ 　]+([\\u4e00-\\u9fa5])/g, '$1$2');\n//去掉多余换行\nx(/[\\r\\n]{2,}/g, \"\\r\\n\")\n\nx(/([「][^」]+)\\s*\\n\\s*/g, \"$1\", /([「][^」]+)\\s*\\n\\s*/g);\nx(/([\\u4e00-\\u9fa5][『「][^，。？！：；]{1,12}[」』])\\s+/g, \"$1\");\nx(/([。！？…])([『「])/g, \"$1\\r\\n　　$2\");\n// 日期换行\nfunction dateBreak(){\n  let reg = /^.{1,100}/;\n  let r100 = result.match(reg);\n  if(r100 && r100[0]){\n    let str = r100[0];\n    let reg2 = /(\\d+年\\d+月\\d+日)/\n    if(reg2.test(str)){\n      result = result.replace(reg,str.replace(reg2,'$1\\r\\n'));\n    }\n  }\n}\ndateBreak()\nx(/([\\u4e00-\\u9fa5])\\s+([\\u4e00-\\u9fa5])/g,'$1$2');\nresult;\n</js>##本章未完.*|<!--script.*|【1】.*|sjwzl.*|P>.*",
      "webJs": ""
    },
    "ruleExplore": {
      "author": ".info@a.0@text",
      "bookList": ".bd@.column-2\n<js>\njava.log(baseUrl)\nresult\n</js>",
      "bookUrl": ".name@href",
      "intro": "p.info.1@text",
      "kind": "span.0@text&&p.info.1@text##更新：",
      "lastChapter": ".update@a@text",
      "name": ".name@text",
      "wordCount": ".info@span@text##字数："
    },
    "ruleSearch": {
      "author": "//p[@class=\"info\"]/text()##作者：",
      "bookList": "@js:\npath = 'tag.li';\nu=java.get('url');\nc=java.getElement(path);\nif (!c.length && result.includes('no-js')) {\n  cookie.removeCookie(source.getKey());\n  res = java.startBrowserAwait(u,'ver')\n  java.setContent(res.body())\n  java.getElement(path);\n}",
      "bookUrl": "//a[@class=\"name\"]/@href",
      "checkKeyWord": "派对",
      "lastChapter": "//p[@class=\"update\"]/a/text()",
      "name": ".name@text",
      "wordCount": "//span[@class=\"words\"]/text()##字数："
    },
    "ruleToc": {
      "chapterList": ".chapter-list.1@li",
      "chapterName": "a@text",
      "chapterUrl": "a@href",
      "nextTocUrl": ".endPage@href##_(\\d+)/##$1###\n<js>\nmaxPage = result[0];\nurls = [];\nurl = baseUrl.replace(/(_\\d+)?\\/?$/, '_');\nfor (i = 2; i <= maxPage; i++) urls.push(url + i + '/');\nurls\n</js>"
    },
    "searchUrl": "https://www.diyibanzhu.me/wap.php?action=search,{\n  \"charset\": \"GBK\",\n  \"body\": \"wd={{key}}&submit=搜索\",\n  \"method\": \"POST\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "笔趣阁分阁",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "言情小说#1",
    "bookSourceType": 0,
    "bookSourceUrl": "http://www.xianqihaotianmi.org/",
    "customButton": false,
    "customOrder": 775,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "玄幻::/list/1-{{page}}.html\n仙侠::/list/2-{{page}}.html\n言情::/list/3-{{page}}.html\n历史::/list/4-{{page}}.html\n网游::/list/5-{{page}}.html\n科幻::/list/6-{{page}}.html\n恐怖::/list/7-{{page}}.html\n其他::/list/8-{{page}}.html\n总排行榜::/book/allvisit-{{page}}.html\n本周排行::/book/weekvisit-{{page}}.html\n当月排行::/book/monthvisit-{{page}}.html\n总推荐榜::/book/allvote-{{page}}.html\n本周推荐::/book/weekvote-{{page}}.html\n当月推荐::/book/monthvote-{{page}}.html",
    "lastUpdateTime": 1787020322846,
    "respondTime": 12576,
    "ruleBookInfo": {
      "author": "[property=\"og:novel:author\"]@content",
      "coverUrl": ".info1@img@src",
      "intro": "[property=\"og:description\"]@content",
      "kind": "[property=\"og:novel:category\"]@content",
      "lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
      "name": "[property=\"og:novel:book_name\"]@content"
    },
    "ruleContent": {
      "content": ".content-body@html##正在手打中，请稍等片刻，内容更新后，请重新刷新页面，即可获取最新更新！"
    },
    "ruleExplore": {
      "author": ".book_author@a@text",
      "bookList": ".media||.articlename",
      "bookUrl": ".book-title@a@href||a.0@href",
      "coverUrl": "img@src",
      "intro": ".book-intro-index@text",
      "name": ".book-title@text||a.0@text"
    },
    "ruleSearch": {
      "author": "a.1@text",
      "bookList": "#bookcon@tag.tr",
      "bookUrl": "a.0@href",
      "kind": "p.-1@text",
      "lastChapter": "p.-2@text",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": ".panel-body.2@li@a",
      "chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\(（【].*?[求更票谢乐发订合补加架字修Kk].*?[】）\\)]",
      "chapterUrl": "href"
    },
    "searchUrl": "/modules/article/search.php,{\n  \"method\": \"POST\",\n  \"body\": \"searchkey={{key}}\"\n}",
    "weight": 0
  },
  {
    "bookSourceComment": "",
    "bookSourceGroup": "📚小说",
    "bookSourceName": "笔趣阁biqige",
    "bookSourceType": 0,
    "bookSourceUrl": "http://wap.biqige.info/",
    "customButton": false,
    "customOrder": 776,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1720104814507,
    "respondTime": 13976,
    "ruleBookInfo": {
      "author": ".tab@p.0@text##作者：",
      "coverUrl": ".tu@img@data-original",
      "init": "",
      "intro": ".jj@p@text",
      "kind": ".tab@p.1:2:3@text##类别：|状态：|更新：",
      "lastChapter": ".tab@p.4@a@text",
      "name": ".catalog1@h1@text",
      "tocUrl": ""
    },
    "ruleContent": {
      "content": "id.novelcontent@textNodes##\\（本章未完，请翻页\\） ",
      "nextContentUrl": "text.下一页@href"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "a.2@text",
      "bookList": ".search_list",
      "bookUrl": "a.0@href",
      "checkKeyWord": "",
      "kind": "a.1@text",
      "name": "a.0@text"
    },
    "ruleToc": {
      "chapterList": "ul[class=\"p2\"]@li@a",
      "chapterName": "text",
      "chapterUrl": "href",
      "nextTocUrl": "option@value"
    },
    "searchUrl": "/s.php,{\n\t\"charset\":\"gbk\",\n\t\"method\":\"post\",\n\t\"body\":\"s={{key}}&type=articlename\"\n\t}",
    "weight": 0
  },
  {
    "bookSourceComment": "250101新增番茄来源\n250203新增七猫来源\n250204新增得间来源\n250204新增QQ来源(仅支持免费小说)\n250204新增熊猫看书\n250210更新日志：\n1.采用全新验证方式，之后未填写密钥，可以在阅读页登陆后刷新阅读页面即可！\n2.搜索默认改为全局搜索，目前仅支持番茄，七猫，QQ，得间，熊猫，后面的按钮是预设，后期会添加相关来源\n3.新增大灰狼书架功能，在登陆里面点击书架查看\n下个版本预计更新内容：\n1.预计发现页新增阅读记录和大灰狼书架栏目\n2.预计新增阅读记录，阅读过的书籍可在大灰狼书架-阅读历史中查看\n3.预计新增塔读小说，米读小说，小米阅读，猫眼看书，部分起点\n",
    "bookSourceGroup": "🎨漫画,📚小说",
    "bookSourceName": "🍅大灰狼漫画5.0(vip独立版)",
    "bookSourceType": 2,
    "bookSourceUrl": "\u0016http://219.154.201.122:5006/#漫画/",
    "customButton": false,
    "customOrder": 777,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "lastUpdateTime": 1751381391488,
    "loginUrl": "http://219.154.201.122:5006/login",
    "respondTime": 303,
    "ruleBookInfo": {
      "author": "$.author",
      "coverUrl": "$.book_detail.thumb_url",
      "init": "$.data",
      "intro": "&nbsp;&nbsp;🎴当前来源：{{$.source}}\n🎯最新章节：{{$.last_chapter_title}}\n⏳更新时间：{{$.last_chapter_update_time}}\n📚书籍简介：\n{{$.abstract}}",
      "lastChapter": "$.last_chapter_title",
      "name": "$.book_name",
      "tocUrl": "/catalog?book_id={{$.book_id}}&source={{$.source}}&tab={{$.tab}}",
      "wordCount": "$.word_number"
    },
    "ruleContent": {
      "content": "$.content"
    },
    "ruleExplore": {
      "author": "$.author",
      "bookList": "$.data.data",
      "bookUrl": "/detail?book_id={{$.book_id}}&source={{$.source}}",
      "coverUrl": "$.thumb_url",
      "intro": "$.abstract",
      "kind": "$.category",
      "lastChapter": "$.last_chapter_title",
      "name": "$.book_name",
      "wordCount": "$.word_number"
    },
    "ruleSearch": {
      "author": "$.author",
      "bookList": "$.data",
      "bookUrl": "/detail?book_id={{$.book_id}}&source={{$.source}}&tab={{$.tab}}",
      "checkKeyWord": "我的",
      "coverUrl": "$.thumb_url",
      "intro": "$.abstract",
      "kind": "{{$.status}},{{$.score}},{{$.tags}},{{$.last_chapter_update_time}}",
      "lastChapter": "<js>\nfunction fq_last() {\n\tlet url = `https://api5-normal-sinfonlineb.fqnovel.com/reading/bookapi/multi-detail/v/?aid=1967&iid=1&version_code=999&book_id={{$.book_id}}`;\n        let last =JSON.parse(java.ajax(url)).data[0]; \n        return last[\"last_chapter_title\"]+\" · \"+java.timeFormat(last[\"last_chapter_update_time\"]*1000);\n\t\n\t}\n\n\t\nfunction qm_last() {\n\tlet headers={'app-version':'51110','platform':'android','reg':'0','AUTHORIZATION':'','application-id':'com.****.reader','net-env':'1','channel':'unknown','qm-params':''}\n\tsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':{{$.book_id}}, 'imei_ip':'2937357107','teeny_mode':0}\n\nvar urlEncode = function (param, key, encode) {  \n  if(param==null) return '';  \n  var paramStr = '';  \n  var t = typeof (param);  \n  if (t == 'string' || t == 'number' || t == 'boolean') {  \n    paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);  \n  } else {  \n    for (var i in param) {  \n      var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);  \n      paramStr += urlEncode(param[i], k, encode);  \n    }  \n  }  \n  return paramStr;  \n};\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key));\nheaderSign=String(java.md5Encode(Object.keys(headers).sort().reduce((pre,n)=>pre+n+'='+headers[n],'')+sign_key))\nparams['sign']=paramSign;\nheaders['sign']=headerSign;\nlet url = \"https://api-bc.wtzw.com/api/v4/book/detail?\"+urlEncode(params);\noption = {'headers':headers};\nlet last =JSON.parse(java.ajax(url+','+JSON.stringify(option)))[\"data\"][\"book\"];\nlet last2 =  `${last[\"latest_chapter_title\"]} · ${java.timeFormat(last['update_time']*1000)} `\n\treturn last2\n\t}\n\t//如果要显示最新章节，请去除注释，去除会影响搜索速度\n//if ('{{$.source}}'=='番茄'){\n//\t'番茄:'+fq_last();\n//\t} else if ('{{$.source}}'=='七猫'){\n//\t'七猫:'+qm_last();\n//\t} else {\n\t'{{$.source}} {{$.last_chapter_title}}'\n//\t\t}\n\n</js>",
      "name": "$.book_name",
      "wordCount": "$.word_number"
    },
    "ruleToc": {
      "chapterList": "$.data",
      "chapterName": "$.title",
      "chapterUrl": "<js>\nlet device;\ntry {\n    device = java.androidId();\n} catch (e) {\n    try{\ndevice = java.deviceID();\n}catch (e) {device = '';\n}\n}\n`/content?item_id={{$.item_id}}&source={{$.source}}&device=${device}&tab={{$.tab}}&version=4.6.29`;\n</js>\n",
      "updateTime": "$.volume_name"
    },
    "searchUrl": "/search?title={{key}}&tab=漫画&source=全部",
    "weight": 0
  },
  {
    "bookSourceGroup": "🎉 优选",
    "bookSourceName": "🎨 爱优漫📱 ",
    "bookSourceType": 0,
    "bookSourceUrl": "https://m.iyouman.com#Haxc1107",
    "customButton": false,
    "customOrder": 778,
    "enabled": true,
    "enabledCookieJar": true,
    "enabledExplore": true,
    "eventListener": false,
    "exploreUrl": "每日更新::https://m.iyouman.com/api/updatelist/?productname=aym&platformname=wap\n综合榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=all&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n自制榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=self&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n少年榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=boy&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n少女榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=girl&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n新作榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=new&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n黑马榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=dark&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n付费榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=charge&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n免费榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=free&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n完结榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=finish&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n连载榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=serialize&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n人气::https://m.iyouman.com/api/getsortlist/?comic_sort=&orderby=click&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n更新::https://m.iyouman.com/api/getsortlist/?comic_sort=&orderby=date&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n评分::https://m.iyouman.com/api/getsortlist/?comic_sort=&orderby=score&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n收藏::https://m.iyouman.com/api/getsortlist/?comic_sort=&orderby=shoucang&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n连载::https://m.iyouman.com/api/getsortlist/?comic_sort=lianzai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n完结::https://m.iyouman.com/api/getsortlist/?comic_sort=wanjie&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n热血::https://m.iyouman.com/api/getsortlist/?comic_sort=rexue&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n机战::https://m.iyouman.com/api/getsortlist/?comic_sort=jizhan&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n运动::https://m.iyouman.com/api/getsortlist/?comic_sort=yundong&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n推理::https://m.iyouman.com/api/getsortlist/?comic_sort=tuili&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n冒险::https://m.iyouman.com/api/getsortlist/?comic_sort=maoxian&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n耽美::https://m.iyouman.com/api/getsortlist/?comic_sort=liaomei&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n百合::https://m.iyouman.com/api/getsortlist/?comic_sort=baihe&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n搞笑::https://m.iyouman.com/api/getsortlist/?comic_sort=gaoxiao&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n战争::https://m.iyouman.com/api/getsortlist/?comic_sort=zhanzhen&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n神魔::https://m.iyouman.com/api/getsortlist/?comic_sort=shenmo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n忍者::https://m.iyouman.com/api/getsortlist/?comic_sort=renzhe&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n竞技::https://m.iyouman.com/api/getsortlist/?comic_sort=jingji&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n悬疑::https://m.iyouman.com/api/getsortlist/?comic_sort=xuanyi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n社会::https://m.iyouman.com/api/getsortlist/?comic_sort=shehui&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n恋爱::https://m.iyouman.com/api/getsortlist/?comic_sort=lianai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n宠物::https://m.iyouman.com/api/getsortlist/?comic_sort=chongwu&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n吸血::https://m.iyouman.com/api/getsortlist/?comic_sort=xixue&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n萝莉::https://m.iyouman.com/api/getsortlist/?comic_sort=luoli&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n后宫::https://m.iyouman.com/api/getsortlist/?comic_sort=hougong&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n御姐::https://m.iyouman.com/api/getsortlist/?comic_sort=yujie&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n霸总::https://m.iyouman.com/api/getsortlist/?comic_sort=bazong&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n玄幻::https://m.iyouman.com/api/getsortlist/?comic_sort=xuanhuan&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n古风::https://m.iyouman.com/api/getsortlist/?comic_sort=gufeng&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n历史::https://m.iyouman.com/api/getsortlist/?comic_sort=lishi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n漫改::https://m.iyouman.com/api/getsortlist/?comic_sort=mangai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n游戏::https://m.iyouman.com/api/getsortlist/?comic_sort=youxi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n穿越::https://m.iyouman.com/api/getsortlist/?comic_sort=chuanyue&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n恐怖::https://m.iyouman.com/api/getsortlist/?comic_sort=kongbu&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n真人::https://m.iyouman.com/api/getsortlist/?comic_sort=zhenren&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n防疫::https://m.iyouman.com/api/getsortlist/?comic_sort=fangyi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n防疫::https://m.iyouman.com/api/getsortlist/?comic_sort=fangyi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n科幻::https://m.iyouman.com/api/getsortlist/?comic_sort=kehuan&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n都市::https://m.iyouman.com/api/getsortlist/?comic_sort=dushi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n武侠::https://m.iyouman.com/api/getsortlist/?comic_sort=wuxia&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n修真::https://m.iyouman.com/api/getsortlist/?comic_sort=xiuzhen&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n生活::https://m.iyouman.com/api/getsortlist/?comic_sort=shenghuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n动作::https://m.iyouman.com/api/getsortlist/?comic_sort=dongzuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n大陆::https://m.iyouman.com/api/getsortlist/?comic_sort=dalu&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n日本::https://m.iyouman.com/api/getsortlist/?comic_sort=riben&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n港台::https://m.iyouman.com/api/getsortlist/?comic_sort=gangtai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n欧美::https://m.iyouman.com/api/getsortlist/?comic_sort=oumei&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n韩国::https://m.iyouman.com/api/getsortlist/?comic_sort=os&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n全彩::https://m.iyouman.com/api/getsortlist/?comic_sort=quancai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n黑白::https://m.iyouman.com/api/getsortlist/?comic_sort=heibai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n小说::https://m.iyouman.com/api/getsortlist/?comic_sort=xiaoshuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n杂志::https://m.iyouman.com/api/getsortlist/?comic_sort=zazhi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n日更::https://m.iyouman.com/api/getsortlist/?comic_sort=rigeng&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n新作::https://m.iyouman.com/api/getsortlist/?comic_sort=xinzuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n精品::https://m.iyouman.com/api/getsortlist/?comic_sort=jingpin&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap",
    "lastUpdateTime": 1776750324761,
    "respondTime": 526,
    "ruleBookInfo": {
      "author": "$.data.comic_author",
      "coverUrl": "$.data.cover_list[0]",
      "intro": "$.data.comic_desc",
      "kind": "$.data.comic_type_new[*].name",
      "lastChapter": "$.data.last_chaptet_name",
      "name": "$.data.comic_name"
    },
    "ruleContent": {
      "content": "<js>\nheader={\"Referer\":baseUrl};\nheaders={\"headers\":JSON.stringify(header)};\n\n//获取章节位置\nindex=parseInt(chapter.index);\nindex=index+1;\nnum=parseInt(book.totalChapterNum);\nindex=num-index;\n\n//画质可选low middle high\nvar img_ext = \"-aym.middle.webp\";\nvar pic = \"https://mhpic.\"\nvar html =\"\";\n\njson=JSON.parse(result);\ncomic_chapter= json.data.comic_chapter;\n\nvar end_num  = comic_chapter[index].end_num;\nvar rule=comic_chapter[index].rule;\nchapter_domain=comic_chapter[index].chapter_domain;\n\nfor( let i = 1;i <= end_num; i++) {\n   let url = pic + chapter_domain +rule.replace(/\\$\\$/g,i) +img_ext;\n   html += '<img src=\"' + url +','+JSON.stringify(headers)+'\">\\n';\n}\nresult = html\n</js>",
      "imageStyle": "FULL"
    },
    "ruleExplore": {},
    "ruleSearch": {
      "author": "$.comic_author",
      "bookList": "$.data.update[*].info[*]||$.data.data[*]||$.data[*]",
      "bookUrl": "https://m.iyouman.com/api/getcomicinfo_body/?comic_id={$.comic_id}&productname=aym&platformname=wap",
      "coverUrl": "http://image.mhxk.com/mh/{$.comic_id}.jpg-600x800.jpg.webp",
      "kind": "$.comic_type||$.sort_typelist##[a-zA-Z]|\\|",
      "lastChapter": "$.last_chapter_name||$.comic_chapter_name",
      "name": "$.comic_name"
    },
    "ruleToc": {
      "chapterList": "-$.data.comic_chapter.*",
      "chapterName": "$.chapter_name@put:{chapter_id:$.chapter_id}",
      "chapterUrl": "$.chapter_id@js:baseUrl+\"&chapter_id=\"+result"
    },
    "searchUrl": "https://m.iyouman.com/api/getsortlist/?search_type=&search_key={{key}}&page={{page}}&size=30&productname=aym&platformname=wap",
    "weight": 0
  }
]