searxng/searx/webapp.py
Joseph Cheung a297b2ee7d c
2023-03-13 00:34:01 +08:00

2154 lines
409 KiB
Python
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env python
# SPDX-License-Identifier: AGPL-3.0-or-later
# lint: pylint
# pyright: basic
"""WebbApp
"""
# pylint: disable=use-dict-literal
import hashlib
import hmac
import json
import os
import sys
import base64
import requests
import markdown
import re
import datetime
from textrank4zh import TextRank4Keyword, TextRank4Sentence
import pycorrector
import threading
from timeit import default_timer
from html import escape
from io import StringIO
import typing
from typing import List, Dict, Iterable
import urllib
import urllib.parse
from urllib.parse import urlencode, unquote
import httpx
from pygments import highlight
from pygments.lexers import get_lexer_by_name
from pygments.formatters import HtmlFormatter # pylint: disable=no-name-in-module
import flask
from flask import (
Flask,
render_template,
url_for,
make_response,
redirect,
send_from_directory,
)
from flask.wrappers import Response
from flask.json import jsonify
from flask_babel import (
Babel,
gettext,
format_decimal,
)
from searx import (
logger,
get_setting,
settings,
searx_debug,
)
from searx import infopage
from searx.data import ENGINE_DESCRIPTIONS
from searx.results import Timing, UnresponsiveEngine
from searx.settings_defaults import OUTPUT_FORMATS
from searx.settings_loader import get_default_settings_path
from searx.exceptions import SearxParameterException
from searx.engines import (
OTHER_CATEGORY,
categories,
engines,
engine_shortcuts,
)
from searx.webutils import (
UnicodeWriter,
highlight_content,
get_static_files,
get_result_templates,
get_themes,
prettify_url,
new_hmac,
is_hmac_of,
is_flask_run_cmdline,
group_engines_in_tab,
searxng_l10n_timespan,
)
from searx.webadapter import (
get_search_query_from_webapp,
get_selected_categories,
)
from searx.utils import (
html_to_text,
gen_useragent,
dict_subset,
match_language,
)
from searx.version import VERSION_STRING, GIT_URL, GIT_BRANCH
from searx.query import RawTextQuery
from searx.plugins import Plugin, plugins, initialize as plugin_initialize
from searx.plugins.oa_doi_rewrite import get_doi_resolver
from searx.preferences import (
Preferences,
ValidationException,
)
from searx.answerers import (
answerers,
ask,
)
from searx.metrics import (
get_engines_stats,
get_engine_errors,
get_reliabilities,
histogram,
counter,
)
from searx.flaskfix import patch_application
from searx.locales import (
LOCALE_NAMES,
RTL_LOCALES,
localeselector,
locales_initialize,
)
# renaming names from searx imports ...
from searx.autocomplete import search_autocomplete, backends as autocomplete_backends
from searx.languages import language_codes as languages
from searx.redisdb import initialize as redis_initialize
from searx.search import SearchWithPlugins, initialize as search_initialize
from searx.network import stream as http_stream, set_context_network_name
from searx.search.checker import get_result as checker_get_result
logger = logger.getChild('webapp')
# check secret_key
if not searx_debug and settings['server']['secret_key'] == 'ultrasecretkey':
logger.error('server.secret_key is not changed. Please use something else instead of ultrasecretkey.')
sys.exit(1)
# about static
logger.debug('static directory is %s', settings['ui']['static_path'])
static_files = get_static_files(settings['ui']['static_path'])
# about templates
logger.debug('templates directory is %s', settings['ui']['templates_path'])
default_theme = settings['ui']['default_theme']
templates_path = settings['ui']['templates_path']
themes = get_themes(templates_path)
result_templates = get_result_templates(templates_path)
STATS_SORT_PARAMETERS = {
'name': (False, 'name', ''),
'score': (True, 'score_per_result', 0),
'result_count': (True, 'result_count', 0),
'time': (False, 'total', 0),
'reliability': (False, 'reliability', 100),
}
# Flask app
app = Flask(__name__, static_folder=settings['ui']['static_path'], template_folder=templates_path)
app.jinja_env.trim_blocks = True
app.jinja_env.lstrip_blocks = True
app.jinja_env.add_extension('jinja2.ext.loopcontrols') # pylint: disable=no-member
app.jinja_env.filters['group_engines_in_tab'] = group_engines_in_tab # pylint: disable=no-member
app.secret_key = settings['server']['secret_key']
timeout_text = gettext('timeout')
parsing_error_text = gettext('parsing error')
http_protocol_error_text = gettext('HTTP protocol error')
network_error_text = gettext('network error')
ssl_cert_error_text = gettext("SSL error: certificate validation has failed")
exception_classname_to_text = {
None: gettext('unexpected crash'),
'timeout': timeout_text,
'asyncio.TimeoutError': timeout_text,
'httpx.TimeoutException': timeout_text,
'httpx.ConnectTimeout': timeout_text,
'httpx.ReadTimeout': timeout_text,
'httpx.WriteTimeout': timeout_text,
'httpx.HTTPStatusError': gettext('HTTP error'),
'httpx.ConnectError': gettext("HTTP connection error"),
'httpx.RemoteProtocolError': http_protocol_error_text,
'httpx.LocalProtocolError': http_protocol_error_text,
'httpx.ProtocolError': http_protocol_error_text,
'httpx.ReadError': network_error_text,
'httpx.WriteError': network_error_text,
'httpx.ProxyError': gettext("proxy error"),
'searx.exceptions.SearxEngineCaptchaException': gettext("CAPTCHA"),
'searx.exceptions.SearxEngineTooManyRequestsException': gettext("too many requests"),
'searx.exceptions.SearxEngineAccessDeniedException': gettext("access denied"),
'searx.exceptions.SearxEngineAPIException': gettext("server API error"),
'searx.exceptions.SearxEngineXPathException': parsing_error_text,
'KeyError': parsing_error_text,
'json.decoder.JSONDecodeError': parsing_error_text,
'lxml.etree.ParserError': parsing_error_text,
'ssl.SSLCertVerificationError': ssl_cert_error_text, # for Python > 3.7
'ssl.CertificateError': ssl_cert_error_text, # for Python 3.7
}
class ExtendedRequest(flask.Request):
"""This class is never initialized and only used for type checking."""
preferences: Preferences
errors: List[str]
user_plugins: List[Plugin]
form: Dict[str, str]
start_time: float
render_time: float
timings: List[Timing]
request = typing.cast(ExtendedRequest, flask.request)
def get_locale():
locale = localeselector()
logger.debug("%s uses locale `%s`", urllib.parse.quote(request.url), locale)
return locale
babel = Babel(app, locale_selector=get_locale)
def _get_browser_language(req, lang_list):
for lang in req.headers.get("Accept-Language", "en").split(","):
if ';' in lang:
lang = lang.split(';')[0]
if '-' in lang:
lang_parts = lang.split('-')
lang = "{}-{}".format(lang_parts[0], lang_parts[-1].upper())
locale = match_language(lang, lang_list, fallback=None)
if locale is not None:
return locale
return 'en'
def _get_locale_rfc5646(locale):
"""Get locale name for <html lang="...">
Chrom* browsers don't detect the language when there is a subtag (ie a territory).
For example "zh-TW" is detected but not "zh-Hant-TW".
This function returns a locale without the subtag.
"""
parts = locale.split('-')
return parts[0].lower() + '-' + parts[-1].upper()
# code-highlighter
@app.template_filter('code_highlighter')
def code_highlighter(codelines, language=None):
if not language:
language = 'text'
try:
# find lexer by programming language
lexer = get_lexer_by_name(language, stripall=True)
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
# if lexer is not found, using default one
lexer = get_lexer_by_name('text', stripall=True)
html_code = ''
tmp_code = ''
last_line = None
line_code_start = None
# parse lines
for line, code in codelines:
if not last_line:
line_code_start = line
# new codeblock is detected
if last_line is not None and last_line + 1 != line:
# highlight last codepart
formatter = HtmlFormatter(linenos='inline', linenostart=line_code_start, cssclass="code-highlight")
html_code = html_code + highlight(tmp_code, lexer, formatter)
# reset conditions for next codepart
tmp_code = ''
line_code_start = line
# add codepart
tmp_code += code + '\n'
# update line
last_line = line
# highlight last codepart
formatter = HtmlFormatter(linenos='inline', linenostart=line_code_start, cssclass="code-highlight")
html_code = html_code + highlight(tmp_code, lexer, formatter)
return html_code
def get_result_template(theme_name: str, template_name: str):
themed_path = theme_name + '/result_templates/' + template_name
if themed_path in result_templates:
return themed_path
return 'result_templates/' + template_name
def custom_url_for(endpoint: str, **values):
suffix = ""
if endpoint == 'static' and values.get('filename'):
file_hash = static_files.get(values['filename'])
if not file_hash:
# try file in the current theme
theme_name = request.preferences.get_value('theme')
filename_with_theme = "themes/{}/{}".format(theme_name, values['filename'])
file_hash = static_files.get(filename_with_theme)
if file_hash:
values['filename'] = filename_with_theme
if get_setting('ui.static_use_hash') and file_hash:
suffix = "?" + file_hash
if endpoint == 'info' and 'locale' not in values:
locale = request.preferences.get_value('locale')
if _INFO_PAGES.get_page(values['pagename'], locale) is None:
locale = _INFO_PAGES.locale_default
values['locale'] = locale
return url_for(endpoint, **values) + suffix
def morty_proxify(url: str):
if url.startswith('//'):
url = 'https:' + url
if not settings['result_proxy']['url']:
return url
url = url.replace("://mobile.twitter.com","://nitter.net").replace("://mobile.twitter.com","://nitter.net").replace("://twitter.com","://nitter.net")
url_params = dict(mortyurl=url)
if settings['result_proxy']['key']:
url_params['mortyhash'] = hmac.new(settings['result_proxy']['key'], url.encode(), hashlib.sha256).hexdigest()
return '{0}?{1}'.format(settings['result_proxy']['url'], urlencode(url_params))
def image_proxify(url: str):
if url.startswith('//'):
url = 'https:' + url
if not request.preferences.get_value('image_proxy'):
return url
if url.startswith('data:image/'):
# 50 is an arbitrary number to get only the beginning of the image.
partial_base64 = url[len('data:image/') : 50].split(';')
if (
len(partial_base64) == 2
and partial_base64[0] in ['gif', 'png', 'jpeg', 'pjpeg', 'webp', 'tiff', 'bmp']
and partial_base64[1].startswith('base64,')
):
return url
return None
if settings['result_proxy']['url']:
return morty_proxify(url)
h = new_hmac(settings['server']['secret_key'], url.encode())
return '{0}?{1}'.format(url_for('image_proxy'), urlencode(dict(url=url.encode(), h=h)))
def get_translations():
return {
# when there is autocompletion
'no_item_found': gettext('No item found'),
# /preferences: the source of the engine description (wikipedata, wikidata, website)
'Source': gettext('Source'),
# infinite scroll
'error_loading_next_page': gettext('Error loading the next page'),
}
def _get_enable_categories(all_categories: Iterable[str]):
disabled_engines = request.preferences.engines.get_disabled()
enabled_categories = set(
# pylint: disable=consider-using-dict-items
category
for engine_name in engines
for category in engines[engine_name].categories
if (engine_name, category) not in disabled_engines
)
return [x for x in all_categories if x in enabled_categories]
def get_pretty_url(parsed_url: urllib.parse.ParseResult):
path = parsed_url.path
path = path[:-1] if len(path) > 0 and path[-1] == '/' else path
path = unquote(path.replace("/", " "))
return [parsed_url.scheme + "://" + parsed_url.netloc, path]
def get_client_settings():
req_pref = request.preferences
return {
'autocomplete_provider': req_pref.get_value('autocomplete'),
'autocomplete_min': get_setting('search.autocomplete_min'),
'http_method': req_pref.get_value('method'),
'infinite_scroll': req_pref.get_value('infinite_scroll'),
'translations': get_translations(),
'search_on_category_select': req_pref.plugins.choices['searx.plugins.search_on_category_select'],
'hotkeys': req_pref.plugins.choices['searx.plugins.vim_hotkeys'],
'theme_static_path': custom_url_for('static', filename='themes/simple'),
}
def render(template_name: str, **kwargs):
kwargs['client_settings'] = str(
base64.b64encode(
bytes(
json.dumps(get_client_settings()),
encoding='utf-8',
)
),
encoding='utf-8',
)
# values from the HTTP requests
kwargs['endpoint'] = 'results' if 'q' in kwargs else request.endpoint
kwargs['cookies'] = request.cookies
kwargs['errors'] = request.errors
# values from the preferences
kwargs['preferences'] = request.preferences
kwargs['autocomplete'] = request.preferences.get_value('autocomplete')
kwargs['infinite_scroll'] = request.preferences.get_value('infinite_scroll')
kwargs['results_on_new_tab'] = request.preferences.get_value('results_on_new_tab')
kwargs['advanced_search'] = request.preferences.get_value('advanced_search')
kwargs['query_in_title'] = request.preferences.get_value('query_in_title')
kwargs['safesearch'] = str(request.preferences.get_value('safesearch'))
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN': kwargs['safesearch'] = '1'
kwargs['theme'] = request.preferences.get_value('theme')
kwargs['method'] = request.preferences.get_value('method')
kwargs['categories_as_tabs'] = list(settings['categories_as_tabs'].keys())
kwargs['categories'] = _get_enable_categories(categories.keys())
kwargs['OTHER_CATEGORY'] = OTHER_CATEGORY
# i18n
kwargs['language_codes'] = [l for l in languages if l[0] in settings['search']['languages']]
locale = request.preferences.get_value('locale')
kwargs['locale_rfc5646'] = _get_locale_rfc5646(locale)
if locale in RTL_LOCALES and 'rtl' not in kwargs:
kwargs['rtl'] = True
if 'current_language' not in kwargs:
kwargs['current_language'] = match_language(
request.preferences.get_value('language'), settings['search']['languages']
)
# values from settings
kwargs['search_formats'] = [x for x in settings['search']['formats'] if x != 'html']
kwargs['instance_name'] = get_setting('general.instance_name')
kwargs['searx_version'] = VERSION_STRING
kwargs['searx_git_url'] = GIT_URL
kwargs['enable_metrics'] = get_setting('general.enable_metrics')
kwargs['get_setting'] = get_setting
kwargs['get_pretty_url'] = get_pretty_url
# values from settings: donation_url
donation_url = get_setting('general.donation_url')
if donation_url is True:
donation_url = custom_url_for('info', pagename='donate')
kwargs['donation_url'] = donation_url
# helpers to create links to other pages
kwargs['url_for'] = custom_url_for # override url_for function in templates
kwargs['image_proxify'] = image_proxify
kwargs['proxify'] = morty_proxify if settings['result_proxy']['url'] is not None else None
kwargs['proxify_results'] = settings['result_proxy']['proxify_results']
kwargs['cache_url'] = settings['ui']['cache_url']
kwargs['get_result_template'] = get_result_template
kwargs['doi_resolver'] = get_doi_resolver(request.preferences)
kwargs['opensearch_url'] = (
url_for('opensearch')
+ '?'
+ urlencode(
{
'method': request.preferences.get_value('method'),
'autocomplete': request.preferences.get_value('autocomplete'),
}
)
)
# scripts from plugins
kwargs['scripts'] = set()
for plugin in request.user_plugins:
for script in plugin.js_dependencies:
kwargs['scripts'].add(script)
# styles from plugins
kwargs['styles'] = set()
for plugin in request.user_plugins:
for css in plugin.css_dependencies:
kwargs['styles'].add(css)
start_time = default_timer()
result = render_template('{}/{}'.format(kwargs['theme'], template_name), **kwargs)
request.render_time += default_timer() - start_time # pylint: disable=assigning-non-slot
return result
@app.before_request
def pre_request():
request.start_time = default_timer() # pylint: disable=assigning-non-slot
request.render_time = 0 # pylint: disable=assigning-non-slot
request.timings = [] # pylint: disable=assigning-non-slot
request.errors = [] # pylint: disable=assigning-non-slot
preferences = Preferences(themes, list(categories.keys()), engines, plugins) # pylint: disable=redefined-outer-name
user_agent = request.headers.get('User-Agent', '').lower()
if 'webkit' in user_agent and 'android' in user_agent:
preferences.key_value_settings['method'].value = 'GET'
request.preferences = preferences # pylint: disable=assigning-non-slot
try:
preferences.parse_dict(request.cookies)
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
request.errors.append(gettext('Invalid settings, please edit your preferences'))
# merge GET, POST vars
# request.form
request.form = dict(request.form.items()) # pylint: disable=assigning-non-slot
for k, v in request.args.items():
if k not in request.form:
request.form[k] = v
if request.form.get('preferences'):
preferences.parse_encoded_data(request.form['preferences'])
else:
try:
preferences.parse_dict(request.form)
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
request.errors.append(gettext('Invalid settings'))
# language is defined neither in settings nor in preferences
# use browser headers
if not preferences.get_value("language"):
language = _get_browser_language(request, settings['search']['languages'])
preferences.parse_dict({"language": language})
logger.debug('set language %s (from browser)', preferences.get_value("language"))
# locale is defined neither in settings nor in preferences
# use browser headers
if not preferences.get_value("locale"):
locale = _get_browser_language(request, LOCALE_NAMES.keys())
preferences.parse_dict({"locale": locale})
logger.debug('set locale %s (from browser)', preferences.get_value("locale"))
# request.user_plugins
request.user_plugins = [] # pylint: disable=assigning-non-slot
allowed_plugins = preferences.plugins.get_enabled()
disabled_plugins = preferences.plugins.get_disabled()
for plugin in plugins:
if (plugin.default_on and plugin.id not in disabled_plugins) or plugin.id in allowed_plugins:
request.user_plugins.append(plugin)
@app.after_request
def add_default_headers(response: flask.Response):
# set default http headers
for header, value in settings['server']['default_http_headers'].items():
if header in response.headers:
continue
response.headers[header] = value
return response
@app.after_request
def post_request(response: flask.Response):
total_time = default_timer() - request.start_time
timings_all = [
'total;dur=' + str(round(total_time * 1000, 3)),
'render;dur=' + str(round(request.render_time * 1000, 3)),
]
if len(request.timings) > 0:
timings = sorted(request.timings, key=lambda t: t.total)
timings_total = [
'total_' + str(i) + '_' + t.engine + ';dur=' + str(round(t.total * 1000, 3)) for i, t in enumerate(timings)
]
timings_load = [
'load_' + str(i) + '_' + t.engine + ';dur=' + str(round(t.load * 1000, 3))
for i, t in enumerate(timings)
if t.load
]
timings_all = timings_all + timings_total + timings_load
# response.headers.add('Server-Timing', ', '.join(timings_all))
return response
def index_error(output_format: str, error_message: str):
if output_format == 'json':
return Response(json.dumps({'error': error_message}), mimetype='application/json')
if output_format == 'csv':
response = Response('', mimetype='application/csv')
cont_disp = 'attachment;Filename=searx.csv'
response.headers.add('Content-Disposition', cont_disp)
return response
if output_format == 'rss':
response_rss = render(
'opensearch_response_rss.xml',
results=[],
q=request.form['q'] if 'q' in request.form else '',
number_of_results=0,
error_message=error_message,
)
return Response(response_rss, mimetype='text/xml')
# html
request.errors.append(gettext('search error'))
return render(
# fmt: off
'index.html',
selected_categories=get_selected_categories(request.preferences, request.form),
# fmt: on
)
@app.route('/', methods=['GET', 'POST'])
def index():
"""Render index page."""
# redirect to search if there's a query in the request
if request.form.get('q'):
query = ('?' + request.query_string.decode()) if request.query_string else ''
return redirect(url_for('search') + query, 308)
return render(
# fmt: off
'index.html',
selected_categories=get_selected_categories(request.preferences, request.form),
current_locale = request.preferences.get_value("locale"),
# fmt: on
)
@app.route('/healthz', methods=['GET'])
def health():
return Response('OK', mimetype='text/plain')
@app.route('/keytext', methods=['POST'])
def keytext():
res = []
text = request.json['text']
tr4s = TextRank4Sentence()
tr4s.analyze(text=text, lower=True, source = 'all_filters')
for item in tr4s.get_key_sentences(num=15):
res.append(item.sentence)
return Response(json.dumps(res), mimetype='application/json')
def process_result(result):
url_pattern = re.compile(r'^(https?://)?([a-z0-9-]+\.)+[a-z0-9-]+\.[a-z]+/?$')
# 判断URL是否符合要求
if not url_pattern.match(result['url']):
return
# 发起GET请求访问API
query_url=re.sub(r'https?://', '', result['url'])
try:
response = requests.get(f'https://noisy-dust-b504.marduk.workers.dev/siteOwner?url={query_url}', timeout=5)
except requests.exceptions.Timeout:
print(f'Request timeout for {result["url"]}')
return
except requests.exceptions.RequestException as e:
print(f'Request error for {result["url"]}: {e}')
return
# 判断返回值是否为'null'如果不是则更新title
if response.text != 'null':
result['title'] += ' (该网站属于:' +response.text + ')'
@app.route('/search', methods=['GET', 'POST'])
def search():
"""Search query in q and return results.
Supported outputs: html, json, csv, rss.
"""
# pylint: disable=too-many-locals, too-many-return-statements, too-many-branches
# pylint: disable=too-many-statements
# output_format
output_format = request.form.get('format', 'html')
if output_format not in OUTPUT_FORMATS:
output_format = 'html'
if output_format not in settings['search']['formats']:
flask.abort(403)
# check if there is query (not None and not an empty string)
if not request.form.get('q'):
if output_format == 'html':
return render(
# fmt: off
'index.html',
selected_categories=get_selected_categories(request.preferences, request.form),
# fmt: on
)
return index_error(output_format, 'No query'), 400
# search
search_query = None
raw_text_query = None
result_container = None
original_search_query = ""
search_type = "搜索网页"
net_search = True
net_search_str = 'true'
prompt = ""
add_system = '[]'
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN':
add_system = "[{'role':'system','content':'拒绝回复法律、政治、政治人物相关内容'}]"
try:
search_query, raw_text_query, _, _ = get_search_query_from_webapp(request.preferences, request.form)
# search = Search(search_query) # without plugins
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN' and gfw.exists(search_query.query):
return render('404.html'), 404
try:
original_search_query = search_query.query
if "模仿" in search_query.query or "扮演" in search_query.query or "你能" in search_query.query or "请推荐" in search_query.query or "帮我" in search_query.query or "写一段" in search_query.query or "写一个" in search_query.query or "请问" in search_query.query or "请给" in search_query.query or "请你" in search_query.query or "请推荐" in search_query.query or "是谁" in search_query.query or "能帮忙" in search_query.query or "介绍一下" in search_query.query or "为什么" in search_query.query or "什么是" in search_query.query or "有什么" in search_query.query or "怎样" in search_query.query or "给我" in search_query.query or "如何" in search_query.query or "谁是" in search_query.query or "查询" in search_query.query or "告诉我" in search_query.query or "查一下" in search_query.query or "找一个" in search_query.query or "什么样" in search_query.query or "哪个" in search_query.query or "哪些" in search_query.query or "哪一个" in search_query.query or "哪一些" in search_query.query or "啥是" in search_query.query or "为啥" in search_query.query or "怎么" in search_query.query:
if len(search_query.query)>5 and "谁是" in search_query.query:
search_query.query = search_query.query.replace("谁是","")
if len(search_query.query)>5 and "是谁" in search_query.query:
search_query.query = search_query.query.replace("是谁","")
if len(search_query.query)>5 and not "谁是" in search_query.query and not "是谁" in search_query.query:
prompt = search_query.query + "\n对以上问题生成一个Google搜索词\n"
search_type = '任务'
net_search = False
net_search_str = 'false'
elif len(original_search_query)>10:
prompt = "任务:写诗 写故事 写代码 写论文摘要 模仿推特用户 生成搜索广告 回答问题 聊天话题 搜索网页 搜索视频 搜索地图 搜索新闻 查看食谱 搜索商品 写歌词 写论文 模仿名人 翻译语言 摘要文章 讲笑话 做数学题 搜索图片 播放音乐 查看天气\n1.判断是以上任务的哪一个2.判断是否需要联网回答3.给出搜索关键词\n"
prompt = prompt + "提问:" + search_query.query + '答案用json数组例如["写诗","","详细关键词"]来表述'
acts = ['写诗', '写故事', '写代码', '写论文摘要', '模仿推特用户', '生成搜索广告', '回答问题', '聊天话题', '搜索网页', '搜索视频', '搜索地图', '搜索新闻', '查看食谱', '搜索商品', '写歌词', '写论文', '模仿名人', '翻译语言', '摘要文章', '讲笑话', '做数学题', '搜索图片', '播放音乐', '查看天气']
if "今年" in prompt or "今天" in prompt:
now = datetime.datetime.now()
prompt = prompt.replace("今年",now.strftime('%Y年'))
prompt = prompt.replace("今天",now.strftime('%Y年%m月%d'))
gpt = ""
gpt_url = "https://api.openai.com/v1/chat/completions"
gpt_headers = {
"Authorization": "Bearer "+os.environ['GPTKEY'],
"Content-Type": "application/json",
}
gpt_data = {
"model": "gpt-3.5-turbo",
"messages": [{"role":"user","content":prompt}],
"max_tokens": 256,
"temperature": 0.9,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"stream": False
}
gpt_json={}
if prompt and prompt !='' :
gpt_response = requests.post(gpt_url, headers=gpt_headers, data=json.dumps(gpt_data))
gpt_json = gpt_response.json()
if 'choices' in gpt_json:
gpt = gpt_json['choices'][0]['message']['content']
if search_type == '任务':
for word in gpt.split('\n'):
if word != "":
gpt = word.replace("\"","").replace("\'","").replace("","").replace("","").replace("","").replace("","")
break
if gpt!="":
search_query.query = gpt
if 'Google' not in original_search_query and 'google' not in original_search_query and '谷歌' not in original_search_query and ('Google' in search_query.query or 'google' in search_query.query or '谷歌' in search_query.query):
search_query.query=search_query.query.replace("Google","").replace("google","").replace("谷歌","")
else:
gpt_judge = []
for tmpj in gpt.split():
try:
gpt_judge = json.loads(tmpj)
except:pass
if len(gpt_judge)==3 and gpt_judge[0] in acts and gpt_judge[2] != '' and (gpt_judge[1]=='' or gpt_judge[1]=='True' or gpt_judge[1]=='true'):
search_query.query = gpt_judge[2]
search_type = gpt_judge[0]
net_search = True
net_search_str = 'true'
elif len(gpt_judge)==3 and gpt_judge[0] in acts and gpt_judge[2] != '' and (gpt_judge[1]=='' or gpt_judge[1]=='False' or gpt_judge[1]=='false'):
search_type = gpt_judge[0]
net_search = False
net_search_str = 'false'
except Exception as ee:
logger.exception(ee, exc_info=True)
search = SearchWithPlugins(search_query, request.user_plugins, request) # pylint: disable=redefined-outer-name
result_container = search.search()
except SearxParameterException as e:
logger.exception('search error: SearxParameterException')
return index_error(output_format, e.message), 400
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
return index_error(output_format, gettext('No item found')), 500
# results
results = result_container.get_ordered_results()
number_of_results = result_container.results_number()
if number_of_results < result_container.results_length():
number_of_results = 0
# OPENAI GPT
raws = []
try:
url_pair = []
url_proxy = {}
prompt = ""
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN':
for res in results:
try:
if gfw.exists(res['title']):
results.remove(res)
# return index_error(output_format, gettext('No item found')), 500
if gfw.exists(res['content']):
# return index_error(output_format, gettext('No item found')), 500
results.remove(res)
except:pass
# threads = []
# for result in results:
# t = threading.Thread(target=process_result, args=(result,))
# t.start()
# threads.append(t)
# # 等待所有线程执行完毕
# for t in threads:
# t.join()
for res in results:
if 'engine' in res and res['engine'] == 'twitter':
try:
if gfw.exists(res['title']):
results.remove(res)
# return index_error(output_format, gettext('No item found')), 500
if gfw.exists(res['content']):
# return index_error(output_format, gettext('No item found')), 500
results.remove(res)
continue
except:pass
if 'url' not in res: continue
if 'title' not in res: continue
if 'content' not in res: continue
if res['content'] == '': continue
new_url = 'https://url'+str(len(url_pair))
url_pair.append(res['url'])
url_proxy[res['url']] = (morty_proxify(res['url']))
res['title'] = res['title'].replace("التغريدات مع الردود بواسطة","")
res['content'] = res['content'].replace(" "," ")
res['content'] = res['content'].replace("Translate Tweet. ","")
res['content'] = res['content'].replace("Learn more ","")
res['content'] = res['content'].replace("Translate Tweet.","")
res['content'] = res['content'].replace("Retweeted.","Reposted.")
res['content'] = res['content'].replace("Learn more.","")
res['content'] = res['content'].replace("Show replies.","")
res['content'] = res['content'].replace("See new Tweets. ","")
if "作者简介:金融学客座教授,硕士生导师" in res['content']: res['content']=res['title']
res['content'] = res['content'].replace("You're unable to view this Tweet because this account owner limits who can view their Tweets.","Private Tweet.")
res['content'] = res['content'].replace("Twitter for Android · ","")
res['content'] = res['content'].replace("This Tweet was deleted by the Tweet author.","Deleted Tweet.")
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
tmp_prompt = '运算结果:'+ res['content'] +'\n\n'
else: tmp_prompt = res['title'] +'\n'+ res['content'] + '\n' + new_url +'\n'
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
raws.insert(0,tmp_prompt)
else: raws.append(tmp_prompt)
if '搜索' in search_type and len( prompt + tmp_prompt +'\n' + "\n以上是关键词 " + original_search_query + " 的搜索结果,用简体中文总结简报,在文中用(网址)标注对应内容来源链接。结果:" ) <1600:
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
prompt = tmp_prompt + prompt + '\n'
else: prompt += tmp_prompt +'\n'
elif len( prompt + tmp_prompt +'\n' + "\n以上是 " + original_search_query + " 的网络知识。"+ search_type +",如果使用了网络知识,在文中用(网址)标注对应内容来源链接。结果:") <1600:
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
prompt = tmp_prompt + prompt + '\n'
else: prompt += tmp_prompt +'\n'
if prompt != "":
gpt = ""
gpt_url = "https://search.kg/completions"
gpt_headers = {
"Content-Type": "application/json",
}
if '搜索' not in search_type:
gpt_data = {
"messages": [{'role':'system','content':'如果使用了网络知识,在文中用(网址)标注对应内容来源链接'},{'role':'assistant','content': prompt+"\n以上是 " + original_search_query + " 的网络知识"},{'role':'user','content':original_search_query}] ,
"max_tokens": 1000,
"temperature": 0.2,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"stream": True
}
else:
gpt_data = {
"messages": [{'role':'assistant','content': prompt+"\n以上是 " + original_search_query + " 的搜索结果"},{'role':'user','content':"总结简报,在文中用(网址)标注对应内容来源链接"}] ,
"max_tokens": 1000,
"temperature": 0.2,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"stream": True
}
gpt = json.dumps({'data':gpt_data, 'url_pair':url_pair, 'url_proxy':url_proxy, 'raws': raws})
gpt = '<div id="chat_section"><div id="chat_intro"></div><div id="chat"></div>' + r'''
<div id="modal" class="modal">
<div id="modal-title" class="modal-title">网页速览<span>
<a id="closebtn" href="javascript:void(0);" class="close-modal closebtn"></a></span>
</div>
<div class="modal-input-content" id="modal-input-content">
<div id="iframe-wrapper">
<iframe sandbox="allow-same-origin allow-forms allow-scripts"></iframe>
<div id='readability-reader' style='display:none'></div>
</div>
</div>
</div>
<script>
// 1. 获取元素
var modal = document.querySelector('.modal');
var closeBtn = document.querySelector('#closebtn');
var title = document.querySelector('#modal-title');
// 2. 点击弹出层这个链接 link 让mask 和modal 显示出来
// 3. 点击 closeBtn 就隐藏 mask 和 modal
closeBtn.addEventListener('click', function () {
modal.style.display = 'none';
document.querySelector("#chat_section").appendChild(document.querySelector("#chat_talk"))
document.querySelector("#chat_section").appendChild(document.querySelector("#chat_continue"))
document.querySelector("#readability-reader").innerHTML = '';
try{iframe.removeAttribute('src');}catch(e){}
})
// 4. 开始拖拽
// (1) 当我们鼠标按下, 就获得鼠标在盒子内的坐标
modal.addEventListener('mousedown', function (e) {
var x = e.pageX - modal.offsetLeft;
var y = e.pageY - modal.offsetTop;
// (2) 鼠标移动的时候,把鼠标在页面中的坐标,减去 鼠标在盒子内的坐标就是模态框的left和top值
document.addEventListener('mousemove', move)
function move(e) {
modal.style.left = e.pageX - x + 'px';
modal.style.top = e.pageY - y + 'px';
}
// (3) 鼠标弹起,就让鼠标移动事件移除
document.addEventListener('mouseup', function () {
document.removeEventListener('mousemove', move);
})
})
modal.addEventListener('touchstart', function (e) {
var x = e.touches[0].pageX - modal.offsetLeft;
var y = e.touches[0].pageY - modal.offsetTop;
document.addEventListener('touchmove', move)
function move(e) {
modal.style.left = e.touches[0].pageX - x + 'px';
modal.style.top = e.touches[0].pageY - y + 'px';
}
// (3) 鼠标弹起,就让鼠标移动事件移除
document.addEventListener('touchend', function () {
document.removeEventListener('touchmove ', move);
})
})
</script>
<style>
.modal-header {
width: 100%;
text-align: center;
height: 30px;
font-size: 24px;
line-height: 30px;
}
.modal {
display: none;
width: 45%;
position: fixed;
left: 32%;
top: 50%;
background: var(--color-header-background);
z-index: 10001;
transform: translate(-50%, -50%);
}
@media screen and (max-width: 50em) {
.modal {
width: 85%;
left: 50%;
top: 50%;
}
}
.modal-title {
width: 100%;
margin: 10px 0px 0px 0px;
text-align: center;
line-height: 40px;
height: 40px;
font-size: 18px;
position: relative;
cursor: move;
}
.modal-button {
width: 50%;
margin: 30px auto 0px auto;
line-height: 40px;
font-size: 14px;
border: #ebebeb 1px solid;
text-align: center;
}
.modal-button a {
display: block;
}
.modal-input input.list-input {
float: left;
line-height: 35px;
height: 35px;
width: 350px;
border: #ebebeb 1px solid;
text-indent: 5px;
}
.modal-input {
overflow: hidden;
margin: 0px 0px 20px 0px;
}
.modal-input label {
float: left;
width: 90px;
padding-right: 10px;
text-align: right;
line-height: 35px;
height: 35px;
font-size: 14px;
}
.modal-title span {
position: absolute;
right: 0px;
top: -15px;
}
#chat_talk {
width: 100%;
max-height: 30vh;
position: relative;
overflow: scroll;
padding-top: 1em;
}
#iframe-wrapper {
width: 100%;
height: 40vh;
position: relative;
overflow: hidden; /* 防止滚动条溢出 */
}
#iframe-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none; /* 去掉边框 */
overflow: auto; /* 显示滚动条 */
}
#iframe-wrapper div {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none; /* 去掉边框 */
overflow: auto; /* 显示滚动条 */
}
.closebtn{
width: 25px;
height: 25px;
display: inline-block;
cursor: pointer;
position: absolute;
top: 15px;
right: 15px;
}
.closebtn::before, .closebtn::after {
content: '';
position: absolute;
height: 2px;
width: 20px;
top: 12px;
right: 2px;
background: #999;
cursor: pointer;
}
.closebtn::before {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.closebtn::after {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
</style>
<div id="chat_talk"></div>
<div id="chat_continue" style="display:none">
<div id="chat_more" style="display:none"></div>
<hr>
<textarea id="chat_input" style="margin: auto;display: block;background: rgb(209 219 250 / 30%);outline: 0px;color: var(--color-search-font);font-size: 1.2rem;border-radius: 3px;border: none;height: 3em;resize: vertical;width: 75%;"></textarea>
<button id="chat_send" onclick='send_chat()' style="
width: 75%;
display: block;
margin: auto;
margin-top: .8em;
border-radius: .8rem;
height: 2em;
background: linear-gradient(81.62deg, #2870ea 8.72%, #1b4aef 85.01%);
color: #fff;
border: none;
cursor: pointer;
">发送</button>
</div>
</div>
<style>
.chat_answer {
cursor: pointer;
line-height: 1.5em;
margin: 0.5em 3em 0.5em 0;
padding: 8px 12px;
color: white;
background: rgba(27,74,239,0.7);
}
.chat_question {
cursor: pointer;
line-height: 1.5em;
margin: 0.5em 0 0.5em 3em;
padding: 8px 12px;
color: black;
background: rgba(245, 245, 245, 0.7);
}
button.btn_more {
min-height: 30px;
text-align: left;
background: rgb(209, 219, 250);
border-radius: 8px;
overflow: hidden;
box-sizing: border-box;
padding: 0px 12px;
margin: 1px;
cursor: pointer;
font-weight: 500;
line-height: 28px;
border: 1px solid rgb(18, 59, 182);
color: rgb(18, 59, 182);
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: rgba(0, 0, 0, 0.3);
box-shadow: rgba(0, 0, 0, 0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background: rgba(17, 16, 16, 0.13);
-webkit-box-shadow: rgba(0, 0, 0, 0.9);
box-shadow: rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
background: rgba(211, 173, 209, 0.4);
}
</style>
''' + '<div id="prompt" style="display:none">' + (base64.b64encode(gpt.encode("utf-8")).decode('UTF-8') ) + '</div>'
# gpt_response = requests.post(gpt_url, headers=gpt_headers, data=json.dumps(gpt_data))
# gpt_json = gpt_response.json()
# if 'choices' in gpt_json:
# gpt = gpt_json['choices'][0]['text']
# gpt = gpt.replace("简报:","").replace("简报:","")
# for i in range(len(url_pair)-1,-1,-1):
# gpt = gpt.replace("https://url"+str(i),url_pair[i])
# rgpt = gpt
if gpt and gpt!="":
if original_search_query != search_query.query:
gpt = "Search 为您搜索:" + search_query.query + "\n\n" + gpt
gpt = gpt + r'''<style>
a.footnote {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-weight: 600;
vertical-align: top;
top: 0px;
margin: 1px 1px;
min-width: 14px;
height: 14px;
border-radius: 3px;
color: rgb(18, 59, 182);
background: rgb(209, 219, 250);
outline: transparent solid 1px;
}
</style>
<script src="/static/themes/magi/Readability-readerable.js"></script>
<script src="/static/themes/magi/Readability.js"></script>
<script src="/static/themes/magi/markdown.js"></script>
<script src="/static/themes/magi/stop_words.js"></script>
<script>
const original_search_query = "''' + original_search_query.replace('"',"") + r'''"
const search_queryquery = "''' + search_query.query.replace('"',"") + r'''"
const search_type = "''' + search_type + r'''"
const net_search = ''' + net_search_str + r'''
const add_system = ''' + add_system +r'''
</script><script>
const _0x38e31a=_0x2656,_0x2ebedc=_0x2656,_0x34d5ad=_0x2656,_0x45052c=_0x2656,_0x4e700d=_0x2656;(function(_0x4d6c16,_0x24929e){const _0x41db8c=_0x2656,_0x336d0c=_0x2656,_0x3fecbe=_0x2656,_0x45d43a=_0x2656,_0x47f664=_0x2656,_0x2585aa=_0x4d6c16();while(!![]){try{const _0x4424b1=parseInt(_0x41db8c(0x23e))/(-0x2057+0x22ae+0x17*-0x1a)+-parseInt(_0x41db8c(0x1c2))/(0x1*-0xb88+-0x1d*0xe9+0x25ef)*(parseInt(_0x3fecbe(0xa67))/(-0x11fb+0xaa*-0x26+-0x2b3a*-0x1))+-parseInt(_0x45d43a(0xe0a))/(-0x6*0x419+0xe*-0xb3+0x2264)*(parseInt(_0x45d43a(0x428))/(-0x1*0x1465+0x5*-0x1c5+-0xb*-0x2a9))+-parseInt(_0x45d43a(0x319))/(0x25*0x2+0x23e2+0x2*-0x1213)+-parseInt(_0x47f664(0xa39))/(-0x2174+-0x1b78+0x3cf3)+parseInt(_0x47f664(0x548))/(0x2ed*-0xa+0x4ca*0x1+0x1880)*(-parseInt(_0x41db8c(0x35f))/(-0x84*-0x2b+-0x746*-0x1+-0x1*0x1d69))+parseInt(_0x41db8c(0xcba))/(0x6b*0xf+0x2b*-0x83+-0x2*-0x7e3);if(_0x4424b1===_0x24929e)break;else _0x2585aa['push'](_0x2585aa['shift']());}catch(_0x817ee1){_0x2585aa['push'](_0x2585aa['shift']());}}}(_0x292e,-0x6c3f*0x11+-0xc8f*0x13d+0x20*0x12349));function proxify(){const _0x2b7278=_0x2656,_0x1b8db9=_0x2656,_0x13c9db=_0x2656,_0x1c86d9=_0x2656,_0x15dda1=_0x2656,_0x4b35b0={'mnUli':_0x2b7278(0x201)+_0x2b7278(0xaf2),'QhEOn':function(_0x33db32,_0x22519a){return _0x33db32(_0x22519a);},'TThyt':_0x1b8db9(0xdee)+'ss','OSEeo':function(_0x41b0e1,_0x422365){return _0x41b0e1===_0x422365;},'VZEyC':_0x1c86d9(0xc62),'twTHP':_0x13c9db(0x947),'stowN':function(_0x50668d,_0x17cdfb,_0xad9257){return _0x50668d(_0x17cdfb,_0xad9257);},'VPXjW':function(_0xd74f9d,_0x4a4181){return _0xd74f9d+_0x4a4181;},'QEmlA':function(_0xd041c5,_0xd2646b){return _0xd041c5>=_0xd2646b;},'IaPMB':function(_0x426ed8,_0x4fec20){return _0x426ed8!==_0x4fec20;},'nmrzK':_0x1c86d9(0xc9b),'vkUay':_0x15dda1(0x2c7)+_0x1b8db9(0x306),'nKcdw':function(_0x18867c,_0x29ef85){return _0x18867c+_0x29ef85;},'VeAnl':_0x1c86d9(0x65c),'uPSxE':function(_0x45cf8a,_0x46689c){return _0x45cf8a(_0x46689c);},'WIkfg':function(_0x458a1b,_0x2392af){return _0x458a1b+_0x2392af;},'sQTnQ':function(_0x265082,_0x3064d0){return _0x265082(_0x3064d0);},'XaswP':function(_0x574195,_0x346f45){return _0x574195+_0x346f45;},'jobBK':_0x2b7278(0x250),'llTZX':function(_0x2d5440,_0x36468e){return _0x2d5440+_0x36468e;}};for(let _0xc23526=Object[_0x2b7278(0x3d2)](prompt[_0x1c86d9(0xb4b)+_0x1b8db9(0x40b)])[_0x2b7278(0x8a3)+'h'];_0x4b35b0[_0x1b8db9(0x8b0)](_0xc23526,-0x1*0x26e7+0x4cc+0x1*0x221b);--_0xc23526){if(_0x4b35b0[_0x1c86d9(0x6ed)](_0x4b35b0[_0x15dda1(0xdde)],_0x4b35b0[_0x15dda1(0xdde)]))_0x4d9290[_0x2b7278(0x6ba)](_0x4b35b0[_0x2b7278(0x2a9)]),_0x4b35b0[_0x2b7278(0x94e)](_0x68fda,_0x4b35b0[_0x1b8db9(0xe66)]);else{if(document[_0x13c9db(0x9f4)+_0x15dda1(0xc14)+_0x2b7278(0xa51)](_0x4b35b0[_0x15dda1(0xbe9)](_0x4b35b0[_0x1b8db9(0x4bd)],_0x4b35b0[_0x15dda1(0x94e)](String,_0x4b35b0[_0x15dda1(0x802)](_0xc23526,-0x1904+0x2494+-0xb8f))))){if(_0x4b35b0[_0x13c9db(0x6ed)](_0x4b35b0[_0x1c86d9(0x757)],_0x4b35b0[_0x2b7278(0x757)]))_0xd9807a+='';else{let _0x15bc3f=document[_0x13c9db(0x9f4)+_0x13c9db(0xc14)+_0x13c9db(0xa51)](_0x4b35b0[_0x1c86d9(0xbe9)](_0x4b35b0[_0x1b8db9(0x4bd)],_0x4b35b0[_0x13c9db(0x93f)](String,_0x4b35b0[_0x15dda1(0xbe9)](_0xc23526,0x2*-0x43f+0x13fb+-0x1*0xb7c))))[_0x1c86d9(0x250)];if(!_0x15bc3f||!prompt[_0x1b8db9(0xb4b)+_0x13c9db(0x40b)][_0x15bc3f])continue;const _0x378c7e=prompt[_0x1c86d9(0xb4b)+_0x1c86d9(0x40b)][_0x15bc3f];document[_0x1b8db9(0x9f4)+_0x13c9db(0xc14)+_0x15dda1(0xa51)](_0x4b35b0[_0x15dda1(0x320)](_0x4b35b0[_0x13c9db(0x4bd)],_0x4b35b0[_0x2b7278(0x897)](String,_0x4b35b0[_0x15dda1(0x802)](_0xc23526,0xeed*0x2+-0x1*0x16df+0x5e*-0x13))))[_0x13c9db(0x52a)+'ck']=function(){const _0x618f02=_0x13c9db,_0x4ff4df=_0x15dda1,_0x7b56da=_0x15dda1,_0x172df4=_0x2b7278,_0x3f1a54=_0x13c9db;_0x4b35b0[_0x618f02(0xc06)](_0x4b35b0[_0x4ff4df(0x8df)],_0x4b35b0[_0x618f02(0x907)])?_0x541744+=_0x25515d:_0x4b35b0[_0x7b56da(0xdcf)](modal_open,_0x378c7e,_0x4b35b0[_0x618f02(0xbe9)](_0xc23526,-0x21a2+0x93*0x7+-0x1be*-0x11));},document[_0x13c9db(0x9f4)+_0x1b8db9(0xc14)+_0x13c9db(0xa51)](_0x4b35b0[_0x1b8db9(0x6bd)](_0x4b35b0[_0x15dda1(0x4bd)],_0x4b35b0[_0x15dda1(0x94e)](String,_0x4b35b0[_0x13c9db(0xbe9)](_0xc23526,-0x1*-0x364+0x323*0x2+-0x1*0x9a9))))[_0x2b7278(0xd52)+_0x1b8db9(0xbc4)+_0x1b8db9(0x478)](_0x4b35b0[_0x1c86d9(0x77e)]),document[_0x1c86d9(0x9f4)+_0x2b7278(0xc14)+_0x2b7278(0xa51)](_0x4b35b0[_0x13c9db(0xce0)](_0x4b35b0[_0x13c9db(0x4bd)],_0x4b35b0[_0x13c9db(0x897)](String,_0x4b35b0[_0x2b7278(0x320)](_0xc23526,0x91d*-0x4+0x8d0+0x1ba5))))[_0x1b8db9(0xd52)+_0x1b8db9(0xbc4)+_0x13c9db(0x478)]('id');}}}}}const _load_wasm_jieba=async()=>{const _0x57a8d0=_0x2656,_0x4a8243=_0x2656,_0x5e6cde=_0x2656,_0x5414cc=_0x2656,_0x170927=_0x2656,_0x54c71c={'nNppb':function(_0x17dd3a,_0x162aa2){return _0x17dd3a!==_0x162aa2;},'fLDFV':_0x57a8d0(0x403)+_0x57a8d0(0xc40)+_0x4a8243(0x463)+_0x4a8243(0x30a)+_0x4a8243(0xce8)+_0x4a8243(0x6b0)+_0x57a8d0(0x9da)+'s','hvcFs':function(_0x1b3f28){return _0x1b3f28();}};if(_0x54c71c[_0x5e6cde(0xce7)](window[_0x4a8243(0xbb3)],undefined))return;const {default:_0x389af7,cut:_0x565375}=await import(_0x54c71c[_0x5414cc(0x9bb)]),_0x5cddf9=await _0x54c71c[_0x57a8d0(0x43b)](_0x389af7);return window[_0x170927(0xbb3)]=_0x565375,_0x5cddf9;};_load_wasm_jieba();function cosineSimilarity(_0x37e1c7,_0x21c34b){const _0x9df48e=_0x2656,_0x3d040c=_0x2656,_0x2c38d3=_0x2656,_0x50e4e8=_0x2656,_0x5249cb=_0x2656,_0x5bd0b0={'oIiun':function(_0x1e6892,_0x298ae4){return _0x1e6892+_0x298ae4;},'tNaSY':_0x9df48e(0x25b),'TYiKO':_0x3d040c(0xa0a),'GsbCD':_0x2c38d3(0x1d6)+_0x50e4e8(0xc4b)+'t','odMXG':_0x50e4e8(0x31e),'godog':function(_0x2306f8,_0x565d1c){return _0x2306f8(_0x565d1c);},'bxWAr':function(_0x4f402f,_0x10829c,_0x3be251){return _0x4f402f(_0x10829c,_0x3be251);},'TKkkr':function(_0x59a0fd,_0x54c103,_0x5930cc){return _0x59a0fd(_0x54c103,_0x5930cc);},'hQPdy':function(_0x375b41,_0xf52d70){return _0x375b41===_0xf52d70;},'eboMA':_0x50e4e8(0xe1b),'fuzHk':_0x9df48e(0x828),'PNcFt':_0x3d040c(0x7ce),'mEKqf':function(_0x3be083,_0x4881d6){return _0x3be083===_0x4881d6;},'JemcZ':_0x9df48e(0x5c7),'DtVsd':_0x50e4e8(0xca8),'pAHIW':function(_0x2fd357,_0x332871){return _0x2fd357===_0x332871;},'GQKyA':_0x3d040c(0x9ad),'BOenh':_0x50e4e8(0xc9e),'wsgiA':function(_0x5ed728,_0xf6e08c){return _0x5ed728*_0xf6e08c;},'keGxm':function(_0x3a7c43,_0x4ae4ac){return _0x3a7c43**_0x4ae4ac;},'uQBeJ':function(_0x2d6730,_0x21ed10){return _0x2d6730**_0x21ed10;},'ZnJJG':function(_0x6b3605,_0x3e80ce){return _0x6b3605/_0x3e80ce;}};keywordList=_0x5bd0b0[_0x2c38d3(0x3aa)](cut,_0x37e1c7[_0x9df48e(0x2cc)+_0x2c38d3(0x79c)+'e'](),!![]),keywordList=keywordList[_0x2c38d3(0xdf6)+'r'](_0x5bacec=>!stop_words[_0x5249cb(0x731)+_0x50e4e8(0xe03)](_0x5bacec)),sentenceList=_0x5bd0b0[_0x9df48e(0x816)](cut,_0x21c34b[_0x50e4e8(0x2cc)+_0x5249cb(0x79c)+'e'](),!![]),sentenceList=sentenceList[_0x2c38d3(0xdf6)+'r'](_0xf0f31a=>!stop_words[_0x5249cb(0x731)+_0x9df48e(0xe03)](_0xf0f31a));const _0x47ed2b=new Set(keywordList[_0x3d040c(0xbe4)+'t'](sentenceList)),_0x182d9c={},_0x287d66={};for(const _0x7f8096 of _0x47ed2b){_0x5bd0b0[_0x50e4e8(0xbcd)](_0x5bd0b0[_0x3d040c(0x1e8)],_0x5bd0b0[_0x9df48e(0x39f)])?function(){return![];}[_0x5249cb(0xced)+_0x9df48e(0x387)+'r'](tKMBJD[_0x5249cb(0x90a)](tKMBJD[_0x5249cb(0xa14)],tKMBJD[_0x50e4e8(0x538)]))[_0x5249cb(0xcf2)](tKMBJD[_0x3d040c(0x272)]):(_0x182d9c[_0x7f8096]=0x14b1*0x1+0xbc9*-0x1+-0x8e8,_0x287d66[_0x7f8096]=-0x6*-0x652+-0x255e+-0x8e*0x1);}for(const _0x478f17 of keywordList){_0x5bd0b0[_0x50e4e8(0xbcd)](_0x5bd0b0[_0x3d040c(0x5cd)],_0x5bd0b0[_0x3d040c(0x5cd)])?_0x182d9c[_0x478f17]++:_0x23cbf0=_0x5bd0b0[_0x2c38d3(0x3dc)];}for(const _0x464a26 of sentenceList){if(_0x5bd0b0[_0x2c38d3(0x723)](_0x5bd0b0[_0x5249cb(0xa20)],_0x5bd0b0[_0x3d040c(0xc72)]))return-(-0x1866+-0xc6a+0x24d1);else _0x287d66[_0x464a26]++;}let _0x1847b8=0x16d7+-0x2225+0xb4e,_0x12afce=0xd66+0x1+-0xd67,_0x526d43=0xddb+0x35*-0x69+0x7e2;for(const _0x3645cf of _0x47ed2b){if(_0x5bd0b0[_0x50e4e8(0xe34)](_0x5bd0b0[_0x5249cb(0x53c)],_0x5bd0b0[_0x50e4e8(0x301)])){if(_0x1528e2)return _0x23dff8;else tKMBJD[_0x50e4e8(0x531)](_0x3cc005,0x16e5+0x19d6+-0x30bb);}else _0x1847b8+=_0x5bd0b0[_0x2c38d3(0xca6)](_0x182d9c[_0x3645cf],_0x287d66[_0x3645cf]),_0x12afce+=_0x5bd0b0[_0x2c38d3(0x456)](_0x182d9c[_0x3645cf],-0x1*0x24d7+0xbd2+0x1907),_0x526d43+=_0x5bd0b0[_0x9df48e(0x450)](_0x287d66[_0x3645cf],-0xba*-0x2+-0x2291+0x1*0x211f);}_0x12afce=Math[_0x2c38d3(0x60b)](_0x12afce),_0x526d43=Math[_0x5249cb(0x60b)](_0x526d43);const _0x20573d=_0x5bd0b0[_0x5249cb(0x77b)](_0x1847b8,_0x5bd0b0[_0x2c38d3(0xca6)](_0x12afce,_0x526d43));return _0x20573d;}let modalele=[],keytextres=[],fulltext=[],article,sentences=[];function modal_open(_0x50e7ac,_0x172613){const _0x1b357a=_0x2656,_0x261674=_0x2656,_0x3fbff6=_0x2656,_0x4a262a=_0x2656,_0x4551f1=_0x2656,_0x90fdac={'tzGxx':function(_0x115c90,_0x11f1bd){return _0x115c90(_0x11f1bd);},'uPGEd':_0x1b357a(0x68d)+_0x261674(0x1c6)+'结束','fsZfL':_0x1b357a(0x201)+_0x1b357a(0xaf2),'JhnUV':function(_0x363ed5,_0x4bf61c){return _0x363ed5(_0x4bf61c);},'pQeDG':_0x261674(0xdee)+'ss','jgyhi':_0x4551f1(0x27d)+_0x4a262a(0x2a6)+_0x4551f1(0x48a),'fiGMy':_0x1b357a(0x8cb)+_0x4551f1(0xda5)+_0x3fbff6(0xaf2),'ejIWx':_0x3fbff6(0x556)+_0x1b357a(0x45d)+_0x1b357a(0xdc7)+')','kcjkm':_0x3fbff6(0x37b)+_0x1b357a(0x6cc)+_0x261674(0x624)+_0x261674(0x4e7)+_0x3fbff6(0x203)+_0x4551f1(0x984)+_0x4551f1(0x41b),'qxVXV':_0x261674(0x74e),'WSHpS':function(_0x30d837,_0x4751a8){return _0x30d837+_0x4751a8;},'thuIC':_0x261674(0xd2c),'ermsJ':_0x4a262a(0xa38),'IInbB':function(_0x3bc46f){return _0x3bc46f();},'kJBkj':function(_0x9feadd,_0x1a9b60){return _0x9feadd!==_0x1a9b60;},'RqXYt':_0x261674(0xbed),'sXfoR':_0x3fbff6(0x3eb),'TSfIq':_0x3fbff6(0x9e3)+_0x261674(0x6e2)+'d','ChZBG':function(_0x3d2a4a,_0x9ccc99){return _0x3d2a4a(_0x9ccc99);},'spPCm':function(_0x4d247e,_0x47117e){return _0x4d247e>=_0x47117e;},'TdZOF':_0x4a262a(0x8f8)+_0x4a262a(0x2ff)+_0x3fbff6(0xbc6)+_0x3fbff6(0x69d)+_0x3fbff6(0x752)+_0x1b357a(0x47c)+_0x261674(0x785)+_0x1b357a(0x941)+_0x1b357a(0x7ca)+_0x1b357a(0x65e)+_0x4551f1(0x637)+_0x3fbff6(0x4b1)+_0x261674(0xa4d),'XltgD':function(_0x3e82ac,_0x38145a){return _0x3e82ac+_0x38145a;},'pakBg':_0x1b357a(0x649)+'rl','kXWeU':function(_0x35017a,_0x447598){return _0x35017a(_0x447598);},'GnDeE':_0x1b357a(0x6af)+_0x1b357a(0x8fa)+'rl','DsBPL':function(_0x800854,_0x5fe952){return _0x800854(_0x5fe952);},'GXqDr':function(_0x601684,_0x32d5cc){return _0x601684+_0x32d5cc;},'slSLK':_0x4a262a(0x1dd)+'rl','OyvfZ':function(_0x2aa453,_0x1b0942){return _0x2aa453(_0x1b0942);},'QJCrQ':function(_0x514922,_0x211508){return _0x514922+_0x211508;},'HZjUk':function(_0x5f1816,_0x33389c){return _0x5f1816+_0x33389c;},'QnLVd':_0x3fbff6(0x859)+_0x4a262a(0x62b),'cvNiA':_0x261674(0x21a),'updkE':_0x4a262a(0x2d5)+_0x4a262a(0x471)+_0x261674(0x412),'IQEOe':function(_0x431af4,_0x153290){return _0x431af4+_0x153290;},'NwrnG':_0x1b357a(0x859)+_0x1b357a(0x959)+_0x4a262a(0x380)+'l','jLPlY':_0x1b357a(0xc03)+'rl','PlgIy':_0x3fbff6(0x215)+_0x261674(0x471)+_0x3fbff6(0x412),'XDQLy':function(_0x3aec60,_0x2bd103){return _0x3aec60(_0x2bd103);},'ZTeCw':_0x3fbff6(0xbe2),'vFALW':_0x261674(0x23b),'NIavf':function(_0x46c13b,_0x3cf196){return _0x46c13b+_0x3cf196;},'BGWkU':_0x1b357a(0x1e9)+_0x261674(0xdcc)+_0x4551f1(0xb7a),'yiBwA':_0x4a262a(0xbbe)+_0x1b357a(0x471)+_0x261674(0x412),'iRbIS':function(_0x1555c8,_0x377730){return _0x1555c8(_0x377730);},'CDijc':function(_0x1ec980,_0x36cb4f){return _0x1ec980+_0x36cb4f;},'SlmBk':_0x3fbff6(0xa26),'dCDna':function(_0x2173c9,_0xa1aa84){return _0x2173c9(_0xa1aa84);},'eGgUT':function(_0x5d40cc,_0x22c4c4){return _0x5d40cc+_0x22c4c4;},'sPgvM':_0x1b357a(0x859)+_0x3fbff6(0x4ce)+_0x1b357a(0x8fa)+'rl','eRlhf':function(_0x598386,_0x48d380){return _0x598386+_0x48d380;},'mamiD':_0x4551f1(0x859),'sRBgc':function(_0x351d48,_0x49159a){return _0x351d48+_0x49159a;},'xEXIG':function(_0x535539,_0x5925c5){return _0x535539(_0x5925c5);},'yLqYb':function(_0x3a2292,_0x4ee0d7){return _0x3a2292+_0x4ee0d7;},'zVSRF':function(_0x4f6a03,_0x1d506c){return _0x4f6a03(_0x1d506c);},'WBxSQ':_0x4a262a(0x859)+':','FjNxi':_0x4551f1(0x990)+_0x1b357a(0xdcc)+_0x1b357a(0xb7a),'GyWxf':_0x4551f1(0x639)+'l','YNvVo':_0x1b357a(0xa5b)+'l','ceADs':_0x4551f1(0x859)+_0x261674(0xb38),'wKWkU':_0x1b357a(0xdf2)+'l','IaZGs':function(_0x481a64,_0x40e67a){return _0x481a64+_0x40e67a;},'wgOSu':_0x261674(0x511)+_0x1b357a(0xdcc)+_0x1b357a(0xb7a),'QMVnA':_0x4a262a(0x959)+_0x261674(0x380)+'l','TQJBS':function(_0x5c0138,_0x44babf){return _0x5c0138+_0x44babf;},'CtdtY':_0x4a262a(0x959)+_0x1b357a(0x62b),'GwVJb':function(_0x23a3af,_0x43ad51){return _0x23a3af+_0x43ad51;},'iFwkb':_0x4551f1(0x62b),'aJtHP':function(_0x157767,_0x371ece){return _0x157767(_0x371ece);},'BAkts':function(_0x587c70,_0x100b5a){return _0x587c70!==_0x100b5a;},'GgSit':_0x3fbff6(0xc3c),'gWflq':_0x4a262a(0xcf6),'WWsHK':_0x4551f1(0xd61)+_0x1b357a(0x595),'TYFoL':_0x261674(0xa6b),'ZeoPu':_0x1b357a(0xe44),'IngpY':_0x1b357a(0x596),'Kyusn':_0x1b357a(0xaed)+'es','KnIYb':function(_0x28a89f,_0x897ae7){return _0x28a89f!==_0x897ae7;},'WusAU':_0x3fbff6(0x36b),'RvNwY':function(_0x5bac63,_0x275583,_0xe499ac){return _0x5bac63(_0x275583,_0xe499ac);},'YkEFM':_0x4551f1(0x25b),'iGUbm':_0x4551f1(0xa0a),'xdHpG':_0x4a262a(0x725)+'n','gqZbA':function(_0x14760e,_0x16f13b){return _0x14760e===_0x16f13b;},'WjSLP':_0x261674(0x9fe),'rHcoR':_0x4551f1(0x9c2),'zYmoi':_0x261674(0x946)+_0x3fbff6(0x454)+_0x4a262a(0x625)+_0x1b357a(0xcbf)+_0x4a262a(0xbaa),'jMFoe':function(_0xe57f04,_0x305aa3){return _0xe57f04==_0x305aa3;},'OgPqT':_0x3fbff6(0x68e),'PpowN':_0x3fbff6(0x801),'oDJFw':_0x261674(0xc9d),'lzXbK':function(_0x4e66d2,_0x2407d5){return _0x4e66d2===_0x2407d5;},'kpMdn':_0x4551f1(0x9b2),'UkgbV':_0x4551f1(0x7d0),'qxpLm':_0x4a262a(0xdd8)+'d','leUHX':_0x261674(0x50d),'VRYrx':_0x261674(0x75b),'PEylM':_0x1b357a(0xab2),'PfAWY':_0x4a262a(0x5a8),'miIpt':function(_0x2d84c0,_0x29d649){return _0x2d84c0===_0x29d649;},'NiTuY':_0x1b357a(0x202),'ocUmh':_0x3fbff6(0x852),'EKQam':function(_0x300013,_0x3b225d){return _0x300013(_0x3b225d);},'ILhvY':_0x261674(0xded),'zeHgu':function(_0x315e5a,_0x43fc68,_0x4894a0){return _0x315e5a(_0x43fc68,_0x4894a0);},'gcCbh':_0x261674(0xe32),'zqVVQ':function(_0xfa72e1,_0x3663ca){return _0xfa72e1+_0x3663ca;},'ODiSh':function(_0x5453bd,_0x4de487){return _0x5453bd-_0x4de487;},'FYvPB':function(_0x1d42ad,_0xb68000){return _0x1d42ad<=_0xb68000;},'pnPnW':_0x4551f1(0x420),'DmiTA':_0x1b357a(0x38c),'iUBPn':_0x4551f1(0xd25),'vxoDi':_0x261674(0xc2a)+':','tRCNE':_0x4a262a(0x46f)+_0x261674(0x8b7),'LZjEh':function(_0x150885,_0x213e12){return _0x150885+_0x213e12;},'GrIpe':_0x4a262a(0xabe)+_0x4551f1(0xdd6)+_0x3fbff6(0xa70)+_0x261674(0x33f)+_0x4551f1(0x657)+'\x22>','QNazZ':_0x3fbff6(0x4f7),'fxzqS':_0x261674(0xdb3)+_0x3fbff6(0x85e)+_0x4a262a(0xa84)+_0x4a262a(0x70f),'SyJur':_0x1b357a(0x328),'beyRL':_0x4551f1(0xd7f)+'>','aXQgO':_0x1b357a(0x75e)+_0x261674(0x8c4),'UTfWH':_0x1b357a(0x46f)+_0x3fbff6(0x667),'Xxsxv':_0x4a262a(0x46f)+_0x4a262a(0xa3b)+_0x4551f1(0xbce),'lmOQm':_0x3fbff6(0x7e9),'ZXVGb':_0x3fbff6(0xa9d),'tAELh':_0x1b357a(0x480),'EElfX':_0x4551f1(0x3e6),'XKMwE':_0x4551f1(0x966),'TfjhT':_0x261674(0x269),'sRZMs':function(_0x51e302,_0x312412){return _0x51e302!==_0x312412;},'HUVxM':_0x1b357a(0x7d5),'TBRQg':_0x4a262a(0x82e),'oCCXs':_0x261674(0xbc7),'llLjj':function(_0x367964,_0x1e10ce){return _0x367964(_0x1e10ce);},'lEkzt':function(_0x3a3ebd,_0x10846f){return _0x3a3ebd-_0x10846f;},'uhvMH':function(_0x9cb5e4,_0x420d7e){return _0x9cb5e4(_0x420d7e);},'TBzKF':function(_0x38a81a,_0x14933b){return _0x38a81a!==_0x14933b;},'CJJiQ':_0x4551f1(0xbba),'fbHqP':_0x4a262a(0xd8d),'CTyWn':_0x4551f1(0x664)+_0x1b357a(0xe04)+_0x4a262a(0xb1d)+_0x4551f1(0xdc0)+_0x4551f1(0xa53)+_0x1b357a(0xae5)+_0x1b357a(0xe02)+_0x261674(0xd90)+_0x4a262a(0x258)+_0x3fbff6(0xd72)+_0x3fbff6(0x4a7)+_0x261674(0xc1d)+_0x1b357a(0x321),'PGbhb':function(_0x1f401b,_0xc2171f){return _0x1f401b(_0xc2171f);},'ERxdh':function(_0x166bfb,_0x16d081){return _0x166bfb+_0x16d081;},'GwHRZ':function(_0x584a94,_0x10f07d){return _0x584a94(_0x10f07d);},'iIQek':function(_0x188eba,_0x2163bf){return _0x188eba+_0x2163bf;},'QTsYc':function(_0x3ac83b,_0x5f5057){return _0x3ac83b(_0x5f5057);},'thCab':function(_0x3ca884,_0x1d6f89){return _0x3ca884(_0x1d6f89);},'TIMsz':function(_0x3e8363,_0x55a7a2){return _0x3e8363(_0x55a7a2);},'GkslE':function(_0x3b48f4,_0x2532d9){return _0x3b48f4+_0x2532d9;},'zPPwq':function(_0x4db2c2,_0x536db5){return _0x4db2c2(_0x536db5);},'Kxhji':function(_0xd133b8,_0x290afd){return _0xd133b8(_0x290afd);},'PjGQR':function(_0x166344,_0x320851){return _0x166344+_0x320851;},'TbaeH':function(_0xb67db6,_0x4d1ace){return _0xb67db6+_0x4d1ace;},'KxfNa':function(_0x56f176,_0x5b2b22){return _0x56f176(_0x5b2b22);},'zmAUW':function(_0x18fb13,_0x20d8d6){return _0x18fb13+_0x20d8d6;},'zCuvQ':function(_0x52ee18,_0x1c0300){return _0x52ee18+_0x1c0300;},'LrWGB':function(_0x21475b,_0x31a126){return _0x21475b+_0x31a126;},'wZjQy':function(_0xae074f,_0x180b5a){return _0xae074f(_0x180b5a);},'eFiOc':function(_0x5a7657,_0x2c1303){return _0x5a7657+_0x2c1303;},'PcoON':function(_0x2c6810,_0x2a3c18){return _0x2c6810+_0x2a3c18;},'FROGf':function(_0x2da504,_0x308860){return _0x2da504(_0x308860);},'ZLJsk':function(_0x1abf01,_0x91aafb){return _0x1abf01+_0x91aafb;},'wkVke':function(_0x382c43,_0x381b35){return _0x382c43(_0x381b35);},'rxyWZ':function(_0x58adbb,_0xa3ef43){return _0x58adbb+_0xa3ef43;},'KyPQM':function(_0x540edf,_0x1c39ac){return _0x540edf+_0x1c39ac;},'Evdbm':function(_0x41c0eb,_0x48ad06){return _0x41c0eb(_0x48ad06);},'wYdhn':function(_0x27f42d,_0xfd5344){return _0x27f42d+_0xfd5344;},'JQbeE':function(_0x1c666c,_0x1971cd){return _0x1c666c+_0x1971cd;},'oEBZS':function(_0x40e77a,_0x51aacf){return _0x40e77a+_0x51aacf;},'goBse':function(_0x36ee3d,_0xa23bd4){return _0x36ee3d+_0xa23bd4;},'Ayyky':function(_0x18dd4d,_0x5533db){return _0x18dd4d!==_0x5533db;},'UgNoz':_0x261674(0xbd3),'OVvUx':_0x4551f1(0x8d7),'gzSVt':function(_0x3d27d1,_0xd46255){return _0x3d27d1<_0xd46255;},'PfxAi':function(_0xc300bc,_0x1d0d70){return _0xc300bc===_0x1d0d70;},'XzyVz':_0x4a262a(0x1eb),'DTBHV':_0x4551f1(0xb2a),'wFeyw':_0x1b357a(0x54f),'NhhlH':_0x3fbff6(0xae0),'pLWsV':function(_0x2bb118,_0x452663){return _0x2bb118>_0x452663;},'GjhWa':function(_0x51a58c,_0xae431){return _0x51a58c==_0xae431;},'OGhIM':_0x3fbff6(0x61e)+']','qfRuy':_0x4a262a(0xba9),'ZoyOO':_0x4a262a(0xbd4),'Ciikb':_0x1b357a(0xd57),'MYtZM':function(_0xaef088,_0x2e3359){return _0xaef088+_0x2e3359;},'JQjmC':_0x4a262a(0x2bd),'VVaQG':_0x4551f1(0x7b3),'oSKCS':function(_0xfec11d,_0x351187){return _0xfec11d===_0x351187;},'bZrBa':_0x261674(0xb39),'FMsJI':_0x4a262a(0x72e),'LpCsX':_0x3fbff6(0x339),'XcpxW':_0x4a262a(0xc8d)+'pt','YtZDY':_0x261674(0xabe)+_0x4551f1(0xdd6)+_0x4551f1(0xa70)+_0x261674(0x48c)+_0x4a262a(0x841),'JgsoM':_0x3fbff6(0x24f),'DIYqJ':_0x3fbff6(0x5cc),'KlJFP':function(_0x52212f,_0x1ab54e){return _0x52212f===_0x1ab54e;},'AqXyn':_0x3fbff6(0x755),'OjDPF':_0x4551f1(0x5ce),'SqAwK':_0x261674(0x3e0),'UlHfL':function(_0x4d7e39,_0x2a6273){return _0x4d7e39+_0x2a6273;},'zSOuz':_0x1b357a(0x89d),'cDNGr':_0x4a262a(0x1cc)+'\x0a','QDKtU':_0x1b357a(0x489),'oYSHM':_0x261674(0x963)+'\x0a','nASyU':function(_0x2151c2,_0x4073f7){return _0x2151c2!==_0x4073f7;},'ZTRQR':_0x4551f1(0x36c),'IiIdv':_0x3fbff6(0xd1e),'laRqL':function(_0x8022dc,_0x21567b){return _0x8022dc<_0x21567b;},'lyXRQ':function(_0x5de16f,_0x2c9f3d){return _0x5de16f+_0x2c9f3d;},'pHlpv':_0x1b357a(0x5a6)+_0x4551f1(0xc28),'qiuLP':_0x261674(0x3df),'mWrXt':_0x1b357a(0x5d3)+_0x4551f1(0xa58)+_0x3fbff6(0x230)+_0x261674(0xabf),'mAmqv':_0x4a262a(0x9a4),'vQHCT':_0x1b357a(0x959)+_0x261674(0x33b)+_0x261674(0x1c5)+_0x261674(0x330)+_0x1b357a(0xb72)+_0x4551f1(0x4a5),'DQzLc':_0x4a262a(0xdd3),'gpRqN':_0x261674(0x843),'uDHfS':function(_0x48009d,_0x3f5682,_0x4519e2,_0x3efd73){return _0x48009d(_0x3f5682,_0x4519e2,_0x3efd73);},'lXYbZ':_0x3fbff6(0x959)+_0x261674(0x33b)+_0x1b357a(0x1c5)+_0x4551f1(0xda8)+_0x4a262a(0x837),'vxaCp':_0x261674(0xc25),'hJQxg':_0x3fbff6(0x6c1),'ublJa':function(_0x21f561,_0x3ff43d){return _0x21f561<_0x3ff43d;},'maOyo':function(_0x59efc4,_0x4f230d){return _0x59efc4+_0x4f230d;},'BsEJt':function(_0x5be0ea,_0x40835e){return _0x5be0ea+_0x40835e;},'zeNBZ':function(_0x5e6994,_0x17fdf9){return _0x5e6994+_0x17fdf9;},'tddUu':function(_0x31bb0a,_0x1b7365){return _0x31bb0a<=_0x1b7365;},'wPHEe':function(_0x5e26f8,_0x286cba){return _0x5e26f8>_0x286cba;},'zVFpI':function(_0x5a4258,_0x43b5cd){return _0x5a4258(_0x43b5cd);},'uzhNe':function(_0x291be1,_0x346bb4){return _0x291be1(_0x346bb4);},'rROKI':_0x4551f1(0xc8c)+_0x3fbff6(0x8af),'jjtPi':_0x3fbff6(0xd61)+_0x4a262a(0xe2b)+'t','XSknk':_0x261674(0xa32),'YeNsk':_0x4a262a(0x6d9),'fjbfb':function(_0x5a220a,_0x5a92f1){return _0x5a220a<_0x5a92f1;},'snPuF':function(_0x27ed9f,_0x3ecd8f){return _0x27ed9f===_0x3ecd8f;},'KoHvJ':_0x1b357a(0x304),'wNJyR':_0x1b357a(0x684),'McCdv':_0x4551f1(0x844),'NctCc':function(_0x5ed7a4,_0x152b64){return _0x5ed7a4!==_0x152b64;},'Znjix':_0x261674(0x3e3),'TaoHr':_0x1b357a(0x5f9),'kSlCC':function(_0x260b7d,_0x54a91d){return _0x260b7d>_0x54a91d;},'YMzYS':_0x261674(0xc56),'UJKvP':_0x261674(0xd9b),'RYEpD':_0x4a262a(0x861),'ePaZu':function(_0x358795,_0x4fc040){return _0x358795>_0x4fc040;},'OSPWd':_0x261674(0x69f),'GAfKv':function(_0x5d4767,_0x57d383){return _0x5d4767===_0x57d383;},'JAbxx':_0x4a262a(0x915),'kRbDC':_0x4a262a(0x231),'zmLYo':_0x4551f1(0xe52),'STTDp':_0x4a262a(0x917),'BJRoo':function(_0x4a17f7,_0x581a8c){return _0x4a17f7!==_0x581a8c;},'uBGRJ':_0x4551f1(0x3d3),'FloxT':_0x4a262a(0xc13),'YBOji':function(_0x39b1a2,_0x4336d8){return _0x39b1a2/_0x4336d8;},'fXumI':_0x3fbff6(0x52f),'VeCNh':_0x4551f1(0xd0f),'zAeQe':function(_0x496627,_0x589aac){return _0x496627===_0x589aac;},'fdWOA':_0x261674(0x303),'PBYLE':_0x3fbff6(0xcae),'NgpHV':_0x1b357a(0x4ee),'MYzrc':_0x4551f1(0xa19),'xbNnM':_0x3fbff6(0x818),'RUOHd':function(_0x52437f,_0x42230b){return _0x52437f<_0x42230b;},'pKeiL':_0x261674(0xb8f),'cesOS':function(_0x25c0c8,_0x2697a8){return _0x25c0c8*_0x2697a8;},'yobSM':_0x1b357a(0xb88),'ZzssP':_0x261674(0x9ca),'QEQDW':function(_0x2a2a32,_0x347bd1){return _0x2a2a32/_0x347bd1;},'PnOSO':_0x3fbff6(0x805)+_0x1b357a(0x43c),'rqIKQ':_0x4a262a(0xd38),'BnsHt':_0x1b357a(0x778),'tSYgt':_0x3fbff6(0xd17),'SxHKK':function(_0x17d10b,_0x19b20a){return _0x17d10b==_0x19b20a;},'IVIgl':function(_0x291df2,_0x4dda2b){return _0x291df2+_0x4dda2b;},'yIIVf':function(_0x444663,_0x4c2f94){return _0x444663+_0x4c2f94;},'SeTTx':function(_0x11f7df,_0x596223){return _0x11f7df+_0x596223;},'njqaZ':function(_0x5173a6,_0x29dc70){return _0x5173a6+_0x29dc70;},'RKsVt':function(_0x58acf8,_0x4c650f){return _0x58acf8(_0x4c650f);},'TKuCk':function(_0x2c6e04,_0x12448c){return _0x2c6e04===_0x12448c;},'vmbGi':_0x4551f1(0x69c),'StHwb':function(_0x12d08,_0xb7dc70){return _0x12d08===_0xb7dc70;},'lCvBJ':_0x3fbff6(0xe2d),'LkizP':_0x4a262a(0xcef),'DNsuU':_0x261674(0xd70)+_0x3fbff6(0x66a)+_0x4a262a(0x42c)+_0x4551f1(0x431),'NXlNY':_0x261674(0xd61)+_0x1b357a(0x5ea)+_0x4a262a(0x898),'VDeqG':_0x1b357a(0x5f3)+_0x261674(0xe0f),'TkbqO':function(_0x2dfa4f,_0x14e90f){return _0x2dfa4f!==_0x14e90f;},'SAqbR':_0x3fbff6(0x43e),'YIpoT':_0x4a262a(0x79e),'CeATs':_0x3fbff6(0x712),'OCeCX':function(_0x15a29f,_0x530049){return _0x15a29f==_0x530049;},'eVCID':_0x3fbff6(0x436),'mNeJQ':function(_0x1f6df6,_0x2bd39d){return _0x1f6df6+_0x2bd39d;},'OrFlU':function(_0xeaa3ec,_0x8e7f87){return _0xeaa3ec+_0x8e7f87;},'yabfb':function(_0x37a3b6,_0x1eb11e){return _0x37a3b6+_0x1eb11e;},'ykaun':function(_0x2b6654,_0x252da3){return _0x2b6654+_0x252da3;},'aTqOs':_0x4a262a(0xe15),'GKEhs':function(_0x54f9f0,_0x4cd5d9){return _0x54f9f0!==_0x4cd5d9;},'tHvUJ':_0x261674(0xa3c),'rLYOk':_0x1b357a(0x94b),'VHTby':function(_0x3d828a,_0x3e9b18){return _0x3d828a+_0x3e9b18;},'dlqmT':function(_0x3b37f5,_0x48fc48){return _0x3b37f5+_0x48fc48;},'iKjfS':function(_0x2b8c47,_0x3d33c3){return _0x2b8c47(_0x3d33c3);},'JNUwm':_0x4551f1(0x1ff),'cNTSH':_0x3fbff6(0xbcb)+_0x261674(0x91d)+_0x261674(0xd11)+_0x4551f1(0x9b4)};if(_0x90fdac[_0x3fbff6(0xde5)](lock_chat,-0x245c+-0x11*-0xb3+0x187a)){if(_0x90fdac[_0x4a262a(0x2fa)](_0x90fdac[_0x4a262a(0xd12)],_0x90fdac[_0x3fbff6(0x574)])){_0x90fdac[_0x261674(0x3d1)](_0x455a49,_0x90fdac[_0x1b357a(0x2bb)]);return;}else{_0x90fdac[_0x261674(0xcfb)](alert,_0x90fdac[_0x4551f1(0x2bb)]);return;}}prev_chat=document[_0x1b357a(0xae4)+_0x3fbff6(0x2b8)+_0x4551f1(0x9e0)](_0x90fdac[_0x4551f1(0xcee)])[_0x4551f1(0x6e5)+_0x3fbff6(0x3cd)];if(_0x90fdac[_0x1b357a(0x3c9)](_0x172613,_0x90fdac[_0x4a262a(0x8fc)]))_0x90fdac[_0x1b357a(0x71d)](_0x90fdac[_0x4a262a(0x443)],_0x90fdac[_0x261674(0x443)])?_0x185464[_0x4551f1(0x292)](_0x2b749a):document[_0x4551f1(0xae4)+_0x4a262a(0x2b8)+_0x1b357a(0x9e0)](_0x90fdac[_0x4a262a(0xcee)])[_0x4551f1(0x6e5)+_0x261674(0x3cd)]=_0x90fdac[_0x3fbff6(0x302)](_0x90fdac[_0x3fbff6(0xad6)](_0x90fdac[_0x261674(0xd3c)](_0x90fdac[_0x4551f1(0x3e8)](_0x90fdac[_0x4551f1(0x405)](_0x90fdac[_0x4551f1(0x2f0)](prev_chat,_0x90fdac[_0x4a262a(0x5f7)]),_0x90fdac[_0x4a262a(0x573)]),_0x90fdac[_0x4a262a(0x440)]),_0x90fdac[_0x3fbff6(0x9b3)]),_0x90fdac[_0x4551f1(0x40d)]),_0x90fdac[_0x1b357a(0xbda)]);else{if(_0x90fdac[_0x4a262a(0xa97)](_0x90fdac[_0x3fbff6(0x919)],_0x90fdac[_0x3fbff6(0x5dd)]))document[_0x1b357a(0xae4)+_0x4551f1(0x2b8)+_0x1b357a(0x9e0)](_0x90fdac[_0x3fbff6(0xcee)])[_0x4a262a(0x6e5)+_0x261674(0x3cd)]=_0x90fdac[_0x4551f1(0x81a)](_0x90fdac[_0x4551f1(0x2f0)](_0x90fdac[_0x4551f1(0x694)](_0x90fdac[_0x3fbff6(0x224)](_0x90fdac[_0x261674(0x96f)](_0x90fdac[_0x3fbff6(0x3cc)](prev_chat,_0x90fdac[_0x3fbff6(0x5f7)]),_0x90fdac[_0x261674(0x573)]),_0x90fdac[_0x4a262a(0x440)]),_0x90fdac[_0x3fbff6(0x951)](String,_0x172613)),_0x90fdac[_0x1b357a(0x40d)]),_0x90fdac[_0x4a262a(0xbda)]);else{const _0x13ac48={'mHmCR':_0x90fdac[_0x261674(0x59c)],'vqFFw':function(_0x1417a4,_0x50ffda){const _0x29ae70=_0x1b357a;return _0x90fdac[_0x29ae70(0x953)](_0x1417a4,_0x50ffda);},'geQyu':_0x90fdac[_0x261674(0xa18)],'mJMzG':_0x90fdac[_0x4a262a(0xb05)]};_0x48157b[_0x1b357a(0x914)+_0x3fbff6(0x97c)+_0x1b357a(0x365)+'r'](_0x90fdac[_0x261674(0xa92)],function(){const _0x500430=_0x261674,_0xfdcc52=_0x4a262a,_0x300346=_0x3fbff6,_0x45b2c7=_0x1b357a,_0x36dbcb=_0x3fbff6;_0x57defe[_0x500430(0x6d7)+_0x500430(0x9c0)+_0x300346(0x413)][_0xfdcc52(0x979)+_0x45b2c7(0xa36)+_0x36dbcb(0xc81)+_0xfdcc52(0x5b4)][_0x36dbcb(0x81f)+_0x300346(0x677)+_0x300346(0xe53)+_0x300346(0x5bf)][_0x500430(0x8ea)](function(){const _0x383b48=_0x500430,_0x20232a=_0x45b2c7,_0x25ba54=_0x45b2c7,_0x20e795=_0x36dbcb,_0x174456=_0x500430,_0x86170={'tqyMn':_0x13ac48[_0x383b48(0x994)],'qcTJG':function(_0x18b8b2,_0x218a51){const _0x17d231=_0x383b48;return _0x13ac48[_0x17d231(0xab1)](_0x18b8b2,_0x218a51);},'pqahg':_0x13ac48[_0x383b48(0xa4b)]};_0x2faaea[_0x20232a(0x6d7)+_0x25ba54(0x9c0)+_0x20232a(0x413)][_0x174456(0x979)+_0x383b48(0xa36)+_0x25ba54(0xc81)+_0x383b48(0x5b4)][_0x174456(0x327)+_0x25ba54(0x980)]['on'](_0x13ac48[_0x25ba54(0x9e4)],function(_0x272855){const _0x5b8859=_0x383b48,_0x4e829b=_0x383b48,_0xdf5f34=_0x25ba54,_0x47c70f=_0x20232a;_0x2f86f3[_0x5b8859(0x6ba)](_0x86170[_0x5b8859(0x46c)]),_0x86170[_0xdf5f34(0xc86)](_0x955786,_0x86170[_0x47c70f(0x51b)]);});});});}}modal[_0x3fbff6(0xcab)][_0x1b357a(0xc1a)+'ay']=_0x90fdac[_0x261674(0x654)],document[_0x3fbff6(0x9f4)+_0x4a262a(0xc14)+_0x261674(0xa51)](_0x90fdac[_0x3fbff6(0x6fe)])[_0x261674(0x6e5)+_0x4a262a(0x3cd)]='';var _0x16bf60=new Promise((_0x5a0b8f,_0x324875)=>{const _0xd9e5e=_0x261674,_0x2ec10e=_0x261674,_0x262844=_0x261674,_0x369255=_0x3fbff6,_0x10b687=_0x1b357a,_0x39dd65={'PQexr':function(_0x404f20,_0x106cb8){const _0x3f3ed9=_0x2656;return _0x90fdac[_0x3f3ed9(0x7bd)](_0x404f20,_0x106cb8);},'BJBfu':_0x90fdac[_0xd9e5e(0x49c)],'PNBHY':function(_0xae5e20,_0x471c0e){const _0x3186ee=_0xd9e5e;return _0x90fdac[_0x3186ee(0x5d7)](_0xae5e20,_0x471c0e);},'RcTYS':_0x90fdac[_0x2ec10e(0x268)],'yFuWa':function(_0x538e17,_0x206216){const _0x1cb371=_0xd9e5e;return _0x90fdac[_0x1cb371(0x5f6)](_0x538e17,_0x206216);},'XmPXc':_0x90fdac[_0xd9e5e(0x3ab)],'uVNAs':function(_0x2bd1fd,_0x85d07b){const _0x5bdb8e=_0xd9e5e;return _0x90fdac[_0x5bdb8e(0x911)](_0x2bd1fd,_0x85d07b);},'TnvZz':function(_0x7f29d8,_0x447039){const _0x522e94=_0xd9e5e;return _0x90fdac[_0x522e94(0x9e8)](_0x7f29d8,_0x447039);},'NigrL':_0x90fdac[_0x2ec10e(0xc4f)],'uSLZP':function(_0x26626e,_0x4ee1fe){const _0x593e6b=_0x2ec10e;return _0x90fdac[_0x593e6b(0x29e)](_0x26626e,_0x4ee1fe);},'NKgaz':function(_0x46fee2,_0x296bb1){const _0x459909=_0x369255;return _0x90fdac[_0x459909(0xddf)](_0x46fee2,_0x296bb1);},'lnxVy':function(_0x20d8d3,_0x4c054c){const _0x502364=_0x369255;return _0x90fdac[_0x502364(0x3c1)](_0x20d8d3,_0x4c054c);},'zBNWD':_0x90fdac[_0x2ec10e(0xb04)],'jmaob':function(_0x13b65b,_0xc211a7){const _0x21658e=_0x10b687;return _0x90fdac[_0x21658e(0x5f6)](_0x13b65b,_0xc211a7);},'VSrWv':function(_0x168d07,_0x477218){const _0x13dd80=_0x262844;return _0x90fdac[_0x13dd80(0x3d1)](_0x168d07,_0x477218);},'tzsIJ':_0x90fdac[_0x369255(0x297)],'dhkRv':function(_0x355b6c,_0x33fec3){const _0x2dfb72=_0xd9e5e;return _0x90fdac[_0x2dfb72(0x5d7)](_0x355b6c,_0x33fec3);},'HPCBi':_0x90fdac[_0x369255(0xd6e)],'aakLX':function(_0x3d4f06,_0x53cd16){const _0xce5dd2=_0xd9e5e;return _0x90fdac[_0xce5dd2(0x5f6)](_0x3d4f06,_0x53cd16);},'PWLPX':function(_0x18853b,_0x32ec81){const _0x1fa0cb=_0x369255;return _0x90fdac[_0x1fa0cb(0x3cc)](_0x18853b,_0x32ec81);},'LWIaR':function(_0x58450d,_0x43b672){const _0x355fc1=_0x10b687;return _0x90fdac[_0x355fc1(0x6d0)](_0x58450d,_0x43b672);},'ZBSlP':_0x90fdac[_0xd9e5e(0x51c)],'RPOQN':function(_0x1c173c,_0x3d2175){const _0x1f1287=_0xd9e5e;return _0x90fdac[_0x1f1287(0x5f6)](_0x1c173c,_0x3d2175);},'CrytA':function(_0x224130,_0x5878ce){const _0x33cd5b=_0xd9e5e;return _0x90fdac[_0x33cd5b(0x911)](_0x224130,_0x5878ce);},'zVUih':_0x90fdac[_0x262844(0xa5e)],'ISiGu':function(_0x2eab89,_0x96eb88){const _0x5dda20=_0x10b687;return _0x90fdac[_0x5dda20(0x953)](_0x2eab89,_0x96eb88);},'FToQB':function(_0x3c6eab,_0x1339d8){const _0x7de102=_0x2ec10e;return _0x90fdac[_0x7de102(0x3c1)](_0x3c6eab,_0x1339d8);},'CIAjJ':_0x90fdac[_0x2ec10e(0x2ab)],'znRul':function(_0x5dfb53,_0x2c90e5){const _0x2cce42=_0x369255;return _0x90fdac[_0x2cce42(0xa6a)](_0x5dfb53,_0x2c90e5);},'JHIar':function(_0x3c8683,_0x23ca3b){const _0xfe448d=_0x2ec10e;return _0x90fdac[_0xfe448d(0x3d1)](_0x3c8683,_0x23ca3b);},'MYDAy':function(_0x2c3500,_0x46d4ad){const _0x134cf0=_0x262844;return _0x90fdac[_0x134cf0(0x9e8)](_0x2c3500,_0x46d4ad);},'amSSg':_0x90fdac[_0xd9e5e(0x998)],'tbLcs':function(_0xd7b883,_0x16f289){const _0x314605=_0x262844;return _0x90fdac[_0x314605(0x6d0)](_0xd7b883,_0x16f289);},'RuPRC':function(_0x454c5d,_0x43dea7){const _0xdab043=_0x262844;return _0x90fdac[_0xdab043(0x911)](_0x454c5d,_0x43dea7);},'TnCYx':function(_0x1cebcb,_0x170759){const _0x1acbe4=_0xd9e5e;return _0x90fdac[_0x1acbe4(0x3c1)](_0x1cebcb,_0x170759);},'EyUOW':_0x90fdac[_0xd9e5e(0x5c4)],'ljeCu':function(_0x555588,_0x22f888){const _0x4e75a7=_0x369255;return _0x90fdac[_0x4e75a7(0xa89)](_0x555588,_0x22f888);},'QJqaU':_0x90fdac[_0x10b687(0xd71)],'GGFlR':function(_0x5b8bef,_0x1e9d46){const _0x2e97da=_0x262844;return _0x90fdac[_0x2e97da(0xbc1)](_0x5b8bef,_0x1e9d46);},'aGgKK':_0x90fdac[_0x2ec10e(0x407)],'lJAKy':function(_0x38163b,_0x3a863b){const _0x27d3fa=_0x10b687;return _0x90fdac[_0x27d3fa(0x98b)](_0x38163b,_0x3a863b);},'ZeGCS':function(_0x345231,_0x89c6ba){const _0x3e08a2=_0x10b687;return _0x90fdac[_0x3e08a2(0x9ef)](_0x345231,_0x89c6ba);},'MjNsT':function(_0x2b3326,_0x3a0a44){const _0x17477e=_0x369255;return _0x90fdac[_0x17477e(0x29e)](_0x2b3326,_0x3a0a44);},'VDYLh':_0x90fdac[_0xd9e5e(0x4e5)],'jOdUu':function(_0x1ccf52,_0x2eeaa3){const _0x2852ef=_0x10b687;return _0x90fdac[_0x2852ef(0x29e)](_0x1ccf52,_0x2eeaa3);},'BlMZy':function(_0xa22fb1,_0x2f4fee){const _0x2eae8e=_0x369255;return _0x90fdac[_0x2eae8e(0x7c3)](_0xa22fb1,_0x2f4fee);},'RmCre':function(_0x31b4f6,_0x4e0ef9){const _0x34aa9d=_0xd9e5e;return _0x90fdac[_0x34aa9d(0x5d7)](_0x31b4f6,_0x4e0ef9);},'pTKCY':function(_0x368209,_0x2296a1){const _0x57b8ec=_0x10b687;return _0x90fdac[_0x57b8ec(0xdb0)](_0x368209,_0x2296a1);},'CQYkK':_0x90fdac[_0xd9e5e(0x262)],'nvHTB':function(_0x33b7f9,_0x4dc9a7){const _0x35a45c=_0xd9e5e;return _0x90fdac[_0x35a45c(0x953)](_0x33b7f9,_0x4dc9a7);},'nQqvP':function(_0x17f29d,_0x1a8309){const _0x3ee3e9=_0x2ec10e;return _0x90fdac[_0x3ee3e9(0x9ac)](_0x17f29d,_0x1a8309);},'lvIsB':_0x90fdac[_0x2ec10e(0xc43)],'ZgrEF':function(_0x5dafb4,_0xe265f3){const _0x1212cb=_0x2ec10e;return _0x90fdac[_0x1212cb(0xaef)](_0x5dafb4,_0xe265f3);},'OLAGP':function(_0x3c1db2,_0xa48732){const _0x969af0=_0x369255;return _0x90fdac[_0x969af0(0x232)](_0x3c1db2,_0xa48732);},'JwlJv':function(_0x1fd9dd,_0x14aa38){const _0x1807b2=_0xd9e5e;return _0x90fdac[_0x1807b2(0x7b8)](_0x1fd9dd,_0x14aa38);},'iDeUW':function(_0x5802ef,_0x304496){const _0x1a90ea=_0xd9e5e;return _0x90fdac[_0x1a90ea(0xe65)](_0x5802ef,_0x304496);},'tGKSp':function(_0x1382fd,_0x5efb48){const _0x3fd99a=_0xd9e5e;return _0x90fdac[_0x3fd99a(0xa89)](_0x1382fd,_0x5efb48);},'xRsZN':_0x90fdac[_0x369255(0x88c)],'saFWu':_0x90fdac[_0x2ec10e(0x220)],'aNqDf':function(_0x108475,_0xf03d08){const _0x57c449=_0x10b687;return _0x90fdac[_0x57c449(0x7c3)](_0x108475,_0xf03d08);},'jfJTI':function(_0x1ad16b,_0xc6efef){const _0x2828a4=_0x369255;return _0x90fdac[_0x2828a4(0x5f6)](_0x1ad16b,_0xc6efef);},'yFANq':_0x90fdac[_0xd9e5e(0x4ec)],'FcvGq':function(_0x3451da,_0x1b1591){const _0x5deb69=_0x10b687;return _0x90fdac[_0x5deb69(0x3c1)](_0x3451da,_0x1b1591);},'TnGEi':_0x90fdac[_0x369255(0x22f)],'NpKCM':function(_0x35bd18,_0x3c5dd4){const _0x71f531=_0x2ec10e;return _0x90fdac[_0x71f531(0x911)](_0x35bd18,_0x3c5dd4);},'cxfjX':function(_0x22be92,_0x540bea){const _0x3a5d45=_0x369255;return _0x90fdac[_0x3a5d45(0x5d7)](_0x22be92,_0x540bea);},'msPyR':_0x90fdac[_0x2ec10e(0x55f)],'zVBYm':function(_0x548e87,_0x2b9e72){const _0x12fd77=_0x2ec10e;return _0x90fdac[_0x12fd77(0x232)](_0x548e87,_0x2b9e72);},'ghrsI':function(_0x11c0c8,_0x49afb3){const _0xfe921a=_0xd9e5e;return _0x90fdac[_0xfe921a(0x29e)](_0x11c0c8,_0x49afb3);},'Jcuhk':function(_0x58d2e0,_0x26325c){const _0xdbb266=_0x369255;return _0x90fdac[_0xdbb266(0xaef)](_0x58d2e0,_0x26325c);},'FvguN':_0x90fdac[_0x2ec10e(0x92b)],'RYQla':function(_0xb4ef8f,_0x11fee8){const _0xb50f9d=_0x369255;return _0x90fdac[_0xb50f9d(0x44a)](_0xb4ef8f,_0x11fee8);},'wqrwa':function(_0x570c50,_0x497888){const _0x3485c9=_0x262844;return _0x90fdac[_0x3485c9(0x5f6)](_0x570c50,_0x497888);},'lzAJE':function(_0x35be2b,_0xfc114a){const _0x578e0f=_0x262844;return _0x90fdac[_0x578e0f(0x3c1)](_0x35be2b,_0xfc114a);},'AemqE':_0x90fdac[_0x2ec10e(0x96c)],'SOyoL':function(_0xcf6187,_0x23170c){const _0x5a0366=_0x2ec10e;return _0x90fdac[_0x5a0366(0x6d0)](_0xcf6187,_0x23170c);},'gpagb':_0x90fdac[_0x262844(0xa10)],'mzMId':function(_0x2a39af,_0x48877f){const _0x5a25eb=_0x262844;return _0x90fdac[_0x5a25eb(0xae3)](_0x2a39af,_0x48877f);},'RHWDG':_0x90fdac[_0x10b687(0x780)],'iFagz':function(_0x3f18a5,_0x4629f8){const _0x2000c7=_0x2ec10e;return _0x90fdac[_0x2000c7(0xcac)](_0x3f18a5,_0x4629f8);},'lMWUL':_0x90fdac[_0x262844(0x8c3)],'ucEVu':function(_0x16a3f2,_0x3d818c){const _0x3f52f2=_0x369255;return _0x90fdac[_0x3f52f2(0x599)](_0x16a3f2,_0x3d818c);},'PGSvK':function(_0x154603,_0x2a290b){const _0x1fbb44=_0x262844;return _0x90fdac[_0x1fbb44(0x241)](_0x154603,_0x2a290b);},'BpBBp':_0x90fdac[_0x2ec10e(0x42f)],'qbLzN':_0x90fdac[_0x369255(0x8f3)],'pcCEq':_0x90fdac[_0x2ec10e(0x59c)],'JEJWy':_0x90fdac[_0x2ec10e(0xa18)],'JBchF':_0x90fdac[_0x262844(0x9b5)],'lxAPB':_0x90fdac[_0x10b687(0x5e0)],'Hleuw':_0x90fdac[_0x2ec10e(0x29d)],'oQMYJ':_0x90fdac[_0x369255(0xb05)],'nXmsE':_0x90fdac[_0x369255(0x621)],'NsVNS':function(_0xbadc5b,_0x4634c5){const _0x15c729=_0xd9e5e;return _0x90fdac[_0x15c729(0x7b8)](_0xbadc5b,_0x4634c5);},'FxvRE':_0x90fdac[_0x2ec10e(0x4be)],'Vqwmk':function(_0x541b43,_0x59f297){const _0x50a128=_0x10b687;return _0x90fdac[_0x50a128(0xa07)](_0x541b43,_0x59f297);},'lTBeR':_0x90fdac[_0x2ec10e(0xa93)],'qNJqP':_0x90fdac[_0x10b687(0xe2c)],'VLApx':function(_0x42f331,_0x17c75f){const _0x5f019f=_0x10b687;return _0x90fdac[_0x5f019f(0x7c3)](_0x42f331,_0x17c75f);},'IUdRp':function(_0x43f830,_0x26ef76,_0x19ee72){const _0x9a84bb=_0x262844;return _0x90fdac[_0x9a84bb(0xd40)](_0x43f830,_0x26ef76,_0x19ee72);},'zZrIQ':function(_0x3a05e9,_0x1057c){const _0x2a8004=_0xd9e5e;return _0x90fdac[_0x2a8004(0x9e8)](_0x3a05e9,_0x1057c);},'EkDHw':_0x90fdac[_0x10b687(0xb65)],'DKpUu':_0x90fdac[_0xd9e5e(0x36d)],'HvIap':_0x90fdac[_0xd9e5e(0x331)]};if(_0x90fdac[_0xd9e5e(0xca5)](_0x90fdac[_0x262844(0x5af)],_0x90fdac[_0x262844(0xd79)]))_0x3e3ef9[_0xd9e5e(0x1e3)]([_0x40b264[_0x2ec10e(0x411)+'ge'],_0x5a2872,_0xa7a098,_0x2a854d]),_0x41f594='',_0x593da1='';else{var _0x34ce81=document[_0xd9e5e(0x9f4)+_0x10b687(0xc14)+_0x10b687(0xa51)](_0x90fdac[_0x10b687(0xc5b)]);_0x34ce81[_0x2ec10e(0x765)]=_0x50e7ac;if(_0x90fdac[_0x369255(0x685)](_0x172613,_0x90fdac[_0x262844(0x8fc)])){if(_0x90fdac[_0x262844(0xa07)](_0x90fdac[_0xd9e5e(0xcdc)],_0x90fdac[_0x369255(0xdfb)]))document[_0x262844(0x914)+_0x369255(0x97c)+_0xd9e5e(0x365)+'r'](_0x90fdac[_0x10b687(0xa92)],function(){const _0x52fb06=_0x2ec10e,_0x433078=_0xd9e5e,_0x22af89=_0x369255,_0x3a7149=_0xd9e5e,_0x2df6b4=_0x369255,_0x23dbb2={'zaQXU':function(_0x3d0664,_0x19639d){const _0x46c60=_0x2656;return _0x39dd65[_0x46c60(0x642)](_0x3d0664,_0x19639d);},'XAyem':_0x39dd65[_0x52fb06(0x472)],'vMrDT':_0x39dd65[_0x52fb06(0xb31)],'nngwj':_0x39dd65[_0x433078(0x75f)],'rbMIR':function(_0x14719d,_0x505d9e){const _0x45ebae=_0x52fb06;return _0x39dd65[_0x45ebae(0x25a)](_0x14719d,_0x505d9e);},'khVHO':_0x39dd65[_0x433078(0x65b)],'YQzBs':_0x39dd65[_0x433078(0xaa4)],'yHvLu':function(_0x4716e8,_0x224224){const _0x357f1d=_0x433078;return _0x39dd65[_0x357f1d(0x642)](_0x4716e8,_0x224224);},'bsXho':_0x39dd65[_0x2df6b4(0x5fb)],'LTvpF':_0x39dd65[_0x433078(0x82b)],'PxHmX':_0x39dd65[_0x433078(0x927)]};if(_0x39dd65[_0x3a7149(0x642)](_0x39dd65[_0x52fb06(0x3a8)],_0x39dd65[_0x3a7149(0x3a8)])){_0x2f2c31=_0x5b1aa4[_0x433078(0x860)+_0x22af89(0x7c5)]('','(')[_0x52fb06(0x860)+_0x52fb06(0x7c5)]('',')')[_0x3a7149(0x860)+_0x3a7149(0x7c5)](':\x20',':')[_0x52fb06(0x860)+_0x2df6b4(0x7c5)]('',':')[_0x52fb06(0x860)+_0x22af89(0x7c5)](',\x20',',')[_0x52fb06(0x860)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x1307e8=_0x36edd0[_0x3a7149(0xb4b)+_0x2df6b4(0x65a)][_0x433078(0x8a3)+'h'];_0x39dd65[_0x433078(0xc3a)](_0x1307e8,0x6d*0x27+0x1dd2+-0x2e6d);--_0x1307e8){const _0x4ca1c5=_0x39dd65[_0x433078(0xa04)][_0x22af89(0xa2f)]('|');let _0x34b44e=-0x11c2+0x25c0+0x9ff*-0x2;while(!![]){switch(_0x4ca1c5[_0x34b44e++]){case'0':_0x23aab7=_0x229df8[_0x52fb06(0x860)+_0x433078(0x7c5)](_0x39dd65[_0x433078(0xc3e)](_0x39dd65[_0x433078(0xb9b)],_0x39dd65[_0x52fb06(0x289)](_0x13dde3,_0x1307e8)),_0x39dd65[_0x52fb06(0xc3e)](_0x39dd65[_0x22af89(0x3d8)],_0x39dd65[_0x3a7149(0x598)](_0x3eebf3,_0x1307e8)));continue;case'1':_0x10bd41=_0x23fdc6[_0x2df6b4(0x860)+_0x52fb06(0x7c5)](_0x39dd65[_0x52fb06(0xc46)](_0x39dd65[_0x52fb06(0x826)],_0x39dd65[_0x3a7149(0xc34)](_0xb3e3b2,_0x1307e8)),_0x39dd65[_0x433078(0x901)](_0x39dd65[_0x2df6b4(0x3d8)],_0x39dd65[_0x52fb06(0xc34)](_0x2caf1c,_0x1307e8)));continue;case'2':_0x46cf84=_0x1a397a[_0x433078(0x860)+_0x22af89(0x7c5)](_0x39dd65[_0x2df6b4(0x6e9)](_0x39dd65[_0x3a7149(0x9cb)],_0x39dd65[_0x22af89(0x7ee)](_0x446a68,_0x1307e8)),_0x39dd65[_0x52fb06(0xc3e)](_0x39dd65[_0x52fb06(0x3d8)],_0x39dd65[_0x433078(0x7b5)](_0x55e1be,_0x1307e8)));continue;case'3':_0x3c6d25=_0x55b316[_0x22af89(0x860)+_0x3a7149(0x7c5)](_0x39dd65[_0x2df6b4(0x901)](_0x39dd65[_0x2df6b4(0xc10)],_0x39dd65[_0x2df6b4(0x598)](_0x3f3e61,_0x1307e8)),_0x39dd65[_0x52fb06(0xc46)](_0x39dd65[_0x433078(0x3d8)],_0x39dd65[_0x22af89(0x289)](_0x17bf20,_0x1307e8)));continue;case'4':_0x15b3cb=_0x1cd94a[_0x52fb06(0x860)+_0x2df6b4(0x7c5)](_0x39dd65[_0x3a7149(0x962)](_0x39dd65[_0x2df6b4(0x364)],_0x39dd65[_0x2df6b4(0x8d5)](_0x2e178c,_0x1307e8)),_0x39dd65[_0x22af89(0x6fa)](_0x39dd65[_0x433078(0x3d8)],_0x39dd65[_0x433078(0x7ee)](_0x156392,_0x1307e8)));continue;case'5':_0x5b5bd7=_0x400c97[_0x433078(0x860)+_0x22af89(0x7c5)](_0x39dd65[_0x22af89(0x721)](_0x39dd65[_0x2df6b4(0xda0)],_0x39dd65[_0x22af89(0x57b)](_0x923c17,_0x1307e8)),_0x39dd65[_0x52fb06(0x6fa)](_0x39dd65[_0x3a7149(0x3d8)],_0x39dd65[_0x22af89(0x72f)](_0x38e55b,_0x1307e8)));continue;case'6':_0x1dc9bb=_0x17347c[_0x22af89(0x860)+_0x52fb06(0x7c5)](_0x39dd65[_0x3a7149(0xc3e)](_0x39dd65[_0x433078(0x213)],_0x39dd65[_0x433078(0xd49)](_0xd7d83,_0x1307e8)),_0x39dd65[_0x22af89(0x962)](_0x39dd65[_0x3a7149(0x3d8)],_0x39dd65[_0x52fb06(0xc34)](_0x417e95,_0x1307e8)));continue;case'7':_0x5e18e4=_0x30d294[_0x2df6b4(0x860)+_0x433078(0x7c5)](_0x39dd65[_0x3a7149(0x8ce)](_0x39dd65[_0x2df6b4(0x6fc)],_0x39dd65[_0x2df6b4(0x7ac)](_0x230685,_0x1307e8)),_0x39dd65[_0x3a7149(0xc3e)](_0x39dd65[_0x433078(0x3d8)],_0x39dd65[_0x433078(0x25a)](_0x2fa3c0,_0x1307e8)));continue;case'8':_0x259ccc=_0x17d26f[_0x3a7149(0x860)+_0x433078(0x7c5)](_0x39dd65[_0x2df6b4(0xbdf)](_0x39dd65[_0x52fb06(0xaa8)],_0x39dd65[_0x52fb06(0xc34)](_0x5c85e7,_0x1307e8)),_0x39dd65[_0x52fb06(0x71f)](_0x39dd65[_0x433078(0x3d8)],_0x39dd65[_0x22af89(0xcaa)](_0x22c21c,_0x1307e8)));continue;case'9':_0x3943a1=_0xa4539b[_0x52fb06(0x860)+_0x2df6b4(0x7c5)](_0x39dd65[_0x2df6b4(0x9fb)](_0x39dd65[_0x3a7149(0x695)],_0x39dd65[_0x52fb06(0x7ee)](_0x1a7875,_0x1307e8)),_0x39dd65[_0x3a7149(0xbdf)](_0x39dd65[_0x2df6b4(0x3d8)],_0x39dd65[_0x433078(0xcaa)](_0x44c370,_0x1307e8)));continue;case'10':_0x2a3f21=_0x2a3788[_0x3a7149(0x860)+_0x3a7149(0x7c5)](_0x39dd65[_0x52fb06(0xa0f)](_0x39dd65[_0x433078(0xb60)],_0x39dd65[_0x22af89(0x87b)](_0x3ff6c2,_0x1307e8)),_0x39dd65[_0x2df6b4(0x6fa)](_0x39dd65[_0x52fb06(0x3d8)],_0x39dd65[_0x2df6b4(0xcaa)](_0x2a6dcc,_0x1307e8)));continue;case'11':_0x5b9ba1=_0xf04155[_0x3a7149(0x860)+_0x2df6b4(0x7c5)](_0x39dd65[_0x2df6b4(0xbdf)](_0x39dd65[_0x2df6b4(0x502)],_0x39dd65[_0x52fb06(0x3fb)](_0x4e32c4,_0x1307e8)),_0x39dd65[_0x433078(0xa8c)](_0x39dd65[_0x52fb06(0x3d8)],_0x39dd65[_0x3a7149(0xaab)](_0x55544c,_0x1307e8)));continue;case'12':_0x1b4ca5=_0x4ece8a[_0x3a7149(0x860)+_0x3a7149(0x7c5)](_0x39dd65[_0x22af89(0xa0f)](_0x39dd65[_0x3a7149(0xc50)],_0x39dd65[_0x3a7149(0x7ee)](_0x133573,_0x1307e8)),_0x39dd65[_0x52fb06(0x71f)](_0x39dd65[_0x52fb06(0x3d8)],_0x39dd65[_0x52fb06(0x416)](_0x5bbfd7,_0x1307e8)));continue;case'13':_0x256e22=_0x914fe6[_0x433078(0x860)+_0x52fb06(0x7c5)](_0x39dd65[_0x52fb06(0xc3e)](_0x39dd65[_0x3a7149(0xc10)],_0x39dd65[_0x2df6b4(0x8d2)](_0x4fbd07,_0x1307e8)),_0x39dd65[_0x22af89(0xc0c)](_0x39dd65[_0x22af89(0x3d8)],_0x39dd65[_0x3a7149(0x87b)](_0x2b7402,_0x1307e8)));continue;case'14':_0x55bf5e=_0x166ded[_0x433078(0x860)+_0x52fb06(0x7c5)](_0x39dd65[_0x22af89(0x5fd)](_0x39dd65[_0x22af89(0xd1b)],_0x39dd65[_0x22af89(0x8d2)](_0x1ff43a,_0x1307e8)),_0x39dd65[_0x52fb06(0x8ce)](_0x39dd65[_0x52fb06(0x3d8)],_0x39dd65[_0x52fb06(0x995)](_0x177737,_0x1307e8)));continue;case'15':_0xa90742=_0x3df68b[_0x22af89(0x860)+_0x22af89(0x7c5)](_0x39dd65[_0x2df6b4(0xce6)](_0x39dd65[_0x52fb06(0x6a2)],_0x39dd65[_0x22af89(0xd49)](_0x1bd430,_0x1307e8)),_0x39dd65[_0x3a7149(0x7b7)](_0x39dd65[_0x3a7149(0x3d8)],_0x39dd65[_0x22af89(0x34b)](_0x11129e,_0x1307e8)));continue;case'16':_0x254c2c=_0x48884e[_0x22af89(0x860)+_0x52fb06(0x7c5)](_0x39dd65[_0x52fb06(0xc46)](_0x39dd65[_0x22af89(0xc50)],_0x39dd65[_0x3a7149(0x57b)](_0x5ab1e4,_0x1307e8)),_0x39dd65[_0x433078(0x45b)](_0x39dd65[_0x2df6b4(0x3d8)],_0x39dd65[_0x2df6b4(0x6c8)](_0x2e766c,_0x1307e8)));continue;case'17':_0x4fb38c=_0x2872bd[_0x2df6b4(0x860)+_0x2df6b4(0x7c5)](_0x39dd65[_0x22af89(0x27b)](_0x39dd65[_0x2df6b4(0x96d)],_0x39dd65[_0x433078(0xcaa)](_0x3a08a8,_0x1307e8)),_0x39dd65[_0x2df6b4(0xc46)](_0x39dd65[_0x3a7149(0x3d8)],_0x39dd65[_0x52fb06(0x598)](_0x2b2bed,_0x1307e8)));continue;case'18':_0x4ff08a=_0x30bcdc[_0x2df6b4(0x860)+_0x52fb06(0x7c5)](_0x39dd65[_0x433078(0x27b)](_0x39dd65[_0x3a7149(0xad2)],_0x39dd65[_0x22af89(0xc01)](_0x256a31,_0x1307e8)),_0x39dd65[_0x22af89(0xce6)](_0x39dd65[_0x52fb06(0x3d8)],_0x39dd65[_0x22af89(0xc45)](_0x2d0b75,_0x1307e8)));continue;case'19':_0x33ab18=_0x57d141[_0x22af89(0x860)+_0x2df6b4(0x7c5)](_0x39dd65[_0x2df6b4(0x7b7)](_0x39dd65[_0x3a7149(0x720)],_0x39dd65[_0x2df6b4(0xc45)](_0x26ece3,_0x1307e8)),_0x39dd65[_0x433078(0xa0f)](_0x39dd65[_0x22af89(0x3d8)],_0x39dd65[_0x3a7149(0x416)](_0xb40077,_0x1307e8)));continue;case'20':_0x4d0d1a=_0x444e4f[_0x22af89(0x860)+_0x3a7149(0x7c5)](_0x39dd65[_0x22af89(0x4ef)](_0x39dd65[_0x22af89(0x523)],_0x39dd65[_0x22af89(0xcf8)](_0x1b0e5e,_0x1307e8)),_0x39dd65[_0x433078(0x45b)](_0x39dd65[_0x3a7149(0x3d8)],_0x39dd65[_0x22af89(0x8d5)](_0x162e31,_0x1307e8)));continue;case'21':_0x371193=_0x124917[_0x3a7149(0x860)+_0x433078(0x7c5)](_0x39dd65[_0x433078(0x37f)](_0x39dd65[_0x433078(0x793)],_0x39dd65[_0x22af89(0x49a)](_0x4e45ec,_0x1307e8)),_0x39dd65[_0x3a7149(0x71f)](_0x39dd65[_0x2df6b4(0x3d8)],_0x39dd65[_0x52fb06(0xd6b)](_0x9d0d6d,_0x1307e8)));continue;case'22':_0x4de8eb=_0x56a990[_0x2df6b4(0x860)+_0x2df6b4(0x7c5)](_0x39dd65[_0x52fb06(0xc76)](_0x39dd65[_0x22af89(0x4c0)],_0x39dd65[_0x3a7149(0xaab)](_0x5483af,_0x1307e8)),_0x39dd65[_0x433078(0xa31)](_0x39dd65[_0x52fb06(0x3d8)],_0x39dd65[_0x2df6b4(0xd49)](_0x2df634,_0x1307e8)));continue;case'23':_0x389151=_0xe34d1b[_0x433078(0x860)+_0x52fb06(0x7c5)](_0x39dd65[_0x433078(0xa8c)](_0x39dd65[_0x22af89(0x695)],_0x39dd65[_0x52fb06(0x3d0)](_0x46dfac,_0x1307e8)),_0x39dd65[_0x52fb06(0x389)](_0x39dd65[_0x52fb06(0x3d8)],_0x39dd65[_0x52fb06(0xc34)](_0x1241dc,_0x1307e8)));continue;case'24':_0x415338=_0x5e9504[_0x3a7149(0x860)+_0x433078(0x7c5)](_0x39dd65[_0x52fb06(0xa0f)](_0x39dd65[_0x3a7149(0x591)],_0x39dd65[_0x433078(0xc34)](_0xb9fc56,_0x1307e8)),_0x39dd65[_0x2df6b4(0x4e8)](_0x39dd65[_0x22af89(0x3d8)],_0x39dd65[_0x2df6b4(0xc45)](_0x1ed72d,_0x1307e8)));continue;}break;}}_0xffd685=_0x39dd65[_0x433078(0x87b)](_0x21c7a8,_0x37345b);for(let _0x30e412=_0x19ea94[_0x52fb06(0xb4b)+_0x52fb06(0x65a)][_0x3a7149(0x8a3)+'h'];_0x39dd65[_0x22af89(0xc3a)](_0x30e412,-0x2483*-0x1+-0x1*-0x878+-0x149*0x23);--_0x30e412){_0x587d86=_0x603cbb[_0x22af89(0x860)+'ce'](_0x39dd65[_0x22af89(0x721)](_0x39dd65[_0x433078(0x28b)],_0x39dd65[_0x22af89(0x289)](_0x221e3f,_0x30e412)),_0x55e59c[_0x52fb06(0xb4b)+_0x433078(0x65a)][_0x30e412]),_0x580b90=_0x500007[_0x52fb06(0x860)+'ce'](_0x39dd65[_0x52fb06(0xe23)](_0x39dd65[_0x52fb06(0xbb6)],_0x39dd65[_0x3a7149(0x7ac)](_0xcbad75,_0x30e412)),_0x578c57[_0x22af89(0xb4b)+_0x52fb06(0x65a)][_0x30e412]),_0x34da7a=_0xdb21c2[_0x22af89(0x860)+'ce'](_0x39dd65[_0x3a7149(0x571)](_0x39dd65[_0x22af89(0xadc)],_0x39dd65[_0x22af89(0xc78)](_0x1a454f,_0x30e412)),_0x2e305d[_0x22af89(0xb4b)+_0x2df6b4(0x65a)][_0x30e412]);}return _0x22e7f4=_0x22ca42[_0x52fb06(0x860)+_0x2df6b4(0x7c5)]('[]',''),_0x32de13=_0x110d0f[_0x433078(0x860)+_0x3a7149(0x7c5)]('((','('),_0x2e860f=_0xdb9faa[_0x2df6b4(0x860)+_0x2df6b4(0x7c5)]('))',')'),_0x5f1ab0=_0x34c4d1[_0x52fb06(0x860)+_0x22af89(0x7c5)]('(\x0a','\x0a'),_0xcd43a3;}else _0x34ce81[_0x22af89(0x6d7)+_0x52fb06(0x9c0)+_0x52fb06(0x413)][_0x22af89(0x979)+_0x2df6b4(0xa36)+_0x52fb06(0xc81)+_0x3a7149(0x5b4)][_0x3a7149(0x81f)+_0x2df6b4(0x677)+_0x433078(0xe53)+_0x3a7149(0x5bf)][_0x433078(0x8ea)](function(){const _0x217e67=_0x52fb06,_0xb1ab5d=_0x3a7149,_0x3f452b=_0x22af89,_0x159e8c=_0x52fb06,_0xf659df=_0x22af89,_0x4bc23c={};_0x4bc23c[_0x217e67(0x3ae)]=_0x23dbb2[_0xb1ab5d(0x28c)];const _0x2a5881=_0x4bc23c;_0x23dbb2[_0x3f452b(0x881)](_0x23dbb2[_0x159e8c(0x537)],_0x23dbb2[_0xb1ab5d(0x322)])?_0x34ce81[_0x217e67(0x6d7)+_0xf659df(0x9c0)+_0xb1ab5d(0x413)][_0xb1ab5d(0x979)+_0x217e67(0xa36)+_0x217e67(0xc81)+_0xf659df(0x5b4)][_0x3f452b(0x327)+_0xb1ab5d(0x980)]['on'](_0x23dbb2[_0x159e8c(0x9ff)],function(_0x24d89e){const _0x118ea4=_0x217e67,_0x141c93=_0xf659df,_0xcb8321=_0x159e8c,_0x5f59bb=_0xf659df,_0x2418e3=_0xf659df;_0x23dbb2[_0x118ea4(0xbef)](_0x23dbb2[_0x118ea4(0x293)],_0x23dbb2[_0xcb8321(0xb82)])?(console[_0x118ea4(0x6ba)](_0x23dbb2[_0x5f59bb(0x618)]),_0x23dbb2[_0x5f59bb(0xb99)](_0x5a0b8f,_0x23dbb2[_0x2418e3(0xdfc)])):_0xacbae4+=_0x57e8d1[0x1*0x16f7+0x251f*-0x1+0xe28][_0x141c93(0x9d8)][_0x5f59bb(0x6d7)+'nt'];}):_0x598d51[_0x159e8c(0x9f4)+_0x159e8c(0xc14)+_0x3f452b(0xa51)](_0x2a5881[_0x217e67(0x3ae)])[_0x159e8c(0x4d8)+_0x217e67(0xb7f)]=_0x47ad61[_0xf659df(0x9f4)+_0xb1ab5d(0xc14)+_0xb1ab5d(0xa51)](_0x2a5881[_0x217e67(0x3ae)])[_0x217e67(0x4d8)+_0x3f452b(0x50a)+'ht'];});});else return new _0x5c7489(_0x58fa64=>_0x5d6840(_0x58fa64,_0x28ad1f));}else _0x34ce81[_0x262844(0x30f)+_0x369255(0xb95)+'t']?_0x90fdac[_0x2ec10e(0xc68)](_0x90fdac[_0x10b687(0xa7d)],_0x90fdac[_0x369255(0xd97)])?_0x9c5459+=_0x578ba7:_0x34ce81[_0x10b687(0x30f)+_0x262844(0xb95)+'t'](_0x90fdac[_0x262844(0x789)],function(){const _0x6a69d=_0x369255,_0x2e0490=_0xd9e5e,_0x17d42b=_0x369255,_0x5033e9=_0x369255,_0x1a5f15=_0x10b687,_0x3a085c={'FsSpK':function(_0x3add9d,_0x31b4f4){const _0x2ea580=_0x2656;return _0x39dd65[_0x2ea580(0x883)](_0x3add9d,_0x31b4f4);},'TXxKp':_0x39dd65[_0x6a69d(0xce3)]};if(_0x39dd65[_0x2e0490(0xba5)](_0x39dd65[_0x2e0490(0x762)],_0x39dd65[_0x2e0490(0x762)]))try{_0x239264=_0x491948[_0x5033e9(0xcc6)](_0x3a085c[_0x6a69d(0xe55)](_0x5b0712,_0x17cdd8))[_0x3a085c[_0x6a69d(0x5d5)]],_0x5457bc='';}catch(_0x4c0f53){_0x8bcf9d=_0x4e4999[_0x17d42b(0xcc6)](_0x1d1c8f)[_0x3a085c[_0x6a69d(0x5d5)]],_0x80a7c8='';}else console[_0x6a69d(0x6ba)](_0x39dd65[_0x6a69d(0xc99)]),_0x39dd65[_0x6a69d(0x479)](_0x5a0b8f,_0x39dd65[_0x5033e9(0x65b)]);}):_0x90fdac[_0x369255(0x241)](_0x90fdac[_0xd9e5e(0x632)],_0x90fdac[_0x10b687(0x4e9)])?_0x34ce81[_0x2ec10e(0xdd8)+'d']=function(){const _0x2446a8=_0xd9e5e,_0x4e9f25=_0x369255,_0x5ddafe=_0x262844,_0x54fc1b=_0x262844,_0x1d7b33=_0x369255,_0x49f97f={'olTcM':_0x90fdac[_0x2446a8(0x44e)],'uWbmf':_0x90fdac[_0x2446a8(0xc47)],'TPcfn':function(_0x1246a8,_0x3bfc31){const _0x3ad5d7=_0x2446a8;return _0x90fdac[_0x3ad5d7(0x3d1)](_0x1246a8,_0x3bfc31);},'bDsVl':_0x90fdac[_0x4e9f25(0x9d0)],'bYbKs':function(_0x414ed4,_0x56f91a){const _0x36e36a=_0x2446a8;return _0x90fdac[_0x36e36a(0x3cc)](_0x414ed4,_0x56f91a);},'dogbO':_0x90fdac[_0x5ddafe(0x585)],'nkocL':_0x90fdac[_0x1d7b33(0x674)],'AIXgM':function(_0x214ea2,_0x11efc4){const _0x1731af=_0x5ddafe;return _0x90fdac[_0x1731af(0x953)](_0x214ea2,_0x11efc4);},'DKqSH':function(_0x1fd47e){const _0x19915c=_0x5ddafe;return _0x90fdac[_0x19915c(0xa9a)](_0x1fd47e);}};_0x90fdac[_0x5ddafe(0x93d)](_0x90fdac[_0x54fc1b(0x753)],_0x90fdac[_0x2446a8(0xa0b)])?(console[_0x1d7b33(0x6ba)](_0x90fdac[_0x5ddafe(0xe2c)]),_0x90fdac[_0x2446a8(0xbc1)](_0x5a0b8f,_0x90fdac[_0x5ddafe(0xa18)])):PJvQzt[_0x1d7b33(0xb48)](_0x401493,this,function(){const _0x1a5837=_0x2446a8,_0x45e530=_0x2446a8,_0x46702a=_0x54fc1b,_0x4324da=_0x2446a8,_0x197b72=_0x54fc1b,_0x5a0ca6=new _0x37cc24(PzxsmP[_0x1a5837(0xb6c)]),_0x5f20f8=new _0x56e0c8(PzxsmP[_0x1a5837(0xcdd)],'i'),_0x1ef346=PzxsmP[_0x45e530(0x7bc)](_0x7c91ed,PzxsmP[_0x45e530(0x318)]);!_0x5a0ca6[_0x45e530(0xccb)](PzxsmP[_0x1a5837(0x680)](_0x1ef346,PzxsmP[_0x4324da(0x33c)]))||!_0x5f20f8[_0x1a5837(0xccb)](PzxsmP[_0x197b72(0x680)](_0x1ef346,PzxsmP[_0x4324da(0xde8)]))?PzxsmP[_0x4324da(0x70c)](_0x1ef346,'0'):PzxsmP[_0x1a5837(0xab9)](_0x5d00bf);})();}:function(){return!![];}[_0x369255(0xced)+_0x10b687(0x387)+'r'](PJvQzt[_0x369255(0xdbb)](PJvQzt[_0x369255(0xb11)],PJvQzt[_0x369255(0x770)]))[_0x10b687(0x4d1)](PJvQzt[_0x262844(0x28e)]);}});keytextres=[],_0x16bf60[_0x4551f1(0x8ea)](()=>{const _0x455ccf=_0x4551f1,_0x27c5e4=_0x3fbff6,_0x329e36=_0x4551f1,_0x4b1dce=_0x1b357a,_0x26cf85=_0x1b357a,_0x4be308={'TCEGi':function(_0x245037,_0x504db6){const _0x226279=_0x2656;return _0x90fdac[_0x226279(0x3c8)](_0x245037,_0x504db6);},'FphFc':function(_0x3a1613,_0x4bebae){const _0x308d14=_0x2656;return _0x90fdac[_0x308d14(0x307)](_0x3a1613,_0x4bebae);},'aDRAf':function(_0x22ba27,_0x51958d){const _0x4be046=_0x2656;return _0x90fdac[_0x4be046(0x6d0)](_0x22ba27,_0x51958d);},'itiwY':function(_0x291fea,_0x4352bd){const _0x5f08ed=_0x2656;return _0x90fdac[_0x5f08ed(0xd80)](_0x291fea,_0x4352bd);},'sQSYE':function(_0x555245,_0x1c4cda,_0x1ead21){const _0x7f6558=_0x2656;return _0x90fdac[_0x7f6558(0x606)](_0x555245,_0x1c4cda,_0x1ead21);},'RjDZD':function(_0x4eaf49,_0x316c39){const _0x4d4eec=_0x2656;return _0x90fdac[_0x4d4eec(0x993)](_0x4eaf49,_0x316c39);},'TDtVa':function(_0x3266db,_0x4b89c0){const _0x27bc6a=_0x2656;return _0x90fdac[_0x27bc6a(0x4fb)](_0x3266db,_0x4b89c0);},'hBfBy':function(_0x36b22a,_0x5be278){const _0x29ea7a=_0x2656;return _0x90fdac[_0x29ea7a(0x8ca)](_0x36b22a,_0x5be278);},'kErsO':function(_0x39dc17,_0x38c52a){const _0x31b1dd=_0x2656;return _0x90fdac[_0x31b1dd(0xcac)](_0x39dc17,_0x38c52a);},'HFMeA':_0x90fdac[_0x455ccf(0x4be)],'bjdmF':function(_0x4190e2,_0x15e7ca){const _0x3a271b=_0x455ccf;return _0x90fdac[_0x3a271b(0x399)](_0x4190e2,_0x15e7ca);},'TTDDL':function(_0x2e6b57,_0x4cd773){const _0x4cf843=_0x455ccf;return _0x90fdac[_0x4cf843(0xbd6)](_0x2e6b57,_0x4cd773);},'eVQaQ':function(_0x18f81d,_0x42e0ab){const _0x436ba9=_0x455ccf;return _0x90fdac[_0x436ba9(0x83c)](_0x18f81d,_0x42e0ab);},'XsZGA':_0x90fdac[_0x455ccf(0xa10)],'qLlEA':function(_0x3da495,_0x35141f){const _0x5327c9=_0x455ccf;return _0x90fdac[_0x5327c9(0x648)](_0x3da495,_0x35141f);},'PgHih':_0x90fdac[_0x27c5e4(0x780)],'UGPzV':_0x90fdac[_0x27c5e4(0x8c3)],'uYnty':function(_0x52b253,_0x6ecb92){const _0x240293=_0x455ccf;return _0x90fdac[_0x240293(0xcfb)](_0x52b253,_0x6ecb92);},'ffsWq':function(_0x381287,_0x1b2a0c){const _0x148911=_0x4b1dce;return _0x90fdac[_0x148911(0x900)](_0x381287,_0x1b2a0c);},'oKGcF':_0x90fdac[_0x26cf85(0x2bb)],'hWUzP':_0x90fdac[_0x455ccf(0xdc4)],'WMtFK':_0x90fdac[_0x329e36(0xe45)],'UmFdn':_0x90fdac[_0x27c5e4(0xe46)],'uwaGr':_0x90fdac[_0x4b1dce(0x662)],'cGolT':function(_0x47732b,_0x4f943f){const _0x2a30b1=_0x26cf85;return _0x90fdac[_0x2a30b1(0x241)](_0x47732b,_0x4f943f);},'UxFKG':_0x90fdac[_0x4b1dce(0x362)],'kImOV':_0x90fdac[_0x26cf85(0x78a)],'zCHUH':function(_0x4daf79,_0x276e78){const _0x21681b=_0x26cf85;return _0x90fdac[_0x21681b(0x740)](_0x4daf79,_0x276e78);},'twoNc':function(_0x369691,_0x560053){const _0x4ba5d2=_0x455ccf;return _0x90fdac[_0x4ba5d2(0x863)](_0x369691,_0x560053);},'PlIYi':_0x90fdac[_0x329e36(0x63b)],'AKFTH':_0x90fdac[_0x4b1dce(0xdb5)],'zkrjp':_0x90fdac[_0x4b1dce(0x432)],'Jagow':function(_0x1864a8,_0x3cdb79){const _0x449b87=_0x26cf85;return _0x90fdac[_0x449b87(0xd80)](_0x1864a8,_0x3cdb79);},'BcXRs':function(_0x398896,_0x19be1b){const _0x2cad4f=_0x329e36;return _0x90fdac[_0x2cad4f(0xe5f)](_0x398896,_0x19be1b);},'GzmuM':_0x90fdac[_0x4b1dce(0xb03)],'bavQz':_0x90fdac[_0x27c5e4(0x6a7)],'QHvsU':function(_0x18f142,_0x232102){const _0x157068=_0x26cf85;return _0x90fdac[_0x157068(0x848)](_0x18f142,_0x232102);},'vMhzt':function(_0x406328,_0x34fc50){const _0x5b6eab=_0x26cf85;return _0x90fdac[_0x5b6eab(0xd80)](_0x406328,_0x34fc50);},'sXdVJ':function(_0x56073b,_0x4fd8d6){const _0x4791ea=_0x27c5e4;return _0x90fdac[_0x4791ea(0x848)](_0x56073b,_0x4fd8d6);},'llApu':_0x90fdac[_0x4b1dce(0xd60)],'XMnVH':_0x90fdac[_0x27c5e4(0x4fa)],'MVFvU':_0x90fdac[_0x455ccf(0x64e)],'xvcnW':function(_0x5e9f25,_0x57fc89){const _0x49a5ef=_0x329e36;return _0x90fdac[_0x49a5ef(0x7e4)](_0x5e9f25,_0x57fc89);},'pRRIF':_0x90fdac[_0x27c5e4(0x930)],'seIWC':function(_0x45005a,_0x1e5865){const _0x653092=_0x329e36;return _0x90fdac[_0x653092(0xd9a)](_0x45005a,_0x1e5865);},'chjQN':_0x90fdac[_0x4b1dce(0x3de)],'lADwu':_0x90fdac[_0x26cf85(0x847)],'bpkUQ':function(_0x1d37a5,_0x5d196d){const _0x29aa64=_0x26cf85;return _0x90fdac[_0x29aa64(0x972)](_0x1d37a5,_0x5d196d);},'pDjrd':_0x90fdac[_0x4b1dce(0x9e6)],'BYcqa':_0x90fdac[_0x27c5e4(0xc4c)],'gqxjw':function(_0x5ef562,_0x55fd8f){const _0x252d32=_0x455ccf;return _0x90fdac[_0x252d32(0xb5c)](_0x5ef562,_0x55fd8f);},'utJQK':_0x90fdac[_0x27c5e4(0xdae)],'uPzXs':_0x90fdac[_0x27c5e4(0x2b9)],'QhVKO':function(_0x567b84,_0x31e876){const _0x3530e8=_0x4b1dce;return _0x90fdac[_0x3530e8(0x2b4)](_0x567b84,_0x31e876);},'LOQJZ':function(_0xf22fdd,_0x17685a){const _0x20cbba=_0x27c5e4;return _0x90fdac[_0x20cbba(0x9f7)](_0xf22fdd,_0x17685a);},'ydjII':_0x90fdac[_0x329e36(0x73b)],'PoNQb':_0x90fdac[_0x26cf85(0x47d)],'WAOIt':function(_0x4fc3df,_0x5f5b31){const _0x1941b5=_0x4b1dce;return _0x90fdac[_0x1941b5(0x868)](_0x4fc3df,_0x5f5b31);},'VihEM':_0x90fdac[_0x26cf85(0xa60)],'MfkTn':_0x90fdac[_0x455ccf(0x44f)],'STXns':function(_0x5c5023,_0x4389d9){const _0x269ef1=_0x329e36;return _0x90fdac[_0x269ef1(0xa07)](_0x5c5023,_0x4389d9);},'cRkFU':_0x90fdac[_0x27c5e4(0x5e3)],'TPCNy':function(_0xfcfdd4,_0x22d08e){const _0x5ca3f2=_0x4b1dce;return _0x90fdac[_0x5ca3f2(0x6a9)](_0xfcfdd4,_0x22d08e);},'LwRRr':_0x90fdac[_0x4b1dce(0x607)],'XhEhK':_0x90fdac[_0x27c5e4(0xca3)],'TNqmc':function(_0x2cfbbf,_0x3d42a5){const _0x4968ed=_0x455ccf;return _0x90fdac[_0x4968ed(0xe06)](_0x2cfbbf,_0x3d42a5);},'iWYdo':function(_0x274dd1,_0x1301b5){const _0xc9c451=_0x329e36;return _0x90fdac[_0xc9c451(0x9f7)](_0x274dd1,_0x1301b5);},'xNagY':_0x90fdac[_0x27c5e4(0xd0c)],'mskcE':function(_0x48db20,_0x3c7d98){const _0x164060=_0x4b1dce;return _0x90fdac[_0x164060(0x439)](_0x48db20,_0x3c7d98);},'JwNMC':_0x90fdac[_0x27c5e4(0xa4e)],'URhnw':_0x90fdac[_0x27c5e4(0x282)],'OBhRz':function(_0x834fa1,_0xab394e){const _0x2ecc9f=_0x26cf85;return _0x90fdac[_0x2ecc9f(0x8e8)](_0x834fa1,_0xab394e);},'qXSzz':_0x90fdac[_0x4b1dce(0x48b)],'ENXoO':function(_0x2d12c4,_0x575182){const _0x4cacfb=_0x27c5e4;return _0x90fdac[_0x4cacfb(0x2b4)](_0x2d12c4,_0x575182);},'nzreK':function(_0x59db24,_0x4d1903){const _0x1b53c1=_0x27c5e4;return _0x90fdac[_0x1b53c1(0xe64)](_0x59db24,_0x4d1903);},'oCbfw':_0x90fdac[_0x26cf85(0x8e1)],'aJzTF':_0x90fdac[_0x26cf85(0xbe1)],'WmNKo':_0x90fdac[_0x329e36(0xa18)],'MKmhL':_0x90fdac[_0x329e36(0xcd1)],'dCjAi':function(_0x363759,_0x4f8be8){const _0x143c8e=_0x27c5e4;return _0x90fdac[_0x143c8e(0xde5)](_0x363759,_0x4f8be8);},'OMZec':function(_0x50f068,_0x5e0365){const _0x2a49d1=_0x4b1dce;return _0x90fdac[_0x2a49d1(0x37c)](_0x50f068,_0x5e0365);},'DgMzr':function(_0x2dd61b,_0x8babda){const _0xe378ef=_0x26cf85;return _0x90fdac[_0xe378ef(0x8fb)](_0x2dd61b,_0x8babda);},'SoCHS':function(_0x399fb7,_0x32930b){const _0x437203=_0x27c5e4;return _0x90fdac[_0x437203(0x97d)](_0x399fb7,_0x32930b);},'CScib':function(_0x1d9588,_0x31ed1f){const _0x2afc76=_0x26cf85;return _0x90fdac[_0x2afc76(0x29c)](_0x1d9588,_0x31ed1f);},'KYdUO':function(_0x37f482,_0x5eea4e){const _0x3c8537=_0x27c5e4;return _0x90fdac[_0x3c8537(0xae3)](_0x37f482,_0x5eea4e);},'UslbF':function(_0x1dfe1c,_0x112985){const _0x541bf2=_0x26cf85;return _0x90fdac[_0x541bf2(0xdb0)](_0x1dfe1c,_0x112985);},'vgjhc':function(_0x4dbb11,_0x479799){const _0x274baf=_0x4b1dce;return _0x90fdac[_0x274baf(0x21d)](_0x4dbb11,_0x479799);},'tuKEn':function(_0x58ddbe,_0x50dfdd){const _0x1feb5c=_0x27c5e4;return _0x90fdac[_0x1feb5c(0x954)](_0x58ddbe,_0x50dfdd);}};if(_0x90fdac[_0x4b1dce(0x9a2)](_0x90fdac[_0x27c5e4(0x6c4)],_0x90fdac[_0x27c5e4(0x6c4)])){const _0x555deb=_0x505ddc[_0x455ccf(0x6d7)+_0x329e36(0x3dd)+_0x26cf85(0x3ed)]||_0x505ddc[_0x4b1dce(0x6d7)+_0x27c5e4(0x9c0)+_0x329e36(0x413)][_0x455ccf(0x27d)+_0x455ccf(0x949)],_0x458e99=_0x555deb[_0x329e36(0xae4)+_0x329e36(0x2b8)+_0x4b1dce(0xe3c)+_0x4b1dce(0x1cb)]('a');for(let _0x3963eb=0x5b5*-0x2+-0x1*0x2d7+0xe41*0x1;_0x90fdac[_0x329e36(0x3c8)](_0x3963eb,_0x458e99[_0x455ccf(0x8a3)+'h']);_0x3963eb++){if(_0x90fdac[_0x27c5e4(0xc2d)](_0x90fdac[_0x455ccf(0x822)],_0x90fdac[_0x329e36(0x822)])){if(!_0x458e99[_0x3963eb][_0x4b1dce(0x250)])continue;_0x458e99[_0x3963eb][_0x4b1dce(0x914)+_0x26cf85(0x97c)+_0x455ccf(0x365)+'r'](_0x90fdac[_0x26cf85(0xa1b)],function(_0x54084b){const _0x419478=_0x27c5e4,_0x24b8e1=_0x27c5e4,_0x4d3d8b=_0x27c5e4,_0x6869ed=_0x26cf85,_0x3c9d8f=_0x329e36;if(_0x90fdac[_0x419478(0xc68)](_0x90fdac[_0x24b8e1(0x2ee)],_0x90fdac[_0x4d3d8b(0x903)])){if(_0x4be308[_0x4d3d8b(0x629)](_0x4be308[_0x24b8e1(0x8a8)](_0x4be308[_0x6869ed(0x8a8)](_0x35dfca,_0x1b5dea[_0x2179ff]),'\x0a')[_0x24b8e1(0x8a3)+'h'],-0x12f5+0x14e+-0x1783*-0x1))_0x4fb35d=_0x4be308[_0x419478(0x515)](_0x4be308[_0x3c9d8f(0x8a8)](_0xf63e3d,_0x3f2415[_0x22fc94]),'\x0a');_0x30c30c=_0x4be308[_0x3c9d8f(0x515)](_0x28e678,0x1c5b+-0x452+0x602*-0x4);}else{if(_0x90fdac[_0x419478(0x6a9)](window[_0x4d3d8b(0x6fd)+_0x4d3d8b(0x422)],0x984*-0x1+-0x2*-0xfc1+-0x15fd)){if(_0x90fdac[_0x6869ed(0xa07)](_0x90fdac[_0x24b8e1(0x8f4)],_0x90fdac[_0x6869ed(0x771)]))_0x54084b[_0x24b8e1(0x49d)+_0x419478(0x85f)+_0x3c9d8f(0xb28)](),_0x90fdac[_0x419478(0xdf0)](alert,_0x90fdac[_0x24b8e1(0x2bb)]);else return-(-0x35*0x8b+-0xfe1+-0x3*-0xee3);}else _0x90fdac[_0x24b8e1(0x6a9)](_0x90fdac[_0x419478(0xcd6)],_0x90fdac[_0x419478(0xcd6)])?_0x90fdac[_0x6869ed(0x606)](modal_open,_0x458e99[_0x3963eb][_0x4d3d8b(0x250)],_0x90fdac[_0x419478(0xa12)]):_0x42535d[_0x17ee93]=_0x37ff83[_0x24b8e1(0x46d)+_0x3c9d8f(0xe4a)](_0x17063d);}});}else return _0x4be308[_0x4b1dce(0x73e)](_0x4be308[_0x329e36(0x45f)](_0x5e8812,_0x4be308[_0x329e36(0xe3e)](_0x4be308[_0x4b1dce(0x247)](_0x187bb4,'\x20'),_0x3ec712),_0x8d5034),_0x4be308[_0x4b1dce(0x45f)](_0x16aee1,_0x4be308[_0x27c5e4(0x6db)](_0x4be308[_0x455ccf(0x6db)](_0x33586a,'\x20'),_0xf398c2),_0x1d5530))?-(-0x181b+0x1cc+-0x2a*-0x88):0x7*-0x4fd+-0x2347+0x4633;}document[_0x455ccf(0x9f4)+_0x4b1dce(0xc14)+_0x329e36(0xa51)](_0x90fdac[_0x329e36(0xcbe)])[_0x455ccf(0x547)+_0x455ccf(0xddb)+'d'](document[_0x26cf85(0x9f4)+_0x27c5e4(0xc14)+_0x26cf85(0xa51)](_0x90fdac[_0x27c5e4(0x9b5)])),document[_0x455ccf(0x9f4)+_0x455ccf(0xc14)+_0x27c5e4(0xa51)](_0x90fdac[_0x455ccf(0xcbe)])[_0x4b1dce(0x547)+_0x27c5e4(0xddb)+'d'](document[_0x455ccf(0x9f4)+_0x27c5e4(0xc14)+_0x329e36(0xa51)](_0x90fdac[_0x27c5e4(0x787)]));var _0x505ddc=document[_0x4b1dce(0x9f4)+_0x455ccf(0xc14)+_0x27c5e4(0xa51)](_0x90fdac[_0x4b1dce(0xc5b)]);new Promise((_0x2ec873,_0x3ebbca)=>{const _0x56af26=_0x27c5e4,_0x282bff=_0x27c5e4,_0x7660c8=_0x27c5e4,_0x1a0550=_0x4b1dce,_0x2db586=_0x455ccf,_0x20a113={'IlLft':_0x90fdac[_0x56af26(0x9b5)],'wcfRv':function(_0x47c15c,_0x30be04){const _0x1550d6=_0x56af26;return _0x90fdac[_0x1550d6(0x62a)](_0x47c15c,_0x30be04);},'vCwsf':function(_0x5143cd,_0x46f2f3){const _0x5b0f71=_0x56af26;return _0x90fdac[_0x5b0f71(0xd8c)](_0x5143cd,_0x46f2f3);},'jlzlP':function(_0x8113fd,_0x5ee52e){const _0x3550ca=_0x56af26;return _0x90fdac[_0x3550ca(0x9fd)](_0x8113fd,_0x5ee52e);},'sOLpZ':function(_0x3255c0,_0x415bd1){const _0x2bb594=_0x56af26;return _0x90fdac[_0x2bb594(0x241)](_0x3255c0,_0x415bd1);},'SaMQE':_0x90fdac[_0x282bff(0x9e2)],'Xaold':_0x90fdac[_0x56af26(0x565)],'JBLgL':_0x90fdac[_0x7660c8(0x653)],'CREcd':_0x90fdac[_0x2db586(0x57c)],'bszXL':_0x90fdac[_0x56af26(0xcee)],'aOFmC':function(_0x5dda98,_0x5d7a62){const _0x5318cf=_0x282bff;return _0x90fdac[_0x5318cf(0x9e8)](_0x5dda98,_0x5d7a62);},'LfjgP':function(_0x47712c,_0x329fa2){const _0x211948=_0x56af26;return _0x90fdac[_0x211948(0x9e8)](_0x47712c,_0x329fa2);},'lzJOB':function(_0x3768a2,_0x1394fa){const _0xc7427d=_0x2db586;return _0x90fdac[_0xc7427d(0xdfe)](_0x3768a2,_0x1394fa);},'wkMnl':_0x90fdac[_0x2db586(0x5f7)],'ldCJp':_0x90fdac[_0x2db586(0x573)],'VyTfA':_0x90fdac[_0x1a0550(0x440)],'BMRTc':function(_0x1652f3,_0x59064a){const _0x1a7fa1=_0x282bff;return _0x90fdac[_0x1a7fa1(0xe65)](_0x1652f3,_0x59064a);},'pZvaP':_0x90fdac[_0x56af26(0x40d)],'jcmHq':_0x90fdac[_0x2db586(0xbda)],'aWYXD':function(_0xe04f4b,_0x5f59da){const _0x4023f7=_0x7660c8;return _0x90fdac[_0x4023f7(0x5d7)](_0xe04f4b,_0x5f59da);},'MhUQL':_0x90fdac[_0x2db586(0x4be)],'QAHWi':function(_0x1f32c6){const _0x32a2bc=_0x2db586;return _0x90fdac[_0x32a2bc(0xa9a)](_0x1f32c6);},'vVwsx':_0x90fdac[_0x56af26(0x8db)],'JbZQx':_0x90fdac[_0x282bff(0xacd)],'sSTND':_0x90fdac[_0x282bff(0x20b)],'CTOfa':_0x90fdac[_0x1a0550(0xa18)],'zANYX':function(_0x637cae,_0x20e510){const _0x35c205=_0x1a0550;return _0x90fdac[_0x35c205(0x93d)](_0x637cae,_0x20e510);},'GCYtz':_0x90fdac[_0x1a0550(0x9c5)],'eAVef':_0x90fdac[_0x282bff(0x7ae)]};if(_0x90fdac[_0x7660c8(0x93d)](_0x90fdac[_0x282bff(0x5b1)],_0x90fdac[_0x56af26(0xa9e)])){if(_0x90fdac[_0x7660c8(0x685)](_0x172613,_0x90fdac[_0x7660c8(0x8fc)])){if(_0x90fdac[_0x282bff(0x241)](_0x90fdac[_0x1a0550(0xcea)],_0x90fdac[_0x282bff(0x5e5)])){var _0x34ba9e=_0x505ddc[_0x282bff(0x6d7)+_0x7660c8(0x9c0)+_0x2db586(0x413)][_0x2db586(0x979)+_0x1a0550(0xa36)+_0x7660c8(0xc81)+_0x7660c8(0x5b4)][_0x1a0550(0xc9f)+_0x2db586(0xbbd)+'t'],_0x20f47c=_0x34ba9e[_0x282bff(0xd9d)+_0x1a0550(0x242)],_0x47e26b=[];sentences=[];for(var _0x2c1ebe=0x40*-0x62+0x18*-0x79+-0x45*-0x85;_0x90fdac[_0x56af26(0x9fd)](_0x2c1ebe,_0x20f47c);_0x2c1ebe++){_0x90fdac[_0x2db586(0xc92)](_0x90fdac[_0x282bff(0x26f)],_0x90fdac[_0x7660c8(0x26f)])?_0x510ded+=_0x1021ed[-0xb0f+0x44b+0x6c4][_0x7660c8(0x9d8)][_0x56af26(0x6d7)+'nt']:_0x47e26b[_0x56af26(0x1e3)](_0x34ba9e[_0x282bff(0x444)+'ge'](_0x2c1ebe));}Promise[_0x2db586(0xcb1)](_0x47e26b)[_0x2db586(0x8ea)](function(_0x3ace85){const _0xd0ff78=_0x282bff,_0x47bfa1=_0x1a0550,_0xc2c828=_0x2db586,_0x2d232f=_0x56af26,_0x29e5a0=_0x282bff,_0x188405={'bDPRP':_0x20a113[_0xd0ff78(0xc89)],'RlpQp':function(_0x27200c,_0x5b6ba7){const _0x4a51d7=_0xd0ff78;return _0x20a113[_0x4a51d7(0x686)](_0x27200c,_0x5b6ba7);},'jPFVf':function(_0x1de873,_0x508709){const _0x4ed498=_0xd0ff78;return _0x20a113[_0x4ed498(0x6e3)](_0x1de873,_0x508709);},'dswmS':function(_0x350944,_0x2a7158){const _0x3c509b=_0xd0ff78;return _0x20a113[_0x3c509b(0x8c1)](_0x350944,_0x2a7158);}};if(_0x20a113[_0xd0ff78(0x7fe)](_0x20a113[_0xd0ff78(0x2dd)],_0x20a113[_0x2d232f(0x21b)])){var _0x4d42c5=[],_0x52181f=[];for(var _0xb9dc6d of _0x3ace85){if(_0x20a113[_0x29e5a0(0x7fe)](_0x20a113[_0xd0ff78(0x245)],_0x20a113[_0xd0ff78(0x245)]))_0x55906f[_0xc2c828(0x9f4)+_0x47bfa1(0xc14)+_0x2d232f(0xa51)](_0x188405[_0x2d232f(0x445)])[_0xc2c828(0x4d8)+_0x2d232f(0xb7f)]=_0x28be97[_0xd0ff78(0x9f4)+_0x47bfa1(0xc14)+_0x29e5a0(0xa51)](_0x188405[_0xc2c828(0x445)])[_0xc2c828(0x4d8)+_0xd0ff78(0x50a)+'ht'];else{const _0x442094={};_0x442094[_0xd0ff78(0xc61)]=0x1,_0x34ba9e[_0xc2c828(0x28f)]=_0xb9dc6d[_0x47bfa1(0x699)+_0xd0ff78(0xd50)+'t'](_0x442094),_0x4d42c5[_0x47bfa1(0x1e3)](_0xb9dc6d[_0xc2c828(0xc54)+_0x2d232f(0x5eb)+_0x2d232f(0x92e)]());const _0x50b4b6={};_0x50b4b6[_0xd0ff78(0xc61)]=0x1,_0x52181f[_0x29e5a0(0x1e3)]([_0xb9dc6d[_0x2d232f(0x699)+_0xc2c828(0xd50)+'t'](_0x50b4b6),_0x20a113[_0x47bfa1(0x686)](_0xb9dc6d[_0x47bfa1(0x243)+_0x29e5a0(0x5d6)],-0x109a+0xd7d+0x31e)]);}}return Promise[_0x29e5a0(0xcb1)]([Promise[_0x47bfa1(0xcb1)](_0x4d42c5),_0x52181f]);}else{if(_0x5c4c79[_0x2d232f(0xa79)](_0x23cc22))return _0x31a86f;const _0x5cef3e=_0x1c1614[_0x29e5a0(0xa2f)](/[;,;、,]/),_0x4a301c=_0x5cef3e[_0xc2c828(0x74a)](_0x1f4295=>'['+_0x1f4295+']')[_0x29e5a0(0xcc8)]('\x20'),_0x5e2d02=_0x5cef3e[_0x47bfa1(0x74a)](_0x96b7ca=>'['+_0x96b7ca+']')[_0x47bfa1(0xcc8)]('\x0a');_0x5cef3e[_0x47bfa1(0x938)+'ch'](_0x4c0b49=>_0x338402[_0x29e5a0(0xc0a)](_0x4c0b49)),_0x29e3d4='\x20';for(var _0x5d72e0=_0x188405[_0x47bfa1(0x2ad)](_0x188405[_0x29e5a0(0x558)](_0x35235c[_0x47bfa1(0x8ad)],_0x5cef3e[_0xc2c828(0x8a3)+'h']),0xc15*-0x3+0x299+0x5*0x6bb);_0x188405[_0x29e5a0(0x7fc)](_0x5d72e0,_0x861953[_0x2d232f(0x8ad)]);++_0x5d72e0)_0x33473a+='[^'+_0x5d72e0+']\x20';return _0x16d1e4;}})[_0x2db586(0x8ea)](function(_0x4b5699){const _0x5b6e18=_0x56af26,_0x204978=_0x56af26,_0x1c211a=_0x2db586,_0x40b892=_0x56af26,_0x2c10a8=_0x56af26,_0x1a8ac9={'oshRk':function(_0x5076c1,_0x56f87c){const _0x14d394=_0x2656;return _0x4be308[_0x14d394(0x374)](_0x5076c1,_0x56f87c);},'zHzAd':_0x4be308[_0x5b6e18(0xe76)],'SWyFn':function(_0xc9315b,_0x44c917){const _0x3de5c7=_0x5b6e18;return _0x4be308[_0x3de5c7(0x9b6)](_0xc9315b,_0x44c917);},'ZAZvr':function(_0x5be59c,_0xcf3f0e){const _0x7205b6=_0x5b6e18;return _0x4be308[_0x7205b6(0x701)](_0x5be59c,_0xcf3f0e);},'WSaxB':function(_0x44455e,_0x5e8f52){const _0x32b262=_0x5b6e18;return _0x4be308[_0x32b262(0xc51)](_0x44455e,_0x5e8f52);},'MsWaP':function(_0x2e71ec,_0x10a701){const _0x59b1ba=_0x5b6e18;return _0x4be308[_0x59b1ba(0x9b6)](_0x2e71ec,_0x10a701);},'pxNmv':function(_0x24ae6b,_0x2ddbcc){const _0x47d4db=_0x5b6e18;return _0x4be308[_0x47d4db(0x374)](_0x24ae6b,_0x2ddbcc);},'YwjML':_0x4be308[_0x5b6e18(0x391)],'bldLp':function(_0x50528,_0x1ebeac){const _0x512d96=_0x204978;return _0x4be308[_0x512d96(0xa2a)](_0x50528,_0x1ebeac);},'CXmIi':_0x4be308[_0x5b6e18(0x796)],'UAQmB':function(_0x509e6b,_0x1924a4){const _0x5401ed=_0x1c211a;return _0x4be308[_0x5401ed(0xa2a)](_0x509e6b,_0x1924a4);},'OxWeb':_0x4be308[_0x5b6e18(0x542)],'SvWQL':function(_0x4f33c0,_0x293746){const _0x35ab53=_0x5b6e18;return _0x4be308[_0x35ab53(0x8f5)](_0x4f33c0,_0x293746);},'iMcfL':function(_0x203875,_0x1d76a3){const _0x3f5c84=_0x1c211a;return _0x4be308[_0x3f5c84(0x875)](_0x203875,_0x1d76a3);},'zixoR':_0x4be308[_0x40b892(0xe3a)],'FGkjH':_0x4be308[_0x40b892(0x3b6)],'zQdUn':_0x4be308[_0x1c211a(0xb9c)],'ocSFA':_0x4be308[_0x1c211a(0x798)],'HmxXj':_0x4be308[_0x2c10a8(0x8b6)],'fSeUP':function(_0x143482,_0x5e9b95){const _0x4351c0=_0x2c10a8;return _0x4be308[_0x4351c0(0xb75)](_0x143482,_0x5e9b95);},'IvysQ':_0x4be308[_0x40b892(0x2d9)],'TfHPm':_0x4be308[_0x5b6e18(0x1c3)],'hyTTe':function(_0x495a68,_0x480054){const _0x1de36c=_0x2c10a8;return _0x4be308[_0x1de36c(0xd7d)](_0x495a68,_0x480054);},'Bwpru':function(_0x52f029,_0x24d028){const _0x5090b4=_0x1c211a;return _0x4be308[_0x5090b4(0x7de)](_0x52f029,_0x24d028);},'cCVFL':_0x4be308[_0x2c10a8(0x89c)],'QGshH':function(_0x22dc8c,_0x38892c){const _0x40b128=_0x40b892;return _0x4be308[_0x40b128(0xc51)](_0x22dc8c,_0x38892c);},'MNKmP':_0x4be308[_0x2c10a8(0x7f7)],'GYsef':_0x4be308[_0x2c10a8(0x4e6)],'mljry':function(_0x42aee7,_0x19bf1a){const _0x429558=_0x204978;return _0x4be308[_0x429558(0x9a9)](_0x42aee7,_0x19bf1a);},'idPay':function(_0x1c0029,_0x5328c){const _0x563167=_0x40b892;return _0x4be308[_0x563167(0x1ce)](_0x1c0029,_0x5328c);},'ETWly':_0x4be308[_0x1c211a(0x406)],'DYODh':_0x4be308[_0x5b6e18(0xd7e)],'Pspca':function(_0x3e9f4c,_0x433fef){const _0x21cf10=_0x40b892;return _0x4be308[_0x21cf10(0x7f6)](_0x3e9f4c,_0x433fef);},'BcOQD':function(_0x2bf01a,_0x19719e){const _0x2c41c9=_0x204978;return _0x4be308[_0x2c41c9(0x950)](_0x2bf01a,_0x19719e);},'ZXmkO':function(_0x2ce73a,_0x488d31){const _0x4c729c=_0x40b892;return _0x4be308[_0x4c729c(0x8d8)](_0x2ce73a,_0x488d31);},'FIXpC':_0x4be308[_0x204978(0xb45)],'JpYnT':_0x4be308[_0x1c211a(0x426)],'iyKmO':_0x4be308[_0x2c10a8(0x8ba)],'wtSAl':function(_0x528a29,_0x1f68f7){const _0x998558=_0x204978;return _0x4be308[_0x998558(0x4b9)](_0x528a29,_0x1f68f7);},'UwBGR':function(_0x508c96,_0x528b6e){const _0x3cbd4e=_0x40b892;return _0x4be308[_0x3cbd4e(0x7de)](_0x508c96,_0x528b6e);},'cKqqG':_0x4be308[_0x1c211a(0xd00)]};if(_0x4be308[_0x5b6e18(0x64f)](_0x4be308[_0x5b6e18(0xaa0)],_0x4be308[_0x204978(0x45a)]))_0xf94308[_0x204978(0x292)](_0x20a113[_0x5b6e18(0xb98)],_0x443d77);else{for(var _0x1407ee=0x1f24*0x1+0x1ac0+-0x39e4;_0x4be308[_0x2c10a8(0xd7d)](_0x1407ee,_0x4b5699[0xc72+0x5*0x45d+-0x31*0xb3][_0x2c10a8(0x8a3)+'h']);++_0x1407ee){if(_0x4be308[_0x1c211a(0xc35)](_0x4be308[_0x5b6e18(0x74b)],_0x4be308[_0x5b6e18(0xcc0)]))_0x1947b5=_0x975544;else{var _0x1f5902=_0x4b5699[0x89*-0x1c+-0xdfb+0x1cf7][_0x1407ee];_0x34ba9e[_0x204978(0x411)+'ge']=_0x4b5699[-0xb9e+-0x1bd8+-0x2777*-0x1][_0x1407ee][0x1*0x3d1+0xf2d+-0x1*0x12fd],_0x34ba9e[_0x2c10a8(0x28f)]=_0x4b5699[0x199a+0x83*0x2f+-0x1f*0x19a][_0x1407ee][-0x1bbe+0x148+0x1a76];var _0x4e9f6f=_0x1f5902[_0x2c10a8(0x54d)],_0x4cf018='',_0x1ae89f='',_0x2ec056='',_0x48c2f3=_0x4e9f6f[-0x11ca+0x2540+-0x1376][_0x204978(0xd1c)+_0x5b6e18(0xc08)][-0x1148+-0x33*-0x8a+-0x1*0xa31],_0x313dd3=_0x4e9f6f[0xae9+-0x878+-0x271*0x1][_0x5b6e18(0xd1c)+_0x5b6e18(0xc08)][0x254c+0x2011+0x4559*-0x1];for(var _0x1abf44 of _0x4e9f6f){if(_0x4be308[_0x40b892(0x7f3)](_0x4be308[_0x204978(0xd45)],_0x4be308[_0x5b6e18(0x690)])){_0x4be308[_0x2c10a8(0xaf6)](_0x4be308[_0x5b6e18(0xa3a)](_0x34ba9e[_0x204978(0x28f)][_0x5b6e18(0x8a7)],0x1f0f*-0x1+0x517*0x2+0x14e4),_0x4be308[_0x2c10a8(0x9b6)](_0x313dd3,_0x1abf44[_0x2c10a8(0xd1c)+_0x1c211a(0xc08)][0x1a75+0x1391*-0x1+-0x6e0]))&&(_0x4be308[_0x40b892(0x64f)](_0x4be308[_0x2c10a8(0x99d)],_0x4be308[_0x204978(0x353)])?(_0x19def1=_0x515f8f[_0x2c10a8(0xcc6)](_0x1a8ac9[_0x40b892(0x409)](_0x23c974,_0x25001b))[_0x1a8ac9[_0x204978(0x878)]],_0x5a0e5a=''):(sentences[_0x40b892(0x1e3)]([_0x34ba9e[_0x40b892(0x411)+'ge'],_0x4cf018,_0x1ae89f,_0x2ec056]),_0x4cf018='',_0x1ae89f=''));_0x313dd3=_0x1abf44[_0x2c10a8(0xd1c)+_0x2c10a8(0xc08)][0x7*0x3eb+-0x26b*-0x2+-0x203f],_0x4cf018+=_0x1abf44[_0x40b892(0xc29)];if(/[\.\?\!。,?!]$/[_0x204978(0xccb)](_0x1abf44[_0x40b892(0xc29)])){if(_0x4be308[_0x1c211a(0x97b)](_0x4be308[_0x1c211a(0x8fd)],_0x4be308[_0x204978(0x58d)])){const _0x2a9c05={'oAcLa':function(_0x3f7120,_0x3cf345){const _0x210192=_0x5b6e18;return _0x1a8ac9[_0x210192(0x409)](_0x3f7120,_0x3cf345);},'DmVfr':function(_0x40d7a9,_0x2bd7b5){const _0x1ef915=_0x2c10a8;return _0x1a8ac9[_0x1ef915(0x609)](_0x40d7a9,_0x2bd7b5);},'IyeCb':function(_0x16f4fd,_0x58946e){const _0x829dd=_0x5b6e18;return _0x1a8ac9[_0x829dd(0x817)](_0x16f4fd,_0x58946e);}},_0x40aaa2=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0x2c6cb2=new _0x206aa0(),_0x169cbc=(_0x4b4489,_0x1fe197)=>{const _0x22f30d=_0x40b892,_0x49473d=_0x5b6e18,_0x2a4226=_0x2c10a8,_0x412db7=_0x40b892,_0x21ab95=_0x1c211a;if(_0x2c6cb2[_0x22f30d(0xa79)](_0x1fe197))return _0x4b4489;const _0x53977b=_0x1fe197[_0x22f30d(0xa2f)](/[;,;、,]/),_0x529c3=_0x53977b[_0x49473d(0x74a)](_0x1bea3c=>'['+_0x1bea3c+']')[_0x49473d(0xcc8)]('\x20'),_0x1f0dc8=_0x53977b[_0x49473d(0x74a)](_0x210ced=>'['+_0x210ced+']')[_0x21ab95(0xcc8)]('\x0a');_0x53977b[_0x412db7(0x938)+'ch'](_0x5f13d8=>_0x2c6cb2[_0x21ab95(0xc0a)](_0x5f13d8)),_0x48e258='\x20';for(var _0x280ee9=_0x2a9c05[_0x49473d(0x46a)](_0x2a9c05[_0x2a4226(0x64a)](_0x2c6cb2[_0x2a4226(0x8ad)],_0x53977b[_0x2a4226(0x8a3)+'h']),0x1de8+-0x858+0x158f*-0x1);_0x2a9c05[_0x22f30d(0x3e4)](_0x280ee9,_0x2c6cb2[_0x22f30d(0x8ad)]);++_0x280ee9)_0x11e573+='[^'+_0x280ee9+']\x20';return _0x4c73cf;};let _0x692b1a=0xd*0x89+-0x115*-0x23+-0x2cd3,_0x32fc14=_0x58bdae[_0x1c211a(0x860)+'ce'](_0x40aaa2,_0x169cbc);while(_0x1a8ac9[_0x1c211a(0xbb7)](_0x2c6cb2[_0x40b892(0x8ad)],0xda2+-0x998+0xb*-0x5e)){const _0x50f9b1='['+_0x692b1a++ +_0x5b6e18(0x52c)+_0x2c6cb2[_0x40b892(0xad5)+'s']()[_0x204978(0xa8d)]()[_0x5b6e18(0xad5)],_0x1342af='[^'+_0x1a8ac9[_0x5b6e18(0x77c)](_0x692b1a,-0x1*-0x1069+-0x3*0x19+-0xf*0x113)+_0x5b6e18(0x52c)+_0x2c6cb2[_0x5b6e18(0xad5)+'s']()[_0x204978(0xa8d)]()[_0x5b6e18(0xad5)];_0x32fc14=_0x32fc14+'\x0a\x0a'+_0x1342af,_0x2c6cb2[_0x1c211a(0xb07)+'e'](_0x2c6cb2[_0x204978(0xad5)+'s']()[_0x5b6e18(0xa8d)]()[_0x204978(0xad5)]);}return _0x32fc14;}else sentences[_0x2c10a8(0x1e3)]([_0x34ba9e[_0x204978(0x411)+'ge'],_0x4cf018,_0x1ae89f,_0x2ec056]),_0x4cf018='',_0x1ae89f='';}if(_0x34ba9e[_0x40b892(0x28f)]&&_0x34ba9e[_0x5b6e18(0x28f)][_0x5b6e18(0x8a7)]&&_0x34ba9e[_0x5b6e18(0x28f)][_0x1c211a(0x237)+'t']){if(_0x4be308[_0x5b6e18(0x705)](_0x4be308[_0x1c211a(0x794)],_0x4be308[_0x40b892(0x794)]))_0x3a9baf[_0x204978(0xae4)+_0x40b892(0x2b8)+_0x5b6e18(0x9e0)](_0x20a113[_0x204978(0x54b)])[_0x1c211a(0x6e5)+_0x1c211a(0x3cd)]=_0x20a113[_0x2c10a8(0xa73)](_0x20a113[_0x5b6e18(0x3a7)](_0x20a113[_0x1c211a(0xa73)](_0x20a113[_0x204978(0x686)](_0x20a113[_0x40b892(0xa73)](_0x20a113[_0x204978(0xd88)](_0x23b833,_0x20a113[_0x204978(0x7a8)]),_0x20a113[_0x1c211a(0x540)]),_0x20a113[_0x2c10a8(0x8bb)]),_0x20a113[_0x204978(0xa03)](_0xbb4717,_0xd191ad)),_0x20a113[_0x1c211a(0x2a5)]),_0x20a113[_0x2c10a8(0x6d5)]);else{if(_0x4be308[_0x204978(0x629)](_0x1abf44[_0x1c211a(0xd1c)+_0x1c211a(0xc08)][0x6*-0x1fc+0x6*-0x8d+0x79d*0x2],_0x4be308[_0x2c10a8(0xa3a)](_0x34ba9e[_0x2c10a8(0x28f)][_0x2c10a8(0x8a7)],-0x1676+-0x1cfb+0x3373)))_0x4be308[_0x1c211a(0xb1b)](_0x4be308[_0x2c10a8(0x539)],_0x4be308[_0x1c211a(0x539)])?_0x1ae89f='':_0x25be6f+=_0x382fe4[_0x2c10a8(0x6d7)+'nt'][_0x1c211a(0x8a3)+'h'];else{if(_0x4be308[_0x204978(0xb75)](_0x4be308[_0x1c211a(0x693)],_0x4be308[_0x1c211a(0x693)]))try{_0xfb571a=_0x1f971a[_0x204978(0xcc6)](_0x20a113[_0x40b892(0x744)](_0x5d2172,_0x15a074))[_0x20a113[_0x1c211a(0xe3b)]],_0x602e37='';}catch(_0x5e6abb){_0x2e9e1d=_0x4763c0[_0x40b892(0xcc6)](_0x7c58e)[_0x20a113[_0x40b892(0xe3b)]],_0x12780d='';}else _0x1ae89f='';}if(_0x4be308[_0x1c211a(0x613)](_0x1abf44[_0x5b6e18(0xd1c)+_0x40b892(0xc08)][-0x2597+-0xf8b*0x2+0x44b2],_0x4be308[_0x1c211a(0xadd)](_0x34ba9e[_0x1c211a(0x28f)][_0x2c10a8(0x237)+'t'],0x4b*0x14+0x761*0x1+-0xd3a)))_0x4be308[_0x40b892(0x705)](_0x4be308[_0x40b892(0x55e)],_0x4be308[_0x5b6e18(0x55e)])?(_0x522063=_0x339b3f[_0x1c211a(0x4ba)+_0x204978(0x342)+'t'],_0x5e3686[_0x5b6e18(0xd52)+'e'](),_0x20a113[_0x5b6e18(0x39e)](_0x465169)):_0x1ae89f+='';else{if(_0x4be308[_0x2c10a8(0xc51)](_0x1abf44[_0x204978(0xd1c)+_0x204978(0xc08)][0x1*0x22bd+-0x29*0xb+-0x20f5],_0x4be308[_0x5b6e18(0xa3a)](_0x4be308[_0x204978(0xd36)](_0x34ba9e[_0x204978(0x28f)][_0x40b892(0x237)+'t'],0x129e+0x2fa+-0x1596),0x20e*0x11+0x1c34+-0x3f1f))){if(_0x4be308[_0x5b6e18(0x7f3)](_0x4be308[_0x40b892(0xb23)],_0x4be308[_0x1c211a(0xb23)])){const _0x5a7c39=_0x20a113[_0x5b6e18(0x99b)][_0x2c10a8(0xa2f)]('|');let _0x4e7e99=-0x9*0x29b+-0x89*-0x1b+-0x1*-0x900;while(!![]){switch(_0x5a7c39[_0x4e7e99++]){case'0':_0x52bc71[_0x204978(0xae4)+_0x40b892(0x2b8)+_0x204978(0x9e0)](_0x20a113[_0x2c10a8(0x375)])[_0x204978(0xcab)][_0x1c211a(0xc1a)+'ay']='';continue;case'1':_0x39c73f[_0x5b6e18(0xae4)+_0x1c211a(0x2b8)+_0x1c211a(0x9e0)](_0x20a113[_0x204978(0x806)])[_0x1c211a(0xcab)][_0x1c211a(0xc1a)+'ay']='';continue;case'2':_0x23b604=-0x1032*0x1+0x3*0xa65+-0xefd;continue;case'3':_0x20a113[_0x5b6e18(0x39e)](_0x44e70d);continue;case'4':return;}break;}}else _0x1ae89f+='';}else{if(_0x4be308[_0x5b6e18(0x7f3)](_0x4be308[_0x2c10a8(0x563)],_0x4be308[_0x2c10a8(0x563)]))return _0x1fd8b8[_0x204978(0x1f2)](new _0xe2043d(_0x5af02f));else _0x1ae89f+='';}}}}_0x2ec056=Math[_0x1c211a(0x207)](_0x4be308[_0x5b6e18(0x564)](_0x1abf44[_0x204978(0xd1c)+_0x5b6e18(0xc08)][-0x1*-0x297+0x1fec+-0x227e],_0x1abf44[_0x5b6e18(0x237)+'t']));}else try{_0x48ed76=_0x1f83eb[_0x40b892(0xcc6)](_0x1a8ac9[_0x1c211a(0x5f4)](_0x5886b9,_0x10cf63))[_0x1a8ac9[_0x5b6e18(0x878)]],_0x1a7abc='';}catch(_0x1a2081){_0x2622f9=_0x4883ef[_0x5b6e18(0xcc6)](_0x4d6fbd)[_0x1a8ac9[_0x5b6e18(0x878)]],_0x23f1ff='';}}}}sentences[_0x1c211a(0x8c2)]((_0x4ecf37,_0x47fce9)=>{const _0x3e152e=_0x204978,_0x3f187e=_0x40b892,_0x10b66c=_0x204978,_0x4fd873=_0x1c211a,_0x19f135=_0x1c211a,_0x4945ad={};_0x4945ad[_0x3e152e(0x244)]=_0x1a8ac9[_0x3e152e(0xcca)],_0x4945ad[_0x3f187e(0x6a1)]=_0x1a8ac9[_0x3f187e(0x702)],_0x4945ad[_0x4fd873(0xbac)]=_0x1a8ac9[_0x10b66c(0x26d)],_0x4945ad[_0x3e152e(0x509)]=_0x1a8ac9[_0x10b66c(0xe41)];const _0x5a4740=_0x4945ad;if(_0x1a8ac9[_0x3f187e(0x6be)](_0x1a8ac9[_0x19f135(0xb85)],_0x1a8ac9[_0x10b66c(0x2c0)])){if(_0x1a8ac9[_0x19f135(0x9d5)](_0x4ecf37[-0x18*0x23+-0x6bc+0xa04],_0x47fce9[-0x13c0+-0xd9*0x29+0x3681])){if(_0x1a8ac9[_0x4fd873(0xcfc)](_0x1a8ac9[_0x10b66c(0x92c)],_0x1a8ac9[_0x4fd873(0x92c)]))return-(-0xa44+-0x67*0x5e+0x3017);else _0x58d79f=_0x153662[_0x19f135(0x860)+'ce'](_0x1a8ac9[_0x3f187e(0x409)](_0x1a8ac9[_0x10b66c(0x7a5)],_0x1a8ac9[_0x10b66c(0x6c9)](_0x245061,_0x5b7a0a)),_0x16b7c1[_0x10b66c(0xb4b)+_0x4fd873(0x65a)][_0x449b42]),_0x5279bf=_0x2c8112[_0x19f135(0x860)+'ce'](_0x1a8ac9[_0x19f135(0x5f4)](_0x1a8ac9[_0x10b66c(0x84d)],_0x1a8ac9[_0x10b66c(0xbfe)](_0x1415a8,_0x41ada0)),_0x2a3b32[_0x3f187e(0xb4b)+_0x10b66c(0x65a)][_0xc93e61]),_0x15a9a0=_0x47eea1[_0x3f187e(0x860)+'ce'](_0x1a8ac9[_0x19f135(0x409)](_0x1a8ac9[_0x3e152e(0x8eb)],_0x1a8ac9[_0x10b66c(0x91b)](_0x404da3,_0x509e08)),_0x4305a0[_0x10b66c(0xb4b)+_0x3f187e(0x65a)][_0x38f55d]);}if(_0x1a8ac9[_0x19f135(0x351)](_0x4ecf37[-0x33f*-0x1+0xaae+0x2c9*-0x5],_0x47fce9[-0x1*-0x2659+-0xc0b+-0x1a4e])){if(_0x1a8ac9[_0x3f187e(0xcfc)](_0x1a8ac9[_0x19f135(0xb4c)],_0x1a8ac9[_0x10b66c(0x298)])){if(_0x1a8ac9[_0x3f187e(0xe13)](_0x79c733[_0x4fd873(0x750)+'Of'](_0x493eac[_0x2b39d7]),-(0x461*0x5+-0x430+-0xce*0x16)))_0x112b85[_0x3e152e(0x838)+'ft'](_0x5a268f[_0x3b01d1]);}else return-0x79*-0x2b+-0x1d*0x1+0x1*-0x1435;}if(_0x1a8ac9[_0x3f187e(0xbb7)](_0x4ecf37[-0x192+0x99+0xfb*0x1][_0x3f187e(0x8a3)+'h'],-0x1736+-0x17e4+0x1*0x2f1b)&&_0x1a8ac9[_0x10b66c(0x5e9)](_0x47fce9[-0x1*-0x151f+0x1822+-0x2d3f][_0x3e152e(0x8a3)+'h'],-0xad*0x2e+-0xbe9*0x3+0x42d2*0x1)&&_0x1a8ac9[_0x4fd873(0x9d5)](_0x4ecf37[-0x14fc+0x2a7+-0x3ab*-0x5][-0x9df+0x2068+-0x1689],_0x47fce9[0x37*0x4f+-0x1*-0x2336+-0x342d][0x1ff3*-0x1+0x29*-0x29+-0x44*-0x91])){if(_0x1a8ac9[_0x4fd873(0x645)](_0x1a8ac9[_0x3e152e(0x561)],_0x1a8ac9[_0x3e152e(0x4fd)]))return-(-0x241a+-0x1*0x5bc+0x29d7*0x1);else _0x47f288=_0x4c5df9[_0x10b66c(0xcc6)](_0x1a8ac9[_0x4fd873(0x5f4)](_0x3cacb4,_0x88e49a))[_0x1a8ac9[_0x4fd873(0x878)]],_0x369b2f='';}if(_0x1a8ac9[_0x10b66c(0xb33)](_0x4ecf37[0x1914+-0x1820+-0xf2][_0x3e152e(0x8a3)+'h'],-0xd26+0x25c*-0x3+-0x1*-0x143b)&&_0x1a8ac9[_0x19f135(0x86f)](_0x47fce9[-0x159d+0x26a4+-0x1105][_0x3f187e(0x8a3)+'h'],-0x16ac+0x35d+0x1350)&&_0x1a8ac9[_0x3e152e(0x3b1)](_0x4ecf37[0x6a*-0x4+-0xa6*0x35+0x2408*0x1][0x1e5f*0x1+0x980+-0x1*0x27df],_0x47fce9[-0x11c4+0x1906+-0x740][-0x622*0x6+-0xec2*-0x1+-0x193*-0xe])){if(_0x1a8ac9[_0x19f135(0x6be)](_0x1a8ac9[_0x3f187e(0x86c)],_0x1a8ac9[_0x19f135(0x86c)]))_0x51c85a+=_0x26fd97[0x2659+-0x1c39+0x51*-0x20][_0x19f135(0x9d8)][_0x3e152e(0x6d7)+'nt'];else return 0x1991+-0x1cec*0x1+0x35c;}if(_0x1a8ac9[_0x3e152e(0x9d5)](_0x4ecf37[0x9*0xe6+-0x1*-0xa27+-0x123a],_0x47fce9[-0x1*0x24c5+0x1*-0x13f9+0x38c1])){if(_0x1a8ac9[_0x3f187e(0xcfc)](_0x1a8ac9[_0x3f187e(0xe28)],_0x1a8ac9[_0x3e152e(0xa7e)])){_0x1a8ac9[_0x3f187e(0xbfe)](_0x2901a0,_0x1a8ac9[_0x3f187e(0xe6c)]);return;}else return-(-0x1*0x5a1+0x994+-0x3f2);}if(_0x1a8ac9[_0x3f187e(0xe14)](_0x4ecf37[-0x35e*-0x3+0x1d51+0xd*-0x308],_0x47fce9[0x1*-0x17c9+0xbdf+0xbed])){if(_0x1a8ac9[_0x3f187e(0xb24)](_0x1a8ac9[_0x19f135(0xe75)],_0x1a8ac9[_0x3f187e(0xe75)]))return-0x2d*-0x1+-0x1*0x257+-0x6f*-0x5;else{const _0x4c6bf7=_0x5a4740[_0x3f187e(0x244)][_0x3e152e(0xa2f)]('|');let _0x337013=-0x2209+-0x1*0x22a3+0x44ac;while(!![]){switch(_0x4c6bf7[_0x337013++]){case'0':_0x3566a2=-0x1*-0xc51+-0x256c+0x1*0x191b;continue;case'1':return;case'2':_0x486119[_0x3e152e(0x9f4)+_0x3e152e(0xc14)+_0x19f135(0xa51)](_0x5a4740[_0x10b66c(0x6a1)])[_0x4fd873(0xad5)]='';continue;case'3':const _0x283f50={};_0x283f50[_0x4fd873(0x99e)]=_0x5a4740[_0x4fd873(0xbac)],_0x283f50[_0x3e152e(0x6d7)+'nt']=_0x48389f,_0x319de0[_0x3f187e(0x1e3)](_0x283f50);continue;case'4':const _0x298a28={};_0x298a28[_0x10b66c(0x99e)]=_0x5a4740[_0x3e152e(0x509)],_0x298a28[_0x19f135(0x6d7)+'nt']=_0x400c99,_0x287a70[_0x4fd873(0x1e3)](_0x298a28);continue;}break;}}}return-0x684+0x15ad+-0xf29*0x1;}else _0xf70a48[_0x50d3fc]=-0x900+0x2216+0xa9*-0x26,_0x5de9aa[_0x3d2b81]=0x842+-0x450*0x2+0x5e;}),modalele=[_0x4be308[_0x1c211a(0x451)]],sentencesContent='';for(let _0x1b0d98=-0x827+-0x1345+0x1b6c;_0x4be308[_0x5b6e18(0x696)](_0x1b0d98,sentences[_0x1c211a(0x8a3)+'h']);_0x1b0d98++){_0x4be308[_0x204978(0x8ec)](_0x4be308[_0x2c10a8(0x706)],_0x4be308[_0x2c10a8(0xd1a)])?sentencesContent+=sentences[_0x1b0d98][-0xd64*0x2+-0xfd9*0x1+0x2aa2]:(_0x1c4c17=_0x20a113[_0x40b892(0xa03)](_0x5e2b38,_0x322bd4[_0x2c10a8(0x6d7)+_0x40b892(0x3dd)+_0x40b892(0x3ed)]),_0x535a0c=new _0x52179f(_0x11772d[_0x5b6e18(0x6d7)+_0x1c211a(0x3dd)+_0x1c211a(0x3ed)][_0x204978(0x611)+_0x2c10a8(0xb3d)](!![]))[_0x1c211a(0xcc6)](),_0x20a113[_0x5b6e18(0xa03)](_0x49b1fe,_0x20a113[_0x5b6e18(0xa91)]));}const _0x3fe96b={};_0x3fe96b[_0x5b6e18(0x4ba)+_0x2c10a8(0x342)+'t']=sentencesContent,_0x3fe96b[_0x2c10a8(0xbad)]=_0x505ddc[_0x40b892(0x6d7)+_0x1c211a(0x9c0)+_0x2c10a8(0x413)][_0x2c10a8(0x979)+_0x2c10a8(0xa36)+_0x40b892(0xc81)+_0x204978(0x5b4)][_0x2c10a8(0x6dc)+'e'],article=_0x3fe96b,_0x4be308[_0x2c10a8(0x8f5)](_0x2ec873,_0x4be308[_0x40b892(0x4a0)]);}})[_0x7660c8(0xc90)](function(_0x424a39){const _0x3313e2=_0x56af26,_0x5c6b1c=_0x7660c8,_0x5336e7=_0x1a0550,_0x246203=_0x56af26;if(_0x20a113[_0x3313e2(0xb0d)](_0x20a113[_0x5c6b1c(0x44d)],_0x20a113[_0x5336e7(0xaec)]))console[_0x5336e7(0x292)](_0x424a39);else throw _0x1f8bde;});}else _0x279ae1[_0x1a0550(0x6ba)](_0x3de2bb);}else _0x90fdac[_0x56af26(0xc92)](_0x90fdac[_0x56af26(0x8b4)],_0x90fdac[_0x2db586(0x234)])?(modalele=_0x90fdac[_0x56af26(0x614)](eleparse,_0x505ddc[_0x56af26(0x6d7)+_0x1a0550(0x3dd)+_0x282bff(0x3ed)]),article=new Readability(_0x505ddc[_0x2db586(0x6d7)+_0x2db586(0x3dd)+_0x56af26(0x3ed)][_0x282bff(0x611)+_0x282bff(0xb3d)](!![]))[_0x1a0550(0xcc6)](),_0x90fdac[_0x282bff(0x3d1)](_0x2ec873,_0x90fdac[_0x56af26(0xa18)])):_0x4566f2+=_0x56af26(0xda6)+(_0x5ec034[_0x56af26(0xcab)][_0x282bff(0xa8b)]||_0x1f4ca1[_0x7660c8(0xdbe)+_0x56af26(0x461)+_0x7660c8(0x9a3)+'e'](_0x52624d)[_0x7660c8(0x3a4)+_0x2db586(0x486)+_0x1a0550(0x8ac)]||_0x5adb0f[_0x2db586(0xdbe)+_0x2db586(0x461)+_0x282bff(0x9a3)+'e'](_0x2855a8)[_0x282bff(0xa8b)]);}else _0x324fcd+=_0x58884b;})[_0x27c5e4(0x8ea)](()=>{const _0x1730a4=_0x27c5e4,_0x367471=_0x4b1dce,_0x54951c=_0x4b1dce,_0x5149d7=_0x27c5e4,_0x188b33=_0x27c5e4,_0xa7be1b={'RPdCh':function(_0x5ec395,_0x396e7b){const _0x4b87c9=_0x2656;return _0x90fdac[_0x4b87c9(0x399)](_0x5ec395,_0x396e7b);},'zWYux':function(_0x13a950,_0x4e2cd5){const _0x2ec2bb=_0x2656;return _0x90fdac[_0x2ec2bb(0xc33)](_0x13a950,_0x4e2cd5);},'JTjye':function(_0x2c3aa6,_0x56602b){const _0x12e79a=_0x2656;return _0x90fdac[_0x12e79a(0xe64)](_0x2c3aa6,_0x56602b);},'IhUxy':_0x90fdac[_0x1730a4(0x312)],'POdIL':_0x90fdac[_0x367471(0x90e)],'lMVQm':_0x90fdac[_0x1730a4(0xd9c)],'WQDcT':function(_0x1cf300,_0x2d794f){const _0x4711ed=_0x1730a4;return _0x90fdac[_0x4711ed(0xcac)](_0x1cf300,_0x2d794f);},'XRCdM':_0x90fdac[_0x367471(0x55f)],'ReYUt':function(_0x4dfb0c,_0x2c086c){const _0x16b3dd=_0x367471;return _0x90fdac[_0x16b3dd(0x29e)](_0x4dfb0c,_0x2c086c);},'Veiuf':_0x90fdac[_0x54951c(0x3ab)],'lgDOV':function(_0x1ce01e,_0x110ee8){const _0x8c840=_0x5149d7;return _0x90fdac[_0x8c840(0x6f0)](_0x1ce01e,_0x110ee8);},'OFdJW':_0x90fdac[_0x1730a4(0xb04)],'JkXko':function(_0x17995a,_0x3094d7){const _0x43a241=_0x54951c;return _0x90fdac[_0x43a241(0x9c3)](_0x17995a,_0x3094d7);},'cEBLt':function(_0x313e6f,_0x5c561b){const _0x4bcbc8=_0x5149d7;return _0x90fdac[_0x4bcbc8(0xdf0)](_0x313e6f,_0x5c561b);},'XwqHn':function(_0x17fa54,_0x89e8c0){const _0x3eff4b=_0x54951c;return _0x90fdac[_0x3eff4b(0x44a)](_0x17fa54,_0x89e8c0);},'GNPCz':_0x90fdac[_0x1730a4(0x5c4)],'UQBqE':function(_0x39b86b,_0x2421bb){const _0x5962e7=_0x1730a4;return _0x90fdac[_0x5962e7(0x660)](_0x39b86b,_0x2421bb);},'PrLoC':function(_0x450f7e,_0x6fe77c){const _0x53f090=_0x188b33;return _0x90fdac[_0x53f090(0x6ab)](_0x450f7e,_0x6fe77c);},'TXQJC':_0x90fdac[_0x5149d7(0xc43)],'ssYrM':function(_0xe25991,_0x126e17){const _0x3c2621=_0x54951c;return _0x90fdac[_0x3c2621(0xdfd)](_0xe25991,_0x126e17);},'SBeGK':function(_0x4835a8,_0x25d9e0){const _0x2c287e=_0x1730a4;return _0x90fdac[_0x2c287e(0x3c1)](_0x4835a8,_0x25d9e0);},'ZFqqw':_0x90fdac[_0x54951c(0x297)],'euWQc':function(_0x558fa2,_0x39820a){const _0x228b7b=_0x1730a4;return _0x90fdac[_0x228b7b(0xa89)](_0x558fa2,_0x39820a);},'Nluyt':function(_0x5350b6,_0x96f01e){const _0x2b77eb=_0x367471;return _0x90fdac[_0x2b77eb(0x21d)](_0x5350b6,_0x96f01e);},'suqIX':_0x90fdac[_0x1730a4(0x96c)],'MkZLK':function(_0x578733,_0x37e953){const _0xbe255b=_0x1730a4;return _0x90fdac[_0xbe255b(0x29e)](_0x578733,_0x37e953);},'itnHm':function(_0x30a68e,_0x50d860){const _0x9198b9=_0x188b33;return _0x90fdac[_0x9198b9(0x265)](_0x30a68e,_0x50d860);},'tflEC':_0x90fdac[_0x54951c(0x4ec)],'zEwtJ':function(_0x18e745,_0x954b5b){const _0x4021be=_0x5149d7;return _0x90fdac[_0x4021be(0x602)](_0x18e745,_0x954b5b);},'LSPsY':_0x90fdac[_0x188b33(0xd71)],'DvTfy':_0x90fdac[_0x188b33(0xc4f)],'ZwERf':function(_0x41a597,_0x5192be){const _0x4c69d7=_0x1730a4;return _0x90fdac[_0x4c69d7(0xb77)](_0x41a597,_0x5192be);},'NQbVT':function(_0x3b960c,_0x1f91d3){const _0x3c722e=_0x188b33;return _0x90fdac[_0x3c722e(0xddf)](_0x3b960c,_0x1f91d3);},'TweGF':function(_0x20beed,_0x59c524){const _0x4057b8=_0x54951c;return _0x90fdac[_0x4057b8(0x87f)](_0x20beed,_0x59c524);},'bgIsC':function(_0x5138b5,_0xf4b36b){const _0x4a33d0=_0x367471;return _0x90fdac[_0x4a33d0(0x5b3)](_0x5138b5,_0xf4b36b);},'BPVYH':function(_0x5c7ab9,_0x2a32f1){const _0x47a4b4=_0x54951c;return _0x90fdac[_0x47a4b4(0x660)](_0x5c7ab9,_0x2a32f1);},'cptlM':_0x90fdac[_0x5149d7(0xa5e)],'PXQlK':function(_0x38d307,_0x9576fc){const _0x108275=_0x188b33;return _0x90fdac[_0x108275(0xb77)](_0x38d307,_0x9576fc);},'WSWTm':function(_0x3353be,_0xd6ff80){const _0x3253fd=_0x1730a4;return _0x90fdac[_0x3253fd(0x60d)](_0x3353be,_0xd6ff80);},'inyBh':function(_0x49df3c,_0x150472){const _0x238b94=_0x1730a4;return _0x90fdac[_0x238b94(0x55d)](_0x49df3c,_0x150472);},'afEyS':function(_0x2465c3,_0x2755e1){const _0xfc83ac=_0x5149d7;return _0x90fdac[_0xfc83ac(0x9e8)](_0x2465c3,_0x2755e1);},'bLfBA':_0x90fdac[_0x54951c(0x268)],'tahAE':function(_0x476758,_0x1eae9d){const _0x121905=_0x367471;return _0x90fdac[_0x121905(0xdf0)](_0x476758,_0x1eae9d);},'iSGTZ':function(_0x2c2502,_0xf74eb9){const _0x173c3d=_0x367471;return _0x90fdac[_0x173c3d(0x98b)](_0x2c2502,_0xf74eb9);},'byzmV':_0x90fdac[_0x54951c(0x51c)],'hEnuE':function(_0x45dc3c,_0x54a67e){const _0x3472b3=_0x1730a4;return _0x90fdac[_0x3472b3(0xcac)](_0x45dc3c,_0x54a67e);},'jLszI':function(_0x546f08,_0x872b2f){const _0xc9ad01=_0x188b33;return _0x90fdac[_0xc9ad01(0x4bb)](_0x546f08,_0x872b2f);},'jkyWk':function(_0x2bd011,_0x400729){const _0x581f51=_0x1730a4;return _0x90fdac[_0x581f51(0x55d)](_0x2bd011,_0x400729);},'Ndyoe':function(_0x21c261,_0x1cb813){const _0x506029=_0x367471;return _0x90fdac[_0x506029(0x1fd)](_0x21c261,_0x1cb813);},'DFpkV':_0x90fdac[_0x367471(0x92b)],'XMUDx':function(_0x3f79b2,_0x1fd270){const _0x5b50f7=_0x54951c;return _0x90fdac[_0x5b50f7(0x4db)](_0x3f79b2,_0x1fd270);},'YCUPB':function(_0x499038,_0x24d39b){const _0x3453e7=_0x367471;return _0x90fdac[_0x3453e7(0x55d)](_0x499038,_0x24d39b);},'nxDKO':_0x90fdac[_0x5149d7(0xd6e)],'JNlcZ':function(_0x111fc5,_0x2b8425){const _0x31e4c3=_0x1730a4;return _0x90fdac[_0x31e4c3(0xd39)](_0x111fc5,_0x2b8425);},'VmavR':function(_0x1da40a,_0x59a4e1){const _0x357466=_0x5149d7;return _0x90fdac[_0x357466(0x9e8)](_0x1da40a,_0x59a4e1);},'FgCuK':function(_0x4d6b30,_0x408583){const _0x1fc3e1=_0x188b33;return _0x90fdac[_0x1fc3e1(0xdf0)](_0x4d6b30,_0x408583);},'nYxwS':function(_0x40fbeb,_0x3d7786){const _0x1ad99c=_0x54951c;return _0x90fdac[_0x1ad99c(0xae3)](_0x40fbeb,_0x3d7786);},'QmApn':_0x90fdac[_0x367471(0x4e5)],'OMjDp':function(_0x42f978,_0x557f77){const _0x4e4a6f=_0x5149d7;return _0x90fdac[_0x4e4a6f(0x253)](_0x42f978,_0x557f77);},'ACNCy':function(_0x1599c7,_0x33c46a){const _0x24fbc6=_0x188b33;return _0x90fdac[_0x24fbc6(0xe74)](_0x1599c7,_0x33c46a);},'ExAMv':_0x90fdac[_0x5149d7(0x407)],'MzMLX':function(_0x72042d,_0x1f5b5f){const _0x2bdab6=_0x1730a4;return _0x90fdac[_0x2bdab6(0xa82)](_0x72042d,_0x1f5b5f);},'WQvJi':function(_0x20794a,_0x536377){const _0x127325=_0x188b33;return _0x90fdac[_0x127325(0xa29)](_0x20794a,_0x536377);},'qLylI':function(_0x5cd93f,_0x3b0483){const _0x1be3db=_0x54951c;return _0x90fdac[_0x1be3db(0x8de)](_0x5cd93f,_0x3b0483);},'FwxXz':_0x90fdac[_0x1730a4(0x88c)],'CCXUH':function(_0x14e805,_0x140117){const _0xa33f97=_0x367471;return _0x90fdac[_0xa33f97(0x3e8)](_0x14e805,_0x140117);},'ORTqh':_0x90fdac[_0x54951c(0x220)],'ZRokf':function(_0x210027,_0xa82a85){const _0x11ddaa=_0x1730a4;return _0x90fdac[_0x11ddaa(0x694)](_0x210027,_0xa82a85);},'Eyevd':function(_0x45548c,_0x8da763){const _0x481f96=_0x188b33;return _0x90fdac[_0x481f96(0x815)](_0x45548c,_0x8da763);},'EiBTK':function(_0x2aaca3,_0x2988ba){const _0x14ba95=_0x5149d7;return _0x90fdac[_0x14ba95(0x3cc)](_0x2aaca3,_0x2988ba);},'qzxVf':_0x90fdac[_0x5149d7(0x22f)],'OPtlg':function(_0x529e26,_0x5dcf1f){const _0x45167b=_0x1730a4;return _0x90fdac[_0x45167b(0x6f0)](_0x529e26,_0x5dcf1f);},'noEcG':function(_0x5d6abc,_0x148ea8){const _0x4a8dff=_0x54951c;return _0x90fdac[_0x4a8dff(0x44a)](_0x5d6abc,_0x148ea8);},'mOEEg':_0x90fdac[_0x188b33(0x998)],'bCgdf':function(_0x23eaba,_0xc2a776){const _0x1c8e1d=_0x5149d7;return _0x90fdac[_0x1c8e1d(0x21d)](_0x23eaba,_0xc2a776);},'KvmUu':function(_0x1ff3d8,_0x2ae4b7){const _0x2dbeb6=_0x5149d7;return _0x90fdac[_0x2dbeb6(0xb51)](_0x1ff3d8,_0x2ae4b7);},'hbLBk':function(_0x402348,_0x5b0600){const _0x80a532=_0x367471;return _0x90fdac[_0x80a532(0xa82)](_0x402348,_0x5b0600);},'aIBiN':function(_0x40e491,_0x112c86){const _0x30f071=_0x54951c;return _0x90fdac[_0x30f071(0xbc3)](_0x40e491,_0x112c86);},'AxPip':_0x90fdac[_0x54951c(0x262)],'kwdXT':function(_0x596e67,_0x3ffbc4){const _0x11f1f6=_0x54951c;return _0x90fdac[_0x11f1f6(0x81a)](_0x596e67,_0x3ffbc4);},'PJpZF':_0x90fdac[_0x188b33(0x2ab)],'IfVAM':function(_0x5c32ce,_0x191a0b){const _0x179c5f=_0x5149d7;return _0x90fdac[_0x179c5f(0x448)](_0x5c32ce,_0x191a0b);},'fSosS':_0x90fdac[_0x1730a4(0x4be)],'tMIjF':function(_0x40812f,_0x3844f3){const _0x1cf1b9=_0x54951c;return _0x90fdac[_0x1cf1b9(0x35e)](_0x40812f,_0x3844f3);},'XLkZz':_0x90fdac[_0x367471(0x3d9)],'uxcJv':_0x90fdac[_0x188b33(0x4c9)],'TnHvR':_0x90fdac[_0x54951c(0x57c)],'cSMTq':function(_0x57d1ea,_0x4e59aa){const _0x418129=_0x367471;return _0x90fdac[_0x418129(0x44a)](_0x57d1ea,_0x4e59aa);},'hlxyw':function(_0x3330a8,_0x1a4818){const _0x4c3310=_0x1730a4;return _0x90fdac[_0x4c3310(0x55d)](_0x3330a8,_0x1a4818);},'tWPbP':_0x90fdac[_0x1730a4(0x2bb)],'egUsD':function(_0x4b1a56,_0xc16018){const _0x526b06=_0x367471;return _0x90fdac[_0x526b06(0x9a6)](_0x4b1a56,_0xc16018);},'GjSjI':_0x90fdac[_0x1730a4(0xe2c)],'mKZwc':_0x90fdac[_0x188b33(0xa18)],'SwjwZ':_0x90fdac[_0x367471(0x789)],'wGkWi':function(_0x59f68f,_0xd10415){const _0x4cf55f=_0x54951c;return _0x90fdac[_0x4cf55f(0xad1)](_0x59f68f,_0xd10415);},'ubENR':_0x90fdac[_0x188b33(0x4cb)],'KJvpk':_0x90fdac[_0x54951c(0x9a8)],'zfuXN':_0x90fdac[_0x54951c(0x582)],'RaJqB':_0x90fdac[_0x1730a4(0x355)],'IMrju':_0x90fdac[_0x1730a4(0x9b5)],'DGJns':function(_0x302549,_0x8043aa){const _0x3273d0=_0x1730a4;return _0x90fdac[_0x3273d0(0xd80)](_0x302549,_0x8043aa);},'cUpOk':function(_0x28fa10,_0x2feef0){const _0x1fbe54=_0x367471;return _0x90fdac[_0x1fbe54(0x900)](_0x28fa10,_0x2feef0);},'GPFCP':_0x90fdac[_0x5149d7(0xd65)],'EveYc':_0x90fdac[_0x188b33(0x95a)],'BQGJC':_0x90fdac[_0x188b33(0x5ae)],'WNFYp':_0x90fdac[_0x54951c(0x8f0)],'XSCYt':function(_0x2f508e,_0x54c2dc){const _0x375a01=_0x188b33;return _0x90fdac[_0x375a01(0x934)](_0x2f508e,_0x54c2dc);},'kMUTS':_0x90fdac[_0x54951c(0xbd0)],'qHNzj':_0x90fdac[_0x367471(0x570)],'sKvRv':function(_0xa7ecf2,_0x228674){const _0x45b552=_0x367471;return _0x90fdac[_0x45b552(0x972)](_0xa7ecf2,_0x228674);},'WKbhp':_0x90fdac[_0x188b33(0x2df)],'Tvxpv':_0x90fdac[_0x1730a4(0xc0d)],'mGFgO':_0x90fdac[_0x54951c(0xc6e)],'WrPOw':_0x90fdac[_0x367471(0x8d3)],'qzogy':function(_0x2f1a78,_0x179c4c,_0x59302d){const _0x3417be=_0x1730a4;return _0x90fdac[_0x3417be(0x606)](_0x2f1a78,_0x179c4c,_0x59302d);},'DnkSM':_0x90fdac[_0x188b33(0xcee)],'UAoMy':_0x90fdac[_0x54951c(0x386)],'ATSLj':_0x90fdac[_0x5149d7(0xbda)],'ZjaTr':_0x90fdac[_0x188b33(0x70e)],'awldN':_0x90fdac[_0x54951c(0xc98)],'jxMhs':function(_0x5bdb49,_0x331cae){const _0x525a9d=_0x1730a4;return _0x90fdac[_0x525a9d(0x2fa)](_0x5bdb49,_0x331cae);},'ONgqh':_0x90fdac[_0x367471(0xe5b)],'HdbEG':_0x90fdac[_0x1730a4(0x68b)],'TutEF':function(_0x57250,_0x4fc46c){const _0x12ed1f=_0x1730a4;return _0x90fdac[_0x12ed1f(0x972)](_0x57250,_0x4fc46c);},'TQREm':_0x90fdac[_0x367471(0x7c0)],'ZOlns':function(_0xc7f0e6,_0x46dc17){const _0x1b49c1=_0x54951c;return _0x90fdac[_0x1b49c1(0xbc3)](_0xc7f0e6,_0x46dc17);},'yfYsR':function(_0x18b9e5,_0x4b89e6){const _0x58c3c5=_0x367471;return _0x90fdac[_0x58c3c5(0x993)](_0x18b9e5,_0x4b89e6);},'UbrpR':_0x90fdac[_0x54951c(0xe5a)],'arpmy':_0x90fdac[_0x1730a4(0xcdf)],'KFoUd':_0x90fdac[_0x1730a4(0xb2c)],'lQTwE':function(_0x20b9ff,_0x2a2565){const _0x23ebb0=_0x1730a4;return _0x90fdac[_0x23ebb0(0x60d)](_0x20b9ff,_0x2a2565);},'bBROg':function(_0x5089e0,_0x401923){const _0x15e3b0=_0x367471;return _0x90fdac[_0x15e3b0(0xaef)](_0x5089e0,_0x401923);},'fMcCZ':function(_0x1be8d0,_0x24f208){const _0x48a1d7=_0x1730a4;return _0x90fdac[_0x48a1d7(0x602)](_0x1be8d0,_0x24f208);},'xEbIV':function(_0x13be22,_0x2138ac){const _0x426db1=_0x5149d7;return _0x90fdac[_0x426db1(0xaef)](_0x13be22,_0x2138ac);},'dpxft':_0x90fdac[_0x367471(0x58b)],'dOONr':function(_0x48fb4f,_0x54dfaa){const _0x305e67=_0x1730a4;return _0x90fdac[_0x305e67(0x6c6)](_0x48fb4f,_0x54dfaa);},'GYElL':_0x90fdac[_0x1730a4(0x34f)],'cySgP':_0x90fdac[_0x54951c(0x70b)],'rZxFj':function(_0x359c2f,_0x595443){const _0x4d7ccc=_0x5149d7;return _0x90fdac[_0x4d7ccc(0x2b4)](_0x359c2f,_0x595443);},'Xjrhy':function(_0x3c9311,_0x31e8f2){const _0x2a3ba2=_0x367471;return _0x90fdac[_0x2a3ba2(0xdfe)](_0x3c9311,_0x31e8f2);},'JqDOb':function(_0x432bb9,_0x535532){const _0x5b343e=_0x367471;return _0x90fdac[_0x5b343e(0x44a)](_0x432bb9,_0x535532);},'ouLmL':function(_0x34f269,_0xb34622){const _0x2fbae3=_0x188b33;return _0x90fdac[_0x2fbae3(0xa89)](_0x34f269,_0xb34622);},'uhsUb':function(_0x34cc2f,_0x30768c){const _0xc66edb=_0x54951c;return _0x90fdac[_0xc66edb(0xd3c)](_0x34cc2f,_0x30768c);},'KPwUy':_0x90fdac[_0x1730a4(0xe46)],'LpZRi':_0x90fdac[_0x5149d7(0x662)],'GBWdY':_0x90fdac[_0x1730a4(0xc97)],'gzXrG':_0x90fdac[_0x1730a4(0x910)],'KcLWq':function(_0xe1212b,_0x224308){const _0x10bb40=_0x1730a4;return _0x90fdac[_0x10bb40(0xa6a)](_0xe1212b,_0x224308);},'ldfDu':_0x90fdac[_0x54951c(0x2a1)]};if(_0x90fdac[_0x54951c(0x6a9)](_0x90fdac[_0x1730a4(0xe71)],_0x90fdac[_0x1730a4(0x484)])){_0x5331ee=_0xa7be1b[_0x367471(0xc36)](_0x2c929d,0x20d*-0x12+0x23da+0x111);if(!_0x1d0a59)throw _0x102bb2;return _0xa7be1b[_0x1730a4(0x967)](_0x3b289c,-0xe*-0x115+-0x5c9*0x5+0xfbb)[_0x1730a4(0x8ea)](()=>_0x1e559a(_0x54a93d,_0x116620,_0x54e024));}else{fulltext=article[_0x5149d7(0x4ba)+_0x54951c(0x342)+'t'],fulltext=fulltext[_0x54951c(0x860)+_0x1730a4(0x7c5)]('\x0a\x0a','\x0a')[_0x1730a4(0x860)+_0x367471(0x7c5)]('\x0a\x0a','\x0a');const _0x58c82b=/[?!;\?\n。………]/g;fulltext=fulltext[_0x367471(0xa2f)](_0x58c82b),fulltext=fulltext[_0x54951c(0xdf6)+'r'](_0x215f27=>{const _0x48636c=_0x5149d7,_0x3807b4=_0x367471,_0x4a138c=_0x54951c,_0x332589=_0x5149d7,_0x5ccc45=_0x367471;if(_0x4be308[_0x48636c(0xb75)](_0x4be308[_0x48636c(0x5b5)],_0x4be308[_0x3807b4(0x5b5)])){const _0x444fab=_0xddc7fb[_0x48636c(0xcf2)](_0xa067ba,arguments);return _0x4a2ba4=null,_0x444fab;}else{const _0x54d015=/^[0-9,\s]+$/;return!_0x54d015[_0x48636c(0xccb)](_0x215f27);}}),fulltext=fulltext[_0x54951c(0xdf6)+'r'](function(_0x2ad517){const _0x4593c=_0x54951c,_0x439c05=_0x188b33,_0x53bc9f=_0x5149d7,_0x4d1108=_0x1730a4;if(_0xa7be1b[_0x4593c(0xd2f)](_0xa7be1b[_0x439c05(0x59e)],_0xa7be1b[_0x4593c(0xb4e)]))return _0x2ad517&&_0x2ad517[_0x439c05(0x26c)]();else _0x3dd297+=_0x244c5d;}),optkeytext={'method':_0x90fdac[_0x5149d7(0x910)],'headers':headers,'body':JSON[_0x5149d7(0xb00)+_0x1730a4(0xbb2)]({'text':fulltext[_0x367471(0xcc8)]('\x0a')})},_0x90fdac[_0x188b33(0x4b7)](fetchRetry,_0x90fdac[_0x188b33(0xe2a)],0x133*-0x1b+0xc49+0x141b,optkeytext)[_0x5149d7(0x8ea)](_0x542f40=>_0x542f40[_0x5149d7(0x8bd)]())[_0x54951c(0x8ea)](_0xbe96b=>{const _0x56c01b=_0x188b33,_0x16fc16=_0x5149d7,_0x441b09=_0x188b33,_0x5d2b03=_0x54951c,_0x5d0579=_0x367471,_0x546468={'teoAd':function(_0x2f54eb,_0x33d50a){const _0x1b563f=_0x2656;return _0xa7be1b[_0x1b563f(0x280)](_0x2f54eb,_0x33d50a);},'hXenr':_0xa7be1b[_0x56c01b(0x485)],'FRhOk':function(_0x25587f,_0x46844b){const _0x1143f9=_0x56c01b;return _0xa7be1b[_0x1143f9(0xb93)](_0x25587f,_0x46844b);},'wHRFZ':function(_0x4880cd,_0x2482d1){const _0x52b17e=_0x56c01b;return _0xa7be1b[_0x52b17e(0x1cf)](_0x4880cd,_0x2482d1);},'LMjxZ':_0xa7be1b[_0x16fc16(0x776)],'EGHle':_0xa7be1b[_0x56c01b(0x3e1)],'RIUEX':_0xa7be1b[_0x5d2b03(0xcf0)],'wjfBZ':_0xa7be1b[_0x441b09(0x788)],'rRDYW':function(_0x3838c4,_0x16b62c){const _0x2b92c0=_0x5d0579;return _0xa7be1b[_0x2b92c0(0x707)](_0x3838c4,_0x16b62c);},'vsgnD':_0xa7be1b[_0x56c01b(0x604)],'NMemA':_0xa7be1b[_0x16fc16(0x7c9)],'tzkmE':_0xa7be1b[_0x5d2b03(0xe49)],'QsndT':_0xa7be1b[_0x441b09(0x6c0)],'NRgzZ':_0xa7be1b[_0x5d0579(0x400)],'BTYjW':function(_0x7246e9,_0x4b6039){const _0x15ed69=_0x441b09;return _0xa7be1b[_0x15ed69(0xc52)](_0x7246e9,_0x4b6039);},'gzzpW':function(_0x1f74a6,_0x5137af){const _0x5567c6=_0x5d0579;return _0xa7be1b[_0x5567c6(0x8a0)](_0x1f74a6,_0x5137af);},'EExVO':_0xa7be1b[_0x16fc16(0x527)],'PXZby':function(_0x4a783b,_0x4825a1){const _0x44e610=_0x56c01b;return _0xa7be1b[_0x44e610(0x376)](_0x4a783b,_0x4825a1);},'EVAQB':_0xa7be1b[_0x441b09(0x93b)],'bAGwf':_0xa7be1b[_0x5d0579(0xba4)],'TUFEC':_0xa7be1b[_0x5d2b03(0x81d)],'gDLJt':function(_0x198b4d,_0x9ba5e1){const _0x361e1c=_0x441b09;return _0xa7be1b[_0x361e1c(0x809)](_0x198b4d,_0x9ba5e1);},'PaMXV':_0xa7be1b[_0x5d2b03(0x1ee)],'vdXcV':_0xa7be1b[_0x5d2b03(0x698)],'NHRUA':function(_0x4aafcd,_0x2124ac){const _0x2cea62=_0x5d2b03;return _0xa7be1b[_0x2cea62(0x5b9)](_0x4aafcd,_0x2124ac);},'jkAXW':_0xa7be1b[_0x16fc16(0xac5)],'hemVD':_0xa7be1b[_0x5d0579(0xc20)],'vlLIi':_0xa7be1b[_0x5d2b03(0x2be)],'buUHM':_0xa7be1b[_0x5d0579(0x38b)],'TzpjG':function(_0x16024f,_0x19ae4b,_0xa5188){const _0x4c3350=_0x16fc16;return _0xa7be1b[_0x4c3350(0x825)](_0x16024f,_0x19ae4b,_0xa5188);},'maflf':_0xa7be1b[_0x5d2b03(0x41f)],'cwXFG':_0xa7be1b[_0x56c01b(0x6d3)],'wAHMm':_0xa7be1b[_0x56c01b(0x760)],'dTWVr':_0xa7be1b[_0x5d2b03(0x961)],'XAzfF':_0xa7be1b[_0x5d0579(0x36f)],'qnuge':function(_0x469a3d,_0x197fb0){const _0x4fde7c=_0x5d2b03;return _0xa7be1b[_0x4fde7c(0x3ef)](_0x469a3d,_0x197fb0);},'SRFEM':_0xa7be1b[_0x5d0579(0x74d)],'yOewg':_0xa7be1b[_0x56c01b(0xa37)]};if(_0xa7be1b[_0x16fc16(0xc5d)](_0xa7be1b[_0x56c01b(0xd27)],_0xa7be1b[_0x56c01b(0xd27)])){keytextres=_0xa7be1b[_0x441b09(0x83b)](unique,_0xbe96b),promptWebpage=_0xa7be1b[_0x56c01b(0x6c7)](_0xa7be1b[_0x5d0579(0x206)](_0xa7be1b[_0x5d2b03(0x5db)](_0xa7be1b[_0x56c01b(0x6e6)],article[_0x56c01b(0xbad)]),'\x0a'),_0xa7be1b[_0x16fc16(0xca1)]);for(el in modalele){if(_0xa7be1b[_0x5d2b03(0xd2f)](_0xa7be1b[_0x56c01b(0x500)],_0xa7be1b[_0x5d2b03(0x500)]))_0x98e6ff=null;else{if(_0xa7be1b[_0x5d2b03(0xb93)](_0xa7be1b[_0x5d0579(0xa41)](_0xa7be1b[_0x16fc16(0x3ce)](promptWebpage,modalele[el]),'\x0a')[_0x56c01b(0x8a3)+'h'],-0xb*0x326+0x3*0xbf5+0x53*0x1))promptWebpage=_0xa7be1b[_0x5d2b03(0x9cd)](_0xa7be1b[_0x56c01b(0xb29)](promptWebpage,modalele[el]),'\x0a');}}promptWebpage=_0xa7be1b[_0x56c01b(0x32e)](promptWebpage,_0xa7be1b[_0x56c01b(0x714)]),keySentencesCount=-0x2162+0x25*0x25+0x1c09*0x1;for(st in keytextres){if(_0xa7be1b[_0x5d2b03(0x9c4)](_0xa7be1b[_0x5d0579(0x6ff)],_0xa7be1b[_0x56c01b(0x347)])){if(_0xa7be1b[_0x5d0579(0xd47)](_0xa7be1b[_0x56c01b(0x264)](_0xa7be1b[_0x16fc16(0x56e)](promptWebpage,keytextres[st]),'\x0a')[_0x5d0579(0x8a3)+'h'],0x1ac6+-0x171c+0x106))promptWebpage=_0xa7be1b[_0x5d2b03(0x47f)](_0xa7be1b[_0x56c01b(0x2a3)](promptWebpage,keytextres[st]),'\x0a');keySentencesCount=_0xa7be1b[_0x441b09(0xa41)](keySentencesCount,-0x118d*0x2+-0x20f7+0x2*0x2209);}else{const _0x32a1ad=_0xa7be1b[_0x5d2b03(0x8b3)][_0x441b09(0xa2f)]('|');let _0x515470=0x5*0x209+-0xa*-0x353+0x5f*-0x75;while(!![]){switch(_0x32a1ad[_0x515470++]){case'0':_0x1e350c=_0x20e04c[_0x5d0579(0x860)+_0x5d0579(0x7c5)](_0xa7be1b[_0x56c01b(0x421)](_0xa7be1b[_0x5d2b03(0xd2a)],_0xa7be1b[_0x5d2b03(0xcd4)](_0x475d45,_0x12a05c)),_0xa7be1b[_0x441b09(0x421)](_0xa7be1b[_0x16fc16(0xb92)],_0xa7be1b[_0x16fc16(0x9bd)](_0x3f5bdb,_0x3842b4)));continue;case'1':_0x14b016=_0xda3acc[_0x441b09(0x860)+_0x5d0579(0x7c5)](_0xa7be1b[_0x16fc16(0x421)](_0xa7be1b[_0x5d0579(0xd6a)],_0xa7be1b[_0x56c01b(0xcd4)](_0x4509e0,_0x13ff91)),_0xa7be1b[_0x56c01b(0x73f)](_0xa7be1b[_0x16fc16(0xb92)],_0xa7be1b[_0x5d2b03(0x552)](_0x2b47cc,_0xf7765d)));continue;case'2':_0x2cf129=_0x37aa54[_0x441b09(0x860)+_0x56c01b(0x7c5)](_0xa7be1b[_0x16fc16(0x638)](_0xa7be1b[_0x5d0579(0x75a)],_0xa7be1b[_0x5d0579(0x9bd)](_0x37bf03,_0x221ac2)),_0xa7be1b[_0x16fc16(0x638)](_0xa7be1b[_0x5d2b03(0xb92)],_0xa7be1b[_0x5d2b03(0xa86)](_0x4dd907,_0x1d21b3)));continue;case'3':_0x4fc210=_0x3496fe[_0x5d2b03(0x860)+_0x16fc16(0x7c5)](_0xa7be1b[_0x56c01b(0xb29)](_0xa7be1b[_0x441b09(0xde2)],_0xa7be1b[_0x16fc16(0x2de)](_0x2343a2,_0x4a3dca)),_0xa7be1b[_0x441b09(0x638)](_0xa7be1b[_0x441b09(0xb92)],_0xa7be1b[_0x5d2b03(0xa86)](_0x4aea83,_0xb5f519)));continue;case'4':_0x25ddbb=_0x1575f5[_0x5d0579(0x860)+_0x5d0579(0x7c5)](_0xa7be1b[_0x56c01b(0x382)](_0xa7be1b[_0x16fc16(0x983)],_0xa7be1b[_0x5d0579(0xcd4)](_0x38dd86,_0x23ec8d)),_0xa7be1b[_0x16fc16(0x5da)](_0xa7be1b[_0x56c01b(0xb92)],_0xa7be1b[_0x441b09(0xe31)](_0x2b933e,_0x389bf0)));continue;case'5':_0x47666a=_0x36f360[_0x5d0579(0x860)+_0x441b09(0x7c5)](_0xa7be1b[_0x56c01b(0xb29)](_0xa7be1b[_0x16fc16(0xbf9)],_0xa7be1b[_0x441b09(0x5b8)](_0x335111,_0x235f39)),_0xa7be1b[_0x56c01b(0x421)](_0xa7be1b[_0x5d2b03(0xb92)],_0xa7be1b[_0x5d2b03(0xc22)](_0x3bf820,_0x395151)));continue;case'6':_0x3b6f48=_0xb0902[_0x441b09(0x860)+_0x441b09(0x7c5)](_0xa7be1b[_0x5d2b03(0x5da)](_0xa7be1b[_0x5d2b03(0xe62)],_0xa7be1b[_0x5d2b03(0xe31)](_0x4ca4db,_0x1bf650)),_0xa7be1b[_0x5d2b03(0xb67)](_0xa7be1b[_0x16fc16(0xb92)],_0xa7be1b[_0x441b09(0xe31)](_0x5366e7,_0x21cb22)));continue;case'7':_0x521214=_0x5d20ab[_0x16fc16(0x860)+_0x441b09(0x7c5)](_0xa7be1b[_0x16fc16(0x638)](_0xa7be1b[_0x5d0579(0x341)],_0xa7be1b[_0x56c01b(0x2de)](_0x36767b,_0x120598)),_0xa7be1b[_0x441b09(0x5da)](_0xa7be1b[_0x5d2b03(0xb92)],_0xa7be1b[_0x5d2b03(0xcd4)](_0x477824,_0x4c6938)));continue;case'8':_0x247a0e=_0x571983[_0x56c01b(0x860)+_0x5d0579(0x7c5)](_0xa7be1b[_0x5d2b03(0x638)](_0xa7be1b[_0x441b09(0x689)],_0xa7be1b[_0x16fc16(0x226)](_0x43815e,_0x4b02f2)),_0xa7be1b[_0x5d0579(0xe0c)](_0xa7be1b[_0x441b09(0xb92)],_0xa7be1b[_0x441b09(0x6eb)](_0x5c3a7b,_0x5cfc5a)));continue;case'9':_0x3a1491=_0xddcb4c[_0x5d0579(0x860)+_0x16fc16(0x7c5)](_0xa7be1b[_0x441b09(0x1cf)](_0xa7be1b[_0x56c01b(0x983)],_0xa7be1b[_0x5d0579(0x7f8)](_0x374378,_0x314ee6)),_0xa7be1b[_0x5d0579(0x638)](_0xa7be1b[_0x5d2b03(0xb92)],_0xa7be1b[_0x56c01b(0x6eb)](_0x5e71b2,_0x56aef7)));continue;case'10':_0x7638c7=_0x2e3a94[_0x56c01b(0x860)+_0x56c01b(0x7c5)](_0xa7be1b[_0x5d2b03(0x638)](_0xa7be1b[_0x5d0579(0x7fa)],_0xa7be1b[_0x5d0579(0x635)](_0x51a6f0,_0x261a03)),_0xa7be1b[_0x16fc16(0xe1e)](_0xa7be1b[_0x56c01b(0xb92)],_0xa7be1b[_0x5d2b03(0x576)](_0x20f19b,_0x12a14a)));continue;case'11':_0x2a71d1=_0x789918[_0x5d0579(0x860)+_0x56c01b(0x7c5)](_0xa7be1b[_0x5d2b03(0x2fb)](_0xa7be1b[_0x441b09(0x6ea)],_0xa7be1b[_0x5d0579(0xbe7)](_0x19678d,_0x3cc519)),_0xa7be1b[_0x5d2b03(0x2fb)](_0xa7be1b[_0x56c01b(0xb92)],_0xa7be1b[_0x441b09(0x1db)](_0x59a00f,_0x343e1a)));continue;case'12':_0x5260f7=_0x4648e9[_0x16fc16(0x860)+_0x56c01b(0x7c5)](_0xa7be1b[_0x16fc16(0xe1e)](_0xa7be1b[_0x56c01b(0x1c7)],_0xa7be1b[_0x441b09(0xe31)](_0x469b30,_0x434b94)),_0xa7be1b[_0x441b09(0x3a5)](_0xa7be1b[_0x5d2b03(0xb92)],_0xa7be1b[_0x16fc16(0x2de)](_0x55aeb7,_0x3f2cba)));continue;case'13':_0x25e6b3=_0x4062ac[_0x16fc16(0x860)+_0x5d0579(0x7c5)](_0xa7be1b[_0x5d2b03(0xb29)](_0xa7be1b[_0x5d2b03(0x75a)],_0xa7be1b[_0x5d2b03(0x9bd)](_0x496a5c,_0x1e6cd9)),_0xa7be1b[_0x5d0579(0xb78)](_0xa7be1b[_0x441b09(0xb92)],_0xa7be1b[_0x56c01b(0x340)](_0x300beb,_0x39f90c)));continue;case'14':_0x27d631=_0x10159f[_0x16fc16(0x860)+_0x5d2b03(0x7c5)](_0xa7be1b[_0x56c01b(0x50b)](_0xa7be1b[_0x5d2b03(0x3a0)],_0xa7be1b[_0x5d0579(0x635)](_0x4e56d3,_0x12070d)),_0xa7be1b[_0x16fc16(0x68a)](_0xa7be1b[_0x441b09(0xb92)],_0xa7be1b[_0x16fc16(0xcfa)](_0x3e8349,_0x1032f8)));continue;case'15':_0x27e66c=_0x6503cd[_0x5d0579(0x860)+_0x56c01b(0x7c5)](_0xa7be1b[_0x5d0579(0x5da)](_0xa7be1b[_0x5d2b03(0xd18)],_0xa7be1b[_0x56c01b(0x8cd)](_0x1fb056,_0x3536c2)),_0xa7be1b[_0x56c01b(0xe5d)](_0xa7be1b[_0x16fc16(0xb92)],_0xa7be1b[_0x16fc16(0x783)](_0x419304,_0xc0e39c)));continue;case'16':_0x243bc7=_0x40bb73[_0x16fc16(0x860)+_0x16fc16(0x7c5)](_0xa7be1b[_0x5d2b03(0x3a3)](_0xa7be1b[_0x56c01b(0x79d)],_0xa7be1b[_0x56c01b(0x5b8)](_0xaf9680,_0x1c3e8f)),_0xa7be1b[_0x5d0579(0x3f9)](_0xa7be1b[_0x5d0579(0xb92)],_0xa7be1b[_0x441b09(0x9bd)](_0x1d73fe,_0x262d43)));continue;case'17':_0x436ea2=_0x1d4dd6[_0x5d0579(0x860)+_0x441b09(0x7c5)](_0xa7be1b[_0x5d0579(0x2fb)](_0xa7be1b[_0x16fc16(0x79d)],_0xa7be1b[_0x56c01b(0xe31)](_0x281228,_0x20c651)),_0xa7be1b[_0x16fc16(0x2f7)](_0xa7be1b[_0x5d0579(0xb92)],_0xa7be1b[_0x56c01b(0xc22)](_0x57e130,_0x4f8ef2)));continue;case'18':_0x3e9e62=_0x52a7fc[_0x5d0579(0x860)+_0x5d2b03(0x7c5)](_0xa7be1b[_0x5d0579(0x421)](_0xa7be1b[_0x5d0579(0x692)],_0xa7be1b[_0x16fc16(0x5c9)](_0x344262,_0x7cd05e)),_0xa7be1b[_0x16fc16(0x5db)](_0xa7be1b[_0x5d0579(0xb92)],_0xa7be1b[_0x56c01b(0x494)](_0x4c861e,_0x56448d)));continue;case'19':_0x1d001d=_0x4be5b0[_0x5d2b03(0x860)+_0x56c01b(0x7c5)](_0xa7be1b[_0x441b09(0x5da)](_0xa7be1b[_0x56c01b(0xcc2)],_0xa7be1b[_0x56c01b(0xbe7)](_0x1afee1,_0x87786b)),_0xa7be1b[_0x16fc16(0x9a0)](_0xa7be1b[_0x5d2b03(0xb92)],_0xa7be1b[_0x441b09(0xcd4)](_0x58deb3,_0x49a7de)));continue;case'20':_0x320b89=_0x4688b1[_0x56c01b(0x860)+_0x5d0579(0x7c5)](_0xa7be1b[_0x16fc16(0x3f9)](_0xa7be1b[_0x56c01b(0xa13)],_0xa7be1b[_0x441b09(0x2de)](_0x1a4e70,_0x74566a)),_0xa7be1b[_0x441b09(0x4a1)](_0xa7be1b[_0x16fc16(0xb92)],_0xa7be1b[_0x56c01b(0xb63)](_0x13b072,_0x1de9c9)));continue;case'21':_0x38bf2a=_0x5e75eb[_0x441b09(0x860)+_0x5d0579(0x7c5)](_0xa7be1b[_0x16fc16(0x423)](_0xa7be1b[_0x5d2b03(0x6b1)],_0xa7be1b[_0x5d2b03(0xcfa)](_0x4df810,_0x6fdb67)),_0xa7be1b[_0x16fc16(0xb67)](_0xa7be1b[_0x16fc16(0xb92)],_0xa7be1b[_0x441b09(0xb7d)](_0x41e8cd,_0x1c3a51)));continue;case'22':_0x21a370=_0x50fad7[_0x16fc16(0x860)+_0x441b09(0x7c5)](_0xa7be1b[_0x16fc16(0x7b2)](_0xa7be1b[_0x5d0579(0xc64)],_0xa7be1b[_0x441b09(0x83b)](_0x480f79,_0x285dbe)),_0xa7be1b[_0x441b09(0xab7)](_0xa7be1b[_0x16fc16(0xb92)],_0xa7be1b[_0x16fc16(0x395)](_0x40f268,_0x5ebaa2)));continue;case'23':_0x110293=_0x6cce46[_0x56c01b(0x860)+_0x16fc16(0x7c5)](_0xa7be1b[_0x5d2b03(0x709)](_0xa7be1b[_0x16fc16(0x214)],_0xa7be1b[_0x5d2b03(0x1db)](_0x4975b1,_0x558033)),_0xa7be1b[_0x5d0579(0xe6b)](_0xa7be1b[_0x16fc16(0xb92)],_0xa7be1b[_0x16fc16(0xb63)](_0x17d60b,_0x47c147)));continue;case'24':_0x3afc05=_0x693efc[_0x5d0579(0x860)+_0x56c01b(0x7c5)](_0xa7be1b[_0x16fc16(0x4a1)](_0xa7be1b[_0x56c01b(0xaa7)],_0xa7be1b[_0x16fc16(0xcd4)](_0x4f43f8,_0x210e08)),_0xa7be1b[_0x5d2b03(0x666)](_0xa7be1b[_0x56c01b(0xb92)],_0xa7be1b[_0x5d2b03(0x9bd)](_0x2fb21b,_0x26d594)));continue;}break;}}}const _0x1b96fb={};_0x1b96fb[_0x16fc16(0x99e)]=_0xa7be1b[_0x441b09(0xba7)],_0x1b96fb[_0x5d0579(0x6d7)+'nt']=promptWebpage;const _0x30e34a={};_0x30e34a[_0x441b09(0x99e)]=_0xa7be1b[_0x5d0579(0x309)],_0x30e34a[_0x441b09(0x6d7)+'nt']=_0xa7be1b[_0x16fc16(0x89e)],promptWeb=[_0x1b96fb,_0x30e34a];const _0x35cec8={'method':_0xa7be1b[_0x5d2b03(0xab0)],'headers':headers,'body':_0xa7be1b[_0x5d0579(0xcbd)](b64EncodeUnicode,JSON[_0x441b09(0xb00)+_0x5d0579(0xbb2)]({'messages':promptWeb[_0x16fc16(0xbe4)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};chatTemp='',text_offset=-(-0x10*-0xf2+0x4*0x4bc+0x1*-0x220f),prev_chat=document[_0x5d2b03(0xae4)+_0x16fc16(0x2b8)+_0x5d0579(0x9e0)](_0xa7be1b[_0x5d2b03(0x41f)])[_0x5d2b03(0x6e5)+_0x16fc16(0x3cd)],_0xa7be1b[_0x56c01b(0x825)](fetch,_0xa7be1b[_0x56c01b(0x44b)],_0x35cec8)[_0x5d0579(0x8ea)](_0x21e466=>{const _0x2b65df=_0x56c01b,_0x4c0568=_0x441b09,_0x72c08b=_0x5d0579,_0x486657=_0x5d0579,_0x72e227=_0x56c01b,_0x58d4f7={'RTngc':function(_0x95bf2e,_0x32f5b4){const _0x47f367=_0x2656;return _0x546468[_0x47f367(0x579)](_0x95bf2e,_0x32f5b4);},'bDuWd':_0x546468[_0x2b65df(0xe00)],'tHqTy':function(_0x583e6c,_0x28db69){const _0x4bba6b=_0x2b65df;return _0x546468[_0x4bba6b(0xc75)](_0x583e6c,_0x28db69);},'VaYEI':function(_0x2103bd,_0x58be7d){const _0x38341b=_0x2b65df;return _0x546468[_0x38341b(0x4b3)](_0x2103bd,_0x58be7d);},'ZxsgN':_0x546468[_0x2b65df(0x3d6)],'vMhqQ':_0x546468[_0x72c08b(0x346)],'VWueA':_0x546468[_0x72c08b(0x270)],'YjcpO':_0x546468[_0x72e227(0x418)],'BuMlQ':function(_0xf69f9,_0x53eee3){const _0x14cb33=_0x2b65df;return _0x546468[_0x14cb33(0xb02)](_0xf69f9,_0x53eee3);},'wlsmB':_0x546468[_0x4c0568(0xb53)],'eZfKL':_0x546468[_0x72e227(0xe68)],'Medzz':_0x546468[_0x2b65df(0xd69)],'ocLbb':_0x546468[_0x72c08b(0x756)],'KcjHN':_0x546468[_0x72e227(0x252)],'lqeLT':function(_0x40bd05,_0x490e79){const _0x45d68c=_0x2b65df;return _0x546468[_0x45d68c(0xd16)](_0x40bd05,_0x490e79);},'sNKgD':function(_0x5869a2,_0xc641a1){const _0x5ad70c=_0x72e227;return _0x546468[_0x5ad70c(0xbaf)](_0x5869a2,_0xc641a1);},'ntpDQ':_0x546468[_0x4c0568(0xa80)],'gkHux':function(_0x1bf96b,_0x255a40){const _0x5133e8=_0x4c0568;return _0x546468[_0x5133e8(0x48d)](_0x1bf96b,_0x255a40);},'wWTEz':_0x546468[_0x72c08b(0x7e1)],'aBenK':function(_0xd98cc2,_0x44d346){const _0x7e8a7d=_0x2b65df;return _0x546468[_0x7e8a7d(0xb02)](_0xd98cc2,_0x44d346);},'PYGwp':_0x546468[_0x2b65df(0x438)],'pYGse':function(_0x4ea0b3,_0x3814a7){const _0x40607a=_0x4c0568;return _0x546468[_0x40607a(0xb02)](_0x4ea0b3,_0x3814a7);},'bLLcI':_0x546468[_0x486657(0x2e5)],'DmVVo':function(_0x35766d,_0x5c33bf){const _0x4f5d31=_0x4c0568;return _0x546468[_0x4f5d31(0x79a)](_0x35766d,_0x5c33bf);},'pSCWo':_0x546468[_0x72c08b(0xb69)],'uPSUg':_0x546468[_0x72e227(0x3b4)],'pTPII':function(_0x584177,_0x5514ee){const _0x49d3b8=_0x72e227;return _0x546468[_0x49d3b8(0x587)](_0x584177,_0x5514ee);},'XCwoU':_0x546468[_0x72c08b(0xb56)],'TiCej':_0x546468[_0x72c08b(0x85d)],'vCfpQ':_0x546468[_0x72e227(0x6f9)],'yPiHq':_0x546468[_0x486657(0x960)],'tZBBx':function(_0xe546e2,_0x51d937,_0xe4e277){const _0x2072d9=_0x72c08b;return _0x546468[_0x2072d9(0x40e)](_0xe546e2,_0x51d937,_0xe4e277);},'UtJrv':_0x546468[_0x72e227(0xb6a)],'wHcpO':function(_0x596adc,_0x1dfd2f){const _0x49a7f5=_0x72c08b;return _0x546468[_0x49a7f5(0x79a)](_0x596adc,_0x1dfd2f);},'hUzUP':_0x546468[_0x4c0568(0x76d)],'nehjp':_0x546468[_0x486657(0x676)],'uvnHG':_0x546468[_0x486657(0x525)],'aJoJx':_0x546468[_0x486657(0x671)]};if(_0x546468[_0x2b65df(0x1fe)](_0x546468[_0x2b65df(0xd76)],_0x546468[_0x2b65df(0xcfd)]))_0x4a32ea+=_0x30d9f8[_0x72e227(0x415)+_0x486657(0xae1)+_0x72c08b(0x737)](_0x1eee3e[_0x37459f]);else{const _0x30d4f4=_0x21e466[_0x4c0568(0x6de)][_0x72e227(0xcd3)+_0x4c0568(0x9b4)]();let _0x1b7b04='',_0x12878f='';_0x30d4f4[_0x486657(0xa47)]()[_0x4c0568(0x8ea)](function _0x25c80e({done:_0x1f5b62,value:_0x248594}){const _0x46f584=_0x4c0568,_0x5dbbb7=_0x4c0568,_0x156ec5=_0x72c08b,_0x3a042f=_0x72e227,_0x56596a=_0x72c08b,_0x788e70={'NtIKd':function(_0x30b36b,_0x32dbd7){const _0x45b84d=_0x2656;return _0x58d4f7[_0x45b84d(0x976)](_0x30b36b,_0x32dbd7);},'ZvrnN':_0x58d4f7[_0x46f584(0x36e)],'fBveO':function(_0x4f8a5c,_0x543b65){const _0x40783f=_0x46f584;return _0x58d4f7[_0x40783f(0x982)](_0x4f8a5c,_0x543b65);},'mnHjl':function(_0x13279f,_0x3b57b3){const _0x4e587d=_0x46f584;return _0x58d4f7[_0x4e587d(0xdd7)](_0x13279f,_0x3b57b3);},'ojxuP':_0x58d4f7[_0x46f584(0xafe)],'cUgxF':_0x58d4f7[_0x46f584(0x3e9)],'pxHjq':function(_0x55a2b0,_0x47cf4c){const _0x1cab89=_0x156ec5;return _0x58d4f7[_0x1cab89(0x976)](_0x55a2b0,_0x47cf4c);},'rWqaE':_0x58d4f7[_0x5dbbb7(0x63c)],'exCpG':_0x58d4f7[_0x56596a(0x38a)],'mcmoB':function(_0x503a96,_0x5f2f17){const _0x121e06=_0x46f584;return _0x58d4f7[_0x121e06(0x48e)](_0x503a96,_0x5f2f17);},'eQjhj':_0x58d4f7[_0x56596a(0x5e6)],'ONTaS':_0x58d4f7[_0x46f584(0x1ea)],'BNXvF':_0x58d4f7[_0x46f584(0xa62)],'DeWAR':_0x58d4f7[_0x156ec5(0x392)],'ATuXH':_0x58d4f7[_0x156ec5(0x5bc)],'oikhw':function(_0x3fa0dc,_0x3f6553){const _0x197134=_0x56596a;return _0x58d4f7[_0x197134(0x728)](_0x3fa0dc,_0x3f6553);},'gohQB':function(_0x1ea5bd,_0x5b7f0f){const _0x1843f5=_0x5dbbb7;return _0x58d4f7[_0x1843f5(0x956)](_0x1ea5bd,_0x5b7f0f);},'ncKMi':_0x58d4f7[_0x5dbbb7(0x1e0)],'lHVYD':function(_0x419d07,_0x579e47){const _0x13c4dc=_0x56596a;return _0x58d4f7[_0x13c4dc(0xae6)](_0x419d07,_0x579e47);},'oHZuL':_0x58d4f7[_0x46f584(0x3fa)],'Bsihx':function(_0x59afc0,_0x2e4996){const _0x7b7007=_0x156ec5;return _0x58d4f7[_0x7b7007(0x730)](_0x59afc0,_0x2e4996);},'QwuLM':_0x58d4f7[_0x46f584(0x3c7)],'KhdRk':function(_0x2688c9,_0x279e4c){const _0x2df247=_0x156ec5;return _0x58d4f7[_0x2df247(0xa17)](_0x2688c9,_0x279e4c);},'rAVXj':_0x58d4f7[_0x156ec5(0xaa3)],'FrHeF':function(_0x38c9de,_0x1149a0){const _0x43c1dd=_0x46f584;return _0x58d4f7[_0x43c1dd(0x957)](_0x38c9de,_0x1149a0);},'ZdgES':function(_0x41c789,_0x417c1c){const _0x3704e5=_0x56596a;return _0x58d4f7[_0x3704e5(0x730)](_0x41c789,_0x417c1c);},'jHygU':_0x58d4f7[_0x5dbbb7(0x358)],'VgmSr':_0x58d4f7[_0x56596a(0x6e8)],'kDpmn':function(_0x2a5b40,_0x47b3b7){const _0x38174b=_0x56596a;return _0x58d4f7[_0x38174b(0x958)](_0x2a5b40,_0x47b3b7);},'fgCOF':_0x58d4f7[_0x3a042f(0x63f)],'OWExD':_0x58d4f7[_0x156ec5(0xe18)],'JOADK':_0x58d4f7[_0x3a042f(0xe69)],'ERpaZ':_0x58d4f7[_0x3a042f(0xbee)],'dFdRM':function(_0x16ba92,_0x5309b7,_0xdfda31){const _0x2478c3=_0x46f584;return _0x58d4f7[_0x2478c3(0x4ea)](_0x16ba92,_0x5309b7,_0xdfda31);},'xodUb':_0x58d4f7[_0x56596a(0xa96)],'earSv':function(_0x5e8dfe,_0x5db853){const _0x5de2b0=_0x156ec5;return _0x58d4f7[_0x5de2b0(0x37a)](_0x5e8dfe,_0x5db853);},'nPkQs':function(_0x339f1a,_0x2b67dd){const _0x54f1b9=_0x156ec5;return _0x58d4f7[_0x54f1b9(0x957)](_0x339f1a,_0x2b67dd);},'azfGV':_0x58d4f7[_0x56596a(0x2f6)],'LRRwI':_0x58d4f7[_0x46f584(0x59b)]};if(_0x58d4f7[_0x56596a(0xae6)](_0x58d4f7[_0x5dbbb7(0x39b)],_0x58d4f7[_0x56596a(0x39b)])){_0x788e70[_0x56596a(0x323)](_0x1136df,_0x788e70[_0x46f584(0xbdc)]);return;}else{if(_0x1f5b62)return;const _0x3d04e6=new TextDecoder(_0x58d4f7[_0x46f584(0xe7b)])[_0x3a042f(0x4cf)+'e'](_0x248594);return _0x3d04e6[_0x156ec5(0x26c)]()[_0x5dbbb7(0xa2f)]('\x0a')[_0x3a042f(0x938)+'ch'](function(_0x4874b9){const _0x429e33=_0x3a042f,_0x305f3c=_0x56596a,_0x1a418a=_0x156ec5,_0x250ef0=_0x46f584,_0x3b01e8=_0x46f584,_0x337bd8={'CZjve':function(_0x14b81d,_0x1b10df){const _0x1a44a2=_0x2656;return _0x788e70[_0x1a44a2(0xc2b)](_0x14b81d,_0x1b10df);},'caEBS':_0x788e70[_0x429e33(0xceb)],'ZBwCO':_0x788e70[_0x305f3c(0xd4b)],'BtVMe':function(_0x50550a,_0x143797){const _0x1a96a5=_0x305f3c;return _0x788e70[_0x1a96a5(0x2d4)](_0x50550a,_0x143797);},'YQVZD':_0x788e70[_0x305f3c(0xdcd)],'xpgUn':_0x788e70[_0x250ef0(0x430)]};if(_0x788e70[_0x250ef0(0x7cf)](_0x788e70[_0x1a418a(0x1d7)],_0x788e70[_0x1a418a(0xbb0)]))_0x1bb778+='';else{try{if(_0x788e70[_0x3b01e8(0x7cf)](_0x788e70[_0x250ef0(0x9cc)],_0x788e70[_0x3b01e8(0x8ee)]))return-(-0xc15*0x3+0xc5c+0x17e4);else document[_0x1a418a(0x9f4)+_0x3b01e8(0xc14)+_0x429e33(0xa51)](_0x788e70[_0x3b01e8(0x5a0)])[_0x3b01e8(0x4d8)+_0x429e33(0xb7f)]=document[_0x1a418a(0x9f4)+_0x3b01e8(0xc14)+_0x3b01e8(0xa51)](_0x788e70[_0x305f3c(0x5a0)])[_0x3b01e8(0x4d8)+_0x3b01e8(0x50a)+'ht'];}catch(_0xaa5ee7){}_0x1b7b04='';if(_0x788e70[_0x305f3c(0xbc9)](_0x4874b9[_0x3b01e8(0x8a3)+'h'],0x29d+0x5*-0x67f+0x1de4))_0x1b7b04=_0x4874b9[_0x305f3c(0x3bc)](0x211+0x751*-0x1+0x546);if(_0x788e70[_0x1a418a(0x6a0)](_0x1b7b04,_0x788e70[_0x429e33(0xaaa)])){if(_0x788e70[_0x250ef0(0xd29)](_0x788e70[_0x429e33(0x7ed)],_0x788e70[_0x429e33(0x7ed)])){const _0x4e07d1=_0x20ce3e?function(){const _0x19df31=_0x1a418a;if(_0x58719d){const _0x3e8180=_0x49867a[_0x19df31(0xcf2)](_0x1f39a8,arguments);return _0x1ad17e=null,_0x3e8180;}}:function(){};return _0x356489=![],_0x4e07d1;}else{lock_chat=0x1777*-0x1+-0x1053+0x27ca;return;}}let _0x5640c7;try{if(_0x788e70[_0x250ef0(0x200)](_0x788e70[_0x3b01e8(0xcd5)],_0x788e70[_0x250ef0(0xcd5)]))try{if(_0x788e70[_0x429e33(0xe0e)](_0x788e70[_0x250ef0(0x470)],_0x788e70[_0x429e33(0x470)]))_0x5640c7=JSON[_0x305f3c(0xcc6)](_0x788e70[_0x3b01e8(0x2ce)](_0x12878f,_0x1b7b04))[_0x788e70[_0x429e33(0xceb)]],_0x12878f='';else{var _0x5d20b5=new _0x4cfa11(_0x307930),_0x1e3b25='';for(var _0x1c7473=0x52+-0x371*-0x1+-0x3*0x141;_0x788e70[_0x250ef0(0x7ef)](_0x1c7473,_0x5d20b5[_0x429e33(0x80d)+_0x250ef0(0xa66)]);_0x1c7473++){_0x1e3b25+=_0x441920[_0x1a418a(0x415)+_0x1a418a(0xae1)+_0x250ef0(0x737)](_0x5d20b5[_0x1c7473]);}return _0x1e3b25;}}catch(_0x52dc8e){_0x788e70[_0x250ef0(0x56a)](_0x788e70[_0x305f3c(0x4e0)],_0x788e70[_0x250ef0(0xadb)])?(_0x2ba624=_0x3409ad[_0x3b01e8(0xcc6)](_0x337bd8[_0x3b01e8(0x311)](_0x50e471,_0x35cf51))[_0x337bd8[_0x305f3c(0x4d0)]],_0x513eb3=''):(_0x5640c7=JSON[_0x1a418a(0xcc6)](_0x1b7b04)[_0x788e70[_0x250ef0(0xceb)]],_0x12878f='');}else{const _0x870f05=_0x300be0?function(){const _0x5dc95b=_0x429e33;if(_0x5e6b2b){const _0x550f8f=_0x2c2ca1[_0x5dc95b(0xcf2)](_0x3729c9,arguments);return _0x489993=null,_0x550f8f;}}:function(){};return _0x1cd8b0=![],_0x870f05;}}catch(_0x162b58){if(_0x788e70[_0x3b01e8(0x30b)](_0x788e70[_0x305f3c(0x38d)],_0x788e70[_0x1a418a(0x55b)])){const _0x5c098f={'HpaDL':_0x337bd8[_0x3b01e8(0x8cf)],'YfbvD':function(_0x4ec5ed,_0x1366d1){const _0xd896d9=_0x250ef0;return _0x337bd8[_0xd896d9(0xb47)](_0x4ec5ed,_0x1366d1);},'HVjih':_0x337bd8[_0x305f3c(0xc31)]};_0x353291[_0x429e33(0x30f)+_0x305f3c(0xb95)+'t'](_0x337bd8[_0x305f3c(0xba6)],function(){const _0x31beb1=_0x250ef0,_0x5ee196=_0x1a418a,_0x23c30a=_0x305f3c,_0x349271=_0x429e33;_0x1ebd81[_0x31beb1(0x6ba)](_0x5c098f[_0x5ee196(0x600)]),_0x5c098f[_0x23c30a(0xb3b)](_0x5956e0,_0x5c098f[_0x23c30a(0x892)]);});}else _0x12878f+=_0x1b7b04;}if(_0x5640c7&&_0x788e70[_0x1a418a(0xbc9)](_0x5640c7[_0x305f3c(0x8a3)+'h'],0x1972+0xacb+-0x243d)&&_0x5640c7[-0x1f*-0x5f+-0x1a15+-0x6*-0x26e][_0x429e33(0x9d8)][_0x250ef0(0x6d7)+'nt']){if(_0x788e70[_0x1a418a(0xd29)](_0x788e70[_0x305f3c(0x3d5)],_0x788e70[_0x3b01e8(0x3d5)])){_0x23fdc4=-0xe5*-0x1c+0x8*-0x35e+-0x1e4*-0x1;return;}else chatTemp+=_0x5640c7[0xee2+0x1ec+0x12*-0xef][_0x3b01e8(0x9d8)][_0x305f3c(0x6d7)+'nt'];}chatTemp=chatTemp[_0x250ef0(0x860)+_0x250ef0(0x7c5)]('\x0a\x0a','\x0a')[_0x3b01e8(0x860)+_0x305f3c(0x7c5)]('\x0a\x0a','\x0a'),document[_0x250ef0(0x9f4)+_0x305f3c(0xc14)+_0x250ef0(0xa51)](_0x788e70[_0x305f3c(0x70a)])[_0x250ef0(0x6e5)+_0x250ef0(0x3cd)]='',_0x788e70[_0x3b01e8(0xe33)](markdownToHtml,_0x788e70[_0x250ef0(0x2d4)](beautify,chatTemp),document[_0x429e33(0x9f4)+_0x429e33(0xc14)+_0x305f3c(0xa51)](_0x788e70[_0x3b01e8(0x70a)])),document[_0x429e33(0xae4)+_0x3b01e8(0x2b8)+_0x305f3c(0x9e0)](_0x788e70[_0x250ef0(0xd3a)])[_0x1a418a(0x6e5)+_0x3b01e8(0x3cd)]=_0x788e70[_0x1a418a(0xdd4)](_0x788e70[_0x1a418a(0x217)](_0x788e70[_0x250ef0(0x217)](prev_chat,_0x788e70[_0x429e33(0xe70)]),document[_0x3b01e8(0x9f4)+_0x429e33(0xc14)+_0x429e33(0xa51)](_0x788e70[_0x3b01e8(0x70a)])[_0x250ef0(0x6e5)+_0x305f3c(0x3cd)]),_0x788e70[_0x250ef0(0xe2f)]);}}),_0x30d4f4[_0x3a042f(0xa47)]()[_0x46f584(0x8ea)](_0x25c80e);}});}})[_0x441b09(0xc90)](_0x19142c=>{const _0x3b2e96=_0x441b09,_0x1ead4e=_0x16fc16,_0x2061f8=_0x56c01b,_0x452d7e=_0x56c01b,_0x1b64e9=_0x5d0579,_0x49ec41={};_0x49ec41[_0x3b2e96(0xc21)]=_0xa7be1b[_0x1ead4e(0x776)];const _0x42e729=_0x49ec41;_0xa7be1b[_0x3b2e96(0x376)](_0xa7be1b[_0x3b2e96(0x9ed)],_0xa7be1b[_0x452d7e(0x99f)])?console[_0x452d7e(0x292)](_0xa7be1b[_0x3b2e96(0x210)],_0x19142c):(_0x61b0ca=_0x5a5280[_0x2061f8(0xcc6)](_0x2fc268)[_0x42e729[_0x1ead4e(0xc21)]],_0x41eb67='');});}else{const _0x458f58={};_0x458f58[_0x56c01b(0xc61)]=0x1,_0x1c3c8d[_0x5d2b03(0x28f)]=_0xf5e8fe[_0x56c01b(0x699)+_0x56c01b(0xd50)+'t'](_0x458f58),_0x5e0c87[_0x5d0579(0x1e3)](_0x3dc553[_0x5d2b03(0xc54)+_0x441b09(0x5eb)+_0x5d0579(0x92e)]());const _0x981552={};_0x981552[_0x5d0579(0xc61)]=0x1,_0x141de0[_0x56c01b(0x1e3)]([_0x3ca374[_0x16fc16(0x699)+_0x56c01b(0xd50)+'t'](_0x981552),_0xa7be1b[_0x441b09(0x350)](_0x1dc99d[_0x5d2b03(0x243)+_0x16fc16(0x5d6)],-0xf2b+-0x9b7+0x18e3)]);}});}},_0x3a9b00=>{const _0x5d5909=_0x26cf85,_0x237b53=_0x4b1dce,_0x5655e1=_0x27c5e4,_0x22e4c6=_0x26cf85,_0x16928f=_0x455ccf;_0x90fdac[_0x5d5909(0x6c6)](_0x90fdac[_0x5d5909(0x9ba)],_0x90fdac[_0x237b53(0x3ee)])?console[_0x5655e1(0x6ba)](_0x3a9b00):_0x14b397+=_0x472f60[0x185e+0x860+-0x7f*0x42][_0x237b53(0x9d8)][_0x5d5909(0x6d7)+'nt'];});}else{if(_0x4be308[_0x455ccf(0x882)](_0x32ac8f[_0x4b1dce(0x750)+'Of'](_0x4691e8[_0x4ab29d][0x211b+0x37*0x63+-0x365f]),-(0x5e3+0x1d7b*-0x1+-0x1*-0x1799)))_0x5d74db[_0x27c5e4(0x838)+'ft'](_0x4be308[_0x329e36(0x481)](_0x4be308[_0x27c5e4(0x374)](_0x4be308[_0x27c5e4(0x969)](_0x4be308[_0x329e36(0xe3e)](_0x4be308[_0x27c5e4(0x261)](_0x4be308[_0x4b1dce(0x944)](_0x4be308[_0x4b1dce(0x588)](_0x4be308[_0x4b1dce(0xe40)]('',_0x4be308[_0x4b1dce(0x238)](_0x43dad4,_0x5ebfa8[_0x25dc83][-0x779*0x3+-0xb0*0xc+0x1eab])),''),_0x11c68a[_0x322acf][0x4*0x511+0xe6f+-0x22b1]),''),_0x4be308[_0x455ccf(0x52d)](_0x416452,_0x5d8251[_0x4fa40b][0x2*0x57e+0xa4*0x4+0x23*-0x63])),'行:'),_0x290941[_0x3ee717][-0x1af9+-0x220*0x9+0x6*0x7af]),'\x0a'));}},_0x2c0628=>{const _0x88d2b8=_0x3fbff6,_0x3c13db=_0x3fbff6,_0x1417c7=_0x4551f1,_0x2ca9ce=_0x3fbff6,_0x2bb139=_0x3fbff6,_0x42d694={'kEjOl':function(_0x4118fc,_0x4ff733){const _0x222c98=_0x2656;return _0x90fdac[_0x222c98(0xdf0)](_0x4118fc,_0x4ff733);},'ueFYS':_0x90fdac[_0x88d2b8(0x836)]};if(_0x90fdac[_0x3c13db(0x71d)](_0x90fdac[_0x3c13db(0x87a)],_0x90fdac[_0x88d2b8(0x87a)])){_0x341a79=_0x42d694[_0x2bb139(0x385)](_0x256607,_0x590b79);const _0x4bf8a4={};return _0x4bf8a4[_0x3c13db(0x88a)]=_0x42d694[_0x2bb139(0xa9c)],_0xff313a[_0x1417c7(0x8a1)+'e'][_0x2bb139(0xe35)+'pt'](_0x4bf8a4,_0x1393a9,_0x3e2060);}else console[_0x1417c7(0x6ba)](_0x2c0628);});}function eleparse(_0x105dc6){const _0x4ffebf=_0x2656,_0x322827=_0x2656,_0xd16117=_0x2656,_0x453fe1=_0x2656,_0x1a4fdd=_0x2656,_0x25b909={'OeGsg':function(_0x11d9dd,_0x4f9d9d){return _0x11d9dd+_0x4f9d9d;},'ZqvCU':_0x4ffebf(0x3a6)+_0x4ffebf(0x729)+_0xd16117(0xa1a),'klzJE':_0x322827(0xcaf)+'er','qXWIA':_0x1a4fdd(0xd61)+_0x4ffebf(0x595),'zovAS':function(_0x1ed695,_0x5df4ab){return _0x1ed695>_0x5df4ab;},'orxdB':function(_0x236f86,_0x512094){return _0x236f86(_0x512094);},'cEnyI':_0x1a4fdd(0xd61)+_0xd16117(0x64d),'YMxAZ':function(_0x79f82d,_0x1f7eb2){return _0x79f82d+_0x1f7eb2;},'vAjJx':_0x4ffebf(0xd1f)+_0x4ffebf(0x819)+_0x453fe1(0x85e)+_0x453fe1(0x687)+_0x4ffebf(0x81c)+_0x1a4fdd(0x52a)+_0x1a4fdd(0x2dc)+_0x322827(0x551)+_0x322827(0xdd1)+_0x453fe1(0x7ab)+_0x322827(0x492),'Qhtuy':function(_0x2ab335,_0x16cb47){return _0x2ab335(_0x16cb47);},'zHDnD':_0x1a4fdd(0x82f)+_0xd16117(0xbf5),'mvxNG':_0x322827(0xaed)+'es','KVimn':function(_0x5b6193,_0x184ef1){return _0x5b6193(_0x184ef1);},'QxjOX':function(_0x3138a8,_0x2fa119){return _0x3138a8<_0x2fa119;},'ydeYC':_0x4ffebf(0xa4f)+'te','cAJkA':_0xd16117(0x7af)+_0x4ffebf(0x67f),'Hoxlb':_0x1a4fdd(0x6e1)+'ss','AHiIc':_0x322827(0xdf8)+_0xd16117(0xdaa)+_0x1a4fdd(0x38f),'WGaRW':_0x4ffebf(0xd3f)+_0x453fe1(0xe43)+'n','sJvPZ':_0x4ffebf(0x5bd)+_0x453fe1(0x916),'yqfDX':_0x4ffebf(0xdbd),'Rvlkt':function(_0x453db3,_0x5642f9){return _0x453db3!==_0x5642f9;},'tTNqk':_0x453fe1(0x5d4),'PAauX':function(_0x308c40,_0x23d3d9){return _0x308c40!==_0x23d3d9;},'bFHkG':_0x453fe1(0xaf0),'thHmo':_0x322827(0x42a),'lssVe':function(_0xe457c0,_0x4c2017){return _0xe457c0===_0x4c2017;},'oyzYL':_0x322827(0xa38),'htFda':function(_0x37b3d4,_0x303adc){return _0x37b3d4===_0x303adc;},'bjhrb':_0x322827(0x3d7)+'h','GvZbg':_0xd16117(0x239)+_0xd16117(0x47a),'kzOcn':function(_0x2ba108,_0x3bb6b7){return _0x2ba108!==_0x3bb6b7;},'wvsnS':_0x1a4fdd(0xd98),'NDMgQ':_0x1a4fdd(0x88f),'IbTmW':_0xd16117(0x9f5),'GvIiA':function(_0x4ed2cf,_0x24c4f8){return _0x4ed2cf===_0x24c4f8;},'RkinC':_0x453fe1(0x52b)+'t','EkwjL':_0x1a4fdd(0xace)+_0x322827(0xc88),'QgNpY':_0x453fe1(0xa65),'vjXjn':_0xd16117(0x646),'DxQBu':_0x322827(0xdec)+'n','MBtJB':_0xd16117(0xa56),'ZOFSf':_0xd16117(0x8f1),'qGUvt':_0xd16117(0xc63),'jYHUJ':_0x4ffebf(0xcc4),'whYvm':_0x4ffebf(0x846),'oEXxm':_0x453fe1(0xc08),'fYtwQ':function(_0x2a369f,_0x3b2c00){return _0x2a369f===_0x3b2c00;},'MvfqU':_0x4ffebf(0x616),'XsVVk':_0x4ffebf(0x832),'ywgQJ':function(_0x54d259,_0x13b94e){return _0x54d259===_0x13b94e;},'tRgjr':_0x1a4fdd(0xc53),'sXAbW':function(_0x517652,_0x8eb205){return _0x517652===_0x8eb205;},'DWljT':_0x1a4fdd(0xd10),'vWULk':function(_0x16d035,_0x129ffa){return _0x16d035===_0x129ffa;},'IafZN':_0x1a4fdd(0x83e),'oWFKB':_0x4ffebf(0x31e),'BkhbU':function(_0x2a74b9,_0x2e5fb6){return _0x2a74b9!==_0x2e5fb6;},'avNcf':_0x322827(0xb9d),'hEHDR':_0xd16117(0xe72),'UvgnD':function(_0x52805d,_0x179de0){return _0x52805d==_0x179de0;},'akwey':_0x4ffebf(0x850),'RflPY':_0xd16117(0xe37),'UGUZh':function(_0x30293b,_0x22f392){return _0x30293b!=_0x22f392;},'MqQWS':_0x1a4fdd(0xbb8)+'r','MUZWC':_0x4ffebf(0x766),'VWuBy':_0xd16117(0x710),'QBCvU':function(_0x366443,_0x270925){return _0x366443==_0x270925;},'urUVO':_0x4ffebf(0xa3f)+_0x4ffebf(0xa3f)+_0xd16117(0x84c),'fNeFK':function(_0x21a59d,_0x3b22b9){return _0x21a59d==_0x3b22b9;},'sFrSG':_0x1a4fdd(0xa2e)+'\x200','TuQRJ':function(_0x592ce0,_0x2aedff){return _0x592ce0===_0x2aedff;},'XCrfi':_0x322827(0xdd2),'VmBZb':function(_0x3b2428,_0x1ea29a){return _0x3b2428(_0x1ea29a);},'LUEjK':function(_0x69e1a6,_0x617040){return _0x69e1a6!=_0x617040;}},_0x26cab4=_0x105dc6[_0x4ffebf(0x9f4)+_0x1a4fdd(0xc14)+_0x1a4fdd(0x2cb)+'l']('*'),_0x3a2e8d={};_0x3a2e8d[_0x322827(0x5f5)+_0x453fe1(0xdf4)]='左上',_0x3a2e8d[_0x4ffebf(0xb54)+_0x453fe1(0xac7)]='上中',_0x3a2e8d[_0x4ffebf(0x6ac)+_0x1a4fdd(0x90d)]='右上',_0x3a2e8d[_0xd16117(0x63d)+_0xd16117(0xc87)+'T']='左中',_0x3a2e8d[_0x1a4fdd(0x67c)+'R']='中间',_0x3a2e8d[_0xd16117(0x63d)+_0x322827(0xe05)+'HT']='右中',_0x3a2e8d[_0x453fe1(0x50c)+_0x1a4fdd(0xd09)+'T']='左下',_0x3a2e8d[_0x4ffebf(0x50c)+_0x4ffebf(0xd43)+_0x1a4fdd(0xb9e)]='下中',_0x3a2e8d[_0xd16117(0x50c)+_0x322827(0x31d)+'HT']='右下';const _0x1de184=_0x3a2e8d,_0x290b67={};_0x290b67[_0x453fe1(0x821)+'00']='黑色',_0x290b67[_0x322827(0x2c1)+'ff']='白色',_0x290b67[_0x453fe1(0x626)+'00']='红色',_0x290b67[_0x453fe1(0xc57)+'00']='绿色',_0x290b67[_0xd16117(0x821)+'ff']='蓝色';const _0x58f345=_0x290b67;let _0x19e419=[],_0x381b03=[],_0x4a142e=[_0x25b909[_0x1a4fdd(0x24b)],_0x25b909[_0xd16117(0x276)],_0x25b909[_0x322827(0x4e3)],_0x25b909[_0x322827(0x9b0)],_0x25b909[_0x322827(0x6f2)],_0x25b909[_0x453fe1(0x6f5)],_0x25b909[_0x4ffebf(0x69b)]];for(let _0x53ce4e=0x2486+0x2cf*-0x2+-0xf74*0x2;_0x25b909[_0x1a4fdd(0x546)](_0x53ce4e,_0x26cab4[_0xd16117(0x8a3)+'h']);_0x53ce4e++){if(_0x25b909[_0x453fe1(0x97a)](_0x25b909[_0x4ffebf(0x856)],_0x25b909[_0x1a4fdd(0x856)]))_0x23e9c4[_0x48bf4a]++;else{const _0x5008bc=_0x26cab4[_0x53ce4e];let _0x3719b8='';if(_0x25b909[_0x322827(0xa94)](_0x5008bc[_0x4ffebf(0x4e4)+_0x322827(0xd62)+'h'],0x1adf+-0x1*0x20be+0xa7*0x9)||_0x25b909[_0x1a4fdd(0xa94)](_0x5008bc[_0xd16117(0x4e4)+_0x453fe1(0x9f0)+'ht'],0x2*-0x1e1+0xb03+0x741*-0x1)){if(_0x25b909[_0xd16117(0xa2c)](_0x25b909[_0x322827(0x8ef)],_0x25b909[_0xd16117(0x7f1)])){let _0x640a88=_0x5008bc[_0xd16117(0xd31)+'me'][_0xd16117(0x2cc)+_0xd16117(0x79c)+'e']();if(_0x25b909[_0x453fe1(0x53a)](_0x640a88,_0x25b909[_0x453fe1(0x504)])&&(_0x25b909[_0x1a4fdd(0x8c5)](_0x5008bc[_0x4ffebf(0xda1)],_0x25b909[_0x322827(0x858)])||_0x5008bc[_0x322827(0x336)+_0x453fe1(0xc2e)+'te'](_0x25b909[_0x322827(0xe2e)])&&_0x25b909[_0x322827(0xa2c)](_0x5008bc[_0xd16117(0x336)+_0x1a4fdd(0xc2e)+'te'](_0x25b909[_0xd16117(0xe2e)])[_0x322827(0x2cc)+_0x453fe1(0x79c)+'e']()[_0x1a4fdd(0x750)+'Of'](_0x25b909[_0xd16117(0x858)]),-(-0x79d+0x10*-0x19b+0x6*0x58d)))){if(_0x25b909[_0xd16117(0x1cd)](_0x25b909[_0x1a4fdd(0x25c)],_0x25b909[_0x453fe1(0xd6c)]))_0x640a88=_0x25b909[_0x453fe1(0x73a)];else{var _0x4a22ed=[],_0x2c3638=[];for(var _0x1f5409 of _0x3b2881){const _0x9abadd={};_0x9abadd[_0xd16117(0xc61)]=0x1,_0x170406[_0x1a4fdd(0x28f)]=_0x1f5409[_0x453fe1(0x699)+_0x322827(0xd50)+'t'](_0x9abadd),_0x4a22ed[_0x1a4fdd(0x1e3)](_0x1f5409[_0x1a4fdd(0xc54)+_0x4ffebf(0x5eb)+_0x1a4fdd(0x92e)]());const _0x1291a8={};_0x1291a8[_0x453fe1(0xc61)]=0x1,_0x2c3638[_0x453fe1(0x1e3)]([_0x1f5409[_0x322827(0x699)+_0x1a4fdd(0xd50)+'t'](_0x1291a8),_0x25b909[_0xd16117(0xd2b)](_0x1f5409[_0x4ffebf(0x243)+_0xd16117(0x5d6)],0x1*0xe52+0x20a4+0x2ef5*-0x1)]);}return _0x1b7001[_0x322827(0xcb1)]([_0x18a9bd[_0x453fe1(0xcb1)](_0x4a22ed),_0x2c3638]);}}else{if(_0x25b909[_0xd16117(0x53a)](_0x640a88,_0x25b909[_0xd16117(0x504)])||_0x25b909[_0x322827(0x240)](_0x640a88,_0x25b909[_0x1a4fdd(0xb66)])||_0x25b909[_0x1a4fdd(0x240)](_0x640a88,_0x25b909[_0x4ffebf(0x8dd)]))_0x25b909[_0xd16117(0x1cd)](_0x25b909[_0x4ffebf(0xd85)],_0x25b909[_0x322827(0xd85)])?_0x11b8de+=_0x11455c:_0x640a88=_0x25b909[_0x1a4fdd(0x6b6)];else{if(_0x25b909[_0x322827(0xa2c)](_0x640a88[_0x453fe1(0x750)+'Of'](_0x25b909[_0x4ffebf(0xa85)]),-(-0xdda+0x22df+-0x1504))||_0x25b909[_0x1a4fdd(0x1cd)](_0x5008bc['id'][_0x453fe1(0x750)+'Of'](_0x25b909[_0x453fe1(0xa85)]),-(0x1*-0x58a+0x1355*-0x2+0x2c35*0x1)))_0x25b909[_0x322827(0x8c5)](_0x25b909[_0x322827(0xd7a)],_0x25b909[_0xd16117(0x98e)])?_0x30c8b4+=_0x2bf008[0x1399+-0x103d+-0x35c][_0x322827(0x9d8)][_0x1a4fdd(0x6d7)+'nt']:_0x640a88='按钮';else{if(_0x25b909[_0x453fe1(0x8c5)](_0x640a88,_0x25b909[_0x322827(0x6a3)])){if(_0x25b909[_0x4ffebf(0xa2c)](_0x25b909[_0x453fe1(0x8e9)],_0x25b909[_0x322827(0x8b5)]))_0x640a88='图片';else return function(_0x2ef505){}[_0x4ffebf(0xced)+_0x453fe1(0x387)+'r'](ZryiRD[_0x322827(0x647)])[_0x1a4fdd(0xcf2)](ZryiRD[_0x4ffebf(0x869)]);}else{if(_0x25b909[_0xd16117(0x53a)](_0x640a88,_0x25b909[_0xd16117(0x6b5)]))_0x25b909[_0x1a4fdd(0x435)](_0x25b909[_0x322827(0x513)],_0x25b909[_0x453fe1(0x9f3)])?_0x3f1ae9[_0x453fe1(0x9f4)+_0x322827(0xc14)+_0x322827(0xa51)](_0x25b909[_0xd16117(0x872)])[_0xd16117(0x4d8)+_0x1a4fdd(0xb7f)]=_0xe7c01[_0xd16117(0x9f4)+_0x4ffebf(0xc14)+_0xd16117(0xa51)](_0x25b909[_0x1a4fdd(0x872)])[_0x1a4fdd(0x4d8)+_0x322827(0x50a)+'ht']:_0x640a88='表单';else _0x25b909[_0x1a4fdd(0xb62)](_0x640a88,_0x25b909[_0xd16117(0x30c)])||_0x25b909[_0x1a4fdd(0xd91)](_0x640a88,_0x25b909[_0xd16117(0x300)])?_0x25b909[_0xd16117(0xaa9)](_0x25b909[_0xd16117(0xbfd)],_0x25b909[_0xd16117(0xbfd)])?_0x640a88=_0x25b909[_0x4ffebf(0x9cf)]:(_0x52f401=_0x255572[_0x453fe1(0x4ba)+_0x453fe1(0x342)+'t'],_0x20cbff[_0x453fe1(0xd52)+'e']()):_0x25b909[_0x1a4fdd(0x313)](_0x25b909[_0xd16117(0x58c)],_0x25b909[_0x322827(0x5bb)])?_0x640a88=null:_0x26a6c9[_0x322827(0xcc6)](_0x5e82c8[_0x453fe1(0xaed)+'es'][-0x1496+0xc6c+-0x6e*-0x13][_0xd16117(0xd53)+'ge'][_0xd16117(0x6d7)+'nt'][_0x4ffebf(0x860)+_0xd16117(0x7c5)]('\x0a',''))[_0x453fe1(0x938)+'ch'](_0xab1be2=>{const _0x33d831=_0xd16117,_0x3e614c=_0x1a4fdd,_0xfeda5f=_0x1a4fdd,_0x48fc4d=_0x322827,_0xee51a6=_0xd16117;if(_0x25b909[_0x33d831(0xa94)](_0x25b909[_0x3e614c(0x543)](_0x2b6b57,_0xab1be2)[_0x3e614c(0x8a3)+'h'],-0xa4*-0x16+0x25c+-0x106f))_0x15b02f[_0x48fc4d(0x9f4)+_0xfeda5f(0xc14)+_0x48fc4d(0xa51)](_0x25b909[_0x33d831(0x1d9)])[_0x3e614c(0x6e5)+_0x3e614c(0x3cd)]+=_0x25b909[_0x3e614c(0xd2b)](_0x25b909[_0x33d831(0xc24)](_0x25b909[_0xfeda5f(0x56c)],_0x25b909[_0x33d831(0x9dd)](_0x4df73d,_0xab1be2)),_0x25b909[_0xfeda5f(0xb43)]);});}}}}if(_0x640a88&&(_0x25b909[_0x453fe1(0x55a)](_0x640a88,_0x25b909[_0xd16117(0x9cf)])||_0x5008bc[_0x1a4fdd(0xbad)]||_0x5008bc[_0x4ffebf(0xb0f)]||_0x5008bc[_0x1a4fdd(0x336)+_0x1a4fdd(0xc2e)+'te'](_0x25b909[_0xd16117(0xe2e)]))){if(_0x25b909[_0x1a4fdd(0x313)](_0x25b909[_0x4ffebf(0x3c5)],_0x25b909[_0x453fe1(0x3c5)]))try{_0x5a1f2a=_0x3ce977[_0x1a4fdd(0xcc6)](_0x25b909[_0xd16117(0xc24)](_0x3b52cd,_0x249fa9))[_0x25b909[_0x1a4fdd(0xd0e)]],_0x199da2='';}catch(_0xc443d7){_0x59e219=_0x2d7e2c[_0x453fe1(0xcc6)](_0x3341f0)[_0x25b909[_0x4ffebf(0xd0e)]],_0x1d678d='';}else{_0x3719b8+=_0x640a88;if(_0x5008bc[_0x4ffebf(0xbad)]){if(_0x25b909[_0x453fe1(0x240)](_0x25b909[_0xd16117(0x2d8)],_0x25b909[_0x453fe1(0x2d8)])){if(_0x25b909[_0x322827(0xbc0)](_0x5008bc[_0x453fe1(0xbad)][_0x1a4fdd(0x750)+'Of'](_0x25b909[_0x4ffebf(0xc8a)]),-(0x4*0x34a+0x991*0x2+-0x2049))||_0x4a142e[_0xd16117(0x731)+_0x1a4fdd(0xe03)](_0x5008bc[_0xd16117(0xbad)][_0x4ffebf(0x2cc)+_0xd16117(0x79c)+'e']()))continue;_0x3719b8+=':“'+_0x5008bc[_0xd16117(0xbad)]+'';}else return _0x25b909[_0xd16117(0x6bf)](_0xa132e9,_0x25b909[_0x1a4fdd(0x6bf)](_0x20f51d,_0x3d33c0));}else{if(_0x5008bc[_0x453fe1(0xb0f)]||_0x5008bc[_0x1a4fdd(0x336)+_0xd16117(0xc2e)+'te'](_0x25b909[_0x322827(0xe2e)])){if(_0x25b909[_0x453fe1(0x1cd)](_0x25b909[_0x4ffebf(0xba3)],_0x25b909[_0x322827(0x69a)])){if(_0x381b03[_0x453fe1(0x731)+_0x322827(0xe03)](_0x5008bc[_0xd16117(0xb0f)]||_0x5008bc[_0x4ffebf(0x336)+_0xd16117(0xc2e)+'te'](_0x25b909[_0x322827(0xe2e)])))continue;if((_0x5008bc[_0xd16117(0xb0f)]||_0x5008bc[_0x1a4fdd(0x336)+_0x4ffebf(0xc2e)+'te'](_0x25b909[_0x1a4fdd(0xe2e)]))[_0x4ffebf(0x731)+_0x322827(0xe03)](_0x25b909[_0x1a4fdd(0xc8a)])||_0x4a142e[_0x1a4fdd(0x731)+_0x4ffebf(0xe03)]((_0x5008bc[_0x4ffebf(0xb0f)]||_0x5008bc[_0x4ffebf(0x336)+_0x4ffebf(0xc2e)+'te'](_0x25b909[_0x322827(0xe2e)]))[_0x4ffebf(0x2cc)+_0xd16117(0x79c)+'e']()))continue;_0x3719b8+=':“'+(_0x5008bc[_0x1a4fdd(0xb0f)]||_0x5008bc[_0x322827(0x336)+_0x322827(0xc2e)+'te'](_0x25b909[_0x322827(0xe2e)]))+'',_0x381b03[_0x4ffebf(0x1e3)](_0x5008bc[_0xd16117(0xb0f)]||_0x5008bc[_0x453fe1(0x336)+_0x322827(0xc2e)+'te'](_0x25b909[_0x322827(0xe2e)]));}else _0xb00459=_0x1b496b[_0xd16117(0xcc6)](_0x3aeb35)[_0x25b909[_0xd16117(0xd0e)]],_0x46f07d='';}}if((_0x5008bc[_0xd16117(0xcab)][_0x322827(0xa8b)]||window[_0x453fe1(0xdbe)+_0x322827(0x461)+_0xd16117(0x9a3)+'e'](_0x5008bc)[_0x453fe1(0x3a4)+_0xd16117(0x486)+_0x1a4fdd(0x8ac)]||window[_0x4ffebf(0xdbe)+_0x322827(0x461)+_0x1a4fdd(0x9a3)+'e'](_0x5008bc)[_0x322827(0xa8b)])&&_0x25b909[_0xd16117(0x94d)]((''+(_0x5008bc[_0x453fe1(0xcab)][_0x322827(0xa8b)]||window[_0x1a4fdd(0xdbe)+_0x322827(0x461)+_0x4ffebf(0x9a3)+'e'](_0x5008bc)[_0x453fe1(0x3a4)+_0x1a4fdd(0x486)+_0x4ffebf(0x8ac)]||window[_0x4ffebf(0xdbe)+_0x322827(0x461)+_0xd16117(0x9a3)+'e'](_0x5008bc)[_0xd16117(0xa8b)]))[_0xd16117(0x750)+'Of'](_0x25b909[_0x1a4fdd(0x95f)]),-(-0x1e9a+0x17*0x155+-0x8))&&_0x25b909[_0x1a4fdd(0xc8f)]((''+(_0x5008bc[_0xd16117(0xcab)][_0x1a4fdd(0xa8b)]||window[_0x322827(0xdbe)+_0x1a4fdd(0x461)+_0xd16117(0x9a3)+'e'](_0x5008bc)[_0x1a4fdd(0x3a4)+_0x1a4fdd(0x486)+_0x322827(0x8ac)]||window[_0x322827(0xdbe)+_0x4ffebf(0x461)+_0x1a4fdd(0x9a3)+'e'](_0x5008bc)[_0x322827(0xa8b)]))[_0x1a4fdd(0x750)+'Of'](_0x25b909[_0x322827(0x5cf)]),-(0x2*0x133d+-0x69*-0x4+-0x3*0xd5f))){if(_0x25b909[_0x322827(0xcbc)](_0x25b909[_0x453fe1(0xd05)],_0x25b909[_0xd16117(0xd05)]))_0x3719b8+=_0x1a4fdd(0xda6)+(_0x5008bc[_0x1a4fdd(0xcab)][_0xd16117(0xa8b)]||window[_0x1a4fdd(0xdbe)+_0x4ffebf(0x461)+_0x453fe1(0x9a3)+'e'](_0x5008bc)[_0x453fe1(0x3a4)+_0x1a4fdd(0x486)+_0x1a4fdd(0x8ac)]||window[_0xd16117(0xdbe)+_0x1a4fdd(0x461)+_0x4ffebf(0x9a3)+'e'](_0x5008bc)[_0xd16117(0xa8b)]);else{if(_0x25b909[_0x4ffebf(0x546)](_0x25b909[_0xd16117(0xd2b)](_0x25b909[_0x453fe1(0xc24)](_0x36de2e,_0x557c6d[_0x4a8591]),'\x0a')[_0x453fe1(0x8a3)+'h'],0x17d*-0x11+-0x3a1*-0x2+-0xef*-0x15))_0xeb2085=_0x25b909[_0x1a4fdd(0xc24)](_0x25b909[_0xd16117(0xc24)](_0x51f40b,_0x4ecbc6[_0x331b6f]),'\x0a');}}const _0x5c5963=_0x25b909[_0xd16117(0x491)](getElementPosition,_0x5008bc);_0x3719b8+=_0x322827(0xa46)+_0x5c5963;}}}else _0x50f057='图片';}if(_0x3719b8&&_0x25b909[_0x4ffebf(0x84b)](_0x3719b8,''))_0x19e419[_0xd16117(0x1e3)](_0x3719b8);}}return _0x25b909[_0x453fe1(0x491)](unique,_0x19e419);}function unique(_0x4e85ce){const _0xa3b068=_0x2656;return Array[_0xa3b068(0x1f2)](new Set(_0x4e85ce));}function getElementPosition(_0x51a193){const _0xe88714=_0x2656,_0x288aaa=_0x2656,_0x1f4632=_0x2656,_0x4154a6=_0x2656,_0x428ca9=_0x2656,_0x58ea37={'IBGwG':function(_0x59dc6b,_0x4d875e){return _0x59dc6b(_0x4d875e);},'ZRPxQ':_0xe88714(0x201)+_0xe88714(0xaf2),'OoZNM':function(_0x5cca7b,_0x4e0c26){return _0x5cca7b(_0x4e0c26);},'xvPyG':_0x1f4632(0xdee)+'ss','ZprDi':_0x4154a6(0x27d)+_0x288aaa(0x2a6)+_0x428ca9(0x48a),'CphUL':function(_0x29be1b,_0x57629e){return _0x29be1b<_0x57629e;},'sDyOW':function(_0x36e550,_0x20e9bf){return _0x36e550+_0x20e9bf;},'BxCPX':function(_0x434ee6,_0x26da0f){return _0x434ee6+_0x26da0f;},'rjNKz':function(_0x49711c,_0x116fad){return _0x49711c+_0x116fad;},'rYOVl':_0x1f4632(0x646),'jojuV':function(_0x357be8,_0x518584){return _0x357be8/_0x518584;},'dKnka':function(_0x555d6e,_0x43aed4){return _0x555d6e+_0x43aed4;},'lxtHt':function(_0x2034e9,_0x4e2773){return _0x2034e9/_0x4e2773;},'uOOiC':function(_0x1fd3a3,_0x1b2303){return _0x1fd3a3<_0x1b2303;},'wOrlE':function(_0x4c87d7,_0x5897f9){return _0x4c87d7/_0x5897f9;},'DmLqx':function(_0x1869bb,_0x205121){return _0x1869bb!==_0x205121;},'LOQJx':_0x288aaa(0x830),'FwwhQ':_0x288aaa(0x23c),'rHWLe':function(_0x25e879,_0x44a10b){return _0x25e879>_0x44a10b;},'seWMF':function(_0x43ccbe,_0x58b062){return _0x43ccbe/_0x58b062;},'LzpwM':function(_0x256056,_0x1c793a){return _0x256056*_0x1c793a;},'NrExF':function(_0x592edc,_0x5e2639){return _0x592edc!==_0x5e2639;},'LIzaA':_0xe88714(0x84a),'jkdtr':function(_0x20ed36,_0x57363f){return _0x20ed36!==_0x57363f;},'YRbLY':_0x428ca9(0x866),'fVuVG':_0xe88714(0xa57),'RsXen':function(_0x94137,_0x4faa42){return _0x94137<_0x4faa42;},'itTLO':function(_0x38ecca,_0x342f11){return _0x38ecca/_0x342f11;},'JtYGD':function(_0x1d424b,_0x341d48){return _0x1d424b===_0x341d48;},'rsErm':_0x4154a6(0xcb6),'EAEbp':_0x288aaa(0xb1c),'IGvDs':function(_0x473359,_0x5669f3){return _0x473359>_0x5669f3;},'ibVVV':function(_0x217e65,_0x1a3889){return _0x217e65*_0x1a3889;},'KIKvG':function(_0xaa8bde,_0x4075ee){return _0xaa8bde===_0x4075ee;},'XYiwF':_0x288aaa(0x223),'Vfgjn':function(_0x47260f,_0x5314de){return _0x47260f===_0x5314de;},'gpJmc':_0x1f4632(0xc41)},_0x2975f7=_0x51a193[_0x4154a6(0xdf9)+_0xe88714(0x918)+_0x1f4632(0xb6d)+_0x4154a6(0xc7e)+'t'](),_0x592e3b=_0x58ea37[_0x1f4632(0x622)](_0x2975f7[_0xe88714(0x3e2)],_0x58ea37[_0x4154a6(0x8a6)](_0x2975f7[_0x4154a6(0x8a7)],0x5c5*-0x1+0xafa+-0x533)),_0x960d6f=_0x58ea37[_0x1f4632(0xc15)](_0x2975f7[_0xe88714(0xe19)],_0x58ea37[_0x428ca9(0x6ec)](_0x2975f7[_0x4154a6(0x237)+'t'],0x203c+-0x2538+0x4fe));let _0x49ecdd='';if(_0x58ea37[_0xe88714(0xc4e)](_0x592e3b,_0x58ea37[_0x288aaa(0x4af)](window[_0x288aaa(0x6e5)+_0x4154a6(0x583)],0x1edd+0x11*-0x21a+0x4e0)))_0x58ea37[_0x428ca9(0x7a1)](_0x58ea37[_0x4154a6(0x58f)],_0x58ea37[_0x4154a6(0x3a1)])?_0x49ecdd+='':MQEFRe[_0x288aaa(0x7a6)](_0x2e7b7d,0x2*0xf2e+0x1*0x67a+0x24d6*-0x1);else{if(_0x58ea37[_0x4154a6(0xd87)](_0x592e3b,_0x58ea37[_0xe88714(0xe47)](_0x58ea37[_0x1f4632(0x1d5)](window[_0x1f4632(0x6e5)+_0x288aaa(0x583)],0x1*-0x78b+-0x6*0x425+0x206b),0x1*-0x9d+-0x2*0x1070+-0x40*-0x86)))_0x58ea37[_0x1f4632(0xdab)](_0x58ea37[_0x288aaa(0x2e9)],_0x58ea37[_0x288aaa(0x2e9)])?_0x23ad02[_0x4154a6(0x6d7)+_0xe88714(0x9c0)+_0x1f4632(0x413)][_0x4154a6(0x979)+_0x288aaa(0xa36)+_0xe88714(0xc81)+_0xe88714(0x5b4)][_0x1f4632(0x327)+_0x428ca9(0x980)]['on'](_0x58ea37[_0xe88714(0xde4)],function(_0x3bef23){const _0x18ab2f=_0x1f4632,_0x18a375=_0x4154a6,_0x139022=_0x1f4632,_0x2f72ae=_0x428ca9;_0x55dd16[_0x18ab2f(0x6ba)](_0x58ea37[_0x18a375(0xa8a)]),_0x58ea37[_0x18a375(0xa63)](_0x3accdf,_0x58ea37[_0x18a375(0xca2)]);}):_0x49ecdd+='';else{if(_0x58ea37[_0x428ca9(0x6e0)](_0x58ea37[_0x288aaa(0x460)],_0x58ea37[_0xe88714(0x890)]))_0x49ecdd+='';else{if(_0x58ea37[_0x288aaa(0xd20)](_0x58ea37[_0x4154a6(0x622)](_0x58ea37[_0x428ca9(0x622)](_0x136b04,_0x5863cc[_0x2cf019]),'\x0a')[_0x288aaa(0x8a3)+'h'],-0x10bb*-0x1+-0x1536+0x7ff))_0x124bef=_0x58ea37[_0x4154a6(0x59a)](_0x58ea37[_0x1f4632(0x6a5)](_0x42ac06,_0xea677[_0x2fc177]),'\x0a');}}}if(_0x58ea37[_0x428ca9(0x315)](_0x960d6f,_0x58ea37[_0x428ca9(0xdef)](window[_0x288aaa(0x6e5)+_0x4154a6(0xa1e)+'t'],0x1260+0x122c+-0x2489)))_0x58ea37[_0x428ca9(0x21f)](_0x58ea37[_0x1f4632(0x851)],_0x58ea37[_0x4154a6(0x442)])?(_0x43a394=_0x399646[_0x288aaa(0x4ba)+_0x4154a6(0x342)+'t'],_0x27a46a[_0x4154a6(0xd52)+'e']()):_0x49ecdd+='';else{if(_0x58ea37[_0x288aaa(0x597)](_0x960d6f,_0x58ea37[_0x4154a6(0xe47)](_0x58ea37[_0x288aaa(0x7e7)](window[_0xe88714(0x6e5)+_0x4154a6(0xa1e)+'t'],0x2655+0x1*-0x24b+0x481*-0x8),-0x26+-0xd5+0xfe))){if(_0x58ea37[_0x4154a6(0xe01)](_0x58ea37[_0x428ca9(0x3a2)],_0x58ea37[_0x428ca9(0x3a2)]))_0x49ecdd+='';else return![];}else _0x58ea37[_0x1f4632(0x99c)](_0x58ea37[_0x1f4632(0x5e8)],_0x58ea37[_0x288aaa(0x5e8)])?_0x49ecdd+='':_0x182795=_0x58ea37[_0xe88714(0x20d)];}return _0x49ecdd;}function stringToArrayBuffer(_0x394024){const _0x3fe600=_0x2656,_0x472862=_0x2656,_0x107b8d=_0x2656,_0x4c299d=_0x2656,_0x69b91b=_0x2656,_0x30cf21={'yBjaP':function(_0x4a3933,_0x4a727e){return _0x4a3933(_0x4a727e);},'lyxpk':_0x3fe600(0x5f3)+_0x472862(0xe0f),'TJjvV':_0x107b8d(0x9e3)+_0x4c299d(0x6e2)+'d','FEGKE':function(_0x22607d,_0x3adbd0){return _0x22607d(_0x3adbd0);},'itBJd':_0x3fe600(0xdee)+'ss','oUEPl':function(_0x59a2e4,_0x3ef03a){return _0x59a2e4===_0x3ef03a;},'dTYpH':_0x472862(0xdb8),'jybGC':function(_0x253ac9,_0x33db04){return _0x253ac9<_0x33db04;},'mHiJI':function(_0x372395,_0x273830){return _0x372395!==_0x273830;},'gspws':_0x3fe600(0xc6a),'KNWLl':_0x107b8d(0x4f4)};if(!_0x394024)return;try{if(_0x30cf21[_0x69b91b(0x5b0)](_0x30cf21[_0x69b91b(0x804)],_0x30cf21[_0x3fe600(0x804)])){var _0x57ce0e=new ArrayBuffer(_0x394024[_0x3fe600(0x8a3)+'h']),_0x54e89b=new Uint8Array(_0x57ce0e);for(var _0x30a6ac=0x2559*0x1+-0x1*0x13d1+-0x5d8*0x3,_0xa918cd=_0x394024[_0x472862(0x8a3)+'h'];_0x30cf21[_0x472862(0x98c)](_0x30a6ac,_0xa918cd);_0x30a6ac++){if(_0x30cf21[_0x3fe600(0xdeb)](_0x30cf21[_0x4c299d(0xc00)],_0x30cf21[_0x107b8d(0xdf5)]))_0x54e89b[_0x30a6ac]=_0x394024[_0x472862(0x46d)+_0x107b8d(0xe4a)](_0x30a6ac);else try{_0xc21a5=_0x30cf21[_0x472862(0x5ca)](_0x3880bc,_0x32a721);const _0x1a6a52={};return _0x1a6a52[_0x69b91b(0x88a)]=_0x30cf21[_0x3fe600(0x590)],_0x1538c6[_0x3fe600(0x8a1)+'e'][_0x4c299d(0x357)+'pt'](_0x1a6a52,_0x5e1a61,_0xebc939);}catch(_0x52046c){}}return _0x57ce0e;}else _0x15c80c[_0x3fe600(0x6ba)](_0x30cf21[_0x4c299d(0x5fe)]),_0x30cf21[_0x107b8d(0xd23)](_0x2bbb28,_0x30cf21[_0x107b8d(0xc77)]);}catch(_0x5548d7){}}function arrayBufferToString(_0xa73ed6){const _0x40f341=_0x2656,_0x2b1350=_0x2656,_0x3958bf=_0x2656,_0xe504ef=_0x2656,_0x336096=_0x2656,_0x55fb5d={};_0x55fb5d[_0x40f341(0x535)]=function(_0x35af95,_0x138d2d){return _0x35af95<_0x138d2d;},_0x55fb5d[_0x2b1350(0x9eb)]=function(_0x2e83bd,_0xe4457e){return _0x2e83bd+_0xe4457e;},_0x55fb5d[_0x2b1350(0x78f)]=_0xe504ef(0xaed)+'es',_0x55fb5d[_0xe504ef(0xd96)]=function(_0x44ef60,_0x451deb){return _0x44ef60!==_0x451deb;},_0x55fb5d[_0x3958bf(0x62f)]=_0x3958bf(0xb6f),_0x55fb5d[_0x40f341(0x711)]=_0x336096(0x32c),_0x55fb5d[_0x40f341(0x5ac)]=function(_0x29fce6,_0x2f3bc5){return _0x29fce6===_0x2f3bc5;},_0x55fb5d[_0x40f341(0x95e)]=_0x336096(0xd1d);const _0x58aa8b=_0x55fb5d;try{if(_0x58aa8b[_0x336096(0xd96)](_0x58aa8b[_0x40f341(0x62f)],_0x58aa8b[_0x2b1350(0x711)])){var _0x2bb30f=new Uint8Array(_0xa73ed6),_0x3f65ed='';for(var _0x2074a2=0xf26+0x1*0x1a1f+-0x2945;_0x58aa8b[_0xe504ef(0x535)](_0x2074a2,_0x2bb30f[_0xe504ef(0x80d)+_0x2b1350(0xa66)]);_0x2074a2++){if(_0x58aa8b[_0x2b1350(0x5ac)](_0x58aa8b[_0x3958bf(0x95e)],_0x58aa8b[_0x2b1350(0x95e)]))_0x3f65ed+=String[_0x40f341(0x415)+_0x336096(0xae1)+_0x40f341(0x737)](_0x2bb30f[_0x2074a2]);else{var _0x5f5a83=new _0xcece7(_0x57dc06[_0xe504ef(0x8a3)+'h']),_0x2925b3=new _0x2badb1(_0x5f5a83);for(var _0x51d54a=-0x142d+0x91+0x139c,_0x4f2493=_0xc0cfb9[_0x336096(0x8a3)+'h'];_0x58aa8b[_0x3958bf(0x535)](_0x51d54a,_0x4f2493);_0x51d54a++){_0x2925b3[_0x51d54a]=_0x5c2b09[_0x336096(0x46d)+_0x3958bf(0xe4a)](_0x51d54a);}return _0x5f5a83;}}return _0x3f65ed;}else try{_0x5598c4=_0x3c3e11[_0x40f341(0xcc6)](_0x58aa8b[_0x40f341(0x9eb)](_0x346748,_0x18c051))[_0x58aa8b[_0x3958bf(0x78f)]],_0x4e8d0e='';}catch(_0x4b0ff9){_0xab4a8b=_0xad1675[_0xe504ef(0xcc6)](_0x1a6a76)[_0x58aa8b[_0x3958bf(0x78f)]],_0x14743e='';}}catch(_0x1ee18a){}}function importPrivateKey(_0x412b52){const _0x338c30=_0x2656,_0x5ee6ef=_0x2656,_0x4247a4=_0x2656,_0x105402=_0x2656,_0x26458a=_0x2656,_0xb0d9c6={'GHyPl':_0x338c30(0x9a1)+_0x338c30(0xa2b)+_0x5ee6ef(0x2b7)+_0x5ee6ef(0x5d0)+_0x5ee6ef(0x83d)+'--','LxVZF':_0x338c30(0x9a1)+_0x26458a(0x63e)+_0x26458a(0x21e)+_0x26458a(0x2e1)+_0x105402(0x9a1),'CqZtz':function(_0x302e6c,_0x5862a1){return _0x302e6c-_0x5862a1;},'dRsfy':function(_0x267f35,_0x2d1dbf){return _0x267f35(_0x2d1dbf);},'VHRGk':function(_0x262749,_0x4ab948){return _0x262749(_0x4ab948);},'ASTMt':_0x4247a4(0xbc8),'FNuet':_0x105402(0x5f3)+_0x4247a4(0xe0f),'Amxyr':_0x4247a4(0xdc5)+'56','rDUiN':_0x105402(0xe35)+'pt'},_0x32bf1d=_0xb0d9c6[_0x26458a(0x9de)],_0x5ca3d6=_0xb0d9c6[_0x338c30(0x747)],_0x5908f4=_0x412b52[_0x4247a4(0xb52)+_0x105402(0xa59)](_0x32bf1d[_0x4247a4(0x8a3)+'h'],_0xb0d9c6[_0x4247a4(0x7e8)](_0x412b52[_0x105402(0x8a3)+'h'],_0x5ca3d6[_0x4247a4(0x8a3)+'h'])),_0x3f87a5=_0xb0d9c6[_0x26458a(0x3c3)](atob,_0x5908f4),_0x4b302c=_0xb0d9c6[_0x4247a4(0x886)](stringToArrayBuffer,_0x3f87a5);return crypto[_0x5ee6ef(0x8a1)+'e'][_0x105402(0x792)+_0x26458a(0x2c5)](_0xb0d9c6[_0x5ee6ef(0x4b6)],_0x4b302c,{'name':_0xb0d9c6[_0x105402(0x1da)],'hash':_0xb0d9c6[_0x5ee6ef(0x4fc)]},!![],[_0xb0d9c6[_0x105402(0x88d)]]);}function importPublicKey(_0x17c9a1){const _0x362924=_0x2656,_0x4c8633=_0x2656,_0x205d50=_0x2656,_0x2d5f45=_0x2656,_0xe28b33=_0x2656,_0x7db322={'kRAHq':_0x362924(0xd61)+_0x362924(0x595),'uVwjw':function(_0xa1e0a7,_0x331ad7){return _0xa1e0a7===_0x331ad7;},'lwaCz':_0x362924(0xc59),'apakB':function(_0x1331c3,_0x5db439){return _0x1331c3>_0x5db439;},'IxxAr':function(_0x37e06e,_0x33b13f,_0x297b67){return _0x37e06e(_0x33b13f,_0x297b67);},'jFTgI':function(_0x17050e,_0x5246df){return _0x17050e+_0x5246df;},'wnfbJ':function(_0x1b43f7,_0xb03b00,_0x21828e){return _0x1b43f7(_0xb03b00,_0x21828e);},'RcbeS':function(_0x10ad3c,_0x121e92){return _0x10ad3c+_0x121e92;},'uGuxo':function(_0x6022ea,_0x5d2a6e){return _0x6022ea+_0x5d2a6e;},'Ivgvc':function(_0x2c879d,_0x1b35a5){return _0x2c879d<_0x1b35a5;},'pwLOM':function(_0x11ae23,_0x2050d8){return _0x11ae23+_0x2050d8;},'KTwdL':_0x205d50(0xe48)+'\x20','fbNpS':_0x4c8633(0x32a)+_0x2d5f45(0xd15)+_0x2d5f45(0x8f2)+_0x2d5f45(0x2c4)+_0x205d50(0x408)+_0x362924(0x20e)+_0x362924(0x459)+_0x2d5f45(0x906)+_0x362924(0x7a2)+_0xe28b33(0xcd8)+_0x362924(0x908)+_0x362924(0x738)+_0x4c8633(0x4ab)+_0x362924(0x6e7)+'果:','Livmv':function(_0x323d55,_0x5d7043){return _0x323d55+_0x5d7043;},'PgPZE':function(_0x5e88bc,_0x2e4014){return _0x5e88bc!==_0x2e4014;},'QSfyq':_0xe28b33(0x296),'QzCWX':_0x362924(0xcb8),'NbhPK':_0x362924(0x4bf)+_0x4c8633(0x61b),'TYtYP':_0x2d5f45(0xd61)+_0x4c8633(0xe2b)+'t','phrhh':_0x4c8633(0x5a6)+_0x2d5f45(0xc28),'TqIts':_0xe28b33(0x3df),'roQSu':function(_0x302736,_0x5e0980){return _0x302736!==_0x5e0980;},'uQvjg':_0x4c8633(0xa72),'YWyOz':_0x4c8633(0x452),'NZyyL':_0x2d5f45(0x317),'fKfVc':_0xe28b33(0xbb5)+_0x2d5f45(0x6ca)+'+$','oIfAU':_0x205d50(0x7d3),'GqvZu':function(_0x284d13,_0x4b49a){return _0x284d13!==_0x4b49a;},'rBtes':_0x205d50(0x490),'dFuyC':function(_0xb3d202){return _0xb3d202();},'NBYYs':_0x205d50(0xcb3),'cGkLK':_0x2d5f45(0x466),'SrtlM':function(_0x36c76a,_0x471b61){return _0x36c76a!==_0x471b61;},'wIAjw':_0x4c8633(0xd7c),'tccgy':_0x4c8633(0x5ef),'PBFYg':function(_0x5b49d8,_0x279309){return _0x5b49d8>_0x279309;},'jSSue':function(_0x5bea1c,_0x3be168){return _0x5bea1c(_0x3be168);},'yIWei':_0x4c8633(0xd61)+_0x4c8633(0x64d),'iVUaj':function(_0x28a88e,_0x5c270b){return _0x28a88e+_0x5c270b;},'UhbXQ':_0x2d5f45(0xd1f)+_0xe28b33(0x819)+_0x2d5f45(0x85e)+_0xe28b33(0x687)+_0x362924(0x81c)+_0x362924(0x52a)+_0x205d50(0x2dc)+_0x2d5f45(0x551)+_0x4c8633(0xdd1)+_0xe28b33(0x7ab)+_0x362924(0x492),'fJknS':_0x2d5f45(0x82f)+_0x2d5f45(0xbf5),'LgRKo':_0x4c8633(0x891),'ANjno':_0x2d5f45(0x952),'coGsL':_0x2d5f45(0x556)+_0x362924(0x45d)+_0x2d5f45(0xdc7)+')','vUrtk':_0x2d5f45(0x37b)+_0x362924(0x6cc)+_0x4c8633(0x624)+_0x2d5f45(0x4e7)+_0x2d5f45(0x203)+_0x205d50(0x984)+_0xe28b33(0x41b),'ftFWp':_0x4c8633(0x74e),'yhtwl':_0x4c8633(0xd2c),'fNyUG':function(_0x3711ee,_0x289356){return _0x3711ee+_0x289356;},'YIxgi':_0xe28b33(0xa38),'KOlJW':_0x4c8633(0x80e),'vZcqZ':_0xe28b33(0x9c1),'FQbRw':_0xe28b33(0xc09),'Omgrm':function(_0x3c4f83,_0x36ca60){return _0x3c4f83(_0x36ca60);},'rtkrn':_0x4c8633(0xadf)+_0x205d50(0x885)+_0x362924(0xa16)+_0xe28b33(0x575),'gjwKv':_0x205d50(0x761)+_0x2d5f45(0xba2)+_0x362924(0x43f)+_0xe28b33(0xa42)+_0x205d50(0xb3c)+_0x4c8633(0x29a)+'\x20)','BQbLu':_0xe28b33(0xc73),'JtzRx':_0x362924(0x5f1),'omAcH':function(_0x492f64,_0x477547,_0xf01a38){return _0x492f64(_0x477547,_0xf01a38);},'BqXqj':_0x362924(0x824),'jkHYE':_0x2d5f45(0x294),'GWjNe':_0x2d5f45(0x5ba),'QQlBJ':_0x205d50(0xdca),'NUJvr':_0x205d50(0x62d),'qmifr':_0x362924(0x6f6),'qZYvz':function(_0x4ca109,_0x35677a){return _0x4ca109!==_0x35677a;},'jnWmR':_0x362924(0x870),'rIpMB':_0x4c8633(0xa27),'XIpFE':_0x362924(0x532),'nhuTn':_0x4c8633(0xb06),'JrfZL':function(_0x466d65,_0x1f9c87){return _0x466d65===_0x1f9c87;},'vohXW':_0x362924(0x52e),'feWVw':function(_0x4d142f,_0x365935){return _0x4d142f-_0x365935;},'AesQO':_0x362924(0xaed)+'es','znuYY':function(_0x294c64,_0x555682){return _0x294c64+_0x555682;},'oXGjO':function(_0x2589fd,_0x5e223d){return _0x2589fd(_0x5e223d);},'jWyYA':function(_0x4a4ca8,_0x52668b){return _0x4a4ca8+_0x52668b;},'FasLQ':function(_0x548edf,_0x3754f6){return _0x548edf===_0x3754f6;},'AEHVH':_0xe28b33(0x2d7),'kOXOd':function(_0x72ea14){return _0x72ea14();},'Xnnhf':_0x4c8633(0x6ba),'UADXF':_0x205d50(0x2d1),'txrMi':_0xe28b33(0x4f5),'JrXIj':_0x4c8633(0x292),'MRvbs':_0x205d50(0xd26)+_0x4c8633(0xa98),'BVQYI':_0x205d50(0x519),'eLYqg':_0x2d5f45(0x3bb),'JDIIP':function(_0x3de2e1,_0x3fa504){return _0x3de2e1<_0x3fa504;},'nqyoC':_0xe28b33(0x703),'pqzqP':_0x2d5f45(0x9a1)+_0xe28b33(0xa2b)+_0x2d5f45(0xb42)+_0x4c8633(0x3e5)+_0xe28b33(0xb1f)+'-','vLkHu':_0x4c8633(0x9a1)+_0x2d5f45(0x63e)+_0x2d5f45(0xba1)+_0x2d5f45(0x8a9)+_0x2d5f45(0x6b3),'StZBZ':function(_0x4ae521,_0x5bf722){return _0x4ae521(_0x5bf722);},'EDxlc':_0xe28b33(0xc66),'BlHMo':_0x2d5f45(0x5f3)+_0x4c8633(0xe0f),'GzDjG':_0x205d50(0xdc5)+'56','VjPFg':_0x362924(0x357)+'pt'},_0x332bf8=(function(){const _0x31cd9f=_0x362924,_0x192922=_0x2d5f45,_0xf38e31=_0xe28b33,_0x2f86af=_0x362924,_0x29cf89=_0x4c8633,_0x2d8967={'aaDGx':function(_0x2592ec,_0x5eb47c){const _0x44d2db=_0x2656;return _0x7db322[_0x44d2db(0x5e7)](_0x2592ec,_0x5eb47c);},'RIVjn':function(_0x16bf3c,_0xb01560){const _0x3d7122=_0x2656;return _0x7db322[_0x3d7122(0x549)](_0x16bf3c,_0xb01560);},'lXJpq':_0x7db322[_0x31cd9f(0x894)],'slygO':_0x7db322[_0x31cd9f(0xc0b)],'RZdrP':function(_0x37323f,_0x23f67b){const _0x466d08=_0x192922;return _0x7db322[_0x466d08(0x61f)](_0x37323f,_0x23f67b);},'ItOoQ':function(_0x3b8e3b,_0x59bfbd){const _0x3c0343=_0x192922;return _0x7db322[_0x3c0343(0x205)](_0x3b8e3b,_0x59bfbd);},'SdFLf':_0x7db322[_0x31cd9f(0xd03)],'DqiBU':function(_0x9238d3,_0x1297d5){const _0x525004=_0x31cd9f;return _0x7db322[_0x525004(0xb32)](_0x9238d3,_0x1297d5);},'hraKH':_0x7db322[_0x2f86af(0xa30)],'TidyZ':_0x7db322[_0x31cd9f(0xaaf)],'stvYv':_0x7db322[_0x31cd9f(0x8c0)],'QcdFe':_0x7db322[_0x192922(0x7d7)],'EhEMq':_0x7db322[_0x192922(0x66f)]};if(_0x7db322[_0x29cf89(0xb73)](_0x7db322[_0xf38e31(0xdba)],_0x7db322[_0x31cd9f(0xd55)])){let _0x2b8418=!![];return function(_0xc91b19,_0x521fd1){const _0x6387d7=_0x31cd9f,_0x2ba852=_0x29cf89,_0x45a691=_0x29cf89,_0x5910d9=_0x192922,_0x452b35=_0xf38e31,_0xd9a134={};_0xd9a134[_0x6387d7(0x43a)]=_0x7db322[_0x2ba852(0x66e)];const _0xffcdd1=_0xd9a134;if(_0x7db322[_0x6387d7(0xb32)](_0x7db322[_0x6387d7(0x974)],_0x7db322[_0x6387d7(0x974)])){const _0x4015b4=_0x2b8418?function(){const _0x3945ea=_0x5910d9,_0x5a2900=_0x6387d7,_0x5668aa=_0x6387d7,_0x47d437=_0x45a691,_0x5019b4=_0x45a691,_0x4a642b={'NEzUp':function(_0x110a5c,_0x2ee254){const _0xc5c8b9=_0x2656;return _0x2d8967[_0xc5c8b9(0x32d)](_0x110a5c,_0x2ee254);},'qONnm':function(_0x80285,_0xb6fa8d){const _0x11b0df=_0x2656;return _0x2d8967[_0x11b0df(0x864)](_0x80285,_0xb6fa8d);},'rQuYz':_0x2d8967[_0x3945ea(0xbf6)],'oGNot':_0x2d8967[_0x3945ea(0x368)],'GNBTT':function(_0x5b793b,_0xd0e3bb){const _0x1dd318=_0x3945ea;return _0x2d8967[_0x1dd318(0x8ab)](_0x5b793b,_0xd0e3bb);}};if(_0x2d8967[_0x5a2900(0x743)](_0x2d8967[_0x3945ea(0x40c)],_0x2d8967[_0x5019b4(0x40c)]))_0xb8ee1[_0x5668aa(0x9f4)+_0x3945ea(0xc14)+_0x5a2900(0xa51)](_0xffcdd1[_0x5668aa(0x43a)])[_0x5a2900(0x4d8)+_0x3945ea(0xb7f)]=_0x290630[_0x3945ea(0x9f4)+_0x5a2900(0xc14)+_0x3945ea(0xa51)](_0xffcdd1[_0x5a2900(0x43a)])[_0x5019b4(0x4d8)+_0x5019b4(0x50a)+'ht'];else{if(_0x521fd1){if(_0x2d8967[_0x5668aa(0xbe3)](_0x2d8967[_0x5668aa(0x5c5)],_0x2d8967[_0x5668aa(0x5c5)])){const _0x3ca00e=_0x521fd1[_0x5668aa(0xcf2)](_0xc91b19,arguments);return _0x521fd1=null,_0x3ca00e;}else{if(_0x4a642b[_0x5a2900(0xa5d)](_0x4a642b[_0x5668aa(0xd48)](_0x4a642b[_0x47d437(0xd48)](_0x4a642b[_0x47d437(0xd48)](_0x4a642b[_0x3945ea(0xd48)](_0x4a642b[_0x5a2900(0xd48)](_0x46095d,_0x247efc[_0x47d437(0x790)][_0x427867]),'\x0a'),_0x4a642b[_0x5668aa(0x449)]),_0x38ac9a),_0x4a642b[_0x5019b4(0xd06)])[_0x5a2900(0x8a3)+'h'],-0x1ff*0xb+0xdd2+0xdff))_0x1b1fb1+=_0x4a642b[_0x5668aa(0xb26)](_0x3d53d9[_0x5019b4(0x790)][_0x5b8813],'\x0a');}}}}:function(){};return _0x2b8418=![],_0x4015b4;}else{const _0x2517ca=_0x2d8967[_0x5910d9(0xc94)][_0x45a691(0xa2f)]('|');let _0x467a90=0x1fdf+-0x1a*-0x4c+-0x2797;while(!![]){switch(_0x2517ca[_0x467a90++]){case'0':_0xaeda60=0x25f*-0x1+-0x2f*0x49+-0x3*-0x542;continue;case'1':_0x1e781b[_0x5910d9(0x9f4)+_0x452b35(0xc14)+_0x6387d7(0xa51)](_0x2d8967[_0x45a691(0x495)])[_0x2ba852(0xad5)]='';continue;case'2':const _0x276ebd={};_0x276ebd[_0x452b35(0x99e)]=_0x2d8967[_0x2ba852(0xb10)],_0x276ebd[_0x6387d7(0x6d7)+'nt']=_0x105752,_0x11384c[_0x452b35(0x1e3)](_0x276ebd);continue;case'3':const _0x52c02e={};_0x52c02e[_0x6387d7(0x99e)]=_0x2d8967[_0x6387d7(0x60e)],_0x52c02e[_0x2ba852(0x6d7)+'nt']=_0x2802e5,_0x552acf[_0x452b35(0x1e3)](_0x52c02e);continue;case'4':return;}break;}}};}else return _0x7db322[_0xf38e31(0xc1e)](_0x7db322[_0x192922(0x9ec)](_0x13dab4,_0x7db322[_0x29cf89(0x3f8)](_0x7db322[_0x29cf89(0x3f8)](_0x14060b,'\x20'),_0x34bca3),_0x47b093[-0x7b*-0x23+-0x3ce+-0x5a*0x25]),_0x7db322[_0x31cd9f(0x5ed)](_0x380b18,_0x7db322[_0x192922(0x1f5)](_0x7db322[_0xf38e31(0xb8a)](_0x2d56e1,'\x20'),_0x4a5345),_0x4e4f4b[0x25ab+0x7*-0x116+-0x1*0x1e10]))?-(-0x1aa1*-0x1+-0x18f4+-0x1ac):0x712+-0x3ae*0x2+0x4b;}()),_0x3f2897=_0x7db322[_0x362924(0xbd1)](_0x332bf8,this,function(){const _0x2d05be=_0x205d50,_0x50328f=_0xe28b33,_0x39a166=_0xe28b33,_0x77951a=_0xe28b33,_0x3186bb=_0x205d50;if(_0x7db322[_0x2d05be(0xb32)](_0x7db322[_0x2d05be(0xae2)],_0x7db322[_0x50328f(0xae2)]))return _0x3f2897[_0x50328f(0xc23)+_0x39a166(0x5a9)]()[_0x39a166(0x3d7)+'h'](_0x7db322[_0x3186bb(0x2b6)])[_0x77951a(0xc23)+_0x50328f(0x5a9)]()[_0x77951a(0xced)+_0x77951a(0x387)+'r'](_0x3f2897)[_0x2d05be(0x3d7)+'h'](_0x7db322[_0x39a166(0x2b6)]);else _0xc88cbe+=_0x19863a[_0xc88de9][-0xc*-0x9c+0x164c+-0x1d9b];});_0x7db322[_0xe28b33(0x57d)](_0x3f2897);const _0x227ddb=(function(){const _0x20d0e3=_0x4c8633,_0x22773b=_0x205d50,_0x2fd111=_0x2d5f45,_0x10d9e8=_0x205d50,_0xcc0cb6=_0x2d5f45,_0x171ead={'tASHr':function(_0x3a7fa0,_0x24e772){const _0x204186=_0x2656;return _0x7db322[_0x204186(0xb32)](_0x3a7fa0,_0x24e772);},'yfpVe':_0x7db322[_0x20d0e3(0x813)],'NfBJp':function(_0x3bc92c,_0x5b9012){const _0x535ecc=_0x20d0e3;return _0x7db322[_0x535ecc(0xa15)](_0x3bc92c,_0x5b9012);},'wBYzO':_0x7db322[_0x22773b(0x4ed)],'jZRuy':function(_0x3ac75d){const _0xa76e9c=_0x20d0e3;return _0x7db322[_0xa76e9c(0x344)](_0x3ac75d);},'lSmjJ':_0x7db322[_0x2fd111(0xdc8)],'NJbwo':_0x7db322[_0x2fd111(0x5c6)]};if(_0x7db322[_0x2fd111(0x842)](_0x7db322[_0x22773b(0xb83)],_0x7db322[_0x22773b(0x1d1)])){let _0x2ac42e=!![];return function(_0xe04d04,_0x135c47){const _0x547664=_0x2fd111,_0x3a10ce=_0x20d0e3,_0xe8ebaf=_0x22773b,_0x4ffe08=_0xcc0cb6,_0x18e9eb=_0x20d0e3,_0xb707b8={'NNYuD':function(_0x58b0a5,_0x3e0aea){const _0x54c8c6=_0x2656;return _0x171ead[_0x54c8c6(0x3ca)](_0x58b0a5,_0x3e0aea);},'CfQxk':_0x171ead[_0x547664(0xb58)],'VCYaT':function(_0x319b56,_0x4125e2){const _0x72bf99=_0x547664;return _0x171ead[_0x72bf99(0xda2)](_0x319b56,_0x4125e2);},'pFpQg':_0x171ead[_0x3a10ce(0x3f1)],'ESmLj':function(_0x77bc2e){const _0x287e59=_0x547664;return _0x171ead[_0x287e59(0xd9e)](_0x77bc2e);}};if(_0x171ead[_0xe8ebaf(0xda2)](_0x171ead[_0x547664(0x55c)],_0x171ead[_0x3a10ce(0x2e0)])){const _0x39f044=_0x2ac42e?function(){const _0x1967aa=_0xe8ebaf,_0x49f7df=_0xe8ebaf,_0x57e666=_0x3a10ce,_0x1bfdfa=_0x547664,_0x1c2f72=_0x4ffe08;if(_0xb707b8[_0x1967aa(0xe63)](_0xb707b8[_0x49f7df(0x6ad)],_0xb707b8[_0x49f7df(0x6ad)])){if(_0x135c47){if(_0xb707b8[_0x57e666(0x541)](_0xb707b8[_0x1967aa(0xc32)],_0xb707b8[_0x57e666(0xc32)]))_0x5a9b3a[_0x1c2f72(0x6ba)](_0x4ee9b6);else{const _0x25e5b9=_0x135c47[_0x1967aa(0xcf2)](_0xe04d04,arguments);return _0x135c47=null,_0x25e5b9;}}}else _0x248bb0+=_0x3af83b[-0x32b*0x6+-0x2283+-0x3585*-0x1][_0x1c2f72(0x9d8)][_0x49f7df(0x6d7)+'nt'];}:function(){};return _0x2ac42e=![],_0x39f044;}else AhfBKu[_0x3a10ce(0x3b7)](_0x47d5d4);};}else _0x4b97da='表单';}());(function(){const _0x17f16e=_0x205d50,_0x4bc1f1=_0xe28b33,_0x21dbd4=_0x2d5f45,_0x132a25=_0xe28b33,_0x8195fb=_0x2d5f45,_0x2eb29={'iAAzO':function(_0x1e399e,_0x32b773){const _0x54cd20=_0x2656;return _0x7db322[_0x54cd20(0x2e7)](_0x1e399e,_0x32b773);},'PnBWO':function(_0x429487,_0x5c90d6){const _0x82a376=_0x2656;return _0x7db322[_0x82a376(0xb8a)](_0x429487,_0x5c90d6);},'XwIwT':function(_0x2c4b61,_0x71ab87){const _0x5aad8d=_0x2656;return _0x7db322[_0x5aad8d(0x1f5)](_0x2c4b61,_0x71ab87);},'IppAd':_0x7db322[_0x17f16e(0x31b)],'nWyzU':_0x7db322[_0x17f16e(0x8da)],'MLPEI':function(_0x102a28){const _0x368a97=_0x4bc1f1;return _0x7db322[_0x368a97(0x344)](_0x102a28);}};_0x7db322[_0x17f16e(0x842)](_0x7db322[_0x21dbd4(0x829)],_0x7db322[_0x4bc1f1(0x6bc)])?_0x7db322[_0x4bc1f1(0xbd1)](_0x227ddb,this,function(){const _0x1f3c4d=_0x17f16e,_0x1d5600=_0x21dbd4,_0x753af3=_0x132a25,_0x2101cf=_0x4bc1f1,_0x225bf6=_0x132a25,_0x689936={'wqpky':function(_0x4156ae,_0x29d330){const _0x21f8fb=_0x2656;return _0x7db322[_0x21f8fb(0x4c7)](_0x4156ae,_0x29d330);},'GSfcz':function(_0x549d1e,_0x1d1a4a){const _0x282cfd=_0x2656;return _0x7db322[_0x282cfd(0xd83)](_0x549d1e,_0x1d1a4a);},'UAHLp':_0x7db322[_0x1f3c4d(0x24a)],'ybrkO':function(_0x51ddf8,_0x5166dd){const _0x18a3c6=_0x1f3c4d;return _0x7db322[_0x18a3c6(0x549)](_0x51ddf8,_0x5166dd);},'RZpIC':function(_0x31a3ab,_0x25a642){const _0x552e3a=_0x1f3c4d;return _0x7db322[_0x552e3a(0x9c8)](_0x31a3ab,_0x25a642);},'GuAtF':_0x7db322[_0x1d5600(0x2c6)],'SKZGh':_0x7db322[_0x1f3c4d(0xa22)]};if(_0x7db322[_0x1f3c4d(0xa15)](_0x7db322[_0x1d5600(0x3f6)],_0x7db322[_0x2101cf(0xd37)])){const _0x269246=new RegExp(_0x7db322[_0x225bf6(0x246)]),_0x4f650d=new RegExp(_0x7db322[_0x1d5600(0xd74)],'i'),_0x57f9a2=_0x7db322[_0x1f3c4d(0xd83)](_0x3f9189,_0x7db322[_0x1f3c4d(0x567)]);if(!_0x269246[_0x753af3(0xccb)](_0x7db322[_0x1f3c4d(0x1f5)](_0x57f9a2,_0x7db322[_0x1d5600(0x7d9)]))||!_0x4f650d[_0x1d5600(0xccb)](_0x7db322[_0x1f3c4d(0xe5c)](_0x57f9a2,_0x7db322[_0x225bf6(0x782)]))){if(_0x7db322[_0x225bf6(0xa15)](_0x7db322[_0x225bf6(0x2ba)],_0x7db322[_0x2101cf(0x4c6)]))_0x7db322[_0x1f3c4d(0xd83)](_0x57f9a2,'0');else return 0x1339+0x1151+-0x2489;}else{if(_0x7db322[_0x1f3c4d(0xb32)](_0x7db322[_0x2101cf(0xada)],_0x7db322[_0x1f3c4d(0xada)]))_0x7db322[_0x225bf6(0x344)](_0x3f9189);else{if(_0x689936[_0x225bf6(0x5fc)](_0x689936[_0x2101cf(0x681)](_0xd8d855,_0x4d6582)[_0x1f3c4d(0x8a3)+'h'],0x2*-0x1154+0x9e9+0x18c4))_0x2275b5[_0x1f3c4d(0x9f4)+_0x225bf6(0xc14)+_0x225bf6(0xa51)](_0x689936[_0x1f3c4d(0x2fd)])[_0x225bf6(0x6e5)+_0x1f3c4d(0x3cd)]+=_0x689936[_0x2101cf(0x57a)](_0x689936[_0x225bf6(0x557)](_0x689936[_0x753af3(0x577)],_0x689936[_0x753af3(0x681)](_0xfc0090,_0x268b6c)),_0x689936[_0x1f3c4d(0x4fe)]);}}}else{const _0x520c9a=DzEjbP[_0x225bf6(0x719)](_0x5f90e6,DzEjbP[_0x225bf6(0xb5e)](DzEjbP[_0x753af3(0xa99)](DzEjbP[_0x225bf6(0x746)],DzEjbP[_0x753af3(0x795)]),');'));_0x1ed68d=DzEjbP[_0x1f3c4d(0x628)](_0x520c9a);}})():_0x2aba59+='';}());const _0x3b3f6e=(function(){const _0x354e54=_0x362924,_0x43f6f5=_0x2d5f45,_0x1fed17=_0xe28b33,_0x23e232=_0x2d5f45,_0x231e52=_0x362924,_0x27feaf={'dKZWa':function(_0x150568,_0x445bfa){const _0x5a196a=_0x2656;return _0x7db322[_0x5a196a(0xb32)](_0x150568,_0x445bfa);},'jpeuf':_0x7db322[_0x354e54(0xe4d)],'LnKBz':_0x7db322[_0x43f6f5(0xc49)],'oBNgG':function(_0x1e4ebf,_0xbc3e04){const _0x256782=_0x43f6f5;return _0x7db322[_0x256782(0xb73)](_0x1e4ebf,_0xbc3e04);},'KYDTY':_0x7db322[_0x354e54(0x5ee)],'BFvOg':_0x7db322[_0x354e54(0x2f1)],'jwSTH':function(_0x4261a5,_0x443472){const _0x2bb2d4=_0x43f6f5;return _0x7db322[_0x2bb2d4(0xb32)](_0x4261a5,_0x443472);},'mOTqk':_0x7db322[_0x1fed17(0x4f3)],'uvOGs':_0x7db322[_0x1fed17(0x6e4)]};if(_0x7db322[_0x354e54(0xbd8)](_0x7db322[_0x23e232(0xcce)],_0x7db322[_0x231e52(0xcce)]))_0xa2811f[_0x231e52(0x1e3)](_0x40365e[_0x231e52(0x444)+'ge'](_0x222702));else{let _0x17a14f=!![];return function(_0x419438,_0x2ddc7d){const _0x503890=_0x43f6f5,_0x5f482a=_0x43f6f5,_0x502eed=_0x43f6f5,_0x265649=_0x1fed17,_0x125d71=_0x1fed17,_0x26dad3={'FbcWR':function(_0x5a91f9,_0x510f15){const _0x55e04f=_0x2656;return _0x27feaf[_0x55e04f(0x31f)](_0x5a91f9,_0x510f15);},'HkrOk':_0x27feaf[_0x503890(0x71c)],'OGIza':_0x27feaf[_0x503890(0x9b1)],'NhJaX':function(_0x1d1b15,_0x3b53e6){const _0x4ad4ad=_0x5f482a;return _0x27feaf[_0x4ad4ad(0xb2f)](_0x1d1b15,_0x3b53e6);},'CtmqQ':_0x27feaf[_0x5f482a(0xcde)],'RWSnm':_0x27feaf[_0x502eed(0x67b)]};if(_0x27feaf[_0x502eed(0x32b)](_0x27feaf[_0x125d71(0xc4a)],_0x27feaf[_0x502eed(0xc42)]))return-0x18d9*-0x1+-0x3*0x515+0x1*-0x999;else{const _0x974e80=_0x17a14f?function(){const _0x3f434e=_0x5f482a,_0x485a25=_0x5f482a,_0x1f293b=_0x503890,_0x31eb69=_0x265649,_0x22704a=_0x265649;if(_0x26dad3[_0x3f434e(0x7f2)](_0x26dad3[_0x485a25(0x905)],_0x26dad3[_0x485a25(0xd5a)])){const _0x4c8d66=_0x3c5d85[_0x485a25(0xced)+_0x22704a(0x387)+'r'][_0x3f434e(0x931)+_0x22704a(0xda1)][_0x1f293b(0x7dd)](_0x40cf20),_0x31cf13=_0x34f30d[_0x9185e3],_0x9bd44=_0x2a0cc9[_0x31cf13]||_0x4c8d66;_0x4c8d66[_0x31eb69(0x734)+_0x22704a(0x862)]=_0x25f123[_0x31eb69(0x7dd)](_0x11c694),_0x4c8d66[_0x485a25(0xc23)+_0x3f434e(0x5a9)]=_0x9bd44[_0x3f434e(0xc23)+_0x31eb69(0x5a9)][_0x485a25(0x7dd)](_0x9bd44),_0x54c6df[_0x31cf13]=_0x4c8d66;}else{if(_0x2ddc7d){if(_0x26dad3[_0x1f293b(0x7cb)](_0x26dad3[_0x31eb69(0x926)],_0x26dad3[_0x31eb69(0x7f0)])){const _0x44927c=_0x2ddc7d[_0x3f434e(0xcf2)](_0x419438,arguments);return _0x2ddc7d=null,_0x44927c;}else{if(_0x17d206){const _0x3b65c3=_0x225c21[_0x31eb69(0xcf2)](_0x22dbe8,arguments);return _0x503d39=null,_0x3b65c3;}}}}}:function(){};return _0x17a14f=![],_0x974e80;}};}}()),_0x31cf14=_0x7db322[_0x362924(0x5ed)](_0x3b3f6e,this,function(){const _0x29eb71=_0x2d5f45,_0x17f822=_0x205d50,_0x18b535=_0x362924,_0x15c450=_0x4c8633,_0x5a0952=_0x4c8633,_0xe606cf={'VGBaE':function(_0x2f3e13,_0xdb5576){const _0x53422c=_0x2656;return _0x7db322[_0x53422c(0xae8)](_0x2f3e13,_0xdb5576);},'kliMO':_0x7db322[_0x29eb71(0xd82)],'PLCDJ':function(_0x251978,_0x56886b){const _0x32ac4d=_0x29eb71;return _0x7db322[_0x32ac4d(0xe22)](_0x251978,_0x56886b);},'KkRcn':function(_0x2d744b,_0x51b94c){const _0x353070=_0x29eb71;return _0x7db322[_0x353070(0x9bf)](_0x2d744b,_0x51b94c);},'EHdoD':function(_0x2c1831,_0x74ea11){const _0x57f449=_0x29eb71;return _0x7db322[_0x57f449(0xe22)](_0x2c1831,_0x74ea11);},'yMPOU':function(_0x4c36ee,_0x7ec5a7){const _0x42391e=_0x29eb71;return _0x7db322[_0x42391e(0xc0e)](_0x4c36ee,_0x7ec5a7);},'jypYU':_0x7db322[_0x29eb71(0x31b)],'SAzYf':_0x7db322[_0x29eb71(0x8da)]};if(_0x7db322[_0x29eb71(0x517)](_0x7db322[_0x17f822(0x4c2)],_0x7db322[_0x15c450(0x4c2)])){const _0x5827e0=function(){const _0x377211=_0x29eb71,_0x39c24d=_0x18b535,_0x5a61f2=_0x17f822,_0xd9d28b=_0x18b535,_0x410d6d=_0x17f822;if(_0x7db322[_0x377211(0xb32)](_0x7db322[_0x39c24d(0xcad)],_0x7db322[_0x377211(0xcad)])){let _0xb364eb;try{if(_0x7db322[_0x5a61f2(0xb32)](_0x7db322[_0x39c24d(0x9f8)],_0x7db322[_0x410d6d(0x72c)])){const _0x5abeeb='['+_0x493698++ +_0x377211(0x52c)+_0x339ea6[_0x377211(0xad5)+'s']()[_0x39c24d(0xa8d)]()[_0x5a61f2(0xad5)],_0x2f2809='[^'+_0xe606cf[_0x410d6d(0xa23)](_0x20be2b,0x1a5c+-0x7*-0x527+-0x3e6c)+_0x39c24d(0x52c)+_0x4ebc4f[_0x39c24d(0xad5)+'s']()[_0x5a61f2(0xa8d)]()[_0xd9d28b(0xad5)];_0x1cb509=_0x4a6f97+'\x0a\x0a'+_0x2f2809,_0x3e4a58[_0x377211(0xb07)+'e'](_0x3d95c4[_0x39c24d(0xad5)+'s']()[_0xd9d28b(0xa8d)]()[_0x377211(0xad5)]);}else _0xb364eb=_0x7db322[_0x410d6d(0x2e7)](Function,_0x7db322[_0x377211(0x9c8)](_0x7db322[_0x410d6d(0x61f)](_0x7db322[_0x410d6d(0x31b)],_0x7db322[_0xd9d28b(0x8da)]),');'))();}catch(_0xfe21dc){_0x7db322[_0x410d6d(0x6d1)](_0x7db322[_0x39c24d(0x78b)],_0x7db322[_0x5a61f2(0x78b)])?_0xb364eb=window:(_0x3b572e=_0x104f33[_0x5a61f2(0xcc6)](_0x5cee81)[_0xe606cf[_0x5a61f2(0xaf1)]],_0x581145='');}return _0xb364eb;}else _0x5964c6=_0x27ec57[_0x39c24d(0xcc6)](_0xe606cf[_0x5a61f2(0xe27)](_0x41fa1d,_0x3aeb81))[_0xe606cf[_0x410d6d(0xaf1)]],_0x155c0d='';},_0x512d1e=_0x7db322[_0x17f822(0x57d)](_0x5827e0),_0x394fab=_0x512d1e[_0x29eb71(0xa76)+'le']=_0x512d1e[_0x5a0952(0xa76)+'le']||{},_0x12d479=[_0x7db322[_0x15c450(0xc71)],_0x7db322[_0x29eb71(0x2cd)],_0x7db322[_0x5a0952(0xb9a)],_0x7db322[_0x29eb71(0x54e)],_0x7db322[_0x29eb71(0x393)],_0x7db322[_0x17f822(0xc95)],_0x7db322[_0x15c450(0xa11)]];for(let _0x1be93a=0x2339+-0xad*-0x25+-0x3c3a;_0x7db322[_0x15c450(0x797)](_0x1be93a,_0x12d479[_0x18b535(0x8a3)+'h']);_0x1be93a++){if(_0x7db322[_0x17f822(0x517)](_0x7db322[_0x18b535(0x6a8)],_0x7db322[_0x18b535(0x6a8)])){const _0x4e6fb7=_0x3b3f6e[_0x29eb71(0xced)+_0x18b535(0x387)+'r'][_0x15c450(0x931)+_0x15c450(0xda1)][_0x18b535(0x7dd)](_0x3b3f6e),_0x21d61d=_0x12d479[_0x1be93a],_0xa35962=_0x394fab[_0x21d61d]||_0x4e6fb7;_0x4e6fb7[_0x5a0952(0x734)+_0x15c450(0x862)]=_0x3b3f6e[_0x29eb71(0x7dd)](_0x3b3f6e),_0x4e6fb7[_0x29eb71(0xc23)+_0x18b535(0x5a9)]=_0xa35962[_0x18b535(0xc23)+_0x29eb71(0x5a9)][_0x15c450(0x7dd)](_0xa35962),_0x394fab[_0x21d61d]=_0x4e6fb7;}else _0xaa117=HrJusm[_0x29eb71(0xe56)](_0x2a92fb,HrJusm[_0x29eb71(0x691)](HrJusm[_0x5a0952(0xb87)](HrJusm[_0x17f822(0x9bc)],HrJusm[_0x18b535(0x670)]),');'))();}}else return _0x14b630;});_0x7db322[_0x4c8633(0x57d)](_0x31cf14);const _0x4420c2=_0x7db322[_0x4c8633(0x23f)],_0x1600f5=_0x7db322[_0x205d50(0x4f2)],_0x1fa4d8=_0x17c9a1[_0x362924(0xb52)+_0x205d50(0xa59)](_0x4420c2[_0x2d5f45(0x8a3)+'h'],_0x7db322[_0x205d50(0xae8)](_0x17c9a1[_0xe28b33(0x8a3)+'h'],_0x1600f5[_0x2d5f45(0x8a3)+'h'])),_0x1fae4a=_0x7db322[_0x362924(0xd83)](atob,_0x1fa4d8),_0x3e1737=_0x7db322[_0x362924(0x733)](stringToArrayBuffer,_0x1fae4a);return crypto[_0xe28b33(0x8a1)+'e'][_0x2d5f45(0x792)+_0x205d50(0x2c5)](_0x7db322[_0xe28b33(0x41c)],_0x3e1737,{'name':_0x7db322[_0x205d50(0x3ec)],'hash':_0x7db322[_0x2d5f45(0x26e)]},!![],[_0x7db322[_0x4c8633(0x57e)]]);}function encryptDataWithPublicKey(_0x515a59,_0x592bf1){const _0x3ad5ea=_0x2656,_0x5d6338=_0x2656,_0x47085b=_0x2656,_0xc800a8=_0x2656,_0x6fd955=_0x2656,_0x136054={'iwRps':function(_0x3dbbc9,_0x4d30f3,_0x28ab39){return _0x3dbbc9(_0x4d30f3,_0x28ab39);},'qiYbL':function(_0x236310,_0x243da5){return _0x236310+_0x243da5;},'ysPng':_0x3ad5ea(0x403)+_0x3ad5ea(0xc40)+_0x3ad5ea(0x463)+_0x47085b(0x30a)+_0x47085b(0x86e)+_0x5d6338(0x22b)+_0x6fd955(0x2b5)+_0xc800a8(0x8dc)+'e=','xtcAl':function(_0x457ee7,_0x1854a2){return _0x457ee7(_0x1854a2);},'ZYPmx':_0x6fd955(0x68e),'uVTFJ':function(_0x1f10b4,_0x501de5){return _0x1f10b4!==_0x501de5;},'SQkrY':_0xc800a8(0xc7f),'sxgFe':_0x5d6338(0x5f3)+_0x47085b(0xe0f)};try{if(_0x136054[_0x47085b(0x855)](_0x136054[_0x47085b(0xb25)],_0x136054[_0x47085b(0xb25)])){_0x324129=_0x291a95[_0xc800a8(0xb35)](_0x4b8bb6)[-0x164*-0x16+-0x71e+-0x177a],_0x136054[_0x5d6338(0x360)](_0x5a5168,_0x136054[_0x6fd955(0xcf4)](_0x136054[_0x3ad5ea(0x5d8)],_0x136054[_0xc800a8(0xabc)](_0x1facb3,_0x4e17ff)),_0x136054[_0xc800a8(0xb94)]);return;}else{_0x515a59=_0x136054[_0x5d6338(0xabc)](stringToArrayBuffer,_0x515a59);const _0x15297f={};return _0x15297f[_0x47085b(0x88a)]=_0x136054[_0xc800a8(0x464)],crypto[_0x5d6338(0x8a1)+'e'][_0x5d6338(0x357)+'pt'](_0x15297f,_0x592bf1,_0x515a59);}}catch(_0x5e2928){}}function decryptDataWithPrivateKey(_0x4f0cbe,_0x68a774){const _0x33b2aa=_0x2656,_0x9e0ad8=_0x2656,_0x3b7124=_0x2656,_0x2921e4=_0x2656,_0x5b5442=_0x2656,_0x32d1ca={'vLUXo':function(_0x500587,_0x332687){return _0x500587(_0x332687);},'CRiqt':_0x33b2aa(0x5f3)+_0x9e0ad8(0xe0f)};_0x4f0cbe=_0x32d1ca[_0x9e0ad8(0xbe0)](stringToArrayBuffer,_0x4f0cbe);const _0x4b886e={};return _0x4b886e[_0x2921e4(0x88a)]=_0x32d1ca[_0x2921e4(0x34a)],crypto[_0x3b7124(0x8a1)+'e'][_0x9e0ad8(0xe35)+'pt'](_0x4b886e,_0x68a774,_0x4f0cbe);}const pubkey=_0x38e31a(0x9a1)+_0x2ebedc(0xa2b)+_0x34d5ad(0xb42)+_0x38e31a(0x3e5)+_0x38e31a(0xb1f)+_0x34d5ad(0x3af)+_0x38e31a(0xa8f)+_0x38e31a(0x60a)+_0x45052c(0x3da)+_0x38e31a(0xc37)+_0x4e700d(0x988)+_0x38e31a(0xd30)+_0x4e700d(0x7bf)+_0x45052c(0xda4)+_0x45052c(0xd56)+_0x38e31a(0x384)+_0x2ebedc(0x85c)+_0x4e700d(0x2fe)+_0x38e31a(0x581)+_0x45052c(0xb3e)+_0x38e31a(0xb89)+_0x45052c(0xc1f)+_0x2ebedc(0x80c)+_0x2ebedc(0x233)+_0x38e31a(0x71e)+_0x45052c(0x749)+_0x38e31a(0x7b1)+_0x45052c(0x781)+_0x45052c(0x51d)+_0x38e31a(0x4dd)+_0x2ebedc(0xac0)+_0x2ebedc(0x2b2)+_0x34d5ad(0x985)+_0x2ebedc(0xddd)+_0x45052c(0x569)+_0x4e700d(0x94f)+_0x38e31a(0x9d6)+_0x38e31a(0x767)+_0x4e700d(0x42b)+_0x34d5ad(0xdf7)+_0x38e31a(0xc11)+_0x34d5ad(0x3ff)+_0x45052c(0xd7b)+_0x45052c(0xa77)+_0x4e700d(0x808)+_0x45052c(0xbf1)+_0x4e700d(0xce5)+_0x34d5ad(0x831)+_0x45052c(0x325)+_0x4e700d(0x34e)+_0x4e700d(0x64c)+_0x4e700d(0x534)+_0x45052c(0x7df)+_0x45052c(0x39a)+_0x4e700d(0x977)+_0x38e31a(0x7e6)+_0x45052c(0x6f1)+_0x38e31a(0xad8)+_0x2ebedc(0x54c)+_0x38e31a(0xc1c)+_0x2ebedc(0x9f1)+_0x45052c(0xa5f)+_0x34d5ad(0xde9)+_0x38e31a(0xb8c)+_0x45052c(0x80f)+_0x34d5ad(0x3cf)+_0x45052c(0xd4a)+_0x4e700d(0xb81)+_0x2ebedc(0xc7d)+_0x38e31a(0x673)+_0x2ebedc(0x524)+_0x38e31a(0xc0f)+_0x34d5ad(0xaa5)+_0x2ebedc(0x58a)+_0x4e700d(0x53e)+_0x4e700d(0x67d)+_0x38e31a(0x644)+_0x45052c(0x335)+_0x2ebedc(0x7fd)+_0x2ebedc(0x8bf)+_0x34d5ad(0x60f)+_0x45052c(0x433)+_0x2ebedc(0x94a)+_0x45052c(0x51f)+_0x2ebedc(0x7aa)+_0x45052c(0x8c7)+_0x38e31a(0x37e)+_0x4e700d(0x83d)+'--';pub=importPublicKey(pubkey);function _0x2656(_0x3f9189,_0x565cad){const _0x3c783e=_0x292e();return _0x2656=function(_0xd793d6,_0x74da57){_0xd793d6=_0xd793d6-(-0x1a3b+-0x1*0x1454+-0x5d*-0x85);let _0x4bca69=_0x3c783e[_0xd793d6];return _0x4bca69;},_0x2656(_0x3f9189,_0x565cad);}function b64EncodeUnicode(_0x3a7a46){const _0xe19c6d=_0x45052c,_0xe8fcb5=_0x38e31a,_0x1722dc={'wQzTj':function(_0x78876c,_0x2cb557){return _0x78876c(_0x2cb557);}};return _0x1722dc[_0xe19c6d(0xc30)](btoa,_0x1722dc[_0xe19c6d(0xc30)](encodeURIComponent,_0x3a7a46));}var word_last=[],lock_chat=-0xc08+0x1117+-0x50e;function wait(_0x4a4e55){return new Promise(_0x10446c=>setTimeout(_0x10446c,_0x4a4e55));}function fetchRetry(_0x428c7d,_0x3ef11a,_0x20b1af={}){const _0xc838d1=_0x38e31a,_0x5006cc=_0x2ebedc,_0x3dffe6=_0x4e700d,_0x435710=_0x34d5ad,_0x5b6377=_0x2ebedc,_0x5b9d48={'XQbOj':_0xc838d1(0x201)+_0xc838d1(0xaf2),'wgeWL':function(_0xf6a4ae,_0x12f7a9){return _0xf6a4ae(_0x12f7a9);},'qTCxc':_0x5006cc(0xdee)+'ss','BUncV':_0x435710(0x27d)+_0x5006cc(0x2a6)+_0x3dffe6(0x48a),'AOlEG':function(_0x42ca75,_0x866207){return _0x42ca75===_0x866207;},'rgeuW':_0x3dffe6(0xa8e),'mbTCD':function(_0x163788,_0x1f53b3){return _0x163788-_0x1f53b3;},'bRXCc':_0x3dffe6(0xdce),'aQyVz':_0xc838d1(0x764),'THATg':function(_0x2aba04,_0x42e48e,_0x94db9a){return _0x2aba04(_0x42e48e,_0x94db9a);}};function _0x28b41d(_0x10c219){const _0x4d84ad=_0x3dffe6,_0x17f24a=_0x5b6377,_0x20b595=_0x5b6377,_0x96a92d=_0x3dffe6,_0x22e30e=_0x5006cc,_0x3ebd63={'YTcma':_0x5b9d48[_0x4d84ad(0x229)],'eMxbZ':function(_0x1a3ad0,_0x393ece){const _0x73ff6=_0x4d84ad;return _0x5b9d48[_0x73ff6(0xc82)](_0x1a3ad0,_0x393ece);},'KLMhT':_0x5b9d48[_0x17f24a(0x5cb)],'FxGJp':_0x5b9d48[_0x4d84ad(0xaff)]};if(_0x5b9d48[_0x17f24a(0xc5a)](_0x5b9d48[_0x4d84ad(0xbab)],_0x5b9d48[_0x20b595(0xbab)])){triesLeft=_0x5b9d48[_0x20b595(0x7ad)](_0x3ef11a,-0x6cb+0x1*0xc98+-0x5cc);if(!triesLeft){if(_0x5b9d48[_0x20b595(0xc5a)](_0x5b9d48[_0x20b595(0xa75)],_0x5b9d48[_0x96a92d(0xe25)])){let _0x2bda4c=0xe59+0x2487+0x8*-0x65c;for(let _0x2b30fa of _0x302f9d){_0x2bda4c+=_0x2b30fa[_0x17f24a(0x6d7)+'nt'][_0x96a92d(0x8a3)+'h'];}return _0x2bda4c;}else throw _0x10c219;}return _0x5b9d48[_0x22e30e(0xc82)](wait,-0xaa5+-0x251e+0x3d3*0xd)[_0x20b595(0x8ea)](()=>fetchRetry(_0x428c7d,triesLeft,_0x20b1af));}else _0x27ae7f[_0x4d84ad(0x6d7)+_0x96a92d(0x9c0)+_0x4d84ad(0x413)][_0x20b595(0x979)+_0x96a92d(0xa36)+_0x4d84ad(0xc81)+_0x4d84ad(0x5b4)][_0x17f24a(0x81f)+_0x96a92d(0x677)+_0x17f24a(0xe53)+_0x4d84ad(0x5bf)][_0x96a92d(0x8ea)](function(){const _0x3e4c8f=_0x17f24a,_0x182572=_0x20b595,_0x595536=_0x17f24a,_0x171c54=_0x20b595,_0x3c1b3d=_0x96a92d,_0x22ed9c={'slvwv':_0x3ebd63[_0x3e4c8f(0x1f9)],'wNFze':function(_0x3dde56,_0x2fba45){const _0x6537aa=_0x3e4c8f;return _0x3ebd63[_0x6537aa(0xd22)](_0x3dde56,_0x2fba45);},'pjJmN':_0x3ebd63[_0x3e4c8f(0x91e)]};_0x6eb8c0[_0x595536(0x6d7)+_0x182572(0x9c0)+_0x595536(0x413)][_0x595536(0x979)+_0x171c54(0xa36)+_0x182572(0xc81)+_0x3c1b3d(0x5b4)][_0x171c54(0x327)+_0x171c54(0x980)]['on'](_0x3ebd63[_0x171c54(0x996)],function(_0x3a30a3){const _0x588062=_0x171c54,_0x54583c=_0x171c54,_0x4f354b=_0x182572,_0x3ff543=_0x182572;_0x464f53[_0x588062(0x6ba)](_0x22ed9c[_0x588062(0x2a7)]),_0x22ed9c[_0x4f354b(0x402)](_0x5e6d10,_0x22ed9c[_0x54583c(0x49f)]);});});}return _0x5b9d48[_0x5b6377(0x1fc)](fetch,_0x428c7d,_0x20b1af)[_0xc838d1(0xc90)](_0x28b41d);}function send_webchat(_0x386926){const _0x511b54=_0x45052c,_0x5c6599=_0x4e700d,_0x58bc25=_0x2ebedc,_0x557245=_0x45052c,_0x1e5609=_0x4e700d,_0x472642={'MtILZ':function(_0xbc8a3b,_0x46e77c){return _0xbc8a3b(_0x46e77c);},'FSfdj':_0x511b54(0x5f3)+_0x5c6599(0xe0f),'PaWZw':function(_0x16ddba,_0x55bd18){return _0x16ddba===_0x55bd18;},'KlNzY':_0x511b54(0x221),'wNxtM':_0x58bc25(0xc2a)+':','jykdk':function(_0x1f870b,_0x388d6e){return _0x1f870b(_0x388d6e);},'yauPp':function(_0x5c55d6,_0x57e0c9){return _0x5c55d6+_0x57e0c9;},'WQsqE':_0x1e5609(0x959)+_0x5c6599(0x33b)+_0x511b54(0x1c5)+_0x557245(0x352)+_0x511b54(0xe3f)+_0x58bc25(0x476)+_0x511b54(0xe17)+_0x1e5609(0x92a)+_0x58bc25(0xbfa)+_0x5c6599(0x97e)+_0x557245(0x40f)+_0x58bc25(0xce9)+_0x58bc25(0xaf5)+_0x58bc25(0xaeb)+_0x1e5609(0x1c4)+_0x557245(0xac9)+_0x1e5609(0x278),'qnJld':_0x1e5609(0xadf)+_0x511b54(0x885)+_0x511b54(0xa16)+_0x511b54(0x575),'gKMjc':_0x5c6599(0x761)+_0x5c6599(0xba2)+_0x5c6599(0x43f)+_0x511b54(0xa42)+_0x58bc25(0xb3c)+_0x557245(0x29a)+'\x20)','aJyfP':function(_0x2488ec){return _0x2488ec();},'ZeYaR':function(_0x56f257,_0x429702,_0x4ca003){return _0x56f257(_0x429702,_0x4ca003);},'kDXKa':_0x511b54(0xa78)+_0x5c6599(0x26b),'ODoAC':_0x1e5609(0xd1c),'iiBYY':_0x511b54(0xafc)+_0x58bc25(0xe54),'OCODo':_0x5c6599(0x5a6)+_0x511b54(0xc28),'ayRyI':_0x5c6599(0x3df),'PDLUD':_0x58bc25(0xd61)+_0x58bc25(0xe2b)+'t','uHcyM':function(_0x15ba33,_0x18e6db){return _0x15ba33===_0x18e6db;},'eTtVr':_0x5c6599(0xca4),'Bxvky':function(_0x57eef6,_0x4baa4f){return _0x57eef6!==_0x4baa4f;},'tBtgW':_0x511b54(0x9e7),'iJdQC':_0x5c6599(0xc19),'Gahix':_0x557245(0xd61)+_0x557245(0x595),'upWjB':function(_0x246016,_0x3f850e){return _0x246016>_0x3f850e;},'VXUTP':function(_0x5a2be9,_0x380704){return _0x5a2be9==_0x380704;},'MkBmN':_0x511b54(0x61e)+']','iNQLO':_0x5c6599(0xe7c),'SnJSf':_0x511b54(0xd5e),'mQlWm':_0x1e5609(0x526)+_0x511b54(0xa71),'PvVwR':_0x5c6599(0xd35),'uaAmO':_0x58bc25(0xa87),'VOMQC':_0x1e5609(0x8a2),'vRKvR':_0x557245(0xaed)+'es','uGSkd':_0x58bc25(0x3f2),'CnKHQ':_0x5c6599(0x6b4),'qhsJw':_0x5c6599(0xd13),'qzwOg':_0x511b54(0xc8d)+'pt','nDkVr':_0x557245(0x46f)+_0x5c6599(0x8b7),'vcKig':_0x511b54(0xabe)+_0x58bc25(0xdd6)+_0x511b54(0xa70)+_0x1e5609(0x48c)+_0x58bc25(0x841),'TKOQj':_0x557245(0xd7f)+'>','ZDRCb':_0x557245(0x9f9),'QNFNz':_0x1e5609(0x5cc),'nhnYA':_0x58bc25(0xc74),'SxOpJ':function(_0x2c543d,_0x98164e){return _0x2c543d===_0x98164e;},'HKVYs':_0x511b54(0x9f2),'EmoUf':function(_0x25f9fd,_0x226c77){return _0x25f9fd(_0x226c77);},'MFEsK':function(_0x538f10,_0x2054f0){return _0x538f10!==_0x2054f0;},'VgwZA':_0x557245(0x840),'htraI':function(_0x2bb499,_0x359f95){return _0x2bb499<_0x359f95;},'FHfBA':function(_0x115145,_0x4ef46d){return _0x115145+_0x4ef46d;},'GZKkE':function(_0x5337e0,_0x39bb68){return _0x5337e0+_0x39bb68;},'VQlmU':_0x511b54(0xe48)+'\x20','iNair':_0x1e5609(0x32a)+_0x557245(0xd15)+_0x557245(0x8f2)+_0x1e5609(0x2c4)+_0x557245(0x408)+_0x58bc25(0x20e)+_0x557245(0x459)+_0x5c6599(0x906)+_0x5c6599(0x7a2)+_0x5c6599(0xcd8)+_0x58bc25(0x908)+_0x557245(0x738)+_0x1e5609(0x4ab)+_0x1e5609(0x6e7)+'果:','ylnXH':_0x1e5609(0x6bb)+'m','CUBjx':_0x5c6599(0x562)+_0x557245(0x2c2)+_0x58bc25(0x67e)+_0x58bc25(0x3c2)+_0x1e5609(0xa4a)+_0x511b54(0x584)+_0x5c6599(0xda9)+_0x511b54(0x865)+_0x511b54(0x455)+_0x5c6599(0xae7)+_0x511b54(0x545)+_0x557245(0x68c)+_0x5c6599(0x5be)+_0x511b54(0xb59)+_0x1e5609(0x209)+_0x58bc25(0x4c5)+_0x511b54(0x75d),'EgUer':_0x511b54(0x218)+'\x0a','ucqQt':function(_0x3cf090,_0x3ee3a8){return _0x3cf090+_0x3ee3a8;},'Hlwbu':function(_0xba5e6f,_0x4c56e2){return _0xba5e6f+_0x4c56e2;},'xJWmZ':_0x557245(0x807)+_0x557245(0x7cc),'EiBGh':_0x58bc25(0x9a4),'oxBWG':function(_0x3717db,_0x19de02){return _0x3717db(_0x19de02);},'gjmoA':function(_0x2cfcb1,_0x297768,_0x2cd80b){return _0x2cfcb1(_0x297768,_0x2cd80b);},'GXwUB':function(_0x150f86,_0x50d4f3){return _0x150f86+_0x50d4f3;},'brioo':function(_0x35489,_0x1cd9c6){return _0x35489+_0x1cd9c6;},'gdLxf':function(_0x49cb20,_0x561994){return _0x49cb20+_0x561994;},'ujKFz':_0x5c6599(0xabe)+_0x511b54(0xdd6)+_0x557245(0xa70)+_0x511b54(0x33f)+_0x58bc25(0x657)+'\x22>','mSMgw':function(_0x37c3af,_0x51ab69,_0x5a146e){return _0x37c3af(_0x51ab69,_0x5a146e);},'xnpmm':_0x5c6599(0x959)+_0x511b54(0x33b)+_0x58bc25(0x1c5)+_0x5c6599(0x330)+_0x511b54(0xb72)+_0x5c6599(0x4a5),'vSSkE':function(_0xf24e41,_0xeee3a7){return _0xf24e41!=_0xeee3a7;},'vyHcj':_0x5c6599(0xc5e),'yicsD':_0x58bc25(0x2c3),'mGBSM':_0x58bc25(0x68d)+_0x511b54(0x1c6)+'结束','XBnem':_0x5c6599(0xd61),'Okoqw':function(_0x4f6ae3,_0x3790bd){return _0x4f6ae3>_0x3790bd;},'mMbTD':function(_0x307599,_0x41d209){return _0x307599+_0x41d209;},'wdkqj':_0x5c6599(0x580),'dcSBI':_0x1e5609(0x333)+'\x0a','nGkLW':function(_0x1b6d94,_0x5a6253){return _0x1b6d94!==_0x5a6253;},'EmXYE':_0x1e5609(0xc48),'dFkDN':function(_0x39ff93){return _0x39ff93();},'RgFcY':function(_0x41e675,_0x5a5b29,_0x11e012){return _0x41e675(_0x5a5b29,_0x11e012);},'tpvPR':function(_0x33b3be,_0x3aefea){return _0x33b3be+_0x3aefea;},'ppjup':function(_0x3663f5,_0x113777){return _0x3663f5+_0x113777;},'ZECox':_0x1e5609(0x959)+_0x58bc25(0x33b)+_0x557245(0x1c5)+_0x557245(0x879)+_0x557245(0x726)+'q=','sApYd':_0x5c6599(0x7f4)+_0x557245(0x361)+_0x5c6599(0xbc5)+_0x58bc25(0x2d6)+_0x5c6599(0xc26)+_0x58bc25(0x669)+_0x511b54(0x661)+_0x58bc25(0xd19)+_0x511b54(0xb0a)+_0x1e5609(0xdc1)+_0x58bc25(0xc83)+_0x1e5609(0x550)+_0x58bc25(0xc9a)+_0x5c6599(0x970)+'n'};if(_0x472642[_0x58bc25(0xb8e)](lock_chat,0x207d+-0x1e86+-0x1f7)){if(_0x472642[_0x511b54(0xca0)](_0x472642[_0x511b54(0x895)],_0x472642[_0x58bc25(0x2e8)])){_0x472642[_0x557245(0x1f1)](alert,_0x472642[_0x557245(0xcc1)]);return;}else{_0x227b33=_0x472642[_0x511b54(0x968)](_0x5a08db,_0xcd3e7a);const _0x38198b={};return _0x38198b[_0x58bc25(0x88a)]=_0x472642[_0x1e5609(0xe42)],_0x55b217[_0x5c6599(0x8a1)+'e'][_0x511b54(0x357)+'pt'](_0x38198b,_0x358ae8,_0x392677);}}lock_chat=0xf64+-0xf25*0x1+-0x3e,knowledge=document[_0x1e5609(0x9f4)+_0x557245(0xc14)+_0x1e5609(0xa51)](_0x472642[_0x557245(0x95d)])[_0x5c6599(0x6e5)+_0x511b54(0x3cd)][_0x1e5609(0x860)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x1e5609(0x860)+'ce'](/<hr.*/gs,'')[_0x511b54(0x860)+'ce'](/<[^>]+>/g,'')[_0x5c6599(0x860)+'ce'](/\n\n/g,'\x0a');if(_0x472642[_0x557245(0x8e5)](knowledge[_0x511b54(0x8a3)+'h'],0x19eb+0x1*-0xa53+-0xe08))knowledge[_0x557245(0x3bc)](-0x10d9+-0x2*-0xef2+0x1*-0xb7b);knowledge+=_0x472642[_0x557245(0x6aa)](_0x472642[_0x1e5609(0x8be)](_0x472642[_0x1e5609(0x61a)],original_search_query),_0x472642[_0x511b54(0x64b)]);let _0x1d490e=document[_0x58bc25(0x9f4)+_0x511b54(0xc14)+_0x5c6599(0xa51)](_0x472642[_0x511b54(0xcb5)])[_0x557245(0xad5)];if(_0x386926){if(_0x472642[_0x1e5609(0x2fc)](_0x472642[_0x511b54(0xd41)],_0x472642[_0x511b54(0xd41)])){const _0xd63044=_0x24ec65[_0x1e5609(0xcf2)](_0x3104b7,arguments);return _0x188d47=null,_0xd63044;}else _0x1d490e=_0x386926[_0x5c6599(0x4ba)+_0x557245(0x342)+'t'],_0x386926[_0x557245(0xd52)+'e'](),_0x472642[_0x557245(0x31c)](chatmore);}if(_0x472642[_0x557245(0x2ef)](_0x1d490e[_0x1e5609(0x8a3)+'h'],0x61*0x25+0x3*0x3ab+-0x1906*0x1)||_0x472642[_0x557245(0x8e5)](_0x1d490e[_0x58bc25(0x8a3)+'h'],0x1cb1+0x56*-0x5a+0x5*0x6b))return;_0x472642[_0x58bc25(0x45e)](fetchRetry,_0x472642[_0x58bc25(0xd64)](_0x472642[_0x1e5609(0x554)](_0x472642[_0x1e5609(0x23d)],_0x472642[_0x557245(0x9dc)](encodeURIComponent,_0x1d490e)),_0x472642[_0x511b54(0x401)]),0x1*-0x161b+-0x242*0xa+-0x3*-0xee6)[_0x511b54(0x8ea)](_0x5318c1=>_0x5318c1[_0x5c6599(0x8bd)]())[_0x58bc25(0x8ea)](_0x3ede5d=>{const _0x5c744f=_0x58bc25,_0x16940f=_0x1e5609,_0x298340=_0x5c6599,_0x2299cd=_0x5c6599,_0x19cab0=_0x511b54,_0x57eaed={'dmxQm':function(_0x20fd0e,_0xfb215b){const _0xc4109f=_0x2656;return _0x472642[_0xc4109f(0x7da)](_0x20fd0e,_0xfb215b);},'Dijlp':function(_0x24f2e2,_0x3519f2){const _0x3072ab=_0x2656;return _0x472642[_0x3072ab(0x3b0)](_0x24f2e2,_0x3519f2);},'SvSSU':_0x472642[_0x5c744f(0xc85)],'JjLaO':_0x472642[_0x5c744f(0x630)],'PNrqK':_0x472642[_0x16940f(0x9df)],'RxWwW':_0x472642[_0x298340(0xb55)],'qGJcM':function(_0x50dcad){const _0x436c5e=_0x2299cd;return _0x472642[_0x436c5e(0xe09)](_0x50dcad);},'DGPlp':function(_0x5b2830,_0x5c0b42,_0x5b64fd){const _0x325c0a=_0x2299cd;return _0x472642[_0x325c0a(0x26a)](_0x5b2830,_0x5c0b42,_0x5b64fd);},'RClQb':_0x472642[_0x298340(0x6ce)],'wKgqh':_0x472642[_0x5c744f(0x25e)],'tvNnC':_0x472642[_0x19cab0(0xb5b)],'rhAva':_0x472642[_0x16940f(0x45c)],'LCmaq':_0x472642[_0x16940f(0xacc)],'HENao':_0x472642[_0x19cab0(0xcb5)],'gpEvO':function(_0x3228f8,_0x410aeb){const _0x116979=_0x2299cd;return _0x472642[_0x116979(0xc8e)](_0x3228f8,_0x410aeb);},'XQNgr':_0x472642[_0x5c744f(0x359)],'fJAGs':function(_0x5ed4c4,_0x122666){const _0x3a762e=_0x2299cd;return _0x472642[_0x3a762e(0x7f5)](_0x5ed4c4,_0x122666);},'rQaQH':_0x472642[_0x2299cd(0x28d)],'ZYjXh':_0x472642[_0x298340(0x2ae)],'bUqsw':_0x472642[_0x16940f(0x324)],'pyZlH':function(_0x1c3c61,_0x1f364a){const _0x4fbe7c=_0x19cab0;return _0x472642[_0x4fbe7c(0x59d)](_0x1c3c61,_0x1f364a);},'RVsbO':function(_0x5eb0a3,_0x10e409){const _0x281dff=_0x5c744f;return _0x472642[_0x281dff(0x2ef)](_0x5eb0a3,_0x10e409);},'mraVc':_0x472642[_0x2299cd(0x487)],'RrnUa':_0x472642[_0x5c744f(0xd6d)],'OAWHQ':_0x472642[_0x298340(0x3c6)],'UtZdc':_0x472642[_0x298340(0x39d)],'JSoYY':_0x472642[_0x16940f(0x53d)],'egvIR':_0x472642[_0x16940f(0x4d6)],'mCgmS':_0x472642[_0x16940f(0xabb)],'bmmkD':_0x472642[_0x19cab0(0xb1e)],'QBAFA':_0x472642[_0x2299cd(0x414)],'MTVEs':_0x472642[_0x298340(0x775)],'mHzUT':_0x472642[_0x19cab0(0x5ec)],'VeDOM':_0x472642[_0x5c744f(0x1ed)],'ShNlZ':_0x472642[_0x2299cd(0x2a2)],'wKCPm':_0x472642[_0x2299cd(0x84e)],'avHgq':_0x472642[_0x5c744f(0x42e)],'KBirH':function(_0x281c51,_0x52bfdd){const _0x3c8735=_0x298340;return _0x472642[_0x3c8735(0x7f5)](_0x281c51,_0x52bfdd);},'fldro':_0x472642[_0x5c744f(0x310)],'iUvUJ':_0x472642[_0x5c744f(0x277)],'Ngfnt':_0x472642[_0x298340(0xa24)]};if(_0x472642[_0x5c744f(0x5e4)](_0x472642[_0x16940f(0x31a)],_0x472642[_0x16940f(0x31a)])){prompt=JSON[_0x16940f(0xcc6)](_0x472642[_0x16940f(0x1f1)](atob,/<div id="prompt" style="display:none">(.*?)<\/div>/[_0x298340(0x255)](_0x3ede5d[_0x19cab0(0x922)+_0x2299cd(0xad9)][-0x7de+0x6bb+0x123][_0x16940f(0x6d7)+'nt'])[0x4cf*-0x6+0xf80+0xd5b])),prompt[_0x16940f(0xc96)][_0x5c744f(0x5ff)+_0x5c744f(0x290)+_0x5c744f(0x2eb)+'y']=0x709+0x1*0x1eea+-0x25f2,prompt[_0x19cab0(0xc96)][_0x16940f(0x536)+_0x5c744f(0x7db)+'e']=-0x1235+0xb4+0x1181*0x1+0.9;for(st in prompt[_0x298340(0x790)]){if(_0x472642[_0x5c744f(0xca0)](_0x472642[_0x2299cd(0x363)],_0x472642[_0x16940f(0x363)]))_0x23ce26[_0x19cab0(0x1e3)]([_0x34d2f3[_0x5c744f(0x411)+'ge'],_0x128362,_0xf8d76f,_0x58d75c]),_0x115e09='',_0xad93ce='';else{if(_0x472642[_0x2299cd(0x60c)](_0x472642[_0x16940f(0x53b)](_0x472642[_0x298340(0x508)](_0x472642[_0x5c744f(0x3b0)](_0x472642[_0x16940f(0x508)](_0x472642[_0x16940f(0x3b0)](knowledge,prompt[_0x2299cd(0x790)][st]),'\x0a'),_0x472642[_0x19cab0(0xbd7)]),_0x1d490e),_0x472642[_0x5c744f(0x4ae)])[_0x19cab0(0x8a3)+'h'],0x23f3*0x1+0x1d2f*-0x1+0x1d*-0x8))knowledge+=_0x472642[_0x298340(0x3b0)](prompt[_0x5c744f(0x790)][st],'\x0a');}}const _0x25d14a={};_0x25d14a[_0x19cab0(0x99e)]=_0x472642[_0x2299cd(0xc07)],_0x25d14a[_0x19cab0(0x6d7)+'nt']=_0x472642[_0x16940f(0xac8)],prompt[_0x298340(0xc96)][_0x2299cd(0xd53)+_0x5c744f(0x242)]=[_0x25d14a,{'role':_0x472642[_0x16940f(0x45c)],'content':_0x472642[_0x19cab0(0x508)](_0x472642[_0x16940f(0xd2d)],knowledge)},{'role':_0x472642[_0x5c744f(0xacc)],'content':_0x472642[_0x16940f(0x6aa)](_0x472642[_0x19cab0(0x7ff)](_0x472642[_0x2299cd(0x7d6)],_0x1d490e),'')}],optionsweb={'method':_0x472642[_0x5c744f(0x225)],'headers':headers,'body':_0x472642[_0x298340(0x9dc)](b64EncodeUnicode,JSON[_0x16940f(0xb00)+_0x298340(0xbb2)](prompt[_0x5c744f(0xc96)]))},document[_0x298340(0x9f4)+_0x5c744f(0xc14)+_0x16940f(0xa51)](_0x472642[_0x2299cd(0x1ed)])[_0x298340(0x6e5)+_0x298340(0x3cd)]='',_0x472642[_0x16940f(0x964)](markdownToHtml,_0x472642[_0x16940f(0x9dc)](beautify,_0x1d490e),document[_0x298340(0x9f4)+_0x16940f(0xc14)+_0x2299cd(0xa51)](_0x472642[_0x2299cd(0x1ed)])),chatTemp='',text_offset=-(0x272*0x7+-0x24cc+-0x1*-0x13af),prev_chat=document[_0x2299cd(0xae4)+_0x16940f(0x2b8)+_0x19cab0(0x9e0)](_0x472642[_0x298340(0x2a2)])[_0x19cab0(0x6e5)+_0x298340(0x3cd)],prev_chat=_0x472642[_0x19cab0(0x735)](_0x472642[_0x298340(0x965)](_0x472642[_0x19cab0(0xd8e)](prev_chat,_0x472642[_0x19cab0(0x8f9)]),document[_0x5c744f(0x9f4)+_0x19cab0(0xc14)+_0x5c744f(0xa51)](_0x472642[_0x19cab0(0x1ed)])[_0x298340(0x6e5)+_0x298340(0x3cd)]),_0x472642[_0x16940f(0x42e)]),_0x472642[_0x298340(0xcd7)](fetch,_0x472642[_0x298340(0xe61)],optionsweb)[_0x16940f(0x8ea)](_0x90a52a=>{const _0x40493a=_0x19cab0,_0x157dbe=_0x16940f,_0x8a4844=_0x2299cd,_0x18ca88=_0x2299cd,_0x4fea26=_0x19cab0,_0x210b20={'ViwLz':function(_0x12b8e0,_0x3fe621){const _0x8115f4=_0x2656;return _0x57eaed[_0x8115f4(0xb2d)](_0x12b8e0,_0x3fe621);},'DypFe':function(_0x448580,_0x441d86){const _0x3af2da=_0x2656;return _0x57eaed[_0x3af2da(0xcc9)](_0x448580,_0x441d86);},'IAjZr':_0x57eaed[_0x40493a(0xdd9)],'IcHCQ':_0x57eaed[_0x157dbe(0x28a)],'gyeEQ':_0x57eaed[_0x8a4844(0x94c)],'ZfvZp':_0x57eaed[_0x8a4844(0x876)],'nnpxi':function(_0x2a6b46){const _0x3de3d6=_0x8a4844;return _0x57eaed[_0x3de3d6(0xd0b)](_0x2a6b46);},'INfsT':function(_0x3e90a2,_0x289336,_0x3ea0a3){const _0x207063=_0x8a4844;return _0x57eaed[_0x207063(0x21c)](_0x3e90a2,_0x289336,_0x3ea0a3);},'ueBIj':_0x57eaed[_0x8a4844(0x343)],'RWTIg':_0x57eaed[_0x157dbe(0x41d)],'rHSvV':_0x57eaed[_0x4fea26(0x2a0)],'cbyLB':_0x57eaed[_0x40493a(0x1e7)],'dBuWc':_0x57eaed[_0x40493a(0x4aa)],'qMJDQ':_0x57eaed[_0x8a4844(0x424)],'LaOet':function(_0x5f1f60,_0x5825cc){const _0x5081fd=_0x4fea26;return _0x57eaed[_0x5081fd(0x9e9)](_0x5f1f60,_0x5825cc);},'gHzYm':_0x57eaed[_0x157dbe(0xdbf)],'LVyWA':function(_0x3d5359,_0x39fc4c){const _0x1cd869=_0x4fea26;return _0x57eaed[_0x1cd869(0x477)](_0x3d5359,_0x39fc4c);},'CjVuj':_0x57eaed[_0x4fea26(0xb3a)],'PUnGl':_0x57eaed[_0x157dbe(0x6b7)],'fmSwl':_0x57eaed[_0x8a4844(0x87e)],'YGmcN':function(_0x58e316,_0x82d3d5){const _0x494cbf=_0x18ca88;return _0x57eaed[_0x494cbf(0xcf5)](_0x58e316,_0x82d3d5);},'UWqPg':function(_0x33c51b,_0x14bf22){const _0x1122ab=_0x4fea26;return _0x57eaed[_0x1122ab(0x90b)](_0x33c51b,_0x14bf22);},'NDjAq':_0x57eaed[_0x8a4844(0xbbc)],'DRZBW':function(_0x37984b,_0x50f548){const _0x2f7d2f=_0x157dbe;return _0x57eaed[_0x2f7d2f(0x9e9)](_0x37984b,_0x50f548);},'pZIAp':_0x57eaed[_0x18ca88(0x8ff)],'MTtuq':_0x57eaed[_0x18ca88(0x4a6)],'Ifaxz':_0x57eaed[_0x8a4844(0x4e1)],'TCcux':function(_0xe5a344,_0x378fae){const _0x333819=_0x157dbe;return _0x57eaed[_0x333819(0x9e9)](_0xe5a344,_0x378fae);},'qXQlk':_0x57eaed[_0x40493a(0x7c6)],'IvGsR':_0x57eaed[_0x40493a(0x3f3)],'hZhgk':_0x57eaed[_0x18ca88(0xc17)],'APyug':_0x57eaed[_0x40493a(0x483)],'TmMwO':_0x57eaed[_0x4fea26(0x425)],'ljbBj':_0x57eaed[_0x18ca88(0x77d)],'FFlkU':_0x57eaed[_0x18ca88(0x4eb)],'rBUTs':_0x57eaed[_0x157dbe(0x2ec)],'uRnza':_0x57eaed[_0x40493a(0x902)],'LBpmU':_0x57eaed[_0x18ca88(0x514)],'AVToy':_0x57eaed[_0x4fea26(0x4b4)],'XCyGJ':function(_0x284070,_0x2d93b4){const _0x309048=_0x18ca88;return _0x57eaed[_0x309048(0xdf1)](_0x284070,_0x2d93b4);},'AspZq':_0x57eaed[_0x8a4844(0x5a3)],'DCYth':_0x57eaed[_0x40493a(0x497)]};if(_0x57eaed[_0x4fea26(0x477)](_0x57eaed[_0x8a4844(0x3c0)],_0x57eaed[_0x157dbe(0x3c0)]))_0x31ccdc+='';else{const _0x455093=_0x90a52a[_0x4fea26(0x6de)][_0x8a4844(0xcd3)+_0x18ca88(0x9b4)]();let _0x146cb6='',_0xad268f='';_0x455093[_0x4fea26(0xa47)]()[_0x157dbe(0x8ea)](function _0x2b9d00({done:_0x31e890,value:_0x1f9d01}){const _0x55c969=_0x18ca88,_0x1b1989=_0x4fea26,_0x4cca3f=_0x157dbe,_0x46fcb0=_0x157dbe,_0x385756=_0x18ca88,_0x432014={'padwD':function(_0x118c01,_0x4c6405){const _0x325ada=_0x2656;return _0x210b20[_0x325ada(0xa1f)](_0x118c01,_0x4c6405);},'mesVd':function(_0xbcf606,_0x3148d6){const _0x5c09f2=_0x2656;return _0x210b20[_0x5c09f2(0x6cf)](_0xbcf606,_0x3148d6);},'MorDD':_0x210b20[_0x55c969(0x39c)],'nQlsA':_0x210b20[_0x1b1989(0xc5f)],'yzDvV':_0x210b20[_0x1b1989(0xbd9)],'ESXWV':_0x210b20[_0x4cca3f(0x3fd)],'gRKNJ':function(_0x44a876){const _0x2c806d=_0x46fcb0;return _0x210b20[_0x2c806d(0x51a)](_0x44a876);},'ojrJk':function(_0x182a6c,_0x40a5b7,_0x561072){const _0x2d31db=_0x4cca3f;return _0x210b20[_0x2d31db(0x887)](_0x182a6c,_0x40a5b7,_0x561072);},'fVBwP':_0x210b20[_0x385756(0x267)],'ebtgB':_0x210b20[_0x1b1989(0xdb7)],'tBuPg':_0x210b20[_0x4cca3f(0xa33)],'GuXXM':_0x210b20[_0x46fcb0(0x287)],'KkYhJ':_0x210b20[_0x385756(0x348)],'sNWhV':_0x210b20[_0x1b1989(0xb08)],'nvZZV':function(_0x577be0,_0x5172b6){const _0xffd8db=_0x4cca3f;return _0x210b20[_0xffd8db(0x283)](_0x577be0,_0x5172b6);},'ZajMO':_0x210b20[_0x385756(0x727)],'SqzAP':function(_0x1c867b,_0x447a03){const _0x4f767e=_0x46fcb0;return _0x210b20[_0x4f767e(0xd63)](_0x1c867b,_0x447a03);},'ajNIu':_0x210b20[_0x55c969(0xb01)],'XBojL':_0x210b20[_0x55c969(0x683)],'AovLq':_0x210b20[_0x4cca3f(0x6ae)],'tEZqB':function(_0x436642,_0x9bf3f6){const _0x52175f=_0x46fcb0;return _0x210b20[_0x52175f(0x74f)](_0x436642,_0x9bf3f6);},'qExxk':function(_0x479ff8,_0x433eb5){const _0x38cd74=_0x1b1989;return _0x210b20[_0x38cd74(0x975)](_0x479ff8,_0x433eb5);},'vQELQ':_0x210b20[_0x385756(0xb40)],'NaRAw':function(_0x36f6de,_0x1c76ac){const _0x3c30f0=_0x4cca3f;return _0x210b20[_0x3c30f0(0x98d)](_0x36f6de,_0x1c76ac);},'DFprX':_0x210b20[_0x46fcb0(0x8d1)],'GoDtr':_0x210b20[_0x55c969(0x6cb)],'ygYLb':_0x210b20[_0x46fcb0(0x43d)],'wCdMj':function(_0x2eef68,_0x25ec50){const _0x573db3=_0x385756;return _0x210b20[_0x573db3(0x71b)](_0x2eef68,_0x25ec50);},'MxoFr':_0x210b20[_0x1b1989(0xaac)],'XmWOd':_0x210b20[_0x46fcb0(0x22a)],'ZmRkl':_0x210b20[_0x55c969(0xa35)],'HPTzK':function(_0xcf59b7,_0x2bce1e){const _0x1f0d08=_0x46fcb0;return _0x210b20[_0x1f0d08(0x6cf)](_0xcf59b7,_0x2bce1e);},'ZOtKz':_0x210b20[_0x385756(0xde7)],'TPbJL':_0x210b20[_0x4cca3f(0xbcc)],'mvGuX':_0x210b20[_0x4cca3f(0x3bf)],'WHzyP':_0x210b20[_0x385756(0x528)],'qaeLD':_0x210b20[_0x55c969(0x745)],'KnnCd':function(_0x524ca7,_0x1aeadf){const _0x2c9b34=_0x46fcb0;return _0x210b20[_0x2c9b34(0xa1f)](_0x524ca7,_0x1aeadf);},'KPHbq':_0x210b20[_0x1b1989(0x529)],'rxHYQ':function(_0x3b9a2d,_0x4751d6){const _0x5722c4=_0x46fcb0;return _0x210b20[_0x5722c4(0x6cf)](_0x3b9a2d,_0x4751d6);},'FIahI':_0x210b20[_0x1b1989(0x38e)],'oOLKc':_0x210b20[_0x1b1989(0x204)]};if(_0x210b20[_0x1b1989(0x7e2)](_0x210b20[_0x55c969(0x640)],_0x210b20[_0x1b1989(0x640)]))_0x588153+='';else{if(_0x31e890)return;const _0x4baab7=new TextDecoder(_0x210b20[_0x46fcb0(0x544)])[_0x385756(0x4cf)+'e'](_0x1f9d01);return _0x4baab7[_0x46fcb0(0x26c)]()[_0x55c969(0xa2f)]('\x0a')[_0x385756(0x938)+'ch'](function(_0xa95e31){const _0x2091c2=_0x1b1989,_0x306c3d=_0x385756,_0x100fb2=_0x4cca3f,_0x41d94d=_0x55c969,_0x4caa59=_0x55c969,_0x5b7cd7={'SxuQC':function(_0x3a96f4,_0x4762aa,_0x3d8773){const _0x240c4e=_0x2656;return _0x432014[_0x240c4e(0xd14)](_0x3a96f4,_0x4762aa,_0x3d8773);},'TlbIN':_0x432014[_0x2091c2(0x7fb)],'pyApW':_0x432014[_0x306c3d(0x8b8)],'edstV':_0x432014[_0x306c3d(0xd07)],'ysDVZ':_0x432014[_0x41d94d(0x7d1)],'zTpmj':_0x432014[_0x100fb2(0x4f0)],'OaNbk':_0x432014[_0x4caa59(0x66b)],'XQmQi':_0x432014[_0x2091c2(0x47b)]};if(_0x432014[_0x2091c2(0x942)](_0x432014[_0x41d94d(0x35d)],_0x432014[_0x100fb2(0x35d)])){try{if(_0x432014[_0x306c3d(0x8e2)](_0x432014[_0x41d94d(0x512)],_0x432014[_0x100fb2(0x4e2)]))document[_0x100fb2(0x9f4)+_0x4caa59(0xc14)+_0x100fb2(0xa51)](_0x432014[_0x41d94d(0x44c)])[_0x41d94d(0x4d8)+_0x306c3d(0xb7f)]=document[_0x2091c2(0x9f4)+_0x4caa59(0xc14)+_0x2091c2(0xa51)](_0x432014[_0x100fb2(0x44c)])[_0x41d94d(0x4d8)+_0x41d94d(0x50a)+'ht'];else{let _0x3d4fc3;_0x432014[_0x41d94d(0xa7c)](_0x2a4f31,_0x432014[_0x4caa59(0x631)](_0x432014[_0x100fb2(0x256)],_0x46803e))[_0x4caa59(0x8ea)](_0x36950d=>_0x36950d[_0x41d94d(0x8bd)]())[_0x306c3d(0x8ea)](_0x48a46f=>{const _0x27f11a=_0x2091c2,_0x30a8f9=_0x2091c2,_0x54d198=_0x41d94d;_0x5b7cd7[_0x27f11a(0xbae)](_0x10bd29,_0xa12683,_0x48a46f[_0x5b7cd7[_0x30a8f9(0x65f)]][-0x1fb*-0xf+-0x1f90+0x1db][_0x5b7cd7[_0x54d198(0x3cb)]]);});return;}}catch(_0x96fd4){}_0x146cb6='';if(_0x432014[_0x100fb2(0xb5f)](_0xa95e31[_0x4caa59(0x8a3)+'h'],-0x2*0xff8+-0x1264+0x5*0xa12))_0x146cb6=_0xa95e31[_0x41d94d(0x3bc)](0xc4f+0x156+0x13d*-0xb);if(_0x432014[_0x306c3d(0xd4d)](_0x146cb6,_0x432014[_0x2091c2(0x920)])){if(_0x432014[_0x100fb2(0x419)](_0x432014[_0x4caa59(0xbeb)],_0x432014[_0x306c3d(0x1e4)]))_0x11c74d[_0x306c3d(0x292)](_0x432014[_0x306c3d(0xd07)],_0x119c9f);else{const _0x51448c=_0x432014[_0x41d94d(0x5c1)][_0x2091c2(0xa2f)]('|');let _0x415363=-0x34c*0x7+-0x1*-0x3c9+0x1c1*0xb;while(!![]){switch(_0x51448c[_0x415363++]){case'0':const _0x500910={};_0x500910[_0x4caa59(0x99e)]=_0x432014[_0x100fb2(0x66b)],_0x500910[_0x4caa59(0x6d7)+'nt']=_0x1d490e,word_last[_0x306c3d(0x1e3)](_0x500910);continue;case'1':const _0x5ee6e7={};_0x5ee6e7[_0x100fb2(0x99e)]=_0x432014[_0x4caa59(0x4f0)],_0x5ee6e7[_0x2091c2(0x6d7)+'nt']=chatTemp,word_last[_0x4caa59(0x1e3)](_0x5ee6e7);continue;case'2':document[_0x306c3d(0x9f4)+_0x4caa59(0xc14)+_0x4caa59(0xa51)](_0x432014[_0x41d94d(0x47b)])[_0x2091c2(0xad5)]='';continue;case'3':lock_chat=-0x766+-0x2188+0x28ee;continue;case'4':return;}break;}}}let _0xecdf68;try{if(_0x432014[_0x41d94d(0x222)](_0x432014[_0x4caa59(0x97f)],_0x432014[_0x41d94d(0x97f)]))try{_0x432014[_0x41d94d(0x222)](_0x432014[_0x2091c2(0x572)],_0x432014[_0x2091c2(0xb74)])?_0x4c3bb4[_0x41d94d(0x292)](_0x432014[_0x306c3d(0xd07)],_0x1a0a74):(_0xecdf68=JSON[_0x4caa59(0xcc6)](_0x432014[_0x4caa59(0x281)](_0xad268f,_0x146cb6))[_0x432014[_0x41d94d(0x273)]],_0xad268f='');}catch(_0x1fea55){_0x432014[_0x41d94d(0x222)](_0x432014[_0x306c3d(0x1f8)],_0x432014[_0x41d94d(0x1f8)])?(_0xecdf68=JSON[_0x306c3d(0xcc6)](_0x146cb6)[_0x432014[_0x2091c2(0x273)]],_0xad268f=''):_0x33c11e+=_0x5f5a4e[-0x2030+0x4*-0x9c2+0xac*0x6a][_0x2091c2(0x9d8)][_0x41d94d(0x6d7)+'nt'];}else{let _0x3ead60;try{const _0x97ba4e=FhXqKh[_0x4caa59(0xa7c)](_0x26b26a,FhXqKh[_0x4caa59(0x631)](FhXqKh[_0x306c3d(0x631)](FhXqKh[_0x41d94d(0x88b)],FhXqKh[_0x100fb2(0x4b0)]),');'));_0x3ead60=FhXqKh[_0x4caa59(0x627)](_0x97ba4e);}catch(_0xe28c1e){_0x3ead60=_0x3eda32;}_0x3ead60[_0x306c3d(0xa90)+_0x41d94d(0xaea)+'l'](_0x48e22d,-0x3a*-0x1e+0x14d1+0xbfd*-0x1);}}catch(_0x55f736){_0x432014[_0x306c3d(0x222)](_0x432014[_0x2091c2(0xe67)],_0x432014[_0x306c3d(0xe67)])?_0xad268f+=_0x146cb6:_0x41e508[_0x100fb2(0x292)](_0x5b7cd7[_0x2091c2(0x603)],_0x5c35cb);}if(_0xecdf68&&_0x432014[_0x4caa59(0xb5f)](_0xecdf68[_0x4caa59(0x8a3)+'h'],0x2*0x1021+-0x1727+-0x91b)&&_0xecdf68[0x1aea+0x1f3+-0x1*0x1cdd][_0x306c3d(0x9d8)][_0x306c3d(0x6d7)+'nt']){if(_0x432014[_0x4caa59(0x419)](_0x432014[_0x2091c2(0xdc3)],_0x432014[_0x100fb2(0xdc3)]))chatTemp+=_0xecdf68[-0x1d1d+0x3b*0x90+-0x1*0x413][_0x4caa59(0x9d8)][_0x100fb2(0x6d7)+'nt'];else{if(_0x400ee){const _0x2ba8b2=_0xe1d8a9[_0x100fb2(0xcf2)](_0x4268cf,arguments);return _0x3f4c7a=null,_0x2ba8b2;}}}chatTemp=chatTemp[_0x306c3d(0x860)+_0x2091c2(0x7c5)]('\x0a\x0a','\x0a')[_0x2091c2(0x860)+_0x306c3d(0x7c5)]('\x0a\x0a','\x0a'),document[_0x306c3d(0x9f4)+_0x2091c2(0xc14)+_0x41d94d(0xa51)](_0x432014[_0x100fb2(0x810)])[_0x100fb2(0x6e5)+_0x41d94d(0x3cd)]='',_0x432014[_0x2091c2(0xd14)](markdownToHtml,_0x432014[_0x41d94d(0x6fb)](beautify,chatTemp),document[_0x306c3d(0x9f4)+_0x4caa59(0xc14)+_0x100fb2(0xa51)](_0x432014[_0x100fb2(0x810)])),document[_0x41d94d(0xae4)+_0x2091c2(0x2b8)+_0x2091c2(0x9e0)](_0x432014[_0x100fb2(0x7a3)])[_0x41d94d(0x6e5)+_0x4caa59(0x3cd)]=_0x432014[_0x41d94d(0x631)](_0x432014[_0x4caa59(0x631)](_0x432014[_0x4caa59(0xc18)](prev_chat,_0x432014[_0x41d94d(0x235)]),document[_0x306c3d(0x9f4)+_0x2091c2(0xc14)+_0x306c3d(0xa51)](_0x432014[_0x2091c2(0x810)])[_0x2091c2(0x6e5)+_0x41d94d(0x3cd)]),_0x432014[_0x100fb2(0x73d)]);}else{const _0x2510b2=_0x5b7cd7[_0x41d94d(0x659)][_0x100fb2(0xa2f)]('|');let _0x5e23f7=-0x1a*-0x3b+0x2272+-0x10*0x287;while(!![]){switch(_0x2510b2[_0x5e23f7++]){case'0':return;case'1':const _0x44de58={};_0x44de58[_0x2091c2(0x99e)]=_0x5b7cd7[_0x2091c2(0x912)],_0x44de58[_0x41d94d(0x6d7)+'nt']=_0x2cd276,_0x54a6ad[_0x100fb2(0x1e3)](_0x44de58);continue;case'2':const _0x211ffe={};_0x211ffe[_0x100fb2(0x99e)]=_0x5b7cd7[_0x4caa59(0xcb4)],_0x211ffe[_0x306c3d(0x6d7)+'nt']=_0x4e18a0,_0x522cfc[_0x100fb2(0x1e3)](_0x211ffe);continue;case'3':_0x4a1f30[_0x100fb2(0x9f4)+_0x306c3d(0xc14)+_0x100fb2(0xa51)](_0x5b7cd7[_0x306c3d(0x3f4)])[_0x4caa59(0xad5)]='';continue;case'4':_0x103640=0x1dd2+0x23c4+-0x1*0x4196;continue;}break;}}}),_0x455093[_0x55c969(0xa47)]()[_0x4cca3f(0x8ea)](_0x2b9d00);}});}})[_0x5c744f(0xc90)](_0x2ef461=>{const _0x27de88=_0x5c744f,_0x25e979=_0x2299cd,_0x2844cc=_0x16940f,_0x68fbef=_0x19cab0,_0x52644d=_0x5c744f;_0x472642[_0x27de88(0xd04)](_0x472642[_0x27de88(0xc93)],_0x472642[_0x27de88(0xc93)])?console[_0x68fbef(0x292)](_0x472642[_0x25e979(0x630)],_0x2ef461):(_0x32ab64=_0x40eedd[_0x52644d(0xcc6)](_0x104285)[_0x57eaed[_0x25e979(0x483)]],_0x58c22f='');});}else return-(-0x1ab7*0x1+-0x1*-0x973+-0x1145*-0x1);});}(function(){const _0xac3ceb=_0x45052c,_0x363c62=_0x45052c,_0x596e2c=_0x2ebedc,_0x31c88d=_0x4e700d,_0x3be948=_0x45052c,_0x298c3d={'bnhcb':function(_0x89be13,_0x4b6ded){return _0x89be13+_0x4b6ded;},'MRYrw':_0xac3ceb(0xaed)+'es','XgQTV':function(_0x55aca7,_0x5a7ea5){return _0x55aca7===_0x5a7ea5;},'TrJEM':_0x363c62(0xa5c),'VOvlQ':function(_0x58df84,_0x55251f){return _0x58df84(_0x55251f);},'jEIvh':function(_0x26b8dd,_0x227b70){return _0x26b8dd+_0x227b70;},'CaDpJ':_0x363c62(0xadf)+_0x596e2c(0x885)+_0x3be948(0xa16)+_0x596e2c(0x575),'RACPD':_0x31c88d(0x761)+_0x3be948(0xba2)+_0xac3ceb(0x43f)+_0x596e2c(0xa42)+_0x596e2c(0xb3c)+_0x596e2c(0x29a)+'\x20)','SXmfo':function(_0x559844){return _0x559844();},'DDryl':function(_0x1a3f21,_0x342882){return _0x1a3f21!==_0x342882;},'CMqTd':_0x596e2c(0x6c3)};let _0x11d69c;try{if(_0x298c3d[_0x31c88d(0xd58)](_0x298c3d[_0x596e2c(0x650)],_0x298c3d[_0x363c62(0x650)])){const _0x47a7b4=_0x298c3d[_0x596e2c(0xcec)](Function,_0x298c3d[_0x3be948(0x41a)](_0x298c3d[_0x3be948(0x4b5)](_0x298c3d[_0x31c88d(0xc84)],_0x298c3d[_0x3be948(0x592)]),');'));_0x11d69c=_0x298c3d[_0x596e2c(0x6b9)](_0x47a7b4);}else try{_0x2494af=_0x103a11[_0x363c62(0xcc6)](_0x298c3d[_0x3be948(0x4b5)](_0x54920c,_0x4e6f84))[_0x298c3d[_0x31c88d(0x2e2)]],_0x1687ec='';}catch(_0x577254){_0x11160e=_0x26863a[_0x363c62(0xcc6)](_0x36e637)[_0x298c3d[_0x596e2c(0x2e2)]],_0x1f74e5='';}}catch(_0x1aa5a1){if(_0x298c3d[_0x31c88d(0x5e2)](_0x298c3d[_0xac3ceb(0xa81)],_0x298c3d[_0xac3ceb(0xa81)]))return-0x25cc+0x44c+0x1*0x2181;else _0x11d69c=window;}_0x11d69c[_0x596e2c(0xa90)+_0x31c88d(0xaea)+'l'](_0x3f9189,0x2*-0xa67+-0xc92*0x1+0x3100);}());function getContentLength(_0x1087db){const _0x192248=_0x34d5ad,_0x4fd8bc=_0x4e700d,_0x112ca7=_0x34d5ad,_0x228af9=_0x38e31a,_0x17cf2f=_0x34d5ad,_0x4d35db={};_0x4d35db[_0x192248(0x366)]=function(_0x5decc7,_0x1a8856){return _0x5decc7!==_0x1a8856;},_0x4d35db[_0x4fd8bc(0x3fe)]=_0x112ca7(0x971);const _0x56b2d8=_0x4d35db;let _0xf3e91b=-0x13*-0x175+-0x1e5d*0x1+0x2ae;for(let _0x22eb93 of _0x1087db){if(_0x56b2d8[_0x192248(0x366)](_0x56b2d8[_0x192248(0x3fe)],_0x56b2d8[_0x4fd8bc(0x3fe)])){const _0x525a47=_0x15aab5[_0x112ca7(0xcf2)](_0x3f4337,arguments);return _0x4a0e13=null,_0x525a47;}else _0xf3e91b+=_0x22eb93[_0x17cf2f(0x6d7)+'nt'][_0x17cf2f(0x8a3)+'h'];}return _0xf3e91b;}function trimArray(_0x3947f6,_0x419642){const _0x1b3f63=_0x45052c,_0x182623=_0x38e31a,_0x492904=_0x2ebedc,_0x531afd=_0x34d5ad,_0xed8e3b=_0x4e700d,_0x53d709={'XIOkM':function(_0x17665e,_0x4ca925){return _0x17665e>_0x4ca925;},'XSUvL':function(_0x39b1f3,_0x5719d6){return _0x39b1f3(_0x5719d6);},'AVINg':function(_0x9faa69,_0x1da201){return _0x9faa69!==_0x1da201;},'EFKkD':_0x1b3f63(0x373),'yrXme':_0x1b3f63(0x248)};while(_0x53d709[_0x1b3f63(0xd32)](_0x53d709[_0x182623(0xb49)](getContentLength,_0x3947f6),_0x419642)){_0x53d709[_0x1b3f63(0x496)](_0x53d709[_0xed8e3b(0xb14)],_0x53d709[_0xed8e3b(0xb15)])?_0x3947f6[_0x531afd(0x586)]():_0x47481d[_0x492904(0x586)]();}}function send_modalchat(_0x232372,_0x3f6888){const _0x4433b6=_0x4e700d,_0x3f4ad9=_0x34d5ad,_0x561563=_0x38e31a,_0x1e0875=_0x38e31a,_0x4fa7f1=_0x4e700d,_0x29a6df={'MMBXo':function(_0x54730a,_0x4965ca){return _0x54730a<_0x4965ca;},'cqSSo':_0x4433b6(0xc2a)+':','vYCUS':_0x3f4ad9(0xbb5)+_0x4433b6(0x6ca)+'+$','jrpuN':function(_0xec7078,_0x2b6a37){return _0xec7078!==_0x2b6a37;},'Tejiv':_0x561563(0xc39),'othah':_0x561563(0xd28),'xMsEr':function(_0x18f3b4,_0x36b1c5){return _0x18f3b4>_0x36b1c5;},'QGeUQ':function(_0x584131,_0x970fe0,_0x1c5838){return _0x584131(_0x970fe0,_0x1c5838);},'aKuyc':function(_0x59178e,_0x6c009c){return _0x59178e+_0x6c009c;},'MzCHn':function(_0x37a213,_0x144da4){return _0x37a213+_0x144da4;},'xShFe':function(_0x3d8be5,_0x477820){return _0x3d8be5+_0x477820;},'WnoxI':function(_0xc1ec6e,_0x368f36){return _0xc1ec6e+_0x368f36;},'lsRIa':function(_0x22b630,_0x4ff205){return _0x22b630!==_0x4ff205;},'JucCy':_0x1e0875(0xc1b),'eGNOK':_0x561563(0x873),'PEzyc':function(_0x107bfd,_0x50f173){return _0x107bfd===_0x50f173;},'hhFCq':_0x1e0875(0xb41),'SPcrs':_0x1e0875(0xb6b),'RCLQZ':function(_0x589c26,_0x2b7e5b){return _0x589c26===_0x2b7e5b;},'scpBM':function(_0x2b4eeb,_0x579bf1){return _0x2b4eeb(_0x579bf1);},'fpayR':_0x4433b6(0x68d)+_0x4fa7f1(0x1c6)+'结束','osQai':function(_0x50556f,_0x33f183,_0x96d0ec){return _0x50556f(_0x33f183,_0x96d0ec);},'xpxPh':_0x1e0875(0xe32),'tXzuW':_0x4fa7f1(0x46f)+_0x4433b6(0x8b7),'BHQnu':function(_0x3a188a,_0x11a799){return _0x3a188a+_0x11a799;},'efydi':function(_0x1cd109,_0x19cd79){return _0x1cd109+_0x19cd79;},'oIbqM':_0x4fa7f1(0xabe)+_0x561563(0xdd6)+_0x4fa7f1(0xa70)+_0x1e0875(0x33f)+_0x3f4ad9(0x657)+'\x22>','rxZLd':_0x4433b6(0x4f7),'BrBvA':_0x561563(0xdb3)+_0x1e0875(0x85e)+_0x4433b6(0xa84)+_0x1e0875(0x70f),'dszip':_0x561563(0xe15),'hQszH':_0x4433b6(0x328),'cPQbE':_0x1e0875(0xd7f)+'>','FboIZ':_0x561563(0x9a1)+_0x4433b6(0xa2b)+_0x561563(0x2b7)+_0x3f4ad9(0x5d0)+_0x561563(0x83d)+'--','vyFwa':_0x561563(0x9a1)+_0x4fa7f1(0x63e)+_0x1e0875(0x21e)+_0x561563(0x2e1)+_0x4433b6(0x9a1),'HZrdZ':function(_0x180e17,_0x59706a){return _0x180e17-_0x59706a;},'PObmH':function(_0x2e151b,_0x168bef){return _0x2e151b(_0x168bef);},'niCil':function(_0x266bee,_0x3cc879){return _0x266bee(_0x3cc879);},'CZFmz':_0x3f4ad9(0xbc8),'IDkBD':_0x1e0875(0x5f3)+_0x3f4ad9(0xe0f),'UEbEy':_0x1e0875(0xdc5)+'56','YSKmQ':_0x3f4ad9(0xe35)+'pt','tLNXd':function(_0x2eed41,_0x1fd8ed,_0x30f7ad){return _0x2eed41(_0x1fd8ed,_0x30f7ad);},'vccLv':_0x3f4ad9(0xaed)+'es','RLThb':_0x1e0875(0x758),'VKImn':_0x4fa7f1(0x5c3),'CFuto':function(_0x31f9c2,_0x407f02,_0x18f05c){return _0x31f9c2(_0x407f02,_0x18f05c);},'LtWUp':function(_0x21ff3d,_0x72975f){return _0x21ff3d+_0x72975f;},'gOlKe':function(_0x209685,_0x10674c,_0x4cbe2d){return _0x209685(_0x10674c,_0x4cbe2d);},'Syvgv':function(_0x3d000c,_0x4ad262){return _0x3d000c+_0x4ad262;},'jIakn':function(_0xfa8de6,_0x5ecf66){return _0xfa8de6+_0x5ecf66;},'hepyu':function(_0x36e6f1,_0x102797){return _0x36e6f1===_0x102797;},'Mixtk':_0x4fa7f1(0xa28),'gKNIf':_0x4fa7f1(0xc7c),'twlyf':_0x4fa7f1(0x83a),'gsrEi':_0x4fa7f1(0xd61)+_0x1e0875(0x64d),'Murgw':_0x4433b6(0xd1f)+_0x4433b6(0x819)+_0x4433b6(0x85e)+_0x3f4ad9(0x687)+_0x4fa7f1(0x81c)+_0x4fa7f1(0x52a)+_0x561563(0x2dc)+_0x4fa7f1(0x551)+_0x561563(0xdd1)+_0x3f4ad9(0x7ab)+_0x3f4ad9(0x492),'vqdqU':_0x4fa7f1(0x82f)+_0x561563(0xbf5),'rswYk':_0x1e0875(0x9a4),'FKjnb':_0x561563(0x3df),'qombA':_0x3f4ad9(0xd61),'vbHhT':_0x3f4ad9(0x7cd),'sOdlh':_0x4fa7f1(0x507)+'','WFkvP':_0x4433b6(0x6f4)+_0x1e0875(0x2db)+_0x3f4ad9(0xb0c)+_0x4fa7f1(0x700)+_0x561563(0xb86)+_0x1e0875(0x7c8)+_0x4433b6(0x251)+_0x4fa7f1(0xd99)+_0x4433b6(0x61d)+_0x561563(0x651)+_0x3f4ad9(0xce4)+_0x4433b6(0xd94)+_0x561563(0x434),'zxDoG':function(_0x527561,_0x171d62){return _0x527561!=_0x171d62;},'MXfbU':_0x3f4ad9(0x959)+_0x4433b6(0x33b)+_0x4fa7f1(0x1c5)+_0x3f4ad9(0x330)+_0x4433b6(0xb72)+_0x3f4ad9(0x4a5),'Gphgl':function(_0x3a6c8b,_0x4a826d){return _0x3a6c8b+_0x4a826d;},'WKpJY':function(_0x3385a5,_0x53788a){return _0x3385a5*_0x53788a;},'mFFqJ':function(_0x4977df,_0x433bc3){return _0x4977df**_0x433bc3;},'CcMPI':_0x4fa7f1(0x6c5),'cWZKw':_0x4fa7f1(0xb46),'nUjyw':_0x3f4ad9(0xd61)+_0x4433b6(0x595),'PloUL':function(_0x1b2954,_0x5012be){return _0x1b2954==_0x5012be;},'LwfIz':_0x561563(0x61e)+']','mKUXq':_0x3f4ad9(0x22c),'JvIbD':_0x1e0875(0x381),'jwEIX':_0x1e0875(0x2ea)+_0x561563(0x937),'sOyeZ':_0x4433b6(0x5a6)+_0x4fa7f1(0xc28),'pguUG':_0x4433b6(0xd61)+_0x1e0875(0xe2b)+'t','YUWPs':_0x1e0875(0xb37),'JZVbW':_0x1e0875(0xc7a),'hAVNT':_0x1e0875(0x623),'VkUox':_0x4fa7f1(0x9db),'Fmywn':_0x4fa7f1(0xde0),'VQBmj':_0x4433b6(0x41e),'SuecW':_0x4fa7f1(0xc8d)+'pt','iaJip':_0x4433b6(0xabe)+_0x4fa7f1(0xdd6)+_0x4fa7f1(0xa70)+_0x4433b6(0x48c)+_0x1e0875(0x841),'RJriA':function(_0x297fe7,_0x1e5fac){return _0x297fe7!==_0x1e5fac;},'qHKBD':_0x1e0875(0x7b6),'asZat':_0x1e0875(0x5cc),'zjAXY':_0x4fa7f1(0x9d3),'CIray':_0x561563(0x516),'FzbKA':_0x1e0875(0x1e5),'CwJEC':_0x4433b6(0x254),'nnnbQ':function(_0x510e6c,_0x387237){return _0x510e6c===_0x387237;},'MiBTp':_0x561563(0x56b),'OJlMw':function(_0xa6b46b,_0xfbda7b){return _0xa6b46b==_0xfbda7b;},'IUPcb':function(_0x3b4458,_0x4a0295){return _0x3b4458>_0x4a0295;},'xgDKt':function(_0x392311,_0x422938,_0x365035){return _0x392311(_0x422938,_0x365035);},'kcKCw':function(_0x27f370,_0x1dcde5){return _0x27f370!=_0x1dcde5;},'MGeda':_0x4fa7f1(0xacf),'QsmGw':function(_0x367546,_0x4d3fff){return _0x367546+_0x4d3fff;},'DSWCR':function(_0x2aee17,_0x3e5396){return _0x2aee17+_0x3e5396;},'wBouQ':_0x3f4ad9(0x2f2)+_0x3f4ad9(0x555),'Dggxc':_0x4fa7f1(0x333)+'\x0a','OQIvl':_0x4fa7f1(0x946)+_0x4433b6(0x454)+_0x4fa7f1(0x625)+_0x3f4ad9(0xcbf)+_0x3f4ad9(0xbaa),'WCHal':_0x561563(0x86e)+_0x561563(0x22b)+_0x3f4ad9(0x2b5)+_0x4fa7f1(0x8dc)+'e=','wiPDb':function(_0x430c4c,_0x69f7b5){return _0x430c4c!==_0x69f7b5;},'yMHfK':_0x1e0875(0xd21),'DLdRD':_0x4433b6(0xbbb),'NiTty':function(_0x37b274,_0x463802){return _0x37b274+_0x463802;},'IkTte':function(_0x39886c,_0x361b9e){return _0x39886c+_0x361b9e;},'DJuGC':_0x4fa7f1(0x4c4)+'','Zgiik':_0x1e0875(0x2d3)+'\x0a','NwaEX':function(_0x5c2708,_0xc1bf6){return _0x5c2708===_0xc1bf6;},'WYzRE':_0x3f4ad9(0x1f4),'ccSpW':function(_0x22ec62,_0x3f7a77){return _0x22ec62+_0x3f7a77;},'bGJUs':function(_0x512710,_0x47fe98){return _0x512710+_0x47fe98;},'IrrLC':function(_0x46faa8,_0x511d0c){return _0x46faa8+_0x511d0c;},'NWgVX':function(_0xcaa9f1,_0x520413){return _0xcaa9f1+_0x520413;},'VDsgK':_0x1e0875(0xd86),'jitrT':_0x1e0875(0x1dc),'OnJmc':function(_0x55ea93,_0x499f03){return _0x55ea93+_0x499f03;},'dTfUN':_0x4fa7f1(0x89d),'MFsSK':_0x4433b6(0x1cc)+'\x0a','qlkqW':function(_0x5a5dd2,_0x1cc24c){return _0x5a5dd2===_0x1cc24c;},'ieVoT':_0x3f4ad9(0x9b9),'FLBkI':function(_0x50963b,_0x9f5c9e){return _0x50963b+_0x9f5c9e;},'yATUn':function(_0x608127,_0x23497a){return _0x608127+_0x23497a;},'Wdnrd':function(_0x22d992,_0x338204){return _0x22d992+_0x338204;},'PNpuE':_0x4fa7f1(0x963)+'\x0a','BVMIA':function(_0x123355,_0x2fd2e1){return _0x123355===_0x2fd2e1;},'OCQnh':_0x561563(0x1de),'MhkRi':_0x1e0875(0x4a4),'iBpDt':function(_0xd94b,_0x20a629){return _0xd94b!==_0x20a629;},'deHKc':_0x3f4ad9(0x441),'ontJm':_0x1e0875(0x4de),'yEufq':function(_0x4768fa,_0x265b67){return _0x4768fa<_0x265b67;},'yNEJN':function(_0x26b1ac,_0x4d152f){return _0x26b1ac+_0x4d152f;},'BcHgi':function(_0x578db1,_0x151b43){return _0x578db1+_0x151b43;},'jwdTx':function(_0x316551,_0x16b098){return _0x316551+_0x16b098;},'NHaeG':_0x561563(0x6bb)+'m','Pmsjg':_0x4fa7f1(0x562)+_0x3f4ad9(0x2c2)+_0x561563(0x67e)+_0x4433b6(0x3c2)+_0x3f4ad9(0xa4a)+_0x561563(0x584)+'何人','iGZvK':function(_0x40cd40,_0x60668a){return _0x40cd40+_0x60668a;},'yBJuP':_0x1e0875(0xad3),'nUZKW':_0x1e0875(0x718)+_0x4fa7f1(0x230)+_0x4433b6(0x925),'dLMgV':function(_0xa5483d,_0x3d1fea){return _0xa5483d(_0x3d1fea);},'jGKhr':function(_0x349887,_0x11b370,_0x3b3c1a){return _0x349887(_0x11b370,_0x3b3c1a);},'PEFNY':function(_0x2abcbd,_0x29d4eb){return _0x2abcbd(_0x29d4eb);},'DxCKB':function(_0xcb3af3,_0x3b9b44){return _0xcb3af3+_0x3b9b44;},'nKbJt':function(_0x331671,_0x1ed2e6){return _0x331671+_0x1ed2e6;},'SCArI':function(_0x332b03,_0x4c9264,_0x18053f){return _0x332b03(_0x4c9264,_0x18053f);}};let _0x5a2c25=document[_0x561563(0x9f4)+_0x4fa7f1(0xc14)+_0x4433b6(0xa51)](_0x29a6df[_0x561563(0x9d1)])[_0x4fa7f1(0xad5)];if(_0x232372){if(_0x29a6df[_0x561563(0x379)](_0x29a6df[_0x4fa7f1(0x308)],_0x29a6df[_0x1e0875(0x308)]))_0x5a2c25=_0x232372[_0x4433b6(0x4ba)+_0x561563(0x342)+'t'],_0x232372[_0x561563(0xd52)+'e']();else try{var _0x5642c5=new _0x4f036d(_0x4e7e62),_0x15fd7d='';for(var _0x2fb59d=0xba5+-0x2422+-0x1*-0x187d;_0x29a6df[_0x3f4ad9(0x89b)](_0x2fb59d,_0x5642c5[_0x3f4ad9(0x80d)+_0x4433b6(0xa66)]);_0x2fb59d++){_0x15fd7d+=_0x19cdfe[_0x4433b6(0x415)+_0x4fa7f1(0xae1)+_0x561563(0x737)](_0x5642c5[_0x2fb59d]);}return _0x15fd7d;}catch(_0x58a4c8){}}if(_0x29a6df[_0x1e0875(0x8e3)](_0x5a2c25[_0x561563(0x8a3)+'h'],0x26*0x1f+-0xb*-0x3e+-0x744)||_0x29a6df[_0x4fa7f1(0x9af)](_0x5a2c25[_0x1e0875(0x8a3)+'h'],0xd*0x2f9+-0x876+-0x119*0x1b))return;_0x29a6df[_0x4433b6(0xbe5)](trimArray,word_last,0x1166+0x262*0xc+-0x2c0a);if(_0x29a6df[_0x3f4ad9(0xbf7)](lock_chat,0x1d*0x70+-0x1*0x1987+-0xcd7*-0x1)){if(_0x29a6df[_0x4433b6(0x501)](_0x29a6df[_0x1e0875(0x98f)],_0x29a6df[_0x561563(0x98f)]))_0x557f6d[_0x4fa7f1(0x292)](_0x29a6df[_0x4433b6(0xd01)],_0x4c349f);else{_0x29a6df[_0x3f4ad9(0xa0c)](alert,_0x29a6df[_0x561563(0x2ed)]);return;}}lock_chat=-0x1d6b+0x24c0+-0x754;const _0x1dacdc=_0x29a6df[_0x4433b6(0xb17)](_0x29a6df[_0x4433b6(0xb1a)](_0x29a6df[_0x4433b6(0x72b)](document[_0x4433b6(0x9f4)+_0x1e0875(0xc14)+_0x1e0875(0xa51)](_0x29a6df[_0x561563(0x505)])[_0x4433b6(0x6e5)+_0x1e0875(0x3cd)][_0x4fa7f1(0x860)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x3f4ad9(0x860)+'ce'](/<hr.*/gs,'')[_0x561563(0x860)+'ce'](/<[^>]+>/g,'')[_0x4433b6(0x860)+'ce'](/\n\n/g,'\x0a'),_0x29a6df[_0x1e0875(0x7d2)]),search_queryquery),_0x29a6df[_0x4fa7f1(0x1d0)]);let _0x11c7a5;if(document[_0x3f4ad9(0x9f4)+_0x561563(0xc14)+_0x3f4ad9(0xa51)](_0x29a6df[_0x561563(0xa0d)])[_0x4fa7f1(0x765)][_0x561563(0x731)+_0x4433b6(0xe03)](_0x29a6df[_0x4fa7f1(0x986)])){if(_0x29a6df[_0x1e0875(0xdf3)](_0x29a6df[_0x3f4ad9(0x95c)],_0x29a6df[_0x3f4ad9(0x7d8)])){_0x11c7a5=_0x29a6df[_0x4fa7f1(0xcf3)](_0x29a6df[_0x4433b6(0x260)](_0x29a6df[_0x1e0875(0x35b)],article[_0x4fa7f1(0xbad)]),'\x0a'),_0x11c7a5=_0x29a6df[_0x4fa7f1(0x5f8)](_0x11c7a5,_0x29a6df[_0x1e0875(0xa95)]),sentences[_0x1e0875(0x8c2)]((_0x57bfed,_0x2b7c3a)=>{const _0x42ba0b=_0x561563,_0x2052f8=_0x1e0875,_0xf2fb72=_0x3f4ad9,_0x3a2639=_0x4433b6,_0x1c8ce7=_0x3f4ad9,_0xdc7843={};_0xdc7843[_0x42ba0b(0x2d2)]=_0x29a6df[_0x42ba0b(0x82c)];const _0x4b6802=_0xdc7843;if(_0x29a6df[_0x42ba0b(0x921)](_0x29a6df[_0x42ba0b(0x7be)],_0x29a6df[_0x42ba0b(0x772)])){if(_0x29a6df[_0x3a2639(0xb4d)](_0x29a6df[_0x3a2639(0x2c9)](cosineSimilarity,_0x29a6df[_0x1c8ce7(0xb17)](_0x29a6df[_0x3a2639(0xa49)](_0x5a2c25,'\x20'),_0x3f6888),_0x57bfed[-0xeae+-0x1*0x22a+0xe3*0x13]),_0x29a6df[_0x1c8ce7(0x2c9)](cosineSimilarity,_0x29a6df[_0x42ba0b(0x5f8)](_0x29a6df[_0xf2fb72(0x22e)](_0x5a2c25,'\x20'),_0x3f6888),_0x2b7c3a[-0x7dd+0x1f00+0x149*-0x12])))return _0x29a6df[_0x2052f8(0x88e)](_0x29a6df[_0xf2fb72(0x8b9)],_0x29a6df[_0x42ba0b(0x4a8)])?-(0x120+0x1d45+-0xa*0x30a):!![];else{if(_0x29a6df[_0x1c8ce7(0x58e)](_0x29a6df[_0x42ba0b(0x2e4)],_0x29a6df[_0x3a2639(0x4d3)]))_0x10d908+='';else return-0xb5*-0x20+-0x23*-0x9e+0x1*-0x2c39;}}else return _0x508257[_0x2052f8(0xc23)+_0x1c8ce7(0x5a9)]()[_0x2052f8(0x3d7)+'h'](giFtLp[_0xf2fb72(0x2d2)])[_0x3a2639(0xc23)+_0x1c8ce7(0x5a9)]()[_0x42ba0b(0xced)+_0xf2fb72(0x387)+'r'](_0x435518)[_0x2052f8(0x3d7)+'h'](giFtLp[_0x1c8ce7(0x2d2)]);});for(let _0x115f3e=0xb69*-0x2+0x29*-0x3b+0x2045;_0x29a6df[_0x4fa7f1(0x89b)](_0x115f3e,Math[_0x1e0875(0xaf4)](0x1da6+-0xb*0x1d0+-0x9b0,sentences[_0x4fa7f1(0x8a3)+'h']));++_0x115f3e){if(_0x29a6df[_0x1e0875(0x4d7)](_0x29a6df[_0x3f4ad9(0x53f)],_0x29a6df[_0x4433b6(0x53f)])){if(_0x29a6df[_0x561563(0xb9f)](keytextres[_0x1e0875(0x750)+'Of'](sentences[_0x115f3e][0x106*-0x7+0x6b2+0x79]),-(-0x1880+0xf0d+0x974)))keytextres[_0x1e0875(0x838)+'ft'](_0x29a6df[_0x3f4ad9(0xe36)](_0x29a6df[_0x4433b6(0x260)](_0x29a6df[_0x4fa7f1(0xa43)](_0x29a6df[_0x3f4ad9(0x212)](_0x29a6df[_0x4433b6(0xcf3)](_0x29a6df[_0x3f4ad9(0xcf3)](_0x29a6df[_0x4433b6(0x22e)](_0x29a6df[_0x4433b6(0x3f0)]('',_0x29a6df[_0x561563(0xa7a)](String,sentences[_0x115f3e][-0x1873*-0x1+-0xb2e+0x1*-0xd45])),''),sentences[_0x115f3e][-0x69*-0x29+-0xb92*-0x3+0xb*-0x4af]),''),_0x29a6df[_0x4433b6(0xde1)](String,sentences[_0x115f3e][-0x1d50*0x1+-0x2173+0x3ec6])),'行:'),sentences[_0x115f3e][-0x7eb+-0x1*-0x21c1+-0x19d5]),'\x0a'));}else _0x29a6df[_0x4433b6(0x35a)](_0x52bfbf[_0x561563(0x6fd)+_0x4433b6(0x422)],0x6*0x6d+0x3d*0x27+-0x2f6*0x4)?(_0x3c7620[_0x4fa7f1(0x49d)+_0x4433b6(0x85f)+_0x1e0875(0xb28)](),_0x29a6df[_0x3f4ad9(0xa0c)](_0xe0ab14,_0x29a6df[_0x4fa7f1(0x2ed)])):_0x29a6df[_0x1e0875(0xc3f)](_0x541901,_0x5d1f8d[_0x2fe61c][_0x561563(0x250)],_0x29a6df[_0x1e0875(0x5b2)]);}}else _0x402c72[_0x1e0875(0xae4)+_0x4433b6(0x2b8)+_0x4433b6(0x9e0)](_0x29a6df[_0x1e0875(0x774)])[_0x3f4ad9(0x6e5)+_0x4fa7f1(0x3cd)]=_0x29a6df[_0x4fa7f1(0xb17)](_0x29a6df[_0x4fa7f1(0xb17)](_0x29a6df[_0x561563(0xa49)](_0x29a6df[_0x1e0875(0x22e)](_0x29a6df[_0x3f4ad9(0x9c9)](_0x29a6df[_0x1e0875(0xccc)](_0x556541,_0x29a6df[_0x4fa7f1(0xdad)]),_0x29a6df[_0x1e0875(0xe24)]),_0x29a6df[_0x561563(0x6f8)]),_0x29a6df[_0x3f4ad9(0x74c)]),_0x29a6df[_0x3f4ad9(0x316)]),_0x29a6df[_0x4433b6(0x69e)]);}else{if(_0x29a6df[_0x3f4ad9(0xdf3)](_0x29a6df[_0x3f4ad9(0x823)],_0x29a6df[_0x3f4ad9(0x66c)])){_0x11c7a5=_0x29a6df[_0x561563(0xcf3)](_0x29a6df[_0x561563(0x521)](_0x29a6df[_0x561563(0xc3b)](_0x29a6df[_0x4433b6(0xd4c)],article[_0x4fa7f1(0xbad)]),'\x0a'),_0x29a6df[_0x1e0875(0xe3d)]);for(el in modalele){if(_0x29a6df[_0x4fa7f1(0xb20)](_0x29a6df[_0x1e0875(0x4a2)],_0x29a6df[_0x4fa7f1(0x4a2)])){if(_0x29a6df[_0x4fa7f1(0x89b)](_0x29a6df[_0x3f4ad9(0xc3b)](_0x29a6df[_0x4fa7f1(0x697)](_0x11c7a5,modalele[el]),'\x0a')[_0x561563(0x8a3)+'h'],-0x14c0+-0x88*0x2+0x4*0x655))_0x11c7a5=_0x29a6df[_0x3f4ad9(0x67a)](_0x29a6df[_0x4fa7f1(0x6a4)](_0x11c7a5,modalele[el]),'\x0a');}else{const _0x2b5c9a=_0x29a6df[_0x4fa7f1(0xdb9)],_0x51596b=_0x29a6df[_0x1e0875(0x458)],_0x5b2ec4=_0x12d329[_0x4433b6(0xb52)+_0x561563(0xa59)](_0x2b5c9a[_0x561563(0x8a3)+'h'],_0x29a6df[_0x4fa7f1(0xbcf)](_0x14e36f[_0x4433b6(0x8a3)+'h'],_0x51596b[_0x3f4ad9(0x8a3)+'h'])),_0x1a1ce2=_0x29a6df[_0x3f4ad9(0xde1)](_0x24b612,_0x5b2ec4),_0x8b5c1b=_0x29a6df[_0x3f4ad9(0xa7a)](_0xebc266,_0x1a1ce2);return _0x396375[_0x561563(0x8a1)+'e'][_0x4433b6(0x792)+_0x3f4ad9(0x2c5)](_0x29a6df[_0x1e0875(0xd92)],_0x8b5c1b,{'name':_0x29a6df[_0x3f4ad9(0x7ba)],'hash':_0x29a6df[_0x1e0875(0x90f)]},!![],[_0x29a6df[_0x4433b6(0x96b)]]);}}_0x11c7a5=_0x29a6df[_0x4433b6(0xd54)](_0x11c7a5,_0x29a6df[_0x4fa7f1(0xda3)]),fulltext[_0x4fa7f1(0x8c2)]((_0x410c9d,_0x487cd3)=>{const _0x45b899=_0x3f4ad9,_0x33b8cc=_0x561563,_0x4e2ec3=_0x4433b6,_0x381d5b=_0x3f4ad9,_0x97e28d=_0x3f4ad9,_0x553376={'pSifY':function(_0x1cf4c3,_0x49d59b){const _0x3ec066=_0x2656;return _0x29a6df[_0x3ec066(0xccc)](_0x1cf4c3,_0x49d59b);},'vJvjs':_0x29a6df[_0x45b899(0x608)]};if(_0x29a6df[_0x33b8cc(0x35a)](_0x29a6df[_0x45b899(0x8e7)],_0x29a6df[_0x33b8cc(0x338)]))_0x29a6df[_0x381d5b(0xa52)](_0x54e0cd,_0x2e82ae[_0x3c7ca8][_0x45b899(0x250)],_0x29a6df[_0x45b899(0x5b2)]);else{if(_0x29a6df[_0x45b899(0xb4d)](_0x29a6df[_0x97e28d(0xad7)](cosineSimilarity,_0x29a6df[_0x381d5b(0x22e)](_0x29a6df[_0x4e2ec3(0xc3b)](_0x5a2c25,'\x20'),_0x3f6888),_0x410c9d),_0x29a6df[_0x33b8cc(0x76a)](cosineSimilarity,_0x29a6df[_0x381d5b(0x697)](_0x29a6df[_0x45b899(0xcd2)](_0x5a2c25,'\x20'),_0x3f6888),_0x487cd3)))return _0x29a6df[_0x4e2ec3(0x6d4)](_0x29a6df[_0x97e28d(0x71a)],_0x29a6df[_0x4e2ec3(0x259)])?-0x15a2+0x1*0x373+0x1230:-(0x135c+-0x1c39*-0x1+0x366*-0xe);else{if(_0x29a6df[_0x33b8cc(0x6d4)](_0x29a6df[_0x33b8cc(0x8c9)],_0x29a6df[_0x381d5b(0x8c9)]))return-0x1*-0x15f7+-0x1ea7+0x59*0x19;else _0x2bcd7d=_0x22d462[_0x4e2ec3(0xcc6)](_0x553376[_0x45b899(0x2af)](_0x43e5eb,_0x23c3e0))[_0x553376[_0x45b899(0x394)]],_0x118809='';}}});for(let _0x2f31c0=-0x53*-0x1f+0x25f1*-0x1+0x1be4;_0x29a6df[_0x1e0875(0x89b)](_0x2f31c0,Math[_0x4fa7f1(0xaf4)](0x180*-0x17+0x1a5a+0x82a*0x1,fulltext[_0x4fa7f1(0x8a3)+'h']));++_0x2f31c0){if(_0x29a6df[_0x4433b6(0xb4a)](_0x29a6df[_0x561563(0x30d)],_0x29a6df[_0x3f4ad9(0xdcb)]))_0x3a81cd='';else{if(_0x29a6df[_0x1e0875(0xb9f)](keytextres[_0x4fa7f1(0x750)+'Of'](fulltext[_0x2f31c0]),-(0x2685+-0x8e6+-0x1d9e)))keytextres[_0x561563(0x838)+'ft'](fulltext[_0x2f31c0]);}}}else return _0x2214b7;}keySentencesCount=0x561*-0x3+0xe0b+0x218;for(st in keytextres){if(_0x29a6df[_0x1e0875(0x35c)](_0x29a6df[_0x1e0875(0x4f8)],_0x29a6df[_0x4433b6(0x773)])){if(_0x29a6df[_0x561563(0xce2)](_0x29a6df[_0x1e0875(0xbdd)](_0x29a6df[_0x4433b6(0xabd)](_0x11c7a5,keytextres[st]),'\x0a')[_0x561563(0x8a3)+'h'],0x1*0x2079+-0x64f+-0x144e))_0x11c7a5=_0x29a6df[_0x1e0875(0x610)](_0x29a6df[_0x561563(0xcd2)](_0x11c7a5,keytextres[st]),'\x0a');keySentencesCount=_0x29a6df[_0x1e0875(0xcf3)](keySentencesCount,-0x99a+-0x2159+0x2af4);}else _0x22cdce=_0x472da8[_0x4433b6(0xcc6)](_0x29a6df[_0x4fa7f1(0x697)](_0x148aaa,_0x124fcb))[_0x29a6df[_0x4fa7f1(0x608)]],_0x1b3626='';}const _0x4d01b1={};_0x4d01b1[_0x4433b6(0x99e)]=_0x29a6df[_0x3f4ad9(0xc7b)],_0x4d01b1[_0x1e0875(0x6d7)+'nt']=_0x29a6df[_0x3f4ad9(0x2da)];const _0xe6e96b={};_0xe6e96b[_0x4fa7f1(0x99e)]=_0x29a6df[_0x3f4ad9(0xb5d)],_0xe6e96b[_0x1e0875(0x6d7)+'nt']=_0x11c7a5,mes=[_0x4d01b1,_0xe6e96b],mes=mes[_0x561563(0xbe4)+'t'](word_last),mes=mes[_0x4433b6(0xbe4)+'t']([{'role':_0x29a6df[_0x561563(0x462)],'content':_0x29a6df[_0x4433b6(0x6a4)](_0x29a6df[_0x561563(0x465)](_0x29a6df[_0x1e0875(0x2aa)],_0x5a2c25),_0x29a6df[_0x561563(0x553)])}]);const _0x46e503={'method':_0x29a6df[_0x1e0875(0x4df)],'headers':headers,'body':_0x29a6df[_0x561563(0xc55)](b64EncodeUnicode,JSON[_0x561563(0xb00)+_0x4433b6(0xbb2)]({'messages':mes[_0x4433b6(0xbe4)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};_0x5a2c25=_0x5a2c25[_0x561563(0x860)+_0x4433b6(0x7c5)]('\x0a\x0a','\x0a')[_0x1e0875(0x860)+_0x1e0875(0x7c5)]('\x0a\x0a','\x0a'),document[_0x561563(0x9f4)+_0x3f4ad9(0xc14)+_0x3f4ad9(0xa51)](_0x29a6df[_0x4fa7f1(0x354)])[_0x561563(0x6e5)+_0x4fa7f1(0x3cd)]='',_0x29a6df[_0x4fa7f1(0xd8b)](markdownToHtml,_0x29a6df[_0x3f4ad9(0x615)](beautify,_0x5a2c25),document[_0x3f4ad9(0x9f4)+_0x561563(0xc14)+_0x4fa7f1(0xa51)](_0x29a6df[_0x1e0875(0x354)])),chatTemp='',text_offset=-(0x1087*-0x2+-0x111b*0x2+0x3f5*0x11),prev_chat=document[_0x4433b6(0xae4)+_0x561563(0x2b8)+_0x4fa7f1(0x9e0)](_0x29a6df[_0x1e0875(0x774)])[_0x4fa7f1(0x6e5)+_0x4433b6(0x3cd)],prev_chat=_0x29a6df[_0x3f4ad9(0x610)](_0x29a6df[_0x561563(0x4c3)](_0x29a6df[_0x4fa7f1(0xd89)](prev_chat,_0x29a6df[_0x4433b6(0xdad)]),document[_0x1e0875(0x9f4)+_0x3f4ad9(0xc14)+_0x3f4ad9(0xa51)](_0x29a6df[_0x3f4ad9(0x354)])[_0x4433b6(0x6e5)+_0x4433b6(0x3cd)]),_0x29a6df[_0x4fa7f1(0x69e)]),_0x29a6df[_0x3f4ad9(0xb64)](fetch,_0x29a6df[_0x561563(0x332)],_0x46e503)[_0x1e0875(0x8ea)](_0x96493a=>{const _0x10de03=_0x561563,_0x17c156=_0x4fa7f1,_0x55ad1e=_0x3f4ad9,_0x51d00f=_0x561563,_0x76a545=_0x3f4ad9,_0x440877={'wKLYn':function(_0x47c835,_0x253b4f){const _0x502d40=_0x2656;return _0x29a6df[_0x502d40(0xa7a)](_0x47c835,_0x253b4f);},'edQba':function(_0x28b5df,_0x3a7c82){const _0x21b623=_0x2656;return _0x29a6df[_0x21b623(0xb4d)](_0x28b5df,_0x3a7c82);},'mamFl':function(_0x5d1f2f,_0x1a0aec){const _0x3e39c8=_0x2656;return _0x29a6df[_0x3e39c8(0xde1)](_0x5d1f2f,_0x1a0aec);},'kfJsv':_0x29a6df[_0x10de03(0xa01)],'xDYBh':function(_0x3379a2,_0x288f73){const _0x6f8eff=_0x10de03;return _0x29a6df[_0x6f8eff(0x9c9)](_0x3379a2,_0x288f73);},'xhNdu':_0x29a6df[_0x10de03(0x5a2)],'FKrAc':_0x29a6df[_0x55ad1e(0xaf8)],'HwXLU':_0x29a6df[_0x10de03(0x4df)],'GvIkY':_0x29a6df[_0x51d00f(0x462)],'cLhIY':function(_0x514a70,_0x188c32){const _0x2bde58=_0x51d00f;return _0x29a6df[_0x2bde58(0x5f8)](_0x514a70,_0x188c32);},'GJJSe':_0x29a6df[_0x51d00f(0x505)],'nwdUk':_0x29a6df[_0x76a545(0x641)],'wzyPx':_0x29a6df[_0x55ad1e(0x9aa)],'aoRnS':_0x29a6df[_0x55ad1e(0x9a7)],'vXhom':function(_0x5b84c0,_0xf4f29c){const _0x1d6da9=_0x55ad1e;return _0x29a6df[_0x1d6da9(0x715)](_0x5b84c0,_0xf4f29c);},'eAgbi':function(_0x58a893,_0x43e618,_0x21480c){const _0x168ece=_0x17c156;return _0x29a6df[_0x168ece(0xad7)](_0x58a893,_0x43e618,_0x21480c);},'KboSE':_0x29a6df[_0x55ad1e(0x332)],'GZwBt':function(_0x5827be,_0x49d377){const _0x4bfb38=_0x10de03;return _0x29a6df[_0x4bfb38(0x89b)](_0x5827be,_0x49d377);},'MfeOu':function(_0x36653a,_0x157629){const _0x1c853a=_0x76a545;return _0x29a6df[_0x1c853a(0x6d8)](_0x36653a,_0x157629);},'hxdvF':function(_0x19df4d,_0x46eaa1){const _0x2d8f5d=_0x55ad1e;return _0x29a6df[_0x2d8f5d(0xa49)](_0x19df4d,_0x46eaa1);},'BXGNl':function(_0x6c6702,_0x59b1f1){const _0x1b47f8=_0x55ad1e;return _0x29a6df[_0x1b47f8(0xa88)](_0x6c6702,_0x59b1f1);},'IYkJd':function(_0x2ecfce,_0x265817){const _0x527343=_0x17c156;return _0x29a6df[_0x527343(0x6df)](_0x2ecfce,_0x265817);},'WJxuj':_0x29a6df[_0x10de03(0x608)],'LkDAH':function(_0x1c02af,_0x56f80c){const _0x5dd6a3=_0x55ad1e;return _0x29a6df[_0x5dd6a3(0x88e)](_0x1c02af,_0x56f80c);},'KCKhe':_0x29a6df[_0x17c156(0x5fa)],'kJurD':function(_0x3c68c3,_0x40af93){const _0x336fdc=_0x55ad1e;return _0x29a6df[_0x336fdc(0x58e)](_0x3c68c3,_0x40af93);},'ESzmI':_0x29a6df[_0x17c156(0x417)],'FVPuN':_0x29a6df[_0x10de03(0xc80)],'ticJT':function(_0x3d9562,_0x4ae005){const _0x42244f=_0x17c156;return _0x29a6df[_0x42244f(0xb9f)](_0x3d9562,_0x4ae005);},'vkdIL':_0x29a6df[_0x76a545(0x909)],'PJPap':_0x29a6df[_0x10de03(0x3e7)],'oiMym':_0x29a6df[_0x51d00f(0xbf4)],'AlTXP':_0x29a6df[_0x76a545(0x4a3)],'bKoXH':_0x29a6df[_0x17c156(0xb5d)],'qpovY':_0x29a6df[_0x10de03(0x9d1)],'AuvfW':_0x29a6df[_0x55ad1e(0x30e)],'giFKb':_0x29a6df[_0x76a545(0xe38)],'MQpHj':_0x29a6df[_0x17c156(0x345)],'kDGeK':_0x29a6df[_0x17c156(0x7c7)],'yRSuC':_0x29a6df[_0x76a545(0xdc2)],'ZRYPl':_0x29a6df[_0x17c156(0xdea)],'pivnu':_0x29a6df[_0x51d00f(0x354)],'JUwSN':function(_0x339cb5,_0x367b77,_0xeb732f){const _0x271806=_0x76a545;return _0x29a6df[_0x271806(0xad7)](_0x339cb5,_0x367b77,_0xeb732f);},'MWoZj':_0x29a6df[_0x51d00f(0x774)],'tTaSJ':_0x29a6df[_0x51d00f(0x398)],'hAxwF':_0x29a6df[_0x55ad1e(0x69e)],'aFOQi':function(_0x5ccaea,_0x23e691){const _0x5c2c65=_0x51d00f;return _0x29a6df[_0x5c2c65(0x501)](_0x5ccaea,_0x23e691);},'ilptk':_0x29a6df[_0x76a545(0x76b)],'GUFXv':_0x29a6df[_0x51d00f(0x520)]};if(_0x29a6df[_0x76a545(0x6d4)](_0x29a6df[_0x55ad1e(0xbe8)],_0x29a6df[_0x10de03(0x4ca)]))_0x3e080d+=_0x27d6d6;else{const _0x354cc3=_0x96493a[_0x17c156(0x6de)][_0x51d00f(0xcd3)+_0x76a545(0x9b4)]();let _0x1af534='',_0x5cf063='';_0x354cc3[_0x51d00f(0xa47)]()[_0x55ad1e(0x8ea)](function _0x5dc09b({done:_0x38735d,value:_0x4b98c8}){const _0x4cc9ca=_0x76a545,_0xb9b1e9=_0x76a545,_0x5bba51=_0x10de03,_0x14a127=_0x55ad1e,_0x5c6eb6=_0x17c156,_0x1b3e25={'efJPU':function(_0x4977b6,_0x3ca9fb){const _0x3052df=_0x2656;return _0x440877[_0x3052df(0xcbb)](_0x4977b6,_0x3ca9fb);},'ivuNF':function(_0x533b5e,_0x1af9ab){const _0x2c5691=_0x2656;return _0x440877[_0x2c5691(0x427)](_0x533b5e,_0x1af9ab);},'DjYbQ':_0x440877[_0x4cc9ca(0xe26)],'NSLXl':function(_0x3d0542,_0x35f657){const _0x102ad2=_0x4cc9ca;return _0x440877[_0x102ad2(0xb13)](_0x3d0542,_0x35f657);},'UpXNK':_0x440877[_0xb9b1e9(0x91f)],'ZOoVl':_0x440877[_0xb9b1e9(0x8c8)],'tmHQZ':_0x440877[_0x14a127(0x20c)],'itluL':function(_0x22b226,_0x46f4fb){const _0x460a02=_0x4cc9ca;return _0x440877[_0x460a02(0x427)](_0x22b226,_0x46f4fb);},'Hopdk':_0x440877[_0x4cc9ca(0x3ad)],'sdnoo':function(_0x4e287f,_0x7256bc){const _0x4443b1=_0x5bba51;return _0x440877[_0x4443b1(0xbb4)](_0x4e287f,_0x7256bc);},'xeooi':function(_0x1bf78f,_0x25f32c){const _0x51862e=_0xb9b1e9;return _0x440877[_0x51862e(0xbb4)](_0x1bf78f,_0x25f32c);},'EphBE':_0x440877[_0x5c6eb6(0xc27)],'rntzy':_0x440877[_0x5bba51(0x759)],'kofIn':_0x440877[_0x5bba51(0xd24)],'EtKMg':_0x440877[_0xb9b1e9(0xa54)],'nMUnV':function(_0x1f456e,_0x290baf){const _0x1ae3d0=_0x5bba51;return _0x440877[_0x1ae3d0(0x4f9)](_0x1f456e,_0x290baf);},'VusGD':function(_0x4d631e,_0x52e5af,_0x2aab9c){const _0xd94254=_0x5c6eb6;return _0x440877[_0xd94254(0x93e)](_0x4d631e,_0x52e5af,_0x2aab9c);},'OXIMf':_0x440877[_0x5c6eb6(0x708)],'dxilo':function(_0xc6e054,_0xbe9541){const _0xa7dd7c=_0x4cc9ca;return _0x440877[_0xa7dd7c(0xe4b)](_0xc6e054,_0xbe9541);},'baMqB':function(_0x35ae50,_0x5076cf){const _0x164e6a=_0x14a127;return _0x440877[_0x164e6a(0xe4b)](_0x35ae50,_0x5076cf);},'EJosp':function(_0x7d453a,_0x1a2066){const _0x11980a=_0x5c6eb6;return _0x440877[_0x11980a(0xa9f)](_0x7d453a,_0x1a2066);},'euMGn':function(_0x163f56,_0x323b1e){const _0x551e73=_0xb9b1e9;return _0x440877[_0x551e73(0xa9f)](_0x163f56,_0x323b1e);},'OCXZA':function(_0x4bb3cd,_0x403806){const _0x99daba=_0x4cc9ca;return _0x440877[_0x99daba(0xc05)](_0x4bb3cd,_0x403806);},'ULbwp':function(_0x31eca5,_0x17792e){const _0x3af7c1=_0x5bba51;return _0x440877[_0x3af7c1(0x8e4)](_0x31eca5,_0x17792e);},'eNDaN':function(_0x5ffe43,_0x55b728){const _0x42a969=_0xb9b1e9;return _0x440877[_0x42a969(0xb84)](_0x5ffe43,_0x55b728);},'PLGaL':function(_0x2036cd,_0x206800){const _0x6af5da=_0x5bba51;return _0x440877[_0x6af5da(0xb84)](_0x2036cd,_0x206800);},'xmJvo':_0x440877[_0x5bba51(0x85a)],'qJshg':function(_0x30e9dc,_0x549ab5){const _0x31a81a=_0x5c6eb6;return _0x440877[_0x31a81a(0xb7e)](_0x30e9dc,_0x549ab5);},'dQbXw':_0x440877[_0xb9b1e9(0xc2f)],'scNvO':function(_0x3c5070,_0x35bb92){const _0x1cdde8=_0x4cc9ca;return _0x440877[_0x1cdde8(0x78e)](_0x3c5070,_0x35bb92);},'zlVjs':_0x440877[_0xb9b1e9(0x672)],'WcSkf':_0x440877[_0x4cc9ca(0x24c)],'pFTFM':function(_0x52eea7,_0x265564){const _0x5d2573=_0xb9b1e9;return _0x440877[_0x5d2573(0xc16)](_0x52eea7,_0x265564);},'Vhvwb':_0x440877[_0xb9b1e9(0xd59)],'tBCvc':_0x440877[_0xb9b1e9(0xcf7)],'QGKYJ':_0x440877[_0x5c6eb6(0x1ef)],'tDkhx':_0x440877[_0xb9b1e9(0x27f)],'rCJQJ':_0x440877[_0x4cc9ca(0x633)],'qCBZo':_0x440877[_0x4cc9ca(0x208)],'wyEaL':function(_0x40444d,_0x1ddf0a){const _0xf4852=_0x4cc9ca;return _0x440877[_0xf4852(0xb7e)](_0x40444d,_0x1ddf0a);},'SfJaa':_0x440877[_0x5c6eb6(0x56f)],'NHHbS':_0x440877[_0xb9b1e9(0xca7)],'Egdfi':_0x440877[_0x5c6eb6(0xa6c)],'AADKX':_0x440877[_0x5c6eb6(0xca9)],'NCHZl':_0x440877[_0xb9b1e9(0x1e1)],'tAHcq':_0x440877[_0xb9b1e9(0x2bc)],'NnXcm':_0x440877[_0x4cc9ca(0xe5e)],'YOtcw':function(_0x347b86,_0x435b82,_0x28c65d){const _0x52b8d1=_0x5c6eb6;return _0x440877[_0x52b8d1(0x1df)](_0x347b86,_0x435b82,_0x28c65d);},'sHtdE':function(_0x8aa90d,_0x3faaba){const _0x558582=_0x14a127;return _0x440877[_0x558582(0x427)](_0x8aa90d,_0x3faaba);},'XqehU':_0x440877[_0x5c6eb6(0x7e5)],'raNvS':function(_0x243270,_0x2b83c0){const _0x26f0e6=_0x4cc9ca;return _0x440877[_0x26f0e6(0xb13)](_0x243270,_0x2b83c0);},'SCciU':function(_0x7ef5d7,_0x1db064){const _0x1cf54a=_0x5c6eb6;return _0x440877[_0x1cf54a(0xb13)](_0x7ef5d7,_0x1db064);},'lwoqW':_0x440877[_0x4cc9ca(0x57f)],'ndMaR':_0x440877[_0xb9b1e9(0x997)]};if(_0x440877[_0x5bba51(0x7e0)](_0x440877[_0x5bba51(0x266)],_0x440877[_0x4cc9ca(0x266)]))JQaCyW[_0xb9b1e9(0xa48)](_0x440d71,'0');else{if(_0x38735d)return;const _0x853aec=new TextDecoder(_0x440877[_0xb9b1e9(0xa6e)])[_0x4cc9ca(0x4cf)+'e'](_0x4b98c8);return _0x853aec[_0x5bba51(0x26c)]()[_0x5c6eb6(0xa2f)]('\x0a')[_0x5c6eb6(0x938)+'ch'](function(_0x89d779){const _0x244f84=_0xb9b1e9,_0x7ffb49=_0x4cc9ca,_0x8a4965=_0x4cc9ca,_0x4338f0=_0x14a127,_0x477439=_0x4cc9ca,_0x3fb0fa={'hWBns':function(_0x575558,_0xa69346){const _0x4cdd72=_0x2656;return _0x1b3e25[_0x4cdd72(0x1d3)](_0x575558,_0xa69346);},'yLESa':function(_0x16f8df,_0x4310f5){const _0x46c4d8=_0x2656;return _0x1b3e25[_0x46c4d8(0xcf1)](_0x16f8df,_0x4310f5);},'hjhSI':function(_0x40341f,_0x50f1e3){const _0x711876=_0x2656;return _0x1b3e25[_0x711876(0x498)](_0x40341f,_0x50f1e3);},'GwthR':_0x1b3e25[_0x244f84(0xe1d)]};if(_0x1b3e25[_0x244f84(0x1d2)](_0x1b3e25[_0x7ffb49(0x7ec)],_0x1b3e25[_0x7ffb49(0x7ec)]))_0x1f2aca+='';else{try{_0x1b3e25[_0x8a4965(0xd95)](_0x1b3e25[_0x477439(0x5aa)],_0x1b3e25[_0x244f84(0x5aa)])?document[_0x7ffb49(0x9f4)+_0x244f84(0xc14)+_0x8a4965(0xa51)](_0x1b3e25[_0x8a4965(0x2b0)])[_0x244f84(0x4d8)+_0x477439(0xb7f)]=document[_0x4338f0(0x9f4)+_0x244f84(0xc14)+_0x8a4965(0xa51)](_0x1b3e25[_0x477439(0x2b0)])[_0x8a4965(0x4d8)+_0x8a4965(0x50a)+'ht']:_0x4e9b8c[_0x1bb0c7]++;}catch(_0x1f3254){}_0x1af534='';if(_0x1b3e25[_0x8a4965(0xba0)](_0x89d779[_0x8a4965(0x8a3)+'h'],0x50*0x6a+-0x676+-0x1aa4))_0x1af534=_0x89d779[_0x477439(0x3bc)](-0x2*-0x71c+-0x2ba*-0x9+-0x94*0x43);if(_0x1b3e25[_0x4338f0(0x4bc)](_0x1af534,_0x1b3e25[_0x8a4965(0xb0e)])){if(_0x1b3e25[_0x4338f0(0xd95)](_0x1b3e25[_0x7ffb49(0xc04)],_0x1b3e25[_0x244f84(0x54a)])){const _0x1cf0b7={'dlEsp':function(_0xff1bcb,_0x484ef0){const _0x3c9846=_0x7ffb49;return _0x1b3e25[_0x3c9846(0xba0)](_0xff1bcb,_0x484ef0);},'caCXo':function(_0x2aacd3,_0x52d3a0){const _0x249807=_0x8a4965;return _0x1b3e25[_0x249807(0x499)](_0x2aacd3,_0x52d3a0);},'Bszdd':_0x1b3e25[_0x244f84(0x849)],'CMTjl':function(_0x714da1,_0x1838cd){const _0x2c1353=_0x4338f0;return _0x1b3e25[_0x2c1353(0x211)](_0x714da1,_0x1838cd);},'zScva':function(_0x195efc,_0x3efb7e){const _0xdc4c6d=_0x7ffb49;return _0x1b3e25[_0xdc4c6d(0x211)](_0x195efc,_0x3efb7e);},'YvAwU':_0x1b3e25[_0x244f84(0x334)],'TZZWO':_0x1b3e25[_0x4338f0(0xaa1)]},_0x51dc72={'method':_0x1b3e25[_0x7ffb49(0x49b)],'headers':_0x36069b,'body':_0x1b3e25[_0x8a4965(0xb70)](_0x1d6dd4,_0x32df5a[_0x4338f0(0xb00)+_0x8a4965(0xbb2)]({'messages':[{'role':_0x1b3e25[_0x7ffb49(0x356)],'content':_0x1b3e25[_0x244f84(0x6ee)](_0x1b3e25[_0x7ffb49(0x211)](_0x1b3e25[_0x244f84(0xc38)](_0x1b3e25[_0x7ffb49(0x6ee)](_0x235064[_0x477439(0x9f4)+_0x244f84(0xc14)+_0x244f84(0xa51)](_0x1b3e25[_0x8a4965(0xbea)])[_0x4338f0(0x6e5)+_0x7ffb49(0x3cd)][_0x7ffb49(0x860)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x8a4965(0x860)+'ce'](/<hr.*/gs,'')[_0x8a4965(0x860)+'ce'](/<[^>]+>/g,'')[_0x7ffb49(0x860)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x1b3e25[_0x477439(0xa40)]),_0x4d06bc),_0x1b3e25[_0x7ffb49(0xafb)])},{'role':_0x1b3e25[_0x4338f0(0x356)],'content':_0x1b3e25[_0x8a4965(0x77f)]}][_0x244f84(0xbe4)+'t'](_0x599154),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x1b3e25[_0x4338f0(0x704)](_0x388338[_0x244f84(0x9f4)+_0x244f84(0xc14)+_0x4338f0(0xa51)](_0x1b3e25[_0x244f84(0x849)])[_0x244f84(0x6e5)+_0x244f84(0x3cd)],''))return;_0x1b3e25[_0x4338f0(0x219)](_0x35ce77,_0x1b3e25[_0x244f84(0xc8b)],_0x51dc72)[_0x477439(0x8ea)](_0x30c923=>_0x30c923[_0x244f84(0x8bd)]())[_0x4338f0(0x8ea)](_0x2372c0=>{const _0x340ad6=_0x244f84,_0x1cb53f=_0x244f84,_0x36b469=_0x244f84,_0x300630=_0x8a4965,_0x11e487=_0x4338f0;_0x4bb0ff[_0x340ad6(0xcc6)](_0x2372c0[_0x1cb53f(0xaed)+'es'][0xfbb*-0x1+0x80*0x1c+0x1*0x1bb][_0x36b469(0xd53)+'ge'][_0x1cb53f(0x6d7)+'nt'][_0x11e487(0x860)+_0x36b469(0x7c5)]('\x0a',''))[_0x1cb53f(0x938)+'ch'](_0x1f1cea=>{const _0x1c349f=_0x1cb53f,_0x323292=_0x300630,_0xb6830d=_0x340ad6,_0x19011f=_0x1cb53f,_0x4d30ad=_0x1cb53f;if(_0x1cf0b7[_0x1c349f(0x904)](_0x1cf0b7[_0x1c349f(0x820)](_0xf8a615,_0x1f1cea)[_0xb6830d(0x8a3)+'h'],0xa*-0xda+-0x3*0x345+0x1258))_0x58b747[_0x1c349f(0x9f4)+_0x323292(0xc14)+_0x323292(0xa51)](_0x1cf0b7[_0x19011f(0x286)])[_0x323292(0x6e5)+_0x323292(0x3cd)]+=_0x1cf0b7[_0x323292(0xda7)](_0x1cf0b7[_0x323292(0xd51)](_0x1cf0b7[_0x323292(0xe51)],_0x1cf0b7[_0x323292(0x820)](_0x18f287,_0x1f1cea)),_0x1cf0b7[_0x4d30ad(0x1ca)]);});})[_0x8a4965(0xc90)](_0x498fb3=>_0x5a733f[_0x4338f0(0x292)](_0x498fb3)),_0x24d76e=_0x1b3e25[_0x477439(0x211)](_0x35ed10,'\x0a\x0a'),_0x168c2a=-(-0x1b4e+-0x709*-0x3+0x4*0x18d);}else{const _0x52b372=_0x1b3e25[_0x244f84(0x429)][_0x4338f0(0xa2f)]('|');let _0xb95b56=-0x256+-0x16*0x26+-0x3*-0x1de;while(!![]){switch(_0x52b372[_0xb95b56++]){case'0':return;case'1':const _0x1edbaa={};_0x1edbaa[_0x477439(0x99e)]=_0x1b3e25[_0x4338f0(0x86a)],_0x1edbaa[_0x244f84(0x6d7)+'nt']=chatTemp,word_last[_0x477439(0x1e3)](_0x1edbaa);continue;case'2':lock_chat=-0x202*0x13+0x1a75+-0x1*-0xbb1;continue;case'3':const _0x579501={};_0x579501[_0x4338f0(0x99e)]=_0x1b3e25[_0x8a4965(0x356)],_0x579501[_0x244f84(0x6d7)+'nt']=_0x5a2c25,word_last[_0x244f84(0x1e3)](_0x579501);continue;case'4':document[_0x4338f0(0x9f4)+_0x244f84(0xc14)+_0x477439(0xa51)](_0x1b3e25[_0x8a4965(0x992)])[_0x7ffb49(0xad5)]='';continue;}break;}}}let _0x3913c8;try{if(_0x1b3e25[_0x244f84(0xd3b)](_0x1b3e25[_0x7ffb49(0xd77)],_0x1b3e25[_0x477439(0xd77)])){if(!_0x48f8b2)return;try{var _0x5d8859=new _0xc83759(_0x272c26[_0x7ffb49(0x8a3)+'h']),_0x31ec2b=new _0x34075e(_0x5d8859);for(var _0x27ea09=-0x2*-0x3e1+-0x239+-0x589,_0x44552f=_0x43033d[_0x244f84(0x8a3)+'h'];_0x1b3e25[_0x4338f0(0x2f5)](_0x27ea09,_0x44552f);_0x27ea09++){_0x31ec2b[_0x27ea09]=_0x16eba8[_0x7ffb49(0x46d)+_0x477439(0xe4a)](_0x27ea09);}return _0x5d8859;}catch(_0x3993de){}}else try{_0x1b3e25[_0x8a4965(0xd3b)](_0x1b3e25[_0x4338f0(0x8a4)],_0x1b3e25[_0x244f84(0x8a4)])?(_0x5509a0+=_0x3fb0fa[_0x477439(0x68f)](_0x10df60[_0x5c7885],_0x122370[_0x1480e5]),_0x82876d+=_0x3fb0fa[_0x477439(0x845)](_0xb6b829[_0x51d1d2],0xf25+-0x1afe+0xbdb),_0x166996+=_0x3fb0fa[_0x8a4965(0x7a4)](_0x32610a[_0xdc6083],-0x155e+-0x2556+0x3ab6)):(_0x3913c8=JSON[_0x477439(0xcc6)](_0x1b3e25[_0x7ffb49(0x612)](_0x5cf063,_0x1af534))[_0x1b3e25[_0x7ffb49(0xe1d)]],_0x5cf063='');}catch(_0x1117c1){_0x1b3e25[_0x8a4965(0xd95)](_0x1b3e25[_0x7ffb49(0x812)],_0x1b3e25[_0x7ffb49(0x812)])?(_0x3913c8=JSON[_0x8a4965(0xcc6)](_0x1af534)[_0x1b3e25[_0x244f84(0xe1d)]],_0x5cf063=''):_0x5f49fa=_0x1825ba;}}catch(_0x19cfe0){_0x1b3e25[_0x244f84(0xd95)](_0x1b3e25[_0x8a4965(0x955)],_0x1b3e25[_0x244f84(0xa4c)])?(_0x474976=_0x151a85[_0x4338f0(0xcc6)](_0x1cb38d)[_0x3fb0fa[_0x8a4965(0x3f7)]],_0x44fdf8=''):_0x5cf063+=_0x1af534;}if(_0x3913c8&&_0x1b3e25[_0x8a4965(0xba0)](_0x3913c8[_0x8a4965(0x8a3)+'h'],-0x1*0x1f87+0x5a7+0x19e0)&&_0x3913c8[-0x2f*-0x16+0x23b1+0x1*-0x27bb][_0x4338f0(0x9d8)][_0x4338f0(0x6d7)+'nt']){if(_0x1b3e25[_0x477439(0xd95)](_0x1b3e25[_0x244f84(0x1ec)],_0x1b3e25[_0x244f84(0x1ec)]))chatTemp+=_0x3913c8[-0x13*-0xea+0x2c3+-0x1421*0x1][_0x8a4965(0x9d8)][_0x4338f0(0x6d7)+'nt'];else{if(_0x1b3e25[_0x244f84(0xe6a)](_0x1b3e25[_0x4338f0(0x211)](_0x1b3e25[_0x244f84(0xc38)](_0x4f99ee,_0x25afef[_0x41730f]),'\x0a')[_0x4338f0(0x8a3)+'h'],0x1*0x1dda+0x7*-0x28d+-0x74f*0x1))_0x59ac14=_0x1b3e25[_0x477439(0x1f3)](_0x1b3e25[_0x4338f0(0xd73)](_0x5414a1,_0x3b2ce8[_0x4a5492]),'\x0a');_0x30314b=_0x1b3e25[_0x4338f0(0x612)](_0x435cbb,0x975+0x301*-0xd+0x1d99);}}chatTemp=chatTemp[_0x477439(0x860)+_0x7ffb49(0x7c5)]('\x0a\x0a','\x0a')[_0x477439(0x860)+_0x8a4965(0x7c5)]('\x0a\x0a','\x0a'),document[_0x7ffb49(0x9f4)+_0x244f84(0xc14)+_0x477439(0xa51)](_0x1b3e25[_0x477439(0xa55)])[_0x244f84(0x6e5)+_0x8a4965(0x3cd)]='',_0x1b3e25[_0x477439(0x799)](markdownToHtml,_0x1b3e25[_0x477439(0xa3e)](beautify,chatTemp),document[_0x477439(0x9f4)+_0x8a4965(0xc14)+_0x477439(0xa51)](_0x1b3e25[_0x8a4965(0xa55)])),document[_0x477439(0xae4)+_0x8a4965(0x2b8)+_0x244f84(0x9e0)](_0x1b3e25[_0x4338f0(0xa83)])[_0x244f84(0x6e5)+_0x4338f0(0x3cd)]=_0x1b3e25[_0x4338f0(0x1fa)](_0x1b3e25[_0x8a4965(0xc38)](_0x1b3e25[_0x244f84(0x42d)](prev_chat,_0x1b3e25[_0x244f84(0x896)]),document[_0x8a4965(0x9f4)+_0x244f84(0xc14)+_0x4338f0(0xa51)](_0x1b3e25[_0x4338f0(0xa55)])[_0x7ffb49(0x6e5)+_0x8a4965(0x3cd)]),_0x1b3e25[_0x477439(0xb16)]);}}),_0x354cc3[_0x4cc9ca(0xa47)]()[_0xb9b1e9(0x8ea)](_0x5dc09b);}});}})[_0x4fa7f1(0xc90)](_0x1cfbc6=>{const _0x1e0dfe=_0x3f4ad9,_0xf42aa2=_0x1e0875,_0x17c675=_0x561563,_0x57dd1b=_0x561563,_0x29352b=_0x3f4ad9,_0x8afd08={};_0x8afd08[_0x1e0dfe(0x5dc)]=_0x29a6df[_0xf42aa2(0xd01)];const _0x4ae8a9=_0x8afd08;_0x29a6df[_0x1e0dfe(0x921)](_0x29a6df[_0x17c675(0x446)],_0x29a6df[_0x17c675(0x5de)])?console[_0x17c675(0x292)](_0x29a6df[_0xf42aa2(0xd01)],_0x1cfbc6):_0x3653e9[_0x17c675(0x292)](_0x4ae8a9[_0x57dd1b(0x5dc)],_0x2dae6c);});}function _0x292e(){const _0x14989e=['fHQVG','kDGeK','RuPRC','style','GwVJb','rIpMB','DccRK','count','BRVOl','all','WzHGj','ujGrK','OaNbk','PDLUD','kJriP','能帮忙','ToRZw','rXqXi','41250880Enrmqd','edQba','TuQRJ','KcLWq','DNsuU','\x20>\x20if','BYcqa','mGBSM','FwxXz','GictW','VBToO','VbzFK','parse','dhTkL','join','Dijlp','FGkjH','test','efydi','cOSOF','jnWmR','itFNB','DtMAK','tSYgt','jIakn','getRe','ReYUt','QwuLM','ILhvY','mSMgw','应内容来源','OKsmj','OBktX','有什么','PpowN','uWbmf','KYDTY','cDNGr','llTZX','badzY','yEufq','FxvRE','q2\x22,\x22','mFcpu','nQqvP','nNppb','jieba','=1&ie','XKMwE','ojxuP','VOvlQ','const','tRCNE','click','mKZwc','eNDaN','apply','NiTty','qiYbL','pyZlH','aFXRM','PJPap','NpKCM','XaRnE','YCUPB','uzhNe','Bwpru','yOewg','VKbbd','21|3|','pRRIF','cqSSo','JqOzz','QSfyq','PaWZw','XCrfi','oGNot','nQlsA','seFJJ','M_LEF','AdIPQ','qGJcM','pKeiL','MpIac','mvxNG','auZNn','code','ty-re','YIpoT','TfgWt','ojrJk','识。用简体','BTYjW','CkSGq','nxDKO','rch=0','aJzTF','CQYkK','trans','jLRnl','sGXjz','<butt','CphUL','nhbwF','eMxbZ','FEGKE','wzyPx','OIVTP','excep','TQREm','GLJTV','lHVYD','XRCdM','OeGsg','chain','EgUer','ipjBh','JTjye','Q8AMI','tagNa','XIOkM','WjjCp','zYoiA','ezZuE','mskcE','ANjno','FcEta','wZjQy','xodUb','wyEaL','lyXRQ','PxWcl','UIQAE','npm\x20v','RvNwY','EmXYE','cmzbh','M_MID','wfBUE','utJQK','sZnzw','rZxFj','qONnm','ISiGu','XxoYe','cUgxF','dTfUN','qExxk','zgkiS','写一段','ewpor','zScva','remov','messa','Wdnrd','YWyOz','g0KQO','qvTMu','XgQTV','vkdIL','OGIza','XBRXg','RjugK','”,结合你','VEqWk','lKvpn','YMzYS','#chat','tWidt','LVyWA','tpvPR','OGhIM','fNAKA','LThmY','wFJGx','tzkmE','OFdJW','ghrsI','NDMgQ','iNQLO','updkE','XHzda','#moda','BGWkU','5|16|','euMGn','vUrtk','告诉我','SRFEM','SfJaa','oYAqi','rHcoR','MBtJB','MgcIv','sedaq','zCHUH','bavQz','</div','pLWsV','fdsPv','AesQO','jSSue','EqTjk','QgNpY','vBOSj','rHWLe','lzJOB','nKbJt','appli','jGKhr','ODiSh','ZjkHp','gdLxf','hMoJq','6|20|','sXAbW','CZFmz','hWonJ','q3\x22,\x22','scNvO','tomNJ','UkgbV','DPusZ','json数','GAfKv','wvGmx','CTyWn','numPa','jZRuy','VVSOy','ZBSlP','type','NfBJp','PNpuE','CAQEA','ewerl',',颜色:','CMTjl','kg/ke','何人。如果','b\x20lic','NrExF','20|12','oIbqM','uBGRJ','归纳发表评','eGgUT','AAsUO','JOjfH','<a\x20cl','GpFPa','wNJyR','nxFWL','RWTIg','qLQca','FboIZ','uQvjg','zZrIQ','yGYfZ','site','getCo','XQNgr','|13|1','gorie','Fmywn','WHzyP','rROKI','SHA-2','gegcG','\x5c(\x20*\x5c','NBYYs','为什么','IgCqN','MhkRi','tps:/','rWqaE','Hhnrl','stowN','nWwbg','ebcha','Rtlge','NRjen','earSv','yGTFF','class','VaYEI','onloa','SvSSU','skksl','dChil','”有关的信','5Aqvo','nmrzK','QJCrQ','UBebb','PObmH','TXQJC','lzOVG','ZprDi','SxHKK','oTGyg','APyug','nkocL','bawmy','VQBmj','mHiJI','butto','XTrNv','succe','itTLO','EKQam','KBirH','(网址ur','wiPDb','EFT','KNWLl','filte','zFe7i','githu','getBo','kkInK','oDJFw','khVHO','QTsYc','LZjEh','Bwnwh','hXenr','KIKvG','|7|9|','des','24|4|','E_RIG','RUOHd','引擎机器人','dnEPR','aJyfP','2305672RCRNSz','RgwQL','NQbVT','dUhew','KhdRk','AEP','Ypfmx','OkHtr','RCeLh','iMcfL','wtSAl','PDF','jonzR','singl','TiCej','top','mhfWl','UxfXz','ejBVa','xmJvo','WSWTm','vbPXT','fUGPQ','iyrhQ','znuYY','mzMId','rxZLd','aQyVz','kfJsv','PLCDJ','JpYnT','voXBt','lXYbZ','_inpu','TSfIq','khRkR','GvZbg','LRRwI','sekbt','Nluyt','URL','dFdRM','pAHIW','decry','ccSpW','QZvmQ','JZVbW','提及已有内','oKGcF','MhUQL','sByTa','MFsSK','RjDZD','ansla','UslbF','HmxXj','FSfdj','ersio','IGUol','jjtPi','pHlpv','seWMF','\x0a以上是任','zfuXN','odeAt','GZwBt','wBBDr','BqXqj','wlYqI','LiMzs','BaSmT','YvAwU','oIEmb','dProm','|3|0','FsSpK','KkRcn','IWYju','LnfTm','MVySr','zSOuz','AqXyn','fNyUG','VmavR','pivnu','NctCc','jbplg','xnpmm','tflEC','NNYuD','TBzKF','zVSRF','TThyt','mvGuX','NMemA','vCfpQ','baMqB','kwdXT','zixoR','WdnBq','opIWK','请推荐','azfGV','DQzLc','ZJrYu','PqWRz','PcoON','cKqqG','HFMeA','thnWE','NcUDN','XWEGq','gZOxc','aJoJx','jstFT','5226ApuBwd','kImOV','auto&','arch.','上一个会话','byzmV','vmAha','hpvBd','TZZWO','gName','网页布局:','kzOcn','BcXRs','bgIsC','Dggxc','tccgy','qJshg','ULbwp','找一个','LzpwM','state','eQjhj','AcDoR','cEnyI','FNuet','iSGTZ','tpekn','(来源:u','zgcvC','JUwSN','ntpDQ','yRSuC','LWGLw','push','GoDtr','htcSy','LbGFc','rhAva','eboMA','(来源ht','eZfKL','HrgXk','tAHcq','qzwOg','kMUTS','oiMym','GVuEQ','EmoUf','from','EJosp','kqaMV','RcbeS','pxuDP','gmlha','TPbJL','YTcma','raNvS','NjNgB','THATg','zCuvQ','qnuge','block','Bsihx','pdf\x20l','LvbyY','0-9a-','AVToy','PgPZE','yfYsR','floor','qpovY','接不要放在','YtblX','Xxsxv','HwXLU','rYOVl','识,删除无','Xfrxj','TnHvR','NSLXl','IrrLC','zVUih','AxPip','(来源:h','lXqUJ','nPkQs','网络知识:','VusGD','(来源','Xaold','DGPlp','thCab','RIVAT','JtYGD','FjNxi','iSyYb','wCdMj','iAkEj','VHTby','EiBGh','ZwERf','intro','kKKfU','XQbOj','IvGsR','/inde','ppDVV','CYhmG','WnoxI','YNvVo','emoji','ievEh','xEXIG','xPZXA','oCCXs','FIahI','Bulpi','heigh','vgjhc','aria-','WSqEE','(链接','omXHn','ZECox','438936JvzALc','pqzqP','GvIiA','BAkts','ges','_page','NtPff','JBLgL','coGsL','TDtVa','sDROR','yHuoO','yIWei','ydeYC','FVPuN','哪一些','|24|1','qzfag','href','不带序号的','NRgzZ','eFiOc','Gughx','exec','MorDD','aZHed','2|14|','gKNIf','JHIar','debu','wvsnS','kfXms','ODoAC','pDuWG','IkTte','SoCHS','sPgvM','COjZo','Xjrhy','TIMsz','ilptk','ueBIj','pakBg','eAHga','ZeYaR','nces','trim','ocSFA','GzDjG','HUVxM','RIUEX','BDwWd','GsbCD','ZOtKz','BGkfm','hnUEa','cAJkA','QNFNz','&q=','什么是','ogtyT','tGKSp','yFnrp','docum','vHhVb','AlTXP','hlxyw','HPTzK','ZzssP','LaOet','QLagh','SHASw','Bszdd','cbyLB','tKcFh','yFuWa','JjLaO','gpagb','YQzBs','tBtgW','HvIap','view','nce_p','TqaWE','error','XAyem','SGAfz',',不得重复','oBZvW','cvNiA','GYsef','bAACZ','is\x22)(','tZwnn','njqaZ','ZeoPu','OyvfZ','ZtjPL','tvNnC','vQHCT','nDkVr','uhsUb','aeaZf','pZvaP','entlo','slvwv','bRSTI','mnUli','yBJuP','PlgIy','smuKn','RlpQp','iJdQC','pSifY','WcSkf','QgtoG','5eepH','VppwK','laRqL','x.htm','fKfVc','\x20PRIV','ement','FloxT','KOlJW','uPGEd','ZRYPl','sbOPE','mGFgO','DueLb','TfHPm','#ffff','号Char','CmuQo','务,如果使','tKey','UhbXQ','#fnre','tIizR','QGeUQ','EiMti','torAl','toLow','UADXF','FrHeF','aXXEB','xcclE','warn','CTCSR','PDF内容','pxHjq','(网址:h','&time','GCVCb','RflPY','UxFKG','Pmsjg','相关的,需','ck=\x22s','SaMQE','ssYrM','bZrBa','NJbwo','E\x20KEY','MRYrw','容:\x0a','hhFCq','TUFEC','zjeDO','Omgrm','yicsD','LIzaA','3|1|2','enalt','VeDOM','fpayR','PEylM','VXUTP','ykaun','QQlBJ','\x0a以上是关','yjFaL','zWqcU','dxilo','hUzUP','ACNCy','2|22','定搜索结果','KlJFP','afEyS','nGkLW','UAHLp','18eLN','|3|6|','DWljT','BOenh','mNeJQ','bdqjd','QROfk','cZhpB','f\x5c:','maOyo','MiBTp','LpZRi','magi/','kDpmn','tRgjr','OCQnh','YUWPs','attac','ZDRCb','CZjve','CJJiQ','BkhbU','ABIOr','RsXen','hQszH','UKVOv','bDsVl','6326604IUbMcR','HKVYs','rtkrn','dFkDN','M_RIG','代码块','dKZWa','WIkfg','3|19','LTvpF','NtIKd','Gahix','GMHlI','VvvmJ','event','</a>','QzVGN','\x20的网络知','jwSTH','XVchy','aaDGx','xEbIV','mQXlR','kg/co','xdHpG','MXfbU','”的搜索结','UpXNK','GnzGy','getAt','ZfHtE','VKImn','NtWhu','cgRFi','://se','dogbO','fghDv','jgNLJ','t_que','jkyWk','LSPsY','onten','RClQb','dFuyC','hAVNT','EGHle','cySgP','dBuWc','CnSdo','CRiqt','OLAGP','sCYSh','HjTei','5U9h1','ZTRQR','cSMTq','QGshH','kg/tr','PoNQb','SuecW','NhhlH','Hopdk','encry','pSCWo','eTtVr','RCLQZ','DJuGC','iBpDt','ZajMO','Ayyky','7531047diTcbl','iwRps','uage=','XSknk','VgwZA','HPCBi','stene','KyQyb','CgtlI','slygO','FSoVJ','blmNO','WEDCc','vaSVr','iGUbm','bDuWd','awldN','aKscY','JmPKz','FmiWT','KoPrW','kErsO','JbZQx','tMIjF','CavbK','BfsRD','nnnbQ','wHcpO','\x5c+\x5c+\x20','IVIgl','AiAWc','LIC\x20K','cxfjX','://ur','JwSYN','SBeGK','qQQBX','2RHU6','kEjOl','YtZDY','ructo','sBBtu','lzAJE','YjcpO','WrPOw','tWZdx','fgCOF','LBpmU','ense','GdqMZ','XsZGA','ocLbb','MRvbs','vJvjs','hbLBk','ZUVEw','WbIKn','iaJip','lEkzt','hgKAv','uvnHG','IAjZr','mQlWm','QAHWi','fuzHk','DFpkV','FwwhQ','XYiwF','nYxwS','backg','hEnuE','while','LfjgP','nXmsE','VocIO','bxWAr','GnDeE','ghamR','GvIkY','POWVU','-MIIB','yauPp','ZXmkO','lfMlE','FtvSd','vdXcV','hgTih','hWUzP','ESmLj','mbeTf','gkwks','。用户搜索','trace','slice','MtUdD','HdVzp','ljbBj','Ngfnt','HZjUk','工智能。以','dRsfy','CHhQt','akwey','SnJSf','PYGwp','ublJa','OCeCX','tASHr','pyApW','WSHpS','HTML','bBROg','RE0jW','wqrwa','tzGxx','keys','zfYPY','pHvUL','JOADK','LMjxZ','searc','XmPXc','UgNoz','iG9w0','ykcDL','odMXG','ntDoc','JAbxx','user','uqhqZ','GjSjI','left','FOeIe','IyeCb','IC\x20KE','iOmqG','mKUXq','rxyWZ','vMhqQ','gXQmx','qOonD','BlHMo','ument','hJQxg','jxMhs','NWgVX','wBYzO','NKRYP','egvIR','XQmQi','wmaZI','LgRKo','GwthR','jFTgI','OMjDp','wWTEz','lJAKy','BLPFG','ZfvZp','AKFwJ','90ceN','IMrju','sApYd','wNFze','/stat','tiyNN','yabfb','GzmuM','yiBwA','用了网络知','oshRk','DwqCu','roxy','SdFLf','SyJur','TzpjG','=t&dj','你是一个叫','curpa','//url','dow','uGSkd','fromC','jOdUu','cWZKw','wjfBZ','NaRAw','jEIvh','$]*)','EDxlc','wKgqh','wmTbq','DnkSM','rdnYy','WQDcT','chat','EiBTK','HENao','QBAFA','XMnVH','mamFl','10ypMzto','tDkhx','IiYaN','kn688','ut-co','SCciU','TKOQj','GgSit','exCpG','ntent','McCdv','75uOe','q4\x22]','fYtwQ','KIRai','RxvNB','bAGwf','cesOS','heHsn','hvcFs','DF文档','Ifaxz','EENjD','ctor(','fxzqS','qHhBx','EAEbp','eVCID','getPa','bDPRP','FzbKA','ejtMd','goBse','rQuYz','IaZGs','ldfDu','AovLq','GCYtz','ejIWx','PBYLE','uQBeJ','qXSzz','TDkpV','myIil','me-wr','知识,删除','keGxm','|10|5','vyFwa','关内容,在','lADwu','JwlJv','OCODo','ion\x20*','RgFcY','sQSYE','YRbLY','mpute','FKjnb','emes/','sxgFe','iGZvK','wXYtH','cHqog','PEIRR','hKhJT','oAcLa','EmYhT','tqyMn','charC','kCvLc','chat_','rAVXj','ttps:','BpBBp','BIJlr','ZxMnt','imcSM','te_a/','fJAGs','ibute','VLApx','label','sNWhV','|10|1','VeCNh','cwoHw','ouLmL','ZAjit','OMZec','rtDAJ','bmmkD','gpRqN','tWPbP','round','MkBmN','ctsBk','ZMovf','aded','PnOSO','t_ans','PXZby','BuMlQ','IsdDB','LLVeO','VmBZb','s)\x22>','uLUNR','qLylI','stvYv','AVINg','iUvUJ','PLGaL','ivuNF','zVBYm','tmHQZ','TdZOF','preve','tzFaX','pjJmN','WmNKo','ZRokf','ieVoT','jwEIX','WOeXB','ions','OAWHQ','1|12|','eGNOK','OaNZK','LCmaq','后,不得重','zYZzy','GuxvE','iNair','wOrlE','ESXWV','|21|1','UaZho','wHRFZ','avHgq','bnhcb','ASTMt','uDHfS','pYbVE','xvcnW','textC','zmAUW','pFTFM','vkUay','Kyusn','3|2|0','FvguN','YqGoR','AEHVH','DxCKB','PDF标题','最后,不得','vZcqZ','PBFYg','i的引入语','OVvUx','CIray','XzyVz','HlqPd','zUhfp',':http','decod','caEBS','call','wErUt','SPcrs','MAokN','YYTSP','uaAmO','NwaEX','scrol','|4|1|','DoqXX','LrWGB','bTPVF','phoTY','HKRws','rswYk','jHygU','UtZdc','XBojL','Hoxlb','offse','SlmBk','zkrjp','Z_$][','SOyoL','VRYrx','tZBBx','mHzUT','GyWxf','rBtes','BciMN','FcvGq','GuXXM','7|23|','vLkHu','NUJvr','qMHsW','info','wUobC','打开链接','deHKc','vXhom','UJKvP','BsEJt','Amxyr','DYODh','SKZGh','zHZss','KFoUd','RJriA','aGgKK','kadaK','oyzYL','qombA','UAgVR','”的网络知','GZKkE','GZkPl','lHeig','Ndyoe','BOTTO','RdouH','fgaMx','qeAoa','YXFIl','(网址ht','ajNIu','MvfqU','wKCPm','aDRAf','qeUfo','FasLQ','vrMqX','table','nnpxi','pqahg','NwrnG','Zgxg4','nQJgr','QAB--','asZat','OnJmc','LGixh','TnGEi','asqbu','dTWVr','0|1|3','GPFCP','FFlkU','uRnza','oncli','selec',']:\x20','tuKEn','uOgLW','JVFuj','KHFgR','godog','wKART','hbkbs','Ga7JP','xJizp','tempe','bsXho','TYiKO','LwRRr','lssVe','FHfBA','GQKyA','PvVwR','sJtkM','WYzRE','ldCJp','VCYaT','UGPzV','orxdB','DCYth','在文中用(','QxjOX','appen','8ARexKT','pwLOM','QGKYJ','bszXL','ESazm','items','JrXIj','fPgFk','eral&','end_w','cEBLt','nUZKW','ppjup','键词“','funct','RZpIC','jPFVf','fWntf','UvgnD','OWExD','lSmjJ','KxfNa','xNagY','ceADs','bgqzO','ETWly','你是内部代','URhnw','OBhRz','DmiTA','qCRpg','ftFWp','uyiaV','md+az','ZdgES','aJCPA','vAjJx','GRnCv','JqDOb','AuvfW','VVaQG','iFagz','XmWOd','QNazZ','CeATs','n()\x20','inyBh','GuAtF','glWfb','teoAd','ybrkO','RPOQN','vxoDi','kOXOd','VjPFg','tTaSJ','\x0a以上是“','JrKUg','wFeyw','Width',',不告诉任','thuIC','shift','NHRUA','KYdUO','qiSYn','2A/dY','oYSHM','avNcf','MfkTn','PEzyc','LOQJx','lyxpk','AemqE','RACPD','VpEMb','PgHac','_talk','WtWOC','IGvDs','uVNAs','aJtHP','BxCPX','nehjp','fsZfL','upWjB','IhUxy','IWtuH','ATuXH','ZYuIm','Murgw','fldro','nRrCH','zaUeo','assis','uljif','eJmZm','ing','zlVjs','udTEG','YRCkY','BTzha','ZoyOO','WjSLP','oUEPl','tAELh','xpxPh','PjGQR','ation','MKmhL','dTYOQ','pgLfU','MkZLK','sKvRv','QdHvK','hEHDR','KcjHN','circl','对应内容来','ise','znGar','ygYLb','LxfiN','SDUde','vFALW','hraKH','cGkLK','sHmmT','dfEcS','MzMLX','yBjaP','qTCxc','utf-8','PNcFt','RuBaM','sFrSG','ATE\x20K','YGDuL','nbJAp','总结网页内','VxKBs','TXxKp','Index','XltgD','ysPng','FGErp','euWQc','WQvJi','FZwDY','rLYOk','CwJEC','jlEjd','TYFoL','WMgkW','DDryl','NgpHV','SxOpJ','TfjhT','wlsmB','Ivgvc','gpJmc','mljry','_cont','xtCon','qhsJw','wnfbJ','GWjNe','LExRv','SOzFH','rWEXu','n/jso','RSA-O','pxNmv','TOP_L','kXWeU','GrIpe','xShFe','liEYZ','CcMPI','lxAPB','wqpky','pTKCY','TJjvV','prese','HpaDL','faXhb','GkslE','edstV','ubENR','WEgKq','zeHgu','MYzrc','vccLv','SWyFn','gkqhk','sqrt','htraI','TbaeH','EhEMq','THDFK','jwdTx','clone','OCXZA','TNqmc','llLjj','PEFNY','WXSgT','cPgJP','nngwj','TizsO','wdkqj','|1|4','eUDiE','组格式[\x22','[DONE','Livmv','hZthr','IngpY','sDyOW','TdhCp','a-zA-','apper','#ff00','gRKNJ','MLPEI','TCEGi','zqVVQ','url','hjVov','EVhGJ','fssvZ','nozWv','wNxtM','mesVd','leUHX','bKoXH','rqnlU','PXQlK','uBYIA','|5|15','XwqHn','(链接ur','BIinK','KoHvJ','VWueA','MIDDL','END\x20P','XCwoU','AspZq','vbHhT','PGSvK','gFYuc','XHz/b','idPay','输入框','ZqvCU','zVFpI','(网址:u','DmVfr','dcSBI','z8ufS','_more','RYEpD','seIWC','TrJEM','q1\x22,\x22','JUbal','iUBPn','JNUwm','catio','lrekM','stion','jBPPd','ysDVZ','air','JEJWy','whGZV','UUYka','|16|2','TlbIN','GwHRZ','fesea','qiuLP','vwyUP','22|8|','查一下','IfVAM','more','EvyiJ','e=&sa','l-inp','KkYhJ','jitrT','ZqOil','kRAHq','TqIts','SAzYf','XAzfF','ESzmI','CymwM','ermsJ','7|15|','wAHMm','alize','ymzrP','DfkDk','FLBkI','BFvOg','CENTE','u9MCf','les的人','vote','bYbKs','GSfcz','wyZRB','PUnGl','KFudg','jMFoe','wcfRv','btn_m','wRNeM','DvTfy','XMUDx','OjDPF','网址)标注','请耐心等待','pdf','hWBns','uPzXs','EHdoD','ExAMv','XhEhK','KyPQM','EyUOW','ENXoO','Syvgv','qHNzj','getVi','VWuBy','yqfDX','aZTTZ','|0|4|','cPQbE','DwJWx','gohQB','nPEih','lvIsB','qGUvt','yATUn','rjNKz','cFXYm','TaoHr','nqyoC','miIpt','ucqQt','iIQek','TOP_R','CfQxk','fmSwl','(http','_rs_w','qzxVf','gekTa','----','tlFNz','oEXxm','vjXjn','ZYjXh','TDyLs','SXmfo','log','syste','JtzRx','XaswP','fSeUP','KVimn','RaJqB','NFHgK','msCOq','JGRaT','vmbGi','eyFZO','nASyU','ZOlns','iDeUW','bldLp',')+)+)','MTtuq','*(?:[','KKqJh','kDXKa','DypFe','IQEOe','JrfZL','TRyCp','UAoMy','hepyu','jcmHq','rfWcv','conte','Gphgl','RCpoV','gvuaG','hBfBy','_titl','vlGyD','body','mFFqJ','jkdtr','dismi','loade','vCwsf','qmifr','inner','UbrpR','复上文。结','uPSUg','lnxVy','bLfBA','TweGF','lxtHt','IaPMB','sdnoo','aEFdk','PGbhb','3DGOX','WGaRW','kBFJA','给出和上文','sJvPZ','jhOjP','GqauR','BrBvA','vlLIi','PWLPX','KnnCd','CIAjJ','lock_','cNTSH','GYElL','的,不含代','TTDDL','zQdUn','YYojk','nMUnV','STXns','oCbfw','wGkWi','KboSE','aIBiN','ERpaZ','IiIdv','AIXgM','UFbvP','JgsoM','ote\x22>','kZewO','sbpnD','EoLTb','OpzGR','dpxft','zxDoG','lCIGG','PYiQB','\x0a给出带有','iAAzO','Mixtk','TCcux','jpeuf','TkbqO','g9vMj','tbLcs','yFANq','LWIaR','IHuCJ','mEKqf','QIPdr','actio','arch?','gHzYm','lqeLT','\x20(tru','DAaYz','DSWCR','nhuTn','IaCfP','NjrIP','CrytA','aBenK','inclu','PScwu','StZBZ','__pro','GXwUB','LcPpa','int','不要放在最','yKCAB','IbTmW','fXumI','KoDWo','oOLKc','itiwY','JkXko','fjbfb','YCpaD','czEMl','ItOoQ','aWYXD','rBUTs','IppAd','LxVZF','jAROp','Orq2W','map','pDjrd','dszip','ONgqh','init','YGmcN','index','pLVlL','12|20','RqXYt','EWMzY','AbNtO','QsndT','VeAnl','eWTiJ','nwdUk','GNPCz','UdhpJ','VeZRq','重复上文','2|1|0','pcCEq','ATSLj','{}.co','lTBeR','wqRbE','yMgOv','src','CMAzn','hQZpf','VeZAY','UJXqB','gOlKe','qHKBD','pubKP','cwXFG','nbrNV','Dgjvi','DKpUu','ocUmh','othah','ontJm','tXzuW','CnKHQ','fSosS','tQxdI','qBzVY','RLzJG','OdEbv','ZnJJG','MsWaP','MTVEs','jobBK','EtKMg','CtdtY','fy7vC','YIxgi','FgCuK','mFtlR','3|19|','gHdUp','NXlNY','SwjwZ','qxpLm','YeNsk','vohXW','eGybA','mISzd','kJurD','qLoiF','raws','WqIdY','impor','msPyR','cRkFU','nWyzU','PgHih','JDIIP','UmFdn','YOtcw','gDLJt','jpPmP','erCas','QmApn','qiyCd','lntxd','es的搜索','DmLqx','接)标注对','KPHbq','hjhSI','YwjML','IBGwG','dxpZf','wkMnl','ZXzOH','---EN','t(thi','znRul','mbTCD','ZXVGb','down\x20','OKxIK','Og4N1','noEcG','DWSkZ','的知识总结','VSrWv','PIrCD','ZgrEF','yLqYb','YJoaD','IDkBD','AwvuZ','TPcfn','spPCm','Tejiv','IBCgK','SqAwK','rKqYD','naqOn','dCDna','EMIZS','ceAll','JSoYY','VkUox','立问题,以','KJvpk','22|24','NhJaX','完成任务“','以上是“','yRjdr','mcmoB','XwfHT','tBuPg','wBouQ','YKCjX','ivuyX','jeYMk','xJWmZ','phrhh','DLdRD','yhtwl','jykdk','ratur','ejUph','bind','twoNc','b8kQG','aFOQi','EVAQB','XCyGJ','RdqBv','ePaZu','MWoZj','D33//','ibVVV','CqZtz','JUAff','1|2|0','TfHZT','dQbXw','oHZuL','jmaob','fBveO','RWSnm','thHmo','FbcWR','gqxjw','&lang','Bxvky','QHvsU','AKFTH','BPVYH','uKTlV','cptlM','fVBwP','dswmS','FdFSQ','sOLpZ','Hlwbu','eQiGv','oHUpn','nKcdw','dTTOq','dTYpH','这是一个P','sSTND','用简体中文','Kjm9F','XSCYt','DayoO','MIurm','o9qQ4','byteL','gpWSm','7ERH2','qaeLD','uTiLS','Egdfi','oIfAU','JtbVu','Evdbm','TKkkr','ZAZvr','MZZZm','on\x20cl','oEBZS','sWKcP','ore\x22\x20','WNFYp','bDZtV','initi','caCXo','#0000','lCvBJ','VDsgK','sBoAi','qzogy','NigrL','pNATR','iNRiM','BQbLu','hbgal','Hleuw','vYCUS','UXiBz','MNvOA','</but','ISvmN','x+el7','kzskx','RBAqJ','ePllI','|16|9','VDeqG','ytext','unshi','tuUpQ','iCFmN','bCgdf','wPHEe','EY---','wcqyV','zckOA','KFssz','wer\x22>','SrtlM','FjJGT','qeQLg','yLESa','PrFyF','kRbDC','kSlCC','DjYbQ','DTvXd','LUEjK','255','CXmIi','vcKig','gxAWb','xHXpD','rsErm','glMme','XUqFa','NrOPR','uVTFJ','tTNqk','ylWoa','bjhrb','(来源链接','WJxuj','EqOTU','ri5nt','hemVD','ass=\x22','ntDef','repla','iJunz','to__','snPuF','RIVjn','使用了网络','YmUfz','qlhVp','zAeQe','klzJE','rCJQJ','SzEEs','FIXpC','Hpfdr','pdfjs','BcOQD','TPTxz','sYWvl','qXWIA','LCheX','什么样','ffsWq','RxWwW','9|13|','zHzAd','kg/se','SAqbR','GGFlR','ptrTP','nfdeO','bUqsw','Kxhji','围绕关键词','yHvLu','dCjAi','NsVNS','nt-Ty','n\x20(fu','VHRGk','INfsT','cNcVt','xjeGa','name','yzDvV','WBxSQ','rDUiN','lsRIa','iKNZS','fVuVG','nTiyL','HVjih','vqrFb','KTwdL','vyHcj','lwoqW','sQTnQ','inue','DOpSJ','UEhfb','MMBXo','PlIYi','网页标题:','GBWdY','fWQPb','cUpOk','subtl','qaiHz','lengt','NHHbS','RdeLz','jojuV','width','FphFc','\x20KEY-','gccKo','RZdrP','Color','size','idShl','|2|1','QEmlA','iECgq','ghvBZ','lMVQm','TBRQg','whYvm','uwaGr','talk','ebtgB','JucCy','MVFvU','VyTfA','FmZAP','json','mMbTD','hf6oa','TYtYP','jlzlP','sort','iFwkb','|3|4','htFda','VYidG','D\x20PUB','FKrAc','twlyf','zeNBZ','webvi','ZPsik','JNlcZ','FToQB','ZBwCO','VKwyV','pZIAp','BlMZy','XcpxW','wqbjh','aakLX','vJdGn','EHEWg','sXdVJ','UIIYX','gjwKv','aXQgO','l?fil','EkwjL','wkVke','VZEyC','rTGKg','rqIKQ','SqzAP','OJlMw','BXGNl','Okoqw','息。不要假','RLThb','QEQDW','jYHUJ','then','OxWeb','nzreK','IJfpU','DeWAR','bFHkG','Ciikb','sOWhr','中文完成任','gWflq','NiTuY','uYnty','NRGMg','HlfNJ','8|1|7','ujKFz','s://u','yIIVf','OgPqT','VihEM','jNAYG','RrnUa','GjhWa','NKgaz','ShNlZ','PfAWY','dlEsp','HkrOk','文中用(链','twTHP','链接,链接','LwfIz','oIiun','RVsbO','写一句语言','IGHT','fbHqP','UEbEy','mAmqv','DsBPL','zTpmj','ZeSRn','addEv','aVtUr','eci','OktwT','undin','tHvUJ','jYizQ','SvWQL','18|14','abili','KLMhT','xhNdu','vQELQ','jrpuN','infob','ehXvF','qcVKc','的回答','CtmqQ','oQMYJ','yMdpR','|3|2','e?cli','wKWkU','cCVFL','mPZtB','tent','QnZiU','OSPWd','proto','xejRR','ZjfFx','MYtZM','rRhIS','ULeHK','|4|0','forEa','NaGjv','jYSLg','EveYc','esnYT','kJBkj','eAgbi','uPSxE','Bmblu','18|9|','nvZZV','ygdzo','CScib','uOzGV','#ifra','QLHWV','tSzWo','ent','fwIDA','nyUUi','PNrqK','QBCvU','QhEOn','PGoZB','vMhzt','iKjfS','prmtw','JhnUV','RKsVt','AADKX','sNKgD','DmVVo','pTPII','https','qfRuy','wzYGW','yMHfK','XBnem','KRgiH','urUVO','buUHM','ZjaTr','dhkRv','网页内容:','gjmoA','brioo','Ngfqu','zWYux','MtILZ','DgMzr','YnWNo','YSKmQ','wgOSu','xRsZN','幽默的、含','dlqmT','t=jso','umKma','oSKCS','GVeTr','lwaCz','UWqPg','RTngc','9VXPa','RROuW','PDFVi','Rvlkt','WAOIt','entLi','SeTTx','tx&dt','MxoFr','Bus','IKHcP','tHqTy','ZFqqw','zA-Z_','qgUFT','WCHal','PdCJS','AAOCA','hsxgF','FXYCd','iRbIS','jybGC','DRZBW','ZOFSf','MGeda','(链接ht','lBTqy','qCBZo','UlHfL','mHmCR','nvHTB','FxGJp','hAxwF','ZTeCw','dJEwd','mefWT','vVwsx','Vfgjn','ydjII','role','uxcJv','CCXUH','-----','TKuCk','dStyl','POST','cefHl','gzSVt','WFkvP','DTBHV','Jagow','sOdlh','6|0|1','eRlhf','AJbyn','tbFmI','IUPcb','AHiIc','LnKBz','vKMsV','aTqOs','ader','WWsHK','bjdmF','xnUGg','CbgAm','sIeng','vxaCp','fLDFV','jypYU','lgDOV','bnvMu','oXGjO','ntWin','rsyIS','Repje','ERxdh','dOONr','lmOQm','nFCbk','juaMg','iVUaj','BHQnu','RlQtA','zBNWD','BNXvF','fMcCZ','hmPxX','oWFKB','qxVXV','pguUG','uwnVh','eUeVc','JItns','hyTTe','OzHSs','TrqOk','delta','Cgsvi','asm.j','apayy','oxBWG','Qhtuy','GHyPl','qnJld','ById','DxCzB','pnPnW','page\x20','mJMzG','dhAjZ','zmLYo','rSqeD','GXqDr','gpEvO','qKDku','fMJgd','IxxAr','XLkZz','GrPlm','CDijc','tHeig','59tVf','lWDae','XsVVk','query','搜索框','TUTNm','YBOji','XIpFE','bBcQJ','pvlFd','TnCYx','VLsNM','FYvPB','ifzCo','PxHmX','VtRBM','gsrEi','nLvMW','BMRTc','BJBfu','nZZvW','bMbbG','KnIYb','jphKY','rLwUm','gger','sXfoR','scpBM','OQIvl','whMLL','ljeCu','QMVnA','eLYqg','gcCbh','ORTqh','tNaSY','GqvZu','nctio','pYGse','pQeDG','mtuNz','e)\x20{}','LkizP','PqdBk','vkrao','Heigh','ViwLz','JemcZ','olCjQ','fJknS','VGBaE','nhnYA','cgWmC','(网址','jPHKq','djcqI','ZLJsk','qLlEA','BEGIN','PAauX','duPgx','0,\x200,','split','QzCWX','RYQla','yppTw','rHSvV','11|8|','hZhgk','ewerA','HdbEG','input','2392607TjpQXs','LOQJZ','conti','GlcLP','写一个','sHtdE','255,\x20','rntzy','lQTwE','\x22retu','bGJUs','eeVcA','fYiQH',',位于','read','wKLYn','MzCHn','上设定保密','geQyu','NCHZl','4|17','yobSM','up\x20vo','qZbum','tor','tLNXd','1|15|','aoRnS','NnXcm','bQhBz','ueFJo','容,发表带','ring','fEVZw','(来源ur','QcKnv','NEzUp','jLPlY','9kXxJ','fdWOA','tYequ','Medzz','OoZNM','JHKWK','SSswV','ength','324AflgrW','sHyQX','Charl','XDQLy','gYwBk','MQpHj','NUZAe','GUFXv','orkGl','=\x22cha','|2|4','IJsWH','aOFmC','JdudM','bRXCc','conso','M0iHK','sente','has','niCil','qDGdf','padwD','kpMdn','iyKmO','sPron','EExVO','CMqTd','FROGf','XqehU','footn','DxQBu','UQBqE','JgtAS','WKpJY','NIavf','ZRPxQ','color','ZeGCS','next','fQhtH','IjANB','setIn','CTOfa','fiGMy','WusAU','zovAS','Zgiik','UtJrv','GKEhs','tion','XwIwT','IInbB','rqCsO','ueFYS','JlchC','EElfX','MfeOu','chjQN','ZOoVl','QjxAb','bLLcI','JBchF','mcFPl','OhgHI','PJpZF','amSSg','vWULk','ncKMi','MjNsT','qXQlk','TMTuo','rBCas','NbhPK','gzXrG','vqFFw','AHiXq','0|1|4','oHpZo','WjkPT','vvuHP','KvmUu','iAKmu','DKqSH','CggFo','VOMQC','xtcAl','BcHgi','<div\x20','的评论','xHxrr','dzyTn','QDotB','IvLeL','有emoj','WKbhp','yPHTA','IDDLE','CUBjx','tl=en','uvHro','HzDxa','ayRyI','UTfWH','texta','uTGVD','CzOQu','PfxAi','saFWu','提问:','TLsLe','value','OrFlU','CFuto','wJ8BS','oxes','FQbRw','VgmSr','lMWUL','iWYdo','Sdszv','retur','JpIuV','odePo','NZyyL','TQJBS','getEl','17|21','gkHux','无关内容,','feWVw','EEqVy','terva','8&sl=','eAVef','choic','jcQTm','sRBgc','OdRpD','kliMO','oaded','AfzPy','min','=UTF-','QhVKO','UMmEj','vqdqU','GiJcj','UKcma','kofIn','2|1|4','Sywir','ZxsgN','BUncV','strin','CjVuj','rRDYW','Znjix','QnLVd','jgyhi','QoNGN','delet','qMJDQ','YCrBL','&cate','jemcI','要上网搜索','zANYX','Vhvwb','alt','QcdFe','EkDHw','oQkAV','xDYBh','EFKkD','yrXme','ndMaR','aKuyc','uxcKv','hARNO','QsmGw','TPCNy','TzZkG','10|18','vRKvR','Y----','qlkqW','cFMcx','WxpDh','JwNMC','UwBGR','SQkrY','GNBTT','CyZQN','ault','PrLoC','AeGzB','PCfDp','QDKtU','dmxQm','QQtgb','oBNgG','RpEJO','qbLzN','uVwjw','Pspca','Sqwwf','match','Xhyji','ezlyA',':url','KjFKA','rQaQH','YfbvD','rn\x20th','Node','57ZXD','gMUib','NDjAq','LaIQp','\x20PUBL','zHDnD','zlqnR','llApu','pqxQv','BtVMe','IUdRp','XSUvL','BVMIA','url_p','MNKmP','xMsEr','POdIL','MTdmI','VMEWC','wYdhn','subst','vsgnD','TOP_M','gKMjc','jkAXW','的是“','yfpVe','源链接,链','jOmbe','iiBYY','BJRoo','sOyeZ','PnBWO','tEZqB','QJqaU','哪一个','ywgQJ','Eyevd','SCArI','YkEFM','RkinC','zEwtJ','cWXEB','PaMXV','maflf','rTEes','olTcM','gClie','cHqbV','kYupm','itluL','LWcgd','mplet','roQSu','ZmRkl','cGolT','dSqAH','zPPwq','jLszI','BYSIj','/url','AMRYs','vepDz','OPtlg','LkDAH','lTop','论,可以用','YgSF4','vMrDT','wIAjw','IYkJd','IvysQ','词的完整独','yMPOU','nCyiE','iUuAB','uGuxo','mDHfZ','6f2AV','WkhQH','vSSkE','nwygb','oLeEF','Lpmll','Veiuf','egUsD','ZYPmx','hEven','OVEjm','mwxRM','CREcd','rbMIR','txrMi','RcTYS','WMtFK','ZinoW','DLE','PloUL','efJPU','UBLIC','nstru','MUZWC','BQGJC','Vqwmk','xpgUn','KPwUy','jTucB','IkHeD','rame','rgeuW','fXCFu','title','SxuQC','gzzpW','ONTaS','lHBfH','gify','cut','cLhIY','(((.+','RHWDG','WSaxB','avata','Ilrqf','RPGYM','tFnlR','mraVc','cumen','(链接:h','QageZ','UGUZh','ChZBG','fzxHI','JQbeE','eAttr','zh-CN','11|23','OBjLl','pkcs8','oikhw','HVFVA','#read','TmMwO','hQPdy','nue','HZrdZ','JQjmC','omAcH','ALPwQ','CYRsu','AsuOi','AfsaP','tddUu','VQlmU','qZYvz','gyeEQ','beyRL','RAvQq','ZvrnN','yNEJN','介绍一下','MYDAy','vLUXo','BnsHt','(url','DqiBU','conca','xgDKt','YkCze','tahAE','zjAXY','VPXjW','EphBE','DFprX','ZOVXV','zfJDD','yPiHq','zaQXU','AInZo','34Odt','oToir','ASFtc','JvIbD','ton>','lXJpq','kcKCw','llfVF','suqIX','ent=g','jUVkE','USZyX','IafZN','UAQmB','nTgjl','gspws','aNqDf','TFFdC','(链接:u','tBCvc','hxdvF','OSEeo','ylnXH','form','XxtzK','add','fbNpS','RmCre','FMsJI','jWyYA','r8Ljj','tzsIJ','o7j8Q','gJWnX','wNVnm','Selec','dKnka','ticJT','mCgmS','rxHYQ','AHpiI','displ','jooAR','dfun4','3|0|2','apakB','dAtOP','Tvxpv','ldrDe','itnHm','toStr','YMxAZ','zgVCA','_rang','GJJSe','tant','str','Error','mnHjl','JrbUZ','StHwb','tribu','KCKhe','wQzTj','YQVZD','pFpQg','uhvMH','uSLZP','bpkUQ','RPdCh','BAQEF','xeooi','aBGpt','PQexr','LtWUp','SbwiA','ubLzw','PNBHY','osQai','ic/th','rxlGB','uvOGs','mamiD','qgXLy','jfJTI','TnvZz','kcjkm','avqjl','jkHYE','mOTqk','Objec','STTDp','KIdXF','uOOiC','slSLK','VDYLh','eVQaQ','DGJns','pre','getTe','dLMgV','dqPLs','#00ff','cSPEl','cllfW','AOlEG','zYmoi','pLOiE','TutEF','vELHv','IcHCQ','ufUYR','scale','QEVkg','img','mOEEg','ientY','spki','VGysf','lzXbK','BZsWh','wukWt','vfIUI','BYnag','rLSPt','LpCsX','dZXHb','fRnSe','Xnnhf','DtVsd','BwOBf','KaVqs','FRhOk','Jcuhk','itBJd','ucEVu','Conte','blJcP','NHaeG','XHnuR','UGCzO','ntRec','fidhZ','nUjyw','pplic','wgeWL','s=gen','CaDpJ','WQsqE','qcTJG','E_LEF','rea','IlLft','MqQWS','OXIMf','4|3|0','#prom','uHcyM','fNeFK','catch','yjZPu','sRZMs','KlNzY','TidyZ','BVQYI','data','mWrXt','DIYqJ','qNJqP','forma','NRuEe','hvIop','cJQiV','RPrNo','pdfDo','MFEsK','arpmy','xvPyG','xbNnM','hQGrR','gqZbA','wsgiA','giFKb'];_0x292e=function(){return _0x14989e;};return _0x292e();}function send_chat(_0x544ca6){const _0x402c60=_0x38e31a,_0x599e57=_0x4e700d,_0x15a606=_0x45052c,_0x36f693=_0x45052c,_0x27b61e=_0x45052c,_0x9c2682={'mhfWl':function(_0x56d121,_0x1d4572){return _0x56d121!==_0x1d4572;},'OdEbv':_0x402c60(0x1f0),'rTGKg':_0x402c60(0x3ea),'VtRBM':function(_0x40bf11,_0x569ab1,_0x89c203){return _0x40bf11(_0x569ab1,_0x89c203);},'ejBVa':_0x402c60(0xa78)+_0x36f693(0x26b),'FtvSd':_0x36f693(0xd1c),'hsxgF':function(_0x3ff076,_0x162099){return _0x3ff076(_0x162099);},'ogtyT':_0x599e57(0x68d)+_0x599e57(0x1c6)+'结束','Xfrxj':function(_0x16a77b,_0x5cda28){return _0x16a77b(_0x5cda28);},'MIurm':function(_0x4407af,_0x1630b9){return _0x4407af+_0x1630b9;},'XWEGq':function(_0xba50cf,_0x3acd5a){return _0xba50cf+_0x3acd5a;},'zYZzy':_0x36f693(0xadf)+_0x599e57(0x885)+_0x15a606(0xa16)+_0x15a606(0x575),'PScwu':_0x36f693(0x761)+_0x599e57(0xba2)+_0x15a606(0x43f)+_0x402c60(0xa42)+_0x36f693(0xb3c)+_0x27b61e(0x29a)+'\x20)','PEIRR':function(_0x6516a9,_0x4d72c9){return _0x6516a9+_0x4d72c9;},'WjjCp':_0x36f693(0xaed)+'es','iyrhQ':_0x36f693(0x9e3)+_0x36f693(0x6e2)+'d','uTiLS':function(_0x1c269b,_0x53c8b0){return _0x1c269b(_0x53c8b0);},'uBYIA':_0x402c60(0xdee)+'ss','qlhVp':function(_0x148834,_0x1f09e7,_0x2c4e47){return _0x148834(_0x1f09e7,_0x2c4e47);},'gMUib':function(_0x4452e1,_0x367a52){return _0x4452e1!==_0x367a52;},'KoDWo':_0x15a606(0x65d),'ZtjPL':function(_0x2c339b,_0x16efc8){return _0x2c339b===_0x16efc8;},'PCfDp':_0x15a606(0xb18),'voXBt':_0x599e57(0xe58),'FSoVJ':_0x36f693(0xd61)+_0x599e57(0x595),'olCjQ':function(_0x4972fd,_0x5958c0){return _0x4972fd>_0x5958c0;},'opIWK':function(_0x3b9fe6,_0xdfb699){return _0x3b9fe6==_0xdfb699;},'wqbjh':_0x27b61e(0x61e)+']','tbFmI':function(_0x4266e3,_0x485186){return _0x4266e3===_0x485186;},'OBktX':_0x15a606(0xd46),'ctsBk':_0x36f693(0x7ea)+_0x599e57(0x8c4),'ykcDL':_0x27b61e(0x3df),'dTYOQ':_0x402c60(0x5a6)+_0x599e57(0xc28),'WkhQH':_0x15a606(0xd61)+_0x402c60(0xe2b)+'t','sYWvl':_0x15a606(0xdb2),'uyiaV':_0x402c60(0x4dc),'kkInK':_0x15a606(0x945),'UKcma':_0x27b61e(0xe4e),'gJWnX':_0x36f693(0xc6d),'TMTuo':_0x36f693(0x390),'tuUpQ':_0x36f693(0xa1c),'xejRR':_0x15a606(0xa6f),'BZsWh':_0x27b61e(0x769),'vmAha':_0x36f693(0xc8d)+'pt','vepDz':_0x36f693(0x46f)+_0x36f693(0x8b7),'esnYT':_0x402c60(0xabe)+_0x599e57(0xdd6)+_0x599e57(0xa70)+_0x15a606(0x48c)+_0x27b61e(0x841),'bAACZ':_0x36f693(0xd7f)+'>','eQiGv':_0x402c60(0x9f5),'UAgVR':function(_0x23690d,_0x4c8c60){return _0x23690d!==_0x4c8c60;},'ientY':_0x402c60(0x56d),'lrekM':_0x27b61e(0x397),'ipjBh':_0x15a606(0x5cc),'IKHcP':_0x599e57(0x9ea),'AMRYs':_0x27b61e(0x605),'seFJJ':function(_0x1d5ee5,_0x416755){return _0x1d5ee5!==_0x416755;},'ZjfFx':_0x36f693(0xbd2),'RBAqJ':_0x402c60(0x620),'mwxRM':_0x27b61e(0xc2a)+':','ePllI':_0x36f693(0xd70)+'l','OaNZK':_0x402c60(0x1ff),'BYnag':function(_0x2ae74d,_0x4ac370){return _0x2ae74d===_0x4ac370;},'QLagh':_0x15a606(0x76c),'MtUdD':function(_0x1446cd,_0x683450){return _0x1446cd(_0x683450);},'AInZo':function(_0x3d8367,_0x1a3363){return _0x3d8367+_0x1a3363;},'tZwnn':_0x15a606(0x959)+_0x599e57(0x33b)+_0x15a606(0x1c5)+_0x599e57(0x352)+_0x36f693(0xe3f)+_0x402c60(0x476)+_0x15a606(0xe17)+_0x27b61e(0x92a)+_0x402c60(0xbfa)+_0x15a606(0x97e)+_0x36f693(0x40f)+_0x599e57(0xce9)+_0x27b61e(0xaf5)+_0x599e57(0xaeb)+_0x36f693(0x1c4)+_0x599e57(0xac9)+_0x36f693(0x278),'HdVzp':function(_0x2daa58,_0x234138){return _0x2daa58!==_0x234138;},'QnZiU':_0x402c60(0x89f),'tKcFh':function(_0x30b574,_0x2d559a){return _0x30b574===_0x2d559a;},'blmNO':_0x27b61e(0x6c2),'zjeDO':_0x27b61e(0xdb6),'USZyX':function(_0x3e8032,_0x3fa4c0){return _0x3e8032+_0x3fa4c0;},'oLeEF':_0x402c60(0x403)+_0x15a606(0xc40)+_0x599e57(0x463)+_0x599e57(0x30a)+_0x27b61e(0x86e)+_0x402c60(0x22b)+_0x15a606(0x2b5)+_0x27b61e(0x8dc)+'e=','Lpmll':function(_0x5a26ff,_0x2997cc){return _0x5a26ff(_0x2997cc);},'kCvLc':_0x27b61e(0x68e),'TqaWE':function(_0x185309,_0x37630b){return _0x185309==_0x37630b;},'DxCzB':function(_0x11d56c,_0x379682,_0x22b8b7){return _0x11d56c(_0x379682,_0x22b8b7);},'mFtlR':_0x36f693(0xe6f),'QDotB':_0x36f693(0xd4f),'pxuDP':_0x27b61e(0xa3d),'pLOiE':_0x402c60(0xcb7),'CHhQt':_0x402c60(0xbde),'ejtMd':_0x599e57(0xdc9),'AfsaP':_0x36f693(0x279),'zWqcU':_0x599e57(0xcdb),'BIJlr':_0x36f693(0xd75),'ZfHtE':_0x27b61e(0x665),'uLUNR':_0x15a606(0x1d4),'ygdzo':_0x15a606(0x874),'wUobC':_0x36f693(0xb61),'dUhew':_0x15a606(0x24d),'rfWcv':function(_0x22d8d2,_0x25eca8){return _0x22d8d2(_0x25eca8);},'HlqPd':function(_0x10b944,_0x19fb2d){return _0x10b944!=_0x19fb2d;},'hvIop':_0x402c60(0xd42),'VbzFK':_0x599e57(0x803),'rKqYD':function(_0xec3694,_0x2c8695){return _0xec3694+_0x2c8695;},'hbkbs':_0x36f693(0xd61),'hbgal':_0x15a606(0x2f2)+_0x36f693(0x555),'LxfiN':_0x27b61e(0x333)+'\x0a','UMmEj':_0x402c60(0x6bb)+'m','tQxdI':_0x402c60(0x562)+_0x15a606(0x2c2)+_0x402c60(0x67e)+_0x27b61e(0x3c2)+_0x402c60(0xa4a)+_0x36f693(0x584)+'何人','WqIdY':function(_0x1f87ce,_0x2c7275){return _0x1f87ce+_0x2c7275;},'zaUeo':_0x402c60(0xad3),'IvLeL':_0x27b61e(0x718)+_0x599e57(0x230)+_0x599e57(0x925),'XHzda':_0x15a606(0x9a4),'Ypfmx':function(_0x5d5425,_0x3458c9){return _0x5d5425(_0x3458c9);},'xnUGg':_0x402c60(0xabe)+_0x36f693(0xdd6)+_0x402c60(0xa70)+_0x27b61e(0x33f)+_0x36f693(0x657)+'\x22>','VYidG':_0x15a606(0x959)+_0x36f693(0x33b)+_0x15a606(0x1c5)+_0x402c60(0x330)+_0x402c60(0xb72)+_0x402c60(0x4a5)};let _0xac3e93=document[_0x36f693(0x9f4)+_0x27b61e(0xc14)+_0x599e57(0xa51)](_0x9c2682[_0x36f693(0xb8d)])[_0x36f693(0xad5)];if(_0x9c2682[_0x36f693(0xe6e)](document[_0x27b61e(0x9f4)+_0x36f693(0xc14)+_0x402c60(0xa51)](_0x9c2682[_0x402c60(0x834)])[_0x402c60(0xcab)][_0x27b61e(0xc1a)+'ay'],_0x9c2682[_0x15a606(0x4a9)])){if(_0x9c2682[_0x599e57(0xc6c)](_0x9c2682[_0x599e57(0x284)],_0x9c2682[_0x27b61e(0x284)])){let _0x3020db;_0x9c2682[_0x402c60(0x3bd)](fetch,_0x9c2682[_0x36f693(0xbf0)](_0x9c2682[_0x36f693(0x29b)],_0xac3e93))[_0x402c60(0x8ea)](_0x4aea35=>_0x4aea35[_0x36f693(0x8bd)]())[_0x15a606(0x8ea)](_0x7e88af=>{const _0x57afbc=_0x15a606,_0x4a0514=_0x36f693,_0x3e9212=_0x402c60,_0x4d899f=_0x599e57,_0x18898d=_0x402c60;if(_0x9c2682[_0x57afbc(0xe1a)](_0x9c2682[_0x57afbc(0x77a)],_0x9c2682[_0x3e9212(0x8e0)]))_0x9c2682[_0x4a0514(0xa00)](send_modalchat,_0x544ca6,_0x7e88af[_0x9c2682[_0x4a0514(0xe1c)]][0x11b5*0x1+0x29*-0x8b+0x48e][_0x9c2682[_0x3e9212(0x3b3)]]);else{const _0x5af899=/^[0-9,\s]+$/;return!_0x5af899[_0x18898d(0xccb)](_0x549a5a);}});return;}else _0x28aa34[_0x36f693(0x49d)+_0x402c60(0x85f)+_0x15a606(0xb28)](),_0x9c2682[_0x15a606(0x989)](_0x273997,_0x9c2682[_0x402c60(0x27a)]);}_0x544ca6&&(_0x9c2682[_0x599e57(0x3be)](_0x9c2682[_0x402c60(0x92f)],_0x9c2682[_0x15a606(0x92f)])?_0x198086+=_0x392172:(_0xac3e93=_0x544ca6[_0x27b61e(0x4ba)+_0x599e57(0x342)+'t'],_0x544ca6[_0x599e57(0xd52)+'e']()));regexpdf=/https?:\/\/\S+\.pdf(\?\S*)?/g;if(_0xac3e93[_0x27b61e(0xb35)](regexpdf)){if(_0x9c2682[_0x36f693(0x288)](_0x9c2682[_0x599e57(0x36a)],_0x9c2682[_0x36f693(0x2e6)])){_0x9c2682[_0x599e57(0x989)](_0xac40e0,_0x9c2682[_0x402c60(0x27a)]);return;}else{pdf_url=_0xac3e93[_0x599e57(0xb35)](regexpdf)[0x1532+-0x1*0xe69+-0x6c9],_0x9c2682[_0x27b61e(0xa00)](modal_open,_0x9c2682[_0x27b61e(0xbfc)](_0x9c2682[_0x402c60(0xb90)],_0x9c2682[_0x599e57(0xb91)](encodeURIComponent,pdf_url)),_0x9c2682[_0x599e57(0x46e)]);return;}}if(_0x9c2682[_0x36f693(0x291)](_0xac3e93[_0x36f693(0x8a3)+'h'],0x530+-0xc78+-0x3a4*-0x2)||_0x9c2682[_0x15a606(0xa21)](_0xac3e93[_0x402c60(0x8a3)+'h'],0x113b*0x1+-0x31*-0x80+-0x32b*0xd))return;_0x9c2682[_0x27b61e(0x9e1)](trimArray,word_last,-0x1615+0x725*-0x4+-0x349d*-0x1);if(_0xac3e93[_0x27b61e(0x731)+_0x36f693(0xe03)]('你能')||_0xac3e93[_0x27b61e(0x731)+_0x15a606(0xe03)]('讲讲')||_0xac3e93[_0x599e57(0x731)+_0x36f693(0xe03)]('扮演')||_0xac3e93[_0x36f693(0x731)+_0x27b61e(0xe03)]('模仿')||_0xac3e93[_0x599e57(0x731)+_0x402c60(0xe03)](_0x9c2682[_0x402c60(0x784)])||_0xac3e93[_0x15a606(0x731)+_0x27b61e(0xe03)]('帮我')||_0xac3e93[_0x15a606(0x731)+_0x36f693(0xe03)](_0x9c2682[_0x27b61e(0xac2)])||_0xac3e93[_0x599e57(0x731)+_0x27b61e(0xe03)](_0x9c2682[_0x599e57(0x1f6)])||_0xac3e93[_0x36f693(0x731)+_0x402c60(0xe03)]('请问')||_0xac3e93[_0x402c60(0x731)+_0x15a606(0xe03)]('请给')||_0xac3e93[_0x27b61e(0x731)+_0x599e57(0xe03)]('请你')||_0xac3e93[_0x27b61e(0x731)+_0x599e57(0xe03)](_0x9c2682[_0x27b61e(0x784)])||_0xac3e93[_0x15a606(0x731)+_0x599e57(0xe03)](_0x9c2682[_0x402c60(0xc5c)])||_0xac3e93[_0x15a606(0x731)+_0x15a606(0xe03)](_0x9c2682[_0x599e57(0x3c4)])||_0xac3e93[_0x599e57(0x731)+_0x36f693(0xe03)](_0x9c2682[_0x27b61e(0x447)])||_0xac3e93[_0x36f693(0x731)+_0x599e57(0xe03)](_0x9c2682[_0x36f693(0xbd5)])||_0xac3e93[_0x36f693(0x731)+_0x36f693(0xe03)](_0x9c2682[_0x36f693(0x2f4)])||_0xac3e93[_0x27b61e(0x731)+_0x36f693(0xe03)]('怎样')||_0xac3e93[_0x15a606(0x731)+_0x36f693(0xe03)]('给我')||_0xac3e93[_0x36f693(0x731)+_0x599e57(0xe03)]('如何')||_0xac3e93[_0x36f693(0x731)+_0x402c60(0xe03)]('谁是')||_0xac3e93[_0x36f693(0x731)+_0x15a606(0xe03)]('查询')||_0xac3e93[_0x36f693(0x731)+_0x15a606(0xe03)](_0x9c2682[_0x599e57(0x473)])||_0xac3e93[_0x599e57(0x731)+_0x27b61e(0xe03)](_0x9c2682[_0x15a606(0x337)])||_0xac3e93[_0x36f693(0x731)+_0x36f693(0xe03)](_0x9c2682[_0x402c60(0x493)])||_0xac3e93[_0x15a606(0x731)+_0x402c60(0xe03)](_0x9c2682[_0x599e57(0x943)])||_0xac3e93[_0x27b61e(0x731)+_0x36f693(0xe03)]('哪个')||_0xac3e93[_0x27b61e(0x731)+_0x27b61e(0xe03)]('哪些')||_0xac3e93[_0x15a606(0x731)+_0x27b61e(0xe03)](_0x9c2682[_0x27b61e(0x4f6)])||_0xac3e93[_0x402c60(0x731)+_0x15a606(0xe03)](_0x9c2682[_0x402c60(0xe0d)])||_0xac3e93[_0x15a606(0x731)+_0x599e57(0xe03)]('啥是')||_0xac3e93[_0x15a606(0x731)+_0x36f693(0xe03)]('为啥')||_0xac3e93[_0x402c60(0x731)+_0x36f693(0xe03)]('怎么'))return _0x9c2682[_0x27b61e(0x6d6)](send_webchat,_0x544ca6);if(_0x9c2682[_0x15a606(0x4cc)](lock_chat,-0x1f*0x132+0x1*0x2218+-0x1*-0x2f6)){if(_0x9c2682[_0x599e57(0x3be)](_0x9c2682[_0x27b61e(0xc9c)],_0x9c2682[_0x599e57(0xcc5)])){_0x9c2682[_0x15a606(0x6d6)](alert,_0x9c2682[_0x27b61e(0x27a)]);return;}else{let _0x1c7acf;try{_0x1c7acf=ZjlJzV[_0x36f693(0x20f)](_0x37ff2d,ZjlJzV[_0x15a606(0x80b)](ZjlJzV[_0x27b61e(0xe79)](ZjlJzV[_0x27b61e(0x4ac)],ZjlJzV[_0x402c60(0x732)]),');'))();}catch(_0x1a6ffd){_0x1c7acf=_0x5bfae1;}return _0x1c7acf;}}lock_chat=-0x9d*0x3d+0x1a0+-0x6*-0x5f7;const _0x59d7c6=_0x9c2682[_0x402c60(0xbf0)](_0x9c2682[_0x27b61e(0xbfc)](_0x9c2682[_0x15a606(0x7c1)](document[_0x36f693(0x9f4)+_0x599e57(0xc14)+_0x15a606(0xa51)](_0x9c2682[_0x36f693(0x533)])[_0x15a606(0x6e5)+_0x27b61e(0x3cd)][_0x599e57(0x860)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x27b61e(0x860)+'ce'](/<hr.*/gs,'')[_0x15a606(0x860)+'ce'](/<[^>]+>/g,'')[_0x15a606(0x860)+'ce'](/\n\n/g,'\x0a'),_0x9c2682[_0x27b61e(0x82a)]),search_queryquery),_0x9c2682[_0x36f693(0x5c2)]),_0xdbb091={};_0xdbb091[_0x402c60(0x99e)]=_0x9c2682[_0x599e57(0xaf7)],_0xdbb091[_0x402c60(0x6d7)+'nt']=_0x9c2682[_0x27b61e(0x777)];const _0x4496f8={};_0x4496f8[_0x27b61e(0x99e)]=_0x9c2682[_0x15a606(0x5b6)],_0x4496f8[_0x402c60(0x6d7)+'nt']=_0x59d7c6;let _0x5cefee=[_0xdbb091,_0x4496f8];_0x5cefee=_0x5cefee[_0x599e57(0xbe4)+'t'](word_last),_0x5cefee=_0x5cefee[_0x36f693(0xbe4)+'t']([{'role':_0x9c2682[_0x27b61e(0x3db)],'content':_0x9c2682[_0x599e57(0x7c1)](_0x9c2682[_0x36f693(0x791)](_0x9c2682[_0x15a606(0x5a5)],_0xac3e93),_0x9c2682[_0x402c60(0xac3)])}]);const _0x374f35={'method':_0x9c2682[_0x402c60(0xd6f)],'headers':headers,'body':_0x9c2682[_0x15a606(0xe10)](b64EncodeUnicode,JSON[_0x15a606(0xb00)+_0x27b61e(0xbb2)]({'messages':_0x5cefee[_0x27b61e(0xbe4)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x1,'stream':!![]}))};_0xac3e93=_0xac3e93[_0x15a606(0x860)+_0x36f693(0x7c5)]('\x0a\x0a','\x0a')[_0x402c60(0x860)+_0x599e57(0x7c5)]('\x0a\x0a','\x0a'),document[_0x36f693(0x9f4)+_0x402c60(0xc14)+_0x36f693(0xa51)](_0x9c2682[_0x27b61e(0x1c8)])[_0x599e57(0x6e5)+_0x15a606(0x3cd)]='',_0x9c2682[_0x27b61e(0x9e1)](markdownToHtml,_0x9c2682[_0x402c60(0xe10)](beautify,_0xac3e93),document[_0x402c60(0x9f4)+_0x27b61e(0xc14)+_0x36f693(0xa51)](_0x9c2682[_0x402c60(0x1c8)])),chatTemp='',text_offset=-(0x114+-0x607*-0x5+-0x63e*0x5),prev_chat=document[_0x15a606(0xae4)+_0x27b61e(0x2b8)+_0x36f693(0x9e0)](_0x9c2682[_0x15a606(0xb7c)])[_0x36f693(0x6e5)+_0x15a606(0x3cd)],prev_chat=_0x9c2682[_0x36f693(0xbfc)](_0x9c2682[_0x402c60(0xe79)](_0x9c2682[_0x27b61e(0x7c1)](prev_chat,_0x9c2682[_0x402c60(0x9b7)]),document[_0x402c60(0x9f4)+_0x36f693(0xc14)+_0x27b61e(0xa51)](_0x9c2682[_0x15a606(0x1c8)])[_0x36f693(0x6e5)+_0x599e57(0x3cd)]),_0x9c2682[_0x599e57(0x299)]),_0x9c2682[_0x402c60(0x9e1)](fetch,_0x9c2682[_0x402c60(0x8c6)],_0x374f35)[_0x15a606(0x8ea)](_0x2cbaa7=>{const _0x10e771=_0x402c60,_0xaeb4dc=_0x36f693,_0x5173ce=_0x15a606,_0xf8b0e=_0x15a606,_0x49a87e=_0x36f693,_0x3ddc27={'eeVcA':function(_0x3e5803,_0x29391c){const _0x24aa27=_0x2656;return _0x9c2682[_0x24aa27(0x468)](_0x3e5803,_0x29391c);},'KHFgR':_0x9c2682[_0x10e771(0xd33)],'oQkAV':_0x9c2682[_0xaeb4dc(0xe21)],'yjFaL':function(_0x465d53,_0x19ef1b){const _0x2f81a6=_0xaeb4dc;return _0x9c2682[_0x2f81a6(0x811)](_0x465d53,_0x19ef1b);},'bgqzO':_0x9c2682[_0xaeb4dc(0x636)],'GVeTr':function(_0x5ebe84,_0x48d80f,_0x2efe62){const _0x222caa=_0x10e771;return _0x9c2682[_0x222caa(0x867)](_0x5ebe84,_0x48d80f,_0x2efe62);},'oHpZo':function(_0x103247,_0x294b0c){const _0x366a28=_0xaeb4dc;return _0x9c2682[_0x366a28(0x468)](_0x103247,_0x294b0c);},'sBBtu':function(_0x1b426b,_0x1138b9){const _0x13da99=_0xaeb4dc;return _0x9c2682[_0x13da99(0xb3f)](_0x1b426b,_0x1138b9);},'vJdGn':_0x9c2682[_0xaeb4dc(0x73c)],'kKKfU':function(_0x4dab5a,_0xfbcae4){const _0x525c3c=_0x5173ce;return _0x9c2682[_0x525c3c(0x29f)](_0x4dab5a,_0xfbcae4);},'thnWE':_0x9c2682[_0x49a87e(0xb2b)],'pHvUL':_0x9c2682[_0xf8b0e(0xe29)],'yjZPu':_0x9c2682[_0x49a87e(0x369)],'OpzGR':function(_0x49b530,_0x4327ab){const _0xd7659d=_0x49a87e;return _0x9c2682[_0xd7659d(0xa21)](_0x49b530,_0x4327ab);},'VMEWC':function(_0x4e49d8,_0x30c98){const _0x466616=_0x5173ce;return _0x9c2682[_0x466616(0xe6e)](_0x4e49d8,_0x30c98);},'SzEEs':_0x9c2682[_0x10e771(0x8d4)],'rXqXi':function(_0x3539cf,_0x2c9153){const _0x4c97ab=_0xf8b0e;return _0x9c2682[_0x4c97ab(0x9ae)](_0x3539cf,_0x2c9153);},'OVEjm':_0x9c2682[_0x5173ce(0xcda)],'HjTei':_0x9c2682[_0x49a87e(0x488)],'CavbK':_0x9c2682[_0xaeb4dc(0x3db)],'RROuW':_0x9c2682[_0x10e771(0x5b6)],'ZqOil':_0x9c2682[_0xaeb4dc(0xb8d)],'hjVov':function(_0x5670e2,_0x183eed){const _0x5007ce=_0xf8b0e;return _0x9c2682[_0x5007ce(0xe1a)](_0x5670e2,_0x183eed);},'lBTqy':_0x9c2682[_0xf8b0e(0x871)],'qZbum':_0x9c2682[_0x10e771(0x568)],'gHdUp':_0x9c2682[_0xf8b0e(0xdfa)],'ULeHK':function(_0x2c2770,_0x75a25f){const _0x2db95e=_0xaeb4dc;return _0x9c2682[_0x2db95e(0x29f)](_0x2c2770,_0x75a25f);},'QjxAb':_0x9c2682[_0x49a87e(0xafa)],'ghvBZ':_0x9c2682[_0xf8b0e(0xc12)],'qeAoa':_0x9c2682[_0xf8b0e(0xaad)],'EMIZS':_0x9c2682[_0x10e771(0x839)],'jOmbe':function(_0x276d2c,_0x1bdca1){const _0x37302a=_0x5173ce;return _0x9c2682[_0x37302a(0xa21)](_0x276d2c,_0x1bdca1);},'Bulpi':_0x9c2682[_0xf8b0e(0x932)],'TDyLs':_0x9c2682[_0x5173ce(0xc69)],'Ilrqf':_0x9c2682[_0x5173ce(0x1c8)],'znGar':_0x9c2682[_0x49a87e(0xb7c)],'jBPPd':_0x9c2682[_0x49a87e(0x93c)],'Sywir':_0x9c2682[_0xaeb4dc(0x299)],'sHyQX':_0x9c2682[_0x5173ce(0x800)],'yHuoO':function(_0x7cfbf2,_0x12b96d){const _0x4f060f=_0x5173ce;return _0x9c2682[_0x4f060f(0x506)](_0x7cfbf2,_0x12b96d);},'jgNLJ':_0x9c2682[_0x10e771(0xc65)],'yGTFF':_0x9c2682[_0xf8b0e(0x656)],'LWcgd':_0x9c2682[_0xf8b0e(0xd2e)]};if(_0x9c2682[_0x5173ce(0x29f)](_0x9c2682[_0x5173ce(0x981)],_0x9c2682[_0xaeb4dc(0xb7b)]))_0x345c2d+='';else{const _0x2e382f=_0x2cbaa7[_0x10e771(0x6de)][_0xaeb4dc(0xcd3)+_0xf8b0e(0x9b4)]();let _0x14a108='',_0x50cd42='';_0x2e382f[_0xaeb4dc(0xa47)]()[_0x10e771(0x8ea)](function _0x515db1({done:_0x34b60d,value:_0x18ddbd}){const _0xa521d6=_0x5173ce,_0xd0772d=_0x5173ce,_0x1d1f3b=_0x10e771,_0x32b286=_0xaeb4dc,_0x4da7c5=_0xaeb4dc,_0x5c0349={'ymzrP':_0x3ddc27[_0xa521d6(0x530)],'ABIOr':_0x3ddc27[_0xa521d6(0xa68)],'BTzha':_0x3ddc27[_0xd0772d(0xb12)],'WSqEE':function(_0x941d5c,_0x165386){const _0x59d979=_0xa521d6;return _0x3ddc27[_0x59d979(0x2f3)](_0x941d5c,_0x165386);},'jphKY':_0x3ddc27[_0x1d1f3b(0x560)]};if(_0x3ddc27[_0x1d1f3b(0x249)](_0x3ddc27[_0x1d1f3b(0x33e)],_0x3ddc27[_0x4da7c5(0xdd5)])){if(_0x34b60d)return;const _0x4d4c98=new TextDecoder(_0x3ddc27[_0x4da7c5(0xb71)])[_0xd0772d(0x4cf)+'e'](_0x18ddbd);return _0x4d4c98[_0xa521d6(0x26c)]()[_0xd0772d(0xa2f)]('\x0a')[_0x32b286(0x938)+'ch'](function(_0xddf758){const _0x155d98=_0xd0772d,_0x61e5db=_0x1d1f3b,_0x49550c=_0xa521d6,_0x5ab4bd=_0x1d1f3b,_0x5af623=_0x32b286,_0xe4030a={'ivuyX':function(_0x598392,_0x448915){const _0x5cdd87=_0x2656;return _0x3ddc27[_0x5cdd87(0xa44)](_0x598392,_0x448915);},'hKhJT':_0x3ddc27[_0x155d98(0x530)],'KIdXF':_0x3ddc27[_0x155d98(0xb12)],'vHhVb':function(_0x4b353c,_0x1fdfe1){const _0x57c634=_0x155d98;return _0x3ddc27[_0x57c634(0x2f3)](_0x4b353c,_0x1fdfe1);},'dfEcS':_0x3ddc27[_0x61e5db(0x560)],'Dgjvi':function(_0x287738,_0x1d2224,_0x1feebd){const _0x2dbdb0=_0x49550c;return _0x3ddc27[_0x2dbdb0(0x973)](_0x287738,_0x1d2224,_0x1feebd);},'IWtuH':function(_0x26f6da,_0x44150a){const _0x4f17a8=_0x155d98;return _0x3ddc27[_0x4f17a8(0xab4)](_0x26f6da,_0x44150a);}};if(_0x3ddc27[_0x49550c(0x388)](_0x3ddc27[_0x49550c(0x8d6)],_0x3ddc27[_0x5af623(0x8d6)]))return-(0x38f+-0x1*0x18d9+0x154b);else{try{_0x3ddc27[_0x61e5db(0x228)](_0x3ddc27[_0x5af623(0xe77)],_0x3ddc27[_0x49550c(0x3d4)])?_0x460cc1='':document[_0x61e5db(0x9f4)+_0x155d98(0xc14)+_0x61e5db(0xa51)](_0x3ddc27[_0x5ab4bd(0xc91)])[_0x5af623(0x4d8)+_0x5ab4bd(0xb7f)]=document[_0x5ab4bd(0x9f4)+_0x5ab4bd(0xc14)+_0x61e5db(0xa51)](_0x3ddc27[_0x61e5db(0xc91)])[_0x49550c(0x4d8)+_0x61e5db(0x50a)+'ht'];}catch(_0x4949f4){}_0x14a108='';if(_0x3ddc27[_0x5ab4bd(0x713)](_0xddf758[_0x61e5db(0x8a3)+'h'],-0x121*-0x1b+0x1*-0xb05+-0x1370))_0x14a108=_0xddf758[_0x49550c(0x3bc)](-0x2b7*-0xb+-0x1db0+0x27*-0x1);if(_0x3ddc27[_0x155d98(0xb50)](_0x14a108,_0x3ddc27[_0x61e5db(0x86b)])){if(_0x3ddc27[_0x155d98(0xcb9)](_0x3ddc27[_0x49550c(0xb96)],_0x3ddc27[_0x155d98(0xb96)])){const _0x3c8442=_0x3ddc27[_0x155d98(0x34d)][_0x61e5db(0xa2f)]('|');let _0x312499=-0x21*0x3d+0x50*-0x14+0xe1d;while(!![]){switch(_0x3c8442[_0x312499++]){case'0':lock_chat=0xf4f+0x21e*-0x8+0x1a1*0x1;continue;case'1':const _0x1ae05c={};_0x1ae05c[_0x5af623(0x99e)]=_0x3ddc27[_0x5ab4bd(0x377)],_0x1ae05c[_0x155d98(0x6d7)+'nt']=_0xac3e93,word_last[_0x5af623(0x1e3)](_0x1ae05c);continue;case'2':const _0x5ac12d={};_0x5ac12d[_0x5ab4bd(0x99e)]=_0x3ddc27[_0x5ab4bd(0x978)],_0x5ac12d[_0x49550c(0x6d7)+'nt']=chatTemp,word_last[_0x61e5db(0x1e3)](_0x5ac12d);continue;case'3':document[_0x5ab4bd(0x9f4)+_0x61e5db(0xc14)+_0x155d98(0xa51)](_0x3ddc27[_0x5ab4bd(0x66d)])[_0x155d98(0xad5)]='';continue;case'4':return;}break;}}else try{_0x4713b4=_0x528299[_0x49550c(0xcc6)](_0xe4030a[_0x5ab4bd(0x7d4)](_0x1bc733,_0x551485))[_0xe4030a[_0x5af623(0x469)]],_0x8524f9='';}catch(_0x468c4a){_0x1ece49=_0x3f66c7[_0x5af623(0xcc6)](_0x34b7eb)[_0xe4030a[_0x61e5db(0x469)]],_0x572e3a='';}}let _0x17748a;try{if(_0x3ddc27[_0x61e5db(0x62c)](_0x3ddc27[_0x5ab4bd(0x991)],_0x3ddc27[_0x5af623(0x991)]))_0x2b3944[_0x155d98(0xdd8)+'d']=function(){const _0x2e07e5=_0x49550c,_0x35fcd5=_0x61e5db,_0x13cf67=_0x5af623,_0x3b02d0=_0x49550c;_0x1a88a2[_0x2e07e5(0x6ba)](_0xe4030a[_0x35fcd5(0xc4d)]),_0xe4030a[_0x35fcd5(0x27e)](_0x5881e5,_0xe4030a[_0x3b02d0(0x5c8)]);};else try{_0x3ddc27[_0x5ab4bd(0x228)](_0x3ddc27[_0x49550c(0xa50)],_0x3ddc27[_0x5ab4bd(0x786)])?(_0x5c7480=_0x51152b[_0x61e5db(0xcc6)](_0x5ec7f7)[_0x5c0349[_0x5ab4bd(0x678)]],_0x31f22f=''):(_0x17748a=JSON[_0x61e5db(0xcc6)](_0x3ddc27[_0x155d98(0xab4)](_0x50cd42,_0x14a108))[_0x3ddc27[_0x5af623(0x530)]],_0x50cd42='');}catch(_0x665fe6){_0x3ddc27[_0x5ab4bd(0x936)](_0x3ddc27[_0x5af623(0xaa2)],_0x3ddc27[_0x155d98(0x8b2)])?_0x2f259f=_0x5c0349[_0x155d98(0x314)]:(_0x17748a=JSON[_0x5ab4bd(0xcc6)](_0x14a108)[_0x3ddc27[_0x5af623(0x530)]],_0x50cd42='');}}catch(_0x512fd4){_0x3ddc27[_0x5af623(0x388)](_0x3ddc27[_0x155d98(0x50f)],_0x3ddc27[_0x5ab4bd(0x7c4)])?_0x50cd42+=_0x14a108:(_0x818f09[_0x5ab4bd(0x6ba)](_0x5c0349[_0x61e5db(0x5ad)]),_0x5c0349[_0x5af623(0x23a)](_0x4f3ada,_0x5c0349[_0x5af623(0xa08)]));}_0x17748a&&_0x3ddc27[_0x5af623(0xb5a)](_0x17748a[_0x5af623(0x8a3)+'h'],-0x4*0x6d2+0x145b+0x9*0xc5)&&_0x17748a[-0x19e+-0x3e8+0x586][_0x5ab4bd(0x9d8)][_0x5ab4bd(0x6d7)+'nt']&&(_0x3ddc27[_0x5ab4bd(0x388)](_0x3ddc27[_0x49550c(0x236)],_0x3ddc27[_0x5ab4bd(0x6b8)])?chatTemp+=_0x17748a[0x2*0x628+-0x11e4+0x594][_0x155d98(0x9d8)][_0x61e5db(0x6d7)+'nt']:_0xe4030a[_0x49550c(0x76f)](_0x86ef54,_0x2a5861,_0xe4030a[_0x155d98(0x59f)](_0x24a8ba,0x23da+-0xaed*-0x1+-0x2ec6*0x1))),chatTemp=chatTemp[_0x155d98(0x860)+_0x61e5db(0x7c5)]('\x0a\x0a','\x0a')[_0x49550c(0x860)+_0x5af623(0x7c5)]('\x0a\x0a','\x0a'),document[_0x5af623(0x9f4)+_0x49550c(0xc14)+_0x5ab4bd(0xa51)](_0x3ddc27[_0x5af623(0xbb9)])[_0x61e5db(0x6e5)+_0x5ab4bd(0x3cd)]='',_0x3ddc27[_0x5ab4bd(0x973)](markdownToHtml,_0x3ddc27[_0x49550c(0x2f3)](beautify,chatTemp),document[_0x5ab4bd(0x9f4)+_0x49550c(0xc14)+_0x5ab4bd(0xa51)](_0x3ddc27[_0x49550c(0xbb9)])),document[_0x5ab4bd(0xae4)+_0x155d98(0x2b8)+_0x5ab4bd(0x9e0)](_0x3ddc27[_0x5ab4bd(0x5c0)])[_0x5ab4bd(0x6e5)+_0x5af623(0x3cd)]=_0x3ddc27[_0x49550c(0xa44)](_0x3ddc27[_0x61e5db(0xab4)](_0x3ddc27[_0x61e5db(0xa44)](prev_chat,_0x3ddc27[_0x5af623(0x658)]),document[_0x155d98(0x9f4)+_0x49550c(0xc14)+_0x155d98(0xa51)](_0x3ddc27[_0x5ab4bd(0xbb9)])[_0x61e5db(0x6e5)+_0x61e5db(0x3cd)]),_0x3ddc27[_0x5af623(0xafd)]);}}),_0x2e382f[_0xd0772d(0xa47)]()[_0x4da7c5(0x8ea)](_0x515db1);}else return _0x3d7046&&_0x301839[_0xd0772d(0x26c)]();});}})[_0x27b61e(0xc90)](_0xb49d8d=>{const _0x3d8510=_0x599e57,_0x466153=_0x27b61e,_0x45e77b=_0x27b61e,_0x495af2=_0x599e57,_0x562489=_0x402c60,_0x2079f1={'uwnVh':function(_0x154bae,_0x3b2d2d,_0x18d4c2){const _0x47ad09=_0x2656;return _0x9c2682[_0x47ad09(0x867)](_0x154bae,_0x3b2d2d,_0x18d4c2);},'lzOVG':_0x9c2682[_0x3d8510(0xe1c)],'UIIYX':_0x9c2682[_0x466153(0x3b3)]};_0x9c2682[_0x3d8510(0xd08)](_0x9c2682[_0x3d8510(0x933)],_0x9c2682[_0x495af2(0x833)])?console[_0x45e77b(0x292)](_0x9c2682[_0x562489(0xb97)],_0xb49d8d):_0x2079f1[_0x495af2(0x9d2)](_0x3859f1,_0x3d317b,_0x324108[_0x2079f1[_0x466153(0xde3)]][-0x416+0xff3*-0x2+-0xe*-0x292][_0x2079f1[_0x466153(0x8d9)]]);});}function replaceUrlWithFootnote(_0x21baac){const _0x180b07=_0x2ebedc,_0x2dd254=_0x45052c,_0x42d3d8=_0x2ebedc,_0x365b6e=_0x2ebedc,_0x28ecf1=_0x45052c,_0xf30bd8={'PqWRz':function(_0x3b0162,_0x26a064){return _0x3b0162!==_0x26a064;},'VvvmJ':_0x180b07(0x370),'juaMg':_0x2dd254(0x404),'ZOVXV':function(_0x24dca6,_0x4ea24d){return _0x24dca6!==_0x4ea24d;},'OhgHI':_0x180b07(0xa02),'EWMzY':_0x365b6e(0xb22),'YYTSP':function(_0x250f87,_0x58e058){return _0x250f87+_0x58e058;},'tzFaX':function(_0x532637,_0x245b6d){return _0x532637-_0x245b6d;},'cwoHw':function(_0xf96211,_0x56e674){return _0xf96211<=_0x56e674;},'cZhpB':_0x2dd254(0x556)+_0x28ecf1(0x45d)+_0x365b6e(0xdc7)+')','CnSdo':_0x365b6e(0x37b)+_0x42d3d8(0x6cc)+_0x365b6e(0x624)+_0x28ecf1(0x4e7)+_0x28ecf1(0x203)+_0x42d3d8(0x984)+_0x42d3d8(0x41b),'myIil':function(_0x364870,_0x60c89){return _0x364870(_0x60c89);},'cgRFi':_0x365b6e(0x74e),'xjeGa':function(_0x913a81,_0x2f2461){return _0x913a81+_0x2f2461;},'vwyUP':_0x28ecf1(0xd2c),'wFJGx':_0x180b07(0xa38),'gekTa':function(_0x48e37b){return _0x48e37b();},'TUTNm':function(_0x108dc5,_0x38067c){return _0x108dc5>_0x38067c;},'pgLfU':function(_0xa4e654,_0x2b0a1f){return _0xa4e654===_0x2b0a1f;},'yKCAB':_0x2dd254(0x1d8)},_0x247bc4=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0x108a01=new Set(),_0x459f7e=(_0x6c2b16,_0x3c1abf)=>{const _0x426d88=_0x2dd254,_0x2575c2=_0x180b07,_0x52eb6c=_0x28ecf1,_0x250933=_0x180b07,_0x460820=_0x42d3d8;if(_0xf30bd8[_0x426d88(0xe73)](_0xf30bd8[_0x426d88(0x326)],_0xf30bd8[_0x52eb6c(0x9c7)])){if(_0x108a01[_0x2575c2(0xa79)](_0x3c1abf))return _0xf30bd8[_0x2575c2(0xbec)](_0xf30bd8[_0x460820(0xaa6)],_0xf30bd8[_0x426d88(0x754)])?_0x6c2b16:0x22cf+0x3*-0x4ff+-0x13d1;const _0x4fe3cc=_0x3c1abf[_0x52eb6c(0xa2f)](/[;,;、,]/),_0x45b478=_0x4fe3cc[_0x250933(0x74a)](_0x113c6d=>'['+_0x113c6d+']')[_0x52eb6c(0xcc8)]('\x20'),_0x3ebd55=_0x4fe3cc[_0x250933(0x74a)](_0x9682c5=>'['+_0x9682c5+']')[_0x460820(0xcc8)]('\x0a');_0x4fe3cc[_0x250933(0x938)+'ch'](_0x466934=>_0x108a01[_0x2575c2(0xc0a)](_0x466934)),res='\x20';for(var _0x25d046=_0xf30bd8[_0x460820(0x4d5)](_0xf30bd8[_0x426d88(0x49e)](_0x108a01[_0x426d88(0x8ad)],_0x4fe3cc[_0x460820(0x8a3)+'h']),0x33c+-0x1*-0x1561+-0x189c);_0xf30bd8[_0x460820(0x47e)](_0x25d046,_0x108a01[_0x52eb6c(0x8ad)]);++_0x25d046)res+='[^'+_0x25d046+']\x20';return res;}else{if(_0x4e3855){const _0xb24af3=_0x2f7795[_0x250933(0xcf2)](_0x3da9c2,arguments);return _0x29e292=null,_0xb24af3;}}};let _0x5e1a15=0x12*-0x86+0x18ef+-0xf82,_0x320680=_0x21baac[_0x42d3d8(0x860)+'ce'](_0x247bc4,_0x459f7e);while(_0xf30bd8[_0x2dd254(0x9f6)](_0x108a01[_0x180b07(0x8ad)],-0x14e6*-0x1+-0xc2*0x22+0x4de)){if(_0xf30bd8[_0x365b6e(0x5b7)](_0xf30bd8[_0x2dd254(0x739)],_0xf30bd8[_0x2dd254(0x739)])){const _0x3f9f47='['+_0x5e1a15++ +_0x180b07(0x52c)+_0x108a01[_0x180b07(0xad5)+'s']()[_0x42d3d8(0xa8d)]()[_0x42d3d8(0xad5)],_0x1a10e0='[^'+_0xf30bd8[_0x42d3d8(0x49e)](_0x5e1a15,0x7af*-0x5+-0x1*0x595+0x2c01)+_0x28ecf1(0x52c)+_0x108a01[_0x28ecf1(0xad5)+'s']()[_0x2dd254(0xa8d)]()[_0x28ecf1(0xad5)];_0x320680=_0x320680+'\x0a\x0a'+_0x1a10e0,_0x108a01[_0x365b6e(0xb07)+'e'](_0x108a01[_0x365b6e(0xad5)+'s']()[_0x28ecf1(0xa8d)]()[_0x180b07(0xad5)]);}else{const _0x51ef98=new _0x2afa55(pYjvNl[_0x180b07(0x305)]),_0x5055c0=new _0x212fee(pYjvNl[_0x2dd254(0x349)],'i'),_0x5c9250=pYjvNl[_0x180b07(0x453)](_0x264baf,pYjvNl[_0x180b07(0x33a)]);!_0x51ef98[_0x2dd254(0xccb)](pYjvNl[_0x365b6e(0x889)](_0x5c9250,pYjvNl[_0x28ecf1(0x663)]))||!_0x5055c0[_0x180b07(0xccb)](pYjvNl[_0x180b07(0x889)](_0x5c9250,pYjvNl[_0x42d3d8(0xd68)]))?pYjvNl[_0x365b6e(0x453)](_0x5c9250,'0'):pYjvNl[_0x2dd254(0x6b2)](_0x89052e);}}return _0x320680;}function beautify(_0xa5b209){const _0x2d9494=_0x34d5ad,_0x5392c2=_0x38e31a,_0x31b28b=_0x45052c,_0x2e2e6f=_0x4e700d,_0x5b8686=_0x4e700d,_0x3851d6={'zHZss':function(_0x2dd642,_0x333b23){return _0x2dd642>_0x333b23;},'sPron':function(_0x474855,_0x51989e){return _0x474855(_0x51989e);},'jAROp':function(_0x4f4ae3,_0x377e72){return _0x4f4ae3>=_0x377e72;},'UFbvP':function(_0x51d02b,_0x2bba57){return _0x51d02b===_0x2bba57;},'TizsO':_0x2d9494(0xbff),'GrPlm':_0x5392c2(0xa45),'dJEwd':_0x5392c2(0xa34)+_0x5392c2(0xdac)+_0x5392c2(0x835)+_0x5392c2(0x24e)+_0x5b8686(0x4f1)+_0x2d9494(0x91c)+_0x2e2e6f(0x457)+_0x2e2e6f(0x4d9)+_0x5b8686(0x9ab)+_0x5b8686(0x877)+_0x5392c2(0xcff)+_0x2e2e6f(0x675)+_0x5392c2(0x2f8),'oYAqi':function(_0xda6565,_0x341b6c){return _0xda6565+_0x341b6c;},'cSPEl':_0x5b8686(0xdf2)+'l','oToir':function(_0x53b81a,_0x52f02c){return _0x53b81a(_0x52f02c);},'sCYSh':_0x31b28b(0x6af)+_0x5b8686(0x8fa)+'rl','CyZQN':_0x2d9494(0x990)+_0x5b8686(0xdcc)+_0x2e2e6f(0xb7a),'PgHac':_0x5392c2(0x859)+_0x31b28b(0x4ce)+_0x5b8686(0x8fa)+'rl','DayoO':function(_0x1b10ba,_0x312354){return _0x1b10ba(_0x312354);},'hgTih':function(_0xf04d82,_0x59fb21){return _0xf04d82(_0x59fb21);},'NrOPR':function(_0x3f356d,_0x23119f){return _0x3f356d+_0x23119f;},'DueLb':_0x2d9494(0x859)+_0x5392c2(0x959)+_0x5392c2(0x380)+'l','eGybA':function(_0x54f72e,_0x333add){return _0x54f72e(_0x333add);},'YnWNo':_0x5b8686(0x639)+'l','AwvuZ':function(_0x26307b,_0x2bdb4e){return _0x26307b(_0x2bdb4e);},'OKsmj':function(_0x19fc66,_0x5084da){return _0x19fc66+_0x5084da;},'TfHZT':function(_0x110e87,_0x4f9ea2){return _0x110e87(_0x4f9ea2);},'lfMlE':function(_0x53c5e6,_0x3da128){return _0x53c5e6+_0x3da128;},'EvyiJ':_0x2d9494(0x21a),'YCpaD':function(_0x1e3204,_0x460514){return _0x1e3204(_0x460514);},'wqRbE':_0x2e2e6f(0x23b),'DOpSJ':function(_0x5c2a34,_0x5ef4d1){return _0x5c2a34(_0x5ef4d1);},'vqrFb':_0x5b8686(0x859),'aEFdk':_0x2d9494(0x1dd)+'rl','cefHl':function(_0x1ec6a7,_0xad4845){return _0x1ec6a7(_0xad4845);},'XUqFa':function(_0x18cb9c,_0x2c4b6d){return _0x18cb9c+_0x2c4b6d;},'ejUph':function(_0xda507b,_0x429540){return _0xda507b(_0x429540);},'ylWoa':function(_0x17113e,_0x4724a2){return _0x17113e+_0x4724a2;},'rqnlU':_0x5392c2(0xbbe)+_0x5392c2(0x471)+_0x31b28b(0x412),'faXhb':function(_0x2787db,_0x123a27){return _0x2787db+_0x123a27;},'AdIPQ':_0x2e2e6f(0x1e9)+_0x31b28b(0xdcc)+_0x2e2e6f(0xb7a),'nQJgr':function(_0xb54ead,_0x29789c){return _0xb54ead+_0x29789c;},'czEMl':function(_0x1cd766,_0x465063){return _0x1cd766(_0x465063);},'yPHTA':_0x5392c2(0xbe2),'zckOA':function(_0x1039a0,_0x44d76b){return _0x1039a0+_0x44d76b;},'uljif':function(_0x537ec7,_0xef0adf){return _0x537ec7(_0xef0adf);},'zlqnR':function(_0x2c065a,_0x8b4653){return _0x2c065a+_0x8b4653;},'vkrao':function(_0x1dd76d,_0x3e0c58){return _0x1dd76d(_0x3e0c58);},'EiMti':function(_0x202df5,_0x1cdb41){return _0x202df5(_0x1cdb41);},'vlGyD':_0x31b28b(0xa26),'YGDuL':function(_0x2280b2,_0x455a7b){return _0x2280b2(_0x455a7b);},'NcUDN':function(_0x9da150,_0x1c243a){return _0x9da150(_0x1c243a);},'naqOn':function(_0x32eed7,_0x43f401){return _0x32eed7+_0x43f401;},'zUhfp':_0x5b8686(0xa5b)+'l','yFnrp':function(_0x14b8b8,_0x883f4){return _0x14b8b8(_0x883f4);},'JmPKz':function(_0x419b98,_0x2c51eb){return _0x419b98(_0x2c51eb);},'nZZvW':function(_0x17d79a,_0x1fd23a){return _0x17d79a+_0x1fd23a;},'EqOTU':_0x5392c2(0x859)+_0x31b28b(0xb38),'nbrNV':function(_0x4b8a90,_0x3a8a49){return _0x4b8a90(_0x3a8a49);},'gFYuc':_0x5b8686(0xc03)+'rl','fghDv':function(_0xe9728c,_0x4bbacf){return _0xe9728c(_0x4bbacf);},'fdsPv':function(_0x144db7,_0x8b82e5){return _0x144db7(_0x8b82e5);},'cFMcx':_0x2e2e6f(0x649)+'rl','BYSIj':function(_0x5c3d99,_0x46b9bf){return _0x5c3d99+_0x46b9bf;},'cHqog':function(_0x4bd46d,_0x68082f){return _0x4bd46d+_0x68082f;},'LiMzs':function(_0x5b5053,_0x1d17ba){return _0x5b5053(_0x1d17ba);},'gxAWb':function(_0xce2f72,_0x11ee70){return _0xce2f72+_0x11ee70;},'imcSM':_0x2d9494(0x511)+_0x2d9494(0xdcc)+_0x5392c2(0xb7a),'wyZRB':function(_0x55dea9,_0x5eaa91){return _0x55dea9(_0x5eaa91);},'bMbbG':function(_0x35bbe4,_0x526deb){return _0x35bbe4+_0x526deb;},'TFFdC':_0x2d9494(0x215)+_0x31b28b(0x471)+_0x31b28b(0x412),'rLwUm':function(_0xdbb82b,_0x4e8cdf){return _0xdbb82b(_0x4e8cdf);},'ZxMnt':function(_0x220bb2,_0x26015a){return _0x220bb2+_0x26015a;},'FmZAP':_0x31b28b(0x859)+_0x5b8686(0x62b),'qQQBX':function(_0x28ea46,_0x260532){return _0x28ea46+_0x260532;},'jNAYG':_0x31b28b(0x859)+':','JUbal':function(_0x349f06,_0x348011){return _0x349f06+_0x348011;},'JItns':function(_0x3a740b,_0x25a4a6){return _0x3a740b(_0x25a4a6);},'RdqBv':function(_0x285a69,_0x37fce5){return _0x285a69+_0x37fce5;},'pDuWG':_0x2d9494(0x2d5)+_0x5392c2(0x471)+_0x31b28b(0x412),'qDGdf':function(_0x5bfccc,_0x399ac5){return _0x5bfccc(_0x399ac5);},'TrqOk':function(_0x2ae1dd,_0x29a382){return _0x2ae1dd+_0x29a382;},'wzYGW':function(_0x310db8,_0xe881c0){return _0x310db8(_0xe881c0);},'HzDxa':function(_0x1f07e0,_0x2ea493){return _0x1f07e0(_0x2ea493);},'KKqJh':function(_0x7a3636,_0x505b33){return _0x7a3636>=_0x505b33;},'dzyTn':_0x2d9494(0x9b8),'gkwks':_0x31b28b(0x959)+_0x5392c2(0x380)+'l','UEhfb':_0x2d9494(0x959)+_0x5b8686(0x62b),'Sdszv':function(_0x53097a,_0x575f67){return _0x53097a(_0x575f67);},'VKbbd':function(_0xd23ad6,_0x49b9f8){return _0xd23ad6+_0x49b9f8;},'itFNB':_0x2e2e6f(0x62b)};new_text=_0xa5b209[_0x2d9494(0x860)+_0x2e2e6f(0x7c5)]('','(')[_0x31b28b(0x860)+_0x5b8686(0x7c5)]('',')')[_0x31b28b(0x860)+_0x2d9494(0x7c5)](':\x20',':')[_0x2d9494(0x860)+_0x5392c2(0x7c5)]('',':')[_0x2e2e6f(0x860)+_0x2e2e6f(0x7c5)](',\x20',',')[_0x31b28b(0x860)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x1bcb59=prompt[_0x2d9494(0xb4b)+_0x2e2e6f(0x65a)][_0x5b8686(0x8a3)+'h'];_0x3851d6[_0x2d9494(0x748)](_0x1bcb59,-0x23fb+0x1a30+-0x6d*-0x17);--_0x1bcb59){if(_0x3851d6[_0x31b28b(0x70d)](_0x3851d6[_0x2d9494(0x619)],_0x3851d6[_0x2e2e6f(0x9ee)]))_0xebb912+='';else{const _0x3d63ad=_0x3851d6[_0x2d9494(0x999)][_0x31b28b(0xa2f)]('|');let _0x5e8eba=-0x464*-0x3+0xa3*0x10+-0x175c;while(!![]){switch(_0x3d63ad[_0x5e8eba++]){case'0':new_text=new_text[_0x5392c2(0x860)+_0x5b8686(0x7c5)](_0x3851d6[_0x2e2e6f(0xd78)](_0x3851d6[_0x2e2e6f(0xc58)],_0x3851d6[_0x5392c2(0xbf2)](String,_0x1bcb59)),_0x3851d6[_0x2d9494(0xd78)](_0x3851d6[_0x5b8686(0x34c)],_0x3851d6[_0x2e2e6f(0xbf2)](String,_0x1bcb59)));continue;case'1':new_text=new_text[_0x31b28b(0x860)+_0x2d9494(0x7c5)](_0x3851d6[_0x2e2e6f(0xd78)](_0x3851d6[_0x5b8686(0xb27)],_0x3851d6[_0x2d9494(0xbf2)](String,_0x1bcb59)),_0x3851d6[_0x2d9494(0xd78)](_0x3851d6[_0x5392c2(0x34c)],_0x3851d6[_0x5392c2(0xbf2)](String,_0x1bcb59)));continue;case'2':new_text=new_text[_0x31b28b(0x860)+_0x2e2e6f(0x7c5)](_0x3851d6[_0x31b28b(0xd78)](_0x3851d6[_0x31b28b(0x594)],_0x3851d6[_0x5b8686(0x80a)](String,_0x1bcb59)),_0x3851d6[_0x2d9494(0xd78)](_0x3851d6[_0x2d9494(0x34c)],_0x3851d6[_0x31b28b(0x3b5)](String,_0x1bcb59)));continue;case'3':new_text=new_text[_0x5392c2(0x860)+_0x31b28b(0x7c5)](_0x3851d6[_0x31b28b(0x854)](_0x3851d6[_0x5b8686(0x2bf)],_0x3851d6[_0x2e2e6f(0x78c)](String,_0x1bcb59)),_0x3851d6[_0x2d9494(0x854)](_0x3851d6[_0x2d9494(0x34c)],_0x3851d6[_0x2d9494(0x3b5)](String,_0x1bcb59)));continue;case'4':new_text=new_text[_0x5392c2(0x860)+_0x2e2e6f(0x7c5)](_0x3851d6[_0x5392c2(0x854)](_0x3851d6[_0x2e2e6f(0x96a)],_0x3851d6[_0x2e2e6f(0x7bb)](String,_0x1bcb59)),_0x3851d6[_0x5392c2(0xcd9)](_0x3851d6[_0x5392c2(0x34c)],_0x3851d6[_0x5b8686(0x7eb)](String,_0x1bcb59)));continue;case'5':new_text=new_text[_0x5b8686(0x860)+_0x31b28b(0x7c5)](_0x3851d6[_0x31b28b(0x3b2)](_0x3851d6[_0x31b28b(0x668)],_0x3851d6[_0x5392c2(0x80a)](String,_0x1bcb59)),_0x3851d6[_0x31b28b(0xd78)](_0x3851d6[_0x2d9494(0x34c)],_0x3851d6[_0x2d9494(0x741)](String,_0x1bcb59)));continue;case'6':new_text=new_text[_0x2e2e6f(0x860)+_0x31b28b(0x7c5)](_0x3851d6[_0x2e2e6f(0x854)](_0x3851d6[_0x5b8686(0x763)],_0x3851d6[_0x2e2e6f(0xbf2)](String,_0x1bcb59)),_0x3851d6[_0x2d9494(0x854)](_0x3851d6[_0x5392c2(0x34c)],_0x3851d6[_0x2d9494(0x899)](String,_0x1bcb59)));continue;case'7':new_text=new_text[_0x31b28b(0x860)+_0x2e2e6f(0x7c5)](_0x3851d6[_0x2d9494(0x3b2)](_0x3851d6[_0x2d9494(0x893)],_0x3851d6[_0x2e2e6f(0x3b5)](String,_0x1bcb59)),_0x3851d6[_0x5392c2(0x854)](_0x3851d6[_0x5392c2(0x34c)],_0x3851d6[_0x31b28b(0x7eb)](String,_0x1bcb59)));continue;case'8':new_text=new_text[_0x5392c2(0x860)+_0x5392c2(0x7c5)](_0x3851d6[_0x31b28b(0xd78)](_0x3851d6[_0x2d9494(0x6ef)],_0x3851d6[_0x2e2e6f(0x9a5)](String,_0x1bcb59)),_0x3851d6[_0x2d9494(0x853)](_0x3851d6[_0x31b28b(0x34c)],_0x3851d6[_0x2e2e6f(0x7dc)](String,_0x1bcb59)));continue;case'9':new_text=new_text[_0x2d9494(0x860)+_0x5392c2(0x7c5)](_0x3851d6[_0x5392c2(0x857)](_0x3851d6[_0x5392c2(0x634)],_0x3851d6[_0x2d9494(0x899)](String,_0x1bcb59)),_0x3851d6[_0x2e2e6f(0x601)](_0x3851d6[_0x31b28b(0x34c)],_0x3851d6[_0x2d9494(0x741)](String,_0x1bcb59)));continue;case'10':new_text=new_text[_0x2e2e6f(0x860)+_0x5b8686(0x7c5)](_0x3851d6[_0x5392c2(0x601)](_0x3851d6[_0x2d9494(0xd0a)],_0x3851d6[_0x31b28b(0x80a)](String,_0x1bcb59)),_0x3851d6[_0x5b8686(0x51e)](_0x3851d6[_0x31b28b(0x34c)],_0x3851d6[_0x5b8686(0x742)](String,_0x1bcb59)));continue;case'11':new_text=new_text[_0x2e2e6f(0x860)+_0x31b28b(0x7c5)](_0x3851d6[_0x5392c2(0xd78)](_0x3851d6[_0x2e2e6f(0xac6)],_0x3851d6[_0x2d9494(0x80a)](String,_0x1bcb59)),_0x3851d6[_0x5392c2(0x83f)](_0x3851d6[_0x2d9494(0x34c)],_0x3851d6[_0x2d9494(0x5a7)](String,_0x1bcb59)));continue;case'12':new_text=new_text[_0x2e2e6f(0x860)+_0x31b28b(0x7c5)](_0x3851d6[_0x5392c2(0xb44)](_0x3851d6[_0x5392c2(0x668)],_0x3851d6[_0x2e2e6f(0xa1d)](String,_0x1bcb59)),_0x3851d6[_0x5392c2(0x83f)](_0x3851d6[_0x2d9494(0x34c)],_0x3851d6[_0x31b28b(0x2ca)](String,_0x1bcb59)));continue;case'13':new_text=new_text[_0x5b8686(0x860)+_0x5b8686(0x7c5)](_0x3851d6[_0x2d9494(0xb44)](_0x3851d6[_0x2d9494(0x6dd)],_0x3851d6[_0x5392c2(0x5d1)](String,_0x1bcb59)),_0x3851d6[_0x5392c2(0x51e)](_0x3851d6[_0x5b8686(0x34c)],_0x3851d6[_0x5b8686(0xe78)](String,_0x1bcb59)));continue;case'14':new_text=new_text[_0x5392c2(0x860)+_0x2d9494(0x7c5)](_0x3851d6[_0x2e2e6f(0x7c2)](_0x3851d6[_0x5b8686(0x4cd)],_0x3851d6[_0x2d9494(0x27c)](String,_0x1bcb59)),_0x3851d6[_0x2e2e6f(0x3b2)](_0x3851d6[_0x5392c2(0x34c)],_0x3851d6[_0x2e2e6f(0x371)](String,_0x1bcb59)));continue;case'15':new_text=new_text[_0x2d9494(0x860)+_0x5b8686(0x7c5)](_0x3851d6[_0x5b8686(0xa05)](_0x3851d6[_0x2e2e6f(0x85b)],_0x3851d6[_0x2d9494(0x741)](String,_0x1bcb59)),_0x3851d6[_0x5b8686(0xa05)](_0x3851d6[_0x5b8686(0x34c)],_0x3851d6[_0x5b8686(0x76e)](String,_0x1bcb59)));continue;case'16':new_text=new_text[_0x31b28b(0x860)+_0x2d9494(0x7c5)](_0x3851d6[_0x2d9494(0xd78)](_0x3851d6[_0x2d9494(0x643)],_0x3851d6[_0x5b8686(0x33d)](String,_0x1bcb59)),_0x3851d6[_0x31b28b(0x83f)](_0x3851d6[_0x5b8686(0x34c)],_0x3851d6[_0x2d9494(0xd81)](String,_0x1bcb59)));continue;case'17':new_text=new_text[_0x2e2e6f(0x860)+_0x2e2e6f(0x7c5)](_0x3851d6[_0x5392c2(0xcd9)](_0x3851d6[_0x5392c2(0xb21)],_0x3851d6[_0x31b28b(0x78c)](String,_0x1bcb59)),_0x3851d6[_0x2e2e6f(0xb79)](_0x3851d6[_0x31b28b(0x34c)],_0x3851d6[_0x5b8686(0xd81)](String,_0x1bcb59)));continue;case'18':new_text=new_text[_0x5392c2(0x860)+_0x31b28b(0x7c5)](_0x3851d6[_0x31b28b(0x467)](_0x3851d6[_0x2e2e6f(0x6dd)],_0x3851d6[_0x5b8686(0xe4f)](String,_0x1bcb59)),_0x3851d6[_0x31b28b(0x84f)](_0x3851d6[_0x2d9494(0x34c)],_0x3851d6[_0x2e2e6f(0x27c)](String,_0x1bcb59)));continue;case'19':new_text=new_text[_0x2e2e6f(0x860)+_0x31b28b(0x7c5)](_0x3851d6[_0x5b8686(0x83f)](_0x3851d6[_0x5b8686(0x475)],_0x3851d6[_0x2e2e6f(0x682)](String,_0x1bcb59)),_0x3851d6[_0x31b28b(0xb44)](_0x3851d6[_0x5b8686(0x34c)],_0x3851d6[_0x5b8686(0xe78)](String,_0x1bcb59)));continue;case'20':new_text=new_text[_0x2d9494(0x860)+_0x5b8686(0x7c5)](_0x3851d6[_0x2d9494(0xa06)](_0x3851d6[_0x5392c2(0xc02)],_0x3851d6[_0x2d9494(0xa09)](String,_0x1bcb59)),_0x3851d6[_0x5392c2(0x3b2)](_0x3851d6[_0x2d9494(0x34c)],_0x3851d6[_0x2e2e6f(0x76e)](String,_0x1bcb59)));continue;case'21':new_text=new_text[_0x31b28b(0x860)+_0x5b8686(0x7c5)](_0x3851d6[_0x31b28b(0x474)](_0x3851d6[_0x31b28b(0x8bc)],_0x3851d6[_0x2d9494(0x80a)](String,_0x1bcb59)),_0x3851d6[_0x5b8686(0x383)](_0x3851d6[_0x2d9494(0x34c)],_0x3851d6[_0x5b8686(0x7eb)](String,_0x1bcb59)));continue;case'22':new_text=new_text[_0x5392c2(0x860)+_0x5392c2(0x7c5)](_0x3851d6[_0x5392c2(0x854)](_0x3851d6[_0x2d9494(0x8fe)],_0x3851d6[_0x2e2e6f(0xbf2)](String,_0x1bcb59)),_0x3851d6[_0x5b8686(0x652)](_0x3851d6[_0x31b28b(0x34c)],_0x3851d6[_0x31b28b(0x9d4)](String,_0x1bcb59)));continue;case'23':new_text=new_text[_0x5392c2(0x860)+_0x2d9494(0x7c5)](_0x3851d6[_0x5b8686(0x7e3)](_0x3851d6[_0x2d9494(0x25f)],_0x3851d6[_0x2e2e6f(0xa7b)](String,_0x1bcb59)),_0x3851d6[_0x2e2e6f(0x9d7)](_0x3851d6[_0x31b28b(0x34c)],_0x3851d6[_0x31b28b(0x95b)](String,_0x1bcb59)));continue;case'24':new_text=new_text[_0x31b28b(0x860)+_0x5392c2(0x7c5)](_0x3851d6[_0x5b8686(0x467)](_0x3851d6[_0x31b28b(0x763)],_0x3851d6[_0x31b28b(0xacb)](String,_0x1bcb59)),_0x3851d6[_0x5b8686(0x601)](_0x3851d6[_0x5392c2(0x34c)],_0x3851d6[_0x31b28b(0x7bb)](String,_0x1bcb59)));continue;}break;}}}new_text=_0x3851d6[_0x2e2e6f(0x7eb)](replaceUrlWithFootnote,new_text);for(let _0x34ede5=prompt[_0x5392c2(0xb4b)+_0x5392c2(0x65a)][_0x5b8686(0x8a3)+'h'];_0x3851d6[_0x5b8686(0x6cd)](_0x34ede5,0x2*-0x5fd+-0x77+-0x1*-0xc71);--_0x34ede5){if(_0x3851d6[_0x31b28b(0x70d)](_0x3851d6[_0x2d9494(0xac1)],_0x3851d6[_0x5392c2(0xac1)]))new_text=new_text[_0x31b28b(0x860)+'ce'](_0x3851d6[_0x5b8686(0x83f)](_0x3851d6[_0x2e2e6f(0x3b9)],_0x3851d6[_0x2e2e6f(0x7eb)](String,_0x34ede5)),prompt[_0x2e2e6f(0xb4b)+_0x31b28b(0x65a)][_0x34ede5]),new_text=new_text[_0x2e2e6f(0x860)+'ce'](_0x3851d6[_0x5392c2(0x601)](_0x3851d6[_0x5b8686(0x89a)],_0x3851d6[_0x2e2e6f(0xade)](String,_0x34ede5)),prompt[_0x31b28b(0xb4b)+_0x5392c2(0x65a)][_0x34ede5]),new_text=new_text[_0x2e2e6f(0x860)+'ce'](_0x3851d6[_0x5392c2(0xcfe)](_0x3851d6[_0x2e2e6f(0xccf)],_0x3851d6[_0x31b28b(0x7dc)](String,_0x34ede5)),prompt[_0x2d9494(0xb4b)+_0x2d9494(0x65a)][_0x34ede5]);else while(_0x3851d6[_0x2d9494(0x4ff)](_0x3851d6[_0x2d9494(0xa7f)](_0x4e6677,_0x43f284),_0x3a0ef7)){_0x5ef9e1[_0x2d9494(0x586)]();}}return new_text=new_text[_0x5392c2(0x860)+_0x31b28b(0x7c5)]('[]',''),new_text=new_text[_0x5b8686(0x860)+_0x31b28b(0x7c5)]('((','('),new_text=new_text[_0x31b28b(0x860)+_0x31b28b(0x7c5)]('))',')'),new_text=new_text[_0x2d9494(0x860)+_0x5b8686(0x7c5)]('(\x0a','\x0a'),new_text;}function chatmore(){const _0x59abb3=_0x38e31a,_0x50c9f5=_0x2ebedc,_0x11e3ae=_0x45052c,_0x435f8a=_0x4e700d,_0x39e378=_0x45052c,_0x6f88d3={'OkHtr':_0x59abb3(0xc2a)+':','LGixh':function(_0x261557,_0x3df0d9){return _0x261557!==_0x3df0d9;},'ubLzw':_0x59abb3(0x48f),'eUDiE':function(_0x4e2382,_0xa234ff){return _0x4e2382>_0xa234ff;},'EqTjk':function(_0x38f0a2,_0x58b4f7){return _0x38f0a2(_0x58b4f7);},'qiSYn':_0x59abb3(0xd61)+_0x435f8a(0x64d),'cgWmC':function(_0x410306,_0x3ebfec){return _0x410306+_0x3ebfec;},'xcclE':_0x50c9f5(0xd1f)+_0x11e3ae(0x819)+_0x50c9f5(0x85e)+_0x50c9f5(0x687)+_0x435f8a(0x81c)+_0x435f8a(0x52a)+_0x11e3ae(0x2dc)+_0x59abb3(0x551)+_0x39e378(0xdd1)+_0x11e3ae(0x7ab)+_0x11e3ae(0x492),'ptrTP':_0x59abb3(0x82f)+_0x39e378(0xbf5),'AAsUO':function(_0x3b2f59,_0x576b2f){return _0x3b2f59!==_0x576b2f;},'badzY':_0x59abb3(0xab6),'Xhyji':_0x435f8a(0xe16),'gegcG':_0x59abb3(0x9a4),'QQtgb':_0x39e378(0x3df),'kBFJA':function(_0x15e2b7,_0xb90bb4){return _0x15e2b7+_0xb90bb4;},'WdnBq':function(_0x1c48b5,_0x3ce219){return _0x1c48b5+_0x3ce219;},'GictW':function(_0x15dec3,_0x3668ef){return _0x15dec3+_0x3668ef;},'rBCas':_0x50c9f5(0xd61),'nWwbg':_0x50c9f5(0x7cd),'jlEjd':_0x39e378(0x507)+'','pNATR':_0x39e378(0x6f4)+_0x11e3ae(0x2db)+_0x50c9f5(0xb0c)+_0x59abb3(0x700)+_0x11e3ae(0xb86)+_0x50c9f5(0x7c8)+_0x39e378(0x251)+_0x50c9f5(0xd99)+_0x11e3ae(0x61d)+_0x39e378(0x651)+_0x435f8a(0xce4)+_0x39e378(0xd94)+_0x435f8a(0x434),'cFXYm':function(_0x1c2f9e,_0x334150){return _0x1c2f9e!=_0x334150;},'RLzJG':function(_0x56835d,_0x3f01d5,_0x38c70e){return _0x56835d(_0x3f01d5,_0x38c70e);},'MAokN':_0x50c9f5(0x959)+_0x59abb3(0x33b)+_0x50c9f5(0x1c5)+_0x11e3ae(0x330)+_0x39e378(0xb72)+_0x50c9f5(0x4a5)},_0x2e8449={'method':_0x6f88d3[_0x50c9f5(0xdc6)],'headers':headers,'body':_0x6f88d3[_0x50c9f5(0xd84)](b64EncodeUnicode,JSON[_0x435f8a(0xb00)+_0x39e378(0xbb2)]({'messages':[{'role':_0x6f88d3[_0x11e3ae(0xb2e)],'content':_0x6f88d3[_0x39e378(0x6f3)](_0x6f88d3[_0x39e378(0xe6d)](_0x6f88d3[_0x50c9f5(0xcc3)](_0x6f88d3[_0x11e3ae(0x6f3)](document[_0x11e3ae(0x9f4)+_0x39e378(0xc14)+_0x39e378(0xa51)](_0x6f88d3[_0x50c9f5(0xaae)])[_0x59abb3(0x6e5)+_0x59abb3(0x3cd)][_0x50c9f5(0x860)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x59abb3(0x860)+'ce'](/<hr.*/gs,'')[_0x59abb3(0x860)+'ce'](/<[^>]+>/g,'')[_0x39e378(0x860)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x6f88d3[_0x435f8a(0xdd0)]),original_search_query),_0x6f88d3[_0x59abb3(0x5df)])},{'role':_0x6f88d3[_0x11e3ae(0xb2e)],'content':_0x6f88d3[_0x50c9f5(0x827)]}][_0x39e378(0xbe4)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x6f88d3[_0x39e378(0x6a6)](document[_0x435f8a(0x9f4)+_0x11e3ae(0xc14)+_0x435f8a(0xa51)](_0x6f88d3[_0x39e378(0x589)])[_0x59abb3(0x6e5)+_0x39e378(0x3cd)],''))return;_0x6f88d3[_0x50c9f5(0x779)](fetch,_0x6f88d3[_0x50c9f5(0x4d4)],_0x2e8449)[_0x59abb3(0x8ea)](_0x19ee79=>_0x19ee79[_0x59abb3(0x8bd)]())[_0x50c9f5(0x8ea)](_0x50181a=>{const _0x18ae88=_0x435f8a,_0x4f49ec=_0x59abb3,_0xb2888d=_0x11e3ae,_0x30714c=_0x11e3ae,_0x17ada7=_0x50c9f5,_0x2a7bcc={'LWGLw':_0x6f88d3[_0x18ae88(0xe11)],'ZeSRn':function(_0x221af0,_0x3c893e){const _0x5ead76=_0x18ae88;return _0x6f88d3[_0x5ead76(0x522)](_0x221af0,_0x3c893e);},'cOSOF':_0x6f88d3[_0x18ae88(0xc3d)],'jcQTm':function(_0x221032,_0x55816c){const _0x4f96f2=_0x18ae88;return _0x6f88d3[_0x4f96f2(0x61c)](_0x221032,_0x55816c);},'aXXEB':function(_0x3c0d3c,_0xb9fa41){const _0x160894=_0x4f49ec;return _0x6f88d3[_0x160894(0xd84)](_0x3c0d3c,_0xb9fa41);},'RgwQL':_0x6f88d3[_0xb2888d(0x589)],'FXYCd':function(_0x14dffc,_0x292c35){const _0x2e21f0=_0x18ae88;return _0x6f88d3[_0x2e21f0(0xa25)](_0x14dffc,_0x292c35);},'JdudM':function(_0x4f9422,_0x135cdf){const _0x162a5a=_0x4f49ec;return _0x6f88d3[_0x162a5a(0xa25)](_0x4f9422,_0x135cdf);},'mDHfZ':_0x6f88d3[_0xb2888d(0x2d0)],'DfkDk':function(_0xd14cae,_0x303c9a){const _0x5c725a=_0x4f49ec;return _0x6f88d3[_0x5c725a(0xd84)](_0xd14cae,_0x303c9a);},'jpPmP':_0x6f88d3[_0x30714c(0x87c)]};if(_0x6f88d3[_0x4f49ec(0xdb1)](_0x6f88d3[_0x4f49ec(0xce1)],_0x6f88d3[_0xb2888d(0xb36)]))JSON[_0x18ae88(0xcc6)](_0x50181a[_0x18ae88(0xaed)+'es'][0x77*0x29+-0x1b44+0x835][_0xb2888d(0xd53)+'ge'][_0x30714c(0x6d7)+'nt'][_0xb2888d(0x860)+_0x30714c(0x7c5)]('\x0a',''))[_0x18ae88(0x938)+'ch'](_0xfa62d5=>{const _0x1d1ce3=_0x4f49ec,_0x121d85=_0x30714c,_0x1bca9c=_0xb2888d,_0x15974c=_0x30714c,_0x26dce0=_0x4f49ec,_0x11447e={};_0x11447e[_0x1d1ce3(0xbfb)]=_0x2a7bcc[_0x121d85(0x1e2)];const _0x120385=_0x11447e;if(_0x2a7bcc[_0x1d1ce3(0x913)](_0x2a7bcc[_0x121d85(0xccd)],_0x2a7bcc[_0x1d1ce3(0xccd)]))_0x15dff4[_0x121d85(0x292)](_0x120385[_0x121d85(0xbfb)],_0x43fa83);else{if(_0x2a7bcc[_0x26dce0(0xaee)](_0x2a7bcc[_0x121d85(0x2cf)](String,_0xfa62d5)[_0x1bca9c(0x8a3)+'h'],0x14f4+0x2c*-0x26+-0xe67))document[_0x121d85(0x9f4)+_0x26dce0(0xc14)+_0x15974c(0xa51)](_0x2a7bcc[_0x26dce0(0xe0b)])[_0x26dce0(0x6e5)+_0x1bca9c(0x3cd)]+=_0x2a7bcc[_0x1bca9c(0x98a)](_0x2a7bcc[_0x26dce0(0xa74)](_0x2a7bcc[_0x1bca9c(0xb8b)],_0x2a7bcc[_0x121d85(0x679)](String,_0xfa62d5)),_0x2a7bcc[_0x26dce0(0x79b)]);}});else{const _0x20f765=_0x302c3c?function(){const _0x27720f=_0x4f49ec;if(_0x57ec4c){const _0x3cf105=_0x463107[_0x27720f(0xcf2)](_0x10ff87,arguments);return _0x57f3f0=null,_0x3cf105;}}:function(){};return _0x15fa0d=![],_0x20f765;}})[_0x50c9f5(0xc90)](_0x54d927=>console[_0x59abb3(0x292)](_0x54d927)),chatTextRawPlusComment=_0x6f88d3[_0x59abb3(0x6f3)](chatTextRaw,'\x0a\x0a'),text_offset=-(-0x10ed+0x1*0x383+0x1*0xd6b);}let chatTextRaw='',text_offset=-(-0x1c5+-0x4*0x57a+0x17ae);const _0x4adee7={};_0x4adee7[_0x45052c(0xc79)+_0x38e31a(0x884)+'pe']=_0x45052c(0xd8a)+_0x2ebedc(0x655)+_0x4e700d(0x5f2)+'n';const headers=_0x4adee7;let prompt=JSON[_0x34d5ad(0xcc6)](atob(document[_0x2ebedc(0x9f4)+_0x34d5ad(0xc14)+_0x38e31a(0xa51)](_0x38e31a(0xc8d)+'pt')[_0x38e31a(0x4ba)+_0x34d5ad(0x342)+'t']));chatTextRawIntro='',text_offset=-(0xe9*0x3+0x1947*0x1+-0x1c01);const _0x3f84e2={};_0x3f84e2[_0x4e700d(0x99e)]=_0x38e31a(0x6bb)+'m',_0x3f84e2[_0x34d5ad(0x6d7)+'nt']=_0x34d5ad(0x410)+_0x38e31a(0xa69)+_0x2ebedc(0x7a0)+_0x2ebedc(0xe07)+_0x34d5ad(0x3ba)+_0x38e31a(0xb57)+original_search_query+(_0x34d5ad(0xddc)+_0x38e31a(0x8e6)+_0x45052c(0x2f9)+'');const _0x4e6bee={};_0x4e6bee[_0x2ebedc(0x99e)]=_0x2ebedc(0x3df),_0x4e6bee[_0x4e700d(0x6d7)+'nt']=_0x45052c(0x807)+_0x45052c(0x90c)+_0x45052c(0x96e)+_0x2ebedc(0xac4)+_0x4e700d(0x4c8)+'';const optionsIntro={'method':_0x45052c(0x9a4),'headers':headers,'body':b64EncodeUnicode(JSON[_0x34d5ad(0xb00)+_0x34d5ad(0xbb2)]({'messages':[_0x3f84e2,_0x4e6bee][_0x2ebedc(0xbe4)+'t'](add_system),'max_tokens':0x400,'temperature':0.2,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0.5,'stream':!![]}))};fetch(_0x2ebedc(0x959)+_0x4e700d(0x33b)+_0x38e31a(0x1c5)+_0x4e700d(0x330)+_0x45052c(0xb72)+_0x45052c(0x4a5),optionsIntro)[_0x2ebedc(0x8ea)](_0x327ad8=>{const _0x8b5adf=_0x2ebedc,_0x46b12c=_0x4e700d,_0x51f583=_0x34d5ad,_0x8b5666=_0x34d5ad,_0x1a7f20=_0x34d5ad,_0x16fc93={'jemcI':_0x8b5adf(0x5cc),'qgXLy':function(_0x475285,_0xbe0100){return _0x475285+_0xbe0100;},'IHuCJ':_0x46b12c(0xaed)+'es','OKxIK':function(_0x18f78a,_0x14840a){return _0x18f78a>_0x14840a;},'mISzd':function(_0xf4cedc,_0x2b87e2){return _0xf4cedc==_0x2b87e2;},'tYequ':_0x46b12c(0x61e)+']','PxWcl':function(_0x1a20a8,_0x24dc1f){return _0x1a20a8===_0x24dc1f;},'MpIac':_0x46b12c(0x79f),'lHBfH':_0x51f583(0xab3)+_0x1a7f20(0x929),'mbeTf':_0x1a7f20(0x46f)+_0x46b12c(0xa3b)+_0x46b12c(0xbce),'TLsLe':function(_0x1333ae){return _0x1333ae();},'VpEMb':_0x46b12c(0x46f)+_0x1a7f20(0x667),'mPZtB':_0x8b5666(0x378),'jTucB':_0x1a7f20(0xdb4),'Bmblu':function(_0x256599,_0x118fac){return _0x256599!==_0x118fac;},'CgtlI':_0x8b5adf(0x271),'VVSOy':function(_0x1cb8be,_0xc63a79,_0x13f81c){return _0x1cb8be(_0xc63a79,_0x13f81c);},'VeZAY':function(_0x48c015,_0xcf7305){return _0x48c015(_0xcf7305);},'cPgJP':_0x8b5666(0x422),'WMgkW':_0x8b5666(0xc2a)+':','ufUYR':_0x1a7f20(0xd61)+_0x51f583(0x64d),'DwqCu':_0x51f583(0x9a4),'NaGjv':_0x8b5666(0x5a6)+_0x1a7f20(0xc28),'uKTlV':_0x1a7f20(0xd61),'smuKn':_0x8b5666(0x3df),'fNAKA':_0x8b5adf(0x880)+'','rRhIS':_0x51f583(0xd5d)+_0x51f583(0x7b4)+_0x8b5666(0xdaf)+_0x1a7f20(0xb80)+_0x8b5666(0x230)+_0x8b5666(0x295)+_0x8b5adf(0xe39)+_0x46b12c(0x2e3),'NRGMg':_0x8b5666(0x959)+_0x46b12c(0x33b)+_0x8b5adf(0x1c5)+_0x51f583(0x330)+_0x51f583(0xb72)+_0x46b12c(0x4a5),'HVFVA':function(_0x414d11,_0x2138be,_0x494312){return _0x414d11(_0x2138be,_0x494312);},'aZHed':function(_0xd7a953,_0x5a2a7e){return _0xd7a953==_0x5a2a7e;},'Sqwwf':function(_0x544ce2,_0x1ebc7d){return _0x544ce2(_0x1ebc7d);},'SOzFH':function(_0x2bdaa3,_0x1441bc){return _0x2bdaa3+_0x1441bc;},'WjkPT':function(_0x4b1736,_0x94a305){return _0x4b1736>_0x94a305;},'nRrCH':function(_0x400583,_0x42ec67,_0x218bae){return _0x400583(_0x42ec67,_0x218bae);},'Bwnwh':_0x46b12c(0x46f)+_0x8b5666(0x227)},_0x4afafd=_0x327ad8[_0x8b5666(0x6de)][_0x8b5adf(0xcd3)+_0x46b12c(0x9b4)]();let _0x577a06='',_0x7ae580='';_0x4afafd[_0x51f583(0xa47)]()[_0x8b5adf(0x8ea)](function _0x5303d3({done:_0x47222f,value:_0x14a85d}){const _0xfe7074=_0x8b5666,_0x51434e=_0x46b12c,_0x51b06e=_0x1a7f20,_0xc72269=_0x51f583,_0xdd0b68=_0x46b12c;if(_0x47222f)return;const _0x47c990=new TextDecoder(_0x16fc93[_0xfe7074(0xb0b)])[_0x51434e(0x4cf)+'e'](_0x14a85d);return _0x47c990[_0x51b06e(0x26c)]()[_0x51b06e(0xa2f)]('\x0a')[_0x51434e(0x938)+'ch'](function(_0x3d6698){const _0x2b83d2=_0xfe7074,_0x1c9115=_0xc72269,_0x5dad35=_0xdd0b68,_0x8335c8=_0x51434e,_0x355c94=_0xdd0b68,_0xe5ecf={'PYiQB':_0x16fc93[_0x2b83d2(0xb0b)],'JtbVu':function(_0x6364af,_0x15a775){const _0x14ca98=_0x2b83d2;return _0x16fc93[_0x14ca98(0xc44)](_0x6364af,_0x15a775);},'SHASw':_0x16fc93[_0x2b83d2(0x722)],'vrMqX':function(_0x4e5347,_0x40748c){const _0x18e723=_0x1c9115;return _0x16fc93[_0x18e723(0x7b0)](_0x4e5347,_0x40748c);},'LcPpa':function(_0x254f16,_0xd9796e){const _0x41146f=_0x1c9115;return _0x16fc93[_0x41146f(0x78d)](_0x254f16,_0xd9796e);},'gmlha':_0x16fc93[_0x2b83d2(0xa61)],'whMLL':function(_0x442c05,_0x315ac3){const _0x132369=_0x5dad35;return _0x16fc93[_0x132369(0xd3d)](_0x442c05,_0x315ac3);},'fEVZw':_0x16fc93[_0x8335c8(0xd0d)],'IJfpU':_0x16fc93[_0x5dad35(0xbb1)],'EEqVy':_0x16fc93[_0x2b83d2(0x3b8)],'jYizQ':function(_0x2a98ad){const _0x590a18=_0x1c9115;return _0x16fc93[_0x590a18(0xad4)](_0x2a98ad);},'VLsNM':_0x16fc93[_0x2b83d2(0x593)],'IWYju':_0x16fc93[_0x5dad35(0x92d)],'VeZRq':_0x16fc93[_0x8335c8(0xba8)],'vfIUI':function(_0x160d9f,_0x530f2f){const _0x138cec=_0x1c9115;return _0x16fc93[_0x138cec(0x940)](_0x160d9f,_0x530f2f);},'zYoiA':_0x16fc93[_0x1c9115(0x367)],'dnEPR':function(_0x9da66c,_0x34fd97,_0x169dd2){const _0x4d6d5a=_0x1c9115;return _0x16fc93[_0x4d6d5a(0xd9f)](_0x9da66c,_0x34fd97,_0x169dd2);},'pLVlL':function(_0x3881f9,_0x52789b){const _0x423263=_0x1c9115;return _0x16fc93[_0x423263(0x768)](_0x3881f9,_0x52789b);},'FmiWT':_0x16fc93[_0x8335c8(0x617)],'JHKWK':_0x16fc93[_0x2b83d2(0x5e1)],'AfzPy':_0x16fc93[_0x1c9115(0xc60)],'wBBDr':_0x16fc93[_0x5dad35(0x40a)],'fWntf':_0x16fc93[_0x1c9115(0x939)],'NUZAe':_0x16fc93[_0x2b83d2(0x7f9)],'hnUEa':_0x16fc93[_0x1c9115(0x2ac)],'llfVF':_0x16fc93[_0x5dad35(0xd66)],'CYhmG':_0x16fc93[_0x1c9115(0x935)],'tIizR':_0x16fc93[_0x1c9115(0x8f6)],'EmYhT':function(_0x144893,_0x49515b,_0x422c1a){const _0x56b5fa=_0x355c94;return _0x16fc93[_0x56b5fa(0xbca)](_0x144893,_0x49515b,_0x422c1a);}};_0x577a06='';if(_0x16fc93[_0x8335c8(0x7b0)](_0x3d6698[_0x5dad35(0x8a3)+'h'],-0x3bf*0x3+0x95b+0x7a*0x4))_0x577a06=_0x3d6698[_0x355c94(0x3bc)](-0x13bd+-0x1*0x1e29+-0x5*-0x9fc);if(_0x16fc93[_0x5dad35(0x257)](_0x577a06,_0x16fc93[_0x355c94(0xa61)])){text_offset=-(-0x71*0x25+0xaf7+-0x7d*-0xb);const _0xcdf3c5={'method':_0x16fc93[_0x355c94(0x40a)],'headers':headers,'body':_0x16fc93[_0x5dad35(0xb34)](b64EncodeUnicode,JSON[_0x355c94(0xb00)+_0x8335c8(0xbb2)](prompt[_0x355c94(0xc96)]))};_0x16fc93[_0x355c94(0xd9f)](fetch,_0x16fc93[_0x1c9115(0x8f6)],_0xcdf3c5)[_0x355c94(0x8ea)](_0x4a4b0b=>{const _0x2f40b9=_0x355c94,_0x57261c=_0x5dad35,_0x31b9cd=_0x5dad35,_0x1f5b80=_0x8335c8,_0xd7cc58=_0x355c94,_0x3f9967={'zgkiS':_0xe5ecf[_0x2f40b9(0x717)],'mQXlR':function(_0x2c945d,_0x25c4b7){const _0x4202fe=_0x2f40b9;return _0xe5ecf[_0x4202fe(0x814)](_0x2c945d,_0x25c4b7);},'ghamR':_0xe5ecf[_0x2f40b9(0x285)],'ehXvF':function(_0x5a9e38,_0x84f5ad){const _0x4beb6f=_0x2f40b9;return _0xe5ecf[_0x4beb6f(0x518)](_0x5a9e38,_0x84f5ad);},'AiAWc':function(_0x41e548,_0x1b96a3){const _0x16be20=_0x57261c;return _0xe5ecf[_0x16be20(0x736)](_0x41e548,_0x1b96a3);},'dxpZf':_0xe5ecf[_0x2f40b9(0x1f7)],'dZXHb':function(_0xbdef9e,_0x259e9e){const _0x21e2e9=_0x2f40b9;return _0xe5ecf[_0x21e2e9(0xa0e)](_0xbdef9e,_0x259e9e);},'uvHro':_0xe5ecf[_0x31b9cd(0xa5a)],'kadaK':_0xe5ecf[_0x57261c(0x8ed)],'RjugK':_0xe5ecf[_0x31b9cd(0xae9)],'BaSmT':function(_0x35a8d9){const _0x5e7f9e=_0x31b9cd;return _0xe5ecf[_0x5e7f9e(0x91a)](_0x35a8d9);},'rqCsO':_0xe5ecf[_0xd7cc58(0x9fc)],'ZXzOH':_0xe5ecf[_0x1f5b80(0xe57)],'bnvMu':_0xe5ecf[_0x31b9cd(0x75c)],'bDZtV':function(_0x4439c3,_0x900c67){const _0x4e40b9=_0x57261c;return _0xe5ecf[_0x4e40b9(0xc6b)](_0x4439c3,_0x900c67);},'XaRnE':_0xe5ecf[_0xd7cc58(0xd34)],'udTEG':function(_0x28cb4b,_0x4d7e93,_0x56f2dc){const _0x27140e=_0xd7cc58;return _0xe5ecf[_0x27140e(0xe08)](_0x28cb4b,_0x4d7e93,_0x56f2dc);},'QgtoG':function(_0x1a6129,_0x119fa2){const _0x16849a=_0x2f40b9;return _0xe5ecf[_0x16849a(0x751)](_0x1a6129,_0x119fa2);},'JqOzz':_0xe5ecf[_0x57261c(0x372)],'YJoaD':_0xe5ecf[_0x31b9cd(0xa64)],'VGysf':function(_0x51e69e,_0x50ff02){const _0x20a702=_0x57261c;return _0xe5ecf[_0x20a702(0x736)](_0x51e69e,_0x50ff02);},'fUGPQ':_0xe5ecf[_0x1f5b80(0xaf3)],'iAKmu':_0xe5ecf[_0x1f5b80(0xe4c)],'ASFtc':_0xe5ecf[_0x31b9cd(0x559)],'skksl':_0xe5ecf[_0x31b9cd(0xa6d)],'dhAjZ':_0xe5ecf[_0x31b9cd(0x275)],'BRVOl':_0xe5ecf[_0x2f40b9(0xbf8)],'FGErp':_0xe5ecf[_0x31b9cd(0x22d)],'nfdeO':_0xe5ecf[_0x31b9cd(0x2c8)],'TRyCp':function(_0x1ef2ca,_0x1c000a){const _0x1818e9=_0x1f5b80;return _0xe5ecf[_0x1818e9(0x518)](_0x1ef2ca,_0x1c000a);},'DAaYz':function(_0x36e96f,_0xf3de89,_0x1725f6){const _0x1008de=_0x1f5b80;return _0xe5ecf[_0x1008de(0x46b)](_0x36e96f,_0xf3de89,_0x1725f6);},'jYSLg':function(_0x454c4c,_0x199ca5){const _0x27ab70=_0x2f40b9;return _0xe5ecf[_0x27ab70(0x751)](_0x454c4c,_0x199ca5);}},_0x5b6396=_0x4a4b0b[_0x2f40b9(0x6de)][_0x2f40b9(0xcd3)+_0xd7cc58(0x9b4)]();let _0x573c71='',_0x697e3='';_0x5b6396[_0x2f40b9(0xa47)]()[_0x31b9cd(0x8ea)](function _0x5de267({done:_0x4f9351,value:_0x229406}){const _0x25cd9d=_0x2f40b9,_0x56717d=_0x57261c,_0x229759=_0xd7cc58,_0x57182d=_0x1f5b80,_0x4c9580=_0x1f5b80,_0x23b715={'iECgq':_0x3f9967[_0x25cd9d(0xd4e)],'NjNgB':function(_0x4db47e,_0x25015a){const _0x52a824=_0x25cd9d;return _0x3f9967[_0x52a824(0x32f)](_0x4db47e,_0x25015a);},'dSqAH':_0x3f9967[_0x56717d(0x3ac)],'YCrBL':function(_0x218660,_0x56a47a){const _0x810581=_0x56717d;return _0x3f9967[_0x810581(0x923)](_0x218660,_0x56a47a);},'gvuaG':function(_0xa81274,_0x38531e){const _0x20b9a9=_0x25cd9d;return _0x3f9967[_0x20b9a9(0x37d)](_0xa81274,_0x38531e);},'YXFIl':_0x3f9967[_0x56717d(0x7a7)],'pYbVE':function(_0x52e4dc,_0x4c4922){const _0x45c4cf=_0x56717d;return _0x3f9967[_0x45c4cf(0xc6f)](_0x52e4dc,_0x4c4922);},'LThmY':_0x3f9967[_0x25cd9d(0xaca)],'glWfb':_0x3f9967[_0x57182d(0x503)],'QzVGN':_0x3f9967[_0x229759(0xd5c)],'cHqbV':function(_0x211fe7){const _0x33b984=_0x57182d;return _0x3f9967[_0x33b984(0xe50)](_0x211fe7);},'idShl':_0x3f9967[_0x4c9580(0xa9b)],'wfBUE':_0x3f9967[_0x4c9580(0x7a9)],'lCIGG':_0x3f9967[_0x25cd9d(0x9be)],'UXiBz':function(_0x53c006,_0x450f1d){const _0x9821fe=_0x57182d;return _0x3f9967[_0x9821fe(0x81e)](_0x53c006,_0x450f1d);},'VppwK':_0x3f9967[_0x229759(0xcf9)],'RAvQq':function(_0x3fd391,_0x49d0e5,_0xfb9a20){const _0x2b287a=_0x4c9580;return _0x3f9967[_0x2b287a(0x5ab)](_0x3fd391,_0x49d0e5,_0xfb9a20);},'JrbUZ':function(_0x3fc5ae,_0x785736){const _0x522057=_0x25cd9d;return _0x3f9967[_0x522057(0x2b1)](_0x3fc5ae,_0x785736);},'hWonJ':_0x3f9967[_0x4c9580(0xd02)],'RCeLh':_0x3f9967[_0x25cd9d(0x7b9)],'RdeLz':function(_0x38946b,_0x42607a){const _0x57c638=_0x25cd9d;return _0x3f9967[_0x57c638(0xc67)](_0x38946b,_0x42607a);},'MVySr':_0x3f9967[_0x229759(0xe20)],'GqauR':function(_0x587d17){const _0x307bd0=_0x4c9580;return _0x3f9967[_0x307bd0(0xe50)](_0x587d17);},'cWXEB':_0x3f9967[_0x56717d(0xab8)],'lXqUJ':_0x3f9967[_0x57182d(0xbf3)],'kfXms':_0x3f9967[_0x57182d(0xdda)],'Hpfdr':_0x3f9967[_0x57182d(0x9e5)],'yMdpR':_0x3f9967[_0x56717d(0xcb0)],'qCRpg':_0x3f9967[_0x25cd9d(0x5d9)],'YtblX':function(_0x49eaee,_0x11df9b,_0x40b3dc){const _0x29e797=_0x25cd9d;return _0x3f9967[_0x29e797(0x5ab)](_0x49eaee,_0x11df9b,_0x40b3dc);},'MTdmI':_0x3f9967[_0x25cd9d(0x87d)],'gZOxc':function(_0x5d4e87,_0x26533e){const _0x2c0218=_0x56717d;return _0x3f9967[_0x2c0218(0x6d2)](_0x5d4e87,_0x26533e);},'UIQAE':function(_0x28b0c6,_0x374846,_0x570793){const _0x57ce89=_0x56717d;return _0x3f9967[_0x57ce89(0x72a)](_0x28b0c6,_0x374846,_0x570793);},'fssvZ':function(_0x4296e3,_0x2f6228){const _0x411bfd=_0x57182d;return _0x3f9967[_0x411bfd(0x93a)](_0x4296e3,_0x2f6228);}};if(_0x4f9351)return;const _0x2320cc=new TextDecoder(_0x3f9967[_0x229759(0xd4e)])[_0x56717d(0x4cf)+'e'](_0x229406);return _0x2320cc[_0x25cd9d(0x26c)]()[_0x25cd9d(0xa2f)]('\x0a')[_0x229759(0x938)+'ch'](function(_0x4d7941){const _0x53c191=_0x57182d,_0x1b0b77=_0x57182d,_0x34e960=_0x4c9580,_0x49796d=_0x56717d,_0x26b002=_0x25cd9d,_0xb3db65={'WzHGj':_0x23b715[_0x53c191(0x8b1)],'sWKcP':function(_0x541fe4,_0x1a48f9){const _0x30a145=_0x53c191;return _0x23b715[_0x30a145(0x1fb)](_0x541fe4,_0x1a48f9);},'mefWT':_0x23b715[_0x53c191(0xb76)],'BIinK':function(_0x56b4e7,_0x409875){const _0xa9b799=_0x53c191;return _0x23b715[_0xa9b799(0xb09)](_0x56b4e7,_0x409875);},'XBRXg':function(_0x1a5ead,_0x5e2d3d){const _0xaa6eb1=_0x1b0b77;return _0x23b715[_0xaa6eb1(0x6da)](_0x1a5ead,_0x5e2d3d);},'wmaZI':_0x23b715[_0x1b0b77(0x510)],'CggFo':function(_0x4dc897,_0x148a02){const _0x35b78b=_0x1b0b77;return _0x23b715[_0x35b78b(0x4b8)](_0x4dc897,_0x148a02);},'DtMAK':_0x23b715[_0x49796d(0xd67)],'VKwyV':_0x23b715[_0x1b0b77(0x578)],'fgaMx':_0x23b715[_0x1b0b77(0x329)],'hARNO':function(_0x469868){const _0x29066b=_0x26b002;return _0x23b715[_0x29066b(0xb6e)](_0x469868);},'sekbt':_0x23b715[_0x1b0b77(0x8ae)],'COjZo':_0x23b715[_0x53c191(0xd44)],'GiJcj':_0x23b715[_0x53c191(0x716)],'BLPFG':function(_0x30eecd,_0x4f7ca1){const _0x1effea=_0x53c191;return _0x23b715[_0x1effea(0x82d)](_0x30eecd,_0x4f7ca1);},'fzxHI':_0x23b715[_0x53c191(0x2b3)],'aeaZf':function(_0x33b6af,_0x7e7da,_0x55f6c8){const _0x3d2b35=_0x49796d;return _0x23b715[_0x3d2b35(0xbdb)](_0x33b6af,_0x7e7da,_0x55f6c8);},'CzOQu':function(_0x2e4456,_0x215661){const _0x3d6336=_0x26b002;return _0x23b715[_0x3d6336(0xc2c)](_0x2e4456,_0x215661);},'ZYuIm':_0x23b715[_0x34e960(0xd93)],'nFCbk':_0x23b715[_0x26b002(0xe12)]};_0x573c71='';if(_0x23b715[_0x49796d(0xb09)](_0x4d7941[_0x53c191(0x8a3)+'h'],0x286*0xa+0x1bc5+-0x34fb))_0x573c71=_0x4d7941[_0x1b0b77(0x3bc)](0x2654+-0x19*0xf3+-0xe93);if(_0x23b715[_0x49796d(0x8a5)](_0x573c71,_0x23b715[_0x26b002(0x510)])){document[_0x1b0b77(0x9f4)+_0x34e960(0xc14)+_0x34e960(0xa51)](_0x23b715[_0x26b002(0xe59)])[_0x26b002(0x6e5)+_0x53c191(0x3cd)]='',_0x23b715[_0x34e960(0x6f7)](chatmore);const _0x38e2c5={'method':_0x23b715[_0x1b0b77(0xb68)],'headers':headers,'body':_0x23b715[_0x1b0b77(0xc2c)](b64EncodeUnicode,JSON[_0x53c191(0xb00)+_0x1b0b77(0xbb2)]({'messages':[{'role':_0x23b715[_0x34e960(0x216)],'content':_0x23b715[_0x26b002(0x1fb)](document[_0x49796d(0x9f4)+_0x49796d(0xc14)+_0x53c191(0xa51)](_0x23b715[_0x53c191(0x25d)])[_0x34e960(0x6e5)+_0x49796d(0x3cd)][_0x34e960(0x860)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x26b002(0x860)+'ce'](/<hr.*/gs,'')[_0x49796d(0x860)+'ce'](/<[^>]+>/g,'')[_0x53c191(0x860)+'ce'](/\n\n/g,'\x0a'),'\x0a')},{'role':_0x23b715[_0x1b0b77(0x86d)],'content':_0x23b715[_0x1b0b77(0x1fb)](_0x23b715[_0x1b0b77(0x1fb)](_0x23b715[_0x34e960(0x928)],original_search_query),_0x23b715[_0x53c191(0x566)])}][_0x26b002(0xbe4)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.5,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':!![]}))};_0x23b715[_0x1b0b77(0x20a)](fetch,_0x23b715[_0x53c191(0xb4f)],_0x38e2c5)[_0x1b0b77(0x8ea)](_0x28e3e3=>{const _0x133aad=_0x26b002,_0x455f8f=_0x49796d,_0x5b5ed9=_0x34e960,_0x2f1b28=_0x53c191,_0x2180c9=_0x34e960,_0x541d1a={'nbJAp':function(_0x4e86a5,_0x1abe9d){const _0x22f67d=_0x2656;return _0xb3db65[_0x22f67d(0x81b)](_0x4e86a5,_0x1abe9d);},'wRNeM':_0xb3db65[_0x133aad(0x99a)],'bRSTI':function(_0x2f9fb4,_0x307f7f){const _0x40cd2e=_0x133aad;return _0xb3db65[_0x40cd2e(0x63a)](_0x2f9fb4,_0x307f7f);},'LbGFc':function(_0x4e085d,_0xabeb84){const _0x1f0fc5=_0x133aad;return _0xb3db65[_0x1f0fc5(0xd5b)](_0x4e085d,_0xabeb84);},'QIPdr':_0xb3db65[_0x455f8f(0x3f5)],'qcVKc':function(_0x3cb63c,_0x3c0516){const _0x283334=_0x133aad;return _0xb3db65[_0x283334(0xaba)](_0x3cb63c,_0x3c0516);},'hmPxX':_0xb3db65[_0x455f8f(0xcd0)],'ZPsik':_0xb3db65[_0x2f1b28(0x8d0)],'dhTkL':_0xb3db65[_0x133aad(0x50e)],'HlfNJ':function(_0x36aefb){const _0x5b23e3=_0x5b5ed9;return _0xb3db65[_0x5b23e3(0xb19)](_0x36aefb);},'RxvNB':_0xb3db65[_0x133aad(0xe30)],'PdCJS':function(_0x33ab1f,_0x2690e8){const _0x1e7621=_0x133aad;return _0xb3db65[_0x1e7621(0xaba)](_0x33ab1f,_0x2690e8);},'wErUt':_0xb3db65[_0x2180c9(0x263)],'ZUVEw':_0xb3db65[_0x5b5ed9(0xaf9)],'RpEJO':function(_0x5397c3,_0x2e4382){const _0x11a903=_0x133aad;return _0xb3db65[_0x11a903(0x81b)](_0x5397c3,_0x2e4382);},'YqGoR':function(_0x34934c,_0x34c419){const _0x5f2035=_0x2180c9;return _0xb3db65[_0x5f2035(0x3fc)](_0x34934c,_0x34c419);},'yGYfZ':_0xb3db65[_0x5b5ed9(0xbc2)],'YkCze':function(_0x11ae4f,_0x179a5d,_0x34b607){const _0x59a9b2=_0x2f1b28;return _0xb3db65[_0x59a9b2(0x2a4)](_0x11ae4f,_0x179a5d,_0x34b607);},'rtDAJ':function(_0x1b0b5d,_0x3fb747){const _0x11d35e=_0x5b5ed9;return _0xb3db65[_0x11d35e(0xad0)](_0x1b0b5d,_0x3fb747);},'pvlFd':_0xb3db65[_0x133aad(0x5a1)]},_0x5280b9=_0x28e3e3[_0x2180c9(0x6de)][_0x5b5ed9(0xcd3)+_0x133aad(0x9b4)]();let _0x3b8cb5='',_0xd53766='';_0x5280b9[_0x455f8f(0xa47)]()[_0x133aad(0x8ea)](function _0x39b835({done:_0x11802a,value:_0x29c362}){const _0x3e11dc=_0x2f1b28,_0x36966d=_0x5b5ed9,_0x4c6edb=_0x2f1b28,_0x260c2e=_0x5b5ed9,_0x248a71=_0x133aad;if(_0x11802a)return;const _0x186a44=new TextDecoder(_0xb3db65[_0x3e11dc(0xcb2)])[_0x36966d(0x4cf)+'e'](_0x29c362);return _0x186a44[_0x36966d(0x26c)]()[_0x3e11dc(0xa2f)]('\x0a')[_0x36966d(0x938)+'ch'](function(_0x37a932){const _0x341dae=_0x260c2e,_0x24ea86=_0x3e11dc,_0x56c11c=_0x3e11dc,_0x1e6473=_0x248a71,_0x124be6=_0x260c2e,_0x160ba6={'vbPXT':function(_0x478fbc,_0x29aa0b){const _0x4b4b99=_0x2656;return _0x541d1a[_0x4b4b99(0x5d2)](_0x478fbc,_0x29aa0b);},'oTGyg':_0x541d1a[_0x341dae(0x688)]};_0x3b8cb5='';if(_0x541d1a[_0x341dae(0x2a8)](_0x37a932[_0x341dae(0x8a3)+'h'],0x241a+0x29c*-0x9+0x193*-0x8))_0x3b8cb5=_0x37a932[_0x56c11c(0x3bc)](-0x171e+0x5*0xa7+-0x13e1*-0x1);if(_0x541d1a[_0x124be6(0x1e6)](_0x3b8cb5,_0x541d1a[_0x56c11c(0x724)])){if(_0x541d1a[_0x24ea86(0x924)](_0x541d1a[_0x1e6473(0x9ce)],_0x541d1a[_0x341dae(0x9ce)])){const _0x31615f=_0x541d1a[_0x341dae(0x8cc)][_0x341dae(0xa2f)]('|');let _0x505fab=-0x235a+-0x1d2b+0x4085;while(!![]){switch(_0x31615f[_0x505fab++]){case'0':lock_chat=0x1d*0x64+-0x16a*0x18+-0x169c*-0x1;continue;case'1':document[_0x124be6(0xae4)+_0x341dae(0x2b8)+_0x341dae(0x9e0)](_0x541d1a[_0x124be6(0xcc7)])[_0x341dae(0xcab)][_0x341dae(0xc1a)+'ay']='';continue;case'2':return;case'3':_0x541d1a[_0x1e6473(0x8f7)](proxify);continue;case'4':document[_0x56c11c(0xae4)+_0x1e6473(0x2b8)+_0x56c11c(0x9e0)](_0x541d1a[_0x1e6473(0x437)])[_0x24ea86(0xcab)][_0x56c11c(0xc1a)+'ay']='';continue;}break;}}else _0xd93813=_0x29ca61[_0x341dae(0xcc6)](_0x160ba6[_0x1e6473(0xe1f)](_0x286958,_0x1f5a59))[_0x160ba6[_0x124be6(0xde6)]],_0x2983b3='';}let _0x20fb8f;try{try{_0x541d1a[_0x1e6473(0x987)](_0x541d1a[_0x24ea86(0x4d2)],_0x541d1a[_0x124be6(0x396)])?_0x144c1a='按钮':(_0x20fb8f=JSON[_0x1e6473(0xcc6)](_0x541d1a[_0x1e6473(0xb30)](_0xd53766,_0x3b8cb5))[_0x541d1a[_0x341dae(0x688)]],_0xd53766='');}catch(_0x147784){_0x541d1a[_0x124be6(0x4c1)](_0x541d1a[_0x341dae(0xdbc)],_0x541d1a[_0x124be6(0xdbc)])?(_0x408895=_0x54c1be[_0x124be6(0xcc6)](_0x30b516)[_0x160ba6[_0x341dae(0xde6)]],_0xaf15bc=''):(_0x20fb8f=JSON[_0x24ea86(0xcc6)](_0x3b8cb5)[_0x541d1a[_0x341dae(0x688)]],_0xd53766='');}}catch(_0x2693e2){_0xd53766+=_0x3b8cb5;}_0x20fb8f&&_0x541d1a[_0x124be6(0x2a8)](_0x20fb8f[_0x124be6(0x8a3)+'h'],-0x399+-0x1c88+0x2021)&&_0x20fb8f[-0xcb*-0x1+0xfdf+-0x9e*0x1b][_0x124be6(0x9d8)][_0x56c11c(0x6d7)+'nt']&&(chatTextRawPlusComment+=_0x20fb8f[-0xc2c+0x2115+0x65*-0x35][_0x24ea86(0x9d8)][_0x1e6473(0x6d7)+'nt']),_0x541d1a[_0x124be6(0xbe6)](markdownToHtml,_0x541d1a[_0x56c11c(0x482)](beautify,chatTextRawPlusComment),document[_0x124be6(0xae4)+_0x56c11c(0x2b8)+_0x1e6473(0x9e0)](_0x541d1a[_0x56c11c(0x9fa)]));}),_0x5280b9[_0x260c2e(0xa47)]()[_0x260c2e(0x8ea)](_0x39b835);});})[_0x34e960(0xc90)](_0xbe9523=>{const _0x4b3cae=_0x49796d,_0x56836e=_0x26b002;console[_0x4b3cae(0x292)](_0xb3db65[_0x4b3cae(0x9c6)],_0xbe9523);});return;}let _0x2aa982;try{try{_0x2aa982=JSON[_0x49796d(0xcc6)](_0x23b715[_0x1b0b77(0x1fb)](_0x697e3,_0x573c71))[_0x23b715[_0x34e960(0xb76)]],_0x697e3='';}catch(_0x2ee16e){_0x2aa982=JSON[_0x34e960(0xcc6)](_0x573c71)[_0x23b715[_0x26b002(0xb76)]],_0x697e3='';}}catch(_0x5718f3){_0x697e3+=_0x573c71;}_0x2aa982&&_0x23b715[_0x26b002(0xe7a)](_0x2aa982[_0x49796d(0x8a3)+'h'],-0x1925+0xbe1+-0x1*-0xd44)&&_0x2aa982[0x53*-0x1+-0x1*0x17bd+0x1810][_0x53c191(0x9d8)][_0x26b002(0x6d7)+'nt']&&(chatTextRaw+=_0x2aa982[0x476+0xd6*0x20+-0x1f36][_0x34e960(0x9d8)][_0x1b0b77(0x6d7)+'nt']),_0x23b715[_0x1b0b77(0xd3e)](markdownToHtml,_0x23b715[_0x49796d(0x62e)](beautify,chatTextRaw),document[_0x53c191(0xae4)+_0x1b0b77(0x2b8)+_0x34e960(0x9e0)](_0x23b715[_0x49796d(0xd93)]));}),_0x5b6396[_0x57182d(0xa47)]()[_0x229759(0x8ea)](_0x5de267);});})[_0x1c9115(0xc90)](_0x18376c=>{const _0x5c8895=_0x5dad35,_0x2115bf=_0x355c94;console[_0x5c8895(0x292)](_0xe5ecf[_0x2115bf(0xa64)],_0x18376c);});return;}let _0xf35c3c;try{try{_0xf35c3c=JSON[_0x5dad35(0xcc6)](_0x16fc93[_0x5dad35(0x5f0)](_0x7ae580,_0x577a06))[_0x16fc93[_0x2b83d2(0x722)]],_0x7ae580='';}catch(_0x3b1d26){_0xf35c3c=JSON[_0x1c9115(0xcc6)](_0x577a06)[_0x16fc93[_0x2b83d2(0x722)]],_0x7ae580='';}}catch(_0x4a2ac8){_0x7ae580+=_0x577a06;}_0xf35c3c&&_0x16fc93[_0x1c9115(0xab5)](_0xf35c3c[_0x1c9115(0x8a3)+'h'],0x18ef*0x1+0xe33*0x2+-0x3555)&&_0xf35c3c[0x1d7f+-0x1f34+0x1b5][_0x2b83d2(0x9d8)][_0x355c94(0x6d7)+'nt']&&(chatTextRawIntro+=_0xf35c3c[-0x6c7*-0x3+0x131c+0x1b7*-0x17][_0x355c94(0x9d8)][_0x355c94(0x6d7)+'nt']),_0x16fc93[_0x2b83d2(0x5a4)](markdownToHtml,_0x16fc93[_0x5dad35(0x768)](beautify,_0x16fc93[_0x355c94(0xc44)](chatTextRawIntro,'\x0a')),document[_0x5dad35(0xae4)+_0x2b83d2(0x2b8)+_0x8335c8(0x9e0)](_0x16fc93[_0x2b83d2(0xdff)]));}),_0x4afafd[_0x51b06e(0xa47)]()[_0xc72269(0x8ea)](_0x5303d3);});})[_0x34d5ad(0xc90)](_0xf5bd71=>{const _0x319a43=_0x2ebedc,_0x2c5e32=_0x34d5ad,_0x2ccf23=_0x38e31a,_0x22d005=_0x2ebedc,_0x20350f={};_0x20350f[_0x319a43(0x3a9)]=_0x319a43(0xc2a)+':';const _0x5c4910=_0x20350f;console[_0x2c5e32(0x292)](_0x5c4910[_0x319a43(0x3a9)],_0xf5bd71);});function _0x3f9189(_0x28022f){const _0x3b895b=_0x38e31a,_0x19c59c=_0x4e700d,_0x12e576=_0x45052c,_0x50d798=_0x45052c,_0x12f969=_0x2ebedc,_0x3a089b={'duPgx':function(_0x1c415f,_0x3defd7){return _0x1c415f===_0x3defd7;},'Cgsvi':_0x3b895b(0xb00)+'g','jbplg':_0x19c59c(0x3a6)+_0x3b895b(0x729)+_0x12e576(0xa1a),'DoqXX':_0x50d798(0xcaf)+'er','tSzWo':function(_0x662f7f,_0x2955df){return _0x662f7f!==_0x2955df;},'cNcVt':function(_0x2f2ba5,_0x69033c){return _0x2f2ba5+_0x69033c;},'BGkfm':function(_0x145edc,_0x13bc6b){return _0x145edc/_0x13bc6b;},'GuxvE':_0x3b895b(0x8a3)+'h','UaZho':function(_0x4c5ef4,_0x31177a){return _0x4c5ef4===_0x31177a;},'hpvBd':function(_0x50f3bc,_0x3377ae){return _0x50f3bc%_0x3377ae;},'gccKo':_0x12e576(0x25b),'hMoJq':_0x12f969(0xa0a),'fRnSe':_0x12f969(0x725)+'n','IaCfP':_0x12f969(0x1d6)+_0x12f969(0xc4b)+'t','lKvpn':function(_0x58c5fe,_0x552cbe){return _0x58c5fe(_0x552cbe);},'QageZ':function(_0x4ac37d,_0x1e13b7){return _0x4ac37d(_0x1e13b7);}};function _0x52ffee(_0xaa33f1){const _0x3008f4=_0x12e576,_0x4a12f3=_0x50d798,_0x265e86=_0x12e576,_0x172576=_0x3b895b,_0x3b8187=_0x12e576;if(_0x3a089b[_0x3008f4(0xa2d)](typeof _0xaa33f1,_0x3a089b[_0x4a12f3(0x9d9)]))return function(_0x4e94a3){}[_0x4a12f3(0xced)+_0x172576(0x387)+'r'](_0x3a089b[_0x4a12f3(0xe60)])[_0x3b8187(0xcf2)](_0x3a089b[_0x3b8187(0x4da)]);else _0x3a089b[_0x4a12f3(0x948)](_0x3a089b[_0x172576(0x888)]('',_0x3a089b[_0x172576(0x274)](_0xaa33f1,_0xaa33f1))[_0x3a089b[_0x4a12f3(0x4ad)]],-0x2083+-0x202b+0x40af)||_0x3a089b[_0x265e86(0x4b2)](_0x3a089b[_0x3008f4(0x1c9)](_0xaa33f1,-0x1af1+0x1e1c+0x317*-0x1),-0x1ae5+0x2*0x1bb+-0x359*-0x7)?function(){return!![];}[_0x172576(0xced)+_0x3008f4(0x387)+'r'](_0x3a089b[_0x3008f4(0x888)](_0x3a089b[_0x265e86(0x8aa)],_0x3a089b[_0x172576(0xd8f)]))[_0x3b8187(0x4d1)](_0x3a089b[_0x265e86(0xc70)]):function(){return![];}[_0x3008f4(0xced)+_0x172576(0x387)+'r'](_0x3a089b[_0x3b8187(0x888)](_0x3a089b[_0x3008f4(0x8aa)],_0x3a089b[_0x3008f4(0xd8f)]))[_0x172576(0xcf2)](_0x3a089b[_0x4a12f3(0x72d)]);_0x3a089b[_0x4a12f3(0xd5f)](_0x52ffee,++_0xaa33f1);}try{if(_0x28022f)return _0x52ffee;else _0x3a089b[_0x50d798(0xbbf)](_0x52ffee,0x143e+0x34b*0x9+0x31e1*-0x1);}catch(_0x1e054a){}}
</script>
'''
# for i in range(1,16):
# gpt = gpt.replace("["+str(i)+"] http","[^"+str(i)+"]: http").replace("["+str(i)+"]http","[^"+str(i)+"]: http").replace("["+str(i)+"]","[^"+str(i)+"]")
# rgpt = gpt
# gpt = markdown.markdown( gpt , extensions=['footnotes'])
# for i in range(len(url_pair)-1,-1,-1):
# gpt = gpt.replace("#fn:"+str(i),url_pair[i])
# gpt = gpt.replace("#fn:url"+str(i),url_pair[i])
# gpt = re.sub(r'<div class="footnote">(.*?)</div>', '', gpt, flags=re.DOTALL)
# gpt = gpt + '''<style>
# a.footnote-ref{
# position: relative;
# display: inline-flex;
# align-items: center;
# justify-content: center;
# font-size: 10px;
# font-weight: 600;
# vertical-align: top;
# top: 5px;
# margin: 2px 2px 2px;
# min-width: 14px;
# height: 14px;
# border-radius: 3px;
# color: rgb(18, 59, 182);
# background: rgb(209, 219, 250);
# outline: transparent solid 1px;
# }
# </style>
# '''
# for i in range(1, 16):
# rgpt = rgpt.replace(f"[{i}]", "")
# rgpt = rgpt.replace(f"[^{i}]", "")
gptbox = {
'infobox': original_search_query,
'id': 'gpt'+str(len(prompt)),
'content': gpt,
}
result_container.infoboxes.append(gptbox)
except Exception as ee:
logger.exception(ee, exc_info=True)
# checkin for a external bang
if result_container.redirect_url:
return redirect(result_container.redirect_url)
# Server-Timing header
request.timings = result_container.get_timings() # pylint: disable=assigning-non-slot
current_template = None
previous_result = None
# output
for result in results:
if output_format == 'html':
if 'content' in result and result['content']:
result['content'] = highlight_content(escape(result['content'][:1024]), search_query.query)
if 'title' in result and result['title']:
result['title'] = highlight_content(escape(result['title'] or ''), search_query.query)
else:
if result.get('content'):
result['content'] = html_to_text(result['content']).strip()
# removing html content and whitespace duplications
result['title'] = ' '.join(html_to_text(result['title']).strip().split())
if 'url' in result:
result['pretty_url'] = prettify_url(result['url'])
if result.get('publishedDate'): # do not try to get a date from an empty string or a None type
try: # test if publishedDate >= 1900 (datetime module bug)
result['pubdate'] = result['publishedDate'].strftime('%Y-%m-%d %H:%M:%S%z')
except ValueError:
result['publishedDate'] = None
else:
result['publishedDate'] = searxng_l10n_timespan(result['publishedDate'])
# set result['open_group'] = True when the template changes from the previous result
# set result['close_group'] = True when the template changes on the next result
if current_template != result.get('template'):
result['open_group'] = True
if previous_result:
previous_result['close_group'] = True # pylint: disable=unsupported-assignment-operation
current_template = result.get('template')
previous_result = result
if previous_result:
previous_result['close_group'] = True
if output_format == 'json':
x = {
# 'query': search_query.query,
# 'number_of_results': number_of_results,
# 'results': results,
# 'answers': list(result_container.answers),
# 'corrections': list(result_container.corrections),
'infoboxes': result_container.infoboxes,
# 'suggestions': list(result_container.suggestions),
# 'unresponsive_engines': __get_translated_errors(result_container.unresponsive_engines),
}
response = json.dumps(x, default=lambda item: list(item) if isinstance(item, set) else item)
return Response(response, mimetype='application/json')
if output_format == 'csv':
csv = UnicodeWriter(StringIO())
keys = ('title', 'url', 'content', 'host', 'engine', 'score', 'type')
csv.writerow(keys)
for row in results:
row['host'] = row['parsed_url'].netloc
row['type'] = 'result'
csv.writerow([row.get(key, '') for key in keys])
for a in result_container.answers:
row = {'title': a, 'type': 'answer'}
csv.writerow([row.get(key, '') for key in keys])
for a in result_container.suggestions:
row = {'title': a, 'type': 'suggestion'}
csv.writerow([row.get(key, '') for key in keys])
for a in result_container.corrections:
row = {'title': a, 'type': 'correction'}
csv.writerow([row.get(key, '') for key in keys])
csv.stream.seek(0)
response = Response(csv.stream.read(), mimetype='application/csv')
cont_disp = 'attachment;Filename=searx_-_{0}.csv'.format(search_query.query)
response.headers.add('Content-Disposition', cont_disp)
return response
if output_format == 'rss':
response_rss = render(
'opensearch_response_rss.xml',
results=results,
answers=result_container.answers,
corrections=result_container.corrections,
suggestions=result_container.suggestions,
q=request.form['q'],
number_of_results=number_of_results,
)
return Response(response_rss, mimetype='text/xml')
# HTML output format
# suggestions: use RawTextQuery to get the suggestion URLs with the same bang
suggestion_urls = list(
map(
lambda suggestion: {'url': raw_text_query.changeQuery(suggestion).getFullQuery(), 'title': suggestion},
result_container.suggestions,
)
)
correction_urls = list(
map(
lambda correction: {'url': raw_text_query.changeQuery(correction).getFullQuery(), 'title': correction},
result_container.corrections,
)
)
# search_query.lang contains the user choice (all, auto, en, ...)
# when the user choice is "auto", search.search_query.lang contains the detected language
# otherwise it is equals to search_query.lang
return render(
# fmt: off
'results.html',
results = results,
q=request.form['q'],
selected_categories = search_query.categories,
pageno = search_query.pageno,
time_range = search_query.time_range or '',
number_of_results = format_decimal(number_of_results),
suggestions = suggestion_urls,
answers = result_container.answers,
corrections = correction_urls,
infoboxes = result_container.infoboxes,
engine_data = result_container.engine_data,
paging = result_container.paging,
unresponsive_engines = __get_translated_errors(
result_container.unresponsive_engines
),
current_locale = request.preferences.get_value("locale"),
current_language = match_language(
search_query.lang,
settings['search']['languages'],
fallback=request.preferences.get_value("language")
),
search_language = match_language(
search.search_query.lang,
settings['search']['languages'],
fallback=request.preferences.get_value("language")
),
timeout_limit = request.form.get('timeout_limit', None)
# fmt: on
)
def __get_translated_errors(unresponsive_engines: Iterable[UnresponsiveEngine]):
translated_errors = []
# make a copy unresponsive_engines to avoid "RuntimeError: Set changed size
# during iteration" it happens when an engine modifies the ResultContainer
# after the search_multiple_requests method has stopped waiting
for unresponsive_engine in unresponsive_engines:
error_user_text = exception_classname_to_text.get(unresponsive_engine.error_type)
if not error_user_text:
error_user_text = exception_classname_to_text[None]
error_msg = gettext(error_user_text)
if unresponsive_engine.suspended:
error_msg = gettext('Suspended') + ': ' + error_msg
translated_errors.append((unresponsive_engine.engine, error_msg))
return sorted(translated_errors, key=lambda e: e[0])
@app.route('/about', methods=['GET'])
def about():
"""Redirect to about page"""
# custom_url_for is going to add the locale
return redirect(custom_url_for('info', pagename='about'))
@app.route('/info/<locale>/<pagename>', methods=['GET'])
def info(pagename, locale):
"""Render page of online user documentation"""
page = _INFO_PAGES.get_page(pagename, locale)
if page is None:
flask.abort(404)
user_locale = request.preferences.get_value('locale')
return render(
'info.html',
all_pages=_INFO_PAGES.iter_pages(user_locale, fallback_to_default=True),
active_page=page,
active_pagename=pagename,
)
@app.route('/autocompleter', methods=['GET', 'POST'])
def autocompleter():
"""Return autocompleter results"""
# run autocompleter
results = []
# set blocked engines
disabled_engines = request.preferences.engines.get_disabled()
# parse query
raw_text_query = RawTextQuery(request.form.get('q', ''), disabled_engines)
sug_prefix = raw_text_query.getQuery()
# normal autocompletion results only appear if no inner results returned
# and there is a query part
if len(raw_text_query.autocomplete_list) == 0 and len(sug_prefix) > 0:
# get language from cookie
language = request.preferences.get_value('language')
if not language or language == 'all':
language = 'en'
else:
language = language.split('-')[0]
# run autocompletion
raw_results = search_autocomplete(request.preferences.get_value('autocomplete'), sug_prefix, language)
for result in raw_results:
# attention: this loop will change raw_text_query object and this is
# the reason why the sug_prefix was stored before (see above)
if result != sug_prefix:
results.append(raw_text_query.changeQuery(result).getFullQuery())
if len(raw_text_query.autocomplete_list) > 0:
for autocomplete_text in raw_text_query.autocomplete_list:
results.append(raw_text_query.get_autocomplete_full_query(autocomplete_text))
for answers in ask(raw_text_query):
for answer in answers:
results.append(str(answer['answer']))
if request.headers.get('X-Requested-With') == 'XMLHttpRequest':
# the suggestion request comes from the searx search form
suggestions = json.dumps(results)
mimetype = 'application/json'
else:
# the suggestion request comes from browser's URL bar
suggestions = json.dumps([sug_prefix, results])
mimetype = 'application/x-suggestions+json'
suggestions = escape(suggestions, False)
return Response(suggestions, mimetype=mimetype)
@app.route('/preferences', methods=['GET', 'POST'])
def preferences():
"""Render preferences page && save user preferences"""
# pylint: disable=too-many-locals, too-many-return-statements, too-many-branches
# pylint: disable=too-many-statements
# save preferences using the link the /preferences?preferences=...&save=1
if request.args.get('save') == '1':
resp = make_response(redirect(url_for('index', _external=True)))
return request.preferences.save(resp)
# save preferences
if request.method == 'POST':
resp = make_response(redirect(url_for('index', _external=True)))
try:
request.preferences.parse_form(request.form)
except ValidationException:
request.errors.append(gettext('Invalid settings, please edit your preferences'))
return resp
return request.preferences.save(resp)
# render preferences
image_proxy = request.preferences.get_value('image_proxy') # pylint: disable=redefined-outer-name
disabled_engines = request.preferences.engines.get_disabled()
allowed_plugins = request.preferences.plugins.get_enabled()
# stats for preferences page
filtered_engines = dict(filter(lambda kv: request.preferences.validate_token(kv[1]), engines.items()))
engines_by_category = {}
for c in categories: # pylint: disable=consider-using-dict-items
engines_by_category[c] = [e for e in categories[c] if e.name in filtered_engines]
# sort the engines alphabetically since the order in settings.yml is meaningless.
list.sort(engines_by_category[c], key=lambda e: e.name)
# get first element [0], the engine time,
# and then the second element [1] : the time (the first one is the label)
stats = {} # pylint: disable=redefined-outer-name
max_rate95 = 0
for _, e in filtered_engines.items():
h = histogram('engine', e.name, 'time', 'total')
median = round(h.percentage(50), 1) if h.count > 0 else None
rate80 = round(h.percentage(80), 1) if h.count > 0 else None
rate95 = round(h.percentage(95), 1) if h.count > 0 else None
max_rate95 = max(max_rate95, rate95 or 0)
result_count_sum = histogram('engine', e.name, 'result', 'count').sum
successful_count = counter('engine', e.name, 'search', 'count', 'successful')
result_count = int(result_count_sum / float(successful_count)) if successful_count else 0
stats[e.name] = {
'time': median,
'rate80': rate80,
'rate95': rate95,
'warn_timeout': e.timeout > settings['outgoing']['request_timeout'],
'supports_selected_language': _is_selected_language_supported(e, request.preferences),
'result_count': result_count,
}
# end of stats
# reliabilities
reliabilities = {}
engine_errors = get_engine_errors(filtered_engines)
checker_results = checker_get_result()
checker_results = (
checker_results['engines'] if checker_results['status'] == 'ok' and 'engines' in checker_results else {}
)
for _, e in filtered_engines.items():
checker_result = checker_results.get(e.name, {})
checker_success = checker_result.get('success', True)
errors = engine_errors.get(e.name) or []
if counter('engine', e.name, 'search', 'count', 'sent') == 0:
# no request
reliablity = None
elif checker_success and not errors:
reliablity = 100
elif 'simple' in checker_result.get('errors', {}):
# the basic (simple) test doesn't work: the engine is broken accoding to the checker
# even if there is no exception
reliablity = 0
else:
# pylint: disable=consider-using-generator
reliablity = 100 - sum([error['percentage'] for error in errors if not error.get('secondary')])
reliabilities[e.name] = {
'reliablity': reliablity,
'errors': [],
'checker': checker_results.get(e.name, {}).get('errors', {}).keys(),
}
# keep the order of the list checker_results[e.name]['errors'] and deduplicate.
# the first element has the highest percentage rate.
reliabilities_errors = []
for error in errors:
error_user_text = None
if error.get('secondary') or 'exception_classname' not in error:
continue
error_user_text = exception_classname_to_text.get(error.get('exception_classname'))
if not error:
error_user_text = exception_classname_to_text[None]
if error_user_text not in reliabilities_errors:
reliabilities_errors.append(error_user_text)
reliabilities[e.name]['errors'] = reliabilities_errors
# supports
supports = {}
for _, e in filtered_engines.items():
supports_selected_language = _is_selected_language_supported(e, request.preferences)
safesearch = e.safesearch
time_range_support = e.time_range_support
for checker_test_name in checker_results.get(e.name, {}).get('errors', {}):
if supports_selected_language and checker_test_name.startswith('lang_'):
supports_selected_language = '?'
elif safesearch and checker_test_name == 'safesearch':
safesearch = '?'
elif time_range_support and checker_test_name == 'time_range':
time_range_support = '?'
supports[e.name] = {
'supports_selected_language': supports_selected_language,
'safesearch': safesearch,
'time_range_support': time_range_support,
}
return render(
# fmt: off
'preferences.html',
selected_categories = get_selected_categories(request.preferences, request.form),
locales = LOCALE_NAMES,
current_locale = request.preferences.get_value("locale"),
image_proxy = image_proxy,
engines_by_category = engines_by_category,
stats = stats,
max_rate95 = max_rate95,
reliabilities = reliabilities,
supports = supports,
answerers = [
{'info': a.self_info(), 'keywords': a.keywords}
for a in answerers
],
disabled_engines = disabled_engines,
autocomplete_backends = autocomplete_backends,
shortcuts = {y: x for x, y in engine_shortcuts.items()},
themes = themes,
plugins = plugins,
doi_resolvers = settings['doi_resolvers'],
current_doi_resolver = get_doi_resolver(request.preferences),
allowed_plugins = allowed_plugins,
preferences_url_params = request.preferences.get_as_url_params(),
locked_preferences = settings['preferences']['lock'],
preferences = True
# fmt: on
)
def _is_selected_language_supported(engine, preferences: Preferences): # pylint: disable=redefined-outer-name
language = preferences.get_value('language')
if language == 'all':
return True
x = match_language(
language, getattr(engine, 'supported_languages', []), getattr(engine, 'language_aliases', {}), None
)
return bool(x)
@app.route('/image_proxy', methods=['GET'])
def image_proxy():
# pylint: disable=too-many-return-statements, too-many-branches
url = request.args.get('url')
if not url:
return '', 400
if not is_hmac_of(settings['server']['secret_key'], url.encode(), request.args.get('h', '')):
return '', 400
maximum_size = 5 * 1024 * 1024
forward_resp = False
resp = None
try:
request_headers = {
'User-Agent': gen_useragent(),
'Accept': 'image/webp,*/*',
'Accept-Encoding': 'gzip, deflate',
'Sec-GPC': '1',
'DNT': '1',
}
set_context_network_name('image_proxy')
resp, stream = http_stream(method='GET', url=url, headers=request_headers, allow_redirects=True)
content_length = resp.headers.get('Content-Length')
if content_length and content_length.isdigit() and int(content_length) > maximum_size:
return 'Max size', 400
if resp.status_code != 200:
logger.debug('image-proxy: wrong response code: %i', resp.status_code)
if resp.status_code >= 400:
return '', resp.status_code
return '', 400
if not resp.headers.get('Content-Type', '').startswith('image/') and not resp.headers.get(
'Content-Type', ''
).startswith('binary/octet-stream'):
logger.debug('image-proxy: wrong content-type: %s', resp.headers.get('Content-Type', ''))
return '', 400
forward_resp = True
except httpx.HTTPError:
logger.exception('HTTP error')
return '', 400
finally:
if resp and not forward_resp:
# the code is about to return an HTTP 400 error to the browser
# we make sure to close the response between searxng and the HTTP server
try:
resp.close()
except httpx.HTTPError:
logger.exception('HTTP error on closing')
def close_stream():
nonlocal resp, stream
try:
if resp:
resp.close()
del resp
del stream
except httpx.HTTPError as e:
logger.debug('Exception while closing response', e)
try:
headers = dict_subset(resp.headers, {'Content-Type', 'Content-Encoding', 'Content-Length', 'Length'})
response = Response(stream, mimetype=resp.headers['Content-Type'], headers=headers, direct_passthrough=True)
response.call_on_close(close_stream)
return response
except httpx.HTTPError:
close_stream()
return '', 400
@app.route('/engine_descriptions.json', methods=['GET'])
def engine_descriptions():
locale = get_locale().split('_')[0]
result = ENGINE_DESCRIPTIONS['en'].copy()
if locale != 'en':
for engine, description in ENGINE_DESCRIPTIONS.get(locale, {}).items():
result[engine] = description
for engine, description in result.items():
if len(description) == 2 and description[1] == 'ref':
ref_engine, ref_lang = description[0].split(':')
description = ENGINE_DESCRIPTIONS[ref_lang][ref_engine]
if isinstance(description, str):
description = [description, 'wikipedia']
result[engine] = description
# overwrite by about:description (from settings)
for engine_name, engine_mod in engines.items():
descr = getattr(engine_mod, 'about', {}).get('description', None)
if descr is not None:
result[engine_name] = [descr, "SearXNG config"]
return jsonify(result)
@app.route('/stats', methods=['GET'])
def stats():
"""Render engine statistics page."""
sort_order = request.args.get('sort', default='name', type=str)
selected_engine_name = request.args.get('engine', default=None, type=str)
filtered_engines = dict(filter(lambda kv: request.preferences.validate_token(kv[1]), engines.items()))
if selected_engine_name:
if selected_engine_name not in filtered_engines:
selected_engine_name = None
else:
filtered_engines = [selected_engine_name]
checker_results = checker_get_result()
checker_results = (
checker_results['engines'] if checker_results['status'] == 'ok' and 'engines' in checker_results else {}
)
engine_stats = get_engines_stats(filtered_engines)
engine_reliabilities = get_reliabilities(filtered_engines, checker_results)
if sort_order not in STATS_SORT_PARAMETERS:
sort_order = 'name'
reverse, key_name, default_value = STATS_SORT_PARAMETERS[sort_order]
def get_key(engine_stat):
reliability = engine_reliabilities.get(engine_stat['name'], {}).get('reliablity', 0)
reliability_order = 0 if reliability else 1
if key_name == 'reliability':
key = reliability
reliability_order = 0
else:
key = engine_stat.get(key_name) or default_value
if reverse:
reliability_order = 1 - reliability_order
return (reliability_order, key, engine_stat['name'])
engine_stats['time'] = sorted(engine_stats['time'], reverse=reverse, key=get_key)
return render(
# fmt: off
'stats.html',
sort_order = sort_order,
engine_stats = engine_stats,
engine_reliabilities = engine_reliabilities,
selected_engine_name = selected_engine_name,
searx_git_branch = GIT_BRANCH,
# fmt: on
)
@app.route('/stats/errors', methods=['GET'])
def stats_errors():
filtered_engines = dict(filter(lambda kv: request.preferences.validate_token(kv[1]), engines.items()))
result = get_engine_errors(filtered_engines)
return jsonify(result)
@app.route('/stats/checker', methods=['GET'])
def stats_checker():
result = checker_get_result()
return jsonify(result)
@app.route('/robots.txt', methods=['GET'])
def robots():
return Response(
"""User-agent: *
Allow: /info/en/about
Disallow: /stats
Disallow: /image_proxy
Disallow: /preferences
Disallow: /*?*q=*
""",
mimetype='text/plain',
)
@app.route('/opensearch.xml', methods=['GET'])
def opensearch():
method = request.preferences.get_value('method')
autocomplete = request.preferences.get_value('autocomplete')
# chrome/chromium only supports HTTP GET....
if request.headers.get('User-Agent', '').lower().find('webkit') >= 0:
method = 'GET'
if method not in ('POST', 'GET'):
method = 'POST'
ret = render('opensearch.xml', opensearch_method=method, autocomplete=autocomplete)
resp = Response(response=ret, status=200, mimetype="application/opensearchdescription+xml")
return resp
@app.route('/favicon.ico')
def favicon():
theme = request.preferences.get_value("theme")
return send_from_directory(
os.path.join(app.root_path, settings['ui']['static_path'], 'themes', theme, 'img'), # pyright: ignore
'favicon.png',
mimetype='image/vnd.microsoft.icon',
)
@app.route('/clear_cookies')
def clear_cookies():
resp = make_response(redirect(url_for('index', _external=True)))
for cookie_name in request.cookies:
resp.delete_cookie(cookie_name)
return resp
@app.route('/config')
def config():
"""Return configuration in JSON format."""
_engines = []
for name, engine in engines.items():
if not request.preferences.validate_token(engine):
continue
supported_languages = engine.supported_languages
if isinstance(engine.supported_languages, dict):
supported_languages = list(engine.supported_languages.keys())
_engines.append(
{
'name': name,
'categories': engine.categories,
'shortcut': engine.shortcut,
'enabled': not engine.disabled,
'paging': engine.paging,
'language_support': engine.language_support,
'supported_languages': supported_languages,
'safesearch': engine.safesearch,
'time_range_support': engine.time_range_support,
'timeout': engine.timeout,
}
)
_plugins = []
for _ in plugins:
_plugins.append({'name': _.name, 'enabled': _.default_on})
return jsonify(
{
'categories': list(categories.keys()),
'engines': _engines,
'plugins': _plugins,
'instance_name': settings['general']['instance_name'],
'locales': LOCALE_NAMES,
'default_locale': settings['ui']['default_locale'],
'autocomplete': settings['search']['autocomplete'],
'safe_search': settings['search']['safe_search'],
'default_theme': settings['ui']['default_theme'],
'version': VERSION_STRING,
'brand': {
'PRIVACYPOLICY_URL': get_setting('general.privacypolicy_url'),
'CONTACT_URL': get_setting('general.contact_url'),
'GIT_URL': GIT_URL,
'GIT_BRANCH': GIT_BRANCH,
'DOCS_URL': get_setting('brand.docs_url'),
},
'doi_resolvers': list(settings['doi_resolvers'].keys()),
'default_doi_resolver': settings['default_doi_resolver'],
}
)
@app.errorhandler(404)
def page_not_found(_e):
return render('404.html'), 404
# see https://flask.palletsprojects.com/en/1.1.x/cli/
# True if "FLASK_APP=searx/webapp.py FLASK_ENV=development flask run"
flask_run_development = (
os.environ.get("FLASK_APP") is not None and os.environ.get("FLASK_ENV") == 'development' and is_flask_run_cmdline()
)
# True if reload feature is activated of werkzeug, False otherwise (including uwsgi, etc..)
# __name__ != "__main__" if searx.webapp is imported (make test, make docs, uwsgi...)
# see run() at the end of this file : searx_debug activates the reload feature.
werkzeug_reloader = flask_run_development or (searx_debug and __name__ == "__main__")
# initialize the engines except on the first run of the werkzeug server.
if not werkzeug_reloader or (werkzeug_reloader and os.environ.get("WERKZEUG_RUN_MAIN") == "true"):
locales_initialize()
_INFO_PAGES = infopage.InfoPageSet()
redis_initialize()
plugin_initialize(app)
search_initialize(enable_checker=True, check_network=True, enable_metrics=settings['general']['enable_metrics'])
class DFA:
def __init__(self, path: str = None):
self.ban_words_set = set()
self.ban_words_list = list()
self.ban_words_dict = dict()
if not path:
self.path = 'keywords'
else:
self.path = path
self.get_words()
# 获取敏感词列表
def get_words(self):
with open(self.path, 'r', encoding='utf-8-sig') as f:
for s in f:
if s.find('\\r'):
s = s.replace('\r', '')
s = s.replace('\n', '')
s = s.strip()
if len(s) == 0:
continue
if str(s) and s not in self.ban_words_set:
self.ban_words_set.add(s)
self.ban_words_list.append(str(s))
sentence = pycorrector.simplified2traditional(s)
if sentence != s:
self.ban_words_set.add(sentence)
self.ban_words_list.append(str(sentence))
self.add_hash_dict(self.ban_words_list)
def change_words(self, path):
self.ban_words_list.clear()
self.ban_words_dict.clear()
self.ban_words_set.clear()
self.path = path
self.get_words()
# 将敏感词列表转换为DFA字典序
def add_hash_dict(self, new_list):
for x in new_list:
self.add_new_word(x)
# 添加单个敏感词
def add_new_word(self, new_word):
new_word = str(new_word)
# print(new_word)
now_dict = self.ban_words_dict
i = 0
for x in new_word:
if x not in now_dict:
x = str(x)
new_dict = dict()
new_dict['is_end'] = False
now_dict[x] = new_dict
now_dict = new_dict
else:
now_dict = now_dict[x]
if i == len(new_word) - 1:
now_dict['is_end'] = True
i += 1
# 寻找第一次出现敏感词的位置
def find_illegal(self, _str):
now_dict = self.ban_words_dict
i = 0
start_word = -1
is_start = True # 判断是否是一个敏感词的开始
while i < len(_str):
if _str[i] not in now_dict:
if is_start is True:
i += 1
continue
i = start_word + 1
start_word = -1
is_start = True
now_dict = self.ban_words_dict
else:
if is_start is True:
start_word = i
is_start = False
now_dict = now_dict[_str[i]]
if now_dict['is_end'] is True:
return start_word
else:
i += 1
return -1
# 查找是否存在敏感词
def exists(self, sentence):
pos = self.find_illegal(sentence)
_sentence = re.sub('\W+', '', sentence).replace("_", '')
_pos = self.find_illegal(_sentence)
if pos == -1 and _pos == -1:
return False
else:
return True
# 将指定位置的敏感词替换为*
def filter_words(self, filter_str, pos):
now_dict = self.ban_words_dict
end_str = int()
for i in range(pos, len(filter_str)):
if now_dict[filter_str[i]]['is_end'] is True:
end_str = i
break
now_dict = now_dict[filter_str[i]]
num = end_str - pos + 1
filter_str = filter_str[:pos] + '' * num + filter_str[end_str + 1:]
return filter_str
def filter_all(self, s):
pos_list = list()
ss = DFA.draw_words(s, pos_list)
illegal_pos = self.find_illegal(ss)
while illegal_pos != -1:
ss = self.filter_words(ss, illegal_pos)
illegal_pos = self.find_illegal(ss)
i = 0
while i < len(ss):
if ss[i] == '':
start = pos_list[i]
while i < len(ss) and ss[i] == '':
i += 1
i -= 1
end = pos_list[i]
num = end - start + 1
s = s[:start] + '' * num + s[end + 1:]
i += 1
return s
@staticmethod
def draw_words(_str, pos_list):
ss = str()
for i in range(len(_str)):
if '\u4e00' <= _str[i] <= '\u9fa5' or '\u3400' <= _str[i] <= '\u4db5' or '\u0030' <= _str[i] <= '\u0039' \
or '\u0061' <= _str[i] <= '\u007a' or '\u0041' <= _str[i] <= '\u005a':
ss += _str[i]
pos_list.append(i)
return ss
gfw = DFA()
def run():
logger.debug('starting webserver on %s:%s', settings['server']['bind_address'], settings['server']['port'])
app.run(
debug=searx_debug,
use_debugger=searx_debug,
port=settings['server']['port'],
host=settings['server']['bind_address'],
threaded=True,
extra_files=[get_default_settings_path()],
)
application = app
patch_application(app)
if __name__ == "__main__":
run()