<?xml version="1.0" encoding="utf-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>玄火博客</title><link>https://blog.waytomilky.com/</link><description>提供zblog主题定制与扩展开发</description><item><title>git 回滚最近一次的 git pull  --rebase</title><link>https://blog.waytomilky.com/post/43.html</link><description>&lt;h2&gt;📥 紧急回滚！Git Pull --Rebase 操作救生指南&lt;/h2&gt;
&lt;p&gt;团队协作时，习惯用 &lt;code&gt;git pull --rebase&lt;/code&gt; 来拉取最新代码，将本地提交整洁地&amp;quot;挪到&amp;quot;远程更新之后。然而当冲突处理失误或意外引入错误时，这条命令可能瞬间变成噩梦——你的本地提交历史已被重写。不必惊慌，掌握以下步骤可精准回退至危险操作前的状态。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;第一步：定位安全锚点&lt;/strong&gt;&lt;br /&gt;
Git 始终记录关键操作前的指针位置，&lt;code&gt;git pull --rebase&lt;/code&gt; 执行后，特殊引用 &lt;strong&gt;&lt;code&gt;ORIG_HEAD&lt;/code&gt;&lt;/strong&gt; 会自动指向变基前的原始提交。它是你的时光机入口：&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;git reset --hard ORIG_HEAD&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;若因后续操作丢失 &lt;code&gt;ORIG_HEAD&lt;/code&gt;，可用 &lt;code&gt;git reflog&lt;/code&gt; 手工挖掘变基前的提交哈希，如：&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;git reset --hard HEAD@{1}  # 时间旅行的备选门票&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;第二步：销毁错误历史，覆盖远程（慎用）&lt;/strong&gt;&lt;br /&gt;
本地回滚后，远程仓库仍记录着错误的变基历史。此时需强制推送覆写远端：&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;git push --force-with-lease origin your-branch&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;⚠️ &lt;strong&gt;重要警示&lt;/strong&gt;：强制推送如同重置共享记忆——务必提前确保：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;当前操作分支无其他成员正在协作；&lt;/li&gt;
&lt;li&gt;或已明确告知团队强制推送计划；&lt;/li&gt;
&lt;li&gt;优先使用 &lt;code&gt;--force-with-lease&lt;/code&gt; 而非 &lt;code&gt;-f&lt;/code&gt;，避免覆盖他人新提交。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;若你在变基中途失败...&lt;/strong&gt;&lt;br /&gt;
冲突解决一半想放弃？更简单命令可紧急撤离：&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;git rebase --abort  # 魔法撤退，回归操作前现场&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;行动前关键保险&lt;/strong&gt;&lt;br /&gt;
重大历史操作前，临时创建新分支可留后路：&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;git branch temp-branch  # 预留逃生存档点&lt;/code&gt;&lt;/pre&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;深层认知&lt;/strong&gt;：每一次 &lt;code&gt;git pull --rebase&lt;/code&gt; 都是重写本地历史的冒险。回滚的核心在于寻到变基操作前的安全锚点（ORIG_HEAD或reflog节点），并用 &lt;code&gt;reset --hard&lt;/code&gt; 精准回溯。但要切记：强制推送是影响全队的操作——如同在共享文档中按下全局撤销键，须极致谨慎。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;回滚不是失败，而是对代码历史的负责。熟练上述操作，你能在 &lt;code&gt;git pull --rebase&lt;/code&gt; 翻车时冷静恢复现场，确保协作轨迹清晰如初。真正的版本控制高手，不在于永不犯错，而在于迅速稳健地修正每一次偏离。&lt;/p&gt;</description><pubDate>Wed, 08 Apr 2026 20:57:48 +0800</pubDate></item><item><title>PHP写一个遍历文件夹的函数</title><link>https://blog.waytomilky.com/post/42.html</link><description>&lt;h1&gt;PHP实现文件夹遍历函数：递归与迭代详解&lt;/h1&gt;
&lt;h2&gt;引言&lt;/h2&gt;
&lt;p&gt;在Web开发中，处理文件和目录是常见的任务。无论是生成文件列表、搜索特定文件类型还是批量处理内容，遍历目录结构都是基础操作。PHP提供了一系列强大的文件系统函数，可以轻松实现文件夹遍历功能。本文将详细探讨如何用PHP编写高效的文件夹遍历函数。&lt;/p&gt;
&lt;h2&gt;递归遍历方法&lt;/h2&gt;
&lt;p&gt;递归是遍历文件夹最直观的方法，适用于大多数目录结构：&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-php&quot;&gt;function scanDirectoryRecursive($dir) {
    $result = [];

    if (is_dir($dir)) {
        $files = scandir($dir);

        foreach ($files as $file) {
            if ($file == &#039;.&#039; || $file == &#039;..&#039;) continue;

            $path = $dir . DIRECTORY_SEPARATOR . $file;

            if (is_dir($path)) {
                // 递归遍历子目录
                $result = array_merge($result, scanDirectoryRecursive($path));
            } else {
                $result[] = $path;
            }
        }
    }

    return $result;
}

// 使用示例
$files = scanDirectoryRecursive(&#039;/path/to/directory&#039;);
print_r($files);&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;该函数核心逻辑：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;使用&lt;code&gt;scandir()&lt;/code&gt;获取当前目录内容&lt;/li&gt;
&lt;li&gt;过滤特殊目录&lt;code&gt;.&lt;/code&gt;和&lt;code&gt;..&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;递归处理子目录&lt;/li&gt;
&lt;li&gt;收集文件路径返回&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;迭代遍历方法&lt;/h2&gt;
&lt;p&gt;对于深层目录结构，递归可能导致栈溢出。迭代方法更安全：&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-php&quot;&gt;function scanDirectoryIterative($dir) {
    $stack = [$dir];
    $result = [];

    while (!empty($stack)) {
        $currentDir = array_pop($stack);

        if (!is_dir($currentDir)) continue;

        $files = scandir($currentDir);

        foreach ($files as $file) {
            if ($file == &#039;.&#039; || $file == &#039;..&#039;) continue;

            $path = $currentDir . DIRECTORY_SEPARATOR . $file;

            if (is_dir($path)) {
                $stack[] = $path; // 将子目录加入堆栈
            } else {
                $result[] = $path;
            }
        }
    }

    return $result;
}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;该方法优势：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;避免递归深度限制&lt;/li&gt;
&lt;li&gt;内存控制更精确&lt;/li&gt;
&lt;li&gt;对超深目录更安全&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;高级扩展功能&lt;/h2&gt;
&lt;p&gt;实际应用中可能需要更多控制：&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-php&quot;&gt;function scanDirectory($dir, $options = []) {
    $defaults = [
        &#039;extensions&#039; =&amp;gt; null,   // 允许的文件扩展名数组
        &#039;maxDepth&#039; =&amp;gt; 20,       // 最大递归深度
        &#039;exclude&#039; =&amp;gt; [],        // 排除的目录名
        &#039;callback&#039; =&amp;gt; null      // 对每个文件的处理函数
    ];

    $options = array_merge($defaults, $options);
    // 实现代码...
}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;扩展功能可实现：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;文件类型过滤（仅查找.jpg、.png等）&lt;/li&gt;
&lt;li&gt;深度限制防止无限循环&lt;/li&gt;
&lt;li&gt;排除特定目录&lt;/li&gt;
&lt;li&gt;实时处理每个文件而非最后返回&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;性能与安全考量&lt;/h2&gt;
&lt;p&gt;实现文件夹遍历时需注意：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;目录权限&lt;/strong&gt;：确保PHP有访问权限&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;符号链接处理&lt;/strong&gt;：避免循环引用导致无限递归&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;内存占用&lt;/strong&gt;：大目录使用迭代方式&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;过滤输入&lt;/strong&gt;：防范目录遍历攻击（如../）&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;错误处理&lt;/strong&gt;：使用&lt;code&gt;@&lt;/code&gt;抑制错误或try-catch处理&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;实际应用场景&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;网站文件资源管理器&lt;/li&gt;
&lt;li&gt;图片自动处理流水线&lt;/li&gt;
&lt;li&gt;日志文件分析系统&lt;/li&gt;
&lt;li&gt;静态资源版本控制&lt;/li&gt;
&lt;li&gt;内容管理系统(CMS)文件索引&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;总结&lt;/h2&gt;
&lt;p&gt;PHP提供了多种实现文件夹遍历的方法。对于简单需求，递归方法代码简洁；对于大型复杂目录结构，迭代方法更可靠。通过参数化设计，可以创建灵活强大的遍历函数，满足各种实际需求。&lt;/p&gt;
&lt;p&gt;无论选择哪种方法，都要考虑文件系统操作的性能和安全性。合理使用这些功能，能够极大提升处理文件类任务的效率，为您的Web应用添加强大的文件管理能力。&lt;/p&gt;</description><pubDate>Wed, 08 Apr 2026 10:36:56 +0800</pubDate></item><item><title>提升异性好感的“魔法秘籍”</title><link>https://blog.waytomilky.com/post/41.html</link><description>
&lt;p style=&quot;font-size:15px;&quot;&gt;在人际交往中，很多人都渴望给异性留下良好的印象，提升对方的好感度。其实，这并非难事，只要掌握一些小窍门，就能轻松做到。&lt;/p&gt;
&lt;p style=&quot;font-size:15px;&quot;&gt;真诚是打开对方心门的钥匙。无论何时，都要保持真诚待人。在交流中，如实表达自己的想法和感受，不做作、不虚伪。比如，当对方分享自己的经历时，认真倾听，给予真诚的回应和建议，让对方感受到你的真心实意。一个真诚的微笑、一句由衷的赞美，都能拉近彼此的距离。&lt;/p&gt;
&lt;p style=&quot;font-size:15px;&quot;&gt;注重自身形象也很关键。不需要过度奢华，但要整洁得体。根据不同的场合选择合适的着装，展现出自己的品味。保持良好的个人卫生，头发清爽、面容干净，会给人一种积极向上的感觉。得体的举止也是形象的加分项，走路抬头挺胸、坐姿端正，与人交谈时眼神专注、礼貌用语不离口。&lt;/p&gt;
&lt;p style=&quot;font-size:15px;&quot;&gt;培养有趣的灵魂，提升内在魅力。广泛阅读各类书籍，丰富知识储备，这样在交流中就能有更多的话题可聊。培养一些兴趣爱好，如绘画、音乐、运动等，不仅能让自己的生活更加充实，还能在展示爱好的过程中吸引他人。幽默风趣是一种强大的武器，适时地开个小玩笑、讲个有趣的故事，能让气氛轻松愉快，增加你的吸引力。&lt;div style=&quot;text-align:center;&quot;&gt;&lt;img src=&quot;/zb_users/upload/2025/05/7317de5bdf40fcadae7981dc316f37db.jpg&quot; alt=&quot;随机图片&quot; style=&quot;max-width:100%;&quot;&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p style=&quot;font-size:15px;&quot;&gt;学会倾听同样重要。当异性与你倾诉时，不要急于打断，耐心地听对方把话说完。给予对方充分的关注，用眼神和点头等方式表示你在认真倾听。适当的时候，给予理解和安慰，让对方感受到你是一个可以信赖的倾诉对象。&lt;div style=&quot;text-align:center;&quot;&gt;&lt;img src=&quot;/zb_users/upload/2025/05/6679e19f2ec5c29f47933832c1031c57.jpg&quot; alt=&quot;随机图片&quot; style=&quot;max-width:100%;&quot;&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p style=&quot;font-size:15px;&quot;&gt;尊重对方的观点和选择，不强行争辩。每个人都有自己的想法和做事方式，尊重差异才能建立和谐的关系。在意见不合时，心平气和地沟通，寻求共识，而不是一味地坚持自己的立场。&lt;div style=&quot;text-align:center;&quot;&gt;&lt;img src=&quot;/zb_users/upload/2025/05/65dfb145ef76e6df543097e78c6535f9.jpg&quot; alt=&quot;随机图片&quot; style=&quot;max-width:100%;&quot;&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p style=&quot;font-size:15px;&quot;&gt;总之，提升异性好感需要从多个方面入手，保持真诚、注重形象、丰富内在、学会倾听、懂得尊重。只要你用心去做，就能成为一个更具吸引力的人，收获更多美好的缘分。 &lt;/p&gt;</description><pubDate>Thu, 12 Jun 2025 18:34:21 +0800</pubDate></item><item><title>写一篇登山的文章</title><link>https://blog.waytomilky.com/post/38.html</link><description>
&lt;p style=&quot;font-size:15px;&quot;&gt;在城市的喧嚣中生活久了，心也渐渐被忙碌和琐事填满，渴望着一场与自然的亲密接触，去寻找那份宁静与力量。登山，便成了我向往的活动。&lt;/p&gt;
&lt;p style=&quot;font-size:15px;&quot;&gt;清晨，当第一缕阳光洒在窗前，我便收拾好行囊，踏上了登山之旅。山脚下，一片郁郁葱葱，鸟儿欢快地歌唱，仿佛在为我加油鼓劲。沿着蜿蜒的山路前行，路边的野花野草散发着阵阵清香，微风拂过，带来丝丝凉意，让人心旷神怡。&lt;/p&gt;
&lt;p style=&quot;font-size:15px;&quot;&gt;起初，山路较为平缓，我迈着轻快的步伐，欣赏着周围的美景，感受着大自然的神奇。随着海拔的升高，山路变得崎岖起来，坡度也越来越陡。我开始大口喘气，脚步也变得沉重，但心中征服山峰的信念却愈发坚定。&lt;div style=&quot;text-align:center;&quot;&gt;&lt;img src=&quot;/zb_users/upload/2025/05/6679e19f2ec5c29f47933832c1031c57.jpg&quot; alt=&quot;随机图片&quot; style=&quot;max-width:100%;&quot;&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p style=&quot;font-size:15px;&quot;&gt;途中，我遇到了一位同样登山的老者。他步伐稳健，脸上洋溢着自信的笑容。与他交谈后，我得知他已经登山多年，这座山对他来说就像一位老友。他的话让我深受鼓舞，也明白了登山不仅仅是体力的挑战，更是意志力的考验。&lt;/p&gt;
&lt;p style=&quot;font-size:15px;&quot;&gt;在攀登的过程中，我不时停下脚步，回望走过的路。只见山峦起伏，云雾缭绕，城市的轮廓已渐渐模糊。此刻，我仿佛置身于仙境之中，远离了尘世的纷扰，内心变得无比宁静。每一次的抬腿、迈步，都让我离山顶更近一步，每一滴汗水的流淌，都见证着我的坚持与努力。&lt;/p&gt;
&lt;p style=&quot;font-size:15px;&quot;&gt;终于，在历经一番艰辛后，我登上了山顶。站在山顶之巅，俯瞰着壮丽的景色，心中涌起一股难以言表的成就感。远处的山峦连绵起伏，与蓝天白云相映成趣，仿佛一幅天然的画卷。微风拂过脸颊，吹干了我额头的汗水，也吹走了我心中的疲惫。&lt;/p&gt;
&lt;p style=&quot;font-size:15px;&quot;&gt;这次登山之旅，让我收获颇丰。它不仅锻炼了我的身体，更磨炼了我的意志。在攀登的过程中，我学会了坚持，明白了只要有信念和毅力，就没有克服不了的困难。同时，我也感受到了大自然的魅力，它用它的宽广胸怀包容着一切，让我在它的怀抱中找到了内心的宁静与力量。&lt;div style=&quot;text-align:center;&quot;&gt;&lt;img src=&quot;/zb_users/upload/2025/05/9678cf0b9ec61c6bc824b73a212fae2c.jpg&quot; alt=&quot;随机图片&quot; style=&quot;max-width:100%;&quot;&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p style=&quot;font-size:15px;&quot;&gt;我知道，人生就像登山，会遇到各种崎岖和挑战，但只要我们怀揣梦想，勇往直前，就一定能够登上属于自己的高峰，领略到更加美丽的风景。 &lt;div style=&quot;text-align:center;&quot;&gt;&lt;img src=&quot;/zb_users/upload/2025/05/c592a7708922645df745e70cdb5a6671.jpg&quot; alt=&quot;随机图片&quot; style=&quot;max-width:100%;&quot;&gt;&lt;/div&gt;&lt;/p&gt;</description><pubDate>Mon, 12 May 2025 23:13:55 +0800</pubDate></item><item><title>快来媷微软的羊毛，加入微软积分领天猫礼品卡攻略！</title><link>https://blog.waytomilky.com/post/37.html</link><description>&lt;p style=&quot;box-sizing: inherit; border: 0px; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 12px; outline: 0px; padding: 0px; vertical-align: baseline; hyphens: auto; overflow-wrap: break-word; text-indent: 2em; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;很多童鞋不知道微软积分原来可以兑换一些礼品卡，适用于上班摸鱼的时候，无意识的必应搜索点东西也能积累积分，完全不花费任何额外的精力，适用于任何使用电脑办公的人群。国内必应的搜索体验其实是要比百度好很多的，也能提升搜索体验，那么如何加入微软积分呢，可参考以下教程。&lt;br style=&quot;box-sizing: inherit;&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;figure class=&quot;wp-block-image size-full&quot; style=&quot;box-sizing: inherit; margin: 0px; border: 0px; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 16px; outline: 0px; padding: 0px; vertical-align: baseline; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img decoding=&quot;async&quot; width=&quot;1537&quot; height=&quot;140&quot; data-original=&quot;https://blog.waytomilky.com/zb_users/upload/2025/04/20250401205058174351185894698.png&quot; src=&quot;https://blog.waytomilky.com/zb_users/upload/2025/04/20250401205058174351185894698.png&quot; alt=&quot;快来媷微软的羊毛，加入微软积分领天猫礼品卡&quot; class=&quot;wp-image-6464&quot; srcset=&quot;https://blog.waytomilky.com/zb_users/upload/2025/04/20250401205058174351185894698.png 1537w, https://www.waytomilky.com/wp-content/uploads/2025/04/image-1-300x27.png 300w, https://www.waytomilky.com/wp-content/uploads/2025/04/image-1-1024x93.png 1024w, https://www.waytomilky.com/wp-content/uploads/2025/04/image-1-768x70.png 768w&quot; sizes=&quot;(max-width: 1537px) 100vw, 1537px&quot; style=&quot;box-sizing: border-box; height: auto; max-width: 100%; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: middle; display: block;&quot;/&gt;&lt;/figure&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; border: 0px; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 12px; outline: 0px; padding: 0px; vertical-align: baseline; hyphens: auto; overflow-wrap: break-word; text-indent: 2em; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;h3 class=&quot;wp-block-heading&quot; style=&quot;box-sizing: inherit; border-width: 0px 0px 0px 5px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: solid; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: rgb(54, 144, 207); border-image: initial; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 1.6rem; margin: 2px -21px 10px; outline: 0px; padding: 0px 44px; vertical-align: baseline; line-height: 30.4px; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;第一步：先加入微软积分&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; border: 0px; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 12px; outline: 0px; padding: 0px; vertical-align: baseline; hyphens: auto; overflow-wrap: break-word; text-indent: 2em; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://rewards.bing.com/welcome?rh=CDDE252&amp;ref=rafsae&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; color: rgb(54, 144, 207); text-decoration-line: none; -webkit-tap-highlight-color: rgba(255, 0, 0, 0);&quot;&gt;点我加入微软积分&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; border: 0px; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 12px; outline: 0px; padding: 0px; vertical-align: baseline; hyphens: auto; overflow-wrap: break-word; text-indent: 2em; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;加入后，用必应搜索的时候可以自动累计积分， 当然如果想快速积累的话，可以往下看，可以快速累计积分， 后续流程稍微有点麻烦，适用于喜欢折腾的同学，如果不想折腾，完全可以不用处理，偶尔搜索一下也能积累积分。&lt;/p&gt;&lt;h3 class=&quot;wp-block-heading&quot; style=&quot;box-sizing: inherit; border-width: 0px 0px 0px 5px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: solid; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: rgb(54, 144, 207); border-image: initial; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 1.6rem; margin: 2px -21px 10px; outline: 0px; padding: 0px 44px; vertical-align: baseline; line-height: 30.4px; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;第二步：安装暴力猴插件&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; border: 0px; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 12px; outline: 0px; padding: 0px; vertical-align: baseline; hyphens: auto; overflow-wrap: break-word; text-indent: 2em; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;微软插件商店安装（推荐）：&lt;br style=&quot;box-sizing: inherit;&quot;/&gt;&lt;a rel=&quot;noreferrer noopener&quot; href=&quot;https://microsoftedge.microsoft.com/addons/detail/%E6%9A%B4%E5%8A%9B%E7%8C%B4/eeagobfjdenkkddmbclomhiblgggliao&quot; target=&quot;_blank&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; color: rgb(54, 144, 207); text-decoration-line: none; -webkit-tap-highlight-color: rgba(255, 0, 0, 0);&quot;&gt;https://microsoftedge.microsoft.com/addons/detail/%E6%9A%B4%E5%8A%9B%E7%8C%B4/eeagobfjdenkkddmbclomhiblgggliao&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; border: 0px; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 12px; outline: 0px; padding: 0px; vertical-align: baseline; hyphens: auto; overflow-wrap: break-word; text-indent: 2em; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;或者从网站下载安装&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; border: 0px; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 12px; outline: 0px; padding: 0px; vertical-align: baseline; hyphens: auto; overflow-wrap: break-word; text-indent: 2em; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://violentmonkey.github.io/&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; color: rgb(54, 144, 207); text-decoration-line: none; -webkit-tap-highlight-color: rgba(255, 0, 0, 0);&quot;&gt;https://violentmonkey.github.io/&lt;/a&gt;&lt;/p&gt;&lt;h3 class=&quot;wp-block-heading&quot; style=&quot;box-sizing: inherit; border-width: 0px 0px 0px 5px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: solid; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: rgb(54, 144, 207); border-image: initial; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 1.6rem; margin: 2px -21px 10px; outline: 0px; padding: 0px 44px; vertical-align: baseline; line-height: 30.4px; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;第三步：复制下面脚本加入到暴力猴插件里，并命名【必应积分脚本】&lt;br style=&quot;box-sizing: inherit;&quot;/&gt;&lt;/h3&gt;&lt;div class=&quot;enlighter-default enlighter-v-standard enlighter-t-monokai enlighter-l-generic enlighter-linenumbers &quot; style=&quot;box-sizing: inherit; border: 0px; font-family: &amp;quot;Source Code Pro&amp;quot;, &amp;quot;Liberation Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: 12px; margin: 0px 0px 20px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: 1.35em; white-space: pre-wrap; overflow-wrap: break-word; position: relative; direction: ltr; background-color: rgb(39, 40, 34); color: rgb(68, 68, 68);&quot;&gt;&lt;div class=&quot;enlighter-code&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; overflow: hidden;&quot;&gt;&lt;div class=&quot;enlighter&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; display: table; width: 1252.19px; border-collapse: collapse; border-spacing: 0px; empty-cells: show; min-width: 100%; counter-reset: enlighter 0;&quot;&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 5px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// ==UserScript==&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @name &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Microsoft Bing Rewards每日任务脚本&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @version &amp;nbsp; &amp;nbsp; &amp;nbsp;V3.1.1&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @description &amp;nbsp;自动完成微软Rewards每日搜索任务,每次运行时获取抖音/微博/哔哩哔哩/百度/头条热门词,避免使用同样的搜索词被封号。&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @note &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 更新于 2025年2月27日&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @author &amp;nbsp; &amp;nbsp; &amp;nbsp; 怀沙2049&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @match &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;https://*.bing.com/*&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @exclude &amp;nbsp; &amp;nbsp; &amp;nbsp;https://rewards.bing.com/*&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @license &amp;nbsp; &amp;nbsp; &amp;nbsp;GNU GPLv3&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @icon &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; https://www.bing.com/favicon.ico&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @connect &amp;nbsp; &amp;nbsp; &amp;nbsp;gumengya.com&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @run-at &amp;nbsp; &amp;nbsp; &amp;nbsp; document-end&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @grant &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;GM_registerMenuCommand&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @grant &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;GM_addStyle&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @grant &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;GM_openInTab&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @grant &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;GM_setValue&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @grant &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;GM_getValue&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @grant &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;GM_xmlhttpRequest&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @namespace &amp;nbsp; &amp;nbsp;https://greasyfork.org/zh-CN/scripts/477107&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @downloadURL https://update.greasyfork.org/scripts/477107/Microsoft%20Bing%20Rewards%E6%AF%8F%E6%97%A5%E4%BB%BB%E5%8A%A1%E8%84%9A%E6%9C%AC.user.js&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// @updateURL https://update.greasyfork.org/scripts/477107/Microsoft%20Bing%20Rewards%E6%AF%8F%E6%97%A5%E4%BB%BB%E5%8A%A1%E8%84%9A%E6%9C%AC.meta.js&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// ==/UserScript==&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;var max_rewards = &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;//重复执行的次数&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;//每执行4次搜索后插入暂停时间,解决账号被监控不增加积分的问题&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;var pause_time = &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;9&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 暂停时长建议为16分钟,也就是960000(60000毫秒=1分钟)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;var search_words = &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;[]&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;//搜索词&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;var appkey = &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;//从https://www.gmya.net/api 网站申请的热门词接口APIKEY&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;var Hot_words_apis = &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;https://api.gmya.net/Api/&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 故梦热门词API接口网站&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;//默认搜索词，热门搜索词请求失败时使用&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;var default_search_words = &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;盛年不重来，一日难再晨&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;千里之行，始于足下&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;少年易学老难成，一寸光阴不可轻&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;敏而好学，不耻下问&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;海内存知已，天涯若比邻&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;三人行，必有我师焉&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;,&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;莫愁前路无知已，天下谁人不识君&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;人生贵相知，何用金与钱&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;天生我材必有用&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;海纳百川有容乃大；壁立千仞无欲则刚&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;穷则独善其身，达则兼济天下&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;读书破万卷，下笔如有神&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;,&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;学而不思则罔，思而不学则殆&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;一年之计在于春，一日之计在于晨&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;莫等闲，白了少年头，空悲切&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;少壮不努力，老大徒伤悲&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;一寸光阴一寸金，寸金难买寸光阴&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;近朱者赤，近墨者黑&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;,&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;吾生也有涯，而知也无涯&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;纸上得来终觉浅，绝知此事要躬行&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;学无止境&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;己所不欲，勿施于人&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;天将降大任于斯人也&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;鞠躬尽瘁，死而后已&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;书到用时方恨少&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;天下兴亡，匹夫有责&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;,&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;人无远虑，必有近忧&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;为中华之崛起而读书&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;一日无书，百事荒废&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;岂能尽如人意，但求无愧我心&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;人生自古谁无死，留取丹心照汗青&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;吾生也有涯，而知也无涯&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;生于忧患，死于安乐&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;,&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;言必信，行必果&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;读书破万卷，下笔如有神&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;夫君子之行，静以修身，俭以养德&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;老骥伏枥，志在千里&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;一日不读书，胸臆无佳想&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;王侯将相宁有种乎&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;淡泊以明志。宁静而致远,&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;卧龙跃马终黄土&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;//{weibohot}微博热搜榜//{douyinhot}抖音热搜榜/{zhihuhot}知乎热搜榜/{baiduhot}百度热搜榜/{toutiaohot}今日头条热搜榜/&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;var keywords_source = &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;BaiduHot&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;TouTiaoHot&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;DouYinHot&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;WeiBoHot&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;var random_keywords_source = keywords_source&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;Math.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;floor&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;Math.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;random&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; keywords_source.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;length&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)]&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;var current_source_index = &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 当前搜索词来源的索引&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;/**&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-c1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt; * 尝试从多个搜索词来源获取搜索词，如果所有来源都失败，则返回默认搜索词。&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-c1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt; * @returns {Promise&amp;lt;string[]&amp;gt;} 返回搜索到的name属性值列表或默认搜索词列表&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-c1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt; */&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;async &lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;douyinhot_dic&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;while&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;current_source_index &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; keywords_source.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;length&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;const source = keywords_source&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;current_source_index&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 获取当前搜索词来源&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;let url; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;//根据 appkey 是否为空来决定如何构建 URL地址,如果appkey为空,则直接请求接口地址&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;appkey&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;url = Hot_words_apis + source + &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;?format=json&amp;amp;appkey=&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + appkey;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;//有appkey则添加appkey参数&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;else&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;url = Hot_words_apis + source;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;//无appkey则直接请求接口地址&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;try&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;const response = await &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;fetch&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 发起网络请求&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;!response.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;ok&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;throw &lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;new&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;Error&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;HTTP error! status: &amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + response.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;status&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 如果响应状态不是OK，则抛出错误&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;const data = await response.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;json&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 解析响应内容为JSON&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;data.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;some&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;item =&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; item&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 如果数据中存在有效项&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 提取每个元素的title属性值&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;const names = data.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;map&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;item =&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; item.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;return&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; names; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 返回搜索到的title属性值列表&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;catch&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;error&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 当前来源请求失败，记录错误并尝试下一个来源&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;console.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;error&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;搜索词来源请求失败:&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, error&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 尝试下一个搜索词来源&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;current_source_index++;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 所有搜索词来源都已尝试且失败&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;console.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;error&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;所有搜索词来源请求失败&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;return&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; default_search_words; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 返回默认搜索词列表&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 执行搜索&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;douyinhot_dic&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;.&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;then&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;names =&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// &amp;nbsp; console.log(names[0]);&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;search_words = names;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;exec&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;})&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;.&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;catch&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;error =&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;console.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;error&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;error&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;})&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 定义菜单命令：开始&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;let menu1 = &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;GM_registerMenuCommand&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;开始&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;GM_setValue&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;Cnt&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 将计数器重置为0&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;location.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;href&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; = &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;https://www.bing.com/?br_msg=Please-Wait&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 跳转到Bing首页&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;o&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 定义菜单命令：停止&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;let menu2 = &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;GM_registerMenuCommand&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;停止&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;GM_setValue&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;Cnt&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, max_rewards + &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 将计数器设置为超过最大搜索次数，以停止搜索&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;o&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 自动将字符串中的字符进行替换&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;AutoStrTrans&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;st&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;let yStr = st; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 原字符串&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;let rStr = &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 插入的混淆字符，可以自定义自己的混淆字符串&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;let zStr = &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 结果字符串&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;let prePo = &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;for&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;let i = &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; i &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; yStr.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;length&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;let step = &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;parseInt&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;Math.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;random&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 随机生成步长&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;i &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;zStr = zStr + yStr.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;substr&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;prePo, i - prePo&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + rStr; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 将插入字符插入到相应位置&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;prePo = i;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;i = i + step;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;prePo &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; yStr.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;length&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;zStr = zStr + yStr.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;substr&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;prePo, yStr.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;length&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; - prePo&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 将剩余部分添加到结果字符串中&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;return&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; zStr;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 生成指定长度的包含大写字母、小写字母和数字的随机字符串&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;generateRandomString&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;length&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;const characters = &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;let result = &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;const charactersLength = characters.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;length&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;for&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;let i = &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; i &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; length; i++&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 从字符集中随机选择字符，并拼接到结果字符串中&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;result += characters.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;charAt&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;Math.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;floor&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;Math.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;random&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; charactersLength&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;return&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; result;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;exec&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 生成随机延迟时间&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;let randomDelay = Math.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;floor&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;Math.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;random&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;20000&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;10000&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 生成10秒到30秒之间的随机数&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;let randomString = &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;generateRandomString&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;4&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;//生成4个长度的随机字符串&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;let randomCvid = &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;generateRandomString&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;32&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;//生成32位长度的cvid&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;use strict&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 检查计数器的值，若为空则设置为超过最大搜索次数&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;GM_getValue&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;Cnt&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; == &lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;null&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;GM_setValue&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;Cnt&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, max_rewards + &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 获取当前搜索次数&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;let currentSearchCount = &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;GM_getValue&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;Cnt&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 根据计数器的值选择搜索引擎&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;currentSearchCount &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;= max_rewards / &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;let tt = document.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;getElementsByTagName&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;title&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)[&lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;tt.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;innerHTML&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; = &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;[&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + currentSearchCount + &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot; / &amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + max_rewards + &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;] &amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + tt.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;innerHTML&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 在标题中显示当前搜索次数&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;smoothScrollToBottom&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 添加执行滚动页面到底部的操作&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;GM_setValue&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;Cnt&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, currentSearchCount + &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 将计数器加1&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;setTimeout&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;let nowtxt = search_words&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;currentSearchCount&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 获取当前搜索词&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;nowtxt = &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;AutoStrTrans&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;nowtxt&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 对搜索词进行替换&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 检查是否需要暂停&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;((&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;currentSearchCount + &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; % &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; === &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;setTimeout&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;location.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;href&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; = &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;https://www.bing.com/search?q=&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;encodeURI&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;nowtxt&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;&amp;amp;form=&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + randomString + &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;&amp;amp;cvid=&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + randomCvid; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 在Bing搜索引擎中搜索&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, pause_time&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;else&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;location.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;href&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; = &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;https://www.bing.com/search?q=&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;encodeURI&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;nowtxt&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;&amp;amp;form=&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + randomString + &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;&amp;amp;cvid=&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + randomCvid; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 在Bing搜索引擎中搜索&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, randomDelay&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;else&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;currentSearchCount &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; max_rewards / &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;&amp;amp;&amp;amp;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; currentSearchCount &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; max_rewards&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;let tt = document.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;getElementsByTagName&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;title&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)[&lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;tt.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;innerHTML&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; = &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;[&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + currentSearchCount + &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot; / &amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + max_rewards + &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;] &amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + tt.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;innerHTML&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 在标题中显示当前搜索次数&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;smoothScrollToBottom&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 添加执行滚动页面到底部的操作&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;GM_setValue&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;Cnt&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, currentSearchCount + &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 将计数器加1&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;setTimeout&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;let nowtxt = search_words&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;currentSearchCount&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 获取当前搜索词&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;nowtxt = &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;AutoStrTrans&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;nowtxt&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 对搜索词进行替换&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 检查是否需要暂停&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;((&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;currentSearchCount + &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; % &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; === &lt;/span&gt;&lt;span class=&quot;enlighter-n1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #AE81FF;&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;setTimeout&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;location.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;href&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; = &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;https://cn.bing.com/search?q=&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;encodeURI&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;nowtxt&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;&amp;amp;form=&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + randomString + &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;&amp;amp;cvid=&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + randomCvid; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 在Bing搜索引擎中搜索&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, pause_time&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;else&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;location.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;href&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; = &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;https://cn.bing.com/search?q=&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;encodeURI&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;nowtxt&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;&amp;amp;form=&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + randomString + &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;quot;&amp;amp;cvid=&amp;quot;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; + randomCvid; &lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 在Bing搜索引擎中搜索&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, randomDelay&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-c0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #75715E;&quot;&gt;// 实现平滑滚动到页面底部的函数&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-k1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F92672;&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-m0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;smoothScrollToBottom&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; document.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;documentElement&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;enlighter-m3&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #66D9EF;&quot;&gt;scrollIntoView&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;({&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; behavior: &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;smooth&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;, block: &lt;/span&gt;&lt;span class=&quot;enlighter-s0&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #E6DB74;&quot;&gt;&amp;#39;end&amp;#39;&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;})&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 1px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;box-sizing: inherit; border: 0px solid rgb(255, 255, 255); font-family: inherit; font-size: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 1px 5px 5px 14px; vertical-align: baseline; display: table-row; list-style: none; line-height: 1.6em; min-height: 14px;&quot;&gt;&lt;div style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px 0px 0px 10px; vertical-align: baseline; display: table-cell;&quot;&gt;&lt;span class=&quot;enlighter-text&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;enlighter-g1&quot; style=&quot;box-sizing: inherit; border: 0px; font-family: inherit; font-size: 1.25em; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; line-height: inherit; color: #F8F8F2; font-weight: 700;&quot;&gt;}&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;p style=&quot;box-sizing: inherit; border: 0px; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 12px; outline: 0px; padding: 0px; vertical-align: baseline; hyphens: auto; overflow-wrap: break-word; text-indent: 2em; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;点击暴力猴插件图标，点击【+加号】增加自动化脚本。&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;figure class=&quot;wp-block-image&quot; style=&quot;box-sizing: inherit; margin: 0px; border: 0px; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 16px; outline: 0px; padding: 0px; vertical-align: baseline; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img decoding=&quot;async&quot; data-original=&quot;https://blog.waytomilky.com/zb_users/upload/2025/04/202504011743510272492108.png&quot; src=&quot;https://blog.waytomilky.com/zb_users/upload/2025/04/202504011743510272492108.png&quot; alt=&quot;快来媷微软的羊毛，加入微软积分领天猫礼品卡&quot; style=&quot;box-sizing: border-box; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: middle; height: auto; max-width: 100%; display: block;&quot;/&gt;&lt;/figure&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h3 class=&quot;wp-block-heading&quot; style=&quot;box-sizing: inherit; border-width: 0px 0px 0px 5px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: solid; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: rgb(54, 144, 207); border-image: initial; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 1.6rem; margin: 2px -21px 10px; outline: 0px; padding: 0px 44px; vertical-align: baseline; line-height: 30.4px; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;第四步： 安装好脚本后，打开必应搜索， 随便搜点东西， 进入搜索界面&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; border: 0px; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 12px; outline: 0px; padding: 0px; vertical-align: baseline; hyphens: auto; overflow-wrap: break-word; text-indent: 2em; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;此时点击暴力猴插件是亮着的， 可以看到必应脚本， 点击【开始】，即可运行自动跑积分任务&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; border: 0px; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 12px; outline: 0px; padding: 0px; vertical-align: baseline; hyphens: auto; overflow-wrap: break-word; text-indent: 2em; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;figure class=&quot;wp-block-image&quot; style=&quot;box-sizing: inherit; margin: 0px; border: 0px; font-family: &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, Tahoma, sans-serif; font-size: 16px; outline: 0px; padding: 0px; vertical-align: baseline; color: rgb(68, 68, 68); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img decoding=&quot;async&quot; data-original=&quot;https://blog.waytomilky.com/zb_users/upload/2025/04/202504011743510444516132.png&quot; src=&quot;https://blog.waytomilky.com/zb_users/upload/2025/04/202504011743510444516132.png&quot; alt=&quot;快来媷微软的羊毛，加入微软积分领天猫礼品卡&quot; style=&quot;box-sizing: border-box; border: 0px; font-family: inherit; font-style: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: middle; height: auto; max-width: 100%; display: block;&quot;/&gt;&lt;/figure&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Tue, 01 Apr 2025 20:17:35 +0800</pubDate></item><item><title>公告：zblog版本请务必更新到最新版 v173430，解决各类插件推送问题</title><link>https://blog.waytomilky.com/post/35.html</link><description>&lt;p&gt;## 请务必更新到最新版本&amp;nbsp;&lt;span style=&quot;color: #333333; font-family: &amp;quot;Microsoft YaHei&amp;quot;, STHeiti, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Heiti SC&amp;quot;, NSimSun, SimSun, Arial, Helvetica, sans-serif; text-align: -webkit-center; text-wrap-mode: wrap; background-color: #FFFFFF;&quot;&gt;Z-BlogPHP 1.7.4 Shelter Build 173430&lt;/span&gt;&lt;/p&gt;</description><pubDate>Sat, 15 Mar 2025 23:52:40 +0800</pubDate></item><item><title>豆包插件如何使用？ </title><link>https://blog.waytomilky.com/post/34.html</link><description>&lt;h2&gt;第一步，配置key：&lt;/h2&gt;&lt;h2&gt;&lt;img src=&quot;https://blog.waytomilky.com/zb_users/upload/2025/01/202501101736476386519190.png&quot; alt=&quot;image.png&quot;/&gt;&lt;br/&gt;第二步，导入关键词：&lt;/h2&gt;&lt;p&gt;&lt;img src=&quot;https://blog.waytomilky.com/zb_users/upload/2025/01/202501101736476418363202.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h2&gt;第三步：配置定时任务&lt;/h2&gt;&lt;h2&gt;&lt;br/&gt;&lt;img src=&quot;https://blog.waytomilky.com/zb_users/upload/2025/01/202501101736476492741512.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/h2&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Fri, 10 Jan 2025 10:32:44 +0800</pubDate></item><item><title>【豆包AI自动写文章】插件使用教程</title><link>https://blog.waytomilky.com/post/33.html</link><description>&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h3&gt;配置Api&lt;br/&gt;&lt;/h3&gt;&lt;p&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;配置api和一些关键配置，具体可参考表单下面的说明文字&lt;/span&gt;&lt;br/&gt;&lt;img src=&quot;https://blog.waytomilky.com/zb_users/upload/2024/12/202412021733145411823005.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h2&gt;导入关键词&lt;/h2&gt;&lt;p&gt;导入txt文档，每行一个关键词，上传文件后，点击导入按钮，即可快速导入！&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://blog.waytomilky.com/zb_users/upload/2024/12/202412021733145452433126.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h2&gt;定时任务生成文章&lt;/h2&gt;&lt;p&gt;&lt;br/&gt;访问链接定时任务或者直接访问： 即可生成文章，可将此链接添加为宝塔【&lt;span style=&quot;text-wrap: wrap;&quot;&gt;访问URL&lt;/span&gt;】定时任务，自动触发。&amp;nbsp;&lt;/p&gt;&lt;p&gt;后台任务脚本定时任务： 设置 shell脚本 定时任务。&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;img src=&quot;https://blog.waytomilky.com/zb_users/upload/2024/12/202412021733145501391226.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h3&gt;商店地址：&lt;/h3&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: wrap;&quot;&gt;zblog商店地址：&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;https://app.zblogcn.com/?auth=8a4f3086-399a-4543-a0be-24c676a0a6b5&quot; target=&quot;_blank&quot; style=&quot;text-wrap: wrap;&quot;&gt;https://app.zblogcn.com/?auth=8a4f3086-399a-4543-a0be-24c676a0a6b5&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 02 Dec 2024 21:15:35 +0800</pubDate></item><item><title>Linux 中的硬链接和软连接是什么，二者有什么区别？</title><link>https://blog.waytomilky.com/post/32.html</link><description>&lt;p&gt;Linux 中的硬链接和软连接是什么，二者有什么区别？&lt;/p&gt;&lt;p&gt;在 Linux 中，硬链接和软连接都是文件的一种特殊类型，它们可以帮助用户在文件系统中创建指向其他文件或目录的链接。&lt;/p&gt;&lt;p&gt;硬链接是指通过创建一个新的文件来引用已存在的文件，这两个文件实际上是同一个文件，它们共享相同的 inode 号和数据块。因此，修改其中一个文件会影响到另一个文件，并且删除其中一个文件并不会影响到另一个文件，因为它们实际上是同一个文件。硬链接可以用于为文件创建多个名称，或者在不同的目录中引用同一个文件。&lt;/p&gt;&lt;p&gt;软链接也称为符号链接，它是一个独立的文件，其中包含了被链接文件的路径名。当用户访问软链接时，系统会根据软链接中指定的路径名去访问真正的文件或目录。因此，软链接实际上是一个指向其他文件或目录的指针，而不是文件的副本。与硬链接不同，软链接可以跨越文件系统创建，并且可以链接到不存在的文件或目录。&lt;/p&gt;&lt;p&gt;硬链接和软链接的主要区别在于：&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;硬链接是同一个文件的不同名称，而软链接是指向其他文件或目录的指针。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;硬链接可以在同一文件系统中创建，也可以在不同的文件系统中创建，而软链接只能在同一文件系统中创建。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;硬链接不能链接到目录，而软链接可以链接到目录。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;硬链接不可以跨越文件系统创建，而软链接可以。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;删除硬链接不会影响到被链接的文件，而删除软链接会使得链接失效。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;总的来说，硬链接和软链接都是在文件系统中创建链接的方式，它们各有优缺点，适用于不同的场景。在实际应用中，用户可以根据需要选择使用哪种链接方式。&lt;/p&gt;</description><pubDate>Mon, 25 Nov 2024 23:18:25 +0800</pubDate></item><item><title>在 Linux 系统中，如何使用 netstat 命令查看当前的网络连接情况？</title><link>https://blog.waytomilky.com/post/31.html</link><description>&lt;h2&gt;在 Linux 系统中，如何使用 netstat 命令查看当前的网络连接情况？&lt;/h2&gt;
&lt;p&gt;在 Linux 系统中，netstat 命令是一个用于显示网络连接、路由表、接口统计信息等网络状态的工具。使用 netstat 命令可以查看当前系统中所有的网络连接情况，包括 TCP、UDP、ICMP 等协议的连接信息。&lt;/p&gt;
&lt;p&gt;要使用 netstat 命令查看当前的网络连接情况，可以按以下步骤进行操作：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;打开终端窗口：在 Linux 系统中，可以通过按下 Ctrl+Alt+T 快捷键来打开终端窗口。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;输入命令：在终端窗口中输入以下命令：&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;netstat -anp&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;该命令的含义是：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;-a&lt;/code&gt;：显示所有连接和监听端口。&lt;/li&gt;
&lt;li&gt;&lt;code&gt;-n&lt;/code&gt;：以数字形式显示端口号和进程 ID（PID），而不是解析为端口名称。&lt;/li&gt;
&lt;li&gt;&lt;code&gt;-p&lt;/code&gt;：显示与每个连接相关联的进程信息。&lt;/li&gt;
&lt;/ul&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;查看结果：执行命令后，netstat 命令将显示当前系统中所有的网络连接情况，包括连接状态、本地地址和远程地址、协议、PID 和进程名称等信息。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;下面是一个示例输出：&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;Active Internet connections (w/o servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      1157/sshd
tcp        0      0 127.0.0.1:631            0.0.0.0:*               LISTEN      1174/cupsd
tcp        0      0 :::22                   :::*                    LISTEN      1157/sshd
tcp6       0      0 :::22                   :::*                    LISTEN      1157/sshd&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;在这个示例中，显示了当前系统中所有的 TCP 连接信息。其中，Proto 表示协议（tcp 表示传输控制协议），Recv-Q 和 Send-Q 分别表示接收队列和发送队列的大小，Local Address 和 Foreign Address 分别表示本地地址和远程地址，State 表示连接状态（LISTEN 表示监听状态），PID/Program name 表示进程 ID 和进程名称。&lt;/p&gt;
&lt;p&gt;需要注意的是，netstat 命令的输出结果可能会因为系统的不同而有所差异。如果你想了解更多关于 netstat 命令的选项和用法，可以使用&lt;code&gt;man netstat&lt;/code&gt;命令查看帮助文档。&lt;/p&gt;</description><pubDate>Mon, 25 Nov 2024 23:16:53 +0800</pubDate></item></channel></rss>