searxng/searx/webapp.py
Joseph Cheung 445f4a526a c
2023-03-04 14:23:41 +08:00

2102 lines
354 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
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_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')
@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
for res in results:
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'].replace("://mobile.twitter.com","://nitter.net").replace("://mobile.twitter.com","://nitter.net").replace("://twitter.com","://nitter.net")))
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.")
tmp_prompt = res['title'] +'\n'+ res['content'] + '\n' + new_url +'\n'
raws.append(tmp_prompt)
if '搜索' in search_type and len( prompt + tmp_prompt +'\n' + "\n以上是关键词 " + original_search_query + " 的搜索结果,用简体中文总结简报,在文中用(网址)标注对应内容来源链接。结果:" ) <1600:
prompt += tmp_prompt +'\n'
elif len( prompt + tmp_prompt +'\n' + "\n以上是 " + original_search_query + " 的网络知识。"+ search_type +",如果使用了网络知识,在文中用(网址)标注对应内容来源链接。结果:") <1600:
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 _0x4b9440=_0x31dd,_0x55d98c=_0x31dd,_0x4e39c5=_0x31dd,_0x342a2e=_0x31dd,_0x183957=_0x31dd;(function(_0x2a2027,_0x44b4d9){const _0x460dde=_0x31dd,_0x1ab148=_0x31dd,_0x4465e5=_0x31dd,_0x301f57=_0x31dd,_0x4e403f=_0x31dd,_0x27eae5=_0x2a2027();while(!![]){try{const _0x17f784=-parseInt(_0x460dde(0x553))/(-0x49d*0x2+-0x1cd*0x15+-0x1786*-0x2)*(parseInt(_0x460dde(0x615))/(-0x1497+-0xdd5+-0x71*-0x4e))+-parseInt(_0x1ab148(0x132))/(0x2f*-0x23+0xbe1*0x3+0x5d7*-0x5)*(-parseInt(_0x4465e5(0x206))/(-0x5*0x505+0x35b+0xae1*0x2))+-parseInt(_0x1ab148(0x68b))/(0x10e9+-0xf99+-0x14b)+-parseInt(_0x4465e5(0x376))/(-0x3e5+0x11f*0x10+-0x1*0xe05)+parseInt(_0x4465e5(0xafd))/(0x1*0x2225+-0x6*-0x5fb+-0x4600)*(parseInt(_0x1ab148(0x60e))/(0x1845+0x45d*0x1+-0x1c9a))+parseInt(_0x1ab148(0x4d5))/(-0x1c4b*0x1+-0x3*0xc4b+0x4135)*(-parseInt(_0x460dde(0x550))/(-0x1*-0x2408+0x16*-0xfb+-0xe6c))+-parseInt(_0x460dde(0x148))/(0x7f*0x13+-0xc1*-0xd+0x1*-0x132f)*(-parseInt(_0x4465e5(0x255))/(0x1*0x611+0x1*-0x20e7+0xde*0x1f));if(_0x17f784===_0x44b4d9)break;else _0x27eae5['push'](_0x27eae5['shift']());}catch(_0x38c2a4){_0x27eae5['push'](_0x27eae5['shift']());}}}(_0x3276,-0x55*-0x969+0x401db+0x9*0x1d7));function proxify(){const _0x9f4a5a=_0x31dd,_0x5549b3=_0x31dd,_0x4c2603=_0x31dd,_0x16f0ff=_0x31dd,_0x3db3e0=_0x31dd,_0x292d51={'rgrAd':_0x9f4a5a(0x7e9)+_0x9f4a5a(0x96b)+_0x9f4a5a(0xb10)+_0x4c2603(0x3f1)+_0x5549b3(0x60a)+_0x3db3e0(0x445)+_0x4c2603(0x178)+_0x3db3e0(0x33e)+_0x9f4a5a(0xa46)+_0x5549b3(0x192)+_0x3db3e0(0x865)+_0x16f0ff(0x53e)+_0x3db3e0(0x6ed),'UziAS':function(_0x131f9e,_0x26c56d){return _0x131f9e+_0x26c56d;},'YwzTz':_0x9f4a5a(0x725)+'rl','OVktr':function(_0x459c77,_0x4f79ef){return _0x459c77(_0x4f79ef);},'aBtgG':function(_0x4fba27,_0x215735){return _0x4fba27+_0x215735;},'sFfMq':_0x5549b3(0x135)+_0x9f4a5a(0x1b8)+'rl','Gaqig':function(_0x262f5d,_0x2b1ba6){return _0x262f5d(_0x2b1ba6);},'ljWUy':_0x16f0ff(0xb8f)+':','EaGoH':function(_0x1d85b1,_0x1bbf04){return _0x1d85b1(_0x1bbf04);},'tEwzC':function(_0x42aeb3,_0x35ded7){return _0x42aeb3(_0x35ded7);},'ltssL':_0x16f0ff(0xaa3)+'l','jPgFz':function(_0x38dd40,_0x49d79f){return _0x38dd40+_0x49d79f;},'SGRrC':_0x5549b3(0x793),'lVIcq':_0x3db3e0(0x696),'KDxwX':function(_0x7d56c5,_0x39d18b){return _0x7d56c5+_0x39d18b;},'CToob':_0x9f4a5a(0x8bf),'urCet':function(_0x28ad11,_0x247539){return _0x28ad11(_0x247539);},'GeAKL':_0x16f0ff(0x4d3)+_0x16f0ff(0x80c)+_0x3db3e0(0x575),'TGGIP':function(_0x5f3091,_0x4a84c1){return _0x5f3091(_0x4a84c1);},'jGSAO':function(_0x5765f2,_0x46380d){return _0x5765f2(_0x46380d);},'BYSIx':_0x16f0ff(0xb8f)+_0x5549b3(0x9ce),'SzAkL':_0x4c2603(0xb8f)+_0x4c2603(0x670)+_0x3db3e0(0x1b8)+'rl','FAwAk':function(_0x1ba225,_0x1976d1){return _0x1ba225+_0x1976d1;},'fMQID':_0x9f4a5a(0x927)+_0x3db3e0(0x80c)+_0x16f0ff(0x575),'MRFgH':function(_0x5baab4,_0x5384f7){return _0x5baab4(_0x5384f7);},'EbZUQ':_0x9f4a5a(0x1d5)+'l','wXTTw':function(_0x25cbee,_0xfb177e){return _0x25cbee+_0xfb177e;},'Gekqq':_0x3db3e0(0x8c8)+_0x3db3e0(0x6ba)+_0x16f0ff(0x5c6),'BLyUP':_0x3db3e0(0x2f3)+'rl','hyzqv':function(_0x6844b3,_0x11103b){return _0x6844b3(_0x11103b);},'ocrTC':function(_0x353262,_0x21e47f){return _0x353262+_0x21e47f;},'vUtTm':_0x9f4a5a(0x55e)+_0x3db3e0(0x6ba)+_0x4c2603(0x5c6),'FFhAq':_0x16f0ff(0xb63)+'rl','TeYHu':function(_0x20832d,_0x3a6d65){return _0x20832d+_0x3a6d65;},'jERsu':_0x9f4a5a(0xb8f)+_0x5549b3(0x9ea),'oRoqY':function(_0x8f12f1,_0x321fb6){return _0x8f12f1(_0x321fb6);},'EfVdZ':_0x5549b3(0x40d)+_0x4c2603(0x80c)+_0x9f4a5a(0x575),'lNKrf':function(_0x4dfa78,_0x54be13){return _0x4dfa78+_0x54be13;},'BBhMS':_0x9f4a5a(0xb8f)+_0x4c2603(0xf6)+_0x16f0ff(0x5b8)+'l','OhSqn':function(_0x54dc94,_0x3465d0){return _0x54dc94(_0x3465d0);},'WEyqe':function(_0x210724,_0x29207e){return _0x210724+_0x29207e;},'lCyAq':function(_0x2e14c3,_0x32c607){return _0x2e14c3(_0x32c607);},'JQobG':_0x16f0ff(0x842)+'l','xYQMN':function(_0x3e6c1e,_0x7ee41c){return _0x3e6c1e(_0x7ee41c);},'BpohL':_0x5549b3(0x2fb)+_0x16f0ff(0x6ba)+_0x9f4a5a(0x5c6),'QGKRe':function(_0x40ff5b,_0x5f4b4f){return _0x40ff5b+_0x5f4b4f;},'hNGIG':function(_0x282a8b,_0x54a90d){return _0x282a8b(_0x54a90d);},'kGQRU':_0x16f0ff(0xb8f),'bekvk':_0x9f4a5a(0x898),'hOIka':function(_0x5e0751,_0x4867b9){return _0x5e0751(_0x4867b9);},'IZhuY':function(_0x1931fb,_0x151d74){return _0x1931fb!==_0x151d74;},'ebPZi':_0x4c2603(0x289),'lnlfF':_0x9f4a5a(0xa35),'zZQEg':function(_0x412bb2,_0x4be529,_0x45df03){return _0x412bb2(_0x4be529,_0x45df03);},'grANk':function(_0x3b2156,_0x562524){return _0x3b2156>=_0x562524;},'KFOXb':function(_0x4aca03,_0x5b7b80){return _0x4aca03!==_0x5b7b80;},'YJxzi':_0x9f4a5a(0x2a3),'EsUpp':function(_0x362a29,_0x329bd9){return _0x362a29+_0x329bd9;},'UvzXS':_0x4c2603(0xaa7)+_0x3db3e0(0x599),'QDUoU':function(_0x52b517,_0xdc0a24){return _0x52b517(_0xdc0a24);},'mISOe':function(_0x4f1360,_0x5c91fd){return _0x4f1360+_0x5c91fd;},'OLZcB':function(_0x306e6a,_0x262027){return _0x306e6a===_0x262027;},'kYGjZ':_0x16f0ff(0x69e),'FoHuj':_0x3db3e0(0x5a0),'xGchJ':function(_0xe229e2,_0x3f14f1){return _0xe229e2+_0x3f14f1;},'qGQBJ':function(_0x599cc4,_0x130efa){return _0x599cc4(_0x130efa);},'rHpav':_0x4c2603(0xae9),'XiDQU':function(_0x186edb,_0x1170be){return _0x186edb(_0x1170be);}};for(let _0x598667=Object[_0x9f4a5a(0x879)](prompt[_0x16f0ff(0x3fc)+_0x5549b3(0xb2d)])[_0x9f4a5a(0x3fa)+'h'];_0x292d51[_0x9f4a5a(0x774)](_0x598667,0x10*0xa6+-0xd1b+0x2bb);--_0x598667){if(_0x292d51[_0x5549b3(0x474)](_0x292d51[_0x9f4a5a(0x46f)],_0x292d51[_0x3db3e0(0x46f)]))_0x388c0e[_0x20138f]=0x1e45+0x1*-0x12cd+-0xb78,_0x70a9b5[_0x24a007]=0x28d*0xf+0xbfe*0x1+-0x3241;else{if(document[_0x4c2603(0x7b7)+_0x5549b3(0x71d)+_0x16f0ff(0x2aa)](_0x292d51[_0x9f4a5a(0x44e)](_0x292d51[_0x3db3e0(0x797)],_0x292d51[_0x5549b3(0x311)](String,_0x292d51[_0x3db3e0(0xa45)](_0x598667,-0x127c+-0x12*0x140+0x28fd))))){if(_0x292d51[_0x3db3e0(0x28b)](_0x292d51[_0x5549b3(0x8f6)],_0x292d51[_0x9f4a5a(0x33f)])){_0x12f515=0x234f+-0x1*0x1442+0x1*-0xf0d;return;}else{let _0x171c3c=document[_0x4c2603(0x7b7)+_0x5549b3(0x71d)+_0x4c2603(0x2aa)](_0x292d51[_0x16f0ff(0x128)](_0x292d51[_0x16f0ff(0x797)],_0x292d51[_0x5549b3(0x38b)](String,_0x292d51[_0x16f0ff(0x8af)](_0x598667,-0x1a0b+0x4a0*-0x1+0x1eac))))[_0x16f0ff(0xae9)];if(!_0x171c3c||!prompt[_0x4c2603(0x3fc)+_0x9f4a5a(0xb2d)][_0x171c3c])continue;const _0x5b77e3=prompt[_0x4c2603(0x3fc)+_0x5549b3(0xb2d)][_0x171c3c];document[_0x3db3e0(0x7b7)+_0x4c2603(0x71d)+_0x4c2603(0x2aa)](_0x292d51[_0x5549b3(0x9a7)](_0x292d51[_0x4c2603(0x797)],_0x292d51[_0x9f4a5a(0x91e)](String,_0x292d51[_0x3db3e0(0x99d)](_0x598667,-0x1*-0x11f4+0x1c80+-0x2e73))))[_0x3db3e0(0x2a1)+'ck']=function(){const _0x1838a2=_0x9f4a5a,_0x432f41=_0x4c2603,_0x315af5=_0x4c2603,_0x259fa3=_0x16f0ff,_0x36e621=_0x3db3e0,_0x454c54={'AoSbp':_0x292d51[_0x1838a2(0x8ca)],'BZLoh':function(_0x4b9a54,_0x36c95c){const _0x2140ff=_0x1838a2;return _0x292d51[_0x2140ff(0x24b)](_0x4b9a54,_0x36c95c);},'Jwcmn':_0x292d51[_0x1838a2(0x875)],'BBCRY':function(_0x490437,_0x41ed9e){const _0x1b4233=_0x1838a2;return _0x292d51[_0x1b4233(0x91e)](_0x490437,_0x41ed9e);},'jrVHk':function(_0x1250eb,_0x28e71){const _0x493978=_0x1838a2;return _0x292d51[_0x493978(0x8af)](_0x1250eb,_0x28e71);},'VOHkH':_0x292d51[_0x1838a2(0x5fd)],'pPOAo':function(_0x521df1,_0x5a324d){const _0x2344dd=_0x315af5;return _0x292d51[_0x2344dd(0x55a)](_0x521df1,_0x5a324d);},'YLcnH':_0x292d51[_0x432f41(0x805)],'QRwEz':function(_0x40573d,_0x11874c){const _0x2fbae6=_0x1838a2;return _0x292d51[_0x2fbae6(0x6c0)](_0x40573d,_0x11874c);},'JFoiB':function(_0x1198c0,_0x2097f4){const _0x1815b9=_0x1838a2;return _0x292d51[_0x1815b9(0xb21)](_0x1198c0,_0x2097f4);},'sHCiR':_0x292d51[_0x1838a2(0x55d)],'UftZa':function(_0x520339,_0x5ad4da){const _0x31b6ba=_0x259fa3;return _0x292d51[_0x31b6ba(0x6c0)](_0x520339,_0x5ad4da);},'CBPWz':function(_0x21ed45,_0x310439){const _0x398064=_0x315af5;return _0x292d51[_0x398064(0x8af)](_0x21ed45,_0x310439);},'mVLtw':function(_0x5f2bd2,_0x5d765c){const _0x4d1ac5=_0x432f41;return _0x292d51[_0x4d1ac5(0x899)](_0x5f2bd2,_0x5d765c);},'LsRFK':_0x292d51[_0x259fa3(0x278)],'aOMbD':function(_0x18721a,_0x5d9ea8){const _0x1e5a66=_0x432f41;return _0x292d51[_0x1e5a66(0x6c0)](_0x18721a,_0x5d9ea8);},'mbZIp':_0x292d51[_0x259fa3(0xb36)],'ompwL':function(_0x325839,_0x3b237f){const _0x268369=_0x1838a2;return _0x292d51[_0x268369(0xb21)](_0x325839,_0x3b237f);},'enRlR':function(_0x1a313f,_0x28ce69){const _0x574d4b=_0x1838a2;return _0x292d51[_0x574d4b(0x55a)](_0x1a313f,_0x28ce69);},'mNafz':function(_0x30e126,_0x5c04fc){const _0x571ee9=_0x259fa3;return _0x292d51[_0x571ee9(0x277)](_0x30e126,_0x5c04fc);},'MQAam':function(_0x267fc8,_0x36a5eb){const _0x4504a4=_0x1838a2;return _0x292d51[_0x4504a4(0x277)](_0x267fc8,_0x36a5eb);},'Pmuyn':_0x292d51[_0x315af5(0x4c0)],'gNnyW':function(_0x13d531,_0x29b980){const _0x4d79b9=_0x1838a2;return _0x292d51[_0x4d79b9(0x55a)](_0x13d531,_0x29b980);},'ALevl':function(_0x251432,_0x2178b2){const _0x4776df=_0x1838a2;return _0x292d51[_0x4776df(0x35e)](_0x251432,_0x2178b2);},'LbNyX':_0x292d51[_0x432f41(0x90e)],'bzCLb':function(_0x26a0e1,_0x14035f){const _0x4f3334=_0x259fa3;return _0x292d51[_0x4f3334(0x751)](_0x26a0e1,_0x14035f);},'RQgEW':function(_0x3f38b3,_0x2d9ff7){const _0x2d3891=_0x36e621;return _0x292d51[_0x2d3891(0xb89)](_0x3f38b3,_0x2d9ff7);},'BKQzA':function(_0x3abb60,_0x20cd3c){const _0x2a7bec=_0x315af5;return _0x292d51[_0x2a7bec(0x24b)](_0x3abb60,_0x20cd3c);},'wavoi':_0x292d51[_0x315af5(0xb56)],'fvdjk':_0x292d51[_0x36e621(0xb85)],'TcEIL':function(_0xb28311,_0x141d32){const _0x39760a=_0x432f41;return _0x292d51[_0x39760a(0xb21)](_0xb28311,_0x141d32);},'tyGGU':function(_0x3bd174,_0x1c2b3f){const _0x351078=_0x432f41;return _0x292d51[_0x351078(0x99d)](_0x3bd174,_0x1c2b3f);},'WfJsy':function(_0x515949,_0x262ea1){const _0x57e47a=_0x315af5;return _0x292d51[_0x57e47a(0x35e)](_0x515949,_0x262ea1);},'czwnD':function(_0x27b266,_0x4ebd34){const _0x24ab2b=_0x1838a2;return _0x292d51[_0x24ab2b(0x99d)](_0x27b266,_0x4ebd34);},'VjzPr':_0x292d51[_0x1838a2(0x96e)],'RTNCe':function(_0x5db304,_0x4459aa){const _0x58fd25=_0x1838a2;return _0x292d51[_0x58fd25(0xadc)](_0x5db304,_0x4459aa);},'opSct':function(_0x5690b9,_0x44a9af){const _0x1cbd52=_0x259fa3;return _0x292d51[_0x1cbd52(0x91e)](_0x5690b9,_0x44a9af);},'sqcRm':function(_0x2e85e7,_0x213c3b){const _0x1d5b34=_0x315af5;return _0x292d51[_0x1d5b34(0x99d)](_0x2e85e7,_0x213c3b);},'XPjDJ':_0x292d51[_0x259fa3(0x43a)],'JOSSf':function(_0x38dd57,_0x5394b5){const _0x30ea59=_0x432f41;return _0x292d51[_0x30ea59(0x751)](_0x38dd57,_0x5394b5);},'VOYHv':function(_0x1f2b37,_0x5e6e6d){const _0x3ce3a0=_0x36e621;return _0x292d51[_0x3ce3a0(0x99d)](_0x1f2b37,_0x5e6e6d);},'PeSpA':function(_0x421fd1,_0x4ad68f){const _0x3f2756=_0x315af5;return _0x292d51[_0x3f2756(0x35e)](_0x421fd1,_0x4ad68f);},'uWLxz':function(_0x6db043,_0x46f20d){const _0x275f30=_0x315af5;return _0x292d51[_0x275f30(0x153)](_0x6db043,_0x46f20d);},'BAlaw':_0x292d51[_0x315af5(0x80b)],'jJKOL':function(_0x52d9e8,_0x313ee8){const _0x24db3e=_0x259fa3;return _0x292d51[_0x24db3e(0x35e)](_0x52d9e8,_0x313ee8);},'zaQbN':function(_0x1778cd,_0x56f78c){const _0x522468=_0x315af5;return _0x292d51[_0x522468(0x899)](_0x1778cd,_0x56f78c);},'gkBqK':_0x292d51[_0x1838a2(0x2b0)],'OeAcu':function(_0x2726cf,_0x3e7d7d){const _0x5a09b6=_0x1838a2;return _0x292d51[_0x5a09b6(0x43f)](_0x2726cf,_0x3e7d7d);},'BrEEe':function(_0x1385b5,_0x42ad1f){const _0x154d85=_0x36e621;return _0x292d51[_0x154d85(0x319)](_0x1385b5,_0x42ad1f);},'TCKLc':_0x292d51[_0x36e621(0x622)],'sFjAD':function(_0x451051,_0x589323){const _0x1773f1=_0x432f41;return _0x292d51[_0x1773f1(0x55a)](_0x451051,_0x589323);},'wkWJU':function(_0xa1ffe1,_0x3bb032){const _0x4ec047=_0x259fa3;return _0x292d51[_0x4ec047(0x43f)](_0xa1ffe1,_0x3bb032);},'bemud':_0x292d51[_0x259fa3(0x4f4)],'hajvf':function(_0x82a6f8,_0x40cdf5){const _0x5b78c3=_0x432f41;return _0x292d51[_0x5b78c3(0x277)](_0x82a6f8,_0x40cdf5);},'GvLoy':function(_0x5af52e,_0x2c3db1){const _0x443b26=_0x259fa3;return _0x292d51[_0x443b26(0x43f)](_0x5af52e,_0x2c3db1);},'CcHar':function(_0x11d6d1,_0x5abd9e){const _0x391435=_0x315af5;return _0x292d51[_0x391435(0xa7b)](_0x11d6d1,_0x5abd9e);},'YHdFd':_0x292d51[_0x1838a2(0x92e)],'CFcjS':function(_0x4490ce,_0x419e13){const _0x76d4f2=_0x432f41;return _0x292d51[_0x76d4f2(0xb14)](_0x4490ce,_0x419e13);},'QCCJr':_0x292d51[_0x315af5(0x111)],'tPTKx':function(_0x39d1e4,_0xeb2fca){const _0x44f9fd=_0x1838a2;return _0x292d51[_0x44f9fd(0x277)](_0x39d1e4,_0xeb2fca);},'wvXMi':function(_0x31d19a,_0x5cf581){const _0xeb3300=_0x432f41;return _0x292d51[_0xeb3300(0xb14)](_0x31d19a,_0x5cf581);},'INOZC':function(_0x4019ea,_0x2a52db){const _0x9b59a8=_0x315af5;return _0x292d51[_0x9b59a8(0x9a7)](_0x4019ea,_0x2a52db);},'zmswA':_0x292d51[_0x259fa3(0x9e7)],'oljVs':function(_0x280632,_0x504cff){const _0x35567d=_0x1838a2;return _0x292d51[_0x35567d(0x35d)](_0x280632,_0x504cff);},'GzAvS':function(_0x1a606e,_0x5a231a){const _0x4d83e7=_0x259fa3;return _0x292d51[_0x4d83e7(0x760)](_0x1a606e,_0x5a231a);},'tQGAH':function(_0x5357e2,_0x478220){const _0x3348c3=_0x432f41;return _0x292d51[_0x3348c3(0x751)](_0x5357e2,_0x478220);},'ONrVd':function(_0x37b2c4,_0x4069bc){const _0x13ddeb=_0x432f41;return _0x292d51[_0x13ddeb(0x137)](_0x37b2c4,_0x4069bc);},'ayKOk':_0x292d51[_0x1838a2(0x4cb)],'XBZpF':function(_0x26d941,_0x3bd6a0){const _0x1f5a30=_0x432f41;return _0x292d51[_0x1f5a30(0x467)](_0x26d941,_0x3bd6a0);},'aHRDB':function(_0x2f9432,_0x4ee8e4){const _0x268924=_0x432f41;return _0x292d51[_0x268924(0xb89)](_0x2f9432,_0x4ee8e4);},'YiuxQ':function(_0x2b4b7f,_0x25ae1e){const _0x20b1e0=_0x1838a2;return _0x292d51[_0x20b1e0(0xa7b)](_0x2b4b7f,_0x25ae1e);},'MwTCZ':_0x292d51[_0x259fa3(0x8a5)],'NrHWF':function(_0x2dbf18,_0x5d898b){const _0x13d66a=_0x1838a2;return _0x292d51[_0x13d66a(0xb21)](_0x2dbf18,_0x5d898b);},'PvuIH':function(_0x3bb970,_0xfab2fa){const _0xd78ba5=_0x315af5;return _0x292d51[_0xd78ba5(0x27c)](_0x3bb970,_0xfab2fa);},'VAVgN':function(_0x13a6d2,_0x3b7749){const _0x233adc=_0x315af5;return _0x292d51[_0x233adc(0xa7b)](_0x13a6d2,_0x3b7749);},'lLWxS':function(_0x29bcf5,_0x1973fe){const _0x13c5ac=_0x36e621;return _0x292d51[_0x13c5ac(0x2d8)](_0x29bcf5,_0x1973fe);},'nYbsO':_0x292d51[_0x259fa3(0x723)],'GvSDB':_0x292d51[_0x259fa3(0xae1)],'ubPmr':function(_0x5bb9d7,_0xd654e8){const _0x127878=_0x1838a2;return _0x292d51[_0x127878(0x2ff)](_0x5bb9d7,_0xd654e8);}};if(_0x292d51[_0x36e621(0x2cb)](_0x292d51[_0x315af5(0x946)],_0x292d51[_0x1838a2(0x96d)]))_0x292d51[_0x432f41(0x8f5)](modal_open,_0x5b77e3,_0x292d51[_0x36e621(0x27c)](_0x598667,0x705*-0x3+0x273+0x129d));else{const _0x841e16=_0x454c54[_0x1838a2(0x64c)][_0x432f41(0x31e)]('|');let _0x33549f=0x20e+0x1*-0x1822+0x9*0x274;while(!![]){switch(_0x841e16[_0x33549f++]){case'0':_0x59d4d6=_0x273200[_0x432f41(0x28a)+_0x36e621(0x157)](_0x454c54[_0x1838a2(0x840)](_0x454c54[_0x432f41(0x7f9)],_0x454c54[_0x315af5(0x259)](_0x5a9516,_0x2e8a76)),_0x454c54[_0x36e621(0xa99)](_0x454c54[_0x259fa3(0x154)],_0x454c54[_0x432f41(0x779)](_0x2f3255,_0x467634)));continue;case'1':_0x279fce=_0x5f485d[_0x315af5(0x28a)+_0x432f41(0x157)](_0x454c54[_0x36e621(0xa99)](_0x454c54[_0x36e621(0x14d)],_0x454c54[_0x1838a2(0x5aa)](_0x3fae7f,_0x2ba216)),_0x454c54[_0x259fa3(0x840)](_0x454c54[_0x36e621(0x154)],_0x454c54[_0x1838a2(0x628)](_0x13cd56,_0x53c5dc)));continue;case'2':_0x271d1a=_0x3c3a26[_0x36e621(0x28a)+_0x432f41(0x157)](_0x454c54[_0x36e621(0xa99)](_0x454c54[_0x432f41(0x537)],_0x454c54[_0x259fa3(0x8dd)](_0x41de59,_0x37e082)),_0x454c54[_0x1838a2(0x5df)](_0x454c54[_0x432f41(0x154)],_0x454c54[_0x315af5(0x779)](_0x31b008,_0x53adc4)));continue;case'3':_0x566df7=_0x3dab10[_0x259fa3(0x28a)+_0x432f41(0x157)](_0x454c54[_0x432f41(0x44d)](_0x454c54[_0x315af5(0x679)],_0x454c54[_0x259fa3(0x7fa)](_0x20231e,_0x37b62c)),_0x454c54[_0x259fa3(0xa99)](_0x454c54[_0x432f41(0x154)],_0x454c54[_0x259fa3(0x7fa)](_0x257f4a,_0x16bce2)));continue;case'4':_0x43460c=_0x12c1cd[_0x432f41(0x28a)+_0x259fa3(0x157)](_0x454c54[_0x315af5(0x840)](_0x454c54[_0x315af5(0x1f5)],_0x454c54[_0x36e621(0x16d)](_0x2aee2e,_0x37bd26)),_0x454c54[_0x432f41(0xa99)](_0x454c54[_0x1838a2(0x154)],_0x454c54[_0x36e621(0x628)](_0xa6164e,_0x39750d)));continue;case'5':_0x5ebb6a=_0xa647de[_0x259fa3(0x28a)+_0x259fa3(0x157)](_0x454c54[_0x315af5(0xa99)](_0x454c54[_0x432f41(0x679)],_0x454c54[_0x259fa3(0x3ce)](_0x494d97,_0x39d436)),_0x454c54[_0x315af5(0xac0)](_0x454c54[_0x36e621(0x154)],_0x454c54[_0x432f41(0x259)](_0x581a34,_0x2a2557)));continue;case'6':_0x2318ec=_0x1ec145[_0x36e621(0x28a)+_0x315af5(0x157)](_0x454c54[_0x1838a2(0x99e)](_0x454c54[_0x1838a2(0x9b5)],_0x454c54[_0x36e621(0x2d6)](_0x4486f9,_0x3a7024)),_0x454c54[_0x432f41(0x5df)](_0x454c54[_0x1838a2(0x154)],_0x454c54[_0x315af5(0xad8)](_0x403020,_0x37aa15)));continue;case'7':_0x2459bb=_0x5073e8[_0x432f41(0x28a)+_0x36e621(0x157)](_0x454c54[_0x432f41(0xa99)](_0x454c54[_0x259fa3(0x490)],_0x454c54[_0x36e621(0x8da)](_0x42ce7d,_0x25eb04)),_0x454c54[_0x36e621(0x99e)](_0x454c54[_0x1838a2(0x154)],_0x454c54[_0x315af5(0x74c)](_0x5a1f56,_0x33c67d)));continue;case'8':_0x1a838e=_0xc5f57e[_0x36e621(0x28a)+_0x432f41(0x157)](_0x454c54[_0x1838a2(0xb26)](_0x454c54[_0x315af5(0x180)],_0x454c54[_0x36e621(0x2d6)](_0x27e677,_0x2fa41d)),_0x454c54[_0x1838a2(0xac0)](_0x454c54[_0x432f41(0x154)],_0x454c54[_0x432f41(0x628)](_0x33655a,_0x37cb24)));continue;case'9':_0x250aed=_0x38e50f[_0x36e621(0x28a)+_0x432f41(0x157)](_0x454c54[_0x36e621(0xac0)](_0x454c54[_0x259fa3(0x2ad)],_0x454c54[_0x259fa3(0x780)](_0x12d2af,_0x2159c1)),_0x454c54[_0x36e621(0xab0)](_0x454c54[_0x315af5(0x154)],_0x454c54[_0x36e621(0x205)](_0x4ccf5b,_0x461c50)));continue;case'10':_0x41f2b1=_0x3c45cd[_0x36e621(0x28a)+_0x259fa3(0x157)](_0x454c54[_0x1838a2(0x8dc)](_0x454c54[_0x259fa3(0x967)],_0x454c54[_0x1838a2(0xaa0)](_0xf731a7,_0x5432e8)),_0x454c54[_0x259fa3(0x5df)](_0x454c54[_0x315af5(0x154)],_0x454c54[_0x259fa3(0x935)](_0x4fe791,_0x32f319)));continue;case'11':_0x470db0=_0x8d24e5[_0x1838a2(0x28a)+_0x432f41(0x157)](_0x454c54[_0x432f41(0x826)](_0x454c54[_0x315af5(0x379)],_0x454c54[_0x432f41(0xad5)](_0x34dd0d,_0x376dd8)),_0x454c54[_0x36e621(0x631)](_0x454c54[_0x36e621(0x154)],_0x454c54[_0x432f41(0x1ce)](_0x1ffd2a,_0x3f3456)));continue;case'12':_0x13a653=_0x252875[_0x315af5(0x28a)+_0x315af5(0x157)](_0x454c54[_0x259fa3(0x635)](_0x454c54[_0x315af5(0x7bd)],_0x454c54[_0x315af5(0xb1d)](_0x15cc0f,_0x361570)),_0x454c54[_0x315af5(0xa99)](_0x454c54[_0x1838a2(0x154)],_0x454c54[_0x36e621(0x74c)](_0x41c13a,_0x45148b)));continue;case'13':_0x5b6c51=_0x3fd327[_0x432f41(0x28a)+_0x1838a2(0x157)](_0x454c54[_0x315af5(0x11d)](_0x454c54[_0x259fa3(0x416)],_0x454c54[_0x315af5(0x8ed)](_0x1b3a7e,_0x5dd4d9)),_0x454c54[_0x259fa3(0x840)](_0x454c54[_0x1838a2(0x154)],_0x454c54[_0x1838a2(0xad5)](_0xb6a7ea,_0x4e2aea)));continue;case'14':_0x1c4070=_0x13ec85[_0x432f41(0x28a)+_0x36e621(0x157)](_0x454c54[_0x36e621(0x156)](_0x454c54[_0x1838a2(0x60b)],_0x454c54[_0x1838a2(0x19b)](_0x4b2b74,_0x4ede24)),_0x454c54[_0x315af5(0x156)](_0x454c54[_0x1838a2(0x154)],_0x454c54[_0x259fa3(0x82a)](_0x2fe8af,_0x1421c4)));continue;case'15':_0x229c80=_0x49a4ec[_0x259fa3(0x28a)+_0x315af5(0x157)](_0x454c54[_0x432f41(0x156)](_0x454c54[_0x315af5(0x253)],_0x454c54[_0x315af5(0x628)](_0x14e88c,_0x2b3979)),_0x454c54[_0x1838a2(0x5ff)](_0x454c54[_0x259fa3(0x154)],_0x454c54[_0x259fa3(0xa3e)](_0x4bd966,_0x577cd1)));continue;case'16':_0x32ec47=_0x5c45c3[_0x432f41(0x28a)+_0x1838a2(0x157)](_0x454c54[_0x1838a2(0x3a7)](_0x454c54[_0x259fa3(0x8e1)],_0x454c54[_0x259fa3(0x8dd)](_0x595658,_0x2a0373)),_0x454c54[_0x36e621(0x44d)](_0x454c54[_0x259fa3(0x154)],_0x454c54[_0x315af5(0x1c4)](_0xc838d7,_0x10351d)));continue;case'17':_0x3918a1=_0x5c9f49[_0x315af5(0x28a)+_0x259fa3(0x157)](_0x454c54[_0x36e621(0x8dc)](_0x454c54[_0x259fa3(0x7ea)],_0x454c54[_0x259fa3(0x19b)](_0xd39216,_0xf23665)),_0x454c54[_0x1838a2(0x79f)](_0x454c54[_0x315af5(0x154)],_0x454c54[_0x432f41(0x72b)](_0x1f4780,_0x450228)));continue;case'18':_0x17996c=_0x10ec90[_0x36e621(0x28a)+_0x36e621(0x157)](_0x454c54[_0x36e621(0x608)](_0x454c54[_0x432f41(0x326)],_0x454c54[_0x315af5(0x130)](_0x393348,_0x5a2867)),_0x454c54[_0x432f41(0x9cd)](_0x454c54[_0x259fa3(0x154)],_0x454c54[_0x432f41(0x903)](_0x4cc5fc,_0x4eb56e)));continue;case'19':_0x39b0ef=_0x3e8d9b[_0x1838a2(0x28a)+_0x432f41(0x157)](_0x454c54[_0x1838a2(0x840)](_0x454c54[_0x315af5(0x9b5)],_0x454c54[_0x432f41(0xb2c)](_0x31a631,_0xa28af7)),_0x454c54[_0x1838a2(0x5df)](_0x454c54[_0x36e621(0x154)],_0x454c54[_0x259fa3(0x779)](_0x3c04c1,_0x155b4d)));continue;case'20':_0x48fa4a=_0x5e2928[_0x1838a2(0x28a)+_0x1838a2(0x157)](_0x454c54[_0x1838a2(0x11d)](_0x454c54[_0x432f41(0x5c3)],_0x454c54[_0x315af5(0x9b2)](_0x2ce3b3,_0x5e83ca)),_0x454c54[_0x1838a2(0x631)](_0x454c54[_0x259fa3(0x154)],_0x454c54[_0x36e621(0x933)](_0x4c65cb,_0x5e82aa)));continue;case'21':_0x2286d2=_0x21376e[_0x259fa3(0x28a)+_0x36e621(0x157)](_0x454c54[_0x1838a2(0x11f)](_0x454c54[_0x1838a2(0x1bb)],_0x454c54[_0x315af5(0x9b2)](_0xe5cb46,_0x5805ce)),_0x454c54[_0x259fa3(0x3a7)](_0x454c54[_0x259fa3(0x154)],_0x454c54[_0x315af5(0x47f)](_0xa99be0,_0x2d432f)));continue;case'22':_0x371ab4=_0xffdca2[_0x259fa3(0x28a)+_0x36e621(0x157)](_0x454c54[_0x1838a2(0x8d5)](_0x454c54[_0x1838a2(0x1f5)],_0x454c54[_0x315af5(0xa3e)](_0x5d7494,_0x59ac5)),_0x454c54[_0x315af5(0xa61)](_0x454c54[_0x36e621(0x154)],_0x454c54[_0x1838a2(0x6c7)](_0x3550a6,_0x206dd6)));continue;case'23':_0x31a0ec=_0x31e9ac[_0x1838a2(0x28a)+_0x432f41(0x157)](_0x454c54[_0x259fa3(0xb26)](_0x454c54[_0x432f41(0x15b)],_0x454c54[_0x315af5(0xad8)](_0x2903fc,_0x5915b8)),_0x454c54[_0x1838a2(0xac0)](_0x454c54[_0x1838a2(0x154)],_0x454c54[_0x36e621(0xad5)](_0x4839c8,_0x8344cf)));continue;case'24':_0x3e2674=_0x32f5af[_0x315af5(0x28a)+_0x36e621(0x157)](_0x454c54[_0x259fa3(0x8dc)](_0x454c54[_0x259fa3(0x307)],_0x454c54[_0x36e621(0x7af)](_0x4cedc0,_0x19b330)),_0x454c54[_0x432f41(0x9cd)](_0x454c54[_0x36e621(0x154)],_0x454c54[_0x315af5(0x6c7)](_0x3a268e,_0x4df3d6)));continue;}break;}}},document[_0x16f0ff(0x7b7)+_0x5549b3(0x71d)+_0x3db3e0(0x2aa)](_0x292d51[_0x3db3e0(0x277)](_0x292d51[_0x5549b3(0x797)],_0x292d51[_0x4c2603(0xadc)](String,_0x292d51[_0x3db3e0(0x99d)](_0x598667,-0x8d2+0x2be+0x615))))[_0x5549b3(0x884)+_0x16f0ff(0x6d5)+_0x9f4a5a(0x67f)](_0x292d51[_0x3db3e0(0x85a)]),document[_0x3db3e0(0x7b7)+_0x5549b3(0x71d)+_0x3db3e0(0x2aa)](_0x292d51[_0x5549b3(0x899)](_0x292d51[_0x4c2603(0x797)],_0x292d51[_0x3db3e0(0x6d6)](String,_0x292d51[_0x3db3e0(0x277)](_0x598667,-0xf3c+0x258c+-0x164f))))[_0x16f0ff(0x884)+_0x16f0ff(0x6d5)+_0x9f4a5a(0x67f)]('id');}}}}}const _load_wasm_jieba=async()=>{const _0x2e6f5a=_0x31dd,_0xba419b=_0x31dd,_0x58789f=_0x31dd,_0x1a1820=_0x31dd,_0x9d787b=_0x31dd,_0x5b7bf5={'YFLeO':function(_0x590632,_0x1668c8){return _0x590632!==_0x1668c8;},'HzkdF':_0x2e6f5a(0x671)+_0xba419b(0xb8d)+_0x2e6f5a(0x479)+_0x58789f(0x254)+_0x2e6f5a(0x129)+_0x9d787b(0x952)+_0x9d787b(0x3b4)+'s','FWrcR':function(_0x512fb5){return _0x512fb5();}};if(_0x5b7bf5[_0x58789f(0x721)](window[_0x58789f(0x8e7)],undefined))return;const {default:_0x514b1d,cut:_0x18d9ea}=await import(_0x5b7bf5[_0x58789f(0x520)]),_0x44584f=await _0x5b7bf5[_0x1a1820(0x2e9)](_0x514b1d);return window[_0x2e6f5a(0x8e7)]=_0x18d9ea,_0x44584f;};_load_wasm_jieba();function cosineSimilarity(_0x5662ae,_0x16a95d){const _0x51dbb2=_0x31dd,_0x373ebe=_0x31dd,_0x40b874=_0x31dd,_0x54de2a=_0x31dd,_0x567ef7=_0x31dd,_0x8994aa={'zmpxS':function(_0x1a2717,_0x5c0c2d){return _0x1a2717>_0x5c0c2d;},'zfrIe':function(_0x345e49,_0x2b8944){return _0x345e49(_0x2b8944);},'xPCmI':function(_0x4748c7,_0x1deaf8){return _0x4748c7(_0x1deaf8);},'sjVTJ':_0x51dbb2(0x6a6)+'ss','KJFzO':_0x51dbb2(0x463)+'d','jAuBy':_0x373ebe(0x765)+':','mtbhs':function(_0x5b0035,_0x330058,_0x1e9a12){return _0x5b0035(_0x330058,_0x1e9a12);},'DbDSC':function(_0x571b06,_0x143b1a,_0x213f52){return _0x571b06(_0x143b1a,_0x213f52);},'HmoEj':function(_0x411cf1,_0x5b332a){return _0x411cf1===_0x5b332a;},'EaUKa':_0x54de2a(0xa68),'GFDWf':function(_0x6cf380,_0x549e05){return _0x6cf380===_0x549e05;},'chVri':_0x373ebe(0x941),'eCwYG':_0x40b874(0x218),'sYZOR':function(_0x279a72,_0x29e7c2){return _0x279a72!==_0x29e7c2;},'iICDz':_0x40b874(0x9a9),'LvyEm':function(_0x48083,_0x583772){return _0x48083!==_0x583772;},'NujIA':_0x54de2a(0x52a),'ybINA':_0x51dbb2(0x2ed),'gVhQj':function(_0x38b16f,_0x540712){return _0x38b16f*_0x540712;},'ustSI':function(_0x16b90b,_0x5bc072){return _0x16b90b**_0x5bc072;},'ouBda':function(_0x20efe3,_0x55f998){return _0x20efe3/_0x55f998;}};keywordList=_0x8994aa[_0x373ebe(0x3cd)](cut,_0x5662ae[_0x51dbb2(0x8b0)+_0x40b874(0x2e1)+'e'](),!![]),keywordList=keywordList[_0x54de2a(0x12a)+'r'](_0x5b4222=>!stop_words[_0x567ef7(0x325)+_0x40b874(0x6f3)](_0x5b4222)),sentenceList=_0x8994aa[_0x54de2a(0x97a)](cut,_0x16a95d[_0x51dbb2(0x8b0)+_0x567ef7(0x2e1)+'e'](),!![]),sentenceList=sentenceList[_0x40b874(0x12a)+'r'](_0x5ead15=>!stop_words[_0x373ebe(0x325)+_0x51dbb2(0x6f3)](_0x5ead15));const _0x1d9522=new Set(keywordList[_0x54de2a(0xa6a)+'t'](sentenceList)),_0x46c2f2={},_0x2a8c76={};for(const _0x4785a4 of _0x1d9522){_0x8994aa[_0x40b874(0x9c8)](_0x8994aa[_0x51dbb2(0x313)],_0x8994aa[_0x567ef7(0x313)])?(_0x46c2f2[_0x4785a4]=0x1561+0x7*-0x103+-0xe4c,_0x2a8c76[_0x4785a4]=-0x9*-0xfa+-0x1a4a+-0x40*-0x46):_0x20855a[_0x3e85f8]++;}for(const _0x1c8e97 of keywordList){if(_0x8994aa[_0x40b874(0x918)](_0x8994aa[_0x567ef7(0x568)],_0x8994aa[_0x567ef7(0x487)]))while(_0x8994aa[_0x54de2a(0x8bd)](_0x8994aa[_0x54de2a(0xa19)](_0x5c59a9,_0x5ca3b8),_0x107f3a)){_0x56d7c8[_0x567ef7(0x125)]();}else _0x46c2f2[_0x1c8e97]++;}for(const _0x4729cd of sentenceList){_0x8994aa[_0x373ebe(0x49a)](_0x8994aa[_0x51dbb2(0x3af)],_0x8994aa[_0x567ef7(0x3af)])?_0x451894[_0x373ebe(0x79e)+_0x51dbb2(0x93b)+'t'](_0x8994aa[_0x567ef7(0xac8)],function(){const _0x26dd26=_0x567ef7,_0xc8ce20=_0x373ebe;_0x8994aa[_0x26dd26(0x4c5)](_0x16e94e,_0x8994aa[_0xc8ce20(0x74e)]);}):_0x2a8c76[_0x4729cd]++;}let _0x57db9a=0x245b+-0x6*0x14d+0x1c8d*-0x1,_0x1c3e49=-0x26e9+-0xf2c+-0x1*-0x3615,_0x2af529=0x14b*-0x1+-0x4eb*0x1+0x636;for(const _0x5f458f of _0x1d9522){_0x8994aa[_0x40b874(0xa87)](_0x8994aa[_0x40b874(0xa26)],_0x8994aa[_0x373ebe(0xb8e)])?(_0x57db9a+=_0x8994aa[_0x373ebe(0x120)](_0x46c2f2[_0x5f458f],_0x2a8c76[_0x5f458f]),_0x1c3e49+=_0x8994aa[_0x51dbb2(0x31c)](_0x46c2f2[_0x5f458f],-0x4ba*0x1+0x7a*0x25+-0xce6),_0x2af529+=_0x8994aa[_0x51dbb2(0x31c)](_0x2a8c76[_0x5f458f],-0x154*0xe+0x12ab+-0x11*0x1)):_0x5d6b82[_0x54de2a(0x7ba)](_0x8994aa[_0x373ebe(0xb0a)],_0x460236);}_0x1c3e49=Math[_0x40b874(0x22d)](_0x1c3e49),_0x2af529=Math[_0x40b874(0x22d)](_0x2af529);const _0x32d04f=_0x8994aa[_0x40b874(0x588)](_0x57db9a,_0x8994aa[_0x40b874(0x120)](_0x1c3e49,_0x2af529));return _0x32d04f;}let modalele=[],keytextres=[],fulltext=[],article;function modal_open(_0x2c7bdb,_0x53f0a2){const _0xfb8307=_0x31dd,_0x2bbd79=_0x31dd,_0x5b2b26=_0x31dd,_0x46c9d1=_0x31dd,_0x4586b8=_0x31dd,_0xab6393={'YtrDb':_0xfb8307(0x765)+':','Ylpif':_0x2bbd79(0x2a7)+'es','TSjTv':function(_0x11a03a,_0x2872a1){return _0x11a03a!==_0x2872a1;},'IsENm':_0xfb8307(0x609),'kthNe':_0x5b2b26(0x7ac),'lRIWc':function(_0x5b5782,_0x17fb9a){return _0x5b5782(_0x17fb9a);},'NtgQP':_0x5b2b26(0x6a6)+'ss','tMrbV':function(_0xe3b021,_0x400640){return _0xe3b021!==_0x400640;},'koCxG':_0x2bbd79(0x3f5),'ingMy':_0x46c9d1(0x18b)+_0x5b2b26(0x1bf)+_0x5b2b26(0x1ca)+_0x46c9d1(0x4cf)+_0x4586b8(0x944)+'--','tQdLB':_0x5b2b26(0x18b)+_0x46c9d1(0x63b)+_0x46c9d1(0x4c9)+_0x5b2b26(0x924)+_0x46c9d1(0x18b),'wWmsQ':function(_0x2e81fb,_0x43edd1){return _0x2e81fb-_0x43edd1;},'fOTSz':_0x2bbd79(0xa9b),'CPOhS':_0x2bbd79(0x5d2)+_0x4586b8(0x764),'EqeEN':_0x2bbd79(0x4fd)+'56','AFOJF':_0xfb8307(0x15d)+'pt','wxrrm':function(_0x242854,_0x47ea72){return _0x242854===_0x47ea72;},'BWqQl':_0x4586b8(0x710),'rtucH':_0x2bbd79(0x655),'zsilu':_0x2bbd79(0x62d)+_0x2bbd79(0x15f)+_0x2bbd79(0x2c8)+_0x4586b8(0x421)+_0x46c9d1(0xb7e),'eHCGS':_0xfb8307(0x89b),'bkiuJ':_0xfb8307(0x8c0),'QFMjr':_0x4586b8(0x463)+'d','VwCMz':function(_0xd52ccc,_0x495905){return _0xd52ccc===_0x495905;},'VUinP':_0x4586b8(0xb77),'ShCmm':_0x2bbd79(0x45c),'aFcTi':_0x4586b8(0x540)+_0xfb8307(0x127),'KCMdx':_0x4586b8(0x176),'cfKJp':_0xfb8307(0x3e1)+_0x2bbd79(0x48a)+'t','urpHX':_0x46c9d1(0x7c1)+_0x46c9d1(0x877),'zSmwl':function(_0x44eeef,_0x3d1092){return _0x44eeef+_0x3d1092;},'MahkU':function(_0x21bff3,_0x2a9dac){return _0x21bff3!==_0x2a9dac;},'WgKUG':_0x2bbd79(0x54e),'rWsGR':_0x46c9d1(0x8fb),'XZLlX':function(_0x5c545c,_0x3afa2a){return _0x5c545c>_0x3afa2a;},'whvSW':_0x2bbd79(0x3e1)+_0x2bbd79(0x3c6),'lsPOO':_0xfb8307(0x3be)+_0x5b2b26(0x141)+_0x5b2b26(0x64a)+_0x2bbd79(0x43b)+_0xfb8307(0xa0a)+_0x4586b8(0x2a1)+_0x46c9d1(0x7d2)+_0x4586b8(0x5cb)+_0x4586b8(0x749)+_0x5b2b26(0x63e)+_0xfb8307(0x9a5),'JIPXP':_0x46c9d1(0x44f)+_0x4586b8(0x7bc),'YHerr':_0x4586b8(0x54a),'qBNfP':function(_0xbc3436,_0x4eac45){return _0xbc3436+_0x4eac45;},'tmHHA':_0xfb8307(0x3e1),'fnnHu':_0xfb8307(0xad4),'HkIWO':_0x4586b8(0x8cb)+'','QoSpy':_0xfb8307(0xaf6)+_0x4586b8(0x887)+_0x5b2b26(0x1bc)+_0x4586b8(0x9e6)+_0x5b2b26(0x2e6)+_0x4586b8(0x334)+_0xfb8307(0x493)+_0x4586b8(0x4cd)+_0xfb8307(0x349)+_0xfb8307(0x1fa)+_0x5b2b26(0x682)+_0xfb8307(0x358)+_0xfb8307(0xb3b),'UhBVJ':function(_0x42454c,_0x406a2b){return _0x42454c!=_0x406a2b;},'IVIaJ':function(_0x4d70b8,_0x2f5fac,_0x351757){return _0x4d70b8(_0x2f5fac,_0x351757);},'utFxr':_0x4586b8(0xf6)+_0x4586b8(0x9e3)+_0x5b2b26(0x9f1)+_0x4586b8(0x306)+_0x2bbd79(0x8f9)+_0x4586b8(0x6e1),'XeMjo':_0x5b2b26(0x88a),'lcdzK':_0x5b2b26(0xb31),'lTJWb':_0x5b2b26(0x57a)+_0x4586b8(0x5b2)+'t','tqbEp':_0x2bbd79(0x3e1)+_0xfb8307(0x6f6),'OCHfd':function(_0x2340c6,_0x12c6f5){return _0x2340c6===_0x12c6f5;},'rOjBO':_0xfb8307(0x237),'JIAqQ':_0xfb8307(0x42e),'kQdxj':_0x2bbd79(0x6db),'sOCCh':function(_0x245130,_0x443944){return _0x245130==_0x443944;},'LIivq':_0xfb8307(0x382)+']','CjxxK':_0x4586b8(0x2e8),'kHlJw':_0x2bbd79(0x1d7),'BOOKu':_0xfb8307(0x699),'TUwtN':_0x2bbd79(0x8e9),'WydVD':_0xfb8307(0x38f),'wADeN':_0x4586b8(0xed),'ISOIY':_0xfb8307(0xa2c),'dhaww':_0x4586b8(0x1b6)+'pt','ujWHL':_0x2bbd79(0x90f)+_0xfb8307(0x72d),'ijzok':_0xfb8307(0x4f7)+_0x46c9d1(0x5b7)+_0x5b2b26(0x93e)+_0x4586b8(0x57f)+_0xfb8307(0xaac),'NVlxe':_0x5b2b26(0x17f)+'>','geqUf':_0xfb8307(0x284),'cPkfM':_0x5b2b26(0xb78),'fotBX':_0x2bbd79(0xa27),'DKDgu':function(_0x5a1757,_0x1e071a){return _0x5a1757!==_0x1e071a;},'sPMSL':_0x46c9d1(0x3ef),'LtIBq':_0x2bbd79(0x1f3),'eQnyH':function(_0x50b532,_0x5e4761){return _0x50b532+_0x5e4761;},'BWTIb':function(_0x54f12a,_0x2a191c){return _0x54f12a+_0x2a191c;},'VUDMe':function(_0x5bd575,_0x427c33){return _0x5bd575+_0x427c33;},'bdaqo':_0xfb8307(0x92a),'nzZrQ':_0x5b2b26(0xaf5)+'\x0a','RTubd':function(_0xf19c82,_0x1dbae3){return _0xf19c82===_0x1dbae3;},'FHYGj':_0xfb8307(0xb91),'Awyam':_0x2bbd79(0x976),'lyYGr':function(_0xe3386d,_0xbbd9a1){return _0xe3386d<_0xbbd9a1;},'SxwPH':function(_0x559b84,_0x439e90){return _0x559b84+_0x439e90;},'yUlpu':function(_0xb0d80d,_0x549828){return _0xb0d80d+_0x549828;},'WzQYU':_0x2bbd79(0x964)+'\x0a','cisSW':_0x2bbd79(0x5b6),'yqtXI':function(_0x4cd467,_0x519f9e){return _0x4cd467+_0x519f9e;},'alwNt':function(_0x16216a,_0x130be8){return _0x16216a+_0x130be8;},'QncfS':_0x4586b8(0xa97)+'m','kaoxl':_0x5b2b26(0xb68)+_0x4586b8(0x74a)+_0x46c9d1(0x834)+_0x2bbd79(0xa33)+_0x5b2b26(0x78c)+_0x5b2b26(0x188)+'何人','ExKOb':_0x4586b8(0x152)+_0x5b2b26(0x763)+_0x2bbd79(0x3b3)+_0x2bbd79(0x5d9),'ZksGn':function(_0x42507b,_0x3363be){return _0x42507b!==_0x3363be;},'BxdPP':_0x5b2b26(0x361),'MWpXD':function(_0x32a9f1,_0x4e3ddf){return _0x32a9f1(_0x4e3ddf);},'RLXxp':function(_0x4a6ec6,_0x40d018){return _0x4a6ec6+_0x40d018;},'sZTZt':_0x5b2b26(0xb52)+_0x4586b8(0x68a)+_0xfb8307(0xf8)+_0x2bbd79(0x40b),'jNAFe':_0x5b2b26(0x7c4)+_0xfb8307(0x438)+_0x4586b8(0x940)+_0x5b2b26(0x970)+_0x4586b8(0xb07)+_0x5b2b26(0x14f)+'\x20)','uoocH':function(_0x1530f4){return _0x1530f4();},'uqFKL':function(_0x541aeb,_0x59604a){return _0x541aeb===_0x59604a;},'VFDGD':_0x46c9d1(0x945),'bzUlM':function(_0x5a2ee4,_0xac544e){return _0x5a2ee4!==_0xac544e;},'DoASB':_0x2bbd79(0xaef),'eFmyI':_0x46c9d1(0x3fb),'nqSbF':_0xfb8307(0xb72)+_0x46c9d1(0xb0b)+_0x46c9d1(0x4d1)+_0x2bbd79(0x194),'XsfkX':_0x4586b8(0x3e1)+_0xfb8307(0x9f4)+_0x4586b8(0x705),'dSIls':function(_0x3642ea,_0xf35467,_0x2a19b1,_0x2b29fc){return _0x3642ea(_0xf35467,_0x2a19b1,_0x2b29fc);},'SwSqC':_0x46c9d1(0xf6)+_0x4586b8(0x9e3)+_0x46c9d1(0x9f1)+_0x4586b8(0x1aa)+_0x46c9d1(0x8d4),'cfBnT':function(_0x487ffe,_0x10fc64){return _0x487ffe!==_0x10fc64;},'aMCog':_0x46c9d1(0xb8a),'IfneR':_0x5b2b26(0x346),'YzqmU':function(_0x64486c,_0x105e66){return _0x64486c+_0x105e66;},'Cegxu':function(_0x5e731f,_0x5d850d){return _0x5e731f+_0x5d850d;},'gjioD':function(_0x4e0fdb,_0x52040d){return _0x4e0fdb+_0x52040d;},'FxnPm':_0xfb8307(0x4f7)+_0xfb8307(0x5b7)+_0x46c9d1(0x93e)+_0x2bbd79(0x5d3)+_0x5b2b26(0x116)+'\x22>','bVixD':_0x4586b8(0xb71),'QhAqE':_0xfb8307(0x1e9)+_0x5b2b26(0x64a)+_0xfb8307(0x1fd)+_0x5b2b26(0x84f),'AQKhR':_0x5b2b26(0xa5d),'nDQGz':_0xfb8307(0xa6c),'ivLeQ':_0x4586b8(0x3d7)+_0x4586b8(0x95b)+_0x5b2b26(0x101)+_0x4586b8(0x6b7)};if(_0xab6393[_0x5b2b26(0x2f5)](lock_chat,0x5df+-0x1*0xabf+0x4e1))return;prev_chat=document[_0x5b2b26(0x960)+_0x2bbd79(0x94a)+_0x2bbd79(0x6bd)](_0xab6393[_0x46c9d1(0x494)])[_0x2bbd79(0x209)+_0x5b2b26(0x6c4)],document[_0x2bbd79(0x960)+_0x46c9d1(0x94a)+_0x46c9d1(0x6bd)](_0xab6393[_0x46c9d1(0x494)])[_0x4586b8(0x209)+_0xfb8307(0x6c4)]=_0xab6393[_0x46c9d1(0x3b1)](_0xab6393[_0x5b2b26(0x6ff)](_0xab6393[_0x46c9d1(0x126)](_0xab6393[_0x2bbd79(0x99c)](_0xab6393[_0x5b2b26(0x665)](_0xab6393[_0x2bbd79(0x665)](prev_chat,_0xab6393[_0xfb8307(0x7de)]),_0xab6393[_0x2bbd79(0x8f3)]),_0xab6393[_0x5b2b26(0x908)]),_0xab6393[_0xfb8307(0x55c)](String,_0x53f0a2)),_0xab6393[_0x46c9d1(0x7a6)]),_0xab6393[_0x5b2b26(0x41b)]),modal[_0x5b2b26(0x258)][_0x46c9d1(0x66f)+'ay']=_0xab6393[_0xfb8307(0x804)],document[_0x4586b8(0x7b7)+_0x5b2b26(0x71d)+_0x2bbd79(0x2aa)](_0xab6393[_0x2bbd79(0xa6e)])[_0x2bbd79(0x209)+_0x2bbd79(0x6c4)]='';var _0x2241e5=new Promise((_0x504293,_0xc1b6b3)=>{const _0x3df0de=_0x46c9d1,_0x3ec50b=_0xfb8307,_0x4056da=_0x46c9d1,_0x3e549d=_0xfb8307,_0xfb9b5e=_0x46c9d1,_0x4ddf3a={'dQqEN':function(_0x29f54b,_0x191f83){const _0x44eba5=_0x31dd;return _0xab6393[_0x44eba5(0x907)](_0x29f54b,_0x191f83);},'DouXm':_0xab6393[_0x3df0de(0xade)],'goUwo':function(_0x553ccb,_0x6e76cc){const _0xa6da60=_0x3df0de;return _0xab6393[_0xa6da60(0x55c)](_0x553ccb,_0x6e76cc);},'dDCVm':_0xab6393[_0x3df0de(0x605)],'cjOLK':_0xab6393[_0x3df0de(0xb4c)],'OZsJv':_0xab6393[_0x3e549d(0x24f)],'zoGXr':function(_0x41668e,_0xfc4a81){const _0x178367=_0x4056da;return _0xab6393[_0x178367(0x77b)](_0x41668e,_0xfc4a81);},'ccmBo':_0xab6393[_0xfb9b5e(0x4ae)],'HTmSU':_0xab6393[_0xfb9b5e(0x674)],'iMFqy':_0xab6393[_0x3ec50b(0x112)],'yZoNm':_0xab6393[_0x3e549d(0x2fd)]};if(_0xab6393[_0x3e549d(0x68f)](_0xab6393[_0x3ec50b(0x62a)],_0xab6393[_0xfb9b5e(0x667)]))_0x3d5c5f[_0x4056da(0x7ba)](_0xab6393[_0x4056da(0x86f)],_0x3c661b);else{var _0x2a6f6e=document[_0x4056da(0x7b7)+_0x4056da(0x71d)+_0xfb9b5e(0x2aa)](_0xab6393[_0x4056da(0xb82)]);_0x2a6f6e[_0x4056da(0x53b)]=_0x2c7bdb;if(_0x2a6f6e[_0x4056da(0x79e)+_0x3e549d(0x93b)+'t']){if(_0xab6393[_0x3ec50b(0xf9)](_0xab6393[_0x4056da(0x632)],_0xab6393[_0x3df0de(0x784)]))_0x2a6f6e[_0x4056da(0x79e)+_0x4056da(0x93b)+'t'](_0xab6393[_0xfb9b5e(0x8fd)],function(){const _0x3f96b8=_0xfb9b5e,_0x5bc6f3=_0x3e549d,_0x54084f=_0x3df0de,_0x5c4daf=_0x3df0de,_0x2425a5=_0x4056da;_0x4ddf3a[_0x3f96b8(0x711)](_0x4ddf3a[_0x5bc6f3(0x2f2)],_0x4ddf3a[_0x3f96b8(0x2f2)])?_0x32a902+=_0x3a3dc9:_0x4ddf3a[_0x5bc6f3(0xb05)](_0x504293,_0x4ddf3a[_0x5c4daf(0xa63)]);});else{const _0x3f1a11=_0x4ddf3a[_0x4056da(0x2f9)],_0x4a4336=_0x4ddf3a[_0x3ec50b(0x744)],_0x2362eb=_0x1e89fb[_0xfb9b5e(0x8d3)+_0x3df0de(0x220)](_0x3f1a11[_0x3df0de(0x3fa)+'h'],_0x4ddf3a[_0x3ec50b(0x9c9)](_0x4123c7[_0x3ec50b(0x3fa)+'h'],_0x4a4336[_0x3df0de(0x3fa)+'h'])),_0x518be7=_0x4ddf3a[_0x3e549d(0xb05)](_0x58b351,_0x2362eb),_0x4abd16=_0x4ddf3a[_0x4056da(0xb05)](_0x26bc70,_0x518be7);return _0x27cc21[_0x3df0de(0x7b4)+'e'][_0x3df0de(0x46e)+_0x3df0de(0x922)](_0x4ddf3a[_0x4056da(0xb66)],_0x4abd16,{'name':_0x4ddf3a[_0x3df0de(0x286)],'hash':_0x4ddf3a[_0xfb9b5e(0xa48)]},!![],[_0x4ddf3a[_0x3e549d(0x70b)]]);}}else _0xab6393[_0x3df0de(0x88e)](_0xab6393[_0x3e549d(0x359)],_0xab6393[_0xfb9b5e(0x122)])?(_0x1f6ac2=_0x5939a7[_0xfb9b5e(0x1f6)](_0x239f25)[_0xab6393[_0x4056da(0x48f)]],_0x285713=''):_0x2a6f6e[_0xfb9b5e(0x463)+'d']=function(){const _0x533383=_0x3ec50b,_0x5d3a26=_0x3e549d,_0x5c70d5=_0x4056da,_0xba20a7=_0x3df0de,_0x595420=_0x3e549d;_0xab6393[_0x533383(0xf9)](_0xab6393[_0x5d3a26(0x5d5)],_0xab6393[_0x5d3a26(0x7cb)])?_0xab6393[_0x5d3a26(0x55c)](_0x504293,_0xab6393[_0x595420(0x605)]):_0x1c5ab5+=_0x2ec3a5;};}});keytextres=[],_0x2241e5[_0x4586b8(0x3c1)](()=>{const _0x26fb95=_0x2bbd79,_0x256436=_0x2bbd79,_0x369eb3=_0x2bbd79,_0x2fd350=_0x46c9d1,_0x51ca3d=_0x2bbd79,_0x5f1295={'SIVgg':function(_0x347440,_0x273733){const _0x4818ac=_0x31dd;return _0xab6393[_0x4818ac(0x2d7)](_0x347440,_0x273733);},'NZDor':_0xab6393[_0x26fb95(0x75d)],'PAPbk':function(_0x1d31ef,_0x310298){const _0x54324d=_0x26fb95;return _0xab6393[_0x54324d(0x97c)](_0x1d31ef,_0x310298);},'EmAyg':function(_0x51150a,_0x51f0ae){const _0x564e1b=_0x26fb95;return _0xab6393[_0x564e1b(0x7e2)](_0x51150a,_0x51f0ae);},'EByMk':_0xab6393[_0x256436(0xa98)],'IPlIS':_0xab6393[_0x369eb3(0xb87)],'WjQFY':function(_0x1ae967){const _0x8384c0=_0x369eb3;return _0xab6393[_0x8384c0(0xb29)](_0x1ae967);},'tikDu':function(_0x358e0d,_0x1a0025){const _0x40d949=_0x26fb95;return _0xab6393[_0x40d949(0x5ec)](_0x358e0d,_0x1a0025);},'rnTIM':_0xab6393[_0x26fb95(0x9df)]};if(_0xab6393[_0x51ca3d(0xa29)](_0xab6393[_0x51ca3d(0x309)],_0xab6393[_0x2fd350(0xacc)])){document[_0x2fd350(0x7b7)+_0x369eb3(0x71d)+_0x256436(0x2aa)](_0xab6393[_0x26fb95(0x7c0)])[_0x51ca3d(0x957)+_0x2fd350(0x229)+'d'](document[_0x256436(0x7b7)+_0x26fb95(0x71d)+_0x51ca3d(0x2aa)](_0xab6393[_0x256436(0x5c0)])),document[_0x2fd350(0x7b7)+_0x26fb95(0x71d)+_0x369eb3(0x2aa)](_0xab6393[_0x369eb3(0x7c0)])[_0x2fd350(0x957)+_0x369eb3(0x229)+'d'](document[_0x369eb3(0x7b7)+_0x51ca3d(0x71d)+_0x2fd350(0x2aa)](_0xab6393[_0x26fb95(0xaab)]));var _0x472beb=document[_0x26fb95(0x7b7)+_0x369eb3(0x71d)+_0x369eb3(0x2aa)](_0xab6393[_0x51ca3d(0xb82)]);modalele=_0xab6393[_0x26fb95(0x97c)](eleparse,_0x472beb[_0x2fd350(0x18e)+_0x369eb3(0x448)+_0x369eb3(0x5e6)]),article=new Readability(_0x472beb[_0x369eb3(0x18e)+_0x369eb3(0x448)+_0x26fb95(0x5e6)][_0x26fb95(0x85b)+_0x26fb95(0x90b)](!![]))[_0x369eb3(0x1f6)](),fulltext=article[_0x256436(0xb47)+_0x26fb95(0xab2)+'t'],fulltext=fulltext[_0x51ca3d(0x28a)+_0x256436(0x157)]('\x0a\x0a','\x0a')[_0x26fb95(0x28a)+_0x369eb3(0x157)]('\x0a\x0a','\x0a');const _0x16921a=/[?!;\?\n。………]/g;fulltext=fulltext[_0x256436(0x31e)](_0x16921a),fulltext=fulltext[_0x26fb95(0x12a)+'r'](_0x32146c=>{const _0x37a6e7=_0x2fd350,_0x3e1dc2=_0x2fd350,_0x4a031d=_0x26fb95,_0x554b92=_0x256436,_0x24fec4=_0x51ca3d;if(_0x5f1295[_0x37a6e7(0x296)](_0x5f1295[_0x3e1dc2(0x97e)],_0x5f1295[_0x4a031d(0x97e)]))_0x1ec082+=_0x1da903[-0xa79+0x1*0x1dc7+-0x2c2*0x7][_0x4a031d(0x107)][_0x554b92(0x18e)+'nt'];else{const _0x2d03ad=/^[0-9,\s]+$/;return!_0x2d03ad[_0x4a031d(0x377)](_0x32146c);}}),fulltext=fulltext[_0x256436(0x12a)+'r'](function(_0x5f4376){const _0x4cc178=_0x51ca3d,_0x1ba49d=_0x2fd350,_0x1d9ff9=_0x26fb95,_0x3d2655=_0x2fd350,_0x41e474=_0x2fd350;if(_0x5f1295[_0x4cc178(0x2d0)](_0x5f1295[_0x4cc178(0xb38)],_0x5f1295[_0x4cc178(0xb38)]))return _0x5f4376&&_0x5f4376[_0x1d9ff9(0xa66)]();else{let _0x5b6020;try{const _0x451f5b=nKtOVU[_0x3d2655(0x2d1)](_0x3c5f17,nKtOVU[_0x41e474(0xae6)](nKtOVU[_0x41e474(0xae6)](nKtOVU[_0x4cc178(0x196)],nKtOVU[_0x41e474(0xb06)]),');'));_0x5b6020=nKtOVU[_0x4cc178(0xa57)](_0x451f5b);}catch(_0xfe220f){_0x5b6020=_0x19bc32;}_0x5b6020[_0x41e474(0x835)+_0x3d2655(0x5ac)+'l'](_0x68646f,0x14cf+0x104b+-0x157a);}}),optkeytext={'method':_0xab6393[_0x26fb95(0xa96)],'headers':headers,'body':JSON[_0x51ca3d(0x244)+_0x256436(0x783)]({'text':fulltext[_0x51ca3d(0x1c6)]('\x0a')})},console[_0x26fb95(0x522)](fulltext),_0xab6393[_0x369eb3(0x58f)](fetchRetry,_0xab6393[_0x256436(0x318)],-0x7a2*-0x3+0x2143+-0x3826,optkeytext)[_0x26fb95(0x3c1)](_0x1d9821=>_0x1d9821[_0x51ca3d(0x60f)]())[_0x26fb95(0x3c1)](_0x2a62b5=>{const _0x2fb78c=_0x256436,_0x20fac5=_0x26fb95,_0xaae57f=_0x51ca3d,_0x498461=_0x256436,_0x37230c=_0x51ca3d,_0x360d04={'INrIX':_0xab6393[_0x2fb78c(0x80f)],'lQOoG':_0xab6393[_0x2fb78c(0x938)],'huqcx':_0xab6393[_0x20fac5(0x212)],'mEfNR':_0xab6393[_0x20fac5(0x470)],'RVIoY':_0xab6393[_0xaae57f(0x86f)],'sStxL':function(_0x357251,_0x29db26){const _0x5b5f60=_0x37230c;return _0xab6393[_0x5b5f60(0x665)](_0x357251,_0x29db26);},'xAVxe':_0xab6393[_0x2fb78c(0x48f)],'JwwJR':function(_0x45488f,_0x381883){const _0x389d1a=_0x2fb78c;return _0xab6393[_0x389d1a(0x50d)](_0x45488f,_0x381883);},'nZqHU':_0xab6393[_0xaae57f(0x920)],'TyqwW':_0xab6393[_0xaae57f(0x5f5)],'mycwf':function(_0x2cde28,_0xf2337d){const _0x5ca941=_0x2fb78c;return _0xab6393[_0x5ca941(0x951)](_0x2cde28,_0xf2337d);},'vTQYP':function(_0x39dc55,_0x1130fd){const _0x48f4ad=_0x20fac5;return _0xab6393[_0x48f4ad(0x55c)](_0x39dc55,_0x1130fd);},'JmmXZ':_0xab6393[_0x2fb78c(0xa06)],'cKMHy':function(_0x1a375a,_0x3ac2b9){const _0x5c87eb=_0x498461;return _0xab6393[_0x5c87eb(0x665)](_0x1a375a,_0x3ac2b9);},'HTqjw':_0xab6393[_0x498461(0xb39)],'qamoe':_0xab6393[_0xaae57f(0x606)],'smjag':_0xab6393[_0x20fac5(0xa96)],'nkxFY':function(_0x81fae2,_0x309a3f){const _0xb78b41=_0xaae57f;return _0xab6393[_0xb78b41(0x665)](_0x81fae2,_0x309a3f);},'JnZjl':function(_0x448507,_0x9a2081){const _0x22f6c4=_0x37230c;return _0xab6393[_0x22f6c4(0x99c)](_0x448507,_0x9a2081);},'qJmhA':_0xab6393[_0x37230c(0x3fe)],'SsOnk':_0xab6393[_0x2fb78c(0x57d)],'yZUBq':_0xab6393[_0x498461(0x782)],'jeOKj':_0xab6393[_0x2fb78c(0x1cb)],'srIHg':function(_0x9fa80e,_0x432a26){const _0x9b3d7b=_0xaae57f;return _0xab6393[_0x9b3d7b(0x140)](_0x9fa80e,_0x432a26);},'SPIsh':function(_0x227f89,_0x353eab,_0x343b98){const _0x584101=_0x498461;return _0xab6393[_0x584101(0x121)](_0x227f89,_0x353eab,_0x343b98);},'hvNbt':_0xab6393[_0x2fb78c(0x9f2)],'iDknx':_0xab6393[_0x2fb78c(0x133)],'OudxD':_0xab6393[_0x37230c(0x624)],'ylmZk':_0xab6393[_0x498461(0x626)],'gwUqC':_0xab6393[_0x20fac5(0x5c0)],'ZdBjR':function(_0x5713bb,_0x4fd499){const _0x5ea8c4=_0x20fac5;return _0xab6393[_0x5ea8c4(0x67b)](_0x5713bb,_0x4fd499);},'BMWZe':_0xab6393[_0x2fb78c(0x1b4)],'RWIrO':function(_0x750ba3,_0x195824){const _0x3e322c=_0xaae57f;return _0xab6393[_0x3e322c(0x67b)](_0x750ba3,_0x195824);},'Osajz':_0xab6393[_0x37230c(0x39b)],'YvkxG':_0xab6393[_0xaae57f(0x612)],'xdHzh':function(_0x592683,_0x433be6){const _0x162d6d=_0xaae57f;return _0xab6393[_0x162d6d(0x2f5)](_0x592683,_0x433be6);},'iizsw':_0xab6393[_0x37230c(0x89a)],'nSRYC':_0xab6393[_0x498461(0x9c4)],'flQDi':_0xab6393[_0x37230c(0x477)],'lNcPY':_0xab6393[_0x20fac5(0x86b)],'ZkQXQ':_0xab6393[_0x2fb78c(0x3b9)],'MxFMh':_0xab6393[_0x37230c(0x8a7)],'IhfBk':_0xab6393[_0x498461(0xaee)],'gmDaS':function(_0xcd8d41,_0x5e6ce3){const _0x53e0ad=_0x2fb78c;return _0xab6393[_0x53e0ad(0x50d)](_0xcd8d41,_0x5e6ce3);},'CnZAS':_0xab6393[_0x20fac5(0x3aa)],'HWUNv':_0xab6393[_0x2fb78c(0x76f)],'BnmDQ':_0xab6393[_0x498461(0x494)],'yiSMQ':_0xab6393[_0x498461(0x452)],'VNUSp':_0xab6393[_0x20fac5(0x41b)],'BngWa':_0xab6393[_0x2fb78c(0xa08)],'WAeIP':_0xab6393[_0x498461(0x9f3)],'sFkLK':function(_0x4e9fbb,_0x262164){const _0xa0d469=_0xaae57f;return _0xab6393[_0xa0d469(0x68f)](_0x4e9fbb,_0x262164);},'ScFPk':_0xab6393[_0x37230c(0xb5c)]};if(_0xab6393[_0x2fb78c(0x4b0)](_0xab6393[_0xaae57f(0x34e)],_0xab6393[_0x498461(0x6af)])){keytextres=_0xab6393[_0x20fac5(0x55c)](unique,_0x2a62b5),promptWebpage=_0xab6393[_0xaae57f(0x803)](_0xab6393[_0x2fb78c(0xacb)](_0xab6393[_0x498461(0x1dc)](_0xab6393[_0x20fac5(0x1c1)],article[_0x498461(0x57e)]),'\x0a'),_0xab6393[_0x20fac5(0x1fc)]);for(el in modalele){if(_0xab6393[_0xaae57f(0x91b)](_0xab6393[_0x20fac5(0x386)],_0xab6393[_0x498461(0x587)]))_0x2efa74+=_0x107124[-0x59*-0x6b+0x1*0x59+-0x258c][_0x37230c(0x107)][_0x498461(0x18e)+'nt'];else{if(_0xab6393[_0x20fac5(0x1a0)](_0xab6393[_0x37230c(0x665)](_0xab6393[_0x2fb78c(0x77c)](promptWebpage,modalele[el]),'\x0a')[_0x2fb78c(0x3fa)+'h'],-0x294*0x4+0x93*-0x25+0x211f))promptWebpage=_0xab6393[_0x20fac5(0x77c)](_0xab6393[_0x20fac5(0x342)](promptWebpage,modalele[el]),'\x0a');}}promptWebpage=_0xab6393[_0x2fb78c(0x803)](promptWebpage,_0xab6393[_0x20fac5(0x142)]),keySentencesCount=-0x1736+0x26*0x8e+0x222;for(st in keytextres){if(_0xab6393[_0x2fb78c(0x4b0)](_0xab6393[_0x498461(0xb2e)],_0xab6393[_0xaae57f(0xb2e)])){const _0x3f56b3=_0x360d04[_0x2fb78c(0x74d)][_0x37230c(0x31e)]('|');let _0x1b7093=0x2*0x4ee+-0x1f9+-0x7e3;while(!![]){switch(_0x3f56b3[_0x1b7093++]){case'0':const _0x24b66f={};_0x24b66f[_0x2fb78c(0x504)]=_0x360d04[_0x2fb78c(0x414)],_0x24b66f[_0x2fb78c(0x18e)+'nt']=_0x2cbc77,_0x2c8ec4[_0x498461(0x798)](_0x24b66f);continue;case'1':_0x2f8dda=0x311*0x1+0x1abd+-0x46*0x6d;continue;case'2':_0x353a35[_0x2fb78c(0x7b7)+_0x2fb78c(0x71d)+_0x37230c(0x2aa)](_0x360d04[_0x20fac5(0x4de)])[_0x37230c(0x8b1)]='';continue;case'3':const _0x37d917={};_0x37d917[_0x2fb78c(0x504)]=_0x360d04[_0x20fac5(0x3f9)],_0x37d917[_0x20fac5(0x18e)+'nt']=_0xc4ccb1,_0x506205[_0x37230c(0x798)](_0x37d917);continue;case'4':return;}break;}}else{if(_0xab6393[_0x498461(0x1a0)](_0xab6393[_0x498461(0x803)](_0xab6393[_0x37230c(0x472)](promptWebpage,keytextres[st]),'\x0a')[_0xaae57f(0x3fa)+'h'],0x2607+-0xf*0x236+0x9*-0x5))promptWebpage=_0xab6393[_0x2fb78c(0x472)](_0xab6393[_0x37230c(0x651)](promptWebpage,keytextres[st]),'\x0a');keySentencesCount=_0xab6393[_0x2fb78c(0x99c)](keySentencesCount,0x2*0x120b+0x2149+-0x455e*0x1);}}const _0x544880={};_0x544880[_0xaae57f(0x504)]=_0xab6393[_0x2fb78c(0x29d)],_0x544880[_0x20fac5(0x18e)+'nt']=_0xab6393[_0x37230c(0x978)];const _0x44041b={};_0x44041b[_0x2fb78c(0x504)]=_0xab6393[_0x20fac5(0x470)],_0x44041b[_0x2fb78c(0x18e)+'nt']=promptWebpage;const _0x1bf363={};_0x1bf363[_0xaae57f(0x504)]=_0xab6393[_0x20fac5(0x938)],_0x1bf363[_0xaae57f(0x18e)+'nt']=_0xab6393[_0xaae57f(0xa0c)],promptWeb=[_0x544880,_0x44041b,_0x1bf363];const _0x866f3b={'method':_0xab6393[_0xaae57f(0xa96)],'headers':headers,'body':_0xab6393[_0xaae57f(0x55c)](b64EncodeUnicode,JSON[_0xaae57f(0x244)+_0x498461(0x783)]({'messages':promptWeb[_0x37230c(0xa6a)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};chatTemp='',text_offset=-(-0x136+-0x384+-0x1*-0x4bb),prev_chat=document[_0x498461(0x960)+_0x498461(0x94a)+_0x37230c(0x6bd)](_0xab6393[_0xaae57f(0x494)])[_0x498461(0x209)+_0x20fac5(0x6c4)],_0xab6393[_0x37230c(0x121)](fetch,_0xab6393[_0x498461(0x9f2)],_0x866f3b)[_0x2fb78c(0x3c1)](_0x121818=>{const _0x48fdfc=_0x20fac5,_0x32c95b=_0xaae57f,_0x2edbca=_0xaae57f,_0x114fea=_0x20fac5,_0x52a97a=_0x37230c,_0x307064={'TWWvx':_0x360d04[_0x48fdfc(0xef)],'AxLQH':function(_0x2c1658,_0x3dcc81){const _0x545ed2=_0x48fdfc;return _0x360d04[_0x545ed2(0x8a1)](_0x2c1658,_0x3dcc81);},'RYLNt':function(_0x3e37f7,_0x8fd752){const _0x150ad5=_0x48fdfc;return _0x360d04[_0x150ad5(0x8b7)](_0x3e37f7,_0x8fd752);},'VhMlT':_0x360d04[_0x48fdfc(0x621)],'OmIHn':function(_0x339c4a,_0x34a39e){const _0x44231a=_0x32c95b;return _0x360d04[_0x44231a(0x362)](_0x339c4a,_0x34a39e);},'KtNxy':_0x360d04[_0x2edbca(0x85e)],'mQXbC':_0x360d04[_0x2edbca(0x50f)],'iRvlN':_0x360d04[_0x52a97a(0x11e)],'QeVDI':_0x360d04[_0x114fea(0x414)],'oBGBk':function(_0x52c8bb,_0x4a8110){const _0x10be0f=_0x2edbca;return _0x360d04[_0x10be0f(0xa2b)](_0x52c8bb,_0x4a8110);},'pejsp':function(_0x19dfd4,_0x1e633c){const _0x1952af=_0x32c95b;return _0x360d04[_0x1952af(0x149)](_0x19dfd4,_0x1e633c);},'YqGeA':_0x360d04[_0x52a97a(0x374)],'eIfMv':_0x360d04[_0x114fea(0xaca)],'XikVn':_0x360d04[_0x2edbca(0x786)],'DcRiR':_0x360d04[_0x114fea(0x890)],'teUil':function(_0x1cf827,_0x299a98){const _0x34f149=_0x114fea;return _0x360d04[_0x34f149(0xb5b)](_0x1cf827,_0x299a98);},'FSEny':function(_0xdd44b4,_0x265774,_0x1ddbe8){const _0x1c5a0f=_0x114fea;return _0x360d04[_0x1c5a0f(0x629)](_0xdd44b4,_0x265774,_0x1ddbe8);},'qMUkb':_0x360d04[_0x114fea(0x4b2)],'acBvD':function(_0x52a1a1,_0x40b424){const _0x52b723=_0x32c95b;return _0x360d04[_0x52b723(0x149)](_0x52a1a1,_0x40b424);},'mjndp':_0x360d04[_0x114fea(0xa8e)],'uBEMv':_0x360d04[_0x48fdfc(0xad9)],'KgUBk':_0x360d04[_0x114fea(0x9ed)],'rgrUw':_0x360d04[_0x52a97a(0x61b)],'DRKQf':function(_0x5e8590,_0x120dc6){const _0x2c06f5=_0x2edbca;return _0x360d04[_0x2c06f5(0x10b)](_0x5e8590,_0x120dc6);},'pbVIy':_0x360d04[_0x32c95b(0x6fb)],'DVcIt':function(_0x5f3f6e,_0x2c7c60){const _0x4a5050=_0x32c95b;return _0x360d04[_0x4a5050(0xb42)](_0x5f3f6e,_0x2c7c60);},'IDlVV':_0x360d04[_0x52a97a(0x168)],'Iyick':_0x360d04[_0x114fea(0x555)],'OAGIz':function(_0x4e9075,_0x15e302){const _0x78083a=_0x114fea;return _0x360d04[_0x78083a(0x8a1)](_0x4e9075,_0x15e302);},'ySell':function(_0x52c613,_0x446697){const _0x2aa6b4=_0x32c95b;return _0x360d04[_0x2aa6b4(0x4ba)](_0x52c613,_0x446697);},'kyPTE':_0x360d04[_0x48fdfc(0x16e)],'GiwlI':function(_0x4f95b6,_0x4135cc){const _0x3a1904=_0x52a97a;return _0x360d04[_0x3a1904(0xae0)](_0x4f95b6,_0x4135cc);},'QLAOA':_0x360d04[_0x114fea(0x2ac)],'MvRhb':_0x360d04[_0x114fea(0x88f)],'UUuaW':_0x360d04[_0x52a97a(0x454)],'slALN':function(_0x1f0f4f,_0x37fbe0){const _0x5874a7=_0x52a97a;return _0x360d04[_0x5874a7(0xae0)](_0x1f0f4f,_0x37fbe0);},'ucbzs':_0x360d04[_0x114fea(0x772)],'HDBiP':_0x360d04[_0x2edbca(0x9d4)],'rCjzL':_0x360d04[_0x48fdfc(0x184)],'MuvZR':function(_0x4a3a3a,_0x47f36a){const _0x16e060=_0x114fea;return _0x360d04[_0x16e060(0x8a1)](_0x4a3a3a,_0x47f36a);},'QrSrv':function(_0x773368,_0x1b9229){const _0x5c6a77=_0x48fdfc;return _0x360d04[_0x5c6a77(0x449)](_0x773368,_0x1b9229);},'iYCWQ':_0x360d04[_0x114fea(0x757)],'hsQMc':_0x360d04[_0x52a97a(0x892)],'yQfmf':function(_0x405dbe,_0x429066){const _0x3bbc4f=_0x52a97a;return _0x360d04[_0x3bbc4f(0x8b7)](_0x405dbe,_0x429066);},'FptlI':_0x360d04[_0x48fdfc(0x323)],'WPqXx':function(_0x247628,_0x3f23fd){const _0x293509=_0x32c95b;return _0x360d04[_0x293509(0x9dd)](_0x247628,_0x3f23fd);},'PTWOX':_0x360d04[_0x32c95b(0x37b)],'RNafs':_0x360d04[_0x52a97a(0x2ae)]};if(_0x360d04[_0x32c95b(0xb42)](_0x360d04[_0x2edbca(0x9f7)],_0x360d04[_0x48fdfc(0x260)]))_0x586c85=_0x51d726[_0x32c95b(0x1f6)](_0x2cbcba)[_0x307064[_0x114fea(0x524)]],_0x629f75='';else{const _0x5b201b=_0x121818[_0x52a97a(0x975)][_0x32c95b(0x5e3)+_0x52a97a(0x6b7)]();let _0x19b0f6='',_0x4a0238='';_0x5b201b[_0x2edbca(0x281)]()[_0x114fea(0x3c1)](function _0x19eab9({done:_0x505260,value:_0x578a28}){const _0x2c6c32=_0x114fea,_0x4d88f9=_0x52a97a,_0x547d98=_0x114fea,_0x5ac9d9=_0x32c95b,_0x304de5=_0x48fdfc,_0x2ea47b={'afzfv':_0x360d04[_0x2c6c32(0x2a8)],'NxKhg':function(_0x36f9de,_0x4ba35b){const _0x44db83=_0x2c6c32;return _0x360d04[_0x44db83(0x9dd)](_0x36f9de,_0x4ba35b);},'xTutw':_0x360d04[_0x2c6c32(0xef)]};if(_0x360d04[_0x547d98(0xae0)](_0x360d04[_0x4d88f9(0x2f1)],_0x360d04[_0x547d98(0x2f1)])){if(_0x2eb75d){const _0x2e033=_0x52ccda[_0x304de5(0x91a)](_0x1b4999,arguments);return _0x50d173=null,_0x2e033;}}else{if(_0x505260)return;const _0x27a2dd=new TextDecoder(_0x360d04[_0x4d88f9(0x4f3)])[_0x5ac9d9(0x310)+'e'](_0x578a28);return _0x27a2dd[_0x5ac9d9(0xa66)]()[_0x4d88f9(0x31e)]('\x0a')[_0x2c6c32(0x9ad)+'ch'](function(_0x62891a){const _0x16fd9b=_0x304de5,_0x1646f3=_0x4d88f9,_0x3e76e8=_0x4d88f9,_0x150e8c=_0x4d88f9,_0x5c43a1=_0x5ac9d9,_0x20ca40={'BXNTV':function(_0x1585a6,_0x266f6f){const _0x269c86=_0x31dd;return _0x307064[_0x269c86(0x919)](_0x1585a6,_0x266f6f);},'rlmdF':function(_0x4f7562,_0x3ed7a5){const _0x2f0bbc=_0x31dd;return _0x307064[_0x2f0bbc(0xa30)](_0x4f7562,_0x3ed7a5);},'IHmdk':_0x307064[_0x16fd9b(0x31f)],'ojjQO':function(_0x57f0ab,_0x5c7bd4){const _0x1e261b=_0x16fd9b;return _0x307064[_0x1e261b(0x9f8)](_0x57f0ab,_0x5c7bd4);},'jyZTd':_0x307064[_0x1646f3(0x661)],'RalKx':_0x307064[_0x16fd9b(0x985)],'hLEVe':_0x307064[_0x3e76e8(0x9db)],'GpTyZ':_0x307064[_0x5c43a1(0x53f)],'kLGPU':function(_0x5d74a9,_0x48165e){const _0x2a2025=_0x5c43a1;return _0x307064[_0x2a2025(0x9f8)](_0x5d74a9,_0x48165e);},'lUzKm':function(_0x3eb9b0,_0x1b4dc1){const _0x266aaa=_0x16fd9b;return _0x307064[_0x266aaa(0x4a0)](_0x3eb9b0,_0x1b4dc1);},'dcYkr':function(_0x974099,_0x2b62c4){const _0x2f1ce4=_0x5c43a1;return _0x307064[_0x2f1ce4(0x570)](_0x974099,_0x2b62c4);},'aDVDK':_0x307064[_0x150e8c(0x26c)],'StHhh':_0x307064[_0x5c43a1(0xb86)],'bXBut':_0x307064[_0x5c43a1(0x906)],'qinHT':_0x307064[_0x5c43a1(0x108)],'oXrOw':function(_0x1e653d,_0x412ad3){const _0x3f810d=_0x3e76e8;return _0x307064[_0x3f810d(0x4dd)](_0x1e653d,_0x412ad3);},'hISkY':function(_0x4da447,_0x126afc,_0x1f648c){const _0x4d6a4b=_0x5c43a1;return _0x307064[_0x4d6a4b(0x8b3)](_0x4da447,_0x126afc,_0x1f648c);},'OBvZx':_0x307064[_0x1646f3(0x581)],'ZtHDQ':function(_0x598f1f,_0x3f9808){const _0xa81c8f=_0x5c43a1;return _0x307064[_0xa81c8f(0x4a0)](_0x598f1f,_0x3f9808);},'AFisb':function(_0x45ea2b,_0x443953){const _0x124600=_0x3e76e8;return _0x307064[_0x124600(0x570)](_0x45ea2b,_0x443953);},'zWboG':_0x307064[_0x3e76e8(0x524)],'sSucX':function(_0x100c8a,_0x3a4ef3){const _0x1ce499=_0x150e8c;return _0x307064[_0x1ce499(0x570)](_0x100c8a,_0x3a4ef3);},'uUuOk':function(_0x36f762,_0xb8dba1){const _0x3724b7=_0x5c43a1;return _0x307064[_0x3724b7(0xa20)](_0x36f762,_0xb8dba1);},'FJwoI':_0x307064[_0x16fd9b(0x73f)],'gbpGg':_0x307064[_0x16fd9b(0x21c)],'iatKI':_0x307064[_0x150e8c(0x6d9)],'CWrWC':_0x307064[_0x1646f3(0x64b)]};if(_0x307064[_0x3e76e8(0x36e)](_0x307064[_0x1646f3(0xa39)],_0x307064[_0x150e8c(0xa39)])){try{if(_0x307064[_0x1646f3(0x239)](_0x307064[_0x1646f3(0x6a7)],_0x307064[_0x5c43a1(0x7ec)])){const _0x13c313={'method':_0x20ca40[_0x150e8c(0x4fe)],'headers':_0x1bdd23,'body':_0x20ca40[_0x16fd9b(0x7f1)](_0x1730df,_0x57582b[_0x5c43a1(0x244)+_0x16fd9b(0x783)]({'messages':[{'role':_0x20ca40[_0x3e76e8(0xee)],'content':_0x20ca40[_0x150e8c(0x6a8)](_0x20ca40[_0x3e76e8(0x731)](_0x20ca40[_0x1646f3(0x998)](_0x20ca40[_0x3e76e8(0x6a8)](_0x2c45d6[_0x5c43a1(0x7b7)+_0x5c43a1(0x71d)+_0x1646f3(0x2aa)](_0x20ca40[_0x150e8c(0x8a3)])[_0x150e8c(0x209)+_0x16fd9b(0x6c4)][_0x5c43a1(0x28a)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x1646f3(0x28a)+'ce'](/<hr.*/gs,'')[_0x5c43a1(0x28a)+'ce'](/<[^>]+>/g,'')[_0x5c43a1(0x28a)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x20ca40[_0x1646f3(0xa1e)]),_0xf0e1a9),_0x20ca40[_0x150e8c(0xb69)])},{'role':_0x20ca40[_0x16fd9b(0xee)],'content':_0x20ca40[_0x150e8c(0x8fa)]}][_0x16fd9b(0xa6a)+'t'](_0xb6e400),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x20ca40[_0x3e76e8(0xaf4)](_0x4eca8c[_0x16fd9b(0x7b7)+_0x5c43a1(0x71d)+_0x16fd9b(0x2aa)](_0x20ca40[_0x5c43a1(0x401)])[_0x150e8c(0x209)+_0x3e76e8(0x6c4)],''))return;_0x20ca40[_0x3e76e8(0x5be)](_0x2982eb,_0x20ca40[_0x5c43a1(0x3a8)],_0x13c313)[_0x1646f3(0x3c1)](_0x56745e=>_0x56745e[_0x3e76e8(0x60f)]())[_0x3e76e8(0x3c1)](_0x2c29fb=>{const _0x53b687=_0x5c43a1,_0x6f2088=_0x3e76e8,_0x185ee7=_0x16fd9b,_0x45b83c=_0x16fd9b,_0x41e396=_0x150e8c,_0x52036c={'DyTdm':function(_0x2d7867,_0x424056){const _0x72436a=_0x31dd;return _0x20ca40[_0x72436a(0x50b)](_0x2d7867,_0x424056);},'qgKWp':function(_0x5db132,_0x10db43){const _0x513974=_0x31dd;return _0x20ca40[_0x513974(0x7f1)](_0x5db132,_0x10db43);},'JopQe':_0x20ca40[_0x53b687(0x401)],'FYxqi':function(_0x298d49,_0x2b7684){const _0x4ace15=_0x53b687;return _0x20ca40[_0x4ace15(0x59f)](_0x298d49,_0x2b7684);},'wiHPo':function(_0x304f38,_0x280f78){const _0x260613=_0x53b687;return _0x20ca40[_0x260613(0x59f)](_0x304f38,_0x280f78);},'jpAhH':_0x20ca40[_0x53b687(0x2ca)],'recNM':_0x20ca40[_0x185ee7(0x9a0)]};_0x3244b0[_0x53b687(0x1f6)](_0x2c29fb[_0x41e396(0x2a7)+'es'][-0x14de*0x1+-0x31d*-0x7+-0xed][_0x185ee7(0x43e)+'ge'][_0x41e396(0x18e)+'nt'][_0x6f2088(0x28a)+_0x45b83c(0x157)]('\x0a',''))[_0x53b687(0x9ad)+'ch'](_0x5cdf2d=>{const _0x28b056=_0x185ee7,_0x4c0106=_0x53b687,_0x43a060=_0x45b83c,_0x19d7f9=_0x6f2088,_0x1970ea=_0x45b83c;if(_0x52036c[_0x28b056(0x2c6)](_0x52036c[_0x4c0106(0x541)](_0x5608b9,_0x5cdf2d)[_0x43a060(0x3fa)+'h'],0x31b+0xcb5*-0x2+0x4*0x595))_0xc0bac9[_0x28b056(0x7b7)+_0x28b056(0x71d)+_0x4c0106(0x2aa)](_0x52036c[_0x28b056(0x715)])[_0x19d7f9(0x209)+_0x28b056(0x6c4)]+=_0x52036c[_0x1970ea(0x23f)](_0x52036c[_0x4c0106(0x1a1)](_0x52036c[_0x28b056(0x5b4)],_0x52036c[_0x28b056(0x541)](_0x3b8381,_0x5cdf2d)),_0x52036c[_0x28b056(0x5e9)]);});})[_0x150e8c(0x51b)](_0x3781be=>_0x48fc6d[_0x1646f3(0x7ba)](_0x3781be)),_0x39b8c7=_0x20ca40[_0x150e8c(0x6b2)](_0x33e71d,'\x0a\x0a'),_0x1c590d=-(0xecb+0x12a2+-0x216c);}else document[_0x1646f3(0x7b7)+_0x3e76e8(0x71d)+_0x5c43a1(0x2aa)](_0x307064[_0x1646f3(0x64b)])[_0x1646f3(0xb7f)+_0x5c43a1(0x969)]=document[_0x5c43a1(0x7b7)+_0x150e8c(0x71d)+_0x16fd9b(0x2aa)](_0x307064[_0x5c43a1(0x64b)])[_0x150e8c(0xb7f)+_0x3e76e8(0x577)+'ht'];}catch(_0x3c8bb5){}_0x19b0f6='';if(_0x307064[_0x5c43a1(0x314)](_0x62891a[_0x5c43a1(0x3fa)+'h'],0x8f6*-0x4+-0x2d3*0xd+0x445*0x11))_0x19b0f6=_0x62891a[_0x16fd9b(0x6fc)](0x12ee+-0x220*-0x3+-0x1948);if(_0x307064[_0x3e76e8(0x3df)](_0x19b0f6,_0x307064[_0x3e76e8(0x503)])){if(_0x307064[_0x1646f3(0x8d0)](_0x307064[_0x16fd9b(0x87a)],_0x307064[_0x3e76e8(0x87a)]))try{_0x2cf9d3=_0x2a6eea[_0x5c43a1(0x1f6)](_0x20ca40[_0x5c43a1(0x3c0)](_0x4d83a8,_0x3189db))[_0x20ca40[_0x150e8c(0x200)]],_0x59a703='';}catch(_0x2dda4d){_0x1d1b41=_0x5c2d90[_0x16fd9b(0x1f6)](_0x46bfd4)[_0x20ca40[_0x16fd9b(0x200)]],_0x242597='';}else{lock_chat=0x1230+0x1*-0x1+-0x122f;return;}}let _0x4bf787;try{if(_0x307064[_0x1646f3(0x36e)](_0x307064[_0x5c43a1(0x2c1)],_0x307064[_0x5c43a1(0x2c1)]))try{_0x307064[_0x3e76e8(0x8d0)](_0x307064[_0x150e8c(0x49b)],_0x307064[_0x1646f3(0x49b)])?_0xe8c21c[_0x5c43a1(0x7ba)](_0x2ea47b[_0x1646f3(0x8be)],_0x38373b):(_0x4bf787=JSON[_0x5c43a1(0x1f6)](_0x307064[_0x1646f3(0x570)](_0x4a0238,_0x19b0f6))[_0x307064[_0x16fd9b(0x524)]],_0x4a0238='');}catch(_0x2c0b44){_0x307064[_0x150e8c(0x41a)](_0x307064[_0x1646f3(0x925)],_0x307064[_0x16fd9b(0x131)])?(_0x4bf787=JSON[_0x1646f3(0x1f6)](_0x19b0f6)[_0x307064[_0x150e8c(0x524)]],_0x4a0238=''):(_0x274b02=_0xf7cae7[_0x1646f3(0x1f6)](_0x20ca40[_0x5c43a1(0x5bf)](_0x12fc8f,_0x11339b))[_0x20ca40[_0x1646f3(0x200)]],_0x34789b='');}else _0x3f027f+=_0x6036fd[_0x16fd9b(0x18e)+'nt'][_0x150e8c(0x3fa)+'h'];}catch(_0x1337f5){_0x307064[_0x5c43a1(0x36e)](_0x307064[_0x1646f3(0x6d1)],_0x307064[_0x5c43a1(0x6d1)])?_0x4a0238+=_0x19b0f6:function(){return![];}[_0x1646f3(0x444)+_0x16fd9b(0x413)+'r'](JaupOZ[_0x5c43a1(0x339)](JaupOZ[_0x150e8c(0x4fb)],JaupOZ[_0x5c43a1(0x1b5)]))[_0x16fd9b(0x91a)](JaupOZ[_0x5c43a1(0xb02)]);}_0x4bf787&&_0x307064[_0x16fd9b(0x870)](_0x4bf787[_0x1646f3(0x3fa)+'h'],0x3*0x166+-0xa9f+0x2f*0x23)&&_0x4bf787[-0xcf8*0x3+-0x1b39*-0x1+0xbaf][_0x1646f3(0x107)][_0x1646f3(0x18e)+'nt']&&(_0x307064[_0x5c43a1(0x799)](_0x307064[_0x3e76e8(0x87f)],_0x307064[_0x16fd9b(0x87f)])?(_0x57885b=_0x3afe22[_0x150e8c(0x1f6)](_0x2ea47b[_0x5c43a1(0x3d3)](_0x17c2bb,_0x2a9195))[_0x2ea47b[_0x16fd9b(0x274)]],_0x2060d9=''):chatTemp+=_0x4bf787[-0xc+0x1ed4+-0x1ec8][_0x3e76e8(0x107)][_0x150e8c(0x18e)+'nt']),chatTemp=chatTemp[_0x1646f3(0x28a)+_0x150e8c(0x157)]('\x0a\x0a','\x0a')[_0x150e8c(0x28a)+_0x16fd9b(0x157)]('\x0a\x0a','\x0a'),document[_0x16fd9b(0x7b7)+_0x1646f3(0x71d)+_0x150e8c(0x2aa)](_0x307064[_0x1646f3(0x583)])[_0x1646f3(0x209)+_0x150e8c(0x6c4)]='',_0x307064[_0x1646f3(0x8b3)](markdownToHtml,_0x307064[_0x5c43a1(0x441)](beautify,chatTemp),document[_0x3e76e8(0x7b7)+_0x150e8c(0x71d)+_0x5c43a1(0x2aa)](_0x307064[_0x150e8c(0x583)])),document[_0x5c43a1(0x960)+_0x16fd9b(0x94a)+_0x150e8c(0x6bd)](_0x307064[_0x16fd9b(0xb0c)])[_0x1646f3(0x209)+_0x16fd9b(0x6c4)]=_0x307064[_0x150e8c(0x9f8)](_0x307064[_0x16fd9b(0x570)](_0x307064[_0x16fd9b(0xa94)](prev_chat,_0x307064[_0x16fd9b(0xfd)]),document[_0x5c43a1(0x7b7)+_0x150e8c(0x71d)+_0x16fd9b(0x2aa)](_0x307064[_0x150e8c(0x583)])[_0x16fd9b(0x209)+_0x5c43a1(0x6c4)]),_0x307064[_0x3e76e8(0x3c8)]);}else _0x2c61dc[_0x16fd9b(0x7b7)+_0x150e8c(0x71d)+_0x1646f3(0x2aa)](_0x20ca40[_0x5c43a1(0x959)])[_0x3e76e8(0xb7f)+_0x16fd9b(0x969)]=_0x1485a5[_0x150e8c(0x7b7)+_0x150e8c(0x71d)+_0x5c43a1(0x2aa)](_0x20ca40[_0x150e8c(0x959)])[_0x16fd9b(0xb7f)+_0x1646f3(0x577)+'ht'];}),_0x5b201b[_0x547d98(0x281)]()[_0x5ac9d9(0x3c1)](_0x19eab9);}});}})[_0x2fb78c(0x51b)](_0x3fa77a=>{const _0x50a085=_0x498461,_0x3d3e6b=_0x498461,_0x568777=_0x37230c,_0x585fcf=_0xaae57f,_0x12aa68=_0x498461;_0x360d04[_0x50a085(0x695)](_0x360d04[_0x3d3e6b(0x3b6)],_0x360d04[_0x3d3e6b(0x3b6)])?console[_0x585fcf(0x7ba)](_0x360d04[_0x568777(0x2a8)],_0x3fa77a):_0x4dbc66+='';});}else return-(0x11fe+0x228e+-0x348b*0x1);});}else try{_0xb53d15=_0x559c3b[_0x2fd350(0x1f6)](_0xab6393[_0x256436(0x77c)](_0x3e01c6,_0x135ae7))[_0xab6393[_0x2fd350(0x48f)]],_0x5e12e7='';}catch(_0x28f629){_0x48f457=_0x47610f[_0x26fb95(0x1f6)](_0x5e50c6)[_0xab6393[_0x256436(0x48f)]],_0x283e57='';}},_0x2cae46=>{const _0x5b4b39=_0x46c9d1,_0x490cea=_0x46c9d1,_0x5c316f=_0x2bbd79,_0x413110=_0x4586b8;if(_0xab6393[_0x5b4b39(0xaba)](_0xab6393[_0x5b4b39(0x72e)],_0xab6393[_0x5b4b39(0x4a2)]))console[_0x5b4b39(0x522)](_0x2cae46);else return _0x53dfa2;});}function eleparse(_0x1deb40){const _0x4b042d=_0x31dd,_0x3ace33=_0x31dd,_0x5bdbd3=_0x31dd,_0x2cc389=_0x31dd,_0x57fd96=_0x31dd,_0x334e24={'cqUiy':_0x4b042d(0x765)+':','XPxuu':function(_0x317d9f,_0xbe79fa){return _0x317d9f<_0xbe79fa;},'KgHXp':function(_0x21c509,_0x1fdfda){return _0x21c509(_0x1fdfda);},'pHHPF':_0x3ace33(0x5d2)+_0x5bdbd3(0x764),'voVQA':function(_0x54a885,_0x3cb1b5){return _0x54a885+_0x3cb1b5;},'iwcfy':_0x3ace33(0xf6)+_0x57fd96(0x5b8)+'l','byDlv':function(_0x508893,_0x419d9d){return _0x508893+_0x419d9d;},'ljQih':_0x57fd96(0xf6)+_0x5bdbd3(0x9ce),'aYnUz':_0x2cc389(0x9ce),'RLwfi':function(_0x279ccc,_0x3e986f){return _0x279ccc+_0x3e986f;},'gMGYj':_0x57fd96(0x2a7)+'es','lnPYK':function(_0x5e7f98,_0x458e83){return _0x5e7f98(_0x458e83);},'Ecfkf':function(_0x147c79,_0x9a9390){return _0x147c79+_0x9a9390;},'DtDXX':_0x3ace33(0xb52)+_0x2cc389(0x68a)+_0x2cc389(0xf8)+_0x4b042d(0x40b),'nAEvh':_0x5bdbd3(0x7c4)+_0x57fd96(0x438)+_0x3ace33(0x940)+_0x2cc389(0x970)+_0x4b042d(0xb07)+_0x5bdbd3(0x14f)+'\x20)','BOBYj':_0x4b042d(0x6a6)+'ss','GNqNH':_0x57fd96(0x3e1)+_0x4b042d(0x6f6),'cxSkI':_0x57fd96(0xa85)+'te','kWNUi':_0x3ace33(0x106)+_0x2cc389(0x7db),'pwxWT':_0x57fd96(0x762)+'ss','KvkLc':_0x5bdbd3(0x846)+_0x57fd96(0xa1d)+_0x2cc389(0x5d1),'VbKpx':_0x57fd96(0x59d)+_0x4b042d(0x1d2)+'n','NQCNT':_0x57fd96(0xae7)+_0x5bdbd3(0x533),'BiiKH':_0x4b042d(0x53a),'xCfEu':function(_0x4c136d,_0x2b4923){return _0x4c136d<_0x2b4923;},'AmAsH':function(_0x2c5f06,_0x26a738){return _0x2c5f06===_0x26a738;},'uPDHr':_0x57fd96(0x304),'aZyUa':_0x57fd96(0x968),'cViwA':function(_0x5876a4,_0x41ee18){return _0x5876a4>_0x41ee18;},'udazU':function(_0x592150,_0x23ea23){return _0x592150>_0x23ea23;},'NHAHI':function(_0x5b0aa4,_0x265c70){return _0x5b0aa4!==_0x265c70;},'NMTuO':_0x3ace33(0x360),'uHfmL':function(_0x1bdab3,_0x41a91a){return _0x1bdab3===_0x41a91a;},'CDkBN':_0x4b042d(0x6f8),'MItED':function(_0x24d98a,_0x505262){return _0x24d98a===_0x505262;},'IBzOj':_0x57fd96(0x357)+'h','aFYOY':_0x57fd96(0x17e)+_0x4b042d(0x185),'iNImT':_0x2cc389(0x4c1),'qJeOR':_0x3ace33(0xb5f),'cUkHK':_0x5bdbd3(0x432),'lrgLp':function(_0x460bf5,_0x181b8f){return _0x460bf5===_0x181b8f;},'pbFID':_0x3ace33(0xb62)+'t','UtNSk':_0x5bdbd3(0x8eb)+_0x3ace33(0x829),'sCoFL':function(_0x1d6332,_0x1ff57a){return _0x1d6332!==_0x1ff57a;},'LNRmM':_0x5bdbd3(0x580),'SOGFf':_0x4b042d(0x388),'rbYrZ':function(_0x17ae4b,_0x300840){return _0x17ae4b!==_0x300840;},'DOMxb':_0x5bdbd3(0x1e4)+'n','dsGFX':function(_0x1502bc,_0x4c544f){return _0x1502bc!==_0x4c544f;},'ERxWF':_0x2cc389(0x1a5),'IeJAX':function(_0x4b78d9,_0x3a04fa){return _0x4b78d9===_0x3a04fa;},'cNkZL':_0x5bdbd3(0xaea),'eZPHx':function(_0x4b0985,_0x5ddc55){return _0x4b0985===_0x5ddc55;},'mzuJD':_0x57fd96(0x317),'XQWFv':_0x57fd96(0xa43),'RCFml':function(_0x1690f0,_0x19a17e){return _0x1690f0===_0x19a17e;},'IIsDA':_0x3ace33(0x49e),'FCedC':function(_0x50911a,_0x5d874c){return _0x50911a!==_0x5d874c;},'XdbcX':_0x2cc389(0xa22),'rTRKI':_0x57fd96(0x1cc),'gYZaj':_0x3ace33(0x34b),'ycpms':_0x57fd96(0xae2),'uahMw':function(_0xceabe1,_0x25aaf0){return _0xceabe1===_0x25aaf0;},'AblMv':_0x5bdbd3(0x489),'kNZUI':_0x5bdbd3(0x813),'ZEcOe':function(_0x40c93b,_0x4521eb){return _0x40c93b===_0x4521eb;},'LVTgJ':_0x4b042d(0x948),'GrAhn':function(_0x3a1109,_0x50a46a){return _0x3a1109==_0x50a46a;},'ZitJC':function(_0x19855c,_0x4d13c6){return _0x19855c===_0x4d13c6;},'dPCHU':_0x2cc389(0x404),'plcMP':_0x5bdbd3(0xa21),'YBAhd':_0x3ace33(0x6dc),'wBUue':_0x57fd96(0x7e7),'hvBQQ':function(_0x1d4f9a,_0x48d3ff){return _0x1d4f9a!=_0x48d3ff;},'IFwoy':_0x3ace33(0x697)+'r','JKoKX':_0x2cc389(0x69c),'grvbD':_0x5bdbd3(0x9fa)+_0x4b042d(0x9fa)+_0x3ace33(0x795),'AzGRL':_0x4b042d(0x6e2)+'\x200','gcNjg':_0x3ace33(0x6e0),'atHCy':_0x5bdbd3(0x2b8),'cRxZY':function(_0x478395,_0x23ca4a){return _0x478395(_0x23ca4a);},'XsfAn':function(_0x2d3922,_0x31fe82){return _0x2d3922!=_0x31fe82;},'kqMvH':function(_0x4e66b9,_0x3e018f){return _0x4e66b9(_0x3e018f);}},_0x55145=_0x1deb40[_0x2cc389(0x7b7)+_0x5bdbd3(0x71d)+_0x4b042d(0x823)+'l']('*'),_0x2a6a91={};_0x2a6a91[_0x4b042d(0x6b3)+_0x3ace33(0x9ec)]='左上',_0x2a6a91[_0x4b042d(0x217)+_0x57fd96(0x3ee)]='上中',_0x2a6a91[_0x3ace33(0x7ad)+_0x2cc389(0x27f)]='右上',_0x2a6a91[_0x4b042d(0x8cd)+_0x4b042d(0x175)+'T']='左中',_0x2a6a91[_0x3ace33(0x4e6)+'R']='中间',_0x2a6a91[_0x5bdbd3(0x8cd)+_0x5bdbd3(0x3c3)+'HT']='右中',_0x2a6a91[_0x57fd96(0xb80)+_0x57fd96(0x34d)+'T']='左下',_0x2a6a91[_0x3ace33(0xb80)+_0x57fd96(0x604)+_0x5bdbd3(0x841)]='下中',_0x2a6a91[_0x3ace33(0xb80)+_0x57fd96(0x7c3)+'HT']='右下';const _0x217617=_0x2a6a91,_0x487802={};_0x487802[_0x5bdbd3(0x11c)+'00']='黑色',_0x487802[_0x3ace33(0x365)+'ff']='白色',_0x487802[_0x2cc389(0x8a2)+'00']='红色',_0x487802[_0x3ace33(0xb0d)+'00']='绿色',_0x487802[_0x57fd96(0x11c)+'ff']='蓝色';const _0x52b0f8=_0x487802;let _0x264bb4=[],_0x4ee2ce=[],_0x3d5428=[_0x334e24[_0x4b042d(0x1ea)],_0x334e24[_0x3ace33(0x5f7)],_0x334e24[_0x2cc389(0x75a)],_0x334e24[_0x4b042d(0x403)],_0x334e24[_0x2cc389(0x7a9)],_0x334e24[_0x2cc389(0xa8b)],_0x334e24[_0x3ace33(0xb5a)]];for(let _0x25207d=-0xd16+-0x1003*0x2+-0x168e*-0x2;_0x334e24[_0x3ace33(0x279)](_0x25207d,_0x55145[_0x4b042d(0x3fa)+'h']);_0x25207d++){if(_0x334e24[_0x5bdbd3(0x44c)](_0x334e24[_0x3ace33(0x434)],_0x334e24[_0x5bdbd3(0xa75)]))_0x501ca4[_0x3ace33(0x7ba)](_0x334e24[_0x4b042d(0x66b)],_0x1d2da7);else{const _0xc6f80b=_0x55145[_0x25207d];let _0x2fa2e6='';if(_0x334e24[_0x57fd96(0x8b4)](_0xc6f80b[_0x5bdbd3(0x221)+_0x5bdbd3(0xab3)+'h'],-0x1162+-0xe33+-0x93*-0x37)||_0x334e24[_0x2cc389(0x7d5)](_0xc6f80b[_0x4b042d(0x221)+_0x5bdbd3(0xa91)+'ht'],-0x1bab+-0xb99+0x2744)){if(_0x334e24[_0x2cc389(0x613)](_0x334e24[_0x5bdbd3(0x451)],_0x334e24[_0x5bdbd3(0x451)]))_0x3dd7fc+='';else{let _0xa23a68=_0xc6f80b[_0x2cc389(0x350)+'me'][_0x3ace33(0x8b0)+_0x57fd96(0x2e1)+'e']();if(_0x334e24[_0x3ace33(0x9a6)](_0xa23a68,_0x334e24[_0x5bdbd3(0x7ae)])&&(_0x334e24[_0x2cc389(0x79a)](_0xc6f80b[_0x2cc389(0x8ae)],_0x334e24[_0x2cc389(0x8df)])||_0xc6f80b[_0x4b042d(0x5a2)+_0x5bdbd3(0x3a0)+'te'](_0x334e24[_0x4b042d(0xa12)])&&_0x334e24[_0x5bdbd3(0x613)](_0xc6f80b[_0x4b042d(0x5a2)+_0x57fd96(0x3a0)+'te'](_0x334e24[_0x2cc389(0xa12)])[_0x57fd96(0x8b0)+_0x4b042d(0x2e1)+'e']()[_0x57fd96(0x39c)+'Of'](_0x334e24[_0x5bdbd3(0x8df)]),-(0xa*0x1+0x24d*0xb+-0x1*0x1958)))){if(_0x334e24[_0x2cc389(0x9a6)](_0x334e24[_0x57fd96(0xa09)],_0x334e24[_0x2cc389(0x5db)])){const _0x5a69e8=_0x4f9569[_0x4b042d(0x91a)](_0x33bc80,arguments);return _0x4f4f94=null,_0x5a69e8;}else _0xa23a68=_0x334e24[_0x5bdbd3(0x9a1)];}else{if(_0x334e24[_0x5bdbd3(0x79a)](_0xa23a68,_0x334e24[_0x4b042d(0x7ae)])||_0x334e24[_0x3ace33(0x198)](_0xa23a68,_0x334e24[_0x2cc389(0x754)])||_0x334e24[_0x57fd96(0x79a)](_0xa23a68,_0x334e24[_0x3ace33(0x8b9)])){if(_0x334e24[_0x4b042d(0x687)](_0x334e24[_0x5bdbd3(0x901)],_0x334e24[_0x4b042d(0x901)]))try{var _0x382df3=new _0xa2837c(_0x31dcfc),_0x37601c='';for(var _0x298d9d=0x1441+-0x1cf1+0x8b0;_0x334e24[_0x5bdbd3(0x3e9)](_0x298d9d,_0x382df3[_0x57fd96(0x2c9)+_0x57fd96(0xb4a)]);_0x298d9d++){_0x37601c+=_0x5f1ddd[_0x4b042d(0x4f1)+_0x3ace33(0x1ff)+_0x3ace33(0xb67)](_0x382df3[_0x298d9d]);}return _0x37601c;}catch(_0x456bf7){}else _0xa23a68=_0x334e24[_0x57fd96(0x720)];}else{if(_0x334e24[_0x5bdbd3(0x6ee)](_0xa23a68[_0x3ace33(0x39c)+'Of'](_0x334e24[_0x3ace33(0x84c)]),-(-0x14c5+-0xb12+-0x1*-0x1fd8))||_0x334e24[_0x3ace33(0x613)](_0xc6f80b['id'][_0x5bdbd3(0x39c)+'Of'](_0x334e24[_0x4b042d(0x84c)]),-(-0xd*0x1b5+-0x7df+0x1e11*0x1))){if(_0x334e24[_0x57fd96(0x37c)](_0x334e24[_0x4b042d(0x417)],_0x334e24[_0x57fd96(0x417)])){_0x2e4e5f=_0x334e24[_0x5bdbd3(0x34a)](_0x4dd926,_0x54f1ac);const _0x9c91bf={};return _0x9c91bf[_0x5bdbd3(0x825)]=_0x334e24[_0x2cc389(0x2dc)],_0x42e06e[_0x4b042d(0x7b4)+'e'][_0x3ace33(0xb2a)+'pt'](_0x9c91bf,_0x46ba39,_0x62ba6b);}else _0xa23a68='按钮';}else{if(_0x334e24[_0x3ace33(0xb58)](_0xa23a68,_0x334e24[_0x4b042d(0x248)]))_0x334e24[_0x4b042d(0x5cf)](_0x334e24[_0x5bdbd3(0x486)],_0x334e24[_0x3ace33(0x82f)])?(_0x557b59=_0x50034b[_0x3ace33(0x28a)+'ce'](_0x334e24[_0x2cc389(0xb43)](_0x334e24[_0x3ace33(0x40c)],_0x334e24[_0x3ace33(0x34a)](_0x5b0600,_0x313c3a)),_0x25d799[_0x4b042d(0x3fc)+_0x57fd96(0x280)][_0x12b81c]),_0x50c2ea=_0x7ded26[_0x2cc389(0x28a)+'ce'](_0x334e24[_0x57fd96(0x740)](_0x334e24[_0x2cc389(0x2df)],_0x334e24[_0x3ace33(0x34a)](_0x44bb6c,_0x3bc4bd)),_0x34b18e[_0x2cc389(0x3fc)+_0x4b042d(0x280)][_0x159857]),_0x3b6e58=_0x19ed37[_0x3ace33(0x28a)+'ce'](_0x334e24[_0x57fd96(0xb43)](_0x334e24[_0x5bdbd3(0x55f)],_0x334e24[_0x57fd96(0x34a)](_0x255a15,_0x9723b)),_0x2844ad[_0x4b042d(0x3fc)+_0x57fd96(0x280)][_0x32611b])):_0xa23a68='图片';else{if(_0x334e24[_0x3ace33(0x39e)](_0xa23a68,_0x334e24[_0x3ace33(0x20b)])){if(_0x334e24[_0x5bdbd3(0x4b7)](_0x334e24[_0x5bdbd3(0xb4d)],_0x334e24[_0x4b042d(0x24a)]))_0xa23a68='表单';else try{_0x134960=_0x252f4b[_0x2cc389(0x1f6)](_0x334e24[_0x4b042d(0x4ee)](_0x3063a9,_0x51aacc))[_0x334e24[_0x3ace33(0x16b)]],_0x403400='';}catch(_0x30e725){_0x2c6cc2=_0x1e6522[_0x2cc389(0x1f6)](_0x2ee494)[_0x334e24[_0x57fd96(0x16b)]],_0x428054='';}}else{if(_0x334e24[_0x2cc389(0x198)](_0xa23a68,_0x334e24[_0x4b042d(0xaa6)])||_0x334e24[_0x2cc389(0x79a)](_0xa23a68,_0x334e24[_0x3ace33(0x666)])){if(_0x334e24[_0x57fd96(0x6a2)](_0x334e24[_0x2cc389(0x680)],_0x334e24[_0x57fd96(0x680)]))_0xa23a68=_0x334e24[_0x57fd96(0x5de)];else{let _0x3eb619;try{_0x3eb619=GgMfJW[_0x2cc389(0x4f0)](_0x2da688,GgMfJW[_0x2cc389(0x740)](GgMfJW[_0x2cc389(0x513)](GgMfJW[_0x57fd96(0x7fe)],GgMfJW[_0x57fd96(0xa34)]),');'))();}catch(_0x2ba3ef){_0x3eb619=_0x2314ea;}return _0x3eb619;}}else{if(_0x334e24[_0x57fd96(0x5b1)](_0x334e24[_0x5bdbd3(0x932)],_0x334e24[_0x5bdbd3(0x932)]))_0xa23a68=null;else{const _0x24729c={'GTpaD':function(_0x3a6afe,_0x580f5b){const _0x18a5fe=_0x3ace33;return _0x334e24[_0x18a5fe(0x4f0)](_0x3a6afe,_0x580f5b);},'TefJd':_0x334e24[_0x57fd96(0xb00)]};_0x2ac8f8[_0x5bdbd3(0x463)+'d']=function(){const _0x4fbcbf=_0x2cc389,_0x306c5b=_0x3ace33;_0x24729c[_0x4fbcbf(0x65d)](_0x37a9b6,_0x24729c[_0x306c5b(0x76e)]);};}}}}}}}if(_0xa23a68&&(_0x334e24[_0x5bdbd3(0x6f5)](_0xa23a68,_0x334e24[_0x2cc389(0x5de)])||_0xc6f80b[_0x57fd96(0x57e)]||_0xc6f80b[_0x5bdbd3(0x51c)]||_0xc6f80b[_0x3ace33(0x5a2)+_0x2cc389(0x3a0)+'te'](_0x334e24[_0x57fd96(0xa12)]))){if(_0x334e24[_0x3ace33(0x5e8)](_0x334e24[_0x4b042d(0x15a)],_0x334e24[_0x4b042d(0x3d9)]))return _0x334e24[_0x3ace33(0x4f0)](_0x201931,_0x52b3a3);else{_0x2fa2e6+=_0xa23a68;if(_0xc6f80b[_0x2cc389(0x57e)]){if(_0x334e24[_0x5bdbd3(0x39e)](_0x334e24[_0x5bdbd3(0x1ac)],_0x334e24[_0x5bdbd3(0x236)]))_0x106f6e[_0x3ace33(0x7b7)+_0x57fd96(0x71d)+_0x4b042d(0x2aa)](_0x334e24[_0x57fd96(0x147)])[_0x2cc389(0xb7f)+_0x3ace33(0x969)]=_0x242e45[_0x2cc389(0x7b7)+_0x3ace33(0x71d)+_0x3ace33(0x2aa)](_0x334e24[_0x3ace33(0x147)])[_0x2cc389(0xb7f)+_0x2cc389(0x577)+'ht'];else{if(_0x334e24[_0x3ace33(0xad3)](_0xc6f80b[_0x3ace33(0x57e)][_0x57fd96(0x39c)+'Of'](_0x334e24[_0x3ace33(0x56f)]),-(-0x1f1b*-0x1+-0x22f1+-0x1*-0x3d7))||_0x3d5428[_0x2cc389(0x325)+_0x3ace33(0x6f3)](_0xc6f80b[_0x2cc389(0x57e)][_0x5bdbd3(0x8b0)+_0x5bdbd3(0x2e1)+'e']()))continue;_0x2fa2e6+=':“'+_0xc6f80b[_0x2cc389(0x57e)]+'';}}else{if(_0xc6f80b[_0x57fd96(0x51c)]||_0xc6f80b[_0x2cc389(0x5a2)+_0x2cc389(0x3a0)+'te'](_0x334e24[_0x57fd96(0xa12)])){if(_0x334e24[_0x5bdbd3(0x687)](_0x334e24[_0x57fd96(0x5ae)],_0x334e24[_0x5bdbd3(0x5ae)]))_0x3fef28=_0xfcc6bd[_0x2cc389(0x1f6)](_0x321d73)[_0x334e24[_0x5bdbd3(0x16b)]],_0x441c86='';else{if(_0x4ee2ce[_0x4b042d(0x325)+_0x3ace33(0x6f3)](_0xc6f80b[_0x3ace33(0x51c)]||_0xc6f80b[_0x5bdbd3(0x5a2)+_0x2cc389(0x3a0)+'te'](_0x334e24[_0x2cc389(0xa12)])))continue;if((_0xc6f80b[_0x2cc389(0x51c)]||_0xc6f80b[_0x4b042d(0x5a2)+_0x4b042d(0x3a0)+'te'](_0x334e24[_0x2cc389(0xa12)]))[_0x2cc389(0x325)+_0x3ace33(0x6f3)](_0x334e24[_0x5bdbd3(0x56f)])||_0x3d5428[_0x4b042d(0x325)+_0x57fd96(0x6f3)]((_0xc6f80b[_0x2cc389(0x51c)]||_0xc6f80b[_0x3ace33(0x5a2)+_0x5bdbd3(0x3a0)+'te'](_0x334e24[_0x2cc389(0xa12)]))[_0x3ace33(0x8b0)+_0x57fd96(0x2e1)+'e']()))continue;_0x2fa2e6+=':“'+(_0xc6f80b[_0x2cc389(0x51c)]||_0xc6f80b[_0x57fd96(0x5a2)+_0x2cc389(0x3a0)+'te'](_0x334e24[_0x5bdbd3(0xa12)]))+'',_0x4ee2ce[_0x2cc389(0x798)](_0xc6f80b[_0x3ace33(0x51c)]||_0xc6f80b[_0x2cc389(0x5a2)+_0x2cc389(0x3a0)+'te'](_0x334e24[_0x2cc389(0xa12)]));}}}if((_0xc6f80b[_0x3ace33(0x258)][_0x57fd96(0x9ee)]||window[_0x57fd96(0x14e)+_0x4b042d(0x701)+_0x57fd96(0x871)+'e'](_0xc6f80b)[_0x2cc389(0xb75)+_0x5bdbd3(0x7ef)+_0x57fd96(0x8cc)]||window[_0x57fd96(0x14e)+_0x5bdbd3(0x701)+_0x2cc389(0x871)+'e'](_0xc6f80b)[_0x3ace33(0x9ee)])&&_0x334e24[_0x4b042d(0x6f5)]((''+(_0xc6f80b[_0x4b042d(0x258)][_0x3ace33(0x9ee)]||window[_0x2cc389(0x14e)+_0x2cc389(0x701)+_0x2cc389(0x871)+'e'](_0xc6f80b)[_0x2cc389(0xb75)+_0x57fd96(0x7ef)+_0x4b042d(0x8cc)]||window[_0x2cc389(0x14e)+_0x57fd96(0x701)+_0x2cc389(0x871)+'e'](_0xc6f80b)[_0x57fd96(0x9ee)]))[_0x57fd96(0x39c)+'Of'](_0x334e24[_0x5bdbd3(0xe8)]),-(0x1*-0x59a+-0x17b*-0x2+0x2a5))&&_0x334e24[_0x57fd96(0x6f5)]((''+(_0xc6f80b[_0x3ace33(0x258)][_0x5bdbd3(0x9ee)]||window[_0x2cc389(0x14e)+_0x4b042d(0x701)+_0x5bdbd3(0x871)+'e'](_0xc6f80b)[_0x2cc389(0xb75)+_0x5bdbd3(0x7ef)+_0x4b042d(0x8cc)]||window[_0x4b042d(0x14e)+_0x5bdbd3(0x701)+_0x2cc389(0x871)+'e'](_0xc6f80b)[_0x2cc389(0x9ee)]))[_0x3ace33(0x39c)+'Of'](_0x334e24[_0x4b042d(0x492)]),-(-0x1c02+-0x140*0x15+0x3643))){if(_0x334e24[_0x3ace33(0x6a2)](_0x334e24[_0x3ace33(0x2c3)],_0x334e24[_0x4b042d(0x321)])){const _0x5a9d56=_0x268854[_0x4b042d(0x444)+_0x57fd96(0x413)+'r'][_0x3ace33(0x6d0)+_0x57fd96(0x8ae)][_0x5bdbd3(0xfa)](_0x298fd9),_0x3e82a6=_0x1d303d[_0x3dcf75],_0x572993=_0x367c03[_0x3e82a6]||_0x5a9d56;_0x5a9d56[_0x3ace33(0x5b0)+_0x57fd96(0x97b)]=_0x2fbeb3[_0x5bdbd3(0xfa)](_0x4a7398),_0x5a9d56[_0x57fd96(0x65f)+_0x2cc389(0x768)]=_0x572993[_0x3ace33(0x65f)+_0x2cc389(0x768)][_0x5bdbd3(0xfa)](_0x572993),_0x4740d1[_0x3e82a6]=_0x5a9d56;}else _0x2fa2e6+=_0x2cc389(0x66a)+(_0xc6f80b[_0x5bdbd3(0x258)][_0x4b042d(0x9ee)]||window[_0x2cc389(0x14e)+_0x5bdbd3(0x701)+_0x3ace33(0x871)+'e'](_0xc6f80b)[_0x2cc389(0xb75)+_0x57fd96(0x7ef)+_0x3ace33(0x8cc)]||window[_0x4b042d(0x14e)+_0x2cc389(0x701)+_0x4b042d(0x871)+'e'](_0xc6f80b)[_0x57fd96(0x9ee)]);}const _0x289912=_0x334e24[_0x2cc389(0x9c6)](getElementPosition,_0xc6f80b);_0x2fa2e6+=_0x5bdbd3(0x9f0)+_0x289912;}}}}if(_0x2fa2e6&&_0x334e24[_0x4b042d(0x344)](_0x2fa2e6,''))_0x264bb4[_0x5bdbd3(0x798)](_0x2fa2e6);}}return _0x334e24[_0x2cc389(0x4b4)](unique,_0x264bb4);}function unique(_0x5bbd6f){const _0x5efbf1=_0x31dd;return Array[_0x5efbf1(0x5da)](new Set(_0x5bbd6f));}function getElementPosition(_0x22da6c){const _0x48cf45=_0x31dd,_0x409bc2=_0x31dd,_0x3e1d8e=_0x31dd,_0x1af749=_0x31dd,_0x528051=_0x31dd,_0xb66654={};_0xb66654[_0x48cf45(0x97f)]=function(_0x17a1df,_0x3ad6ad){return _0x17a1df<_0x3ad6ad;},_0xb66654[_0x48cf45(0x1dd)]=function(_0xce6625,_0x5ec3b6){return _0xce6625+_0x5ec3b6;},_0xb66654[_0x48cf45(0x643)]=function(_0x3bc4d7,_0x5a35b6){return _0x3bc4d7+_0x5a35b6;},_0xb66654[_0x3e1d8e(0x8ac)]=_0x528051(0x2a7)+'es',_0xb66654[_0x409bc2(0x866)]=function(_0x296c87,_0x47749b){return _0x296c87+_0x47749b;},_0xb66654[_0x48cf45(0x6fe)]=function(_0x1fc409,_0x525e28){return _0x1fc409-_0x525e28;},_0xb66654[_0x3e1d8e(0x4bb)]=function(_0x4b33de,_0x5be678){return _0x4b33de<=_0x5be678;},_0xb66654[_0x48cf45(0xad1)]=function(_0x20914c,_0x1382f1){return _0x20914c>_0x1382f1;},_0xb66654[_0x48cf45(0x8d7)]=function(_0x4733df,_0x28b5c7){return _0x4733df-_0x28b5c7;},_0xb66654[_0x528051(0x9de)]=function(_0x5d7284,_0x2907bf){return _0x5d7284/_0x2907bf;},_0xb66654[_0x3e1d8e(0x4a6)]=function(_0x287fce,_0x33758d){return _0x287fce/_0x33758d;},_0xb66654[_0x48cf45(0x1db)]=function(_0x4c4a4f,_0x79be61){return _0x4c4a4f<_0x79be61;},_0xb66654[_0x409bc2(0x5a4)]=function(_0x1c6b9c,_0x2c5028){return _0x1c6b9c===_0x2c5028;},_0xb66654[_0x528051(0x9c7)]=_0x3e1d8e(0x7bb),_0xb66654[_0x409bc2(0x119)]=_0x528051(0xa23),_0xb66654[_0x48cf45(0x8ff)]=function(_0x544e49,_0x59e178){return _0x544e49*_0x59e178;},_0xb66654[_0x409bc2(0x4a1)]=function(_0x33f11a,_0x844f0f){return _0x33f11a===_0x844f0f;},_0xb66654[_0x409bc2(0xa17)]=_0x1af749(0x545),_0xb66654[_0x528051(0xb3d)]=_0x48cf45(0x327),_0xb66654[_0x48cf45(0xb65)]=_0x528051(0x618),_0xb66654[_0x48cf45(0x77a)]=function(_0x4dc7ba,_0x1830a0){return _0x4dc7ba/_0x1830a0;},_0xb66654[_0x48cf45(0x63f)]=function(_0x5732b8,_0x25e8f8){return _0x5732b8===_0x25e8f8;},_0xb66654[_0x528051(0x82e)]=_0x409bc2(0xaf1),_0xb66654[_0x1af749(0x8a8)]=_0x528051(0x25f),_0xb66654[_0x3e1d8e(0x78a)]=function(_0x1443a4,_0x1e20eb){return _0x1443a4>_0x1e20eb;},_0xb66654[_0x409bc2(0x8ec)]=function(_0x18937a,_0x2162fb){return _0x18937a*_0x2162fb;},_0xb66654[_0x3e1d8e(0x833)]=_0x409bc2(0x7cd),_0xb66654[_0x528051(0x3c9)]=_0x48cf45(0x482),_0xb66654[_0x3e1d8e(0x30a)]=function(_0x2b1c79,_0x109f6a){return _0x2b1c79===_0x109f6a;},_0xb66654[_0x3e1d8e(0x266)]=_0x3e1d8e(0x476),_0xb66654[_0x528051(0x7be)]=_0x409bc2(0x5e1);const _0x1b2336=_0xb66654,_0x198dfd=_0x22da6c[_0x409bc2(0x954)+_0x3e1d8e(0x462)+_0x48cf45(0x6a9)+_0x3e1d8e(0x363)+'t'](),_0x493518=_0x1b2336[_0x3e1d8e(0x643)](_0x198dfd[_0x409bc2(0x741)],_0x1b2336[_0x3e1d8e(0x9de)](_0x198dfd[_0x528051(0x9e5)],-0x2*0x9d+0xe57+-0xd1b)),_0x24ce6d=_0x1b2336[_0x528051(0x643)](_0x198dfd[_0x528051(0xb8b)],_0x1b2336[_0x409bc2(0x4a6)](_0x198dfd[_0x1af749(0x78f)+'t'],-0x4fb+0x7a0*0x4+-0x1983));let _0x31209e='';if(_0x1b2336[_0x3e1d8e(0x1db)](_0x493518,_0x1b2336[_0x1af749(0x4a6)](window[_0x1af749(0x209)+_0x48cf45(0x4d4)],-0xe2b+-0x1201*0x1+0x202f)))_0x1b2336[_0x409bc2(0x5a4)](_0x1b2336[_0x1af749(0x9c7)],_0x1b2336[_0x1af749(0x119)])?_0x51660e[_0x1af749(0x125)]():_0x31209e+='';else{if(_0x1b2336[_0x3e1d8e(0xad1)](_0x493518,_0x1b2336[_0x3e1d8e(0x4a6)](_0x1b2336[_0x1af749(0x8ff)](window[_0x48cf45(0x209)+_0x528051(0x4d4)],0x2*-0x2f9+-0x9ed+-0x10f*-0xf),0x2*-0x1225+0xf*0x40+-0x208d*-0x1))){if(_0x1b2336[_0x1af749(0x4a1)](_0x1b2336[_0x409bc2(0xa17)],_0x1b2336[_0x3e1d8e(0xa17)]))_0x31209e+='';else{if(_0x1b2336[_0x528051(0x97f)](_0x1b2336[_0x528051(0x1dd)](_0x1b2336[_0x409bc2(0x1dd)](_0x4b8446,_0x3356f9[_0x4d5e8a]),'\x0a')[_0x3e1d8e(0x3fa)+'h'],-0x10f5+-0xf25*-0x2+-0x17*0x83))_0x28377b=_0x1b2336[_0x409bc2(0x643)](_0x1b2336[_0x1af749(0x643)](_0x378871,_0x31a073[_0x574321]),'\x0a');}}else _0x1b2336[_0x528051(0x4a1)](_0x1b2336[_0x3e1d8e(0xb3d)],_0x1b2336[_0x3e1d8e(0xb65)])?_0x3eb34d=null:_0x31209e+='';}if(_0x1b2336[_0x528051(0x97f)](_0x24ce6d,_0x1b2336[_0x409bc2(0x77a)](window[_0x48cf45(0x209)+_0x48cf45(0x563)+'t'],-0x1894+-0x1bd5+0x346c))){if(_0x1b2336[_0x409bc2(0x63f)](_0x1b2336[_0x3e1d8e(0x82e)],_0x1b2336[_0x1af749(0x8a8)]))try{_0x4248f8=_0xdc3225[_0x1af749(0x1f6)](_0x1b2336[_0x409bc2(0x643)](_0x23516a,_0x29c416))[_0x1b2336[_0x48cf45(0x8ac)]],_0x1e0a78='';}catch(_0x3e2568){_0x2dafc7=_0x45cdf8[_0x1af749(0x1f6)](_0x4c52c7)[_0x1b2336[_0x528051(0x8ac)]],_0x132682='';}else _0x31209e+='';}else{if(_0x1b2336[_0x48cf45(0x78a)](_0x24ce6d,_0x1b2336[_0x3e1d8e(0x4a6)](_0x1b2336[_0x528051(0x8ec)](window[_0x409bc2(0x209)+_0x1af749(0x563)+'t'],-0x38d+0x2*-0x1336+0x29fb),0xda7+-0x12f2+0x54e))){if(_0x1b2336[_0x48cf45(0x5a4)](_0x1b2336[_0x3e1d8e(0x833)],_0x1b2336[_0x528051(0x3c9)])){const _0x5002cb=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0x234712=new _0x1672ba(),_0x457431=(_0x5c2ac2,_0x3bebcb)=>{const _0x325a09=_0x3e1d8e,_0x397e19=_0x3e1d8e,_0x2b969f=_0x528051,_0xcddc2=_0x3e1d8e,_0x1fc096=_0x1af749;if(_0x234712[_0x325a09(0x420)](_0x3bebcb))return _0x5c2ac2;const _0x5d72c5=_0x3bebcb[_0x397e19(0x31e)](/[;,;、,]/),_0x477c48=_0x5d72c5[_0x397e19(0x790)](_0x14b4ae=>'['+_0x14b4ae+']')[_0x2b969f(0x1c6)]('\x20'),_0x48acaf=_0x5d72c5[_0x2b969f(0x790)](_0x21cc03=>'['+_0x21cc03+']')[_0x1fc096(0x1c6)]('\x0a');_0x5d72c5[_0x325a09(0x9ad)+'ch'](_0x3644f2=>_0x234712[_0x2b969f(0xb6f)](_0x3644f2)),_0x224aef='\x20';for(var _0x57041d=_0x1b2336[_0x397e19(0x866)](_0x1b2336[_0x397e19(0x6fe)](_0x234712[_0x397e19(0x591)],_0x5d72c5[_0x397e19(0x3fa)+'h']),0x1d90+-0x14de+0x19*-0x59);_0x1b2336[_0x2b969f(0x4bb)](_0x57041d,_0x234712[_0x1fc096(0x591)]);++_0x57041d)_0x3fa509+='[^'+_0x57041d+']\x20';return _0x22079d;};let _0x2d8c46=0x1f4a+0x1*-0xcb5+-0x1294,_0x3d1f87=_0x3727fb[_0x3e1d8e(0x28a)+'ce'](_0x5002cb,_0x457431);while(_0x1b2336[_0x3e1d8e(0xad1)](_0x234712[_0x409bc2(0x591)],-0x5b*-0xd+0x23f7+0x2*-0x144b)){const _0x3b7490='['+_0x2d8c46++ +_0x409bc2(0x8e2)+_0x234712[_0x1af749(0x8b1)+'s']()[_0x528051(0x902)]()[_0x3e1d8e(0x8b1)],_0x59cef0='[^'+_0x1b2336[_0x48cf45(0x8d7)](_0x2d8c46,-0x1*-0x1d36+-0x153b+-0x7fa)+_0x409bc2(0x8e2)+_0x234712[_0x528051(0x8b1)+'s']()[_0x1af749(0x902)]()[_0x409bc2(0x8b1)];_0x3d1f87=_0x3d1f87+'\x0a\x0a'+_0x59cef0,_0x234712[_0x528051(0xb50)+'e'](_0x234712[_0x528051(0x8b1)+'s']()[_0x3e1d8e(0x902)]()[_0x48cf45(0x8b1)]);}return _0x3d1f87;}else _0x31209e+='';}else _0x1b2336[_0x3e1d8e(0x30a)](_0x1b2336[_0x3e1d8e(0x266)],_0x1b2336[_0x48cf45(0x7be)])?_0x548cf7+=_0x528051(0x66a)+(_0x13aea7[_0x48cf45(0x258)][_0x1af749(0x9ee)]||_0x3e67bf[_0x409bc2(0x14e)+_0x528051(0x701)+_0x409bc2(0x871)+'e'](_0x20de27)[_0x3e1d8e(0xb75)+_0x48cf45(0x7ef)+_0x48cf45(0x8cc)]||_0x2e2d69[_0x48cf45(0x14e)+_0x48cf45(0x701)+_0x1af749(0x871)+'e'](_0x32ddb0)[_0x1af749(0x9ee)]):_0x31209e+='';}return _0x31209e;}function stringToArrayBuffer(_0x5edbf8){const _0x3cbf71=_0x31dd,_0x437011=_0x31dd,_0x1d0415=_0x31dd,_0x128b5d=_0x31dd,_0x4de971=_0x31dd,_0x49cfbc={};_0x49cfbc[_0x3cbf71(0x58c)]=function(_0x3be885,_0x36b1d9){return _0x3be885!==_0x36b1d9;},_0x49cfbc[_0x3cbf71(0x895)]=_0x1d0415(0x80e),_0x49cfbc[_0x437011(0x4a4)]=function(_0x156c6c,_0x3d1142){return _0x156c6c<_0x3d1142;},_0x49cfbc[_0x4de971(0x4e0)]=function(_0x2c49b2,_0x2ac337){return _0x2c49b2!==_0x2ac337;},_0x49cfbc[_0x4de971(0x5e4)]=_0x128b5d(0x9b9),_0x49cfbc[_0x4de971(0x6bb)]=_0x437011(0x5fc);const _0x204019=_0x49cfbc;if(!_0x5edbf8)return;try{if(_0x204019[_0x437011(0x58c)](_0x204019[_0x437011(0x895)],_0x204019[_0x128b5d(0x895)]))_0x2cb302+=_0x10130d;else{var _0x1e7295=new ArrayBuffer(_0x5edbf8[_0x128b5d(0x3fa)+'h']),_0x370638=new Uint8Array(_0x1e7295);for(var _0x104d04=0x263b+0x5c*0x61+-0x4917,_0x2142a2=_0x5edbf8[_0x128b5d(0x3fa)+'h'];_0x204019[_0x4de971(0x4a4)](_0x104d04,_0x2142a2);_0x104d04++){_0x204019[_0x3cbf71(0x4e0)](_0x204019[_0x128b5d(0x5e4)],_0x204019[_0x1d0415(0x6bb)])?_0x370638[_0x104d04]=_0x5edbf8[_0x1d0415(0x6c3)+_0x1d0415(0x354)](_0x104d04):_0x4f048e+=_0x329345;}return _0x1e7295;}}catch(_0x1b8e76){}}function arrayBufferToString(_0x4b7dec){const _0x47884a=_0x31dd,_0x1f1669=_0x31dd,_0x50e29f=_0x31dd,_0x53cff6=_0x31dd,_0x39b163=_0x31dd,_0x514c51={'YSgpZ':function(_0x4fef39,_0x3f5766){return _0x4fef39(_0x3f5766);},'otXYD':_0x47884a(0x5d2)+_0x47884a(0x764),'TcjsA':function(_0x5a68b1,_0x294e02){return _0x5a68b1===_0x294e02;},'HCQOL':_0x50e29f(0xb30),'rViVq':function(_0x44f49b,_0x3f8bcd){return _0x44f49b<_0x3f8bcd;},'LaNGV':function(_0x35b176,_0x281b80){return _0x35b176!==_0x281b80;},'kYxJU':_0x47884a(0x93f),'QjOVl':_0x53cff6(0x399)};try{if(_0x514c51[_0x1f1669(0x71a)](_0x514c51[_0x53cff6(0x85c)],_0x514c51[_0x50e29f(0x85c)])){var _0xd54e58=new Uint8Array(_0x4b7dec),_0x42dd55='';for(var _0x3d117f=0x1296+-0x23b5+0x111f*0x1;_0x514c51[_0x47884a(0x560)](_0x3d117f,_0xd54e58[_0x39b163(0x2c9)+_0x1f1669(0xb4a)]);_0x3d117f++){_0x514c51[_0x50e29f(0x273)](_0x514c51[_0x39b163(0x9cb)],_0x514c51[_0x47884a(0xa40)])?_0x42dd55+=String[_0x39b163(0x4f1)+_0x50e29f(0x1ff)+_0x39b163(0xb67)](_0xd54e58[_0x3d117f]):_0x1fdcaf='表单';}return _0x42dd55;}else try{_0x4af4f1=_0x514c51[_0x50e29f(0x3b0)](_0x460394,_0x1fef2a);const _0x10c0c6={};return _0x10c0c6[_0x47884a(0x825)]=_0x514c51[_0x1f1669(0xa3c)],_0x9d662e[_0x53cff6(0x7b4)+'e'][_0x39b163(0xb2a)+'pt'](_0x10c0c6,_0xa8a097,_0x1f7f47);}catch(_0x2ab5d7){}}catch(_0x19aa23){}}function importPrivateKey(_0x5565e0){const _0x4003a5=_0x31dd,_0x1c8c62=_0x31dd,_0x18f903=_0x31dd,_0x5505cf=_0x31dd,_0x32e2eb=_0x31dd,_0x1ab93e={'GEuuq':_0x4003a5(0x18b)+_0x1c8c62(0x1bf)+_0x1c8c62(0x1ca)+_0x5505cf(0x4cf)+_0x1c8c62(0x944)+'--','OaBPd':_0x4003a5(0x18b)+_0x5505cf(0x63b)+_0x18f903(0x4c9)+_0x5505cf(0x924)+_0x5505cf(0x18b),'MvDUx':function(_0x5ba036,_0x5bdc3e){return _0x5ba036-_0x5bdc3e;},'wAxCg':function(_0x449e9e,_0x171d2b){return _0x449e9e(_0x171d2b);},'DfesQ':_0x4003a5(0xa9b),'FufFF':_0x1c8c62(0x5d2)+_0x4003a5(0x764),'yfxjR':_0x32e2eb(0x4fd)+'56','ovBxU':_0x18f903(0x15d)+'pt'},_0x28de54=_0x1ab93e[_0x5505cf(0x894)],_0x29dff7=_0x1ab93e[_0x4003a5(0x923)],_0x39f31a=_0x5565e0[_0x1c8c62(0x8d3)+_0x4003a5(0x220)](_0x28de54[_0x18f903(0x3fa)+'h'],_0x1ab93e[_0x32e2eb(0x90c)](_0x5565e0[_0x4003a5(0x3fa)+'h'],_0x29dff7[_0x18f903(0x3fa)+'h'])),_0x2cfdaa=_0x1ab93e[_0x4003a5(0x1e2)](atob,_0x39f31a),_0x42a767=_0x1ab93e[_0x32e2eb(0x1e2)](stringToArrayBuffer,_0x2cfdaa);return crypto[_0x4003a5(0x7b4)+'e'][_0x32e2eb(0x46e)+_0x18f903(0x922)](_0x1ab93e[_0x32e2eb(0x7a1)],_0x42a767,{'name':_0x1ab93e[_0x18f903(0x301)],'hash':_0x1ab93e[_0x5505cf(0x630)]},!![],[_0x1ab93e[_0x1c8c62(0x636)]]);}function importPublicKey(_0x4bfe30){const _0x54e77e=_0x31dd,_0x5192ac=_0x31dd,_0x17c85b=_0x31dd,_0x2bda07=_0x31dd,_0x2e2d9f=_0x31dd,_0x2b73f2={'uMCwj':function(_0x5672f5,_0x274570){return _0x5672f5<_0x274570;},'kLbwG':function(_0x463ad0,_0x30ce5c){return _0x463ad0===_0x30ce5c;},'DseVy':_0x54e77e(0x43d),'sumeM':function(_0x240fa5,_0x5e2955){return _0x240fa5!==_0x5e2955;},'mIMNG':_0x5192ac(0xa9c),'svCNK':_0x54e77e(0x50a),'oeXbg':function(_0x2e69ac,_0x1a459c){return _0x2e69ac>=_0x1a459c;},'sLvOG':_0x17c85b(0xaf0)+_0x2bda07(0xaf8)+_0x17c85b(0xab6)+_0x5192ac(0x32e)+_0x5192ac(0x83d)+_0x54e77e(0x37f)+_0x17c85b(0x3bd)+_0x5192ac(0xb3a)+_0x2e2d9f(0x7d8)+_0x17c85b(0x7aa)+_0x2bda07(0x3b2)+_0x17c85b(0x99f)+_0x2bda07(0x694),'oKQXS':function(_0x24e411,_0x5ce3cd){return _0x24e411+_0x5ce3cd;},'RoNvR':_0x5192ac(0x696),'MXXlC':function(_0x42404d,_0x57ba9d){return _0x42404d(_0x57ba9d);},'WGujK':_0x54e77e(0x135)+_0x2bda07(0x1b8)+'rl','VhdwP':function(_0x2ec88b,_0x400add){return _0x2ec88b+_0x400add;},'etWCC':_0x54e77e(0x1d5)+'l','IaYcZ':_0x5192ac(0x2f3)+'rl','xJoPb':function(_0x1cdbba,_0x243c70){return _0x1cdbba(_0x243c70);},'baJiZ':function(_0x37018c,_0x13bf71){return _0x37018c+_0x13bf71;},'RKMZI':_0x17c85b(0xb8f)+':','eUNXQ':_0x2bda07(0xaa3)+'l','Wkmkc':_0x17c85b(0x793),'GyBbH':function(_0x375377,_0x475474){return _0x375377(_0x475474);},'alxKe':_0x54e77e(0xb63)+'rl','FdUXY':_0x2e2d9f(0x8bf),'MjwZd':_0x5192ac(0x2fb)+_0x2bda07(0x6ba)+_0x5192ac(0x5c6),'EcIDH':function(_0x24b72d,_0x28503b){return _0x24b72d+_0x28503b;},'yIFfr':_0x54e77e(0xb8f)+_0x2e2d9f(0x670)+_0x5192ac(0x1b8)+'rl','hxamm':_0x2e2d9f(0x8c8)+_0x54e77e(0x6ba)+_0x2bda07(0x5c6),'MLsoL':function(_0x3d78f2,_0x456b3b){return _0x3d78f2+_0x456b3b;},'UbCqv':_0x2bda07(0xb8f),'OPZjX':_0x2e2d9f(0x55e)+_0x5192ac(0x6ba)+_0x2e2d9f(0x5c6),'tdyvQ':function(_0x3be9d4,_0x53b455){return _0x3be9d4(_0x53b455);},'zCUwn':_0x5192ac(0x40d)+_0x54e77e(0x80c)+_0x2bda07(0x575),'xblUU':function(_0x5ebd90,_0x5d8c4a){return _0x5ebd90(_0x5d8c4a);},'pZCuu':_0x5192ac(0x927)+_0x2e2d9f(0x80c)+_0x2e2d9f(0x575),'MwYBH':function(_0x1cb6ac,_0x1cfab2){return _0x1cb6ac+_0x1cfab2;},'zsZjB':_0x2bda07(0xb8f)+_0x17c85b(0x9ea),'sTnFg':function(_0xbfe0d1,_0x48c09c){return _0xbfe0d1+_0x48c09c;},'yNwqJ':_0x5192ac(0x725)+'rl','VyQfQ':function(_0xb450e6,_0x2fab8c){return _0xb450e6(_0x2fab8c);},'JfiZv':_0x17c85b(0x898),'qnaup':function(_0x5b27a1,_0x1fa794){return _0x5b27a1+_0x1fa794;},'uCIRX':_0x2bda07(0x842)+'l','BsHIi':_0x2bda07(0xb8f)+_0x17c85b(0x9ce),'RkgqP':function(_0x3f9a05,_0x4344cc){return _0x3f9a05(_0x4344cc);},'CbvJO':_0x2e2d9f(0xb8f)+_0x54e77e(0xf6)+_0x17c85b(0x5b8)+'l','yNgTL':_0x2bda07(0x4d3)+_0x2e2d9f(0x80c)+_0x54e77e(0x575),'eNwIW':function(_0x581f99,_0x412294){return _0x581f99+_0x412294;},'VfGOv':_0x2bda07(0xf6)+_0x2bda07(0x5b8)+'l','pauly':function(_0xe44469,_0x124fe3){return _0xe44469+_0x124fe3;},'ZUzry':_0x2bda07(0xf6)+_0x2bda07(0x9ce),'ahmfk':_0x2bda07(0x9ce),'zNExO':function(_0x4615ed,_0x4f53dd){return _0x4615ed(_0x4f53dd);},'nrLYt':_0x17c85b(0x2a7)+'es','NljHB':function(_0x560747,_0x4722ce){return _0x560747===_0x4722ce;},'AJPyo':_0x17c85b(0x548),'KdjIW':_0x2bda07(0x419),'jJqZi':function(_0x44fcb1,_0x32f9b5){return _0x44fcb1===_0x32f9b5;},'RyFLi':_0x5192ac(0x123),'YOFJW':_0x5192ac(0xa64),'kuFxG':_0x2bda07(0x897)+_0x5192ac(0x6de)+'+$','NAPEw':function(_0x38d8c5,_0x588ded){return _0x38d8c5-_0x588ded;},'JFMLE':function(_0x31086d,_0x3b37ce){return _0x31086d<=_0x3b37ce;},'qtUeO':function(_0x429a03){return _0x429a03();},'jjBmT':_0x5192ac(0x727),'bGrHP':function(_0x19e1d7,_0x4b8abd){return _0x19e1d7!==_0x4b8abd;},'RtthA':_0x2e2d9f(0xa65),'AZnpT':_0x2e2d9f(0xa72),'WnZFt':_0x54e77e(0xabc),'fopgL':function(_0x3181be,_0x3ada06){return _0x3181be===_0x3ada06;},'CsZAM':_0x2e2d9f(0x347),'FHrkG':_0x54e77e(0x1a3),'GrCGY':_0x5192ac(0xb6e)+_0x54e77e(0x678),'oMxRT':_0x2bda07(0x3e1)+_0x54e77e(0x48a)+'t','qBBYA':_0x54e77e(0x176),'CIyAs':_0x2bda07(0x7c1)+_0x17c85b(0x877),'OhEXC':_0x17c85b(0x6a6)+'ss','sbRHj':function(_0x1fbad1,_0x50fdef){return _0x1fbad1===_0x50fdef;},'usjeZ':_0x2bda07(0x8ad),'voaZA':_0x5192ac(0x650)+_0x2bda07(0x820)+_0x54e77e(0x677)+')','YSNkQ':_0x17c85b(0x8ee)+_0x2e2d9f(0x5f0)+_0x5192ac(0x469)+_0x2bda07(0xada)+_0x2e2d9f(0x348)+_0x17c85b(0x982)+_0x5192ac(0x35f),'onhYO':_0x17c85b(0x35c),'PWhDx':function(_0x52c8d5,_0x71b523){return _0x52c8d5+_0x71b523;},'VcSuM':_0x2bda07(0x6b4),'ByMAL':function(_0x2f08fa,_0x5a1d7f){return _0x2f08fa+_0x5a1d7f;},'yKafq':_0x2e2d9f(0x6f8),'qcRFS':_0x54e77e(0x900),'nBkVM':_0x54e77e(0xb1f),'zWSmL':function(_0x12a679,_0x3c1e90){return _0x12a679(_0x3c1e90);},'SHScx':function(_0x53e205,_0x2c614d){return _0x53e205===_0x2c614d;},'NjFqD':_0x2bda07(0x9a8),'HAjXE':_0x2bda07(0x590),'eiXKE':_0x2bda07(0x22a),'lvrLq':_0x5192ac(0x929),'tDILo':function(_0x52343b,_0xcc45d1,_0x298415){return _0x52343b(_0xcc45d1,_0x298415);},'qfcQz':function(_0x339299,_0x35066d){return _0x339299+_0x35066d;},'VAbuW':function(_0x33ffc3,_0x40860d){return _0x33ffc3+_0x40860d;},'IgAaY':function(_0x28145b,_0x5a1440){return _0x28145b!==_0x5a1440;},'yvbzi':_0x2bda07(0x158),'eCiBA':_0x2e2d9f(0x67c),'oMXEs':_0x5192ac(0x56a),'EIWms':_0x2bda07(0x95f),'GmhGo':function(_0x5bb956,_0x4d53aa){return _0x5bb956===_0x4d53aa;},'tbnbE':_0x17c85b(0x391),'MbLSB':_0x54e77e(0x295),'GUfPs':_0x17c85b(0x6e6),'yeDXF':_0x54e77e(0xb70),'MvArE':function(_0x57f9f3,_0x40a3b2){return _0x57f9f3!==_0x40a3b2;},'AWSbY':_0x2e2d9f(0x36f),'gWRfi':function(_0x405c59,_0x3fb3a8){return _0x405c59(_0x3fb3a8);},'BtzoF':function(_0x538235,_0x51b47b){return _0x538235+_0x51b47b;},'ZtjkS':_0x17c85b(0xb52)+_0x17c85b(0x68a)+_0x2bda07(0xf8)+_0x2e2d9f(0x40b),'veuKx':_0x5192ac(0x7c4)+_0x5192ac(0x438)+_0x17c85b(0x940)+_0x17c85b(0x970)+_0x5192ac(0xb07)+_0x5192ac(0x14f)+'\x20)','gQZkm':function(_0x1dd900,_0x1d83bc){return _0x1dd900!==_0x1d83bc;},'UTifK':_0x17c85b(0x9cf),'aEwgv':_0x17c85b(0x867),'nwbNU':function(_0x309d07){return _0x309d07();},'hBExp':_0x5192ac(0x522),'djYWw':_0x5192ac(0x814),'ljQvq':_0x2e2d9f(0x955),'CAXkn':_0x2bda07(0x7ba),'ECeLw':_0x17c85b(0x4f8)+_0x54e77e(0x25b),'BvTuU':_0x54e77e(0x252),'bZaIf':_0x17c85b(0x5bc),'wsPPc':function(_0x111806,_0x45d153){return _0x111806<_0x45d153;},'FxMsS':function(_0x555b4f,_0x2e4a9a){return _0x555b4f!==_0x2e4a9a;},'hLhAZ':_0x54e77e(0x191),'NqUWq':function(_0x1781c6){return _0x1781c6();},'QXNzJ':_0x17c85b(0x18b)+_0x5192ac(0x1bf)+_0x54e77e(0x51a)+_0x17c85b(0xaad)+_0x17c85b(0x247)+'-','JWKfu':_0x2bda07(0x18b)+_0x2e2d9f(0x63b)+_0x5192ac(0x9ef)+_0x54e77e(0x33c)+_0x2bda07(0xa4d),'cWzJC':function(_0x4c8cce,_0x1be51c){return _0x4c8cce-_0x1be51c;},'HUSNo':function(_0x4f44bb,_0x523116){return _0x4f44bb(_0x523116);},'SaPcv':function(_0x24c403,_0xf96dd4){return _0x24c403(_0xf96dd4);},'CQXvH':_0x54e77e(0x92b),'xMBzT':_0x17c85b(0x5d2)+_0x54e77e(0x764),'xChgr':_0x2e2d9f(0x4fd)+'56','WiqQn':_0x2bda07(0xb2a)+'pt'},_0xd6ee79=(function(){const _0x29e375=_0x17c85b,_0x240998=_0x2bda07,_0x318f9b=_0x54e77e,_0x2bb3d3=_0x2bda07,_0x445eab=_0x2e2d9f,_0x160d7f={'ugSri':function(_0x2a8dc1,_0x5126a3){const _0xec7f3c=_0x31dd;return _0x2b73f2[_0xec7f3c(0x83c)](_0x2a8dc1,_0x5126a3);},'hsWOu':_0x2b73f2[_0x29e375(0xaa9)],'tkQaN':function(_0x12b396,_0x4fafd8){const _0x333eca=_0x29e375;return _0x2b73f2[_0x333eca(0x905)](_0x12b396,_0x4fafd8);},'Chzod':_0x2b73f2[_0x240998(0x59b)],'SGMXD':function(_0x26f7ed,_0x836b58){const _0x4d8bfd=_0x240998;return _0x2b73f2[_0x4d8bfd(0x864)](_0x26f7ed,_0x836b58);},'ewIUF':function(_0x42c34e,_0x115827){const _0x50799f=_0x29e375;return _0x2b73f2[_0x50799f(0x905)](_0x42c34e,_0x115827);},'gKbCg':_0x2b73f2[_0x318f9b(0x297)],'ufErN':function(_0x2a2854,_0x16022b){const _0x411d3a=_0x240998;return _0x2b73f2[_0x411d3a(0x56b)](_0x2a2854,_0x16022b);},'bXHaN':_0x2b73f2[_0x318f9b(0x85f)],'UBrzb':function(_0x4e0a5a,_0x32b933){const _0x5ba8f5=_0x318f9b;return _0x2b73f2[_0x5ba8f5(0x864)](_0x4e0a5a,_0x32b933);},'BCBYz':function(_0x41e6fa,_0x171faf){const _0x1ecbfe=_0x2bb3d3;return _0x2b73f2[_0x1ecbfe(0x905)](_0x41e6fa,_0x171faf);},'nJQcT':_0x2b73f2[_0x2bb3d3(0x6f1)],'JdIGo':function(_0x4e3aba,_0x29ad6c){const _0x4c1db1=_0x2bb3d3;return _0x2b73f2[_0x4c1db1(0xae5)](_0x4e3aba,_0x29ad6c);},'EODXO':function(_0x34aaff,_0x374d1c){const _0x2f7ffa=_0x445eab;return _0x2b73f2[_0x2f7ffa(0xa60)](_0x34aaff,_0x374d1c);},'zccLE':_0x2b73f2[_0x318f9b(0x712)],'YISdw':_0x2b73f2[_0x318f9b(0x294)],'WEiDX':function(_0x264c95,_0x19f575){const _0x26cc88=_0x2bb3d3;return _0x2b73f2[_0x26cc88(0x56b)](_0x264c95,_0x19f575);},'AXqyM':function(_0x48ec7f,_0x119beb){const _0x5423e2=_0x240998;return _0x2b73f2[_0x5423e2(0x864)](_0x48ec7f,_0x119beb);},'CUBQJ':_0x2b73f2[_0x318f9b(0xa47)],'kxDuW':function(_0x28690a,_0x3d81e6){const _0x52fa11=_0x2bb3d3;return _0x2b73f2[_0x52fa11(0x681)](_0x28690a,_0x3d81e6);},'aTXWq':function(_0x42a67e,_0x3a3555){const _0x1fbb1a=_0x240998;return _0x2b73f2[_0x1fbb1a(0x56b)](_0x42a67e,_0x3a3555);},'RvqXX':_0x2b73f2[_0x318f9b(0xb6c)],'YQixQ':function(_0x2fcc77,_0x2eeedc){const _0x570322=_0x2bb3d3;return _0x2b73f2[_0x570322(0x56b)](_0x2fcc77,_0x2eeedc);},'pkAiz':function(_0x443587,_0x4870d7){const _0x51021c=_0x318f9b;return _0x2b73f2[_0x51021c(0x681)](_0x443587,_0x4870d7);},'QWICS':_0x2b73f2[_0x318f9b(0x150)],'UEiGu':function(_0x1ddc90,_0x5956de){const _0x4017a4=_0x445eab;return _0x2b73f2[_0x4017a4(0x681)](_0x1ddc90,_0x5956de);},'IdZgo':function(_0x463433,_0xac208e){const _0xe7511a=_0x2bb3d3;return _0x2b73f2[_0xe7511a(0xa60)](_0x463433,_0xac208e);},'NuOgr':function(_0x178916,_0x159aa3){const _0x5a674d=_0x240998;return _0x2b73f2[_0x5a674d(0x864)](_0x178916,_0x159aa3);},'cIQbu':_0x2b73f2[_0x445eab(0x251)],'TdeMz':function(_0x5a3d9a,_0x152212){const _0x48c220=_0x240998;return _0x2b73f2[_0x48c220(0x56b)](_0x5a3d9a,_0x152212);},'MnTew':function(_0x3ad87c,_0x59db86){const _0x128bee=_0x240998;return _0x2b73f2[_0x128bee(0x4b1)](_0x3ad87c,_0x59db86);},'XrkBy':_0x2b73f2[_0x2bb3d3(0x460)],'YNhYX':function(_0x54f43d,_0x3932d5){const _0x3582fa=_0x445eab;return _0x2b73f2[_0x3582fa(0x4b1)](_0x54f43d,_0x3932d5);},'HjXZo':_0x2b73f2[_0x29e375(0x996)],'cPFEr':function(_0x3339bd,_0x1480ed){const _0x751ebe=_0x240998;return _0x2b73f2[_0x751ebe(0x56b)](_0x3339bd,_0x1480ed);},'TeBev':function(_0x2de902,_0x42437d){const _0x11d45b=_0x445eab;return _0x2b73f2[_0x11d45b(0x864)](_0x2de902,_0x42437d);},'CNVry':function(_0x339e00,_0x3dcf32){const _0x25c5b8=_0x318f9b;return _0x2b73f2[_0x25c5b8(0xb01)](_0x339e00,_0x3dcf32);},'RxxpX':function(_0x37d864,_0x2bc6f5){const _0x18717e=_0x2bb3d3;return _0x2b73f2[_0x18717e(0x864)](_0x37d864,_0x2bc6f5);},'gtyLb':_0x2b73f2[_0x318f9b(0x6f7)],'xKpdK':function(_0x5a7b89,_0x2d44a7){const _0x2b337b=_0x2bb3d3;return _0x2b73f2[_0x2b337b(0x681)](_0x5a7b89,_0x2d44a7);},'DGtFn':function(_0x568200,_0x1975ee){const _0x196451=_0x240998;return _0x2b73f2[_0x196451(0x864)](_0x568200,_0x1975ee);},'TOKzV':_0x2b73f2[_0x240998(0xa73)],'GcJdh':function(_0x1c0192,_0x4d661c){const _0x35c13b=_0x2bb3d3;return _0x2b73f2[_0x35c13b(0x681)](_0x1c0192,_0x4d661c);},'oLVoQ':function(_0x4b23cb,_0x2e3b5e){const _0x4c7987=_0x2bb3d3;return _0x2b73f2[_0x4c7987(0x557)](_0x4b23cb,_0x2e3b5e);},'PpvQR':_0x2b73f2[_0x240998(0x3b5)],'zQTpk':function(_0x2de671,_0x4d8f33){const _0x5007ae=_0x29e375;return _0x2b73f2[_0x5007ae(0x698)](_0x2de671,_0x4d8f33);},'YLbLm':function(_0x38f076,_0x3124c5){const _0x5e5f41=_0x318f9b;return _0x2b73f2[_0x5e5f41(0x681)](_0x38f076,_0x3124c5);},'KfXrz':_0x2b73f2[_0x318f9b(0x3e7)],'OtdbU':function(_0xcb695,_0x258ed0){const _0x3cd33c=_0x445eab;return _0x2b73f2[_0x3cd33c(0x681)](_0xcb695,_0x258ed0);},'GkBnF':function(_0x27fbb6,_0x30b727){const _0x5d2085=_0x240998;return _0x2b73f2[_0x5d2085(0x272)](_0x27fbb6,_0x30b727);},'CbuKK':_0x2b73f2[_0x29e375(0x2cf)],'TFzRl':function(_0x4d6f44,_0x350c1e){const _0x45c958=_0x29e375;return _0x2b73f2[_0x45c958(0x428)](_0x4d6f44,_0x350c1e);},'WuQyM':function(_0x255678,_0x477e29){const _0x4dc38e=_0x318f9b;return _0x2b73f2[_0x4dc38e(0x557)](_0x255678,_0x477e29);},'FVEHr':_0x2b73f2[_0x240998(0x42a)],'ACgTZ':function(_0x56ecd4,_0x292bc6){const _0x15e03b=_0x318f9b;return _0x2b73f2[_0x15e03b(0x698)](_0x56ecd4,_0x292bc6);},'LbCeO':function(_0x228acd,_0x4d1902){const _0x40d822=_0x240998;return _0x2b73f2[_0x40d822(0xb4f)](_0x228acd,_0x4d1902);},'qrPsQ':function(_0x3196d1,_0x467b04){const _0x5ee27c=_0x29e375;return _0x2b73f2[_0x5ee27c(0x272)](_0x3196d1,_0x467b04);},'HawIH':function(_0x13c858,_0x561069){const _0x50b50d=_0x2bb3d3;return _0x2b73f2[_0x50b50d(0x56b)](_0x13c858,_0x561069);},'HYdLb':_0x2b73f2[_0x318f9b(0x4b6)],'aYLkC':function(_0x25288,_0xa8999c){const _0x19f39b=_0x2bb3d3;return _0x2b73f2[_0x19f39b(0x557)](_0x25288,_0xa8999c);},'eYHRB':function(_0x57d32b,_0x278083){const _0x4578dd=_0x445eab;return _0x2b73f2[_0x4578dd(0x2de)](_0x57d32b,_0x278083);},'ocqDe':_0x2b73f2[_0x445eab(0xa5e)],'KutTI':function(_0x1e20ca,_0x592be5){const _0x549efd=_0x318f9b;return _0x2b73f2[_0x549efd(0x681)](_0x1e20ca,_0x592be5);},'ZLdCY':function(_0x449b25,_0x5763d7){const _0x5804cd=_0x240998;return _0x2b73f2[_0x5804cd(0xb4f)](_0x449b25,_0x5763d7);},'yOcXw':_0x2b73f2[_0x240998(0x293)],'SxZom':function(_0x5a4df6,_0x5dabfa){const _0x72953e=_0x240998;return _0x2b73f2[_0x72953e(0x370)](_0x5a4df6,_0x5dabfa);},'RBZyM':function(_0x42330d,_0x2af542){const _0x362ea3=_0x445eab;return _0x2b73f2[_0x362ea3(0xa60)](_0x42330d,_0x2af542);},'yGZyk':_0x2b73f2[_0x2bb3d3(0x536)],'YTGem':_0x2b73f2[_0x29e375(0xa25)],'OWTtV':function(_0x171e29,_0x39a97c){const _0x16a704=_0x29e375;return _0x2b73f2[_0x16a704(0x627)](_0x171e29,_0x39a97c);},'xFvJr':function(_0x2f1b2d,_0x5b3ed9){const _0x3c2f4d=_0x240998;return _0x2b73f2[_0x3c2f4d(0x56b)](_0x2f1b2d,_0x5b3ed9);},'byJED':_0x2b73f2[_0x2bb3d3(0x3b8)],'ulbvo':function(_0x25ee1a,_0x1530d5){const _0x1edbe8=_0x29e375;return _0x2b73f2[_0x1edbe8(0x543)](_0x25ee1a,_0x1530d5);},'nHkuP':_0x2b73f2[_0x29e375(0x891)],'DWmOS':function(_0x320a40,_0x5f106d){const _0x1ac256=_0x2bb3d3;return _0x2b73f2[_0x1ac256(0xb01)](_0x320a40,_0x5f106d);},'KDKFs':_0x2b73f2[_0x29e375(0x2fa)],'dMhZX':function(_0x18bb72,_0x45559d){const _0x26ede3=_0x29e375;return _0x2b73f2[_0x26ede3(0x82b)](_0x18bb72,_0x45559d);},'YzdUm':_0x2b73f2[_0x240998(0x6da)]};if(_0x2b73f2[_0x240998(0x33d)](_0x2b73f2[_0x318f9b(0x32f)],_0x2b73f2[_0x318f9b(0x851)])){_0x76fa9c=_0x19b748[_0x240998(0x28a)+_0x445eab(0x157)]('','(')[_0x445eab(0x28a)+_0x318f9b(0x157)]('',')')[_0x29e375(0x28a)+_0x240998(0x157)](':\x20',':')[_0x2bb3d3(0x28a)+_0x2bb3d3(0x157)]('',':')[_0x318f9b(0x28a)+_0x2bb3d3(0x157)](',\x20',',')[_0x445eab(0x28a)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x3fc59f=_0x2e115f[_0x2bb3d3(0x3fc)+_0x2bb3d3(0x280)][_0x2bb3d3(0x3fa)+'h'];_0x160d7f[_0x29e375(0x700)](_0x3fc59f,-0x2*-0x301+-0x111*0xd+-0x7db*-0x1);--_0x3fc59f){const _0xd453d5=_0x160d7f[_0x318f9b(0x29a)][_0x445eab(0x31e)]('|');let _0x586231=-0x386*-0x8+-0x1edd+0x2ad;while(!![]){switch(_0xd453d5[_0x586231++]){case'0':_0x1db0e6=_0x4a1b9b[_0x445eab(0x28a)+_0x318f9b(0x157)](_0x160d7f[_0x2bb3d3(0x571)](_0x160d7f[_0x2bb3d3(0x2ef)],_0x160d7f[_0x445eab(0xa7a)](_0x6a0b47,_0x3fc59f)),_0x160d7f[_0x240998(0x914)](_0x160d7f[_0x240998(0x9b6)],_0x160d7f[_0x240998(0xa7a)](_0x394dac,_0x3fc59f)));continue;case'1':_0x5a8748=_0x42f928[_0x2bb3d3(0x28a)+_0x29e375(0x157)](_0x160d7f[_0x2bb3d3(0x27a)](_0x160d7f[_0x2bb3d3(0x96a)],_0x160d7f[_0x240998(0xa7a)](_0x2903be,_0x3fc59f)),_0x160d7f[_0x445eab(0x27a)](_0x160d7f[_0x240998(0x9b6)],_0x160d7f[_0x240998(0x15e)](_0x4a6f64,_0x3fc59f)));continue;case'2':_0x3f9027=_0x5716af[_0x29e375(0x28a)+_0x2bb3d3(0x157)](_0x160d7f[_0x240998(0x83b)](_0x160d7f[_0x240998(0x13f)],_0x160d7f[_0x2bb3d3(0x692)](_0x1d9407,_0x3fc59f)),_0x160d7f[_0x445eab(0x4b8)](_0x160d7f[_0x240998(0x9b6)],_0x160d7f[_0x318f9b(0xa7a)](_0x22d905,_0x3fc59f)));continue;case'3':_0x2b9ab3=_0x2ee532[_0x445eab(0x28a)+_0x318f9b(0x157)](_0x160d7f[_0x240998(0x83b)](_0x160d7f[_0x318f9b(0x869)],_0x160d7f[_0x318f9b(0x15e)](_0x130cb3,_0x3fc59f)),_0x160d7f[_0x318f9b(0x4b8)](_0x160d7f[_0x240998(0x9b6)],_0x160d7f[_0x318f9b(0x15e)](_0x356f36,_0x3fc59f)));continue;case'4':_0x2bf9d2=_0x4384da[_0x445eab(0x28a)+_0x318f9b(0x157)](_0x160d7f[_0x445eab(0x914)](_0x160d7f[_0x318f9b(0x3c5)],_0x160d7f[_0x240998(0x15e)](_0x411868,_0x3fc59f)),_0x160d7f[_0x445eab(0x427)](_0x160d7f[_0x29e375(0x9b6)],_0x160d7f[_0x318f9b(0x40a)](_0x5df1ee,_0x3fc59f)));continue;case'5':_0xc7ac5f=_0x83cc53[_0x2bb3d3(0x28a)+_0x318f9b(0x157)](_0x160d7f[_0x2bb3d3(0x4b8)](_0x160d7f[_0x240998(0x649)],_0x160d7f[_0x240998(0x115)](_0x170187,_0x3fc59f)),_0x160d7f[_0x29e375(0x143)](_0x160d7f[_0x2bb3d3(0x9b6)],_0x160d7f[_0x240998(0xa7a)](_0x371043,_0x3fc59f)));continue;case'6':_0x45182d=_0x36e32f[_0x29e375(0x28a)+_0x445eab(0x157)](_0x160d7f[_0x29e375(0x4b8)](_0x160d7f[_0x240998(0x926)],_0x160d7f[_0x318f9b(0x40a)](_0x1c49b,_0x3fc59f)),_0x160d7f[_0x240998(0x351)](_0x160d7f[_0x445eab(0x9b6)],_0x160d7f[_0x29e375(0x19d)](_0x5cb37a,_0x3fc59f)));continue;case'7':_0x18752b=_0x452140[_0x445eab(0x28a)+_0x29e375(0x157)](_0x160d7f[_0x445eab(0x143)](_0x160d7f[_0x445eab(0xb83)],_0x160d7f[_0x2bb3d3(0xb54)](_0x2e4c83,_0x3fc59f)),_0x160d7f[_0x2bb3d3(0x6bf)](_0x160d7f[_0x240998(0x9b6)],_0x160d7f[_0x240998(0x26d)](_0x2b665d,_0x3fc59f)));continue;case'8':_0x3169a5=_0x19a1de[_0x318f9b(0x28a)+_0x2bb3d3(0x157)](_0x160d7f[_0x2bb3d3(0x351)](_0x160d7f[_0x445eab(0x961)],_0x160d7f[_0x29e375(0x115)](_0x5986f3,_0x3fc59f)),_0x160d7f[_0x2bb3d3(0x6ea)](_0x160d7f[_0x29e375(0x9b6)],_0x160d7f[_0x240998(0x115)](_0x164861,_0x3fc59f)));continue;case'9':_0x5d3bed=_0x27c049[_0x445eab(0x28a)+_0x29e375(0x157)](_0x160d7f[_0x2bb3d3(0x8d1)](_0x160d7f[_0x445eab(0x645)],_0x160d7f[_0x2bb3d3(0x15e)](_0x19e98d,_0x3fc59f)),_0x160d7f[_0x2bb3d3(0x427)](_0x160d7f[_0x2bb3d3(0x9b6)],_0x160d7f[_0x29e375(0x40a)](_0x4a780e,_0x3fc59f)));continue;case'10':_0x12dfb8=_0xdc9bce[_0x240998(0x28a)+_0x240998(0x157)](_0x160d7f[_0x29e375(0x4ad)](_0x160d7f[_0x29e375(0x33a)],_0x160d7f[_0x240998(0x19d)](_0x593d3f,_0x3fc59f)),_0x160d7f[_0x240998(0x27a)](_0x160d7f[_0x318f9b(0x9b6)],_0x160d7f[_0x240998(0x19d)](_0x2708a6,_0x3fc59f)));continue;case'11':_0x5f3068=_0x5e0a92[_0x318f9b(0x28a)+_0x29e375(0x157)](_0x160d7f[_0x29e375(0x4e5)](_0x160d7f[_0x240998(0xb83)],_0x160d7f[_0x318f9b(0x8de)](_0x206421,_0x3fc59f)),_0x160d7f[_0x445eab(0xb7b)](_0x160d7f[_0x240998(0x9b6)],_0x160d7f[_0x240998(0x532)](_0x23b7a1,_0x3fc59f)));continue;case'12':_0x5a397b=_0x66a4e7[_0x445eab(0x28a)+_0x240998(0x157)](_0x160d7f[_0x445eab(0x6bf)](_0x160d7f[_0x29e375(0x87e)],_0x160d7f[_0x240998(0x502)](_0x4c52eb,_0x3fc59f)),_0x160d7f[_0x29e375(0x351)](_0x160d7f[_0x240998(0x9b6)],_0x160d7f[_0x445eab(0x9c2)](_0x31057a,_0x3fc59f)));continue;case'13':_0x14ad5c=_0x2d907c[_0x2bb3d3(0x28a)+_0x240998(0x157)](_0x160d7f[_0x318f9b(0xb7b)](_0x160d7f[_0x240998(0x372)],_0x160d7f[_0x445eab(0x848)](_0x38c119,_0x3fc59f)),_0x160d7f[_0x318f9b(0x6ea)](_0x160d7f[_0x29e375(0x9b6)],_0x160d7f[_0x29e375(0x692)](_0x45cc4d,_0x3fc59f)));continue;case'14':_0x3133a7=_0x50326a[_0x2bb3d3(0x28a)+_0x240998(0x157)](_0x160d7f[_0x318f9b(0x4b8)](_0x160d7f[_0x2bb3d3(0x2ef)],_0x160d7f[_0x318f9b(0x5d8)](_0x32f524,_0x3fc59f)),_0x160d7f[_0x2bb3d3(0x4b8)](_0x160d7f[_0x445eab(0x9b6)],_0x160d7f[_0x318f9b(0x15e)](_0x321626,_0x3fc59f)));continue;case'15':_0x2b765a=_0xf95e5b[_0x240998(0x28a)+_0x445eab(0x157)](_0x160d7f[_0x2bb3d3(0x8d1)](_0x160d7f[_0x240998(0x498)],_0x160d7f[_0x2bb3d3(0x659)](_0x57dc3a,_0x3fc59f)),_0x160d7f[_0x445eab(0x914)](_0x160d7f[_0x2bb3d3(0x9b6)],_0x160d7f[_0x29e375(0x38d)](_0x2ca55,_0x3fc59f)));continue;case'16':_0x52b124=_0xbb4ca0[_0x318f9b(0x28a)+_0x318f9b(0x157)](_0x160d7f[_0x2bb3d3(0x4e5)](_0x160d7f[_0x318f9b(0x950)],_0x160d7f[_0x240998(0x6b5)](_0x377944,_0x3fc59f)),_0x160d7f[_0x29e375(0x644)](_0x160d7f[_0x445eab(0x9b6)],_0x160d7f[_0x318f9b(0x40a)](_0x2b4c2e,_0x3fc59f)));continue;case'17':_0x328ad3=_0x5b7856[_0x445eab(0x28a)+_0x29e375(0x157)](_0x160d7f[_0x445eab(0x571)](_0x160d7f[_0x2bb3d3(0x447)],_0x160d7f[_0x240998(0x40a)](_0xed120a,_0x3fc59f)),_0x160d7f[_0x29e375(0x315)](_0x160d7f[_0x240998(0x9b6)],_0x160d7f[_0x240998(0xb27)](_0x147272,_0x3fc59f)));continue;case'18':_0x173b6d=_0x113ee5[_0x318f9b(0x28a)+_0x2bb3d3(0x157)](_0x160d7f[_0x29e375(0x143)](_0x160d7f[_0x240998(0x617)],_0x160d7f[_0x240998(0x407)](_0x1a1ca7,_0x3fc59f)),_0x160d7f[_0x2bb3d3(0x914)](_0x160d7f[_0x2bb3d3(0x9b6)],_0x160d7f[_0x445eab(0x308)](_0x5282db,_0x3fc59f)));continue;case'19':_0x129c35=_0x339cfe[_0x318f9b(0x28a)+_0x29e375(0x157)](_0x160d7f[_0x2bb3d3(0x3ca)](_0x160d7f[_0x2bb3d3(0x649)],_0x160d7f[_0x2bb3d3(0x38d)](_0x1bc048,_0x3fc59f)),_0x160d7f[_0x2bb3d3(0x8d1)](_0x160d7f[_0x318f9b(0x9b6)],_0x160d7f[_0x240998(0x19d)](_0x2358d7,_0x3fc59f)));continue;case'20':_0x350ff5=_0x1884ee[_0x240998(0x28a)+_0x445eab(0x157)](_0x160d7f[_0x445eab(0x8f8)](_0x160d7f[_0x445eab(0x483)],_0x160d7f[_0x445eab(0x2d5)](_0x3dc367,_0x3fc59f)),_0x160d7f[_0x240998(0xadb)](_0x160d7f[_0x2bb3d3(0x9b6)],_0x160d7f[_0x445eab(0x15e)](_0x523e87,_0x3fc59f)));continue;case'21':_0x50595b=_0x80a66e[_0x445eab(0x28a)+_0x240998(0x157)](_0x160d7f[_0x318f9b(0x8d1)](_0x160d7f[_0x240998(0x13d)],_0x160d7f[_0x2bb3d3(0x4d6)](_0x4f4814,_0x3fc59f)),_0x160d7f[_0x240998(0x4ad)](_0x160d7f[_0x318f9b(0x9b6)],_0x160d7f[_0x29e375(0x949)](_0x56c933,_0x3fc59f)));continue;case'22':_0x5e4b60=_0x5cbc06[_0x445eab(0x28a)+_0x29e375(0x157)](_0x160d7f[_0x445eab(0x427)](_0x160d7f[_0x445eab(0xab9)],_0x160d7f[_0x240998(0x5d8)](_0x32e67c,_0x3fc59f)),_0x160d7f[_0x318f9b(0x3ca)](_0x160d7f[_0x29e375(0x9b6)],_0x160d7f[_0x445eab(0xadf)](_0x188e71,_0x3fc59f)));continue;case'23':_0x33699d=_0x17c7fa[_0x240998(0x28a)+_0x2bb3d3(0x157)](_0x160d7f[_0x240998(0x12d)](_0x160d7f[_0x445eab(0x5c9)],_0x160d7f[_0x2bb3d3(0x848)](_0x552afe,_0x3fc59f)),_0x160d7f[_0x318f9b(0x6ea)](_0x160d7f[_0x29e375(0x9b6)],_0x160d7f[_0x240998(0x4d6)](_0x21b448,_0x3fc59f)));continue;case'24':_0xce28b=_0x5250f1[_0x29e375(0x28a)+_0x29e375(0x157)](_0x160d7f[_0x318f9b(0x427)](_0x160d7f[_0x445eab(0x16c)],_0x160d7f[_0x318f9b(0x2d5)](_0x1756f0,_0x3fc59f)),_0x160d7f[_0x240998(0x453)](_0x160d7f[_0x445eab(0x9b6)],_0x160d7f[_0x29e375(0x9c2)](_0x452114,_0x3fc59f)));continue;}break;}}_0x4bd5bb=_0x160d7f[_0x240998(0xa7a)](_0x2ba5e8,_0x473b2f);for(let _0x2ce430=_0x431b36[_0x2bb3d3(0x3fc)+_0x445eab(0x280)][_0x445eab(0x3fa)+'h'];_0x160d7f[_0x29e375(0x700)](_0x2ce430,0x1*-0x1693+-0x8*0x3a1+0x339b);--_0x2ce430){_0x5318fa=_0x219042[_0x240998(0x28a)+'ce'](_0x160d7f[_0x2bb3d3(0x495)](_0x160d7f[_0x240998(0x3c7)],_0x160d7f[_0x318f9b(0x308)](_0x24b381,_0x2ce430)),_0xbf7d76[_0x318f9b(0x3fc)+_0x29e375(0x280)][_0x2ce430]),_0x4e6331=_0x13a20b[_0x29e375(0x28a)+'ce'](_0x160d7f[_0x2bb3d3(0x7a7)](_0x160d7f[_0x2bb3d3(0x781)],_0x160d7f[_0x445eab(0x115)](_0x4207c1,_0x2ce430)),_0x1fef86[_0x29e375(0x3fc)+_0x240998(0x280)][_0x2ce430]),_0x28dabd=_0x5d31e2[_0x2bb3d3(0x28a)+'ce'](_0x160d7f[_0x29e375(0x8a0)](_0x160d7f[_0x240998(0x181)],_0x160d7f[_0x318f9b(0x716)](_0x2fcf3e,_0x2ce430)),_0x4c83ad[_0x240998(0x3fc)+_0x29e375(0x280)][_0x2ce430]);}return _0x336050=_0x5c1d05[_0x445eab(0x28a)+_0x29e375(0x157)]('[]',''),_0x234c1c=_0x2ca2ad[_0x445eab(0x28a)+_0x240998(0x157)]('((','('),_0x494eb6=_0x282a55[_0x318f9b(0x28a)+_0x29e375(0x157)]('))',')'),_0x5c7d83=_0x5101b4[_0x29e375(0x28a)+_0x445eab(0x157)]('(\x0a','\x0a'),_0x572cb8;}else{let _0x27cb7a=!![];return function(_0x2aa03e,_0x5eb066){const _0x494b29=_0x29e375,_0x1106eb=_0x445eab,_0x49272c=_0x29e375,_0x388fa5=_0x240998,_0x55c280=_0x240998,_0x4a832e={'WMcCR':function(_0x46a863,_0x22439a){const _0x3702b1=_0x31dd;return _0x2b73f2[_0x3702b1(0x238)](_0x46a863,_0x22439a);},'vBNNE':function(_0x491c6b,_0x1e4da6){const _0x305f84=_0x31dd;return _0x2b73f2[_0x305f84(0x69d)](_0x491c6b,_0x1e4da6);},'IBNrQ':_0x2b73f2[_0x494b29(0x60c)],'PfyIx':function(_0x4ca34f,_0x156ff7){const _0x13a64a=_0x494b29;return _0x2b73f2[_0x13a64a(0x29e)](_0x4ca34f,_0x156ff7);},'ywCYk':_0x2b73f2[_0x494b29(0x993)]};if(_0x2b73f2[_0x49272c(0x29e)](_0x2b73f2[_0x1106eb(0x717)],_0x2b73f2[_0x49272c(0x717)]))_0x6c250c=_0x2fc17d[_0x55c280(0x1f6)](_0x160d7f[_0x494b29(0xadb)](_0x1fa7e9,_0x445ed7))[_0x160d7f[_0x494b29(0x395)]],_0x34cace='';else{const _0x5b9956=_0x27cb7a?function(){const _0x2112d2=_0x1106eb,_0x9c85c8=_0x494b29,_0x222922=_0x388fa5,_0x231e9e=_0x388fa5,_0x3f3d2c=_0x494b29;if(_0x4a832e[_0x2112d2(0xb79)](_0x4a832e[_0x9c85c8(0x832)],_0x4a832e[_0x222922(0x832)])){if(_0x5eb066){if(_0x4a832e[_0x9c85c8(0x614)](_0x4a832e[_0x9c85c8(0xa5f)],_0x4a832e[_0x9c85c8(0xa5f)])){const _0x31b8be=/^[0-9,\s]+$/;return!_0x31b8be[_0x231e9e(0x377)](_0x51bfa1);}else{const _0x4fa8eb=_0x5eb066[_0x231e9e(0x91a)](_0x2aa03e,arguments);return _0x5eb066=null,_0x4fa8eb;}}}else{if(!_0x32f871)return;try{var _0xcdb0c5=new _0x14573e(_0xa5f7eb[_0x222922(0x3fa)+'h']),_0x55e19e=new _0x43de09(_0xcdb0c5);for(var _0x34b988=0x157+-0x1bb1*-0x1+-0x1d08,_0x4779c6=_0x192da8[_0x9c85c8(0x3fa)+'h'];_0x4a832e[_0x2112d2(0x6a4)](_0x34b988,_0x4779c6);_0x34b988++){_0x55e19e[_0x34b988]=_0x39885e[_0x222922(0x6c3)+_0x3f3d2c(0x354)](_0x34b988);}return _0xcdb0c5;}catch(_0x5f1d16){}}}:function(){};return _0x27cb7a=![],_0x5b9956;}};}}()),_0x52aa62=_0x2b73f2[_0x2e2d9f(0x8f0)](_0xd6ee79,this,function(){const _0x4ee3f3=_0x54e77e,_0x421a53=_0x54e77e,_0x57dfb8=_0x2bda07,_0x50bada=_0x5192ac,_0xdecf2=_0x17c85b,_0x1ef227={};_0x1ef227[_0x4ee3f3(0xa2e)]=_0x2b73f2[_0x421a53(0x6da)];const _0x321d8e=_0x1ef227;if(_0x2b73f2[_0x4ee3f3(0x415)](_0x2b73f2[_0x421a53(0x368)],_0x2b73f2[_0x4ee3f3(0x7a0)]))_0x1e6e9c=_0x1c7bbf[_0x50bada(0x1f6)](_0x23f0a0)[_0x321d8e[_0x4ee3f3(0xa2e)]],_0x2cc233='';else return _0x52aa62[_0x4ee3f3(0x65f)+_0x4ee3f3(0x768)]()[_0x4ee3f3(0x357)+'h'](_0x2b73f2[_0x50bada(0x9be)])[_0x57dfb8(0x65f)+_0x4ee3f3(0x768)]()[_0x57dfb8(0x444)+_0xdecf2(0x413)+'r'](_0x52aa62)[_0x421a53(0x357)+'h'](_0x2b73f2[_0x4ee3f3(0x9be)]);});_0x2b73f2[_0x2e2d9f(0x71c)](_0x52aa62);const _0x1a8928=(function(){const _0x4d3fc1=_0x2e2d9f,_0x5a86bd=_0x2e2d9f,_0x13085e=_0x2e2d9f,_0x17aa5c=_0x17c85b,_0x4c2bd8=_0x17c85b,_0x28e837={'dWsNJ':function(_0x5a85a0,_0x1bf197){const _0x494c95=_0x31dd;return _0x2b73f2[_0x494c95(0x428)](_0x5a85a0,_0x1bf197);},'OrdCx':_0x2b73f2[_0x4d3fc1(0x6da)],'MgxRa':function(_0x33db12,_0x53cf3b){const _0x162dfb=_0x4d3fc1;return _0x2b73f2[_0x162dfb(0x775)](_0x33db12,_0x53cf3b);},'QsEIV':function(_0x2ba8e4,_0x6c5f5a){const _0x530062=_0x4d3fc1;return _0x2b73f2[_0x530062(0x82d)](_0x2ba8e4,_0x6c5f5a);},'AXtsD':function(_0x19d49f){const _0x45ede6=_0x4d3fc1;return _0x2b73f2[_0x45ede6(0x5a6)](_0x19d49f);},'TKYnD':function(_0x331362,_0x59c28f){const _0x36a971=_0x4d3fc1;return _0x2b73f2[_0x36a971(0x33d)](_0x331362,_0x59c28f);},'DnrHE':_0x2b73f2[_0x4d3fc1(0xa41)],'zettO':function(_0x509a79,_0xb665b9){const _0x54c45e=_0x5a86bd;return _0x2b73f2[_0x54c45e(0x79c)](_0x509a79,_0xb665b9);},'arYHX':_0x2b73f2[_0x4d3fc1(0x8b6)],'aWNmC':_0x2b73f2[_0x13085e(0x6b6)],'aFgMv':_0x2b73f2[_0x17aa5c(0x49f)]};if(_0x2b73f2[_0x17aa5c(0x303)](_0x2b73f2[_0x4d3fc1(0x8e5)],_0x2b73f2[_0x13085e(0x1b0)]))_0x42469c=_0x3c3bd3[_0x17aa5c(0x1f6)](_0x28e837[_0x5a86bd(0x6fd)](_0x574262,_0x1894f4))[_0x28e837[_0x13085e(0x579)]],_0x16ff5f='';else{let _0x1c5f9b=!![];return function(_0xcb58d6,_0x413382){const _0x1d4655=_0x13085e,_0x1737af=_0x4c2bd8,_0x19a3da=_0x5a86bd,_0x28cdf8=_0x4c2bd8,_0xf14711=_0x4c2bd8,_0x3346e2={'BRBRZ':function(_0x2b8c6c){const _0x4ccd4d=_0x31dd;return _0x28e837[_0x4ccd4d(0x1a6)](_0x2b8c6c);},'jLfNE':function(_0x35292c,_0x400c7b){const _0x1eec9b=_0x31dd;return _0x28e837[_0x1eec9b(0x6fd)](_0x35292c,_0x400c7b);},'VWZhP':_0x28e837[_0x1d4655(0x579)],'dyrqn':function(_0x281109,_0x1a6f9b){const _0x27c23e=_0x1d4655;return _0x28e837[_0x27c23e(0x338)](_0x281109,_0x1a6f9b);},'ZNugq':_0x28e837[_0x1737af(0xa18)],'snYsZ':function(_0x221772,_0x55204f){const _0x2da5af=_0x1d4655;return _0x28e837[_0x2da5af(0x7cc)](_0x221772,_0x55204f);},'ntEMW':_0x28e837[_0x19a3da(0xb2b)],'pYtkd':_0x28e837[_0x1737af(0xad6)]};if(_0x28e837[_0x1737af(0x338)](_0x28e837[_0x1737af(0xa77)],_0x28e837[_0x1d4655(0xa77)])){const _0x3e92b2=_0x1c5f9b?function(){const _0x564cee=_0xf14711,_0x28ff21=_0x1737af,_0x9e3111=_0x28cdf8,_0x581785=_0xf14711,_0x7aa43f=_0x1737af,_0x23d7cb={'BIArv':function(_0x238e25,_0x5d0697){const _0x2a05f2=_0x31dd;return _0x3346e2[_0x2a05f2(0x9fe)](_0x238e25,_0x5d0697);},'uyItY':_0x3346e2[_0x564cee(0x70d)]};if(_0x3346e2[_0x564cee(0x8e6)](_0x3346e2[_0x9e3111(0x673)],_0x3346e2[_0x9e3111(0x673)])){if(_0x413382){if(_0x3346e2[_0x581785(0x72a)](_0x3346e2[_0x9e3111(0x84b)],_0x3346e2[_0x581785(0x2bd)])){const _0x5b00ab=_0x413382[_0x581785(0x91a)](_0xcb58d6,arguments);return _0x413382=null,_0x5b00ab;}else _0x149c61=_0x3d54a2[_0x9e3111(0x1f6)](_0x23d7cb[_0x564cee(0x468)](_0x2f1312,_0x38d7ae))[_0x23d7cb[_0x7aa43f(0xb55)]],_0x5451c0='';}}else _0x57981a=_0x5a59fb[_0x9e3111(0xb47)+_0x564cee(0xab2)+'t'],_0x49be8a[_0x7aa43f(0x884)+'e'](),_0x3346e2[_0x564cee(0x521)](_0x57abf6);}:function(){};return _0x1c5f9b=![],_0x3e92b2;}else{if(_0x3d063f[_0x19a3da(0x420)](_0x385768))return _0x11fd51;const _0x4f82dd=_0xe9726e[_0x19a3da(0x31e)](/[;,;、,]/),_0x24fd3c=_0x4f82dd[_0xf14711(0x790)](_0x62b71d=>'['+_0x62b71d+']')[_0xf14711(0x1c6)]('\x20'),_0x28a04f=_0x4f82dd[_0x28cdf8(0x790)](_0x47b6f5=>'['+_0x47b6f5+']')[_0xf14711(0x1c6)]('\x0a');_0x4f82dd[_0x19a3da(0x9ad)+'ch'](_0x336d7d=>_0x241740[_0x1737af(0xb6f)](_0x336d7d)),_0x3de797='\x20';for(var _0x202bce=_0x28e837[_0xf14711(0x6fd)](_0x28e837[_0x28cdf8(0xafb)](_0x3e339c[_0xf14711(0x591)],_0x4f82dd[_0x1737af(0x3fa)+'h']),-0x18f1+-0x41*0x1f+0x20d1);_0x28e837[_0x19a3da(0x534)](_0x202bce,_0x7d9b93[_0x1d4655(0x591)]);++_0x202bce)_0xb53aae+='[^'+_0x202bce+']\x20';return _0x3e6a0e;}};}}());(function(){const _0xb7ea18=_0x2bda07,_0x2818d3=_0x17c85b,_0x32622b=_0x54e77e,_0x284591=_0x2bda07,_0x49019b=_0x54e77e;if(_0x2b73f2[_0xb7ea18(0x79c)](_0x2b73f2[_0x2818d3(0x6ca)],_0x2b73f2[_0x32622b(0x223)]))_0x2b73f2[_0x284591(0x8f0)](_0x1a8928,this,function(){const _0x531074=_0x32622b,_0x1446ac=_0x284591,_0x489c1f=_0xb7ea18,_0x19e042=_0x284591,_0x19960e=_0x284591,_0x179981={'JqKzb':_0x2b73f2[_0x531074(0x397)],'vHLHw':_0x2b73f2[_0x531074(0xb81)],'benbQ':_0x2b73f2[_0x1446ac(0x62c)],'XNzHm':_0x2b73f2[_0x531074(0x3cf)],'irpOE':function(_0x10d364,_0x437448){const _0x1b2bc4=_0x489c1f;return _0x2b73f2[_0x1b2bc4(0x864)](_0x10d364,_0x437448);},'MvZYK':_0x2b73f2[_0x19e042(0x9b7)]};if(_0x2b73f2[_0x489c1f(0xacf)](_0x2b73f2[_0x19960e(0x9af)],_0x2b73f2[_0x531074(0x9af)])){const _0x5dc009=new RegExp(_0x2b73f2[_0x1446ac(0x2da)]),_0x5327a4=new RegExp(_0x2b73f2[_0x19e042(0x2e0)],'i'),_0x505cb8=_0x2b73f2[_0x19e042(0x698)](_0x74e0bb,_0x2b73f2[_0x1446ac(0x7e1)]);if(!_0x5dc009[_0x489c1f(0x377)](_0x2b73f2[_0x19960e(0x980)](_0x505cb8,_0x2b73f2[_0x19960e(0x930)]))||!_0x5327a4[_0x531074(0x377)](_0x2b73f2[_0x489c1f(0x893)](_0x505cb8,_0x2b73f2[_0x531074(0x231)]))){if(_0x2b73f2[_0x531074(0x29e)](_0x2b73f2[_0x531074(0x42b)],_0x2b73f2[_0x19e042(0x594)]))_0x2b73f2[_0x531074(0x9d9)](_0x505cb8,'0');else{const _0x148d17=_0x179981[_0x489c1f(0xa56)][_0x489c1f(0x31e)]('|');let _0x4afcc9=0x4b1*0x1+0x1ed+-0x69e;while(!![]){switch(_0x148d17[_0x4afcc9++]){case'0':return;case'1':_0x17e460=-0x23d0+-0x1337+0x3707;continue;case'2':_0x1b2036[_0x1446ac(0x7b7)+_0x1446ac(0x71d)+_0x531074(0x2aa)](_0x179981[_0x1446ac(0x9ff)])[_0x19960e(0x8b1)]='';continue;case'3':const _0x1da71b={};_0x1da71b[_0x1446ac(0x504)]=_0x179981[_0x19960e(0x3de)],_0x1da71b[_0x1446ac(0x18e)+'nt']=_0x49fe5b,_0x48b4d3[_0x1446ac(0x798)](_0x1da71b);continue;case'4':const _0x54555b={};_0x54555b[_0x489c1f(0x504)]=_0x179981[_0x19e042(0x269)],_0x54555b[_0x531074(0x18e)+'nt']=_0x39bb18,_0x5c99b5[_0x531074(0x798)](_0x54555b);continue;}break;}}}else{if(_0x2b73f2[_0x19960e(0x9f6)](_0x2b73f2[_0x19e042(0x109)],_0x2b73f2[_0x489c1f(0x3e0)])){let _0x5e54c3=-0x211+-0x2017+0x1*0x2228;for(let _0x3cb333 of _0x5d3ca2){_0x5e54c3+=_0x3cb333[_0x19960e(0x18e)+'nt'][_0x489c1f(0x3fa)+'h'];}return _0x5e54c3;}else _0x2b73f2[_0x489c1f(0x5a6)](_0x74e0bb);}}else _0x179981[_0x489c1f(0x7d6)](_0x334d49,_0x179981[_0x531074(0x633)]);})();else{const _0x4883e6=_0x10a624[_0x32622b(0x91a)](_0x573784,arguments);return _0x5ae39a=null,_0x4883e6;}}());const _0x5841ea=(function(){const _0x49944e=_0x5192ac,_0x5e06d4=_0x2e2d9f,_0x432b6e=_0x2e2d9f,_0x4537f6=_0x54e77e,_0x575bb3=_0x54e77e;if(_0x2b73f2[_0x49944e(0x105)](_0x2b73f2[_0x49944e(0x4e2)],_0x2b73f2[_0x49944e(0xa9e)]))_0x407202[_0x39d2b6]=_0x531cbb[_0x5e06d4(0x6c3)+_0x432b6e(0x354)](_0x5211b7);else{let _0x16a117=!![];return function(_0x5a2397,_0x89a41d){const _0x1f6c75=_0x575bb3,_0x1b7a7f=_0x5e06d4,_0x8a8375=_0x4537f6,_0x1c2407=_0x49944e,_0x4847bc=_0x432b6e,_0x4f9b52={'kMgir':function(_0x4630ce,_0xd1b5c9){const _0x45d39e=_0x31dd;return _0x2b73f2[_0x45d39e(0x238)](_0x4630ce,_0xd1b5c9);},'jrbwD':function(_0x46f63e,_0x4173e1){const _0x218f1b=_0x31dd;return _0x2b73f2[_0x218f1b(0x905)](_0x46f63e,_0x4173e1);},'atJqM':function(_0x404470,_0x3cf51b){const _0x516e62=_0x31dd;return _0x2b73f2[_0x516e62(0x910)](_0x404470,_0x3cf51b);},'DOphX':function(_0xfd7f90,_0x2d5ee7){const _0x412866=_0x31dd;return _0x2b73f2[_0x412866(0xabe)](_0xfd7f90,_0x2d5ee7);},'Hwzzm':function(_0x357b83,_0x468f64){const _0x4c64e2=_0x31dd;return _0x2b73f2[_0x4c64e2(0x4b5)](_0x357b83,_0x468f64);},'JgSHz':_0x2b73f2[_0x1f6c75(0x530)],'slXIH':_0x2b73f2[_0x1b7a7f(0xad7)],'Etxsr':_0x2b73f2[_0x1f6c75(0x316)]};if(_0x2b73f2[_0x1c2407(0xacf)](_0x2b73f2[_0x8a8375(0x802)],_0x2b73f2[_0x1f6c75(0x802)])){const _0x5e62b4=_0x16a117?function(){const _0x514b1e=_0x8a8375,_0x362100=_0x1f6c75,_0x5d29c1=_0x8a8375,_0x1451c7=_0x1f6c75,_0x3627c0=_0x1b7a7f;if(_0x4f9b52[_0x514b1e(0xab7)](_0x4f9b52[_0x362100(0xa62)],_0x4f9b52[_0x5d29c1(0xb6d)])){if(_0x89a41d){if(_0x4f9b52[_0x362100(0xab7)](_0x4f9b52[_0x362100(0x54c)],_0x4f9b52[_0x362100(0x54c)])){const _0x3bf768=_0x557ffd?function(){const _0x2bcc08=_0x514b1e;if(_0x56c425){const _0x320f25=_0x34b833[_0x2bcc08(0x91a)](_0x5b279d,arguments);return _0x45ea09=null,_0x320f25;}}:function(){};return _0xfd328b=![],_0x3bf768;}else{const _0x235f83=_0x89a41d[_0x514b1e(0x91a)](_0x5a2397,arguments);return _0x89a41d=null,_0x235f83;}}}else{if(_0x4f9b52[_0x514b1e(0xb1b)](_0x4f9b52[_0x514b1e(0x48c)](_0x4f9b52[_0x5d29c1(0x48c)](_0x4a41d2,_0x155181[_0xacc927]),'\x0a')[_0x1451c7(0x3fa)+'h'],-0x348*0xb+-0x1b52*-0x1+0xc4a))_0x4f20d6=_0x4f9b52[_0x514b1e(0x46d)](_0x4f9b52[_0x362100(0x728)](_0x287274,_0x52a431[_0x1ce75c]),'\x0a');}}:function(){};return _0x16a117=![],_0x5e62b4;}else _0x4e4d48='按钮';};}}()),_0x5605ca=_0x2b73f2[_0x2bda07(0x8f0)](_0x5841ea,this,function(){const _0x42dc96=_0x17c85b,_0x40ef89=_0x5192ac,_0x1cdaee=_0x17c85b,_0xe5ef51=_0x5192ac,_0x3ee2bb=_0x2bda07,_0x1ac3b7={'ZRsPI':function(_0x5f5185){const _0x282bb1=_0x31dd;return _0x2b73f2[_0x282bb1(0x5a6)](_0x5f5185);}};if(_0x2b73f2[_0x42dc96(0x9f6)](_0x2b73f2[_0x40ef89(0x8fc)],_0x2b73f2[_0x1cdaee(0x8fc)])){const _0x16b859=function(){const _0x198883=_0x1cdaee,_0x775f4=_0x1cdaee,_0x482aae=_0x42dc96,_0x4693ed=_0x42dc96,_0x5bbd34=_0x40ef89;if(_0x2b73f2[_0x198883(0x9f6)](_0x2b73f2[_0x198883(0x9f9)],_0x2b73f2[_0x482aae(0x972)])){const _0x308ca2=_0x13c8fe?function(){const _0x551359=_0x775f4;if(_0x4e9b47){const _0x57fc3f=_0x1f729e[_0x551359(0x91a)](_0x2df5b3,arguments);return _0x58e7f1=null,_0x57fc3f;}}:function(){};return _0x1ac016=![],_0x308ca2;}else{let _0x395bf8;try{_0x2b73f2[_0x198883(0x42d)](_0x2b73f2[_0x198883(0x9d3)],_0x2b73f2[_0x4693ed(0x9d3)])?_0xcf1104+='':_0x395bf8=_0x2b73f2[_0x4693ed(0x2cd)](Function,_0x2b73f2[_0x198883(0xb01)](_0x2b73f2[_0x5bbd34(0x5dd)](_0x2b73f2[_0x5bbd34(0x385)],_0x2b73f2[_0x775f4(0x2dd)]),');'))();}catch(_0x401de5){_0x2b73f2[_0x5bbd34(0xb3e)](_0x2b73f2[_0x775f4(0x573)],_0x2b73f2[_0x775f4(0x573)])?_0x143d34+=_0x19d89f[-0x1de3+0x242c+-0x649][_0x482aae(0x107)][_0x5bbd34(0x18e)+'nt']:_0x395bf8=window;}return _0x395bf8;}},_0x3fb350=_0x2b73f2[_0x40ef89(0x71c)](_0x16b859),_0x162f4e=_0x3fb350[_0xe5ef51(0x852)+'le']=_0x3fb350[_0xe5ef51(0x852)+'le']||{},_0x5c1156=[_0x2b73f2[_0x1cdaee(0xa3b)],_0x2b73f2[_0x1cdaee(0x30b)],_0x2b73f2[_0xe5ef51(0x3bf)],_0x2b73f2[_0x1cdaee(0xb74)],_0x2b73f2[_0x3ee2bb(0x7f0)],_0x2b73f2[_0x40ef89(0x62f)],_0x2b73f2[_0x42dc96(0x202)]];for(let _0x1f2eb6=0x525*-0x3+-0x1e*-0x3+0xf15;_0x2b73f2[_0x40ef89(0x410)](_0x1f2eb6,_0x5c1156[_0x40ef89(0x3fa)+'h']);_0x1f2eb6++){if(_0x2b73f2[_0x42dc96(0x5ab)](_0x2b73f2[_0x3ee2bb(0x378)],_0x2b73f2[_0x1cdaee(0x378)]))_0x3ff319+='';else{const _0x43a238=_0x5841ea[_0xe5ef51(0x444)+_0x1cdaee(0x413)+'r'][_0x40ef89(0x6d0)+_0xe5ef51(0x8ae)][_0x3ee2bb(0xfa)](_0x5841ea),_0x48071c=_0x5c1156[_0x1f2eb6],_0x1f61a8=_0x162f4e[_0x48071c]||_0x43a238;_0x43a238[_0xe5ef51(0x5b0)+_0x42dc96(0x97b)]=_0x5841ea[_0xe5ef51(0xfa)](_0x5841ea),_0x43a238[_0x1cdaee(0x65f)+_0xe5ef51(0x768)]=_0x1f61a8[_0x40ef89(0x65f)+_0x1cdaee(0x768)][_0x40ef89(0xfa)](_0x1f61a8),_0x162f4e[_0x48071c]=_0x43a238;}}}else iummlT[_0x3ee2bb(0xaa2)](_0x447996);});_0x2b73f2[_0x2bda07(0x228)](_0x5605ca);const _0x3a368f=_0x2b73f2[_0x54e77e(0x640)],_0x1d7d82=_0x2b73f2[_0x2bda07(0x77e)],_0x489175=_0x4bfe30[_0x5192ac(0x8d3)+_0x2e2d9f(0x220)](_0x3a368f[_0x54e77e(0x3fa)+'h'],_0x2b73f2[_0x54e77e(0xb1a)](_0x4bfe30[_0x54e77e(0x3fa)+'h'],_0x1d7d82[_0x17c85b(0x3fa)+'h'])),_0x3e16bc=_0x2b73f2[_0x2bda07(0x65a)](atob,_0x489175),_0x460252=_0x2b73f2[_0x54e77e(0x724)](stringToArrayBuffer,_0x3e16bc);return crypto[_0x2e2d9f(0x7b4)+'e'][_0x54e77e(0x46e)+_0x2e2d9f(0x922)](_0x2b73f2[_0x5192ac(0x144)],_0x460252,{'name':_0x2b73f2[_0x17c85b(0x593)],'hash':_0x2b73f2[_0x5192ac(0x8bc)]},!![],[_0x2b73f2[_0x17c85b(0x915)]]);}function encryptDataWithPublicKey(_0x2a81b7,_0x306c3c){const _0xef0a24=_0x31dd,_0x88c91b=_0x31dd,_0x18b513=_0x31dd,_0x44eac9=_0x31dd,_0x40c7e3=_0x31dd,_0x1d9fe5={'ljqSc':function(_0x251e9c,_0x27db5f){return _0x251e9c(_0x27db5f);},'Spjjv':function(_0x3c0777,_0x12eb00){return _0x3c0777+_0x12eb00;},'bnCBe':function(_0x47b6c8,_0x33f5c0){return _0x47b6c8+_0x33f5c0;},'eewWJ':_0xef0a24(0xb52)+_0x88c91b(0x68a)+_0xef0a24(0xf8)+_0xef0a24(0x40b),'YlOQe':_0x88c91b(0x7c4)+_0xef0a24(0x438)+_0x88c91b(0x940)+_0x88c91b(0x970)+_0x44eac9(0xb07)+_0x18b513(0x14f)+'\x20)','pAnVT':function(_0x48491e){return _0x48491e();},'OssKu':function(_0x767fe,_0x1ed2fe){return _0x767fe===_0x1ed2fe;},'aQHRA':_0x88c91b(0x8ba),'vkvax':_0x18b513(0x9b0),'fPAHU':_0x18b513(0x5d2)+_0xef0a24(0x764)};try{if(_0x1d9fe5[_0x40c7e3(0x345)](_0x1d9fe5[_0x88c91b(0x4fc)],_0x1d9fe5[_0x18b513(0x81a)])){const _0x4bf74e=CqjHZy[_0xef0a24(0xa02)](_0x11ab94,CqjHZy[_0x40c7e3(0x990)](CqjHZy[_0xef0a24(0x2eb)](CqjHZy[_0x44eac9(0x4a8)],CqjHZy[_0xef0a24(0x9e8)]),');'));_0x12eda0=CqjHZy[_0x40c7e3(0x61f)](_0x4bf74e);}else{_0x2a81b7=_0x1d9fe5[_0x40c7e3(0xa02)](stringToArrayBuffer,_0x2a81b7);const _0x248a29={};return _0x248a29[_0x40c7e3(0x825)]=_0x1d9fe5[_0xef0a24(0x262)],crypto[_0x44eac9(0x7b4)+'e'][_0x44eac9(0xb2a)+'pt'](_0x248a29,_0x306c3c,_0x2a81b7);}}catch(_0x3537db){}}function decryptDataWithPrivateKey(_0x41d839,_0x5a5cc6){const _0x246c92=_0x31dd,_0x5607d3=_0x31dd,_0xc14422=_0x31dd,_0x498538=_0x31dd,_0x275b78=_0x31dd,_0x4de073={'OCQEE':function(_0x1e2fa9,_0x3562a8){return _0x1e2fa9(_0x3562a8);},'NtdFb':_0x246c92(0x5d2)+_0x5607d3(0x764)};_0x41d839=_0x4de073[_0xc14422(0x4eb)](stringToArrayBuffer,_0x41d839);const _0x48e7e8={};return _0x48e7e8[_0x246c92(0x825)]=_0x4de073[_0xc14422(0x9fc)],crypto[_0xc14422(0x7b4)+'e'][_0xc14422(0x15d)+'pt'](_0x48e7e8,_0x5a5cc6,_0x41d839);}const pubkey=_0x4b9440(0x18b)+_0x55d98c(0x1bf)+_0x4b9440(0x51a)+_0x4b9440(0xaad)+_0x4e39c5(0x247)+_0x4b9440(0x4f5)+_0x55d98c(0x505)+_0x4e39c5(0x776)+_0x4e39c5(0x27b)+_0x4b9440(0x21e)+_0x4e39c5(0xa1c)+_0x4b9440(0xa0f)+_0x183957(0x1cf)+_0x4b9440(0x356)+_0x342a2e(0x39a)+_0x183957(0x38c)+_0x55d98c(0x7dc)+_0x183957(0x400)+_0x4b9440(0x195)+_0x55d98c(0x934)+_0x4e39c5(0x3f7)+_0x4b9440(0x45a)+_0x342a2e(0x4ed)+_0x55d98c(0xa7e)+_0x342a2e(0x2a4)+_0x55d98c(0x20a)+_0x342a2e(0x3d4)+_0x183957(0x2b5)+_0x55d98c(0x99b)+_0x183957(0x343)+_0x55d98c(0x1e7)+_0x55d98c(0xa5b)+_0x183957(0x1cd)+_0x4e39c5(0x8db)+_0x55d98c(0x586)+_0x55d98c(0x13b)+_0x4e39c5(0x1d8)+_0x4e39c5(0x3d5)+_0x4e39c5(0x939)+_0x4e39c5(0xa07)+_0x342a2e(0x95c)+_0x342a2e(0x1b9)+_0x183957(0x828)+_0x342a2e(0x6d2)+_0x342a2e(0x5b5)+_0x55d98c(0x7bf)+_0x4e39c5(0x60d)+_0x4e39c5(0x16a)+_0x4e39c5(0x64f)+_0x4b9440(0x859)+_0x55d98c(0x7b8)+_0x4b9440(0x207)+_0x4e39c5(0x746)+_0x4e39c5(0xa15)+_0x342a2e(0x71b)+_0x4e39c5(0x7e4)+_0x55d98c(0x7eb)+_0x4b9440(0xa79)+_0x55d98c(0x355)+_0x4e39c5(0x37d)+_0x4b9440(0x5c4)+_0x4e39c5(0xa0d)+_0x55d98c(0x909)+_0x4e39c5(0x118)+_0x342a2e(0x61c)+_0x4b9440(0x6b8)+_0x183957(0x1e5)+_0x55d98c(0x11b)+_0x55d98c(0x4db)+_0x4e39c5(0x1b2)+_0x183957(0x27d)+_0x55d98c(0xb34)+_0x4e39c5(0x31d)+_0x183957(0x739)+_0x183957(0x69a)+_0x4b9440(0xa54)+_0x55d98c(0x86a)+_0x4b9440(0x5ba)+_0x4e39c5(0x4dc)+_0x183957(0x8e8)+_0x55d98c(0x160)+_0x4e39c5(0x324)+_0x4b9440(0x384)+_0x4e39c5(0x92c)+_0x55d98c(0x77d)+_0x4b9440(0x995)+_0x4e39c5(0x769)+_0x4e39c5(0x944)+'--';pub=importPublicKey(pubkey);function b64EncodeUnicode(_0x13384f){const _0x5cafca=_0x183957,_0xddf663=_0x4e39c5,_0x2f5acc={'qQiCA':function(_0x45f782,_0x129f26){return _0x45f782(_0x129f26);},'rByxj':function(_0x2bdbed,_0x385fe5){return _0x2bdbed(_0x385fe5);}};return _0x2f5acc[_0x5cafca(0x507)](btoa,_0x2f5acc[_0xddf663(0x1c8)](encodeURIComponent,_0x13384f));}var word_last=[],lock_chat=0x1*-0xaf1+0x2*-0x22b+0xf48;function wait(_0x3477c2){return new Promise(_0x182702=>setTimeout(_0x182702,_0x3477c2));}function fetchRetry(_0x16a3ab,_0x36f663,_0x2fa62b={}){const _0x2e0d30=_0x4b9440,_0x3697ab=_0x4b9440,_0x5ca664=_0x4b9440,_0x2b5d89=_0x55d98c,_0x4ef299=_0x55d98c,_0x416cdd={'HltCA':function(_0x2f5ca8,_0x474984){return _0x2f5ca8<_0x474984;},'VtAfW':function(_0x339d8c,_0x1e042){return _0x339d8c+_0x1e042;},'WhXSF':function(_0x460910,_0x35eaeb){return _0x460910+_0x35eaeb;},'OfczG':function(_0x145c75,_0x113873){return _0x145c75==_0x113873;},'ajNeY':function(_0x55d14a,_0x1b0803){return _0x55d14a!==_0x1b0803;},'eQjEV':_0x2e0d30(0x7c9),'MEhJn':function(_0x2f428d,_0x16244a){return _0x2f428d-_0x16244a;},'NYVCr':_0x2e0d30(0xb92),'nUzPL':_0x2e0d30(0x791),'HcvmA':function(_0x633e5e,_0x4259bf){return _0x633e5e(_0x4259bf);},'omKid':function(_0x52f829,_0x46dbb0,_0x353312){return _0x52f829(_0x46dbb0,_0x353312);}};function _0x9821e3(_0x2217cc){const _0x40e121=_0x5ca664,_0x505820=_0x3697ab,_0x45ed84=_0x3697ab,_0x15641e=_0x3697ab,_0x4c0dcd=_0x2e0d30;if(_0x416cdd[_0x40e121(0x3a1)](_0x416cdd[_0x40e121(0x602)],_0x416cdd[_0x45ed84(0x602)])){if(_0x416cdd[_0x505820(0xaa5)](_0x416cdd[_0x505820(0x53c)](_0x416cdd[_0x505820(0x53c)](_0x3bce2f,_0x480520[_0x37d891]),'\x0a')[_0x505820(0x3fa)+'h'],0xc9*0x10+-0xdce+-0x9*-0xca))_0x332968=_0x416cdd[_0x4c0dcd(0xa71)](_0x416cdd[_0x45ed84(0xa71)](_0x4c61de,_0x3b345f[_0x3b0a5a]),'\x0a');_0x11e691=_0x416cdd[_0x505820(0x53c)](_0xde22b4,0x2fc+-0x13*-0x1b2+-0x2331);}else{triesLeft=_0x416cdd[_0x40e121(0x78b)](_0x36f663,-0x9db+-0x1b49+0x2525);if(!triesLeft){if(_0x416cdd[_0x45ed84(0x3a1)](_0x416cdd[_0x4c0dcd(0x928)],_0x416cdd[_0x40e121(0x333)]))throw _0x2217cc;else{if(_0x416cdd[_0x45ed84(0x1e3)](_0x178e80[_0x40e121(0x39c)+'Of'](_0x1449fe[_0x3b192]),-(-0x1686+0x8*-0x2f4+0x2e27)))_0x334ae0[_0x45ed84(0x29c)+'ft'](_0x57af9e[_0x4feb01]);}}return _0x416cdd[_0x40e121(0xa95)](wait,0x66e+0x1dca+-0x2244)[_0x40e121(0x3c1)](()=>fetchRetry(_0x16a3ab,triesLeft,_0x2fa62b));}}return _0x416cdd[_0x3697ab(0x12e)](fetch,_0x16a3ab,_0x2fa62b)[_0x2e0d30(0x51b)](_0x9821e3);}function send_webchat(_0x4a74d7){const _0x19552a=_0x342a2e,_0x35af16=_0x342a2e,_0x30ba53=_0x4b9440,_0x3609f4=_0x55d98c,_0x1d52da=_0x4b9440,_0x5b632b={'ttTxM':function(_0x117f7e,_0x30a339){return _0x117f7e+_0x30a339;},'ADPii':_0x19552a(0x2a7)+'es','NJUca':function(_0x1f3ab7,_0x83b8ac){return _0x1f3ab7*_0x83b8ac;},'WEvVB':function(_0x18976a,_0x1ec8c7){return _0x18976a**_0x1ec8c7;},'rmeSw':function(_0x46ed16,_0x46563a){return _0x46ed16**_0x46563a;},'oCHPO':function(_0x151c09,_0x175fc3){return _0x151c09(_0x175fc3);},'EZoEC':_0x35af16(0x6a6)+'ss','NsrBi':_0x30ba53(0x5d2)+_0x35af16(0x764),'EqczG':function(_0x61ada0,_0x5fc63c){return _0x61ada0>_0x5fc63c;},'Oizya':_0x30ba53(0x3e1)+_0x35af16(0x3c6),'rWiHB':_0x3609f4(0x3be)+_0x3609f4(0x141)+_0x3609f4(0x64a)+_0x19552a(0x43b)+_0x3609f4(0xa0a)+_0x1d52da(0x2a1)+_0x3609f4(0x7d2)+_0x1d52da(0x5cb)+_0x30ba53(0x749)+_0x30ba53(0x63e)+_0x1d52da(0x9a5),'kqXfn':_0x35af16(0x44f)+_0x35af16(0x7bc),'dRJjA':_0x3609f4(0x650)+_0x3609f4(0x820)+_0x19552a(0x677)+')','HgDRu':_0x35af16(0x8ee)+_0x35af16(0x5f0)+_0x30ba53(0x469)+_0x3609f4(0xada)+_0x3609f4(0x348)+_0x35af16(0x982)+_0x35af16(0x35f),'mKkzO':_0x3609f4(0x35c),'Uggjg':function(_0x1a72a9,_0x1e0447){return _0x1a72a9+_0x1e0447;},'siuPk':_0x30ba53(0x6b4),'gtlYk':_0x35af16(0x6f8),'AYdiP':function(_0x291e5d){return _0x291e5d();},'nMcgh':function(_0x393e7c,_0x1cb276,_0x107795){return _0x393e7c(_0x1cb276,_0x107795);},'sWqPR':function(_0x576fd6,_0x36df23){return _0x576fd6!==_0x36df23;},'kvEQj':_0x30ba53(0x807),'uWtOF':_0x35af16(0xeb),'iuvqc':function(_0x587316,_0x2f9e73){return _0x587316===_0x2f9e73;},'LvTjA':_0x30ba53(0x839),'MzftX':_0x1d52da(0x3e1)+_0x3609f4(0x6f6),'BHyQQ':function(_0x25cfa7,_0x15cd1f){return _0x25cfa7>_0x15cd1f;},'QHSoY':function(_0x210b67,_0xdf59a8){return _0x210b67==_0xdf59a8;},'deBSb':_0x30ba53(0x382)+']','PlwVX':_0x30ba53(0x515),'OaiTI':_0x19552a(0x2cc)+_0x35af16(0x9fd),'pcqGV':_0x30ba53(0x7c1)+_0x35af16(0x877),'SZmWh':_0x35af16(0x176),'xeVhe':_0x35af16(0x3e1)+_0x35af16(0x48a)+'t','GuHEJ':_0x19552a(0x1f1),'YuWGO':function(_0x11d2b8,_0x3b9fd1){return _0x11d2b8!==_0x3b9fd1;},'eLwLh':_0x1d52da(0x854),'cyFiK':_0x35af16(0xb90),'YzAGH':_0x35af16(0x74b),'kTJHz':_0x3609f4(0xe9),'tfPvd':_0x35af16(0x1b6)+'pt','bFEyC':_0x3609f4(0x90f)+_0x19552a(0x72d),'hJZJO':_0x35af16(0x4f7)+_0x3609f4(0x5b7)+_0x35af16(0x93e)+_0x3609f4(0x57f)+_0x1d52da(0xaac),'HdQfY':_0x1d52da(0x17f)+'>','JGaBw':_0x30ba53(0x4ec),'yMZnI':_0x30ba53(0x8fb),'mEQtX':_0x1d52da(0x977),'UJzrL':_0x1d52da(0xa9f),'OsISe':_0x1d52da(0x765)+':','SghgM':function(_0x57da2f,_0x3431b2){return _0x57da2f===_0x3431b2;},'TbMuZ':_0x35af16(0x5bd),'mLsYC':_0x1d52da(0x458),'KinBs':function(_0x5b8282,_0x2938d4){return _0x5b8282===_0x2938d4;},'pkfMy':_0x1d52da(0x54f),'iEpoO':function(_0x18598c,_0x345cbf){return _0x18598c<_0x345cbf;},'KUubE':function(_0x4b7bb9,_0x2c94ed){return _0x4b7bb9+_0x2c94ed;},'RrSOS':function(_0x1d3e90,_0x59e9ac){return _0x1d3e90+_0x59e9ac;},'zCqQx':function(_0x261b5f,_0xad5ad3){return _0x261b5f+_0xad5ad3;},'mlyUD':_0x19552a(0x164)+'\x20','zdxzg':_0x3609f4(0x971)+_0x30ba53(0x478)+_0x1d52da(0x917)+_0x1d52da(0x965)+_0x35af16(0x290)+_0x19552a(0x3ae)+_0x1d52da(0x47b)+_0x35af16(0xb76)+_0x3609f4(0x409)+_0x1d52da(0x1c7)+_0x19552a(0x3f0)+_0x35af16(0x28f)+_0x3609f4(0x544)+_0x3609f4(0x18c)+'果:','ZynAV':function(_0x834818,_0x34954e){return _0x834818+_0x34954e;},'vSdAE':_0x1d52da(0xa97)+'m','pbzxe':_0x35af16(0xb68)+_0x1d52da(0x74a)+_0x3609f4(0x834)+_0x1d52da(0xa33)+_0x19552a(0x78c)+_0x35af16(0x188)+_0x19552a(0x860)+_0x1d52da(0x844)+_0x19552a(0x7f7)+_0x3609f4(0x1d4)+_0x1d52da(0x7f5)+_0x35af16(0x473)+_0x1d52da(0x393)+_0x30ba53(0x34c)+_0x19552a(0x44a)+_0x1d52da(0x5af)+_0x30ba53(0xf1),'bvhDu':function(_0x23e7e3,_0x120761){return _0x23e7e3+_0x120761;},'RNPHn':_0x35af16(0xa00)+'\x0a','BpGcw':function(_0x220528,_0x26a0bd){return _0x220528+_0x26a0bd;},'wBFBO':_0x19552a(0x8d2)+_0x35af16(0x531),'anEOT':_0x1d52da(0x54a),'JodRa':function(_0x141b39,_0x72a800,_0x2a86f5){return _0x141b39(_0x72a800,_0x2a86f5);},'pbkEA':function(_0x2cafc6,_0x40b063){return _0x2cafc6(_0x40b063);},'BtxWw':_0x35af16(0x4f7)+_0x30ba53(0x5b7)+_0x19552a(0x93e)+_0x19552a(0x5d3)+_0x35af16(0x116)+'\x22>','AGkly':_0x1d52da(0xf6)+_0x35af16(0x9e3)+_0x35af16(0x9f1)+_0x35af16(0x306)+_0x3609f4(0x8f9)+_0x30ba53(0x6e1),'VZzXm':function(_0x44d5ad,_0x19ef52){return _0x44d5ad!=_0x19ef52;},'GXZbr':_0x3609f4(0x3e1),'mlIAe':function(_0x439f6f,_0x3aec1c){return _0x439f6f+_0x3aec1c;},'bFeXM':function(_0x4b5496,_0x3ad33f){return _0x4b5496+_0x3ad33f;},'zoXRJ':_0x3609f4(0x7c6),'tGlky':_0x35af16(0x511)+'\x0a','awzNg':_0x3609f4(0x88c),'DhHkB':_0x1d52da(0x190),'tSqbb':function(_0x271564,_0x40da0d,_0x4ad55d){return _0x271564(_0x40da0d,_0x4ad55d);},'QEIqv':function(_0x233425,_0x226d54){return _0x233425+_0x226d54;},'zEiLt':function(_0x2a6f2c,_0x5c2d76){return _0x2a6f2c+_0x5c2d76;},'CnUmO':_0x35af16(0xf6)+_0x19552a(0x9e3)+_0x3609f4(0x9f1)+_0x30ba53(0x7d3)+_0x1d52da(0x9c3)+'q=','tommX':_0x19552a(0x565)+_0x1d52da(0x7cf)+_0x3609f4(0x70f)+_0x19552a(0xabb)+_0x1d52da(0x4be)+_0x30ba53(0x7a8)+_0x35af16(0xb22)+_0x35af16(0x816)+_0x30ba53(0xb57)+_0x35af16(0x8b2)+_0x3609f4(0x83e)+_0x30ba53(0x592)+_0x1d52da(0x320)+_0x19552a(0x658)+'n'};if(_0x5b632b[_0x30ba53(0x7ab)](lock_chat,0x2209+0x122*-0x5+0x9*-0x327))return;lock_chat=0x24c3*0x1+0x23a7*-0x1+-0x11b,knowledge=document[_0x19552a(0x7b7)+_0x19552a(0x71d)+_0x30ba53(0x2aa)](_0x5b632b[_0x30ba53(0x257)])[_0x1d52da(0x209)+_0x19552a(0x6c4)][_0x35af16(0x28a)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x30ba53(0x28a)+'ce'](/<hr.*/gs,'')[_0x35af16(0x28a)+'ce'](/<[^>]+>/g,'')[_0x19552a(0x28a)+'ce'](/\n\n/g,'\x0a');if(_0x5b632b[_0x35af16(0x6a1)](knowledge[_0x30ba53(0x3fa)+'h'],0x8ff+0x1d*0xf+-0x14e*0x7))knowledge[_0x35af16(0x6fc)](0x6*0x260+0x1d21*0x1+-0x29d1);knowledge+=_0x5b632b[_0x30ba53(0xa93)](_0x5b632b[_0x35af16(0x703)](_0x5b632b[_0x30ba53(0xad2)],original_search_query),_0x5b632b[_0x35af16(0x210)]);let _0x54481a=document[_0x1d52da(0x7b7)+_0x3609f4(0x71d)+_0x19552a(0x2aa)](_0x5b632b[_0x35af16(0x704)])[_0x19552a(0x8b1)];if(_0x4a74d7){if(_0x5b632b[_0x30ba53(0x4c8)](_0x5b632b[_0x30ba53(0x991)],_0x5b632b[_0x19552a(0x337)]))_0x54481a=_0x4a74d7[_0x35af16(0xb47)+_0x35af16(0xab2)+'t'],_0x4a74d7[_0x3609f4(0x884)+'e'](),_0x5b632b[_0x19552a(0x856)](chatmore);else return new _0x23014e(_0x48b69d=>_0x5b0916(_0x48b69d,_0x3feb83));}if(_0x5b632b[_0x19552a(0x20c)](_0x54481a[_0x19552a(0x3fa)+'h'],0x18f3+-0x1050+-0x8a3)||_0x5b632b[_0x1d52da(0x201)](_0x54481a[_0x19552a(0x3fa)+'h'],-0x1650+-0x1e2f*0x1+0x350b))return;_0x5b632b[_0x1d52da(0x753)](fetchRetry,_0x5b632b[_0x30ba53(0x443)](_0x5b632b[_0x30ba53(0x2e5)](_0x5b632b[_0x19552a(0x601)],_0x5b632b[_0x30ba53(0x2e2)](encodeURIComponent,_0x54481a)),_0x5b632b[_0x1d52da(0x956)]),-0x1*0x70d+0x25f4+-0x7b9*0x4)[_0x19552a(0x3c1)](_0x4efc87=>_0x4efc87[_0x1d52da(0x60f)]())[_0x3609f4(0x3c1)](_0x392a20=>{const _0x1e0f52=_0x19552a,_0x585019=_0x3609f4,_0x1a0684=_0x30ba53,_0x19ef72=_0x1d52da,_0x4248d5=_0x19552a,_0x1beddc={'kIpRu':function(_0x37fdae,_0x5e893c){const _0x53cf6c=_0x31dd;return _0x5b632b[_0x53cf6c(0x810)](_0x37fdae,_0x5e893c);},'NlqpZ':_0x5b632b[_0x1e0f52(0xf4)],'vPhqz':function(_0x2c6c27,_0x12287f){const _0x40caef=_0x1e0f52;return _0x5b632b[_0x40caef(0x7a2)](_0x2c6c27,_0x12287f);},'RICFB':function(_0x547b3c,_0x178b7e){const _0x4e3efb=_0x1e0f52;return _0x5b632b[_0x4e3efb(0xaff)](_0x547b3c,_0x178b7e);},'TUGyc':function(_0x48d9a4,_0x45a941){const _0x387338=_0x1e0f52;return _0x5b632b[_0x387338(0x691)](_0x48d9a4,_0x45a941);},'KvniI':function(_0x241221,_0x5ca276){const _0x4b25e6=_0x1e0f52;return _0x5b632b[_0x4b25e6(0x648)](_0x241221,_0x5ca276);},'QRAlY':_0x5b632b[_0x1e0f52(0x4e3)],'aGpVD':function(_0x32984c,_0xdabe60){const _0x3b3b53=_0x585019;return _0x5b632b[_0x3b3b53(0x648)](_0x32984c,_0xdabe60);},'mSfAd':_0x5b632b[_0x1a0684(0x7b5)],'XELYk':function(_0x27c542,_0x20ec0d){const _0x21847e=_0x1e0f52;return _0x5b632b[_0x21847e(0x6a1)](_0x27c542,_0x20ec0d);},'dUDJw':function(_0x20cd17,_0x5dc5ce){const _0x2cded7=_0x1e0f52;return _0x5b632b[_0x2cded7(0x648)](_0x20cd17,_0x5dc5ce);},'vSvLQ':_0x5b632b[_0x585019(0x93d)],'qCvEM':_0x5b632b[_0x585019(0x6f9)],'iwzOa':_0x5b632b[_0x19ef72(0x81e)],'AmwEx':_0x5b632b[_0x1e0f52(0xac6)],'VKmNv':_0x5b632b[_0x1e0f52(0x398)],'xpIPX':_0x5b632b[_0x1e0f52(0xb37)],'uGoUC':function(_0x2b2780,_0x2142b6){const _0x5de463=_0x1e0f52;return _0x5b632b[_0x5de463(0x845)](_0x2b2780,_0x2142b6);},'xHvOm':_0x5b632b[_0x585019(0x1d1)],'jrSCd':_0x5b632b[_0x585019(0x75c)],'rqggc':function(_0x537cc6){const _0x1621ff=_0x1e0f52;return _0x5b632b[_0x1621ff(0x856)](_0x537cc6);},'gMJvm':function(_0x50b37f,_0x381ac0,_0x1ac99d){const _0x911e1e=_0x585019;return _0x5b632b[_0x911e1e(0x94e)](_0x50b37f,_0x381ac0,_0x1ac99d);},'UHHSq':function(_0x5e1ca1,_0x38a9f9){const _0x2401fe=_0x1a0684;return _0x5b632b[_0x2401fe(0x4c8)](_0x5e1ca1,_0x38a9f9);},'RuOmW':_0x5b632b[_0x585019(0x567)],'wWLUi':_0x5b632b[_0x4248d5(0xa2d)],'MXEOt':function(_0x407ba0,_0x2665bc){const _0x5d415f=_0x585019;return _0x5b632b[_0x5d415f(0x73b)](_0x407ba0,_0x2665bc);},'mXFhV':_0x5b632b[_0x4248d5(0x738)],'TIaan':_0x5b632b[_0x1e0f52(0x47a)],'gyiSw':function(_0x2b9799,_0x3734ce){const _0x4c90c2=_0x585019;return _0x5b632b[_0x4c90c2(0x201)](_0x2b9799,_0x3734ce);},'SRbJN':function(_0x401a60,_0x5446ae){const _0x2b1614=_0x19ef72;return _0x5b632b[_0x2b1614(0x20c)](_0x401a60,_0x5446ae);},'wxUyq':_0x5b632b[_0x19ef72(0x93c)],'qGoUW':function(_0xfa3ebb,_0x6ad72c){const _0x35904b=_0x585019;return _0x5b632b[_0x35904b(0x4c8)](_0xfa3ebb,_0x6ad72c);},'KWocD':_0x5b632b[_0x19ef72(0x761)],'qlEOv':_0x5b632b[_0x1e0f52(0x4e4)],'eHBYT':_0x5b632b[_0x1a0684(0x7ca)],'lTTZI':_0x5b632b[_0x1a0684(0xa6b)],'ojJvj':_0x5b632b[_0x4248d5(0x704)],'jZTQx':_0x5b632b[_0x4248d5(0x98f)],'MIKBW':function(_0x7b54f1,_0x11fc47){const _0x5486a7=_0x1e0f52;return _0x5b632b[_0x5486a7(0xa69)](_0x7b54f1,_0x11fc47);},'MfpkK':_0x5b632b[_0x1a0684(0x4e7)],'cixPv':_0x5b632b[_0x1a0684(0x67d)],'SYLAP':_0x5b632b[_0x4248d5(0x966)],'QYwfW':_0x5b632b[_0x585019(0x4bc)],'BFMuh':_0x5b632b[_0x4248d5(0x7a5)],'BRigU':_0x5b632b[_0x1a0684(0x4e8)],'ACObo':function(_0x386f65,_0x435bda){const _0x3d8c2a=_0x585019;return _0x5b632b[_0x3d8c2a(0x845)](_0x386f65,_0x435bda);},'hujwn':_0x5b632b[_0x1a0684(0x637)],'fJPHS':_0x5b632b[_0x585019(0x28e)],'ZszIW':_0x5b632b[_0x19ef72(0x5a1)],'ZufXW':_0x5b632b[_0x585019(0x913)],'bxPnl':_0x5b632b[_0x1e0f52(0x331)],'mVwQj':_0x5b632b[_0x1e0f52(0xa76)],'HXuOD':_0x5b632b[_0x585019(0xaae)]};if(_0x5b632b[_0x4248d5(0x3ba)](_0x5b632b[_0x19ef72(0xb0e)],_0x5b632b[_0x1e0f52(0x17c)]))try{_0x2b803f=_0x397d18[_0x585019(0x1f6)](_0x1beddc[_0x19ef72(0x3a9)](_0x1bdb41,_0x277eb2))[_0x1beddc[_0x4248d5(0x748)]],_0x40a91d='';}catch(_0x11d69f){_0x4e228f=_0x337edf[_0x4248d5(0x1f6)](_0x13e3ea)[_0x1beddc[_0x1a0684(0x748)]],_0x8317f6='';}else{prompt=JSON[_0x4248d5(0x1f6)](_0x5b632b[_0x1a0684(0x648)](atob,/<div id="prompt" style="display:none">(.*?)<\/div>/[_0x19ef72(0x65c)](_0x392a20[_0x1e0f52(0x233)+_0x585019(0x166)][0x38*0x4e+-0x124b*-0x2+-0x6*0x8f1][_0x4248d5(0x18e)+'nt'])[0x592+-0x2*-0x9c6+-0x191d])),prompt[_0x19ef72(0x76c)][_0x19ef72(0x8e3)+_0x1e0f52(0xb15)+_0x1a0684(0x4e9)+'y']=-0x4*0x175+0x8c0+0x1*-0x2eb,prompt[_0x19ef72(0x76c)][_0x585019(0x942)+_0x1e0f52(0x8b8)+'e']=0x33f+0x52*0x1a+-0xb93*0x1+0.9;for(st in prompt[_0x1e0f52(0x435)]){if(_0x5b632b[_0x19ef72(0x792)](_0x5b632b[_0x585019(0x8ce)],_0x5b632b[_0x4248d5(0x8ce)])){if(_0x5b632b[_0x1a0684(0x9c5)](_0x5b632b[_0x1a0684(0x845)](_0x5b632b[_0x19ef72(0x7b3)](_0x5b632b[_0x19ef72(0x845)](_0x5b632b[_0x4248d5(0x459)](_0x5b632b[_0x19ef72(0xa49)](knowledge,prompt[_0x1e0f52(0x435)][st]),'\x0a'),_0x5b632b[_0x585019(0x6ab)]),_0x54481a),_0x5b632b[_0x1a0684(0xa4c)])[_0x1a0684(0x3fa)+'h'],-0xb4c+0x9bb+0x76d))knowledge+=_0x5b632b[_0x4248d5(0x9bc)](prompt[_0x585019(0x435)][st],'\x0a');}else{if(_0x14bf0f){const _0xcdec4a=_0x2e0416[_0x4248d5(0x91a)](_0x5d9b0f,arguments);return _0x2e1f3d=null,_0xcdec4a;}}}const _0x4648d3={};_0x4648d3[_0x1e0f52(0x504)]=_0x5b632b[_0x1e0f52(0x722)],_0x4648d3[_0x1a0684(0x18e)+'nt']=_0x5b632b[_0x585019(0x663)],prompt[_0x1e0f52(0x76c)][_0x4248d5(0x43e)+_0x4248d5(0xa2a)]=[_0x4648d3,{'role':_0x5b632b[_0x585019(0x7ca)],'content':_0x5b632b[_0x1e0f52(0x24c)](_0x5b632b[_0x4248d5(0xad0)],knowledge)},{'role':_0x5b632b[_0x4248d5(0xa6b)],'content':_0x5b632b[_0x19ef72(0x845)](_0x5b632b[_0x1e0f52(0x23b)](_0x5b632b[_0x19ef72(0xac2)],_0x54481a),'')}],optionsweb={'method':_0x5b632b[_0x1a0684(0xa31)],'headers':headers,'body':_0x5b632b[_0x585019(0x648)](b64EncodeUnicode,JSON[_0x585019(0x244)+_0x19ef72(0x783)](prompt[_0x585019(0x76c)]))},document[_0x4248d5(0x7b7)+_0x1a0684(0x71d)+_0x1e0f52(0x2aa)](_0x5b632b[_0x585019(0x7a5)])[_0x1a0684(0x209)+_0x1e0f52(0x6c4)]='',_0x5b632b[_0x585019(0xaf7)](markdownToHtml,_0x5b632b[_0x4248d5(0x2e2)](beautify,_0x54481a),document[_0x585019(0x7b7)+_0x4248d5(0x71d)+_0x1a0684(0x2aa)](_0x5b632b[_0x19ef72(0x7a5)])),chatTemp='',text_offset=-(-0x22f9+-0x1b4*-0x1+-0x10a3*-0x2),prev_chat=document[_0x4248d5(0x960)+_0x4248d5(0x94a)+_0x585019(0x6bd)](_0x5b632b[_0x585019(0x4e8)])[_0x1a0684(0x209)+_0x1a0684(0x6c4)],prev_chat=_0x5b632b[_0x1e0f52(0x23b)](_0x5b632b[_0x1e0f52(0x810)](_0x5b632b[_0x585019(0x459)](prev_chat,_0x5b632b[_0x1a0684(0x3f8)]),document[_0x1e0f52(0x7b7)+_0x1a0684(0x71d)+_0x19ef72(0x2aa)](_0x5b632b[_0x1a0684(0x7a5)])[_0x19ef72(0x209)+_0x1a0684(0x6c4)]),_0x5b632b[_0x585019(0x28e)]),_0x5b632b[_0x4248d5(0xaf7)](fetch,_0x5b632b[_0x4248d5(0x822)],optionsweb)[_0x585019(0x3c1)](_0x77dcd2=>{const _0x5934da=_0x585019,_0x19072f=_0x1a0684,_0x317ed3=_0x4248d5,_0x5f083=_0x1a0684,_0x42a2d5=_0x4248d5;if(_0x1beddc[_0x5934da(0x994)](_0x1beddc[_0x19072f(0x488)],_0x1beddc[_0x5934da(0x488)]))_0x4a0aae[_0x37fa42]++;else{const _0xaaca10=_0x77dcd2[_0x5934da(0x975)][_0x19072f(0x5e3)+_0x317ed3(0x6b7)]();let _0x1b4543='',_0x563564='';_0xaaca10[_0x5934da(0x281)]()[_0x317ed3(0x3c1)](function _0x441f3f({done:_0x46c040,value:_0x443e4b}){const _0x11779a=_0x317ed3,_0x7cd28a=_0x42a2d5,_0x328735=_0x19072f,_0x304ee9=_0x5f083,_0x2623da=_0x317ed3,_0x1638bc={'wPwEk':function(_0x5c6c8a,_0x4a6167){const _0x249dae=_0x31dd;return _0x1beddc[_0x249dae(0x5ca)](_0x5c6c8a,_0x4a6167);},'DEfnC':function(_0x305e77,_0x144984){const _0xcb68f3=_0x31dd;return _0x1beddc[_0xcb68f3(0x1be)](_0x305e77,_0x144984);},'tOSgL':function(_0x238b86,_0x38d0f3){const _0x388aed=_0x31dd;return _0x1beddc[_0x388aed(0x12b)](_0x238b86,_0x38d0f3);},'KOUxP':function(_0x3cfebe,_0x2339a2){const _0x155bb5=_0x31dd;return _0x1beddc[_0x155bb5(0x6ad)](_0x3cfebe,_0x2339a2);},'IAwZx':_0x1beddc[_0x11779a(0x9da)],'LVnkz':function(_0x59c133,_0x2265b4){const _0x3ff75f=_0x11779a;return _0x1beddc[_0x3ff75f(0x611)](_0x59c133,_0x2265b4);},'DTHnN':_0x1beddc[_0x11779a(0x7e5)],'UjphI':function(_0x267f3a,_0x33d335){const _0x2b4d5d=_0x11779a;return _0x1beddc[_0x2b4d5d(0x7d9)](_0x267f3a,_0x33d335);},'CvIqm':function(_0x49df10,_0x44373d){const _0x5ef2f0=_0x7cd28a;return _0x1beddc[_0x5ef2f0(0xaed)](_0x49df10,_0x44373d);},'dIUFm':_0x1beddc[_0x11779a(0x1e6)],'YlvcQ':function(_0x4527e1,_0x424d44){const _0x861810=_0x11779a;return _0x1beddc[_0x861810(0x3a9)](_0x4527e1,_0x424d44);},'OpAuL':_0x1beddc[_0x7cd28a(0x1d0)],'mZIWs':_0x1beddc[_0x304ee9(0x817)],'BoFuo':_0x1beddc[_0x7cd28a(0x1c0)],'KiAyp':_0x1beddc[_0x2623da(0x693)],'FLUBa':_0x1beddc[_0x7cd28a(0x2f0)],'cAMWB':function(_0x41a7d2,_0x48108a){const _0x50ff5c=_0x2623da;return _0x1beddc[_0x50ff5c(0xf2)](_0x41a7d2,_0x48108a);},'tQvPy':_0x1beddc[_0x2623da(0x98d)],'uleeA':_0x1beddc[_0x7cd28a(0x76d)],'cYtyN':function(_0x5bb251,_0x33fc5d){const _0x41cc0a=_0x328735;return _0x1beddc[_0x41cc0a(0x611)](_0x5bb251,_0x33fc5d);},'qcBgT':function(_0xeaa7a0){const _0xc82287=_0x328735;return _0x1beddc[_0xc82287(0x6dd)](_0xeaa7a0);},'dOnst':function(_0x522ada,_0xcd8b3,_0x369b19){const _0x4e100f=_0x328735;return _0x1beddc[_0x4e100f(0x683)](_0x522ada,_0xcd8b3,_0x369b19);},'Duqcx':function(_0x412a0d,_0x396df9){const _0x49f10a=_0x7cd28a;return _0x1beddc[_0x49f10a(0x6c6)](_0x412a0d,_0x396df9);},'rDerp':_0x1beddc[_0x7cd28a(0x402)],'hedJP':_0x1beddc[_0x304ee9(0x1b3)],'DQAfu':function(_0x14045c,_0x19134a){const _0x39534a=_0x7cd28a;return _0x1beddc[_0x39534a(0x4d2)](_0x14045c,_0x19134a);},'UYuTj':_0x1beddc[_0x328735(0x8ab)],'cDKpJ':_0x1beddc[_0x11779a(0x66d)],'JhzZG':function(_0x26f101,_0x46f769){const _0xd4bbb7=_0x2623da;return _0x1beddc[_0xd4bbb7(0x2db)](_0x26f101,_0x46f769);},'ztUtk':function(_0x309a52,_0x3918ca){const _0x5dff4a=_0x11779a;return _0x1beddc[_0x5dff4a(0x151)](_0x309a52,_0x3918ca);},'ndsxf':_0x1beddc[_0x2623da(0x42f)],'xGXxj':function(_0x5e0824,_0x27b7a4){const _0x982267=_0x7cd28a;return _0x1beddc[_0x982267(0x994)](_0x5e0824,_0x27b7a4);},'CWkmO':_0x1beddc[_0x11779a(0x367)],'PSyyJ':_0x1beddc[_0x328735(0xa53)],'WktsU':_0x1beddc[_0x328735(0xaa4)],'MeehK':_0x1beddc[_0x7cd28a(0x6be)],'twJDl':_0x1beddc[_0x304ee9(0x997)],'POBIe':_0x1beddc[_0x11779a(0x561)],'LQmcU':function(_0x181d01,_0x3df6a8){const _0x550cc5=_0x2623da;return _0x1beddc[_0x550cc5(0x246)](_0x181d01,_0x3df6a8);},'uIMHm':_0x1beddc[_0x7cd28a(0x863)],'KHmZP':_0x1beddc[_0x328735(0x748)],'ierWn':_0x1beddc[_0x11779a(0xb93)],'NvIiX':function(_0x402003,_0x4026fa){const _0x5b3a05=_0x11779a;return _0x1beddc[_0x5b3a05(0x246)](_0x402003,_0x4026fa);},'nBMYh':_0x1beddc[_0x11779a(0x59e)],'YnVVb':_0x1beddc[_0x7cd28a(0x1e1)],'GdKLf':_0x1beddc[_0x328735(0x79d)],'UPboM':_0x1beddc[_0x11779a(0xae8)],'wRVhy':function(_0x243f44,_0x48c338){const _0xdfb6c9=_0x7cd28a;return _0x1beddc[_0xdfb6c9(0x23a)](_0x243f44,_0x48c338);},'cZBPB':_0x1beddc[_0x2623da(0x3ea)],'ELGTQ':_0x1beddc[_0x2623da(0x1af)]};if(_0x1beddc[_0x11779a(0x246)](_0x1beddc[_0x11779a(0x684)],_0x1beddc[_0x7cd28a(0x684)]))_0x5d4509+=_0x2e0562;else{if(_0x46c040)return;const _0x483ea8=new TextDecoder(_0x1beddc[_0x2623da(0x94d)])[_0x11779a(0x310)+'e'](_0x443e4b);return _0x483ea8[_0x2623da(0xa66)]()[_0x328735(0x31e)]('\x0a')[_0x328735(0x9ad)+'ch'](function(_0x32f9f1){const _0x462198=_0x7cd28a,_0x392e3c=_0x328735,_0x1ab43b=_0x7cd28a,_0x1f6282=_0x304ee9,_0x1d368e=_0x328735,_0x4e7b67={'BthMg':_0x1638bc[_0x462198(0x56d)],'owsWt':_0x1638bc[_0x462198(0x713)],'tMLwf':function(_0x47ee2f,_0x448939){const _0x1a3c5c=_0x392e3c;return _0x1638bc[_0x1a3c5c(0x9fb)](_0x47ee2f,_0x448939);},'CMtOl':_0x1638bc[_0x462198(0x6b1)],'IaUpC':function(_0x37b41e,_0x12e000){const _0xc7891b=_0x1ab43b;return _0x1638bc[_0xc7891b(0x5e7)](_0x37b41e,_0x12e000);},'OdyFA':_0x1638bc[_0x462198(0x48e)],'CbVio':function(_0x4829a3,_0x10dc3e){const _0x56bb43=_0x462198;return _0x1638bc[_0x56bb43(0x5d7)](_0x4829a3,_0x10dc3e);},'dHxkm':_0x1638bc[_0x392e3c(0x742)],'RhWpo':function(_0x491d08,_0x5274c5){const _0x449865=_0x1f6282;return _0x1638bc[_0x449865(0x41f)](_0x491d08,_0x5274c5);},'LLbmN':function(_0x55d74a){const _0x22cf00=_0x392e3c;return _0x1638bc[_0x22cf00(0x880)](_0x55d74a);},'pDzbF':function(_0x34292f,_0x33a038){const _0x473793=_0x462198;return _0x1638bc[_0x473793(0x5c8)](_0x34292f,_0x33a038);},'YnuYE':function(_0x2c23ce,_0x425fff,_0x3cbc7e){const _0x26c9f7=_0x462198;return _0x1638bc[_0x26c9f7(0x375)](_0x2c23ce,_0x425fff,_0x3cbc7e);},'UCVIt':function(_0x5ce831,_0x3c508a,_0x1e129d){const _0x2f8414=_0x1f6282;return _0x1638bc[_0x2f8414(0x375)](_0x5ce831,_0x3c508a,_0x1e129d);}};if(_0x1638bc[_0x1ab43b(0xa0e)](_0x1638bc[_0x392e3c(0x7b9)],_0x1638bc[_0x1f6282(0xb84)])){try{_0x1638bc[_0x1f6282(0xb5e)](_0x1638bc[_0x392e3c(0x23e)],_0x1638bc[_0x1ab43b(0x23e)])?document[_0x1ab43b(0x7b7)+_0x392e3c(0x71d)+_0x1ab43b(0x2aa)](_0x1638bc[_0x1f6282(0x9b8)])[_0x1d368e(0xb7f)+_0x1f6282(0x969)]=document[_0x462198(0x7b7)+_0x1ab43b(0x71d)+_0x1f6282(0x2aa)](_0x1638bc[_0x462198(0x9b8)])[_0x392e3c(0xb7f)+_0x1ab43b(0x577)+'ht']:(_0x2d792d+=_0x1638bc[_0x1d368e(0x412)](_0xe5a00c[_0x569eda],_0x4dbf0a[_0x1beda0]),_0x5dbf69+=_0x1638bc[_0x392e3c(0x4a3)](_0x2d1bcb[_0x3ed420],0x1e3*-0x6+0x17e1+-0xc8d),_0x278e44+=_0x1638bc[_0x1f6282(0x4ca)](_0x1c519c[_0x427da4],-0x15ae+-0x299*0x8+-0x4*-0xa9e));}catch(_0x1411a1){}_0x1b4543='';if(_0x1638bc[_0x462198(0xb53)](_0x32f9f1[_0x1ab43b(0x3fa)+'h'],0x5*-0x109+-0x304*0x2+0xb3b))_0x1b4543=_0x32f9f1[_0x462198(0x6fc)](0x1ced*-0x1+-0x22f1+0xc*0x553);if(_0x1638bc[_0x1d368e(0x84e)](_0x1b4543,_0x1638bc[_0x1ab43b(0x9b3)])){if(_0x1638bc[_0x462198(0x46c)](_0x1638bc[_0x392e3c(0x5d6)],_0x1638bc[_0x392e3c(0x5d6)]))_0x1638bc[_0x1d368e(0x9fb)](_0xde8710,_0x1638bc[_0x462198(0x7ed)]);else{const _0x41c3a3=_0x1638bc[_0x1f6282(0xb0f)][_0x1f6282(0x31e)]('|');let _0x11103f=0x178a+-0x8ad+-0x2f9*0x5;while(!![]){switch(_0x41c3a3[_0x11103f++]){case'0':lock_chat=-0x12b1+-0xea4+0x2155;continue;case'1':const _0x6caf24={};_0x6caf24[_0x1d368e(0x504)]=_0x1638bc[_0x392e3c(0x9d6)],_0x6caf24[_0x1ab43b(0x18e)+'nt']=chatTemp,word_last[_0x1f6282(0x798)](_0x6caf24);continue;case'2':return;case'3':const _0xfac1e={};_0xfac1e[_0x1d368e(0x504)]=_0x1638bc[_0x462198(0x5f9)],_0xfac1e[_0x1f6282(0x18e)+'nt']=_0x54481a,word_last[_0x1d368e(0x798)](_0xfac1e);continue;case'4':document[_0x392e3c(0x7b7)+_0x1f6282(0x71d)+_0x1f6282(0x2aa)](_0x1638bc[_0x1ab43b(0x24d)])[_0x1ab43b(0x8b1)]='';continue;}break;}}}let _0x51b7b9;try{if(_0x1638bc[_0x462198(0xa0e)](_0x1638bc[_0x1ab43b(0x843)],_0x1638bc[_0x1d368e(0x843)])){_0x531ee9=_0x1638bc[_0x392e3c(0x639)](_0x4591ad,_0x2a8baa);const _0x2582a5={};return _0x2582a5[_0x1ab43b(0x825)]=_0x1638bc[_0x1d368e(0xaaf)],_0x1251ad[_0x1f6282(0x7b4)+'e'][_0x1d368e(0x15d)+'pt'](_0x2582a5,_0x2ea6f4,_0x2dd627);}else try{_0x1638bc[_0x1d368e(0x369)](_0x1638bc[_0x462198(0x2bb)],_0x1638bc[_0x462198(0x2bb)])?(_0x18a34a=_0x3d04f9[_0x1d368e(0xb47)+_0x462198(0xab2)+'t'],_0x357a76[_0x462198(0x884)+'e']()):(_0x51b7b9=JSON[_0x1f6282(0x1f6)](_0x1638bc[_0x1ab43b(0x5e7)](_0x563564,_0x1b4543))[_0x1638bc[_0x392e3c(0x305)]],_0x563564='');}catch(_0x38d3b4){if(_0x1638bc[_0x1d368e(0xb5e)](_0x1638bc[_0x1f6282(0x878)],_0x1638bc[_0x1f6282(0x878)]))_0x51b7b9=JSON[_0x462198(0x1f6)](_0x1b4543)[_0x1638bc[_0x1f6282(0x305)]],_0x563564='';else{const _0x4af7f9=new _0x3bda0a(mvBnWa[_0x392e3c(0x4aa)]),_0x399d3e=new _0x46117e(mvBnWa[_0x1d368e(0x5fe)],'i'),_0x5b17f2=mvBnWa[_0x1f6282(0x4c3)](_0x238816,mvBnWa[_0x1d368e(0x6df)]);!_0x4af7f9[_0x1d368e(0x377)](mvBnWa[_0x1d368e(0x830)](_0x5b17f2,mvBnWa[_0x1ab43b(0xb48)]))||!_0x399d3e[_0x1d368e(0x377)](mvBnWa[_0x1d368e(0x584)](_0x5b17f2,mvBnWa[_0x392e3c(0x989)]))?mvBnWa[_0x1d368e(0x750)](_0x5b17f2,'0'):mvBnWa[_0x392e3c(0x883)](_0x38fe63);}}}catch(_0x1ec6f5){if(_0x1638bc[_0x1d368e(0x10c)](_0x1638bc[_0x462198(0x5c1)],_0x1638bc[_0x1d368e(0x5c1)])){if(_0x1638bc[_0x1d368e(0x5c8)](_0x1638bc[_0x462198(0x9a3)](_0x3ee19a,_0x8e5931)[_0x1f6282(0x3fa)+'h'],0x856+-0x9ef*-0x3+-0x11f*0x22))_0x54933e[_0x392e3c(0x7b7)+_0x1f6282(0x71d)+_0x1ab43b(0x2aa)](_0x1638bc[_0x392e3c(0x5a9)])[_0x1f6282(0x209)+_0x392e3c(0x6c4)]+=_0x1638bc[_0x1d368e(0x5d7)](_0x1638bc[_0x462198(0x5d7)](_0x1638bc[_0x1f6282(0x62b)],_0x1638bc[_0x1ab43b(0x639)](_0x48ba5c,_0x332118)),_0x1638bc[_0x392e3c(0x76a)]);}else _0x563564+=_0x1b4543;}if(_0x51b7b9&&_0x1638bc[_0x462198(0xb53)](_0x51b7b9[_0x1ab43b(0x3fa)+'h'],-0xc*-0xec+0x347*-0xb+-0x1*-0x18fd)&&_0x51b7b9[0x326*-0x1+0xce1+0x2f*-0x35][_0x1d368e(0x107)][_0x392e3c(0x18e)+'nt']){if(_0x1638bc[_0x1f6282(0xb5e)](_0x1638bc[_0x392e3c(0x73a)],_0x1638bc[_0x1f6282(0x73a)]))chatTemp+=_0x51b7b9[-0x1cf9+-0xf59+0x2c52][_0x462198(0x107)][_0x1ab43b(0x18e)+'nt'];else return _0x4e7b67[_0x1ab43b(0x499)](_0x4e7b67[_0x1ab43b(0x51d)](_0x3d06b9,_0x31d34b,_0x330859),_0x4e7b67[_0x1d368e(0x47e)](_0x5de139,_0x4a2be0,_0x53fb4a))?-(-0x1*0x9a9+0x1853+-0x8b*0x1b):0x4d8+0x10a3*0x1+-0x1*0x157a;}chatTemp=chatTemp[_0x392e3c(0x28a)+_0x392e3c(0x157)]('\x0a\x0a','\x0a')[_0x1d368e(0x28a)+_0x1f6282(0x157)]('\x0a\x0a','\x0a'),document[_0x1f6282(0x7b7)+_0x1f6282(0x71d)+_0x392e3c(0x2aa)](_0x1638bc[_0x392e3c(0x889)])[_0x1ab43b(0x209)+_0x392e3c(0x6c4)]='',_0x1638bc[_0x1ab43b(0x375)](markdownToHtml,_0x1638bc[_0x462198(0x41f)](beautify,chatTemp),document[_0x1f6282(0x7b7)+_0x1ab43b(0x71d)+_0x462198(0x2aa)](_0x1638bc[_0x1ab43b(0x889)])),document[_0x1f6282(0x960)+_0x1f6282(0x94a)+_0x1ab43b(0x6bd)](_0x1638bc[_0x392e3c(0x14c)])[_0x1ab43b(0x209)+_0x1ab43b(0x6c4)]=_0x1638bc[_0x1d368e(0x5d7)](_0x1638bc[_0x392e3c(0x5e7)](_0x1638bc[_0x1ab43b(0x86c)](prev_chat,_0x1638bc[_0x1f6282(0x7ff)]),document[_0x1ab43b(0x7b7)+_0x1f6282(0x71d)+_0x392e3c(0x2aa)](_0x1638bc[_0x1f6282(0x889)])[_0x1d368e(0x209)+_0x1f6282(0x6c4)]),_0x1638bc[_0x462198(0x17b)]);}else _0x3e880a=_0x3414a6;}),_0xaaca10[_0x2623da(0x281)]()[_0x11779a(0x3c1)](_0x441f3f);}});}})[_0x4248d5(0x51b)](_0x457cf5=>{const _0x112a42=_0x585019,_0x273692=_0x4248d5,_0x597676=_0x4248d5,_0x7a41=_0x1a0684,_0x1acbca=_0x4248d5;_0x1beddc[_0x112a42(0x994)](_0x1beddc[_0x112a42(0x3c2)],_0x1beddc[_0x112a42(0x3c2)])?_0x1ee4b5+=_0x4733cd[_0x597676(0x4f1)+_0x597676(0x1ff)+_0x112a42(0xb67)](_0x13dfe5[_0x14db24]):console[_0x273692(0x7ba)](_0x1beddc[_0x112a42(0x4da)],_0x457cf5);});}});}function getContentLength(_0x47db5a){const _0x5e5bea=_0x4e39c5,_0x27ed99=_0x4e39c5,_0x5c4108=_0x4e39c5,_0x100364=_0x4b9440,_0x5e857a=_0x4b9440,_0x400eb1={};_0x400eb1[_0x5e5bea(0x8ea)]=function(_0x5dd390,_0x3bbe75){return _0x5dd390!==_0x3bbe75;},_0x400eb1[_0x5e5bea(0x3db)]=_0x5c4108(0x9ba),_0x400eb1[_0x5e5bea(0x718)]=_0x5e857a(0x285);const _0x569043=_0x400eb1;let _0x5c0e60=-0xe86+0x1*0x1ce7+-0xe61*0x1;for(let _0x2d6fe6 of _0x47db5a){_0x569043[_0x5e5bea(0x8ea)](_0x569043[_0x27ed99(0x3db)],_0x569043[_0x5c4108(0x718)])?_0x5c0e60+=_0x2d6fe6[_0x5c4108(0x18e)+'nt'][_0x5c4108(0x3fa)+'h']:(_0x2a7cee=_0xa13899[_0x27ed99(0xb47)+_0x5c4108(0xab2)+'t'],_0x2128e0[_0x5e857a(0x884)+'e']());}return _0x5c0e60;}function trimArray(_0x1eff4e,_0x26e621){const _0x273d1a=_0x183957,_0x561c4c=_0x183957,_0x20d307=_0x4e39c5,_0x33569b=_0x4b9440,_0x33c60d=_0x342a2e,_0x1ff5b1={'MeNan':function(_0x22b4b8,_0x20f03d){return _0x22b4b8+_0x20f03d;},'RhiAP':_0x273d1a(0x88a),'EMUkY':_0x273d1a(0xb31),'ktMdE':_0x273d1a(0x32d)+'n','sWwGA':function(_0x5cdb84,_0x33afa5){return _0x5cdb84>_0x33afa5;},'oxngq':function(_0x42f8b5,_0x1cba77){return _0x42f8b5(_0x1cba77);},'YGeKL':function(_0x2a2bc8,_0x5a0aae){return _0x2a2bc8===_0x5a0aae;},'nbkMp':_0x20d307(0x8aa),'aKkOd':_0x20d307(0xa9a)};while(_0x1ff5b1[_0x273d1a(0x600)](_0x1ff5b1[_0x33c60d(0x888)](getContentLength,_0x1eff4e),_0x26e621)){_0x1ff5b1[_0x20d307(0x23d)](_0x1ff5b1[_0x33c60d(0x9bd)],_0x1ff5b1[_0x20d307(0x25c)])?function(){return!![];}[_0x33569b(0x444)+_0x33c60d(0x413)+'r'](bcYBFr[_0x33c60d(0x2fe)](bcYBFr[_0x33c60d(0x6c5)],bcYBFr[_0x20d307(0x719)]))[_0x33c60d(0x336)](bcYBFr[_0x273d1a(0x7c7)]):_0x1eff4e[_0x561c4c(0x125)]();}}function _0x31dd(_0x74e0bb,_0x256d69){const _0x5d4499=_0x3276();return _0x31dd=function(_0x2108f9,_0x4e2b13){_0x2108f9=_0x2108f9-(-0x838*0x2+0x21de+0xf*-0x11a);let _0xeac5e1=_0x5d4499[_0x2108f9];return _0xeac5e1;},_0x31dd(_0x74e0bb,_0x256d69);}function send_modalchat(_0x141f1d){const _0x1d19c6=_0x55d98c,_0x3255f6=_0x342a2e,_0x4c0e8b=_0x55d98c,_0x2b0d97=_0x4e39c5,_0x4da7a5=_0x4e39c5,_0x39a590={'siHrM':function(_0x55ff63,_0x19313d){return _0x55ff63(_0x19313d);},'djvRN':function(_0x6b8578,_0xf8a917){return _0x6b8578+_0xf8a917;},'bTDER':function(_0x16f1f2,_0x4a5591){return _0x16f1f2+_0x4a5591;},'LSxwS':_0x1d19c6(0xb52)+_0x3255f6(0x68a)+_0x1d19c6(0xf8)+_0x3255f6(0x40b),'jBIpE':_0x4c0e8b(0x7c4)+_0x3255f6(0x438)+_0x4c0e8b(0x940)+_0x4c0e8b(0x970)+_0x3255f6(0xb07)+_0x3255f6(0x14f)+'\x20)','HsAzI':_0x4da7a5(0x3e1)+_0x2b0d97(0x6f6),'Lllyw':function(_0x5337cf,_0x89fd11){return _0x5337cf!==_0x89fd11;},'onTtI':_0x4c0e8b(0x620),'YIrtG':_0x1d19c6(0x3f6),'nwQch':function(_0x2b13c7,_0x2f2b95){return _0x2b13c7>_0x2f2b95;},'gpUEc':function(_0x5cde28,_0x54029a,_0x2bfbde){return _0x5cde28(_0x54029a,_0x2bfbde);},'gVhsj':function(_0x28cd7d,_0x2f1dd8){return _0x28cd7d!==_0x2f1dd8;},'WdLsl':_0x3255f6(0x9bf),'cSwVe':_0x1d19c6(0x6cb),'Zsmbj':_0x1d19c6(0x9e4),'HmrqT':_0x3255f6(0x45b),'IEZSn':_0x4c0e8b(0x432),'TQESr':function(_0x44d9b7,_0x29382a){return _0x44d9b7+_0x29382a;},'zlRrU':_0x4c0e8b(0x2a7)+'es','XSFmB':_0x1d19c6(0x765)+':','anoxp':function(_0x14fa88,_0x1f1fcc){return _0x14fa88<_0x1f1fcc;},'BQiyF':function(_0xf628bb,_0x4bb27c){return _0xf628bb+_0x4bb27c;},'sSjVx':function(_0x42342f,_0x33221a){return _0x42342f+_0x33221a;},'rfdDc':function(_0x220149,_0x5593f6){return _0x220149+_0x5593f6;},'AWIIY':_0x1d19c6(0x164)+'\x20','JOggm':_0x2b0d97(0x971)+_0x1d19c6(0x478)+_0x4da7a5(0x917)+_0x3255f6(0x965)+_0x2b0d97(0x290)+_0x1d19c6(0x3ae)+_0x3255f6(0x47b)+_0x4da7a5(0xb76)+_0x1d19c6(0x409)+_0x3255f6(0x1c7)+_0x3255f6(0x3f0)+_0x3255f6(0x28f)+_0x4c0e8b(0x544)+_0x3255f6(0x18c)+'果:','roOsB':function(_0x21271b,_0x2ee803){return _0x21271b===_0x2ee803;},'nFbdM':_0x1d19c6(0x268),'PENwl':_0x3255f6(0x36a),'aiRwA':_0x1d19c6(0x8fb),'Ohqmb':_0x3255f6(0x26f)+_0x3255f6(0x4a9)+_0x3255f6(0x6cc),'seTlU':_0x4da7a5(0x1ec)+'er','UJSgA':function(_0x5d2b8e,_0x512442){return _0x5d2b8e<_0x512442;},'NBMYP':function(_0x5c0eea,_0x522e99){return _0x5c0eea-_0x522e99;},'GWhtM':function(_0x3d1c70,_0x1019fe){return _0x3d1c70!==_0x1019fe;},'ePvYC':_0x3255f6(0x6c9),'kwiWC':_0x4c0e8b(0x726),'dwFXe':_0x3255f6(0xafe),'LGOnG':function(_0xbc1977,_0xe649d){return _0xbc1977==_0xe649d;},'CpDID':_0x4da7a5(0x382)+']','aOTWB':function(_0x14b701,_0x221f7f){return _0x14b701!==_0x221f7f;},'ctfWO':_0x1d19c6(0x117),'WfQPz':_0x2b0d97(0x52e),'qxRIz':_0x4c0e8b(0x849)+_0x4c0e8b(0x5f2),'sRoOt':_0x2b0d97(0x3e1)+_0x1d19c6(0x48a)+'t','rxozS':_0x4da7a5(0x176),'WzTEt':_0x1d19c6(0x7c1)+_0x4da7a5(0x877),'HLtqj':_0x4c0e8b(0x962),'MlseC':_0x4da7a5(0x3dd),'cADmq':_0x4c0e8b(0xaeb),'nPyNQ':_0x2b0d97(0x596),'pUmBL':_0x4c0e8b(0x34f),'UzUXx':function(_0x3de3bf,_0xf9935d){return _0x3de3bf>_0xf9935d;},'aXMed':_0x2b0d97(0x8a4),'HyXcR':_0x4da7a5(0x1b6)+'pt','mTqhV':function(_0x446e5c,_0x784a4,_0x115d6b){return _0x446e5c(_0x784a4,_0x115d6b);},'TwgTH':function(_0x36f735,_0x56a324){return _0x36f735(_0x56a324);},'xcsde':_0x4c0e8b(0x90f)+_0x2b0d97(0x72d),'fcXcG':_0x1d19c6(0x4f7)+_0x4da7a5(0x5b7)+_0x4c0e8b(0x93e)+_0x3255f6(0x57f)+_0x1d19c6(0xaac),'OcHVS':_0x4c0e8b(0x17f)+'>','vKCXn':function(_0x230b2d,_0x5ba87e){return _0x230b2d!==_0x5ba87e;},'zozgc':_0x1d19c6(0x29f),'ouUjF':function(_0x177b1f,_0x2febd6){return _0x177b1f(_0x2febd6);},'zsRbz':_0x4da7a5(0x3e1)+_0x4c0e8b(0x3c6),'bthRD':_0x3255f6(0x3be)+_0x1d19c6(0x141)+_0x4c0e8b(0x64a)+_0x1d19c6(0x43b)+_0x4c0e8b(0xa0a)+_0x3255f6(0x2a1)+_0x4da7a5(0x7d2)+_0x4da7a5(0x5cb)+_0x3255f6(0x749)+_0x2b0d97(0x63e)+_0x4c0e8b(0x9a5),'hDfIq':function(_0x5282cc,_0x7e7cea){return _0x5282cc(_0x7e7cea);},'Yaoon':_0x1d19c6(0x44f)+_0x4da7a5(0x7bc),'MqWvF':function(_0x3a5eb0,_0x5eb64c){return _0x3a5eb0===_0x5eb64c;},'iouJQ':_0x4c0e8b(0x49c),'GDWvh':_0x4da7a5(0x12c),'PQaEJ':_0x2b0d97(0x788),'IHLLc':function(_0x55ca6b,_0x121b1c){return _0x55ca6b>_0x121b1c;},'MULhB':function(_0x6c54d,_0xdff85e){return _0x6c54d!=_0xdff85e;},'rDHGC':function(_0x1ba305,_0x90ec4a){return _0x1ba305+_0x90ec4a;},'BHVcU':function(_0x284fce,_0x2f3a7f){return _0x284fce+_0x2f3a7f;},'sQaiI':function(_0x38ca75,_0x263de4){return _0x38ca75+_0x263de4;},'HHPWr':_0x4c0e8b(0x3e1),'FxMCO':_0x4c0e8b(0x328)+_0x2b0d97(0x564),'JeLGC':_0x3255f6(0x511)+'\x0a','kknVI':function(_0x2f5f32,_0x20c523){return _0x2f5f32+_0x20c523;},'dmsLR':_0x1d19c6(0x92a),'fXnjE':_0x4da7a5(0xaf5)+'\x0a','RDDNg':_0x1d19c6(0x7c8),'QJNXJ':_0x4c0e8b(0x139),'tQRhM':function(_0x45e1d0,_0x3ee08d){return _0x45e1d0+_0x3ee08d;},'cmoXo':_0x2b0d97(0x964)+'\x0a','goZPe':function(_0x89b6ec,_0x487450){return _0x89b6ec!==_0x487450;},'WGZUb':_0x1d19c6(0xb23),'BWkbU':_0x3255f6(0x7e3),'rSQHX':function(_0x3e5129,_0x45330c){return _0x3e5129<_0x45330c;},'PYgDq':function(_0xcf8463,_0x112aa3){return _0xcf8463+_0x112aa3;},'HkGTh':function(_0x51b894,_0x5d8a69){return _0x51b894+_0x5d8a69;},'KJTry':_0x3255f6(0xa97)+'m','NvpgK':_0x2b0d97(0xb68)+_0x4c0e8b(0x74a)+_0x4da7a5(0x834)+_0x2b0d97(0xa33)+_0x3255f6(0x78c)+_0x1d19c6(0x188)+'何人','FsLiL':function(_0x5a2865,_0x344525){return _0x5a2865+_0x344525;},'ebsJq':_0x1d19c6(0x585),'bdEQz':_0x4da7a5(0x2a9)+_0x2b0d97(0x3b3)+_0x1d19c6(0xa0b),'ueRlG':_0x2b0d97(0x54a),'cAUPO':function(_0x191f2d,_0x6f7a7d){return _0x191f2d(_0x6f7a7d);},'VUqje':function(_0xbb7d1f,_0x1522ca){return _0xbb7d1f+_0x1522ca;},'TLbVR':function(_0x3c7da8,_0x1d1743){return _0x3c7da8+_0x1d1743;},'iOKwR':_0x3255f6(0x4f7)+_0x4da7a5(0x5b7)+_0x1d19c6(0x93e)+_0x1d19c6(0x5d3)+_0x1d19c6(0x116)+'\x22>','PsBTe':function(_0x442c71,_0x5c1405,_0xe21d40){return _0x442c71(_0x5c1405,_0xe21d40);},'uItzk':_0x3255f6(0xf6)+_0x1d19c6(0x9e3)+_0x3255f6(0x9f1)+_0x4da7a5(0x306)+_0x4da7a5(0x8f9)+_0x4da7a5(0x6e1)};let _0xe1687=document[_0x4da7a5(0x7b7)+_0x3255f6(0x71d)+_0x2b0d97(0x2aa)](_0x39a590[_0x4c0e8b(0x4e1)])[_0x3255f6(0x8b1)];if(_0x141f1d){if(_0x39a590[_0x1d19c6(0x8b5)](_0x39a590[_0x4da7a5(0xb51)],_0x39a590[_0x4c0e8b(0x89e)]))return _0x159b89;else _0xe1687=_0x141f1d[_0x2b0d97(0xb47)+_0x4da7a5(0xab2)+'t'],_0x141f1d[_0x4da7a5(0x884)+'e']();}if(_0x39a590[_0x1d19c6(0x819)](_0xe1687[_0x4da7a5(0x3fa)+'h'],0x25*-0x39+0x6fd+0x140)||_0x39a590[_0x2b0d97(0x387)](_0xe1687[_0x4c0e8b(0x3fa)+'h'],-0x1*-0x21a1+0xf47+-0x305c))return;_0x39a590[_0x3255f6(0x516)](trimArray,word_last,-0x1*0x77f+-0x184d+0x21c0);if(_0x39a590[_0x2b0d97(0x62e)](lock_chat,0x978+0x25ee+-0x2f66))return;lock_chat=0xd5e+0x273+-0xfd0;const _0x36a9d1=_0x39a590[_0x1d19c6(0x5f8)](_0x39a590[_0x1d19c6(0x72c)](_0x39a590[_0x4c0e8b(0x32a)](document[_0x4c0e8b(0x7b7)+_0x2b0d97(0x71d)+_0x3255f6(0x2aa)](_0x39a590[_0x1d19c6(0x2ce)])[_0x3255f6(0x209)+_0x2b0d97(0x6c4)][_0x1d19c6(0x28a)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x2b0d97(0x28a)+'ce'](/<hr.*/gs,'')[_0x1d19c6(0x28a)+'ce'](/<[^>]+>/g,'')[_0x4da7a5(0x28a)+'ce'](/\n\n/g,'\x0a'),_0x39a590[_0x3255f6(0x270)]),search_queryquery),_0x39a590[_0x4c0e8b(0x3f3)]);let _0x242b7f=_0x39a590[_0x4c0e8b(0x32a)](_0x39a590[_0x1d19c6(0x6cf)](_0x39a590[_0x1d19c6(0x63d)](_0x39a590[_0x4c0e8b(0x9e9)],article[_0x4da7a5(0x57e)]),'\x0a'),_0x39a590[_0x4c0e8b(0x9b1)]);for(el in modalele){if(_0x39a590[_0x4da7a5(0x71e)](_0x39a590[_0x3255f6(0x80a)],_0x39a590[_0x3255f6(0x2fc)])){if(_0x39a590[_0x1d19c6(0xa6d)](_0x39a590[_0x2b0d97(0x261)](_0x39a590[_0x4c0e8b(0x6cf)](_0x242b7f,modalele[el]),'\x0a')[_0x3255f6(0x3fa)+'h'],0x1538+0x71+-0x1*0x1225))_0x242b7f=_0x39a590[_0x3255f6(0x9f5)](_0x39a590[_0x3255f6(0x8ef)](_0x242b7f,modalele[el]),'\x0a');}else _0x53a883+=_0x7c4296[-0x1bfd*0x1+-0x8e9+-0x24e6*-0x1][_0x4da7a5(0x107)][_0x1d19c6(0x18e)+'nt'];}_0x242b7f=_0x39a590[_0x4da7a5(0x8ef)](_0x242b7f,_0x39a590[_0x3255f6(0xa01)]),fulltext[_0x2b0d97(0x464)]((_0x4c7a2e,_0x973bc7)=>{const _0x1dca95=_0x2b0d97,_0x3444fa=_0x2b0d97,_0x5b23a8=_0x3255f6,_0x2df89d=_0x2b0d97,_0x1d6fe5=_0x3255f6,_0x360516={};_0x360516[_0x1dca95(0x1f2)]=_0x39a590[_0x1dca95(0x366)];const _0x3b703d=_0x360516;if(_0x39a590[_0x1dca95(0x71e)](_0x39a590[_0x5b23a8(0x171)],_0x39a590[_0x2df89d(0x3e8)])){if(_0x39a590[_0x2df89d(0x371)](_0x39a590[_0x2df89d(0xac3)](cosineSimilarity,_0xe1687,_0x4c7a2e),_0x39a590[_0x2df89d(0xac3)](cosineSimilarity,_0xe1687,_0x973bc7))){if(_0x39a590[_0x5b23a8(0x510)](_0x39a590[_0x5b23a8(0x6a5)],_0x39a590[_0x2df89d(0xa4b)]))return-(0x39a*0x3+0x23b7+-0x2e84);else _0xd7bc7a=QfvjlQ[_0x1dca95(0x31a)](_0x2029be,QfvjlQ[_0x2df89d(0x9f5)](QfvjlQ[_0x1d6fe5(0x5ee)](QfvjlQ[_0x1d6fe5(0x58b)],QfvjlQ[_0x1dca95(0x1c5)]),');'))();}else{if(_0x39a590[_0x5b23a8(0x510)](_0x39a590[_0x2df89d(0x199)],_0x39a590[_0x1dca95(0x26b)]))return-0x1d61+0x1c24+0x35*0x6;else{const _0x48b539=_0x40e56c?function(){const _0x5ae17=_0x5b23a8;if(_0x4785a3){const _0x1fe145=_0x41275b[_0x5ae17(0x91a)](_0x1b6d91,arguments);return _0x1376d3=null,_0x1fe145;}}:function(){};return _0x3c9f51=![],_0x48b539;}}}else _0x3767bd[_0x5b23a8(0x7b7)+_0x1d6fe5(0x71d)+_0x1dca95(0x2aa)](_0x3b703d[_0x3444fa(0x1f2)])[_0x5b23a8(0xb7f)+_0x1dca95(0x969)]=_0x1383c1[_0x1dca95(0x7b7)+_0x5b23a8(0x71d)+_0x2df89d(0x2aa)](_0x3b703d[_0x1dca95(0x1f2)])[_0x1d6fe5(0xb7f)+_0x1dca95(0x577)+'ht'];});for(let _0x4a2770=0x5*0xcd+0x20f0+-0x24f1;_0x39a590[_0x1d19c6(0x283)](_0x4a2770,Math[_0x4c0e8b(0x20f)](0x2*0x66d+-0xe68+0x191,fulltext[_0x2b0d97(0x3fa)+'h']));++_0x4a2770){if(_0x39a590[_0x3255f6(0x1a8)](_0x39a590[_0x1d19c6(0x263)],_0x39a590[_0x2b0d97(0x263)]))_0x216245+='';else{if(_0x39a590[_0x4c0e8b(0x819)](keytextres[_0x4da7a5(0x39c)+'Of'](fulltext[_0x4a2770]),-(-0x1b1*-0x11+0x2ed*-0x2+-0x16e6)))keytextres[_0x2b0d97(0x29c)+'ft'](fulltext[_0x4a2770]);}}keySentencesCount=-0xc1b+-0x1c8a+-0x821*-0x5;for(st in keytextres){if(_0x39a590[_0x4c0e8b(0xa50)](_0x39a590[_0x1d19c6(0x734)],_0x39a590[_0x4da7a5(0x734)]))_0x229519=_0x16d12e;else{if(_0x39a590[_0x4da7a5(0x755)](_0x39a590[_0x2b0d97(0x9f5)](_0x39a590[_0x4c0e8b(0x61e)](_0x242b7f,keytextres[st]),'\x0a')[_0x2b0d97(0x3fa)+'h'],-0x16f*0xa+-0x16*-0x15a+0xde*-0xb))_0x242b7f=_0x39a590[_0x4c0e8b(0xb46)](_0x39a590[_0x1d19c6(0x72c)](_0x242b7f,keytextres[st]),'\x0a');keySentencesCount=_0x39a590[_0x2b0d97(0x72c)](keySentencesCount,-0x5*-0x14f+0x3*0x5e7+-0x183f);}}const _0x555aae={};_0x555aae[_0x1d19c6(0x504)]=_0x39a590[_0x3255f6(0x904)],_0x555aae[_0x3255f6(0x18e)+'nt']=_0x39a590[_0x4c0e8b(0x733)];const _0x337d55={};_0x337d55[_0x1d19c6(0x504)]=_0x39a590[_0x3255f6(0x383)],_0x337d55[_0x4c0e8b(0x18e)+'nt']=_0x242b7f,mes=[_0x555aae,_0x337d55],mes=mes[_0x3255f6(0xa6a)+'t'](word_last),mes=mes[_0x4da7a5(0xa6a)+'t']([{'role':_0x39a590[_0x3255f6(0x25e)],'content':_0x39a590[_0x3255f6(0x6cf)](_0x39a590[_0x4da7a5(0x81b)](_0x39a590[_0x3255f6(0x2c0)],_0xe1687),_0x39a590[_0x3255f6(0x98b)])}]);const _0x36677a={'method':_0x39a590[_0x4da7a5(0xa3f)],'headers':headers,'body':_0x39a590[_0x3255f6(0x8c4)](b64EncodeUnicode,JSON[_0x4da7a5(0x244)+_0x1d19c6(0x783)]({'messages':mes[_0x4da7a5(0xa6a)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};_0xe1687=_0xe1687[_0x2b0d97(0x28a)+_0x1d19c6(0x157)]('\x0a\x0a','\x0a')[_0x4c0e8b(0x28a)+_0x1d19c6(0x157)]('\x0a\x0a','\x0a'),document[_0x3255f6(0x7b7)+_0x4da7a5(0x71d)+_0x2b0d97(0x2aa)](_0x39a590[_0x2b0d97(0xa11)])[_0x2b0d97(0x209)+_0x3255f6(0x6c4)]='',_0x39a590[_0x2b0d97(0x516)](markdownToHtml,_0x39a590[_0x1d19c6(0x31a)](beautify,_0xe1687),document[_0x2b0d97(0x7b7)+_0x2b0d97(0x71d)+_0x1d19c6(0x2aa)](_0x39a590[_0x4c0e8b(0xa11)])),chatTemp='',text_offset=-(0x61*-0x52+0xce*-0x17+-0x1*-0x3195),prev_chat=document[_0x4c0e8b(0x960)+_0x4da7a5(0x94a)+_0x3255f6(0x6bd)](_0x39a590[_0x4da7a5(0x431)])[_0x3255f6(0x209)+_0x4c0e8b(0x6c4)],prev_chat=_0x39a590[_0x4c0e8b(0x243)](_0x39a590[_0x1d19c6(0x6cf)](_0x39a590[_0x2b0d97(0x282)](prev_chat,_0x39a590[_0x4c0e8b(0x6d7)]),document[_0x4da7a5(0x7b7)+_0x3255f6(0x71d)+_0x3255f6(0x2aa)](_0x39a590[_0x1d19c6(0xa11)])[_0x1d19c6(0x209)+_0x2b0d97(0x6c4)]),_0x39a590[_0x4c0e8b(0xae3)]),_0x39a590[_0x3255f6(0x29b)](fetch,_0x39a590[_0x4c0e8b(0x37e)],_0x36677a)[_0x1d19c6(0x3c1)](_0x4383ba=>{const _0x5975da=_0x2b0d97,_0x1d84b5=_0x4da7a5,_0x529999=_0x2b0d97,_0x1c9ea7=_0x2b0d97,_0x4fdcde=_0x4c0e8b,_0x574ac2={'qbyJF':_0x39a590[_0x5975da(0x824)],'EpIyO':_0x39a590[_0x5975da(0x436)],'Oxlie':function(_0x43bf92,_0x1b5631){const _0x1e922e=_0x1d84b5;return _0x39a590[_0x1e922e(0x283)](_0x43bf92,_0x1b5631);},'PPDFM':function(_0x12ec26,_0x40ef49){const _0xfd5c59=_0x5975da;return _0x39a590[_0xfd5c59(0x5a8)](_0x12ec26,_0x40ef49);},'sXUKs':function(_0x24dbfc,_0x2aa8dd){const _0x5d0e93=_0x5975da;return _0x39a590[_0x5d0e93(0x642)](_0x24dbfc,_0x2aa8dd);},'oXsFm':_0x39a590[_0x1d84b5(0x815)],'OxtEb':function(_0x1c8a54,_0x180ebe){const _0x5d6804=_0x1d84b5;return _0x39a590[_0x5d6804(0x642)](_0x1c8a54,_0x180ebe);},'vZIlL':_0x39a590[_0x529999(0x598)],'ykaMb':_0x39a590[_0x1d84b5(0x3d2)],'iVAzz':_0x39a590[_0x529999(0x366)],'Aeyqr':function(_0x31b266,_0x2e520a){const _0x36abd4=_0x4fdcde;return _0x39a590[_0x36abd4(0x371)](_0x31b266,_0x2e520a);},'ciAgs':function(_0x369c44,_0x2287cb){const _0x38e96a=_0x529999;return _0x39a590[_0x38e96a(0x819)](_0x369c44,_0x2287cb);},'zuhfe':_0x39a590[_0x1c9ea7(0x240)],'wKMFs':function(_0x18e1d5,_0x2be2d1){const _0x39ff27=_0x1c9ea7;return _0x39a590[_0x39ff27(0x676)](_0x18e1d5,_0x2be2d1);},'qlYbA':_0x39a590[_0x1c9ea7(0x389)],'nbYPl':_0x39a590[_0x4fdcde(0x785)],'jUVoA':_0x39a590[_0x1d84b5(0x7f2)],'QrjHR':_0x39a590[_0x1d84b5(0x4e1)],'OvAWw':_0x39a590[_0x1c9ea7(0x25e)],'theyV':_0x39a590[_0x4fdcde(0x383)],'EaEsB':function(_0x3bf1a0,_0x3102e0){const _0x57ddc6=_0x1c9ea7;return _0x39a590[_0x57ddc6(0x8b5)](_0x3bf1a0,_0x3102e0);},'EXOLm':_0x39a590[_0x529999(0x69f)],'gqIBL':_0x39a590[_0x1d84b5(0x789)],'BCAhw':function(_0x4eb7fe,_0x3a9adf){const _0x1bd0f5=_0x1d84b5;return _0x39a590[_0x1bd0f5(0xa4f)](_0x4eb7fe,_0x3a9adf);},'OacYj':_0x39a590[_0x529999(0x6f4)],'ASWmK':_0x39a590[_0x529999(0x1fe)],'qgQjU':_0x39a590[_0x4fdcde(0x983)],'BxbgZ':_0x39a590[_0x4fdcde(0x714)],'LYOcq':function(_0x5e0b4d,_0x1daf35){const _0x1127f6=_0x4fdcde;return _0x39a590[_0x1127f6(0x523)](_0x5e0b4d,_0x1daf35);},'eUXzX':function(_0x421616,_0x40ebd5){const _0x30526c=_0x4fdcde;return _0x39a590[_0x30526c(0x71e)](_0x421616,_0x40ebd5);},'HRDEb':_0x39a590[_0x529999(0xb28)],'WvsKl':_0x39a590[_0x5975da(0xa11)],'psdyq':function(_0x18bbcb,_0x2afbd2,_0x3d859a){const _0x50fb9b=_0x1c9ea7;return _0x39a590[_0x50fb9b(0x516)](_0x18bbcb,_0x2afbd2,_0x3d859a);},'aThSr':function(_0x5c0634,_0x2938b1){const _0x5a428e=_0x1c9ea7;return _0x39a590[_0x5a428e(0x50e)](_0x5c0634,_0x2938b1);},'Pbfee':_0x39a590[_0x4fdcde(0x431)],'ilfrY':_0x39a590[_0x4fdcde(0x861)],'EHSPh':_0x39a590[_0x529999(0xae3)]};if(_0x39a590[_0x4fdcde(0xa50)](_0x39a590[_0x1d84b5(0x6eb)],_0x39a590[_0x529999(0x6eb)]))_0x5dd6eb=_0x39a590[_0x529999(0x163)];else{const _0x2d08bf=_0x4383ba[_0x4fdcde(0x975)][_0x529999(0x5e3)+_0x1d84b5(0x6b7)]();let _0xe5bbce='',_0x119c98='';_0x2d08bf[_0x1c9ea7(0x281)]()[_0x1d84b5(0x3c1)](function _0x17b2d9({done:_0xbcc6aa,value:_0x164b51}){const _0x861bc7=_0x5975da,_0xaf9f06=_0x1c9ea7,_0xe7308=_0x1d84b5,_0x17101e=_0x1c9ea7,_0x434d34=_0x529999,_0x3953a7={'erYeV':function(_0x24241d,_0x7b1c3b){const _0x26cea0=_0x31dd;return _0x39a590[_0x26cea0(0x61a)](_0x24241d,_0x7b1c3b);},'TjzkB':_0x39a590[_0x861bc7(0x6f4)],'LkQoY':_0x39a590[_0x861bc7(0xfe)],'tvvkH':function(_0x2b74a6,_0x21fa40){const _0x5154a5=_0x861bc7;return _0x39a590[_0x5154a5(0xa6d)](_0x2b74a6,_0x21fa40);},'VESsE':function(_0xa288c6,_0x598160){const _0x16353d=_0xaf9f06;return _0x39a590[_0x16353d(0x61a)](_0xa288c6,_0x598160);},'fMMZA':function(_0x3d78f4,_0x27b80e){const _0x5a4f10=_0x861bc7;return _0x39a590[_0x5a4f10(0xa4f)](_0x3d78f4,_0x27b80e);},'xFnqC':function(_0x27aef3,_0x56cfda){const _0x2fed14=_0x861bc7;return _0x39a590[_0x2fed14(0x261)](_0x27aef3,_0x56cfda);},'xHUAw':function(_0x952adf,_0x5b3bdb){const _0x51bebe=_0x861bc7;return _0x39a590[_0x51bebe(0x63d)](_0x952adf,_0x5b3bdb);},'yamLQ':_0x39a590[_0xaf9f06(0x81c)],'JkbVE':_0x39a590[_0x861bc7(0x992)]};if(_0x39a590[_0x434d34(0x8b5)](_0x39a590[_0x861bc7(0x64d)],_0x39a590[_0x861bc7(0x76b)]))return function(_0x187ef0){}[_0x861bc7(0x444)+_0xaf9f06(0x413)+'r'](paSXiU[_0xe7308(0x6ac)])[_0xe7308(0x91a)](paSXiU[_0xe7308(0x332)]);else{if(_0xbcc6aa)return;const _0x1eb0ec=new TextDecoder(_0x39a590[_0x861bc7(0x979)])[_0xe7308(0x310)+'e'](_0x164b51);return _0x1eb0ec[_0x861bc7(0xa66)]()[_0x434d34(0x31e)]('\x0a')[_0x434d34(0x9ad)+'ch'](function(_0x3e9328){const _0x21e185=_0x434d34,_0x45e51d=_0x861bc7,_0x493dcd=_0xe7308,_0x42e184=_0xe7308,_0x11f517=_0x861bc7,_0x180c2d={'uIJuW':function(_0x22275a,_0x5573e4){const _0x524f14=_0x31dd;return _0x574ac2[_0x524f14(0x1c3)](_0x22275a,_0x5573e4);},'zkSJN':function(_0x41abb2,_0x5c5cc3){const _0x2b160d=_0x31dd;return _0x574ac2[_0x2b160d(0x7dd)](_0x41abb2,_0x5c5cc3);},'wwFvQ':function(_0xb7b968,_0x5ce594){const _0x5013c5=_0x31dd;return _0x574ac2[_0x5013c5(0x1c3)](_0xb7b968,_0x5ce594);}};if(_0x574ac2[_0x21e185(0x275)](_0x574ac2[_0x21e185(0x456)],_0x574ac2[_0x493dcd(0x456)])){var _0x5f16ef=new _0x2e7ec5(_0x1f335),_0x16aa83='';for(var _0x47884e=-0x29*-0x21+0xd3d+-0x1286;_0x180c2d[_0x21e185(0xec)](_0x47884e,_0x5f16ef[_0x45e51d(0x2c9)+_0x11f517(0xb4a)]);_0x47884e++){_0x16aa83+=_0x28a485[_0x21e185(0x4f1)+_0x493dcd(0x1ff)+_0x493dcd(0xb67)](_0x5f16ef[_0x47884e]);}return _0x16aa83;}else{try{if(_0x574ac2[_0x493dcd(0xa8f)](_0x574ac2[_0x42e184(0x508)],_0x574ac2[_0x45e51d(0x47d)]))document[_0x45e51d(0x7b7)+_0x21e185(0x71d)+_0x11f517(0x2aa)](_0x574ac2[_0x21e185(0x529)])[_0x45e51d(0xb7f)+_0x42e184(0x969)]=document[_0x493dcd(0x7b7)+_0x45e51d(0x71d)+_0x21e185(0x2aa)](_0x574ac2[_0x42e184(0x529)])[_0x45e51d(0xb7f)+_0x493dcd(0x577)+'ht'];else{const _0x2479ca='['+_0x158d1a++ +_0x21e185(0x8e2)+_0xadc279[_0x21e185(0x8b1)+'s']()[_0x493dcd(0x902)]()[_0x11f517(0x8b1)],_0x416e90='[^'+_0x180c2d[_0x45e51d(0x480)](_0x54c2ac,-0xb*0x2b1+-0x19*-0x163+0x5*-0x103)+_0x493dcd(0x8e2)+_0x54d2c3[_0x11f517(0x8b1)+'s']()[_0x493dcd(0x902)]()[_0x42e184(0x8b1)];_0x321574=_0x4a8d26+'\x0a\x0a'+_0x416e90,_0x16397a[_0x493dcd(0xb50)+'e'](_0x22d953[_0x493dcd(0x8b1)+'s']()[_0x45e51d(0x902)]()[_0x45e51d(0x8b1)]);}}catch(_0x3adde1){}_0xe5bbce='';if(_0x574ac2[_0x42e184(0x169)](_0x3e9328[_0x493dcd(0x3fa)+'h'],0xc5*0x1f+-0xdf*-0x6+-0x1d0f*0x1))_0xe5bbce=_0x3e9328[_0x493dcd(0x6fc)](0x1746*0x1+0x114d+0x1*-0x288d);if(_0x574ac2[_0x42e184(0x85d)](_0xe5bbce,_0x574ac2[_0x11f517(0x17a)])){if(_0x574ac2[_0x42e184(0x475)](_0x574ac2[_0x45e51d(0x8cf)],_0x574ac2[_0x21e185(0x497)])){const _0x16a40c=_0x574ac2[_0x45e51d(0x4bd)][_0x11f517(0x31e)]('|');let _0x2a5456=0x221f*0x1+0x1aff+-0x3d1e;while(!![]){switch(_0x16a40c[_0x2a5456++]){case'0':return;case'1':document[_0x493dcd(0x7b7)+_0x45e51d(0x71d)+_0x45e51d(0x2aa)](_0x574ac2[_0x11f517(0x7a4)])[_0x45e51d(0x8b1)]='';continue;case'2':const _0x599471={};_0x599471[_0x45e51d(0x504)]=_0x574ac2[_0x42e184(0x3a6)],_0x599471[_0x21e185(0x18e)+'nt']=_0xe1687,word_last[_0x493dcd(0x798)](_0x599471);continue;case'3':lock_chat=-0x6d4+-0x1*-0x1f8f+-0xd*0x1e7;continue;case'4':const _0x1f7b33={};_0x1f7b33[_0x493dcd(0x504)]=_0x574ac2[_0x42e184(0x6d4)],_0x1f7b33[_0x11f517(0x18e)+'nt']=chatTemp,word_last[_0x11f517(0x798)](_0x1f7b33);continue;}break;}}else return _0x1bfd52&&_0xf6bd50[_0x42e184(0xa66)]();}let _0xd846e7;try{if(_0x574ac2[_0x21e185(0x70a)](_0x574ac2[_0x493dcd(0x19e)],_0x574ac2[_0x21e185(0x19e)]))try{if(_0x574ac2[_0x45e51d(0x70a)](_0x574ac2[_0x45e51d(0xa04)],_0x574ac2[_0x493dcd(0xa04)]))_0xd846e7=JSON[_0x11f517(0x1f6)](_0x574ac2[_0x45e51d(0x86e)](_0x119c98,_0xe5bbce))[_0x574ac2[_0x42e184(0x92f)]],_0x119c98='';else{var _0x147845=new _0x3e5638(_0x3c2935[_0x21e185(0x3fa)+'h']),_0x319071=new _0xafc969(_0x147845);for(var _0x137694=0x808+-0x4bc+-0x34c,_0x154ac7=_0x6aef66[_0x45e51d(0x3fa)+'h'];_0x180c2d[_0x493dcd(0x68d)](_0x137694,_0x154ac7);_0x137694++){_0x319071[_0x137694]=_0x26c8d6[_0x42e184(0x6c3)+_0x21e185(0x354)](_0x137694);}return _0x147845;}}catch(_0x459d27){_0x574ac2[_0x11f517(0x70a)](_0x574ac2[_0x493dcd(0x943)],_0x574ac2[_0x21e185(0x173)])?(_0xb85f0=_0x1e3fdb[_0x42e184(0x1f6)](_0x3953a7[_0x45e51d(0x3a3)](_0x95a762,_0x1d0728))[_0x3953a7[_0x45e51d(0x3f4)]],_0x346f11=''):(_0xd846e7=JSON[_0x42e184(0x1f6)](_0xe5bbce)[_0x574ac2[_0x493dcd(0x92f)]],_0x119c98='');}else throw _0x4fa2fe;}catch(_0x4202be){_0x574ac2[_0x21e185(0x70a)](_0x574ac2[_0x21e185(0x204)],_0x574ac2[_0x45e51d(0x204)])?_0x119c98+=_0xe5bbce:_0x2c834e[_0x45e51d(0x7ba)](_0x3953a7[_0x42e184(0xb32)],_0x314584);}if(_0xd846e7&&_0x574ac2[_0x493dcd(0x86d)](_0xd846e7[_0x45e51d(0x3fa)+'h'],0x37*-0x5+-0xcfc+-0xe0f*-0x1)&&_0xd846e7[-0x1*0xfad+0x2ec*0x1+0x28d*0x5][_0x11f517(0x107)][_0x45e51d(0x18e)+'nt']){if(_0x574ac2[_0x45e51d(0x59a)](_0x574ac2[_0x21e185(0x418)],_0x574ac2[_0x493dcd(0x418)])){if(_0x3953a7[_0x45e51d(0xa16)](_0x3953a7[_0x45e51d(0x7e0)](_0x3953a7[_0x493dcd(0x506)](_0x3953a7[_0x21e185(0x3a3)](_0x3953a7[_0x45e51d(0x582)](_0x3953a7[_0x42e184(0xace)](_0x45bb81,_0x33664e[_0x21e185(0x435)][_0x410e16]),'\x0a'),_0x3953a7[_0x11f517(0x429)]),_0x44c720),_0x3953a7[_0x45e51d(0xa8d)])[_0x11f517(0x3fa)+'h'],0x1aff*-0x1+-0x28*0x68+0x1*0x311b))_0xd1bff5+=_0x3953a7[_0x42e184(0xace)](_0x1ba7db[_0x11f517(0x435)][_0x33f991],'\x0a');}else chatTemp+=_0xd846e7[0x72f+0x23d5*0x1+-0x2b04][_0x11f517(0x107)][_0x493dcd(0x18e)+'nt'];}chatTemp=chatTemp[_0x45e51d(0x28a)+_0x45e51d(0x157)]('\x0a\x0a','\x0a')[_0x42e184(0x28a)+_0x11f517(0x157)]('\x0a\x0a','\x0a'),document[_0x493dcd(0x7b7)+_0x45e51d(0x71d)+_0x21e185(0x2aa)](_0x574ac2[_0x42e184(0x405)])[_0x21e185(0x209)+_0x493dcd(0x6c4)]='',_0x574ac2[_0x42e184(0x264)](markdownToHtml,_0x574ac2[_0x42e184(0x96f)](beautify,chatTemp),document[_0x11f517(0x7b7)+_0x45e51d(0x71d)+_0x11f517(0x2aa)](_0x574ac2[_0x493dcd(0x405)])),document[_0x45e51d(0x960)+_0x493dcd(0x94a)+_0x21e185(0x6bd)](_0x574ac2[_0x11f517(0x984)])[_0x45e51d(0x209)+_0x42e184(0x6c4)]=_0x574ac2[_0x11f517(0x86e)](_0x574ac2[_0x21e185(0x86e)](_0x574ac2[_0x11f517(0x86e)](prev_chat,_0x574ac2[_0x45e51d(0x73c)]),document[_0x11f517(0x7b7)+_0x21e185(0x71d)+_0x42e184(0x2aa)](_0x574ac2[_0x45e51d(0x405)])[_0x42e184(0x209)+_0x493dcd(0x6c4)]),_0x574ac2[_0x45e51d(0x71f)]);}}),_0x2d08bf[_0xaf9f06(0x281)]()[_0xaf9f06(0x3c1)](_0x17b2d9);}});}})[_0x1d19c6(0x51b)](_0x164140=>{const _0x320dab=_0x3255f6,_0x1f195e=_0x1d19c6,_0x4fa076=_0x4c0e8b,_0x40c61e=_0x3255f6,_0xb322c5=_0x2b0d97,_0x1d8014={'BxbPY':function(_0x398556,_0x8826a0){const _0x4b5fff=_0x31dd;return _0x39a590[_0x4b5fff(0x371)](_0x398556,_0x8826a0);},'BqpGZ':function(_0x4adf62,_0x55ffe6){const _0x2f2e7c=_0x31dd;return _0x39a590[_0x2f2e7c(0x213)](_0x4adf62,_0x55ffe6);},'DhRnw':_0x39a590[_0x320dab(0x706)],'drBqK':function(_0x4dd5df,_0x21252f){const _0x4cfdfc=_0x320dab;return _0x39a590[_0x4cfdfc(0xa4f)](_0x4dd5df,_0x21252f);},'OJpLx':function(_0x3e14bb,_0x6198a9){const _0x36f97d=_0x320dab;return _0x39a590[_0x36f97d(0x61a)](_0x3e14bb,_0x6198a9);},'qzIvG':_0x39a590[_0x320dab(0x1ed)],'EvBRs':function(_0x3c0467,_0xcb3700){const _0x1ab6f0=_0x320dab;return _0x39a590[_0x1ab6f0(0x767)](_0x3c0467,_0xcb3700);},'ajNnF':_0x39a590[_0x1f195e(0x232)]};_0x39a590[_0x4fa076(0xa70)](_0x39a590[_0xb322c5(0xadd)],_0x39a590[_0x40c61e(0xadd)])?console[_0x1f195e(0x7ba)](_0x39a590[_0x4fa076(0xfe)],_0x164140):_0x5a5296[_0xb322c5(0x1f6)](_0x43da7[_0x320dab(0x2a7)+'es'][0x28d*0x3+0x97*0x3b+0x8f*-0x4c][_0x40c61e(0x43e)+'ge'][_0x1f195e(0x18e)+'nt'][_0x40c61e(0x28a)+_0x40c61e(0x157)]('\x0a',''))[_0x4fa076(0x9ad)+'ch'](_0x71a338=>{const _0x33cb36=_0x4fa076,_0x335e4f=_0x40c61e,_0x40e6a5=_0x4fa076,_0xd45d07=_0xb322c5,_0x266aee=_0x1f195e;if(_0x1d8014[_0x33cb36(0x439)](_0x1d8014[_0x335e4f(0x766)](_0x1430fc,_0x71a338)[_0x335e4f(0x3fa)+'h'],0x8*-0x403+0x212e+-0xd*0x15))_0x53efc4[_0x33cb36(0x7b7)+_0x266aee(0x71d)+_0x335e4f(0x2aa)](_0x1d8014[_0x335e4f(0x24e)])[_0x335e4f(0x209)+_0x266aee(0x6c4)]+=_0x1d8014[_0x335e4f(0x1f0)](_0x1d8014[_0x266aee(0x68e)](_0x1d8014[_0x266aee(0xa28)],_0x1d8014[_0x33cb36(0x81f)](_0x52249a,_0x71a338)),_0x1d8014[_0x335e4f(0x4c4)]);});});}function send_chat(_0x4bfbf6){const _0x4696a3=_0x4b9440,_0x526811=_0x4b9440,_0x4c9502=_0x4b9440,_0x4c51e1=_0x342a2e,_0x4a4970=_0x55d98c,_0x4827bc={'xPESA':function(_0x31b515,_0x2186ff){return _0x31b515(_0x2186ff);},'FsaQp':_0x4696a3(0x765)+':','UuUQS':function(_0x5b292a,_0xfcbe){return _0x5b292a===_0xfcbe;},'ttJFL':_0x4696a3(0x88b),'wlxUu':_0x4696a3(0x8fb),'qgvSZ':function(_0x537522,_0x334568,_0x47359f){return _0x537522(_0x334568,_0x47359f);},'WyoSO':function(_0x45bf4c,_0x3f11dd){return _0x45bf4c+_0x3f11dd;},'pecdv':_0x4696a3(0x650)+_0x526811(0x820)+_0x4c51e1(0x677)+')','bdaTw':_0x4a4970(0x8ee)+_0x4a4970(0x5f0)+_0x4c51e1(0x469)+_0x4696a3(0xada)+_0x4a4970(0x348)+_0x4c9502(0x982)+_0x4696a3(0x35f),'SyDtn':function(_0x57d977,_0x19d176){return _0x57d977(_0x19d176);},'Ocsqi':_0x4696a3(0x35c),'pbpUc':_0x4c9502(0x6b4),'UHWfL':_0x4696a3(0x6f8),'zJvne':function(_0x147a29){return _0x147a29();},'HTmXy':function(_0x5aaac3,_0x455b18){return _0x5aaac3!==_0x455b18;},'Iobnm':_0x526811(0x352),'PruDy':_0x4c51e1(0x9cc),'HkBfG':_0x4c51e1(0x3e1)+_0x526811(0x6f6),'jOnnE':function(_0x4b5bf3,_0x1ef2aa){return _0x4b5bf3>_0x1ef2aa;},'opdJf':function(_0x1cccc9,_0x11b123){return _0x1cccc9==_0x11b123;},'qtURv':_0x4a4970(0x382)+']','AdeEz':function(_0x1e1ed0,_0x1e647b){return _0x1e1ed0===_0x1e647b;},'EBhPf':_0x526811(0x619),'OsCQn':_0x526811(0x660)+_0x4696a3(0x4ac),'TUZCf':_0x4c9502(0x176),'opIip':_0x4c9502(0x3e1)+_0x4c51e1(0x48a)+'t','ZAyCb':_0x4696a3(0x7c1)+_0x4a4970(0x877),'kpVTY':_0x526811(0x758),'mAjvB':_0x4696a3(0x5f3),'HvUyC':_0x4696a3(0xb88),'fQWnO':_0x4a4970(0x2a7)+'es','MtqLj':_0x4a4970(0x225),'mbMAX':_0x4c51e1(0x936),'sMqlE':_0x526811(0xa82),'Mjftp':_0x4696a3(0x3ff),'vInNS':function(_0x5bf662,_0x34b55e){return _0x5bf662>_0x34b55e;},'diqug':_0x526811(0x242),'jYrjE':_0x526811(0x1b6)+'pt','lKpXx':_0x526811(0x90f)+_0x4c51e1(0x72d),'JCpbb':function(_0x3accf6,_0x23b7e5){return _0x3accf6+_0x23b7e5;},'UElAp':_0x4a4970(0x4f7)+_0x4696a3(0x5b7)+_0x526811(0x93e)+_0x4696a3(0x57f)+_0x4c51e1(0xaac),'EtlXm':_0x4a4970(0x17f)+'>','LDdHW':_0x4c51e1(0x4bf),'vsoQd':_0x526811(0x5e5),'iieFK':function(_0x12da88,_0x37cec0){return _0x12da88!==_0x37cec0;},'LSRkY':_0x4c9502(0x83f),'DDlai':function(_0x24dc48,_0x105234){return _0x24dc48==_0x105234;},'bvQxa':_0x4696a3(0xb72)+'l','anjow':_0x4a4970(0xa6c),'MtyyB':function(_0x13cdd7,_0x2cb4e2){return _0x13cdd7===_0x2cb4e2;},'hOXqh':_0x4c9502(0x491),'TSDFY':function(_0x1386d4,_0x178408){return _0x1386d4(_0x178408);},'gqifS':_0x4c51e1(0xa1a),'VVLVy':_0x4c51e1(0xa03),'ZBWVO':function(_0x4478e0,_0x748371){return _0x4478e0==_0x748371;},'oaVcd':function(_0x1e1636,_0x365435){return _0x1e1636>_0x365435;},'bCqub':function(_0x4a12e2,_0xaf9f1d,_0x4631a4){return _0x4a12e2(_0xaf9f1d,_0x4631a4);},'vfimD':_0x4a4970(0xb2f),'kVrWQ':_0x4c9502(0xa05),'CWJvC':_0x4c51e1(0xa67),'ASxSw':_0x4c9502(0x30d),'TVuYq':_0x4c9502(0x6e8),'bopeC':_0x4c51e1(0x75f),'jgNZW':_0x4c9502(0x9bb),'GAEQC':_0x4c51e1(0xb7c),'ALAPl':_0x4c9502(0x146),'GcDVF':_0x4696a3(0x9ca),'LhJoI':_0x4c9502(0x100),'fkERn':_0x4a4970(0xac7),'iaZhn':_0x4c9502(0x77f),'jHNnV':_0x4c51e1(0x9d0),'ANMeG':function(_0x2a8659,_0x4b581b){return _0x2a8659!=_0x4b581b;},'LpBhY':function(_0x8210ed,_0x3bca56){return _0x8210ed+_0x3bca56;},'LKTsr':_0x4c9502(0x3e1),'GXDbb':_0x4a4970(0x328)+_0x4a4970(0x564),'XozxA':_0x4696a3(0x511)+'\x0a','mfhXZ':_0x4c51e1(0xa97)+'m','BOAYl':_0x4696a3(0xb68)+_0x4a4970(0x74a)+_0x526811(0x834)+_0x4c51e1(0xa33)+_0x526811(0x78c)+_0x4a4970(0x188)+'何人','ejkKv':function(_0x1d806d,_0x42cb95){return _0x1d806d+_0x42cb95;},'ztXYk':_0x526811(0x585),'vmAKK':_0x4a4970(0x2a9)+_0x4696a3(0x3b3)+_0x4a4970(0xa0b),'drnWm':_0x4696a3(0x54a),'tQTCc':function(_0x241d3c,_0x1e7eb7){return _0x241d3c(_0x1e7eb7);},'zLQRM':function(_0x71d930,_0x359e09){return _0x71d930+_0x359e09;},'CgfgC':function(_0x591f9d,_0x2f95ad){return _0x591f9d+_0x2f95ad;},'NexGR':_0x4696a3(0x4f7)+_0x526811(0x5b7)+_0x4c9502(0x93e)+_0x4a4970(0x5d3)+_0x4a4970(0x116)+'\x22>','PYbcf':_0x4c9502(0xf6)+_0x4c9502(0x9e3)+_0x4c9502(0x9f1)+_0x526811(0x306)+_0x526811(0x8f9)+_0x526811(0x6e1)};if(_0x4827bc[_0x4a4970(0x7f6)](document[_0x526811(0x7b7)+_0x4c51e1(0x71d)+_0x526811(0x2aa)](_0x4827bc[_0x526811(0x6c8)])[_0x4c9502(0x258)][_0x4c51e1(0x66f)+'ay'],_0x4827bc[_0x4c9502(0x424)])){if(_0x4827bc[_0x526811(0x2ab)](_0x4827bc[_0x4696a3(0x276)],_0x4827bc[_0x4c9502(0x276)]))return _0x4827bc[_0x4c51e1(0x90a)](send_modalchat,_0x4bfbf6);else AqCsUo[_0x4c51e1(0x647)](_0x39ccc7,-0xd4d+0x14e6+-0x799);}let _0x5411ff=document[_0x4c51e1(0x7b7)+_0x4c51e1(0x71d)+_0x4c9502(0x2aa)](_0x4827bc[_0x4696a3(0xa88)])[_0x4c9502(0x8b1)];_0x4bfbf6&&(_0x4827bc[_0x4696a3(0x3d0)](_0x4827bc[_0x4c9502(0x6bc)],_0x4827bc[_0x4a4970(0x35a)])?(_0x5411ff=_0x4bfbf6[_0x4a4970(0xb47)+_0x4a4970(0xab2)+'t'],_0x4bfbf6[_0x526811(0x884)+'e']()):_0x1ff2c0+=_0x4fbc04[-0x1f*0xd9+-0x142b+0x2e72][_0x4696a3(0x107)][_0x526811(0x18e)+'nt']);if(_0x4827bc[_0x4c51e1(0x56e)](_0x5411ff[_0x4696a3(0x3fa)+'h'],0xb*0xdf+0x768*0x4+-0x2735)||_0x4827bc[_0x526811(0x4d9)](_0x5411ff[_0x4696a3(0x3fa)+'h'],-0x63d*-0x3+0x2375+-0x35a0))return;_0x4827bc[_0x4c51e1(0x4ea)](trimArray,word_last,-0x123e+-0x1312+-0x59c*-0x7);if(_0x5411ff[_0x4c51e1(0x325)+_0x4696a3(0x6f3)]('你能')||_0x5411ff[_0x526811(0x325)+_0x4c51e1(0x6f3)]('讲讲')||_0x5411ff[_0x4c9502(0x325)+_0x4c9502(0x6f3)]('扮演')||_0x5411ff[_0x4c51e1(0x325)+_0x4a4970(0x6f3)]('模仿')||_0x5411ff[_0x4a4970(0x325)+_0x4c51e1(0x6f3)](_0x4827bc[_0x4a4970(0x7da)])||_0x5411ff[_0x4c9502(0x325)+_0x4a4970(0x6f3)]('帮我')||_0x5411ff[_0x526811(0x325)+_0x526811(0x6f3)](_0x4827bc[_0x4c9502(0x2d4)])||_0x5411ff[_0x526811(0x325)+_0x4a4970(0x6f3)](_0x4827bc[_0x4a4970(0x668)])||_0x5411ff[_0x4c51e1(0x325)+_0x526811(0x6f3)]('请问')||_0x5411ff[_0x526811(0x325)+_0x4a4970(0x6f3)]('请给')||_0x5411ff[_0x526811(0x325)+_0x4696a3(0x6f3)]('请你')||_0x5411ff[_0x4c9502(0x325)+_0x4a4970(0x6f3)](_0x4827bc[_0x4696a3(0x7da)])||_0x5411ff[_0x526811(0x325)+_0x526811(0x6f3)](_0x4827bc[_0x526811(0x931)])||_0x5411ff[_0x526811(0x325)+_0x4c51e1(0x6f3)](_0x4827bc[_0x526811(0x2f4)])||_0x5411ff[_0x4c9502(0x325)+_0x526811(0x6f3)](_0x4827bc[_0x4696a3(0x625)])||_0x5411ff[_0x526811(0x325)+_0x526811(0x6f3)](_0x4827bc[_0x4696a3(0x873)])||_0x5411ff[_0x4a4970(0x325)+_0x526811(0x6f3)](_0x4827bc[_0x4c51e1(0x52f)])||_0x5411ff[_0x526811(0x325)+_0x4c9502(0x6f3)]('怎样')||_0x5411ff[_0x526811(0x325)+_0x4c9502(0x6f3)]('给我')||_0x5411ff[_0x4c9502(0x325)+_0x4696a3(0x6f3)]('如何')||_0x5411ff[_0x4c9502(0x325)+_0x4696a3(0x6f3)]('谁是')||_0x5411ff[_0x4696a3(0x325)+_0x4c51e1(0x6f3)]('查询')||_0x5411ff[_0x4696a3(0x325)+_0x4696a3(0x6f3)](_0x4827bc[_0x4696a3(0x329)])||_0x5411ff[_0x4c9502(0x325)+_0x4c51e1(0x6f3)](_0x4827bc[_0x4696a3(0x182)])||_0x5411ff[_0x4696a3(0x325)+_0x526811(0x6f3)](_0x4827bc[_0x4a4970(0x267)])||_0x5411ff[_0x526811(0x325)+_0x4a4970(0x6f3)](_0x4827bc[_0x4a4970(0x809)])||_0x5411ff[_0x4696a3(0x325)+_0x4c51e1(0x6f3)]('哪个')||_0x5411ff[_0x4c9502(0x325)+_0x4a4970(0x6f3)]('哪些')||_0x5411ff[_0x4c9502(0x325)+_0x4696a3(0x6f3)](_0x4827bc[_0x4c51e1(0x208)])||_0x5411ff[_0x4a4970(0x325)+_0x4c9502(0x6f3)](_0x4827bc[_0x4c51e1(0x6d8)])||_0x5411ff[_0x4c9502(0x325)+_0x4c51e1(0x6f3)]('啥是')||_0x5411ff[_0x4a4970(0x325)+_0x4696a3(0x6f3)]('为啥')||_0x5411ff[_0x4c9502(0x325)+_0x526811(0x6f3)]('怎么'))return _0x4827bc[_0x4696a3(0x63a)](send_webchat,_0x4bfbf6);if(_0x4827bc[_0x4c9502(0x52d)](lock_chat,-0x7*-0x50d+0x7*0x17f+-0x2dd4))return;lock_chat=0x1a55+-0x1ccd+0x279;const _0x1880f4=_0x4827bc[_0x4a4970(0x6ae)](_0x4827bc[_0x4c51e1(0x90d)](_0x4827bc[_0x526811(0x6ae)](document[_0x4c51e1(0x7b7)+_0x4a4970(0x71d)+_0x4c51e1(0x2aa)](_0x4827bc[_0x4c51e1(0x2ea)])[_0x4c9502(0x209)+_0x4c9502(0x6c4)][_0x4c51e1(0x28a)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x4c9502(0x28a)+'ce'](/<hr.*/gs,'')[_0x526811(0x28a)+'ce'](/<[^>]+>/g,'')[_0x4696a3(0x28a)+'ce'](/\n\n/g,'\x0a'),_0x4827bc[_0x4c9502(0x61d)]),search_queryquery),_0x4827bc[_0x4c51e1(0x2c2)]),_0x436dbc={};_0x436dbc[_0x4c51e1(0x504)]=_0x4827bc[_0x4a4970(0x4ce)],_0x436dbc[_0x526811(0x18e)+'nt']=_0x4827bc[_0x4c9502(0xb7d)];const _0xe1a881={};_0xe1a881[_0x526811(0x504)]=_0x4827bc[_0x4696a3(0x652)],_0xe1a881[_0x526811(0x18e)+'nt']=_0x1880f4;let _0x53528d=[_0x436dbc,_0xe1a881];_0x53528d=_0x53528d[_0x4c51e1(0xa6a)+'t'](word_last),_0x53528d=_0x53528d[_0x4696a3(0xa6a)+'t']([{'role':_0x4827bc[_0x4c51e1(0x98c)],'content':_0x4827bc[_0x526811(0x1d9)](_0x4827bc[_0x4696a3(0x2a6)](_0x4827bc[_0x4696a3(0xa8a)],_0x5411ff),_0x4827bc[_0x4c51e1(0x41c)])}]);const _0x3070aa={'method':_0x4827bc[_0x4c9502(0x6cd)],'headers':headers,'body':_0x4827bc[_0x4c51e1(0x7ce)](b64EncodeUnicode,JSON[_0x4696a3(0x244)+_0x4c51e1(0x783)]({'messages':_0x53528d[_0x4c51e1(0xa6a)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x1,'stream':!![]}))};_0x5411ff=_0x5411ff[_0x526811(0x28a)+_0x4c51e1(0x157)]('\x0a\x0a','\x0a')[_0x4696a3(0x28a)+_0x4696a3(0x157)]('\x0a\x0a','\x0a'),document[_0x4a4970(0x7b7)+_0x4a4970(0x71d)+_0x4696a3(0x2aa)](_0x4827bc[_0x526811(0xf0)])[_0x4c51e1(0x209)+_0x4c9502(0x6c4)]='',_0x4827bc[_0x4c51e1(0x3a5)](markdownToHtml,_0x4827bc[_0x4696a3(0x90a)](beautify,_0x5411ff),document[_0x4c9502(0x7b7)+_0x4c9502(0x71d)+_0x4a4970(0x2aa)](_0x4827bc[_0x4c51e1(0xf0)])),chatTemp='',text_offset=-(-0x31d*-0x4+-0x25be+0x7*0x39d),prev_chat=document[_0x4696a3(0x960)+_0x526811(0x94a)+_0x4a4970(0x6bd)](_0x4827bc[_0x4a4970(0x689)])[_0x4c51e1(0x209)+_0x4a4970(0x6c4)],prev_chat=_0x4827bc[_0x4a4970(0x657)](_0x4827bc[_0x4c51e1(0xab8)](_0x4827bc[_0x4c9502(0xab8)](prev_chat,_0x4827bc[_0x4c9502(0x3e4)]),document[_0x4696a3(0x7b7)+_0x526811(0x71d)+_0x4a4970(0x2aa)](_0x4827bc[_0x4c9502(0xf0)])[_0x4696a3(0x209)+_0x4c9502(0x6c4)]),_0x4827bc[_0x4a4970(0x3ec)]),_0x4827bc[_0x4c51e1(0x3a5)](fetch,_0x4827bc[_0x4a4970(0x519)],_0x3070aa)[_0x4c9502(0x3c1)](_0x488dad=>{const _0x5759da=_0x4c9502,_0x4cb610=_0x4c51e1,_0x2e609e=_0x4696a3,_0x3e1996=_0x4c51e1,_0x22e7a5=_0x526811,_0x1fb1dd={'PIbMq':function(_0x23c40f,_0x1f2782,_0x2e7f2f){const _0x1563e9=_0x31dd;return _0x4827bc[_0x1563e9(0x3a5)](_0x23c40f,_0x1f2782,_0x2e7f2f);},'GsLJo':function(_0x1a41fb,_0x3e7ccc){const _0x169ae2=_0x31dd;return _0x4827bc[_0x169ae2(0x1d9)](_0x1a41fb,_0x3e7ccc);},'lHLWS':_0x4827bc[_0x5759da(0x7fd)],'byOUv':_0x4827bc[_0x5759da(0x8f1)],'nYqWi':function(_0xf3e797,_0x152a6d){const _0x7a48cd=_0x5759da;return _0x4827bc[_0x7a48cd(0x63a)](_0xf3e797,_0x152a6d);},'Ewhqd':_0x4827bc[_0x4cb610(0x862)],'LugQq':_0x4827bc[_0x2e609e(0x542)],'gMYsA':_0x4827bc[_0x5759da(0x1eb)],'jeqaQ':function(_0x483117){const _0x5b44f3=_0x22e7a5;return _0x4827bc[_0x5b44f3(0x4b3)](_0x483117);},'BQkJi':function(_0x25e747,_0x471b41){const _0x575fec=_0x3e1996;return _0x4827bc[_0x575fec(0x3d0)](_0x25e747,_0x471b41);},'NZoOq':_0x4827bc[_0x22e7a5(0x13c)],'FOTqg':function(_0x5333a6,_0xd5f016){const _0xe6c42b=_0x4cb610;return _0x4827bc[_0xe6c42b(0x5ed)](_0x5333a6,_0xd5f016);},'uDVbX':_0x4827bc[_0x4cb610(0x2c5)],'rllwi':_0x4827bc[_0x4cb610(0x38e)],'ZOona':function(_0x113e2d,_0x2a7c49){const _0x407a52=_0x4cb610;return _0x4827bc[_0x407a52(0x9ac)](_0x113e2d,_0x2a7c49);},'GrRVU':function(_0x42762b,_0x504e78){const _0x5b84a6=_0x22e7a5;return _0x4827bc[_0x5b84a6(0x912)](_0x42762b,_0x504e78);},'BNZFB':_0x4827bc[_0x22e7a5(0x17d)],'rzOhK':function(_0x55529f,_0x1e4a97){const _0x6f58b=_0x4cb610;return _0x4827bc[_0x6f58b(0x19c)](_0x55529f,_0x1e4a97);},'VzvLX':_0x4827bc[_0x3e1996(0x298)],'UquYl':_0x4827bc[_0x22e7a5(0x373)],'aJDMR':_0x4827bc[_0x3e1996(0x98c)],'aoCNR':_0x4827bc[_0x2e609e(0xa88)],'NHtHj':_0x4827bc[_0x5759da(0x652)],'Zkzxw':_0x4827bc[_0x2e609e(0x84a)],'CmOzC':_0x4827bc[_0x4cb610(0x882)],'dytLb':function(_0x4cdf86,_0x3708ed){const _0x9c81c1=_0x5759da;return _0x4827bc[_0x9c81c1(0x3d0)](_0x4cdf86,_0x3708ed);},'yCDNn':_0x4827bc[_0x4cb610(0x430)],'KYEAw':_0x4827bc[_0x2e609e(0x1ee)],'TZZuX':_0x4827bc[_0x4cb610(0xb49)],'UCyhC':_0x4827bc[_0x2e609e(0x811)],'rxgbZ':_0x4827bc[_0x5759da(0x65e)],'soMdZ':_0x4827bc[_0x22e7a5(0x75e)],'SQsqa':function(_0x30d1a6,_0x47a2b5){const _0x291dd3=_0x4cb610;return _0x4827bc[_0x291dd3(0x249)](_0x30d1a6,_0x47a2b5);},'XeCMC':_0x4827bc[_0x2e609e(0xac5)],'DJcEI':_0x4827bc[_0x3e1996(0xf0)],'BtjUF':function(_0x43404c,_0x500f07,_0x2371f8){const _0xf4e625=_0x4cb610;return _0x4827bc[_0xf4e625(0x3a5)](_0x43404c,_0x500f07,_0x2371f8);},'KyVNH':function(_0x45b8d7,_0x48cc05){const _0x52d27e=_0x4cb610;return _0x4827bc[_0x52d27e(0x63a)](_0x45b8d7,_0x48cc05);},'aDFsX':_0x4827bc[_0x5759da(0x689)],'ZMZyw':function(_0x180888,_0xd48a5f){const _0x51b436=_0x5759da;return _0x4827bc[_0x51b436(0x90d)](_0x180888,_0xd48a5f);},'weySj':_0x4827bc[_0x3e1996(0x576)],'zsDCi':_0x4827bc[_0x3e1996(0x3ec)]};if(_0x4827bc[_0x4cb610(0x19c)](_0x4827bc[_0x5759da(0x25d)],_0x4827bc[_0x2e609e(0x1d3)]))_0x314d53+=_0x4ff6b4;else{const _0x1fc87b=_0x488dad[_0x22e7a5(0x975)][_0x22e7a5(0x5e3)+_0x3e1996(0x6b7)]();let _0x27af04='',_0x352bef='';_0x1fc87b[_0x5759da(0x281)]()[_0x2e609e(0x3c1)](function _0x2fb169({done:_0x5e1d96,value:_0x4747cb}){const _0x4e26d0=_0x4cb610,_0x471a15=_0x3e1996,_0x317dda=_0x4cb610,_0x34e99a=_0x3e1996,_0x24bb7e=_0x22e7a5,_0x5c7d77={};_0x5c7d77[_0x4e26d0(0x21f)]=_0x4827bc[_0x4e26d0(0x437)];const _0x55545f=_0x5c7d77;if(_0x4827bc[_0x471a15(0x5ed)](_0x4827bc[_0x317dda(0x3dc)],_0x4827bc[_0x471a15(0x3dc)])){if(_0x5e1d96)return;const _0x62a3a9=new TextDecoder(_0x4827bc[_0x34e99a(0x6d3)])[_0x471a15(0x310)+'e'](_0x4747cb);return _0x62a3a9[_0x4e26d0(0xa66)]()[_0x317dda(0x31e)]('\x0a')[_0x34e99a(0x9ad)+'ch'](function(_0x4df94e){const _0x176174=_0x4e26d0,_0x26c3b2=_0x317dda,_0x1c79da=_0x34e99a,_0x1a0c15=_0x471a15,_0x409954=_0x471a15,_0x4379ee={'qkrVo':function(_0x24ae22,_0x3a998e,_0x6907a3){const _0x378115=_0x31dd;return _0x1fb1dd[_0x378115(0x5f6)](_0x24ae22,_0x3a998e,_0x6907a3);},'uQPvG':function(_0x5f29fa,_0x44147a){const _0x2b914f=_0x31dd;return _0x1fb1dd[_0x2b914f(0xb1c)](_0x5f29fa,_0x44147a);},'AGWGg':_0x1fb1dd[_0x176174(0x8f4)],'LABIt':_0x1fb1dd[_0x176174(0x2e3)],'uITOc':function(_0x18cd7d,_0x2f4fc2){const _0x5d1462=_0x26c3b2;return _0x1fb1dd[_0x5d1462(0x589)](_0x18cd7d,_0x2f4fc2);},'mRJMz':_0x1fb1dd[_0x1c79da(0xa3d)],'ehIRJ':function(_0x2f5090,_0x2a0ab9){const _0x5e75fb=_0x176174;return _0x1fb1dd[_0x5e75fb(0xb1c)](_0x2f5090,_0x2a0ab9);},'KqKxe':_0x1fb1dd[_0x176174(0xa37)],'JqrTr':_0x1fb1dd[_0x176174(0x466)],'jogov':function(_0x27aca6){const _0x2cbcf0=_0x1c79da;return _0x1fb1dd[_0x2cbcf0(0x6e3)](_0x27aca6);},'hfWCJ':function(_0x92aa64,_0x2e51e5){const _0x543758=_0x1a0c15;return _0x1fb1dd[_0x543758(0x589)](_0x92aa64,_0x2e51e5);},'vsofp':function(_0x2ecb9c,_0x4d2468){const _0x36ed93=_0x1c79da;return _0x1fb1dd[_0x36ed93(0x589)](_0x2ecb9c,_0x4d2468);}};if(_0x1fb1dd[_0x409954(0xb35)](_0x1fb1dd[_0x26c3b2(0x3a2)],_0x1fb1dd[_0x1c79da(0x3a2)]))_0x4379ee[_0x1a0c15(0x5e0)](_0x53e10d,_0x245b68,_0x4379ee[_0x1a0c15(0x688)](_0x25694f,-0x397+0x293*-0x7+0xb*0x1f7));else{try{if(_0x1fb1dd[_0x26c3b2(0x4f9)](_0x1fb1dd[_0x176174(0x35b)],_0x1fb1dd[_0x26c3b2(0x35b)]))document[_0x1a0c15(0x7b7)+_0x1a0c15(0x71d)+_0x1c79da(0x2aa)](_0x1fb1dd[_0x409954(0x6b9)])[_0x26c3b2(0xb7f)+_0x1c79da(0x969)]=document[_0x1c79da(0x7b7)+_0x1c79da(0x71d)+_0x1c79da(0x2aa)](_0x1fb1dd[_0x409954(0x6b9)])[_0x1a0c15(0xb7f)+_0x409954(0x577)+'ht'];else return _0x231cd6[_0x409954(0x5da)](new _0x573a86(_0x3d6131));}catch(_0x379c97){}_0x27af04='';if(_0x1fb1dd[_0x409954(0x256)](_0x4df94e[_0x409954(0x3fa)+'h'],0x19af+0x1*0xd0a+-0x26b3))_0x27af04=_0x4df94e[_0x26c3b2(0x6fc)](-0x25*0x23+0x1*0xdb0+-0x1*0x89b);if(_0x1fb1dd[_0x1a0c15(0x5bb)](_0x27af04,_0x1fb1dd[_0x409954(0x91f)])){if(_0x1fb1dd[_0x1a0c15(0x518)](_0x1fb1dd[_0x1a0c15(0x67a)],_0x1fb1dd[_0x176174(0x67a)])){const _0x491574=_0x1fb1dd[_0x176174(0x574)][_0x176174(0x31e)]('|');let _0x45c2e3=-0x153f+0x1*-0xeb9+0x23f8;while(!![]){switch(_0x491574[_0x45c2e3++]){case'0':const _0x522d1e={};_0x522d1e[_0x1c79da(0x504)]=_0x1fb1dd[_0x409954(0x87b)],_0x522d1e[_0x26c3b2(0x18e)+'nt']=_0x5411ff,word_last[_0x409954(0x798)](_0x522d1e);continue;case'1':lock_chat=-0xde2*-0x1+-0xd*-0x86+0x1*-0x14b0;continue;case'2':return;case'3':document[_0x409954(0x7b7)+_0x1a0c15(0x71d)+_0x1a0c15(0x2aa)](_0x1fb1dd[_0x1a0c15(0x26a)])[_0x26c3b2(0x8b1)]='';continue;case'4':const _0x3ec57c={};_0x3ec57c[_0x176174(0x504)]=_0x1fb1dd[_0x1a0c15(0x2f6)],_0x3ec57c[_0x176174(0x18e)+'nt']=chatTemp,word_last[_0x1a0c15(0x798)](_0x3ec57c);continue;}break;}}else GCMTsY[_0x26c3b2(0x5e0)](_0x28cd25,this,function(){const _0x769b80=_0x176174,_0x43ea60=_0x26c3b2,_0x503d08=_0x176174,_0xaa9919=_0x1c79da,_0x5a0942=_0x1a0c15,_0x1f9a49=new _0x4726c5(GCMTsY[_0x769b80(0x9a2)]),_0x25d4b7=new _0x50e033(GCMTsY[_0x769b80(0x95d)],'i'),_0x19556b=GCMTsY[_0x503d08(0x145)](_0x621fef,GCMTsY[_0xaa9919(0x94f)]);!_0x1f9a49[_0x43ea60(0x377)](GCMTsY[_0x769b80(0x6ef)](_0x19556b,GCMTsY[_0x5a0942(0x1da)]))||!_0x25d4b7[_0x769b80(0x377)](GCMTsY[_0x43ea60(0x6ef)](_0x19556b,GCMTsY[_0x769b80(0x2b6)]))?GCMTsY[_0x769b80(0x145)](_0x19556b,'0'):GCMTsY[_0xaa9919(0x732)](_0x551dd3);})();}let _0xd1a881;try{if(_0x1fb1dd[_0x176174(0x518)](_0x1fb1dd[_0x176174(0x433)],_0x1fb1dd[_0x1c79da(0xb60)]))_0x17eff1[_0x26c3b2(0x7ba)](_0x55545f[_0x176174(0x21f)],_0xa08267);else try{_0x1fb1dd[_0x1a0c15(0x30f)](_0x1fb1dd[_0x26c3b2(0xa84)],_0x1fb1dd[_0x26c3b2(0xa84)])?_0xf84543+=_0x2c7009:(_0xd1a881=JSON[_0x1a0c15(0x1f6)](_0x1fb1dd[_0x26c3b2(0xb1c)](_0x352bef,_0x27af04))[_0x1fb1dd[_0x1a0c15(0x538)]],_0x352bef='');}catch(_0x2a89bd){_0x1fb1dd[_0x26c3b2(0x30f)](_0x1fb1dd[_0x176174(0x113)],_0x1fb1dd[_0x26c3b2(0x1f9)])?(_0xd1a881=JSON[_0x1c79da(0x1f6)](_0x27af04)[_0x1fb1dd[_0x1a0c15(0x538)]],_0x352bef=''):_0x31c2cf[_0x409954(0x7ba)](_0x55545f[_0x26c3b2(0x21f)],_0x235786);}}catch(_0x4395b0){if(_0x1fb1dd[_0x409954(0x518)](_0x1fb1dd[_0x409954(0x211)],_0x1fb1dd[_0x409954(0x7d0)])){const _0x2cf31b=_0x3c7b7e[_0x176174(0x91a)](_0x4d96b1,arguments);return _0x9dfea8=null,_0x2cf31b;}else _0x352bef+=_0x27af04;}if(_0xd1a881&&_0x1fb1dd[_0x176174(0xa51)](_0xd1a881[_0x1c79da(0x3fa)+'h'],-0xeb3+0x2459+-0x11*0x146)&&_0xd1a881[-0x2b*-0x2b+-0x1dfd+-0xb62*-0x2][_0x1a0c15(0x107)][_0x1a0c15(0x18e)+'nt']){if(_0x1fb1dd[_0x26c3b2(0x518)](_0x1fb1dd[_0x176174(0x569)],_0x1fb1dd[_0x1c79da(0x569)]))chatTemp+=_0xd1a881[0xec9*0x1+-0xf9e+-0x3*-0x47][_0x1a0c15(0x107)][_0x409954(0x18e)+'nt'];else return _0x4379ee[_0x176174(0x8f7)](_0x59e408,_0x4379ee[_0x1c79da(0xaf2)](_0x35d361,_0x562310));}chatTemp=chatTemp[_0x1a0c15(0x28a)+_0x1a0c15(0x157)]('\x0a\x0a','\x0a')[_0x1a0c15(0x28a)+_0x176174(0x157)]('\x0a\x0a','\x0a'),document[_0x176174(0x7b7)+_0x176174(0x71d)+_0x26c3b2(0x2aa)](_0x1fb1dd[_0x409954(0x245)])[_0x1a0c15(0x209)+_0x26c3b2(0x6c4)]='',_0x1fb1dd[_0x26c3b2(0x341)](markdownToHtml,_0x1fb1dd[_0x26c3b2(0x5a3)](beautify,chatTemp),document[_0x1a0c15(0x7b7)+_0x26c3b2(0x71d)+_0x1c79da(0x2aa)](_0x1fb1dd[_0x1a0c15(0x245)])),document[_0x409954(0x960)+_0x409954(0x94a)+_0x26c3b2(0x6bd)](_0x1fb1dd[_0x176174(0x20d)])[_0x176174(0x209)+_0x1a0c15(0x6c4)]=_0x1fb1dd[_0x26c3b2(0xb64)](_0x1fb1dd[_0x1c79da(0xb1c)](_0x1fb1dd[_0x176174(0xb64)](prev_chat,_0x1fb1dd[_0x1a0c15(0xae4)]),document[_0x1c79da(0x7b7)+_0x409954(0x71d)+_0x176174(0x2aa)](_0x1fb1dd[_0x409954(0x245)])[_0x1a0c15(0x209)+_0x409954(0x6c4)]),_0x1fb1dd[_0x26c3b2(0x641)]);}}),_0x1fc87b[_0x34e99a(0x281)]()[_0x4e26d0(0x3c1)](_0x2fb169);}else _0x5ec266+=_0xddda06[-0xb7*0x13+-0x2622+0x9*0x5bf][_0x4e26d0(0x107)][_0x471a15(0x18e)+'nt'];});}})[_0x4696a3(0x51b)](_0x1bc9a0=>{const _0x1eb7fe=_0x4c51e1,_0x5b9dba=_0x4c9502,_0x530909=_0x4c51e1,_0x1f221c=_0x4c9502,_0x399754=_0x4c9502;if(_0x4827bc[_0x1eb7fe(0x777)](_0x4827bc[_0x5b9dba(0x7b2)],_0x4827bc[_0x5b9dba(0x7b2)])){if(_0x5b9da9){const _0x5cf266=_0x5b720c[_0x530909(0x91a)](_0x4fd91a,arguments);return _0x333b04=null,_0x5cf266;}}else console[_0x399754(0x7ba)](_0x4827bc[_0x5b9dba(0x437)],_0x1bc9a0);});}function replaceUrlWithFootnote(_0x3c3803){const _0x114f94=_0x4e39c5,_0x1837ea=_0x183957,_0x235948=_0x4e39c5,_0x13d779=_0x342a2e,_0x53906f=_0x183957,_0x2128de={'taWJJ':_0x114f94(0x2a7)+'es','PFJyr':_0x1837ea(0x7fc)+_0x114f94(0x5f2),'iBkTl':function(_0x19c3eb){return _0x19c3eb();},'Vtyvn':_0x114f94(0x90f)+_0x13d779(0x549)+_0x235948(0x19a),'bzjJe':_0x235948(0x90f)+_0x1837ea(0x3d8),'TTvtz':function(_0x3c6713,_0x135654){return _0x3c6713===_0x135654;},'XCkCJ':_0x235948(0x546),'cdiOw':function(_0x297fc3,_0x4a61d3){return _0x297fc3!==_0x4a61d3;},'qQqCm':_0x114f94(0x616),'HJskC':_0x13d779(0x5c2),'RzSKp':function(_0x2b22bc,_0x43ac4f){return _0x2b22bc+_0x43ac4f;},'lCUIy':function(_0x51cfda,_0x1b4a8a){return _0x51cfda-_0x1b4a8a;},'DPnVf':function(_0x551aaf,_0x233bf0){return _0x551aaf<=_0x233bf0;},'YIDpp':_0x1837ea(0x22e)+_0x114f94(0x987),'XbxVN':_0x53906f(0x3e1)+_0x114f94(0x48a)+'t','WsLhm':_0x13d779(0x7c1)+_0x114f94(0x877),'qZbdj':_0x53906f(0x176),'kgngl':function(_0x44c918,_0x4e3ba2){return _0x44c918>_0x4e3ba2;},'getRX':_0x1837ea(0x8fe),'eqOxI':_0x13d779(0x41e),'nvcMf':function(_0x3fb001,_0x5c74b7){return _0x3fb001-_0x5c74b7;}},_0x328b71=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0x3d575a=new Set(),_0x320bd3=(_0x442324,_0x4888df)=>{const _0x7f23bc=_0x114f94,_0x45b9b1=_0x114f94,_0x292206=_0x53906f,_0x5eb957=_0x1837ea,_0x27466a=_0x53906f,_0x1b423a={'noUcX':_0x2128de[_0x7f23bc(0x999)],'gxpIV':_0x2128de[_0x7f23bc(0x36c)],'xvVMt':function(_0x168c34){const _0x1ab37a=_0x45b9b1;return _0x2128de[_0x1ab37a(0x7b1)](_0x168c34);},'DlZXs':_0x2128de[_0x292206(0x558)],'tCvGX':_0x2128de[_0x45b9b1(0x8c5)]};if(_0x2128de[_0x5eb957(0x45e)](_0x2128de[_0x7f23bc(0x3eb)],_0x2128de[_0x5eb957(0x3eb)])){if(_0x3d575a[_0x5eb957(0x420)](_0x4888df)){if(_0x2128de[_0x45b9b1(0x770)](_0x2128de[_0x7f23bc(0x165)],_0x2128de[_0x7f23bc(0x89c)]))return _0x442324;else _0x489068=_0x3c569d[_0x5eb957(0x1f6)](_0x33d662)[_0x1b423a[_0x292206(0xb08)]],_0x40603f='';}const _0x5a8865=_0x4888df[_0x27466a(0x31e)](/[;,;、,]/),_0x452a50=_0x5a8865[_0x27466a(0x790)](_0x3d2c13=>'['+_0x3d2c13+']')[_0x292206(0x1c6)]('\x20'),_0xc97878=_0x5a8865[_0x292206(0x790)](_0x3ff95f=>'['+_0x3ff95f+']')[_0x27466a(0x1c6)]('\x0a');_0x5a8865[_0x27466a(0x9ad)+'ch'](_0x1450f6=>_0x3d575a[_0x7f23bc(0xb6f)](_0x1450f6)),res='\x20';for(var _0x178e31=_0x2128de[_0x45b9b1(0xf5)](_0x2128de[_0x45b9b1(0x73d)](_0x3d575a[_0x27466a(0x591)],_0x5a8865[_0x45b9b1(0x3fa)+'h']),-0x1cbf+0x20b3+0x151*-0x3);_0x2128de[_0x292206(0x729)](_0x178e31,_0x3d575a[_0x5eb957(0x591)]);++_0x178e31)res+='[^'+_0x178e31+']\x20';return res;}else{const _0x43c0f9=_0x1b423a[_0x292206(0x1b1)][_0x45b9b1(0x31e)]('|');let _0x9e8431=-0x1*-0xa3d+-0x1*-0x1499+-0x1ed6;while(!![]){switch(_0x43c0f9[_0x9e8431++]){case'0':return;case'1':_0x1b423a[_0x5eb957(0x72f)](_0x38e71a);continue;case'2':_0x40e003[_0x27466a(0x960)+_0x5eb957(0x94a)+_0x7f23bc(0x6bd)](_0x1b423a[_0x7f23bc(0x64e)])[_0x27466a(0x258)][_0x292206(0x66f)+'ay']='';continue;case'3':_0x3774cf=0x1*0x1466+-0x1*0x1613+0x1ad;continue;case'4':_0xca104a[_0x292206(0x960)+_0x292206(0x94a)+_0x45b9b1(0x6bd)](_0x1b423a[_0x5eb957(0x110)])[_0x292206(0x258)][_0x292206(0x66f)+'ay']='';continue;}break;}}};let _0x55b043=0xa13+0xf5*-0xe+0x354,_0x1ec4b3=_0x3c3803[_0x13d779(0x28a)+'ce'](_0x328b71,_0x320bd3);while(_0x2128de[_0x1837ea(0xa10)](_0x3d575a[_0x13d779(0x591)],0x4e1+0x3*-0x9f0+0x18ef)){if(_0x2128de[_0x53906f(0x770)](_0x2128de[_0x114f94(0x3ed)],_0x2128de[_0x1837ea(0x4f6)])){const _0x418dfd='['+_0x55b043++ +_0x1837ea(0x8e2)+_0x3d575a[_0x235948(0x8b1)+'s']()[_0x1837ea(0x902)]()[_0x13d779(0x8b1)],_0x25a4ef='[^'+_0x2128de[_0x235948(0x23c)](_0x55b043,0x1739+-0x9*-0x185+-0x24e5)+_0x114f94(0x8e2)+_0x3d575a[_0x53906f(0x8b1)+'s']()[_0x114f94(0x902)]()[_0x53906f(0x8b1)];_0x1ec4b3=_0x1ec4b3+'\x0a\x0a'+_0x25a4ef,_0x3d575a[_0x235948(0xb50)+'e'](_0x3d575a[_0x53906f(0x8b1)+'s']()[_0x114f94(0x902)]()[_0x53906f(0x8b1)]);}else{const _0x56f24b=_0x2128de[_0x1837ea(0x7a3)][_0x1837ea(0x31e)]('|');let _0x2677b5=0x1ccd+0x1c21+-0x3*0x12fa;while(!![]){switch(_0x56f24b[_0x2677b5++]){case'0':_0x1e47be[_0x53906f(0x7b7)+_0x114f94(0x71d)+_0x1837ea(0x2aa)](_0x2128de[_0x114f94(0x461)])[_0x53906f(0x8b1)]='';continue;case'1':const _0x5142cb={};_0x5142cb[_0x114f94(0x504)]=_0x2128de[_0x235948(0x3da)],_0x5142cb[_0x235948(0x18e)+'nt']=_0x11ab16,_0x5f1508[_0x53906f(0x798)](_0x5142cb);continue;case'2':return;case'3':_0x636e8d=-0x9e7+-0x29d*0x1+0xc84;continue;case'4':const _0x3a231e={};_0x3a231e[_0x53906f(0x504)]=_0x2128de[_0x53906f(0x36d)],_0x3a231e[_0x114f94(0x18e)+'nt']=_0x4d0f3d,_0x1abcb0[_0x13d779(0x798)](_0x3a231e);continue;}break;}}}return _0x1ec4b3;}function beautify(_0xab5e13){const _0x172fa0=_0x342a2e,_0x738f99=_0x183957,_0x2b20bf=_0x183957,_0x6170eb=_0x183957,_0x2cf06b=_0x4b9440,_0x4a0703={'ocwxU':_0x172fa0(0x388),'cPlIo':function(_0x4410ae,_0x547b37){return _0x4410ae(_0x547b37);},'lvtFJ':function(_0x57842e,_0x48a8d9){return _0x57842e>=_0x48a8d9;},'hLRgM':function(_0x201468,_0x19e31a){return _0x201468!==_0x19e31a;},'WHqqn':_0x172fa0(0x485),'IlSNx':_0x2b20bf(0x28d)+_0x6170eb(0x3ad)+_0x2cf06b(0x167)+_0x2b20bf(0x853)+_0x2cf06b(0x162)+_0x172fa0(0x380)+_0x738f99(0x528)+_0x2cf06b(0xacd)+_0x2b20bf(0x974)+_0x2b20bf(0x159)+_0x2b20bf(0x709)+_0x2cf06b(0x2c7)+_0x2b20bf(0xa1b),'tYBhp':function(_0x4e2bd2,_0x1771e4){return _0x4e2bd2+_0x1771e4;},'kkBzz':_0x738f99(0x898),'CIult':function(_0xb01052,_0x470266){return _0xb01052(_0x470266);},'LcUZg':_0x2b20bf(0x135)+_0x2b20bf(0x1b8)+'rl','Mldaq':function(_0x4ccd9b,_0x3017b7){return _0x4ccd9b+_0x3017b7;},'yyOji':_0x2b20bf(0xaa3)+'l','lDtpW':function(_0x9ae88c,_0x38a748){return _0x9ae88c(_0x38a748);},'jZHbx':function(_0x59cad1,_0x28ce86){return _0x59cad1+_0x28ce86;},'TxLiC':_0x2cf06b(0x40d)+_0x2cf06b(0x80c)+_0x2b20bf(0x575),'NNzKM':function(_0x304ddc,_0xde6f0a){return _0x304ddc(_0xde6f0a);},'hXdOW':function(_0x2a23b0,_0x48c8db){return _0x2a23b0+_0x48c8db;},'AXpqM':_0x172fa0(0x696),'EkhRh':function(_0x259421,_0x59fc07){return _0x259421+_0x59fc07;},'IwFSg':_0x6170eb(0x793),'EyYkM':_0x172fa0(0xb63)+'rl','YtmTK':function(_0x5c54ad,_0x417e08){return _0x5c54ad+_0x417e08;},'pODie':function(_0x42ca22,_0x3c9228){return _0x42ca22(_0x3c9228);},'dzwZG':function(_0x5eaf33,_0x144737){return _0x5eaf33+_0x144737;},'FeQvY':_0x2cf06b(0xb8f)+':','MCpYE':function(_0x368f5b,_0x4ed625){return _0x368f5b(_0x4ed625);},'poAjP':function(_0xfa23a8,_0x55677e){return _0xfa23a8(_0x55677e);},'kCmZy':_0x738f99(0x2fb)+_0x6170eb(0x6ba)+_0x738f99(0x5c6),'vEIqw':function(_0x56dee1,_0x5226c4){return _0x56dee1(_0x5226c4);},'SgaeD':function(_0x3584cb,_0x35809a){return _0x3584cb+_0x35809a;},'uNDEV':function(_0x57d032,_0x1a31fd){return _0x57d032(_0x1a31fd);},'mQQVf':_0x2b20bf(0x8bf),'yOojj':function(_0x4297de,_0x1c510b){return _0x4297de+_0x1c510b;},'KcIgR':function(_0x4e4d3b,_0x478cfa){return _0x4e4d3b(_0x478cfa);},'MHvMx':function(_0x4d6faa,_0x518099){return _0x4d6faa+_0x518099;},'VVnnV':_0x2cf06b(0x1d5)+'l','SwTMt':function(_0x41aa25,_0x589063){return _0x41aa25+_0x589063;},'ATrxk':function(_0x54da80,_0xe748c){return _0x54da80(_0xe748c);},'caXvc':_0x6170eb(0x2f3)+'rl','FGUTZ':function(_0x15c06b,_0x117dde){return _0x15c06b(_0x117dde);},'kNXmu':function(_0x5485a5,_0x17872b){return _0x5485a5+_0x17872b;},'Zaxgo':_0x2b20bf(0x725)+'rl','KIzYO':function(_0xcec89c,_0x294397){return _0xcec89c(_0x294397);},'hGqxh':function(_0x476cc6,_0x597a7e){return _0x476cc6+_0x597a7e;},'qZOCa':function(_0x4db49c,_0x58dd6f){return _0x4db49c+_0x58dd6f;},'lXsNb':_0x2b20bf(0xb8f)+_0x738f99(0xf6)+_0x2cf06b(0x5b8)+'l','VaPvl':function(_0x40bb9c,_0xd61e8f){return _0x40bb9c(_0xd61e8f);},'hLyKz':function(_0x315354,_0x5ddff2){return _0x315354(_0x5ddff2);},'BOBYx':function(_0x1ad943,_0x37bdfa){return _0x1ad943+_0x37bdfa;},'DTFWY':_0x738f99(0xb8f)+_0x172fa0(0x9ce),'BCuFT':function(_0x53e759,_0x4fbb51){return _0x53e759(_0x4fbb51);},'AwmMi':function(_0x2f6138,_0x442638){return _0x2f6138+_0x442638;},'felMF':function(_0x272bf8,_0x27c539){return _0x272bf8(_0x27c539);},'MTABz':_0x2b20bf(0x842)+'l','dhPgx':function(_0x3a73af,_0x3168c3){return _0x3a73af+_0x3168c3;},'wGmbs':function(_0x282280,_0x2a29fc){return _0x282280+_0x2a29fc;},'sbTbG':_0x2cf06b(0x8c8)+_0x738f99(0x6ba)+_0x6170eb(0x5c6),'bJrat':function(_0x115980,_0x5047e3){return _0x115980(_0x5047e3);},'LYDvr':function(_0x156b8f,_0x3e42fd){return _0x156b8f+_0x3e42fd;},'kmWtv':_0x6170eb(0xb8f),'jQidc':function(_0xa9b94a,_0x3777c6){return _0xa9b94a(_0x3777c6);},'gBddZ':function(_0x3a74d5,_0x3cf510){return _0x3a74d5+_0x3cf510;},'tAwzA':function(_0x1a22b9,_0x41b7eb){return _0x1a22b9+_0x41b7eb;},'FFuAJ':_0x2cf06b(0x4d3)+_0x738f99(0x80c)+_0x6170eb(0x575),'gMkvr':function(_0x45275d,_0x1c4042){return _0x45275d(_0x1c4042);},'HjhBD':function(_0x302ac4,_0x55d0b8){return _0x302ac4+_0x55d0b8;},'HtRhO':_0x6170eb(0x55e)+_0x6170eb(0x6ba)+_0x2b20bf(0x5c6),'THYKV':function(_0x26adc5,_0x27f73a){return _0x26adc5(_0x27f73a);},'ZwVUN':function(_0x5d08aa,_0x17e10c){return _0x5d08aa+_0x17e10c;},'wAxjS':function(_0x25af73,_0x250c16){return _0x25af73+_0x250c16;},'PqMaP':function(_0x58eae4,_0x5a7309){return _0x58eae4+_0x5a7309;},'VDztF':_0x172fa0(0xb8f)+_0x6170eb(0x9ea),'ZURUX':function(_0x4bba2c,_0x51acc1){return _0x4bba2c+_0x51acc1;},'xIkMq':function(_0x3b6e02,_0x102382){return _0x3b6e02(_0x102382);},'MNIqX':_0x738f99(0xb8f)+_0x6170eb(0x670)+_0x738f99(0x1b8)+'rl','ORLuI':function(_0x1f0c38,_0x17be44){return _0x1f0c38(_0x17be44);},'FGXAQ':function(_0x3b3c7c,_0x3bd5ee){return _0x3b3c7c+_0x3bd5ee;},'FLwSJ':_0x2cf06b(0x927)+_0x2cf06b(0x80c)+_0x2cf06b(0x575),'wkXIs':function(_0x59f600,_0x466531){return _0x59f600+_0x466531;},'edrEQ':function(_0x351cd6,_0x4f531f){return _0x351cd6(_0x4f531f);},'nTFgj':function(_0x529eb6,_0x135157){return _0x529eb6+_0x135157;},'dLgak':function(_0x3d1a02,_0xdd64c){return _0x3d1a02(_0xdd64c);},'xSvYz':function(_0x413f59,_0x3afb04){return _0x413f59(_0x3afb04);},'Idykk':_0x6170eb(0x4a7),'DYngY':function(_0x5bc3ed,_0x2d012c){return _0x5bc3ed+_0x2d012c;},'ljXiP':_0x6170eb(0xf6)+_0x172fa0(0x5b8)+'l','PnRhk':function(_0x5e358f,_0x5ed506){return _0x5e358f(_0x5ed506);},'FgQvt':_0x172fa0(0xf6)+_0x172fa0(0x9ce),'OpLSd':function(_0x20c500,_0x3751a5){return _0x20c500(_0x3751a5);},'uGkyb':function(_0x2393d3,_0x9027b5){return _0x2393d3+_0x9027b5;},'QnAtw':_0x2b20bf(0x9ce),'dtwyT':function(_0x5f1f5f,_0x5a61a0){return _0x5f1f5f(_0x5a61a0);}};new_text=_0xab5e13[_0x2b20bf(0x28a)+_0x172fa0(0x157)]('','(')[_0x2b20bf(0x28a)+_0x738f99(0x157)]('',')')[_0x172fa0(0x28a)+_0x2cf06b(0x157)](':\x20',':')[_0x2cf06b(0x28a)+_0x2b20bf(0x157)]('',':')[_0x6170eb(0x28a)+_0x738f99(0x157)](',\x20',',')[_0x738f99(0x28a)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x4b9492=prompt[_0x738f99(0x3fc)+_0x6170eb(0x280)][_0x2cf06b(0x3fa)+'h'];_0x4a0703[_0x6170eb(0x988)](_0x4b9492,0xc51+0x1e8e*-0x1+0x123d);--_0x4b9492){if(_0x4a0703[_0x172fa0(0x512)](_0x4a0703[_0x738f99(0x2b1)],_0x4a0703[_0x2cf06b(0x2b1)]))_0x509a7a=_0x4a0703[_0x738f99(0xb4e)];else{const _0x33c746=_0x4a0703[_0x2cf06b(0x2f7)][_0x2cf06b(0x31e)]('|');let _0x5d7a4d=0xecf*-0x1+0x1*0x1cdd+-0xe0e;while(!![]){switch(_0x33c746[_0x5d7a4d++]){case'0':new_text=new_text[_0x172fa0(0x28a)+_0x2cf06b(0x157)](_0x4a0703[_0x2b20bf(0xb12)](_0x4a0703[_0x2cf06b(0x552)],_0x4a0703[_0x2b20bf(0x138)](String,_0x4b9492)),_0x4a0703[_0x738f99(0xb12)](_0x4a0703[_0x2cf06b(0x41d)],_0x4a0703[_0x2b20bf(0xa90)](String,_0x4b9492)));continue;case'1':new_text=new_text[_0x6170eb(0x28a)+_0x2cf06b(0x157)](_0x4a0703[_0x738f99(0x6e7)](_0x4a0703[_0x2b20bf(0x446)],_0x4a0703[_0x6170eb(0x4ff)](String,_0x4b9492)),_0x4a0703[_0x6170eb(0x6e7)](_0x4a0703[_0x2cf06b(0x41d)],_0x4a0703[_0x738f99(0x138)](String,_0x4b9492)));continue;case'2':new_text=new_text[_0x2b20bf(0x28a)+_0x172fa0(0x157)](_0x4a0703[_0x2cf06b(0x103)](_0x4a0703[_0x6170eb(0x96c)],_0x4a0703[_0x6170eb(0xb45)](String,_0x4b9492)),_0x4a0703[_0x738f99(0xb12)](_0x4a0703[_0x6170eb(0x41d)],_0x4a0703[_0x172fa0(0x4ff)](String,_0x4b9492)));continue;case'3':new_text=new_text[_0x172fa0(0x28a)+_0x2cf06b(0x157)](_0x4a0703[_0x172fa0(0x10e)](_0x4a0703[_0x2cf06b(0x68c)],_0x4a0703[_0x172fa0(0xb45)](String,_0x4b9492)),_0x4a0703[_0x2b20bf(0x103)](_0x4a0703[_0x2cf06b(0x41d)],_0x4a0703[_0x172fa0(0xa90)](String,_0x4b9492)));continue;case'4':new_text=new_text[_0x172fa0(0x28a)+_0x2b20bf(0x157)](_0x4a0703[_0x2cf06b(0x535)](_0x4a0703[_0x738f99(0x1a7)],_0x4a0703[_0x172fa0(0x4ff)](String,_0x4b9492)),_0x4a0703[_0x2cf06b(0xb12)](_0x4a0703[_0x6170eb(0x41d)],_0x4a0703[_0x6170eb(0xa90)](String,_0x4b9492)));continue;case'5':new_text=new_text[_0x2cf06b(0x28a)+_0x2b20bf(0x157)](_0x4a0703[_0x6170eb(0x103)](_0x4a0703[_0x738f99(0xb44)],_0x4a0703[_0x2cf06b(0xa90)](String,_0x4b9492)),_0x4a0703[_0x2cf06b(0x58a)](_0x4a0703[_0x6170eb(0x41d)],_0x4a0703[_0x172fa0(0xa90)](String,_0x4b9492)));continue;case'6':new_text=new_text[_0x6170eb(0x28a)+_0x2cf06b(0x157)](_0x4a0703[_0x6170eb(0x10e)](_0x4a0703[_0x2b20bf(0x68c)],_0x4a0703[_0x2cf06b(0x525)](String,_0x4b9492)),_0x4a0703[_0x172fa0(0xb12)](_0x4a0703[_0x172fa0(0x41d)],_0x4a0703[_0x2cf06b(0x525)](String,_0x4b9492)));continue;case'7':new_text=new_text[_0x6170eb(0x28a)+_0x172fa0(0x157)](_0x4a0703[_0x2cf06b(0x5eb)](_0x4a0703[_0x2cf06b(0x2f8)],_0x4a0703[_0x738f99(0x65b)](String,_0x4b9492)),_0x4a0703[_0x738f99(0x535)](_0x4a0703[_0x2cf06b(0x41d)],_0x4a0703[_0x172fa0(0x98e)](String,_0x4b9492)));continue;case'8':new_text=new_text[_0x6170eb(0x28a)+_0x6170eb(0x157)](_0x4a0703[_0x2b20bf(0xb12)](_0x4a0703[_0x2cf06b(0x3cb)],_0x4a0703[_0x172fa0(0x868)](String,_0x4b9492)),_0x4a0703[_0x6170eb(0x876)](_0x4a0703[_0x738f99(0x41d)],_0x4a0703[_0x172fa0(0x958)](String,_0x4b9492)));continue;case'9':new_text=new_text[_0x2cf06b(0x28a)+_0x738f99(0x157)](_0x4a0703[_0x2b20bf(0x103)](_0x4a0703[_0x172fa0(0x773)],_0x4a0703[_0x172fa0(0x958)](String,_0x4b9492)),_0x4a0703[_0x738f99(0x556)](_0x4a0703[_0x2b20bf(0x41d)],_0x4a0703[_0x172fa0(0x98a)](String,_0x4b9492)));continue;case'10':new_text=new_text[_0x2cf06b(0x28a)+_0x2cf06b(0x157)](_0x4a0703[_0x2cf06b(0x22b)](_0x4a0703[_0x172fa0(0x973)],_0x4a0703[_0x172fa0(0x98a)](String,_0x4b9492)),_0x4a0703[_0x2b20bf(0x390)](_0x4a0703[_0x172fa0(0x41d)],_0x4a0703[_0x2b20bf(0x827)](String,_0x4b9492)));continue;case'11':new_text=new_text[_0x2b20bf(0x28a)+_0x172fa0(0x157)](_0x4a0703[_0x738f99(0x876)](_0x4a0703[_0x738f99(0x10f)],_0x4a0703[_0x6170eb(0x6ce)](String,_0x4b9492)),_0x4a0703[_0x6170eb(0xa74)](_0x4a0703[_0x172fa0(0x41d)],_0x4a0703[_0x172fa0(0x827)](String,_0x4b9492)));continue;case'12':new_text=new_text[_0x2cf06b(0x28a)+_0x738f99(0x157)](_0x4a0703[_0x6170eb(0x5eb)](_0x4a0703[_0x172fa0(0x9aa)],_0x4a0703[_0x2b20bf(0x59c)](String,_0x4b9492)),_0x4a0703[_0x738f99(0x183)](_0x4a0703[_0x172fa0(0x41d)],_0x4a0703[_0x2b20bf(0xa90)](String,_0x4b9492)));continue;case'13':new_text=new_text[_0x172fa0(0x28a)+_0x2b20bf(0x157)](_0x4a0703[_0x2b20bf(0x4cc)](_0x4a0703[_0x738f99(0xb5d)],_0x4a0703[_0x6170eb(0x1a9)](String,_0x4b9492)),_0x4a0703[_0x6170eb(0x58a)](_0x4a0703[_0x2cf06b(0x41d)],_0x4a0703[_0x738f99(0x392)](String,_0x4b9492)));continue;case'14':new_text=new_text[_0x2cf06b(0x28a)+_0x2cf06b(0x157)](_0x4a0703[_0x2cf06b(0x46b)](_0x4a0703[_0x2cf06b(0x44b)],_0x4a0703[_0x738f99(0x5ef)](String,_0x4b9492)),_0x4a0703[_0x172fa0(0xa7f)](_0x4a0703[_0x2cf06b(0x41d)],_0x4a0703[_0x2b20bf(0x83a)](String,_0x4b9492)));continue;case'15':new_text=new_text[_0x2cf06b(0x28a)+_0x2cf06b(0x157)](_0x4a0703[_0x172fa0(0x5eb)](_0x4a0703[_0x6170eb(0x8c6)],_0x4a0703[_0x2cf06b(0x6ce)](String,_0x4b9492)),_0x4a0703[_0x2cf06b(0x406)](_0x4a0703[_0x172fa0(0x41d)],_0x4a0703[_0x2b20bf(0xa90)](String,_0x4b9492)));continue;case'16':new_text=new_text[_0x172fa0(0x28a)+_0x2b20bf(0x157)](_0x4a0703[_0x2cf06b(0xb17)](_0x4a0703[_0x6170eb(0x9a4)],_0x4a0703[_0x738f99(0x4ff)](String,_0x4b9492)),_0x4a0703[_0x2b20bf(0x183)](_0x4a0703[_0x172fa0(0x41d)],_0x4a0703[_0x2b20bf(0x50c)](String,_0x4b9492)));continue;case'17':new_text=new_text[_0x2b20bf(0x28a)+_0x738f99(0x157)](_0x4a0703[_0x2b20bf(0x547)](_0x4a0703[_0x2b20bf(0x5ad)],_0x4a0703[_0x172fa0(0x607)](String,_0x4b9492)),_0x4a0703[_0x6170eb(0xb1e)](_0x4a0703[_0x172fa0(0x41d)],_0x4a0703[_0x2b20bf(0x392)](String,_0x4b9492)));continue;case'18':new_text=new_text[_0x2cf06b(0x28a)+_0x172fa0(0x157)](_0x4a0703[_0x738f99(0x5f4)](_0x4a0703[_0x2cf06b(0xabd)],_0x4a0703[_0x2cf06b(0x3bb)](String,_0x4b9492)),_0x4a0703[_0x172fa0(0x1fb)](_0x4a0703[_0x172fa0(0x41d)],_0x4a0703[_0x2cf06b(0x392)](String,_0x4b9492)));continue;case'19':new_text=new_text[_0x2cf06b(0x28a)+_0x6170eb(0x157)](_0x4a0703[_0x2b20bf(0x390)](_0x4a0703[_0x738f99(0x986)],_0x4a0703[_0x172fa0(0xab4)](String,_0x4b9492)),_0x4a0703[_0x172fa0(0x406)](_0x4a0703[_0x2cf06b(0x41d)],_0x4a0703[_0x2cf06b(0x83a)](String,_0x4b9492)));continue;case'20':new_text=new_text[_0x172fa0(0x28a)+_0x6170eb(0x157)](_0x4a0703[_0x738f99(0x48b)](_0x4a0703[_0x738f99(0x773)],_0x4a0703[_0x6170eb(0x50c)](String,_0x4b9492)),_0x4a0703[_0x738f99(0xa81)](_0x4a0703[_0x6170eb(0x41d)],_0x4a0703[_0x738f99(0x958)](String,_0x4b9492)));continue;case'21':new_text=new_text[_0x738f99(0x28a)+_0x6170eb(0x157)](_0x4a0703[_0x6170eb(0x527)](_0x4a0703[_0x738f99(0xaf9)],_0x4a0703[_0x2cf06b(0x392)](String,_0x4b9492)),_0x4a0703[_0x2b20bf(0x4b9)](_0x4a0703[_0x172fa0(0x41d)],_0x4a0703[_0x2cf06b(0x9dc)](String,_0x4b9492)));continue;case'22':new_text=new_text[_0x6170eb(0x28a)+_0x6170eb(0x157)](_0x4a0703[_0x738f99(0x535)](_0x4a0703[_0x6170eb(0x7ee)],_0x4a0703[_0x738f99(0x958)](String,_0x4b9492)),_0x4a0703[_0x2b20bf(0x183)](_0x4a0703[_0x172fa0(0x41d)],_0x4a0703[_0x738f99(0x2e7)](String,_0x4b9492)));continue;case'23':new_text=new_text[_0x172fa0(0x28a)+_0x2b20bf(0x157)](_0x4a0703[_0x2cf06b(0x287)](_0x4a0703[_0x2b20bf(0x5a7)],_0x4a0703[_0x6170eb(0x2e7)](String,_0x4b9492)),_0x4a0703[_0x2b20bf(0x5c7)](_0x4a0703[_0x2cf06b(0x41d)],_0x4a0703[_0x738f99(0x2a2)](String,_0x4b9492)));continue;case'24':new_text=new_text[_0x2cf06b(0x28a)+_0x738f99(0x157)](_0x4a0703[_0x2cf06b(0x6e7)](_0x4a0703[_0x6170eb(0x1a7)],_0x4a0703[_0x172fa0(0xa90)](String,_0x4b9492)),_0x4a0703[_0x738f99(0xb24)](_0x4a0703[_0x738f99(0x41d)],_0x4a0703[_0x2b20bf(0x216)](String,_0x4b9492)));continue;}break;}}}new_text=_0x4a0703[_0x2b20bf(0x18a)](replaceUrlWithFootnote,new_text);for(let _0x1f17a6=prompt[_0x2b20bf(0x3fc)+_0x2cf06b(0x280)][_0x2cf06b(0x3fa)+'h'];_0x4a0703[_0x172fa0(0x988)](_0x1f17a6,-0x1582+-0x756*0x2+-0x16*-0x1a5);--_0x1f17a6){_0x4a0703[_0x6170eb(0x512)](_0x4a0703[_0x2b20bf(0x858)],_0x4a0703[_0x172fa0(0x858)])?EnaOym[_0x6170eb(0xa90)](_0x9bb419,'0'):(new_text=new_text[_0x172fa0(0x28a)+'ce'](_0x4a0703[_0x6170eb(0xa38)](_0x4a0703[_0x738f99(0x3bc)],_0x4a0703[_0x172fa0(0x4df)](String,_0x1f17a6)),prompt[_0x738f99(0x3fc)+_0x738f99(0x280)][_0x1f17a6]),new_text=new_text[_0x738f99(0x28a)+'ce'](_0x4a0703[_0x2b20bf(0x547)](_0x4a0703[_0x6170eb(0x778)],_0x4a0703[_0x172fa0(0x7e8)](String,_0x1f17a6)),prompt[_0x738f99(0x3fc)+_0x2b20bf(0x280)][_0x1f17a6]),new_text=new_text[_0x2b20bf(0x28a)+'ce'](_0x4a0703[_0x738f99(0x8c3)](_0x4a0703[_0x6170eb(0xa1f)],_0x4a0703[_0x738f99(0x5d4)](String,_0x1f17a6)),prompt[_0x172fa0(0x3fc)+_0x738f99(0x280)][_0x1f17a6]));}return new_text=new_text[_0x738f99(0x28a)+_0x172fa0(0x157)]('[]',''),new_text=new_text[_0x2cf06b(0x28a)+_0x6170eb(0x157)]('((','('),new_text=new_text[_0x2cf06b(0x28a)+_0x2b20bf(0x157)]('))',')'),new_text=new_text[_0x2b20bf(0x28a)+_0x738f99(0x157)]('(\x0a','\x0a'),new_text;}function chatmore(){const _0x2224d8=_0x55d98c,_0x783231=_0x342a2e,_0x1469d3=_0x183957,_0x802b14=_0x342a2e,_0x5e226f=_0x183957,_0x3d793c={'ZRqSs':function(_0x27b4be,_0x51aa45){return _0x27b4be+_0x51aa45;},'tDugq':_0x2224d8(0x2a7)+'es','WvrEB':function(_0x45a98a,_0x23a24b){return _0x45a98a!==_0x23a24b;},'sdzAv':_0x2224d8(0x1a2),'TUCCX':function(_0x52af40,_0x137e3a){return _0x52af40>_0x137e3a;},'Ndcsf':function(_0x525553,_0x1ba0e4){return _0x525553(_0x1ba0e4);},'hutsz':_0x783231(0x3e1)+_0x2224d8(0x3c6),'DvCoN':function(_0x200e4b,_0x37bc5d){return _0x200e4b+_0x37bc5d;},'kYZdU':_0x5e226f(0x3be)+_0x783231(0x141)+_0x783231(0x64a)+_0x802b14(0x43b)+_0x2224d8(0xa0a)+_0x5e226f(0x2a1)+_0x783231(0x7d2)+_0x783231(0x5cb)+_0x5e226f(0x749)+_0x5e226f(0x63e)+_0x5e226f(0x9a5),'FqsBb':_0x5e226f(0x44f)+_0x5e226f(0x7bc),'iMrTD':_0x5e226f(0x46a),'PgnkD':_0x783231(0x54a),'vXQPM':function(_0x502956,_0x40cc6f){return _0x502956(_0x40cc6f);},'HmXdu':_0x802b14(0x176),'ldAwP':function(_0x3d4fe9,_0x21d862){return _0x3d4fe9+_0x21d862;},'bnKZj':function(_0x21ad3c,_0x35d197){return _0x21ad3c+_0x35d197;},'kIsyI':_0x802b14(0x3e1),'ndIlx':_0x802b14(0xad4),'OxPYS':_0x5e226f(0x8cb)+'','ndwgu':_0x783231(0xaf6)+_0x2224d8(0x887)+_0x783231(0x1bc)+_0x5e226f(0x9e6)+_0x2224d8(0x2e6)+_0x2224d8(0x334)+_0x783231(0x493)+_0x2224d8(0x4cd)+_0x2224d8(0x349)+_0x5e226f(0x1fa)+_0x1469d3(0x682)+_0x802b14(0x358)+_0x1469d3(0xb3b),'UtOJB':function(_0x28e07d,_0x5c726b){return _0x28e07d!=_0x5c726b;},'AsHnn':function(_0x55d760,_0x318a11,_0x430b68){return _0x55d760(_0x318a11,_0x430b68);},'FExvS':_0x1469d3(0xf6)+_0x783231(0x9e3)+_0x1469d3(0x9f1)+_0x2224d8(0x306)+_0x1469d3(0x8f9)+_0x1469d3(0x6e1)},_0x4cd81f={'method':_0x3d793c[_0x802b14(0x53d)],'headers':headers,'body':_0x3d793c[_0x1469d3(0x595)](b64EncodeUnicode,JSON[_0x783231(0x244)+_0x1469d3(0x783)]({'messages':[{'role':_0x3d793c[_0x802b14(0x812)],'content':_0x3d793c[_0x2224d8(0x2ba)](_0x3d793c[_0x802b14(0x235)](_0x3d793c[_0x1469d3(0x2ba)](_0x3d793c[_0x5e226f(0x7b6)](document[_0x2224d8(0x7b7)+_0x802b14(0x71d)+_0x1469d3(0x2aa)](_0x3d793c[_0x1469d3(0x177)])[_0x1469d3(0x209)+_0x2224d8(0x6c4)][_0x802b14(0x28a)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x802b14(0x28a)+'ce'](/<hr.*/gs,'')[_0x2224d8(0x28a)+'ce'](/<[^>]+>/g,'')[_0x1469d3(0x28a)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x3d793c[_0x5e226f(0x7c2)]),original_search_query),_0x3d793c[_0x783231(0x831)])},{'role':_0x3d793c[_0x802b14(0x812)],'content':_0x3d793c[_0x1469d3(0x14a)]}][_0x5e226f(0xa6a)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x3d793c[_0x783231(0x161)](document[_0x802b14(0x7b7)+_0x2224d8(0x71d)+_0x5e226f(0x2aa)](_0x3d793c[_0x1469d3(0x4d0)])[_0x5e226f(0x209)+_0x5e226f(0x6c4)],''))return;_0x3d793c[_0x5e226f(0x18f)](fetch,_0x3d793c[_0x5e226f(0x837)],_0x4cd81f)[_0x783231(0x3c1)](_0x161108=>_0x161108[_0x5e226f(0x60f)]())[_0x1469d3(0x3c1)](_0x47d4b3=>{const _0x2eeb68=_0x802b14,_0x364281=_0x802b14,_0x1c6bcd=_0x802b14,_0xac2ce5=_0x783231,_0x68180d=_0x2224d8,_0x4a0c70={'sbwid':function(_0x3f3347,_0xb05719){const _0x21a81a=_0x31dd;return _0x3d793c[_0x21a81a(0x2ba)](_0x3f3347,_0xb05719);},'Bcasp':_0x3d793c[_0x2eeb68(0x67e)],'CNXyM':function(_0x1a4553,_0x460559){const _0x19fbcc=_0x2eeb68;return _0x3d793c[_0x19fbcc(0x8c2)](_0x1a4553,_0x460559);},'obbqg':_0x3d793c[_0x2eeb68(0x66c)],'cKLew':function(_0x2efe24,_0x439028){const _0x5f10e2=_0x364281;return _0x3d793c[_0x5f10e2(0x8d9)](_0x2efe24,_0x439028);},'UBCqV':function(_0x5b06ff,_0x2f657c){const _0xfed5ef=_0x364281;return _0x3d793c[_0xfed5ef(0x450)](_0x5b06ff,_0x2f657c);},'atabI':_0x3d793c[_0x2eeb68(0x4d0)],'tZUka':function(_0x1cd8db,_0x257777){const _0x4bd58b=_0x2eeb68;return _0x3d793c[_0x4bd58b(0x2d2)](_0x1cd8db,_0x257777);},'HEuYe':_0x3d793c[_0x1c6bcd(0x300)],'AzFfy':_0x3d793c[_0xac2ce5(0x36b)]};if(_0x3d793c[_0x68180d(0x8c2)](_0x3d793c[_0x364281(0x6f2)],_0x3d793c[_0x364281(0x6f2)]))try{_0x345ab9=_0x1f76cb[_0x68180d(0x1f6)](_0x4a0c70[_0x1c6bcd(0xaa8)](_0x47d65c,_0x55a70d))[_0x4a0c70[_0x2eeb68(0x6c2)]],_0x58253f='';}catch(_0x452a9a){_0x117721=_0x1c0fcd[_0xac2ce5(0x1f6)](_0x5205bc)[_0x4a0c70[_0x2eeb68(0x6c2)]],_0x3123a5='';}else JSON[_0x1c6bcd(0x1f6)](_0x47d4b3[_0x2eeb68(0x2a7)+'es'][0x115f*-0x1+-0x577+0x16d6][_0xac2ce5(0x43e)+'ge'][_0xac2ce5(0x18e)+'nt'][_0xac2ce5(0x28a)+_0x68180d(0x157)]('\x0a',''))[_0x2eeb68(0x9ad)+'ch'](_0x585036=>{const _0xfa3d51=_0x68180d,_0x435eca=_0x364281,_0x5852c0=_0x1c6bcd,_0x315e11=_0x68180d,_0x4258d0=_0xac2ce5;if(_0x4a0c70[_0xfa3d51(0x353)](_0x4a0c70[_0x435eca(0x89d)],_0x4a0c70[_0xfa3d51(0x89d)]))_0x947a6b+=_0x4d987d[0x1666+-0x85+0x74b*-0x3][_0x315e11(0x107)][_0x435eca(0x18e)+'nt'];else{if(_0x4a0c70[_0xfa3d51(0x9eb)](_0x4a0c70[_0x4258d0(0x271)](String,_0x585036)[_0x315e11(0x3fa)+'h'],0x4*0x60f+-0x8ea*-0x2+-0x2a0b))document[_0x435eca(0x7b7)+_0x435eca(0x71d)+_0x435eca(0x2aa)](_0x4a0c70[_0xfa3d51(0x559)])[_0xfa3d51(0x209)+_0x4258d0(0x6c4)]+=_0x4a0c70[_0x315e11(0xaa8)](_0x4a0c70[_0x4258d0(0x54b)](_0x4a0c70[_0x4258d0(0x3a4)],_0x4a0c70[_0xfa3d51(0x271)](String,_0x585036)),_0x4a0c70[_0x435eca(0xa58)]);}});})[_0x5e226f(0x51b)](_0x2d532=>console[_0x783231(0x7ba)](_0x2d532)),chatTextRawPlusComment=_0x3d793c[_0x783231(0x2ba)](chatTextRaw,'\x0a\x0a'),text_offset=-(0x1*-0x126d+0x20b1+-0xe43);}let chatTextRaw='',text_offset=-(0x2be*-0x6+-0x2471+0x34e6);const _0x3add98={};_0x3add98[_0x183957(0x6fa)+_0x4b9440(0x80d)+'pe']=_0x55d98c(0x7fb)+_0x4e39c5(0xa86)+_0x4b9440(0xb41)+'n';const headers=_0x3add98;let prompt=JSON[_0x183957(0x1f6)](atob(document[_0x183957(0x7b7)+_0x183957(0x71d)+_0x342a2e(0x2aa)](_0x183957(0x1b6)+'pt')[_0x4b9440(0xb47)+_0x4e39c5(0xab2)+'t']));function _0x3276(){const _0x1ffe0d=['yCDNn','up\x20vo','catio','LvyEm','opIip','chat','ztXYk','NQCNT','XmtxK','JkbVE','iDknx','OxtEb','cPlIo','tHeig','mehrX','mlIAe','WPqXx','HcvmA','YHerr','syste','sZTZt','jrVHk','XTWxd','pkcs8','OjoXu','qcXcg','MbLSB','UHrEb','RTNCe','Mblpw','ZRsPI','(链接ur','eHBYT','HltCA','gYZaj','#fnre','sbwid','sLvOG','rQTBB','XsfkX','wer\x22>','IC\x20KE','OsISe','DTHnN','tyGGU','Gxjin','onten','tWidt','THYKV','oIiys','6|10|','Hwzzm','CgfgC','yOcXw','cfBnT','&time','JOFgU','FFuAJ','VAbuW','AxOEW','mNafz','qySiU','wBFBO','gpUEc','WKxmt','diqug','dRJjA','什么样','KJFzO','LuHGp','SsOnk','BWTIb','eFmyI','|18|9','xHUAw','sbRHj','RNPHn','vJbXe','zoXRJ','hvBQQ','以上是“','JOSSf','aWNmC','eCiBA','ALevl','OudxD','Z_$][','eYHRB','MRFgH','iouJQ','koCxG','SxZom','JwwJR','bekvk','code','OcHVS','weySj','xJoPb','EmAyg','circl','BRigU','href','img','qmcnl','bSkfJ','dUDJw','wADeN','SKQfC','20|2|','vAkfP','vsofp','SXiTS','oXrOw','网页布局:','给出和上文','JodRa','13|0|','VDztF','KFCAT','MgxRa','kZeOK','406343sNGFTd','apnDe','WEvVB','BOBYj','MLsoL','iatKI','wuoOi','wQADx','goUwo','IPlIS','rn\x20th','noUcX','gLLJz','jAuBy','l-inp','FptlI','#00ff','TbMuZ','PSyyJ','|15|1','xKXsi','tYBhp','RWUqI','oRoqY','nce_p','kqyHp','wGmbs','Qtcvc','gzVqB','cWzJC','kMgir','GsLJo','jJKOL','gBddZ','SlEqP','qBRur','tEwzC','fesea','oaqbI','nTFgj','agkOq','BKQzA','WuQyM','aXMed','uoocH','encry','arYHX','ONrVd','roxy','cisSW','请推荐','lCRxg','gger','LkQoY','SVFkZ','r8Ljj','BQkJi','lVIcq','mKkzO','rnTIM','lsPOO','4|11|','q4\x22]','KmWqw','jqogS','gQZkm','DWrhQ','kBffc','n/jso','RWIrO','voVQA','EyYkM','NNzKM','HkGTh','textC','OdyFA','MtqLj','ength','容:\x0a','ingMy','XdbcX','ocwxU','VyQfQ','delet','GDWvh','retur','JhzZG','UEiGu','uyItY','BYSIx','&cate','IeJAX','fccUp','BiiKH','srIHg','fotBX','lXsNb','DQAfu','TnepO','CmOzC','SCXvM','selec','(链接:u','ZMZyw','KCBaH','ccmBo','int','你是内部代','bXBut','gWxfP','cLJDX','alxKe','slXIH','3|4|1','add','hEorM','打开链接','#moda','WJXDH','CAXkn','backg','文中用(链','mWxeC','mZSpY','vBNNE','|1|2','CNVry','有什么','BOAYl','rame','scrol','BOTTO','oMxRT','zsilu','QWICS','hedJP','SzAkL','eIfMv','jNAFe','MIlvV','jGSAO','AjSkt','top','JYXkD','ic/th','ybINA','(来源链接','bYmIY','WgvaF','dcPHU','cixPv','Hzhrs','grvbD','dBNXo','kkEtz','lPfwz','uIJuW','VXnHl','GpTyZ','xAVxe','jYrjE','重复上文','uGoUC','aYYna','ADPii','RzSKp','https','GjEmW','nctio','TSjTv','bind','。用户搜索','qMluV','PTWOX','XSFmB','Zbssk','找一个','ty-re','有emoj','jZHbx','wGaNJ','GmhGo','down\x20','delta','DcRiR','NjFqD','suDiV','ZdBjR','NvIiX','nCxDg','hXdOW','caXvc','tCvGX','EfVdZ','EqeEN','TZZuX','xeFnr','kxDuW','stion','PXwbb','6f2AV','YKfWj','HTUoI','YgSF4','#0000','zaQbN','smjag','YiuxQ','gVhQj','IVIaJ','ShCmm','ugJEm','PLIlt','shift','gjioD','|2|4','xGchJ','jieba','filte','TUGyc','lEImy','RBZyM','omKid','mGMLV','oljVs','HDBiP','1721193sShkvc','XeMjo','你是一个叫','(http','fCGFS','lCyAq','CIult','cKeKO','kboAg','PGoZB','Iobnm','ocqDe','xouQW','nJQcT','UhBVJ','on\x20cl','WzQYU','aTXWq','CQXvH','uITOc','告诉我','GNqNH','9748277jzmFvZ','JnZjl','ndwgu','KyVYX','UPboM','YLcnH','getCo','is\x22)(','FdUXY','SRbJN','总结网页内','wXTTw','VOHkH','围绕关键词','BrEEe','ceAll','GogHD','|4|14','dPCHU','nYbsO','RHLAg','decry','UBrzb','me-wr','THDFK','UtOJB','|8|24','IEZSn','\x0a以上是任','qQqCm','oxes','5|16|','Osajz','Aeyqr','x+el7','gMGYj','YTGem','ompwL','iizsw','jZbuy','PJJLK','onTtI','aNspW','qgQjU','UcCAE','E_LEF','user','kIsyI','0|22|','HiExR','zuhfe','ELGTQ','mLsYC','qtURv','aria-','</div','wavoi','KDKFs','GcDVF','hGqxh','IhfBk','label','zWWfT','MRjTd',',不告诉任','HUecN','xSvYz','-----','复上文。结','ujiOJ','conte','AsHnn','FJVoU','VgcKL','17|5|','NOgLN','ntent','JrKUg','EByMk','NkfZR','lrgLp','Zsmbj','nue','sFjAD','AdeEz','pkAiz','EXOLm','IKkKH','lyYGr','wiHPo','myvFC','NZsSJ','提及已有内','BQlzw','AXtsD','IwFSg','goZPe','VaPvl','kg/ke','WBbIf','YBAhd','AsKev','QPQNx','fJPHS','FHrkG','gxpIV','CymwM','wWLUi','rOjBO','gbpGg','#prom','ZlUdS','s://u','90ceN','RBMXk','MwTCZ','要上网搜索','tVogr','RICFB','BEGIN','AmwEx','bdaqo','OpnwV','Oxlie','CFcjS','jBIpE','join','应内容来源','rByxj','LbicO','\x20PRIV','QoSpy','ZuNuE','qgUFT','PeSpA','IBCgK','qCvEM','siuPk','ersio','vsoQd','无关内容,','(来源ur','DVpRo','UXcOb','OzHSs','WyoSO','KqKxe','ZliYN','VUDMe','xmpKx','EbuEy','zzpWS','pZDpJ','QYwfW','wAxCg','OfczG','butto','XxoYe','vSvLQ','xHxrr','kntBf','<a\x20cl','cxSkI','UHWfL','count','bthRD','fQWnO','upJZM','drBqK','sOMZx','PPMfD','wAYsf','oOvKx','mbZIp','parse','jxOwu','Zpzzr','UCyhC','q1\x22,\x22','HjhBD','nzZrQ','footn','cADmq','odePo','zWboG','BHyQQ','bZaIf','otDvf','BxbgZ','WfJsy','4cHHLaU','Ga7JP','iaZhn','inner','Orq2W','IIsDA','QHSoY','aDFsX','PUmKZ','min','tGlky','rxgbZ','cfKJp','ouUjF','mluKD','GHZwY','dLgak','TOP_M','KXDxs','WTiSr','RbKjD','qZppU','uBEMv','MTYnj','BAQEF','yrkih','ring','offse','xJdJE','lvrLq','fGwLM','cfrfx','tOZgC','WxjWn','NqUWq','dChil','XvIbb','MHvMx','ywQVw','sqrt','4|1|3','unTRt','wvPxW','yKafq','Yaoon','infob','xEnTS','ldAwP','wBUue','ASOmy','uMCwj','DVcIt','ACObo','BpGcw','nvcMf','YGeKL','UYuTj','FYxqi','CpDID','ImnBL','Vdezo','VUqje','strin','DJcEI','MIKBW','Y----','cNkZL','vInNS','rTRKI','UziAS','bvhDu','twJDl','DhRnw','tQdLB','pYoSo','MjwZd','table','bemud','magi/','24hLjeCA','ZOona','GXZbr','style','BBCRY','MMhpk','tion','aKkOd','LDdHW','rxozS','cNtaS','WAeIP','sSjVx','fPAHU','WGZUb','psdyq','oOiye','oYBPN','LhJoI','HyTFk','XNzHm','aoCNR','HmrqT','YqGeA','NuOgr','iFJOd','while','FxMCO','UBCqV','MwYBH','LaNGV','xTutw','sXUKs','hOXqh','KDxwX','SGRrC','xCfEu','ufErN','iG9w0','QGKRe','asqbu','LLsQT','IGHT','air','read','TLbVR','UJSgA','XKSwP','fayaU','HTmSU','FGXAQ','ArchQ','GwlIe','repla','OLZcB','PGJSg','0|11|','HdQfY','不要放在最','用了网络知','uYwEh','oOpBR','BsHIi','eUNXQ','UxEfw','SIVgg','WGujK','EBhPf','SgcFH','hsWOu','PsBTe','unshi','QncfS','sumeM','xieBK','Ogrgu','oncli','edrEQ','lOvLJ','g9vMj','PMDOn','ejkKv','choic','RVIoY','\x0a给出带有','tor','MtyyB','nSRYC','fvdjk','VNUSp','引擎机器人','BLyUP','WHqqn','EvOrf','lCbMU','PPiZf','fy7vC','JqrTr','”,结合你','KxULh','GSYSu','ZRqSs','uIMHm','的是“','pYtkd','Ophac','UzgvG','ebsJq','MvRhb','XozxA','gcNjg','KdSfR','PruDy','DyTdm','7|21|','apper','byteL','jyZTd','IZhuY','3|1|0','gWRfi','HHPWr','zsZjB','tikDu','PAPbk','DvCoN','ZeaKq','kVrWQ','aYLkC','gNnyW','ZksGn','hNGIG','FTHaU','voaZA','gyiSw','pHHPF','veuKx','qnaup','ljQih','YSNkQ','erCas','pbkEA','byOUv','WGeDq','zEiLt','词的完整独','ORLuI','kJUQr','FWrcR','LKTsr','bnCBe','PVarW','CVfGf','CIILt','Chzod','xpIPX','nZqHU','DouXm','(来源:u','TVuYq','sOCCh','NHtHj','IlSNx','FeQvY','cjOLK','ahmfk','(网址:h','QJNXJ','AFOJF','MeNan','hOIka','kYZdU','FufFF','息。不要假','fopgL','rNRTM','KHmZP','kg/co','GvSDB','LbCeO','DoASB','VhvmA','djYWw','YQGPw','能帮忙','ZFVTZ','dytLb','decod','QDUoU','MbtpQ','EaUKa','OAGIz','TFzRl','oMXEs','TCPrI','SwSqC','ocrTC','siHrM','eIilT','ustSI','mcFPl','split','VhMlT','forma','atHCy','eETlG','BnmDQ','75uOe','inclu','zmswA','hgPkY','\x0a以上是关','ALAPl','sQaiI','Rlsda','HyIJK','actio','7|18|','AJPyo','KoYAD','mEQtX','EpIyO','nUzPL','立问题,以','CXJaV','call','DhHkB','TKYnD','uUuOk','HjXZo','BfbKS','\x20KEY-','NljHB','2|7|1','FoHuj','IsrEZ','BtjUF','yUlpu','phoTY','XsfAn','OssKu','KZxWx','KcIVB','0-9a-','组格式[\x22','KgHXp','pre','源链接,链','M_LEF','sPMSL','ICPiM','tagNa','YQixQ','hSdHH','CNXyM','odeAt','ESazm','CAQEA','searc','q3\x22,\x22','VUinP','VVLVy','uDVbX','init','OhSqn','urCet','$]*)','qXoIa','AXQsB','cKMHy','ntRec','VRhyW','#ffff','HsAzI','KWocD','RyFLi','LQmcU','pzSWM','FqsBb','PFJyr','qZbdj','DRKQf','AVlbb','RkgqP','nwQch','TOKzV','OsCQn','qJmhA','dOnst','4384500hQACMC','test','hLhAZ','XPjDJ','TTviu','yiSMQ','dsGFX','dfun4','uItzk','|16|1','|10|2','dLqVQ','[DONE','WzTEt','fwIDA','ZtjkS','FHYGj','IHLLc','输入框','ctfWO','nvnlb','qGQBJ','2RHU6','YLbLm','HkBfG','SkfLp','SwTMt','JzcQb','hLyKz','对应内容来','xMKnv','YzdUm','zeisx','GrCGY','HgDRu','gMuec','g0KQO','JIAqQ','index','olQZR','RCFml','zCzJX','tribu','ajNeY','NZoOq','erYeV','HEuYe','qgvSZ','OvAWw','CcHar','OBvZx','kIpRu','ISOIY','UTNgq','lfwXT','19|3|','识,删除无','iICDz','YSgpZ','YzqmU','2|23|','emoji','asm.j','zCUwn','ScFPk','POfMr','VfGOv','TUwtN','SghgM','gMkvr','ljXiP','4|4|2','<butt','ljQvq','AFisb','then','mVwQj','E_RIG','i的引入语','YISdw','_more','byJED','RNafs','nOhvc','qrPsQ','kCmZy','aRnWe','mtbhs','enRlR','CIyAs','HTmXy','hJGJZ','dwFXe','NxKhg','Og4N1','hQZpf','CWOfb','#read','more','plcMP','WsLhm','WkyPN','ttJFL','pMYxT','benbQ','ySell','HAjXE','#chat','MtCdq','qPPno','NexGR','CqqqQ','rRUJf','pZCuu','YIrtG','XPxuu','hujwn','XCkCJ','EtlXm','getRX','IDDLE','vGJDJ','链接,链接','2|6|0','YfhrR','JeLGC','TjzkB','Riits','hSMBr','iUuAB','BtxWw','mEfNR','lengt','azTht','url_p','jHmPT','tmHHA','jpLHH','18eLN','IHmdk','RuOmW','KvkLc','YplBT','WvsKl','dhPgx','ACgTZ','sKFjq','接)标注对','AXqyM','n()\x20','iwcfy','(网址ht','nSBSm','RqAgu','wsPPc','gYbZS','wPwEk','ructo','lQOoG','jJqZi','gkBqK','ERxWF','HRDEb','rtyUe','slALN','NVlxe','vmAKK','LcUZg','HECIT','cYtyN','has','\x20>\x20if','HjNkA','YLLRc','anjow','tqueN','wBEUs','WEiDX','sTnFg','yamLQ','yNwqJ','qcRFS','JypSD','MvArE','YdvAy','wxUyq','HvUyC','xcsde','搜索框','Zkzxw','uPDHr','raws','seTlU','FsaQp','nstru','BxbPY','EbZUQ','btn_m','jxfWA','mFMZt','messa','hyzqv','VsJaI','yQfmf','KaILM','QEIqv','const','|11|1','yyOji','CbuKK','ntDoc','gmDaS','接不要放在','DTFWY','AmAsH','mVLtw','EsUpp','</but','Ndcsf','NMTuO','ijzok','OWTtV','lNcPY','NvOJy','oXsFm','YTGGO','DzYFc','RrSOS','dAtOP','PVVCz','fPFUm','wGdfk','TTvtz','YrMoQ','yIFfr','XbxVN','undin','onloa','sort','QFdsI','gMYsA','xYQMN','BIArv','a-zA-','rDRKG','BOBYx','xGXxj','atJqM','impor','YJxzi','urpHX','JyTld','yqtXI','网址)标注','KFOXb','wKMFs','InEwf','kHlJw','识。用简体','emes/','MzftX','关内容,在','UqhaD','ykaMb','UCVIt','NrHWF','zkSJN','pTviq','CxmiA','HYdLb','gCjdT','qKOQE','mzuJD','eCwYG','bxPnl','ZjlOl','_inpu','ZwVUN','jrbwD','OiSJO','tQvPy','Ylpif','LbNyX','RFRdG','AzGRL','不带序号的','ujWHL','xFvJr','nCzLf','nbYPl','PpvQR','pDzbF','sYZOR','UUuaW','ceiOi','HXCPO','form','WnZFt','oBGBk','SeEWz','IfneR','DEfnC','FamXS','EIFxU','xBUFA','mUymB','eewWJ','\x20(tru','BthMg','BohbM','|3|2','YNhYX','fOTSz','qGDSu','DKDgu','EcIDH','hvNbt','zJvne','kqMvH','IgAaY','JfiZv','FCedC','EODXO','ZURUX','xdHzh','CPVWp','kTJHz','jUVoA','_rang','DpvTG','CToob','NZznq','yaiuW','tMLwf','ajNnF','xPCmI','BsvfK','aiTZN','sWqPR','RIVAT','tOSgL','JQobG','qZOCa','json数','mfhXZ','ATE\x20K','hutsz','ut-co','MXEOt','(链接ht','Width','10737ESJjQR','KutTI','MxJso','YktDS','oaVcd','HXuOD','UGCzO','FdFSQ','teUil','huqcx','PnRhk','iOLRR','sRoOt','tbnbE','EZoEC','OaiTI','cPFEr','CENTE','eLwLh','bFEyC','enalt','bCqub','OCQEE','PBkrL','o9qQ4','RLwfi','gooIQ','lnPYK','fromC','hBNgX','TyqwW','FFhAq','-MIIB','eqOxI','<div\x20','excep','FOTqg','uIeXt','FJwoI','aQHRA','SHA-2','hLEVe','lDtpW','XOPCW','KxuBA','xKpdK','kyPTE','role','IjANB','fMMZA','qQiCA','vZIlL','HhRXc','eDKMy','BXNTV','bJrat','MahkU','TwgTH','qamoe','gVhsj','”的搜索结','hLRgM','Ecfkf','lCSuB','rgTWX','mTqhV','gEAxJ','rzOhK','PYbcf','\x20PUBL','catch','alt','YnuYE','wuICN','FeOXg','HzkdF','BRBRZ','log','UzUXx','TWWvx','pODie','tSpFa','PqMaP','3|6|1','iVAzz','IkMst','rKsCr','Charl','ANMeG','cElsQ','GAEQC','yvbzi','完成任务“','RxxpX','eci','QsEIV','EkhRh','CbvJO','sHCiR','KYEAw','论,可以用','site','src','VtAfW','PgnkD','23|16','QeVDI','0|3|1','qgKWp','pbpUc','pauly','后,不得重','SNpxh','vVIhN','LYDvr','SxWjw','conti','POST','tZUka','Etxsr','NqUSt','ucVTv','maFvi','6250rwrwAn','AjrhR','kkBzz','2twaJWv','ukbnH','YvkxG','yOojj','tdyvQ','Vtyvn','atabI','Gaqig','sInEZ','lRIWc','ltssL','(来源:h','aYnUz','rViVq','jZTQx','vwUrZ','Heigh','键词“','&lang','ufTRF','kvEQj','chVri','XeCMC','IiKED','VhdwP','sZuzh','BoFuo','ZBWVO','IFwoy','pejsp','tkQaN','mbAps','UTifK','UquYl','/url','UElAp','lHeig','FoBFr','OrdCx','state','es的搜索','ATKPd','fnnHu','title','t_ans','OdceA','qMUkb','xFnqC','hsQMc','CbVio','提问:','md+az','Awyam','ouBda','nYqWi','YtmTK','LSxwS','IhQrq','VMOsO',',不得重复','dSIls','zalAY','size','eral&','xMBzT','nBkVM','vXQPM','kmwgR','gDGJo','kwiWC','f\x5c:','eUXzX','RoNvR','KIzYO','npm\x20v','SYLAP','ojjQO','szyUa','JGaBw','getAt','KyVNH','ACgzq','NERNa','qtUeO','FLwSJ','NBMYP','dIUFm','QRwEz','FxMsS','terva','kmWtv','JKoKX','最后,不得','__pro','ZEcOe','Objec','xjNgD','jpAhH','Kjm9F','idAiV','class','://ur','mzQsV','GnzGy','GrRVU','trace','COkmC','hISkY','sSucX','tqbEp','nBMYh','VmTXL','ayKOk','59tVf','tEoIw','//url','wkXIs','UjphI','yGZyk','vPhqz','end_w','NCxgf','NaKpz','写一句语言','eZPHx','UDhYV','ense','RSA-O','t_que','dtwyT','IsENm','CWkmO','YlvcQ','oLVoQ','的评论','from','qJeOR','zlEVb','BtzoF','kNZUI','CBPWz','qkrVo','NdfCw','puBna','getRe','LRpKX','kXoHN','ument','cAMWB','ZitJC','recNM','LWjoT','dzwZG','uqFKL','UuUQS','bTDER','BCuFT','*(?:[','bnWeS','|1|0','oAUcY','tAwzA','rWsGR','PIbMq','kWNUi','rDHGC','MeehK','PVrgw','pUYqC','gKsCd','sFfMq','owsWt','hajvf','sWwGA','CnUmO','eQjEV','AQxBR','M_MID','NtgQP','JIPXP','jQidc','INOZC','rKxMQ','|21|3','TCKLc','DseVy','mFcpu','56TpRJFL','json','NLXsW','aGpVD','kQdxj','NHAHI','PfyIx','755176qtenMk','VpGZW','FVEHr','CVcZx','oZVOy','TQESr','gwUqC','7ERH2','GXDbb','PYgDq','pAnVT','iRlMM','JmmXZ','vUtTm','AAoZD','lcdzK','bopeC','lTJWb','eNwIW','JFoiB','SPIsh','BWqQl','OpAuL','qBBYA','#ifra','MULhB','BvTuU','yfxjR','VOYHv','eHCGS','MvZYK','iaHga','uWLxz','ovBxU','hJZJO','JbKXX','LVnkz','SyDtn','END\x20P','mynnt','rfdDc','t(thi','WSPkq','QXNzJ','zsDCi','GWhtM','phjkA','GkBnF','XrkBy','ViHXf','xPESA','oCHPO','CUBQJ','ass=\x22','rgrUw','AoSbp','nFbdM','DlZXs','GMHlI','funct','alwNt','ZAyCb','intro','IOYDu','JFrlV','zRJLb','zLQRM','t=jso','zQTpk','HUSNo','MCpYE','exec','GTpaD','sMqlE','toStr','0|4|1','KtNxy','vUNsr','pbzxe','niqQo','zSmwl','ycpms','rtucH','CWJvC','kvQXi',',颜色:','cqUiy','sdzAv','TIaan','IitPD','displ',':http','/stat','hnEMF','ZNugq','CPOhS','DmdiX','aOTWB','\x5c(\x20*\x5c','|2|0','LsRFK','VzvLX','OCHfd','QbExE','cyFiK','tDugq','ibute','AblMv','GyBbH','q2\x22,\x22','gMJvm','ZszIW','wLtXQ','Mlldh','sCoFL','uQPvG','lKpXx','n\x20(fu','246570sIjMZW','AXpqM','wwFvQ','OJpLx','wxrrm','UIVkp','rmeSw','JdIGo','VKmNv','|9|3','sFkLK','(来源','avata','xblUU','RuMBO','sJtkM','TrtsD','OTKyV','kLbwG','tTFwz','HLtqj','iPPSf','EqczG','uahMw','yCGvy','WMcCR','WdLsl','succe','IDlVV','kLGPU','gClie','归纳发表评','mlyUD','qbyJF','KvniI','LpBhY','LtIBq','GEOOM','FLUBa','ZtHDQ','TOP_L','chain','OtdbU','AZnpT','ader','RE0jW','rllwi','ttps:','QrApT','gqifS','ById','lTTZI','IdZgo','EaGoH','fxOtG','Bcasp','charC','HTML','RhiAP','UHHSq','lLWxS','bvQxa','fYuYI','eiXKE','yxQsr','e)\x20{}','drnWm','FGUTZ','kknVI','proto','rCjzL','M0iHK','wlxUu','theyV','eAttr','XiDQU','iOKwR','jHNnV','KgUBk','nrLYt','lAums','KLwph','rqggc',')+)+)','CMtOl','ImDaf','ions','0,\x200,','jeqaQ','UxGcM','WeQzV','htbQh','Mldaq','介绍一下','aZTnV','TdeMz','zozgc','teMhR','|9|1','rbYrZ','ehIRJ','khpim','IaYcZ','iMrTD','des','zlRrU','GrAhn','_talk','UbCqv','input','rWiHB','Conte','BMWZe','slice','dWsNJ','RUrdM','Cegxu','ugSri','mpute','pJAlj','bFeXM','xeVhe','inue','zsRbz','定搜索结果','lWUkE','|13|1','EaEsB','yZoNm','ZPLph','VWZhP','FyMHZ','zh-CN','BiUoe','dQqEN','RKMZI','KiAyp','pUmBL','JopQe','dMhZX','svCNK','sNYWi','EMUkY','TcjsA','9VXPa','nwbNU','Selec','Lllyw','EHSPh','SOGFf','YFLeO','vSdAE','kGQRU','SaPcv','(网址:u','phixS','OEkXK','DOphX','DPnVf','snYsZ','wvXMi','BHVcU','talk','aMCog','xvVMt','UTXZm','lUzKm','jogov','NvpgK','BWkbU','qhBcW','LiulQ','wpRih','LvTjA','2A/dY','YnVVb','iuvqc','ilfrY','lCUIy','aXCTi','mjndp','byDlv','left','uleeA','NlIdH','OZsJv','ilgBL','b8kQG','yvHrL','NlqpZ','ebcha','号Char','KhYwc','RQgEW','INrIX','sjVTJ','kwhlR','RhWpo','TGGIP','UFmVX','tSqbb','pbFID','rSQHX','PczEd','CnZAS','URPLA','sCScC','pwxWT','uYNPW','gtlYk','BxdPP','Mjftp','为什么','WEyqe','PlwVX','dismi','容,发表带','AEP','Error','BqpGZ','hDfIq','ing','LIC\x20K','mZIWs','PENwl','data','jrSCd','TefJd','dhaww','cdiOw','ROpbc','ZkQXQ','mQQVf','grANk','NAPEw','gkqhk','iieFK','FgQvt','pPOAo','MirMn','wWmsQ','SxwPH','---EN','JWKfu','哪一个','TcEIL','nHkuP','HkIWO','gify','bkiuJ','WfQPz','yZUBq','SppuH','VdvSs','MlseC','LthRh','MEhJn','上设定保密','XSJoB','lojXm','heigh','map','XGKIc','KinBs','(网址','ceXZk','255','幽默的、含','UvzXS','push','QrSrv','MItED','BIUBV','bGrHP','BFMuh','attac','tPTKx','YOFJW','DfesQ','NJUca','YIDpp','QrjHR','tfPvd','AQKhR','ulbvo','e=&sa','VbKpx','|19|2','VZzXm','nMGdr','TOP_R','CDkBN','ubPmr','UheNq','iBkTl','LSRkY','KUubE','subtl','NsrBi','bnKZj','query','z8ufS','rDerp','error','KRMua','ton>','BAlaw','KBXwb','34Odt','nqSbF','assis','ndIlx','M_RIG','{}.co','TutxG','\x0a以上是“','ktMdE','EVAsC','lhzvV','pcqGV','kthNe','zettO','sKrma','tQTCc','uage=','soMdZ','SzEDf','ck=\x22s','kg/se','ypEtx','udazU','irpOE','EoCnf','21|15','XELYk','vfimD','vote','ri5nt','PPDFM','FxnPm','zjECX','VESsE','onhYO','RLXxp','bvowF','D33//','mSfAd','puuig','TJENO','OpLSd','24|13','QCCJr','3DGOX','Iyick','IAwZx','MNIqX','round','ECeLw','rlmdF','qxRIz','QUhmo','NwuaN','在文中用(','DDlai','知识,删除','uecvd','Jwcmn','aOMbD','appli','3|2|4','pecdv','DtDXX','cZBPB','BqvOM','aukZQ','EIWms','eQnyH','nDQGz','ljWUy','lQfDX','SxFSx','iYuMz','fkERn','RDDNg','Gekqq','tps:/','nt-Ty','rasFq','aFcTi','ttTxM','mbMAX','HmXdu','代码块','warn','ePvYC','rch=0','iwzOa','的知识总结','LGOnG','vkvax','FsLiL','AWIIY','”有关的信','kqXfn','EvBRs','ion\x20*','VranG','AGkly','torAl','Ohqmb','name','sqcRm','ATrxk','MgcIv','rea','wkWJU','zNExO','rrqdn','JFMLE','oXlXU','XQWFv','IaUpC','OxPYS','IBNrQ','hLxPv','les的人','setIn','NePSG','FExvS','MkcZK','xsGen','felMF','BCBYz','oeXbg','8|5|1','s=gen','rVitP','BZLoh','DLE','(网址ur','POBIe','使用了网络','Uggjg','githu','kgpCm','GcJdh','2|4|3','kpVTY','ntEMW','DOMxb','iyMbB','ztUtk','ote\x22>','dHOdb','KdjIW','conso','20|12','UMnTQ','jRjwe','AYdiP','baRli','Idykk','5U9h1','rHpav','clone','HCQOL','ciAgs','HTqjw','etWCC','何人。如果','fcXcG','Ocsqi','MfpkK','MXXlC','8|18|','vMsOe','FyIwI','vEIqw','zccLE','XHz/b','BOOKu','wRVhy','LYOcq','BCAhw','YtrDb','MuvZR','dStyl','OnOGZ','jgNZW','pqFMs','YwzTz','SgaeD','tant','ierWn','keys','QLAOA','aJDMR','lcYRM','gAOZk','gtyLb','iYCWQ','qcBgT','3|4|0','mAjvB','LLbmN','remov','jfEiY','UqRYP','相关的,需','oxngq','GdKLf','debu','IQLtR','hEEcN','ahxIk','VwCMz','flQDi','jeOKj','ZUzry','HWUNv','ByMAL','GEuuq','EvsaJ','dVFDI','(((.+','(url','jPgFz','LIivq','mkkQE','HJskC','obbqg','PQaEJ','sRqqX','DWmOS','mycwf','#ff00','aDVDK','QQDiQ','BpohL','jICpM','WydVD','jpPwv','rvKou','IdymL','mXFhV','yIqIG','eSKvW','type','aBtgG','toLow','value','gorie','FSEny','cViwA','roOsB','RtthA','vTQYP','ratur','UtNSk','FplGA','XHDBD','xChgr','zmpxS','afzfv','(链接','IfTYJ','YfxpK','WvrEB','uGkyb','cAUPO','bzjJe','MTABz','JlQok','(链接:h','MMIBJ','rgrAd','”的网络知','Color','MIDDL','pkfMy','qlYbA','GiwlI','MnTew','用简体中文','subst','ytext','PvuIH','YFjTe','hShhQ','BoHaw','TUCCX','bzCLb','5Aqvo','czwnD','UftZa','TeBev','IBzOj','AYolQ','YHdFd',']:\x20','prese','eIatc','CsZAM','dyrqn','cut','hf6oa','vvjaP','PrAAG','texta','pBUvi','OeAcu','\x5c+\x5c+\x20','tQRhM','tDILo','bdaTw','beiDQ','bVixD','lHLWS','zZQEg','kYGjZ','hfWCJ','HawIH','mplet','qinHT','utf-8','aEwgv','QFMjr','iZdpa','wCqPV','XvpcF','LNRmM','next','tQGAH','KJTry','oKQXS','XikVn','tMrbV','QhAqE','bawmy','TSDFY','Node','MvDUx','JCpbb','GeAKL','chat_','qfcQz','QWquH','opdJf','yMZnI','ewIUF','WiqQn','araZg','中文完成任','GFDWf','AxLQH','apply','RTubd','IAvxr','MYELD','OVktr','BNZFB','WgKUG','fpUCi','tKey','OaBPd','E\x20KEY','ucbzs','RvqXX','(来源ht','NYVCr','ZGUGA','网页标题:','spki','QAB--','xmMUM','jERsu','OacYj','VcSuM','ASxSw','LVTgJ','aHRDB','57ZXD','opSct','EkIWb','NaKel','KCMdx','kn688','qxQVI','hEven','deBSb','Oizya','=\x22cha','mgpYS','ctor(','wUddA','tempe','ASWmK','EY---','vfooX','ebPZi','ilgMV','CfnFB','ZLdCY','ement','uKujS','wxKSd','ZufXW','nMcgh','mRJMz','KfXrz','XZLlX','_rs_w','NFquf','getBo','info','tommX','appen','uNDEV','CWrWC','QQopN','abili','o7j8Q','LABIt','oZPNz','WYXiS','getEl','cIQbu','XdtqF','ULOEC','网页内容:','务,如果使','YzAGH','VjzPr','ndnHx','lTop','bXHaN','|14|4','TxLiC','lnlfF','fMQID','aThSr','\x22retu','\x20的网络知','yeDXF','VVnnV','|15|2','body','nOuHP','OqCtZ','kaoxl','aiRwA','DbDSC','to__','MWpXD','NkpjY','NZDor','fFufZ','PWhDx','XUdWS','zA-Z_','nPyNQ','Pbfee','mQXbC','HtRhO','|0|2','lvtFJ','dHxkm','KcIgR','bdEQz','TUZCf','xHvOm','poAjP','GuHEJ','Spjjv','awzNg','JOggm','mIMNG','qGoUW','D\x20PUB','hxamm','ojJvj','dcYkr','taWJJ','FpjTi','Zgxg4','qBNfP','FAwAk','MQAam','12|17','RalKx','cUkHK','AGWGg','CvIqm','sbTbG','s)\x22>','uHfmL','lNKrf','sLhcu','TCWzx','Zaxgo','vvxpX','jOnnE','forEa','afhQP','usjeZ','KMZCY','fXnjE','XBZpF','ndsxf','VcxEZ','Pmuyn','gKbCg','OhEXC','cDKpJ','ARnyP','bAhwW','什么是','ZynAV','nbkMp','kuFxG','vzfVM','AAwZX','gMMAd','DGtFn','arch?','CjxxK','iEpoO','cRxZY','tUrJO','HmoEj','zoGXr','查一下','kYxJU','nXasH','GzAvS','url','bgTuV','哪一些','WpODx','LrQMr','AWSbY','MxFMh','quJMp','WktsU','EfMsu','Aprcv','zWSmL','QRAlY','iRvlN','xIkMq','sStxL','whrGN','VFDGD','Eazao','RLeZM','fZfKF','://se','Jpfyg','width','的,不含代','BBhMS','YlOQe','dmsLR',':url','cKLew','EFT','ylmZk','color','UBLIC',',位于','arch.','utFxr','cPkfM','_cont','djvRN','SHScx','BngWa','OmIHn','GUfPs','255,\x20','KOUxP','NtdFb','|4|2','jLfNE','vHLHw','网络知识:','cmoXo','ljqSc','uauaR','gqIBL','写一段','whvSW','zFe7i','geqUf','iNImT','ore\x22\x20','的回答','ExKOb','9kXxJ','Duqcx','Q8AMI','kgngl','HyXcR','aFYOY','dqqTO','tkrpu','hgKAv','tvvkH','usHcD','DnrHE','zfrIe','AjNZh','22|7','AAOCA','b\x20lic','StHhh','QnAtw','acBvD','JpHXl','LHCsd','aMbvm','jCYBx','yNgTL','NujIA','ODrtQ','qzIvG','bzUlM','ges','nkxFY','qRghR','uWtOF','LXLVn','sWJNs','RYLNt','anEOT','zonRX','工智能。以','nAEvh','TRNxK','INBGn','LugQq','DYngY','pbVIy','msAdh','hBExp','otXYD','Ewhqd','GvLoy','ueRlG','QjOVl','jjBmT','sFwXr','UEDxs','uaGpP','mISOe','9|20|','Wkmkc','iMFqy','zCqQx','qbqQl','cSwVe','zdxzg','----','Erngf','BQiyF','vKCXn','SQsqa','nGiyo','qlEOv','u9MCf','ZjNDB','JqKzb','WjQFY','AzFfy','ZxyXj','bzGXD','5eepH','CSqXw','</a>','uCIRX','ywCYk','baJiZ','VAVgN','JgSHz','dDCVm','loOPh','ZoeVG','trim','写一个','VYJSB','YuWGO','conca','SZmWh','block','anoxp','ivLeQ','MkzRi','MqWvF','WhXSF','UIPMB','OPZjX','kNXmu','aZyUa','UJzrL','aFgMv','ZxQVz','wJ8BS','SGMXD','TeYHu','OLEto','ynTWY','xPZXA','AwmMi','xIZJI','wAxjS','sDeQp','vlKYy'];_0x3276=function(){return _0x1ffe0d;};return _0x3276();}chatTextRawIntro='',text_offset=-(-0x1fcd+-0x1fcb+0x3f99);const _0x23d819={};_0x23d819[_0x55d98c(0x504)]=_0x4e39c5(0xa97)+'m',_0x23d819[_0x4e39c5(0x18e)+'nt']=_0x4b9440(0x134)+_0x342a2e(0x52c)+_0x183957(0x57b)+_0x55d98c(0x2af)+_0x55d98c(0xfb)+_0x4e39c5(0x2bc)+original_search_query+(_0x4e39c5(0x81d)+_0x55d98c(0x302)+_0x55d98c(0x707)+'');const _0x228e5c={};_0x228e5c[_0x342a2e(0x504)]=_0x4e39c5(0x176),_0x228e5c[_0x4e39c5(0x18e)+'nt']=_0x4e39c5(0x8d2)+_0x55d98c(0x5ce)+_0x342a2e(0x796)+_0x4e39c5(0x102)+_0x342a2e(0x3c4)+'';const optionsIntro={'method':_0x342a2e(0x54a),'headers':headers,'body':b64EncodeUnicode(JSON[_0x4e39c5(0x244)+_0x342a2e(0x783)]({'messages':[_0x23d819,_0x228e5c][_0x183957(0xa6a)+'t'](add_system),'max_tokens':0x400,'temperature':0.2,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0.5,'stream':!![]}))};fetch(_0x4b9440(0xf6)+_0x342a2e(0x9e3)+_0x183957(0x9f1)+_0x55d98c(0x306)+_0x342a2e(0x8f9)+_0x55d98c(0x6e1),optionsIntro)[_0x55d98c(0x3c1)](_0x3674e6=>{const _0x1680f6=_0x183957,_0x1a107b=_0x4b9440,_0x1c4134=_0x55d98c,_0x5e4c4c=_0x55d98c,_0x25b929=_0x183957,_0x2a3418={'ZlUdS':_0x1680f6(0x765)+':','PPiZf':function(_0x447baa,_0x45f3fd){return _0x447baa(_0x45f3fd);},'LWjoT':function(_0x1f7135,_0x253bc3){return _0x1f7135<_0x253bc3;},'aRnWe':function(_0xbcf543,_0x404cb8){return _0xbcf543+_0x404cb8;},'wuoOi':_0x1a107b(0x2a7)+'es','qxQVI':function(_0x2b411d,_0x40c846){return _0x2b411d-_0x40c846;},'Mlldh':_0x1680f6(0x897)+_0x1c4134(0x6de)+'+$','CXJaV':function(_0x568168,_0x17f0a8){return _0x568168===_0x17f0a8;},'BoHaw':_0x5e4c4c(0x9ae),'mzQsV':_0x1a107b(0x94c),'JypSD':_0x5e4c4c(0x8fb),'kgpCm':_0x5e4c4c(0x3e1)+_0x25b929(0x6f6),'ceXZk':_0x1680f6(0x813),'pUYqC':_0x5e4c4c(0x30c),'kZeOK':_0x1c4134(0x4af),'KFCAT':function(_0x407e83,_0x45ed10){return _0x407e83>_0x45ed10;},'fxOtG':function(_0x569787,_0x355128){return _0x569787==_0x355128;},'jRjwe':_0x1680f6(0x382)+']','HhRXc':_0x1680f6(0x1c2),'WeQzV':_0x25b929(0x881)+_0x1a107b(0xb7a),'UheNq':_0x1680f6(0x90f)+_0x1c4134(0x3d8),'jfEiY':function(_0x130149){return _0x130149();},'sWJNs':_0x1c4134(0x90f)+_0x25b929(0x549)+_0x25b929(0x19a),'tEoIw':_0x5e4c4c(0x91c),'wBEUs':_0x25b929(0x187),'nvnlb':_0x1a107b(0xa5a),'pYoSo':_0x1680f6(0x752),'kwhlR':_0x1c4134(0x63c),'aukZQ':_0x1a107b(0x1df),'UxGcM':function(_0x1ebc36,_0x92c2cf){return _0x1ebc36!==_0x92c2cf;},'WxjWn':_0x1c4134(0x215),'VsJaI':function(_0x3cbc8e,_0xfb223c,_0x4b3442){return _0x3cbc8e(_0xfb223c,_0x4b3442);},'CWOfb':_0x1a107b(0xa89),'VranG':_0x1a107b(0x2ec),'PMDOn':_0x5e4c4c(0x13a),'ViHXf':_0x1a107b(0x172),'xMKnv':_0x25b929(0x947),'UzgvG':_0x25b929(0xa24),'BsvfK':_0x1680f6(0x7e6),'WBbIf':_0x25b929(0x3e1)+_0x25b929(0x3c6),'hnEMF':_0x25b929(0x54a),'AAwZX':_0x5e4c4c(0x7c1)+_0x1c4134(0x877),'rQTBB':_0x1c4134(0x3e1),'Gxjin':_0x1c4134(0x176),'ahxIk':_0x1a107b(0x155)+'','IsrEZ':_0x25b929(0x2b7)+_0x1a107b(0x818)+_0x1a107b(0x6aa)+_0x1680f6(0x539)+_0x1a107b(0x3b3)+_0x5e4c4c(0x58e)+_0x1680f6(0x1a4)+_0x1c4134(0xb4b),'zlEVb':_0x1a107b(0xf6)+_0x1c4134(0x9e3)+_0x25b929(0x9f1)+_0x1680f6(0x306)+_0x25b929(0x8f9)+_0x5e4c4c(0x6e1),'JYXkD':_0x1c4134(0x10d),'upJZM':_0x5e4c4c(0x32c),'KdSfR':_0x1a107b(0x6ec),'NePSG':_0x5e4c4c(0x8c7),'FyMHZ':_0x1c4134(0xb04),'ZxyXj':_0x1680f6(0x551),'lQfDX':function(_0x42637c,_0x3d9060){return _0x42637c(_0x3d9060);},'YfxpK':function(_0x1f1656,_0x4ab6e2){return _0x1f1656>_0x4ab6e2;},'yvHrL':_0x1a107b(0x90f)+_0x1680f6(0x653)},_0x56523f=_0x3674e6[_0x1a107b(0x975)][_0x25b929(0x5e3)+_0x5e4c4c(0x6b7)]();let _0x258949='',_0x394a6e='';_0x56523f[_0x1680f6(0x281)]()[_0x1c4134(0x3c1)](function _0x325096({done:_0x250f95,value:_0x1f2788}){const _0x3408f4=_0x1c4134,_0xb0fb4e=_0x5e4c4c,_0x162039=_0x1680f6,_0x2f382a=_0x1680f6,_0x32f5a9=_0x1680f6,_0x4f2b62={'gLLJz':_0x2a3418[_0x3408f4(0x1b7)],'SgcFH':function(_0x1dbd47,_0x504d6c){const _0x5a897d=_0x3408f4;return _0x2a3418[_0x5a897d(0x2b4)](_0x1dbd47,_0x504d6c);},'SCXvM':function(_0x93cd15,_0x3c7d4e){const _0x519cdf=_0x3408f4;return _0x2a3418[_0x519cdf(0x5ea)](_0x93cd15,_0x3c7d4e);},'unTRt':function(_0x458ba0,_0x2ed7a6){const _0x2b2b63=_0x3408f4;return _0x2a3418[_0x2b2b63(0x3cc)](_0x458ba0,_0x2ed7a6);},'WpODx':function(_0x213dcb,_0xb7cfcb){const _0x1b5977=_0x3408f4;return _0x2a3418[_0x1b5977(0x3cc)](_0x213dcb,_0xb7cfcb);},'Zpzzr':_0x2a3418[_0x3408f4(0xb03)],'dVFDI':function(_0x4c5b98,_0x42f261){const _0x572264=_0xb0fb4e;return _0x2a3418[_0x572264(0x93a)](_0x4c5b98,_0x42f261);},'uecvd':_0x2a3418[_0x162039(0x686)],'uYwEh':function(_0x3ea6a7,_0x59708b){const _0x270bd0=_0x162039;return _0x2a3418[_0x270bd0(0x335)](_0x3ea6a7,_0x59708b);},'beiDQ':_0x2a3418[_0x162039(0x8d8)],'MkzRi':_0x2a3418[_0x2f382a(0x5b9)],'aYYna':_0x2a3418[_0x162039(0x42c)],'rvKou':_0x2a3418[_0x32f5a9(0x847)],'lCSuB':_0x2a3418[_0x162039(0x794)],'PczEd':_0x2a3418[_0x32f5a9(0x5fb)],'sRqqX':_0x2a3418[_0x2f382a(0xafc)],'DVpRo':function(_0x331ed0,_0x330b58){const _0x46d5ab=_0x162039;return _0x2a3418[_0x46d5ab(0xafa)](_0x331ed0,_0x330b58);},'mbAps':function(_0x5f126d,_0xe4f3ba){const _0x2663c0=_0xb0fb4e;return _0x2a3418[_0x2663c0(0x6c1)](_0x5f126d,_0xe4f3ba);},'SppuH':_0x2a3418[_0x2f382a(0x855)],'ImnBL':_0x2a3418[_0x2f382a(0x509)],'ypEtx':_0x2a3418[_0x3408f4(0x6e5)],'xouQW':_0x2a3418[_0x32f5a9(0x7b0)],'iyMbB':function(_0x3a8dad){const _0x20cffa=_0x3408f4;return _0x2a3418[_0x20cffa(0x885)](_0x3a8dad);},'qMluV':_0x2a3418[_0x32f5a9(0xa2f)],'bSkfJ':_0x2a3418[_0xb0fb4e(0x5c5)],'iFJOd':_0x2a3418[_0x162039(0x426)],'qbqQl':_0x2a3418[_0x3408f4(0x38a)],'uIeXt':_0x2a3418[_0x3408f4(0x250)],'pqFMs':_0x2a3418[_0xb0fb4e(0x74f)],'Mblpw':_0x2a3418[_0xb0fb4e(0x801)],'QWquH':function(_0x58b9f0,_0x497573){const _0x9aaa60=_0x162039;return _0x2a3418[_0x9aaa60(0x6e4)](_0x58b9f0,_0x497573);},'NERNa':_0x2a3418[_0xb0fb4e(0x227)],'JbKXX':function(_0x3c308b,_0x2bb2fb,_0x6a8647){const _0x579d65=_0x32f5a9;return _0x2a3418[_0x579d65(0x440)](_0x3c308b,_0x2bb2fb,_0x6a8647);},'UcCAE':_0x2a3418[_0x2f382a(0x3d6)],'ArchQ':_0x2a3418[_0x3408f4(0x821)],'TutxG':_0x2a3418[_0x2f382a(0x2a5)],'INBGn':_0x2a3418[_0x32f5a9(0x646)],'IitPD':_0x2a3418[_0xb0fb4e(0x394)],'AxOEW':_0x2a3418[_0x162039(0x2bf)],'fpUCi':_0x2a3418[_0x162039(0x4c6)],'fccUp':_0x2a3418[_0x2f382a(0x1ab)],'aiTZN':_0x2a3418[_0x3408f4(0x672)],'KmWqw':function(_0x4342f1,_0xe44d77){const _0x43d64d=_0x2f382a;return _0x2a3418[_0x43d64d(0x2b4)](_0x4342f1,_0xe44d77);},'xeFnr':_0x2a3418[_0x2f382a(0x9c0)],'mehrX':_0x2a3418[_0x3408f4(0xaaa)],'gooIQ':_0x2a3418[_0xb0fb4e(0xab1)],'WTiSr':_0x2a3418[_0x3408f4(0x88d)],'dLqVQ':_0x2a3418[_0x32f5a9(0x340)],'SXiTS':_0x2a3418[_0xb0fb4e(0x5dc)],'zRJLb':_0x2a3418[_0xb0fb4e(0xb8c)],'tkrpu':_0x2a3418[_0x32f5a9(0x1ef)],'NkpjY':_0x2a3418[_0x162039(0x2c4)],'oOiye':_0x2a3418[_0x32f5a9(0x836)],'zonRX':_0x2a3418[_0x2f382a(0x70e)],'QFdsI':_0x2a3418[_0x3408f4(0xa59)],'jxfWA':function(_0x5e34f9,_0xea8b0e){const _0x22ed76=_0xb0fb4e;return _0x2a3418[_0x22ed76(0x806)](_0x5e34f9,_0xea8b0e);},'iPPSf':function(_0x1b8289,_0x2d0c81){const _0xfbce3e=_0x2f382a;return _0x2a3418[_0xfbce3e(0x3cc)](_0x1b8289,_0x2d0c81);},'ywQVw':function(_0x473426,_0x5b12c4){const _0x8efcf2=_0x3408f4;return _0x2a3418[_0x8efcf2(0x8c1)](_0x473426,_0x5b12c4);},'jHmPT':function(_0x1eb637,_0x5bd7e2){const _0x4ec414=_0xb0fb4e;return _0x2a3418[_0x4ec414(0x3cc)](_0x1eb637,_0x5bd7e2);},'gDGJo':_0x2a3418[_0x3408f4(0x747)]};if(_0x250f95)return;const _0x18ee84=new TextDecoder(_0x2a3418[_0x3408f4(0x42c)])[_0xb0fb4e(0x310)+'e'](_0x1f2788);return _0x18ee84[_0x32f5a9(0xa66)]()[_0x3408f4(0x31e)]('\x0a')[_0x2f382a(0x9ad)+'ch'](function(_0x13cc52){const _0x2ba08b=_0xb0fb4e,_0x143454=_0x162039,_0x5735c6=_0x2f382a,_0x20865e=_0x2f382a,_0x51aef6=_0x32f5a9,_0x49562f={'XHDBD':function(_0x41c7c9,_0x35ad43){const _0x243647=_0x31dd;return _0x4f2b62[_0x243647(0x299)](_0x41c7c9,_0x35ad43);},'Rlsda':function(_0xc98e88,_0x43c4c0){const _0x5b5fdc=_0x31dd;return _0x4f2b62[_0x5b5fdc(0xb61)](_0xc98e88,_0x43c4c0);},'gYbZS':function(_0x34fb60,_0x5e64bf){const _0x5d45c4=_0x31dd;return _0x4f2b62[_0x5d45c4(0x22f)](_0x34fb60,_0x5e64bf);},'xmMUM':function(_0x29c045,_0x4e5904){const _0x445802=_0x31dd;return _0x4f2b62[_0x445802(0x22f)](_0x29c045,_0x4e5904);},'qBRur':function(_0x5dc9d0,_0x779086){const _0x540a29=_0x31dd;return _0x4f2b62[_0x540a29(0x9d1)](_0x5dc9d0,_0x779086);},'MMIBJ':function(_0x315db1,_0x21c6e9){const _0x3440f7=_0x31dd;return _0x4f2b62[_0x3440f7(0x9d1)](_0x315db1,_0x21c6e9);},'NqUSt':_0x4f2b62[_0x2ba08b(0x1f8)],'wuICN':function(_0x5d818b,_0x3cac83){const _0x28ecca=_0x2ba08b;return _0x4f2b62[_0x28ecca(0x896)](_0x5d818b,_0x3cac83);},'KyVYX':function(_0x264a06,_0x7c34ad){const _0x2b9539=_0x2ba08b;return _0x4f2b62[_0x2b9539(0x299)](_0x264a06,_0x7c34ad);},'CIILt':_0x4f2b62[_0x2ba08b(0x7f8)],'EbuEy':function(_0x164bfb,_0x40e3de){const _0x35cb8c=_0x143454;return _0x4f2b62[_0x35cb8c(0x291)](_0x164bfb,_0x40e3de);},'Zbssk':_0x4f2b62[_0x143454(0x8f2)],'AQxBR':_0x4f2b62[_0x2ba08b(0xa6f)],'suDiV':_0x4f2b62[_0x5735c6(0xf3)],'ZjNDB':_0x4f2b62[_0x51aef6(0x8a9)],'YTGGO':_0x4f2b62[_0x143454(0x514)],'yCGvy':_0x4f2b62[_0x143454(0x756)],'FpjTi':_0x4f2b62[_0x20865e(0x89f)],'GEOOM':function(_0x38bb7f,_0x2c7d86){const _0x2e00f6=_0x2ba08b;return _0x4f2b62[_0x2e00f6(0x1d6)](_0x38bb7f,_0x2c7d86);},'zCzJX':function(_0x4ce99f,_0x36c219){const _0x46ffcb=_0x20865e;return _0x4f2b62[_0x46ffcb(0x572)](_0x4ce99f,_0x36c219);},'uKujS':_0x4f2b62[_0x2ba08b(0x787)],'ZxQVz':_0x4f2b62[_0x2ba08b(0x241)],'JyTld':_0x4f2b62[_0x2ba08b(0x7d4)],'sFwXr':_0x4f2b62[_0x143454(0x13e)],'hJGJZ':function(_0x179cbb){const _0x38b079=_0x143454;return _0x4f2b62[_0x38b079(0x84d)](_0x179cbb);},'wvPxW':_0x4f2b62[_0x2ba08b(0xfc)],'RLeZM':_0x4f2b62[_0x20865e(0xaec)],'YFjTe':_0x4f2b62[_0x2ba08b(0x26e)],'fGwLM':_0x4f2b62[_0x5735c6(0xa4a)],'MtCdq':_0x4f2b62[_0x51aef6(0x4fa)],'quJMp':_0x4f2b62[_0x2ba08b(0x874)],'eIilT':_0x4f2b62[_0x2ba08b(0xaa1)],'MYELD':function(_0x524777,_0x3f25da){const _0x2dff2b=_0x5735c6;return _0x4f2b62[_0x2dff2b(0x911)](_0x524777,_0x3f25da);},'vUNsr':_0x4f2b62[_0x2ba08b(0x5a5)],'VcxEZ':function(_0x5ef3d9,_0x4a5b7d,_0x5bde33){const _0xf19a6f=_0x2ba08b;return _0x4f2b62[_0xf19a6f(0x638)](_0x5ef3d9,_0x4a5b7d,_0x5bde33);},'NaKel':_0x4f2b62[_0x5735c6(0x174)],'gEAxJ':function(_0x3f1553,_0x4b5f33){const _0x453611=_0x2ba08b;return _0x4f2b62[_0x453611(0x291)](_0x3f1553,_0x4b5f33);},'jICpM':_0x4f2b62[_0x143454(0x288)],'kBffc':_0x4f2b62[_0x51aef6(0x7c5)],'niqQo':_0x4f2b62[_0x20865e(0xa36)],'olQZR':_0x4f2b62[_0x143454(0x66e)],'AYolQ':_0x4f2b62[_0x51aef6(0xb09)],'WKxmt':_0x4f2b62[_0x20865e(0xabf)],'pZDpJ':_0x4f2b62[_0x143454(0x921)],'UqhaD':_0x4f2b62[_0x51aef6(0xb59)],'khpim':_0x4f2b62[_0x5735c6(0x4c7)],'SVFkZ':function(_0x415541,_0x466436){const _0x2bba73=_0x20865e;return _0x4f2b62[_0x2bba73(0xb3c)](_0x415541,_0x466436);},'nSBSm':_0x4f2b62[_0x5735c6(0x114)],'WJXDH':function(_0x4a924f,_0x441575){const _0x2ff2e9=_0x20865e;return _0x4f2b62[_0x2ff2e9(0x9d1)](_0x4a924f,_0x441575);},'rKsCr':_0x4f2b62[_0x143454(0xa92)],'rrqdn':_0x4f2b62[_0x143454(0x4ef)],'ukbnH':_0x4f2b62[_0x51aef6(0x219)],'baRli':_0x4f2b62[_0x143454(0x381)],'RWUqI':function(_0x456caa,_0x3e17b4,_0x2c5ac6){const _0x496ca7=_0x20865e;return _0x4f2b62[_0x496ca7(0x638)](_0x456caa,_0x3e17b4,_0x2c5ac6);},'yaiuW':_0x4f2b62[_0x2ba08b(0xaf3)],'zWWfT':_0x4f2b62[_0x143454(0x656)],'kntBf':_0x4f2b62[_0x2ba08b(0xa14)],'PGJSg':_0x4f2b62[_0x2ba08b(0x97d)],'wGaNJ':_0x4f2b62[_0x20865e(0x265)],'iaHga':_0x4f2b62[_0x2ba08b(0xa32)],'ynTWY':_0x4f2b62[_0x51aef6(0x465)]};_0x258949='';if(_0x4f2b62[_0x2ba08b(0x1d6)](_0x13cc52[_0x5735c6(0x3fa)+'h'],-0x227f*0x1+0xbe3+0xb51*0x2))_0x258949=_0x13cc52[_0x51aef6(0x6fc)](-0x1442*0x1+0x8*0x1b4+0x6a8*0x1);if(_0x4f2b62[_0x5735c6(0x572)](_0x258949,_0x4f2b62[_0x143454(0x787)])){text_offset=-(0x1bc4+-0xca*-0x2c+-0x3e7b);const _0x59684d={'method':_0x4f2b62[_0x5735c6(0x4c7)],'headers':headers,'body':_0x4f2b62[_0x2ba08b(0x43c)](b64EncodeUnicode,JSON[_0x2ba08b(0x244)+_0x20865e(0x783)](prompt[_0x2ba08b(0x76c)]))};_0x4f2b62[_0x20865e(0x638)](fetch,_0x4f2b62[_0x2ba08b(0xaf3)],_0x59684d)[_0x2ba08b(0x3c1)](_0x544774=>{const _0x22b094=_0x2ba08b,_0x1e6669=_0x143454,_0x44f9fb=_0x2ba08b,_0x47064b=_0x20865e,_0x31b073=_0x51aef6,_0xe6bfd9=_0x544774[_0x22b094(0x975)][_0x22b094(0x5e3)+_0x1e6669(0x6b7)]();let _0x14c3e6='',_0x3f68b5='';_0xe6bfd9[_0x44f9fb(0x281)]()[_0x31b073(0x3c1)](function _0x1c3d7e({done:_0x12d7f2,value:_0x106b0c}){const _0x23b53e=_0x31b073,_0x90f058=_0x1e6669,_0x3e5e83=_0x47064b,_0x3cd735=_0x22b094,_0x5ec8ec=_0x1e6669,_0x2059b3={'vwUrZ':function(_0x3bda41,_0x3a79b4){const _0x3c2b13=_0x31dd;return _0x49562f[_0x3c2b13(0x8bb)](_0x3bda41,_0x3a79b4);},'gAOZk':function(_0x497def,_0x141246){const _0x42e875=_0x31dd;return _0x49562f[_0x42e875(0x32b)](_0x497def,_0x141246);},'xjNgD':function(_0x4843f8,_0x238b1c){const _0x4287cd=_0x31dd;return _0x49562f[_0x4287cd(0x411)](_0x4843f8,_0x238b1c);},'jxOwu':function(_0x17f05b,_0x1264d2){const _0x36f378=_0x31dd;return _0x49562f[_0x36f378(0x92d)](_0x17f05b,_0x1264d2);},'TTviu':function(_0x4800cd,_0x5d38db){const _0x46afb7=_0x31dd;return _0x49562f[_0x46afb7(0xb20)](_0x4800cd,_0x5d38db);},'vvxpX':function(_0x35aaf7,_0x3d7c03){const _0x1bf33a=_0x31dd;return _0x49562f[_0x1bf33a(0x8c9)](_0x35aaf7,_0x3d7c03);},'RBMXk':_0x49562f[_0x23b53e(0x54d)],'qcXcg':function(_0x3569d3,_0x554b9f){const _0x167b51=_0x23b53e;return _0x49562f[_0x167b51(0x51e)](_0x3569d3,_0x554b9f);},'qPPno':function(_0x4f95a2,_0x33db02){const _0x1c40cf=_0x23b53e;return _0x49562f[_0x1c40cf(0x14b)](_0x4f95a2,_0x33db02);},'HiExR':_0x49562f[_0x23b53e(0x2ee)],'NwuaN':function(_0x1dd4e5,_0x1832a6){const _0x7d2506=_0x23b53e;return _0x49562f[_0x7d2506(0x1de)](_0x1dd4e5,_0x1832a6);},'CSqXw':_0x49562f[_0x23b53e(0xff)],'DmdiX':_0x49562f[_0x3cd735(0x603)],'QQopN':_0x49562f[_0x90f058(0x10a)],'YLLRc':_0x49562f[_0x90f058(0xa55)],'YfhrR':_0x49562f[_0x90f058(0x457)],'qZppU':function(_0xc75b64,_0x179fcd){const _0x34b581=_0x5ec8ec;return _0x49562f[_0x34b581(0x1de)](_0xc75b64,_0x179fcd);},'sCScC':_0x49562f[_0x3cd735(0x6a3)],'aZTnV':_0x49562f[_0x5ec8ec(0x99a)],'HjNkA':function(_0x523c5b,_0xfa1758){const _0x4d408c=_0x5ec8ec;return _0x49562f[_0x4d408c(0x6b0)](_0x523c5b,_0xfa1758);},'uYNPW':function(_0xe37f03,_0xae96f9){const _0x2a3773=_0x5ec8ec;return _0x49562f[_0x2a3773(0x39f)](_0xe37f03,_0xae96f9);},'HTUoI':_0x49562f[_0x3e5e83(0x94b)],'lfwXT':_0x49562f[_0x3e5e83(0xa78)],'VMOsO':_0x49562f[_0x90f058(0x471)],'eIatc':_0x49562f[_0x90f058(0xa42)],'KxuBA':function(_0x59e053){const _0x51ed97=_0x23b53e;return _0x49562f[_0x51ed97(0x3d1)](_0x59e053);},'CqqqQ':_0x49562f[_0x23b53e(0x230)],'gzVqB':_0x49562f[_0x3e5e83(0x9e1)],'PUmKZ':_0x49562f[_0x90f058(0x8d6)],'kkEtz':_0x49562f[_0x3e5e83(0x224)],'VRhyW':function(_0x136fc3,_0x4b1f6b){const _0x111a48=_0x3e5e83;return _0x49562f[_0x111a48(0xb20)](_0x136fc3,_0x4b1f6b);},'Eazao':_0x49562f[_0x3cd735(0x3e2)],'sKFjq':_0x49562f[_0x90f058(0x9d5)],'IOYDu':_0x49562f[_0x3cd735(0x31b)],'aXCTi':function(_0x8a7e04,_0x36befd){const _0x1df100=_0x23b53e;return _0x49562f[_0x1df100(0x91d)](_0x8a7e04,_0x36befd);},'MkcZK':_0x49562f[_0x23b53e(0x662)],'BohbM':function(_0x179717,_0x32d96c,_0x2945bf){const _0x30a1f3=_0x23b53e;return _0x49562f[_0x30a1f3(0x9b4)](_0x179717,_0x32d96c,_0x2945bf);},'AsKev':_0x49562f[_0x3e5e83(0x937)],'jZbuy':function(_0x19c308,_0x3c7ee9){const _0x404971=_0x3e5e83;return _0x49562f[_0x404971(0x517)](_0x19c308,_0x3c7ee9);},'AAoZD':_0x49562f[_0x3cd735(0x8a6)],'UTNgq':_0x49562f[_0x90f058(0xb40)],'BqvOM':_0x49562f[_0x23b53e(0x664)],'UqRYP':_0x49562f[_0x23b53e(0x39d)],'vlKYy':_0x49562f[_0x90f058(0x8e0)],'NlIdH':function(_0x3cd5c0,_0x568d86){const _0x5a907d=_0x3e5e83;return _0x49562f[_0x5a907d(0x39f)](_0x3cd5c0,_0x568d86);},'wGdfk':_0x49562f[_0x5ec8ec(0xac4)],'FoBFr':_0x49562f[_0x3cd735(0x1e0)],'agkOq':_0x49562f[_0x3e5e83(0x47c)],'RbKjD':_0x49562f[_0x3cd735(0x6f0)],'RqAgu':function(_0x2ea092,_0x562d39){const _0x23d867=_0x3cd735;return _0x49562f[_0x23d867(0xb33)](_0x2ea092,_0x562d39);},'QPQNx':_0x49562f[_0x3e5e83(0x40e)],'KoYAD':function(_0x5ec0ad,_0x127037){const _0x3b774c=_0x3e5e83;return _0x49562f[_0x3b774c(0xb73)](_0x5ec0ad,_0x127037);},'ATKPd':_0x49562f[_0x23b53e(0x52b)],'nGiyo':_0x49562f[_0x90f058(0x82c)],'qhBcW':function(_0x2a949a,_0x2fe464){const _0x1ae4ae=_0x23b53e;return _0x49562f[_0x1ae4ae(0x411)](_0x2a949a,_0x2fe464);},'GSYSu':_0x49562f[_0x5ec8ec(0x554)],'XmtxK':_0x49562f[_0x90f058(0x857)],'POfMr':function(_0x202ee7,_0x2376d6,_0x5f23d8){const _0x266bea=_0x3cd735;return _0x49562f[_0x266bea(0xb13)](_0x202ee7,_0x2376d6,_0x5f23d8);},'lCbMU':_0x49562f[_0x90f058(0x4c2)],'oOvKx':function(_0x2e91f8,_0x329514){const _0x3257cd=_0x5ec8ec;return _0x49562f[_0x3257cd(0x91d)](_0x2e91f8,_0x329514);},'LiulQ':_0x49562f[_0x90f058(0x186)],'NLXsW':function(_0x462d59,_0x48e8c3){const _0x1ef199=_0x3cd735;return _0x49562f[_0x1ef199(0x91d)](_0x462d59,_0x48e8c3);},'nCzLf':_0x49562f[_0x5ec8ec(0x1e8)],'iYuMz':_0x49562f[_0x5ec8ec(0x28c)],'sZuzh':_0x49562f[_0x3e5e83(0x104)],'BfbKS':_0x49562f[_0x3cd735(0x634)],'DWrhQ':function(_0x859c4,_0x19ddc9){const _0x11d935=_0x5ec8ec;return _0x49562f[_0x11d935(0x91d)](_0x859c4,_0x19ddc9);},'oIiys':_0x49562f[_0x3cd735(0xa7d)],'PVrgw':function(_0x32e46b,_0x17a42){const _0x57ed50=_0x3cd735;return _0x49562f[_0x57ed50(0x8bb)](_0x32e46b,_0x17a42);}};if(_0x12d7f2)return;const _0xb9a57c=new TextDecoder(_0x49562f[_0x23b53e(0x10a)])[_0x3e5e83(0x310)+'e'](_0x106b0c);return _0xb9a57c[_0x23b53e(0xa66)]()[_0x3cd735(0x31e)]('\x0a')[_0x5ec8ec(0x9ad)+'ch'](function(_0xb84e5d){const _0x598a98=_0x90f058,_0xafdca2=_0x90f058,_0x3222df=_0x23b53e,_0x3298e7=_0x5ec8ec,_0x3e4509=_0x23b53e,_0x5ab36c={'BIUBV':function(_0x3b8abd,_0x61a461){const _0x878f8=_0x31dd;return _0x2059b3[_0x878f8(0xa9d)](_0x3b8abd,_0x61a461);},'EvOrf':function(_0x599de3,_0xd0ad78){const _0xb8777f=_0x31dd;return _0x2059b3[_0xb8777f(0x3e3)](_0x599de3,_0xd0ad78);},'lojXm':_0x2059b3[_0x598a98(0x1ba)],'NFquf':function(_0x1877fb,_0x4289e1){const _0x142788=_0x598a98;return _0x2059b3[_0x142788(0x5b3)](_0x1877fb,_0x4289e1);},'ZeaKq':_0x2059b3[_0xafdca2(0x179)],'UDhYV':function(_0x34481c,_0x21edba){const _0x1cd7bb=_0x598a98;return _0x2059b3[_0x1cd7bb(0x7f4)](_0x34481c,_0x21edba);},'FeOXg':_0x2059b3[_0xafdca2(0xa5c)],'gWxfP':_0x2059b3[_0x3298e7(0x675)],'LLsQT':_0x2059b3[_0xafdca2(0x95a)],'oZPNz':_0x2059b3[_0xafdca2(0x423)],'ufTRF':_0x2059b3[_0xafdca2(0x3f2)],'KaILM':function(_0x67b2b0,_0x3ecf0d){const _0x1d6852=_0x3e4509;return _0x2059b3[_0x1d6852(0x21b)](_0x67b2b0,_0x3ecf0d);},'HXCPO':_0x2059b3[_0x3e4509(0x759)],'gMMAd':_0x2059b3[_0xafdca2(0x6e9)],'Ogrgu':function(_0x290566,_0x2cf7db){const _0x320d5c=_0x598a98;return _0x2059b3[_0x320d5c(0x422)](_0x290566,_0x2cf7db);},'lcYRM':function(_0x297468,_0x2b8621){const _0x406dcb=_0x3298e7;return _0x2059b3[_0x406dcb(0x75b)](_0x297468,_0x2b8621);},'msAdh':_0x2059b3[_0x3298e7(0x11a)],'XOPCW':function(_0x385aa4,_0xb9986){const _0xc56010=_0xafdca2;return _0x2059b3[_0xc56010(0x21b)](_0x385aa4,_0xb9986);},'ZFVTZ':_0x2059b3[_0x3298e7(0x3ac)],'wpRih':_0x2059b3[_0x3298e7(0x58d)],'IKkKH':_0x2059b3[_0x598a98(0x8e4)],'uaGpP':function(_0xabff5f){const _0x34ea65=_0xafdca2;return _0x2059b3[_0x34ea65(0x501)](_0xabff5f);},'MbtpQ':_0x2059b3[_0x3222df(0x3e5)],'mGMLV':_0x2059b3[_0x3298e7(0xb19)],'NCxgf':_0x2059b3[_0xafdca2(0x20e)],'XUdWS':_0x2059b3[_0xafdca2(0xea)],'MTYnj':function(_0x26e24a,_0x430731){const _0x19ddaa=_0x3222df;return _0x2059b3[_0x19ddaa(0x364)](_0x26e24a,_0x430731);},'araZg':_0x2059b3[_0x3298e7(0x9e0)],'puBna':_0x2059b3[_0x598a98(0x408)],'fCGFS':_0x2059b3[_0x3298e7(0x654)],'pTviq':function(_0x3243e6,_0x2b9a60){const _0x1af169=_0x3e4509;return _0x2059b3[_0x1af169(0x73e)](_0x3243e6,_0x2b9a60);},'hBNgX':_0x2059b3[_0xafdca2(0x838)],'xJdJE':function(_0x52f48a,_0x263015,_0x30f0c4){const _0x1430c7=_0x598a98;return _0x2059b3[_0x1430c7(0x4ab)](_0x52f48a,_0x263015,_0x30f0c4);},'ZPLph':_0x2059b3[_0xafdca2(0x1ad)],'ilgBL':function(_0x1ae080,_0x57338e){const _0x28121e=_0x3e4509;return _0x2059b3[_0x28121e(0x16f)](_0x1ae080,_0x57338e);},'YktDS':_0x2059b3[_0x3298e7(0x623)],'qySiU':_0x2059b3[_0xafdca2(0x3ab)],'otDvf':_0x2059b3[_0x3e4509(0x800)],'eETlG':_0x2059b3[_0x598a98(0x886)],'OLEto':_0x2059b3[_0x3298e7(0xa83)]};_0x14c3e6='';if(_0x2059b3[_0xafdca2(0x422)](_0xb84e5d[_0x598a98(0x3fa)+'h'],-0x32*-0x65+0x1*-0x12c4+-0xf0))_0x14c3e6=_0xb84e5d[_0x3e4509(0x6fc)](0x149+0x1e5*-0x13+0x22bc*0x1);if(_0x2059b3[_0x3298e7(0x743)](_0x14c3e6,_0x2059b3[_0x3298e7(0x11a)])){if(_0x2059b3[_0x3222df(0x73e)](_0x2059b3[_0x598a98(0x45d)],_0x2059b3[_0x3e4509(0x578)])){document[_0x3222df(0x7b7)+_0x3e4509(0x71d)+_0x3e4509(0x2aa)](_0x2059b3[_0x3e4509(0xb25)])[_0x598a98(0x209)+_0x3e4509(0x6c4)]='',_0x2059b3[_0x3222df(0x501)](chatmore);const _0x2ecc85={'method':_0x2059b3[_0x3e4509(0x21a)],'headers':headers,'body':_0x2059b3[_0x3e4509(0x40f)](b64EncodeUnicode,JSON[_0x3e4509(0x244)+_0x3298e7(0x783)]({'messages':[{'role':_0x2059b3[_0xafdca2(0x1ae)],'content':_0x2059b3[_0x3222df(0x330)](document[_0x3222df(0x7b7)+_0x3e4509(0x71d)+_0x3298e7(0x2aa)](_0x2059b3[_0x3222df(0x57c)])[_0x3e4509(0x209)+_0xafdca2(0x6c4)][_0x3e4509(0x28a)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x3298e7(0x28a)+'ce'](/<hr.*/gs,'')[_0x3e4509(0x28a)+'ce'](/<[^>]+>/g,'')[_0x3222df(0x28a)+'ce'](/\n\n/g,'\x0a'),'\x0a')},{'role':_0x2059b3[_0x3298e7(0xa52)],'content':_0x2059b3[_0x3298e7(0x37a)](_0x2059b3[_0x3e4509(0x735)](_0x2059b3[_0x3222df(0x2b9)],original_search_query),_0x2059b3[_0x3298e7(0xa8c)])}][_0x598a98(0xa6a)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.5,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':!![]}))};_0x2059b3[_0x3298e7(0x3b7)](fetch,_0x2059b3[_0xafdca2(0x2b3)],_0x2ecc85)[_0x3298e7(0x3c1)](_0x449a14=>{const _0x1644f6=_0x3222df,_0x4099b1=_0x3222df,_0x5c34df=_0x3298e7,_0x3f0eda=_0x598a98,_0x3b5e29=_0x3298e7,_0x38db66={'sInEZ':_0x5ab36c[_0x1644f6(0x95e)],'Ophac':_0x5ab36c[_0x4099b1(0x566)],'cLJDX':function(_0x24d104,_0x3b26c5){const _0x12f1dd=_0x4099b1;return _0x5ab36c[_0x12f1dd(0x953)](_0x24d104,_0x3b26c5);},'bnWeS':_0x5ab36c[_0x1644f6(0x78e)],'GjEmW':function(_0x18c277,_0x1b1054){const _0x19f355=_0x4099b1;return _0x5ab36c[_0x19f355(0x442)](_0x18c277,_0x1b1054);},'NkfZR':_0x5ab36c[_0x1644f6(0x49d)],'OiSJO':_0x5ab36c[_0x4099b1(0x9c1)],'rRUJf':function(_0x322249,_0x3617c9){const _0x1d7e98=_0x5c34df;return _0x5ab36c[_0x1d7e98(0x2a0)](_0x322249,_0x3617c9);},'UTXZm':function(_0x12aa61,_0x7973d1){const _0x4d4025=_0x4099b1;return _0x5ab36c[_0x4d4025(0x87c)](_0x12aa61,_0x7973d1);},'zeisx':_0x5ab36c[_0x4099b1(0xa3a)],'dqqTO':function(_0x309abc,_0x369b4e){const _0x4a1aed=_0x3f0eda;return _0x5ab36c[_0x4a1aed(0x500)](_0x309abc,_0x369b4e);},'FTHaU':_0x5ab36c[_0x3f0eda(0x30e)],'LuHGp':_0x5ab36c[_0x3b5e29(0x737)],'tSpFa':_0x5ab36c[_0x5c34df(0x19f)],'EfMsu':function(_0x2ba8f9){const _0x49417c=_0x5c34df;return _0x5ab36c[_0x49417c(0xa44)](_0x2ba8f9);},'SzEDf':_0x5ab36c[_0x3b5e29(0x312)],'fZfKF':function(_0x33ad75,_0x5dfb89){const _0x3e08de=_0x5c34df;return _0x5ab36c[_0x3e08de(0x500)](_0x33ad75,_0x5dfb89);},'Hzhrs':_0x5ab36c[_0x5c34df(0x12f)],'HUecN':_0x5ab36c[_0x4099b1(0x5cc)],'LrQMr':function(_0x462193,_0xb527cd){const _0x2e8e1a=_0x1644f6;return _0x5ab36c[_0x2e8e1a(0x500)](_0x462193,_0xb527cd);},'NOgLN':_0x5ab36c[_0x4099b1(0x981)],'ULOEC':function(_0x34a08a,_0x53e92c){const _0x38d796=_0x3f0eda;return _0x5ab36c[_0x38d796(0x21d)](_0x34a08a,_0x53e92c);},'xIZJI':_0x5ab36c[_0x3f0eda(0x916)],'Erngf':_0x5ab36c[_0x4099b1(0x5e2)],'PLIlt':_0x5ab36c[_0x3f0eda(0x136)],'QUhmo':function(_0x358338,_0x2940bd){const _0x16fc2c=_0x3b5e29;return _0x5ab36c[_0x16fc2c(0x481)](_0x358338,_0x2940bd);},'OnOGZ':_0x5ab36c[_0x3b5e29(0x4f2)],'wLtXQ':function(_0x34c883,_0x1ab74e,_0x36876d){const _0x2fd0e9=_0x1644f6;return _0x5ab36c[_0x2fd0e9(0x222)](_0x34c883,_0x1ab74e,_0x36876d);},'xEnTS':function(_0x49363f,_0x8819b4){const _0x16f42e=_0x5c34df;return _0x5ab36c[_0x16f42e(0x2b2)](_0x49363f,_0x8819b4);},'RHLAg':_0x5ab36c[_0x3f0eda(0x70c)]};if(_0x5ab36c[_0x4099b1(0x745)](_0x5ab36c[_0x3b5e29(0x4d8)],_0x5ab36c[_0x5c34df(0xac1)]))_0x2840b3[_0x5c34df(0x7b7)+_0x3f0eda(0x71d)+_0x5c34df(0x2aa)](_0x38db66[_0x1644f6(0x55b)])[_0x5c34df(0xb7f)+_0x4099b1(0x969)]=_0x4bcba5[_0x3f0eda(0x7b7)+_0x3b5e29(0x71d)+_0x5c34df(0x2aa)](_0x38db66[_0x5c34df(0x55b)])[_0x1644f6(0xb7f)+_0x3b5e29(0x577)+'ht'];else{const _0x2ac5c1=_0x449a14[_0x3b5e29(0x975)][_0x3f0eda(0x5e3)+_0x1644f6(0x6b7)]();let _0x2f865b='',_0x4f5e85='';_0x2ac5c1[_0x3b5e29(0x281)]()[_0x1644f6(0x3c1)](function _0x5f2536({done:_0x4d8b5d,value:_0x21590b}){const _0x59457f=_0x1644f6,_0x52c30a=_0x1644f6,_0x4398b0=_0x3b5e29,_0x3fb696=_0x1644f6,_0x2b2fcd=_0x1644f6,_0x44dd94={'MxJso':function(_0x546e40,_0x26126d){const _0x4a255e=_0x31dd;return _0x5ab36c[_0x4a255e(0x79b)](_0x546e40,_0x26126d);},'ujiOJ':function(_0x2099bf,_0x139069){const _0x967163=_0x31dd;return _0x5ab36c[_0x967163(0x2b2)](_0x2099bf,_0x139069);},'tVogr':_0x5ab36c[_0x59457f(0x78e)],'Aprcv':function(_0x3bf919,_0x40d0ac){const _0x629c3=_0x59457f;return _0x5ab36c[_0x629c3(0x953)](_0x3bf919,_0x40d0ac);},'kqyHp':_0x5ab36c[_0x52c30a(0x2d3)]};if(_0x5ab36c[_0x4398b0(0x5d0)](_0x5ab36c[_0x59457f(0x51f)],_0x5ab36c[_0x4398b0(0xb6a)]))_0x450080=_0x38db66[_0x2b2fcd(0x2be)];else{if(_0x4d8b5d)return;const _0x13b3d8=new TextDecoder(_0x5ab36c[_0x2b2fcd(0x27e)])[_0x4398b0(0x310)+'e'](_0x21590b);return _0x13b3d8[_0x4398b0(0xa66)]()[_0x2b2fcd(0x31e)]('\x0a')[_0x3fb696(0x9ad)+'ch'](function(_0x51ffba){const _0x514a60=_0x2b2fcd,_0x4170e4=_0x2b2fcd,_0x6741dc=_0x2b2fcd,_0x1caac6=_0x2b2fcd,_0xbbb443=_0x3fb696,_0x282981={'tOZgC':function(_0x2fdc34,_0x4427f3){const _0x52d670=_0x31dd;return _0x38db66[_0x52d670(0xb6b)](_0x2fdc34,_0x4427f3);},'NvOJy':_0x38db66[_0x514a60(0x5f1)]};if(_0x38db66[_0x4170e4(0xf7)](_0x38db66[_0x514a60(0x197)],_0x38db66[_0x4170e4(0x48d)])){_0x4e2f13=_0x44dd94[_0x1caac6(0x4d7)](_0x12b987,0x1711+-0xfd0*-0x2+-0x36b0);if(!_0x3fe48f)throw _0x2fd00a;return _0x44dd94[_0x4170e4(0x18d)](_0x3c8190,0x1*0x60d+-0x32f+-0xea)[_0x4170e4(0x3c1)](()=>_0xadb79e(_0x5e2754,_0x3c338f,_0x3ea1c3));}else{_0x2f865b='';if(_0x38db66[_0x4170e4(0x3e6)](_0x51ffba[_0xbbb443(0x3fa)+'h'],0x11b2+-0x1a8b+0x8df))_0x2f865b=_0x51ffba[_0x1caac6(0x6fc)](-0x2*-0xc32+0x7*0x11c+0x392*-0x9);if(_0x38db66[_0x514a60(0x730)](_0x2f865b,_0x38db66[_0x6741dc(0x396)])){if(_0x38db66[_0x4170e4(0xa13)](_0x38db66[_0x4170e4(0x2d9)],_0x38db66[_0xbbb443(0x2d9)])){const _0x519f73=_0x38db66[_0xbbb443(0xac9)][_0x1caac6(0x31e)]('|');let _0x18f1a8=0x126a*0x1+-0x1acd+-0x13*-0x71;while(!![]){switch(_0x519f73[_0x18f1a8++]){case'0':document[_0x514a60(0x960)+_0x514a60(0x94a)+_0x514a60(0x6bd)](_0x38db66[_0x6741dc(0x526)])[_0x514a60(0x258)][_0x4170e4(0x66f)+'ay']='';continue;case'1':_0x38db66[_0x1caac6(0x9d7)](proxify);continue;case'2':return;case'3':lock_chat=-0xf86+-0x57f*-0x5+-0x1*0xbf5;continue;case'4':document[_0x4170e4(0x960)+_0x514a60(0x94a)+_0x4170e4(0x6bd)](_0x38db66[_0x6741dc(0x7d1)])[_0x4170e4(0x258)][_0x1caac6(0x66f)+'ay']='';continue;}break;}}else _0x223241=_0x124253[_0x4170e4(0x1f6)](_0x195b1d)[_0x44dd94[_0x1caac6(0x1bd)]],_0x25c800='';}let _0x1f9af0;try{if(_0x38db66[_0x1caac6(0x9e2)](_0x38db66[_0xbbb443(0xb94)],_0x38db66[_0x514a60(0x189)]))try{_0x200d54=_0x5d5767[_0x514a60(0x1f6)](_0x282981[_0x514a60(0x226)](_0x1a1eb0,_0x55871c))[_0x282981[_0x6741dc(0x455)]],_0x47baa0='';}catch(_0x3b0004){_0x417bb6=_0x50ac14[_0x4170e4(0x1f6)](_0x28a7fb)[_0x282981[_0x514a60(0x455)]],_0x153d83='';}else try{_0x38db66[_0x514a60(0x9d2)](_0x38db66[_0x6741dc(0x193)],_0x38db66[_0x6741dc(0x193)])?(_0x1f9af0=JSON[_0x1caac6(0x1f6)](_0x38db66[_0x6741dc(0x963)](_0x4f5e85,_0x2f865b))[_0x38db66[_0x6741dc(0x5f1)]],_0x4f5e85=''):(_0x518237=_0x71bd9a[_0xbbb443(0x1f6)](_0x44dd94[_0x6741dc(0x9d8)](_0xc45bbb,_0x299134))[_0x44dd94[_0xbbb443(0x1bd)]],_0x2c8002='');}catch(_0x5264fc){if(_0x38db66[_0xbbb443(0x9e2)](_0x38db66[_0x4170e4(0xa80)],_0x38db66[_0x514a60(0xa4e)]))return!![];else _0x1f9af0=JSON[_0x4170e4(0x1f6)](_0x2f865b)[_0x38db66[_0x514a60(0x5f1)]],_0x4f5e85='';}}catch(_0x3fe15e){if(_0x38db66[_0x514a60(0x9d2)](_0x38db66[_0xbbb443(0x124)],_0x38db66[_0x4170e4(0x124)]))_0x4f5e85+=_0x2f865b;else return-0x1*0x329+-0x1993+-0x1*-0x1cbd;}if(_0x1f9af0&&_0x38db66[_0x4170e4(0x3e6)](_0x1f9af0[_0x4170e4(0x3fa)+'h'],-0x145f+0x1561+-0x81*0x2)&&_0x1f9af0[-0x43*-0x7d+0x1f8+-0x22af][_0xbbb443(0x107)][_0x6741dc(0x18e)+'nt']){if(_0x38db66[_0x4170e4(0x7f3)](_0x38db66[_0x1caac6(0x872)],_0x38db66[_0x6741dc(0x872)]))return _0x4d2f2e[_0x1caac6(0x65f)+_0x6741dc(0x768)]()[_0xbbb443(0x357)+'h'](LsaUxC[_0x4170e4(0xb16)])[_0x6741dc(0x65f)+_0x514a60(0x768)]()[_0x1caac6(0x444)+_0x6741dc(0x413)+'r'](_0x238869)[_0x6741dc(0x357)+'h'](LsaUxC[_0xbbb443(0xb16)]);else chatTextRawPlusComment+=_0x1f9af0[-0x1*-0x1b8f+-0x1086+-0x19*0x71][_0x514a60(0x107)][_0xbbb443(0x18e)+'nt'];}_0x38db66[_0x4170e4(0x685)](markdownToHtml,_0x38db66[_0x6741dc(0x234)](beautify,chatTextRawPlusComment),document[_0x1caac6(0x960)+_0xbbb443(0x94a)+_0x1caac6(0x6bd)](_0x38db66[_0xbbb443(0x15c)]));}}),_0x2ac5c1[_0x52c30a(0x281)]()[_0x3fb696(0x3c1)](_0x5f2536);}});}})[_0x3298e7(0x51b)](_0x3ad5b0=>{const _0x590ec3=_0x3e4509,_0x307225=_0x3e4509,_0x549cb8=_0x598a98,_0x5bb60d=_0x598a98,_0xc30757=_0x3e4509;if(_0x5ab36c[_0x590ec3(0x481)](_0x5ab36c[_0x307225(0x203)],_0x5ab36c[_0x307225(0x322)]))console[_0x5bb60d(0x7ba)](_0x5ab36c[_0x590ec3(0xa7c)],_0x3ad5b0);else return![];});return;}else _0x3a14f2='图片';}let _0xddfdf1;try{if(_0x2059b3[_0x3298e7(0x1f4)](_0x2059b3[_0xafdca2(0x736)],_0x2059b3[_0x3222df(0x736)])){if(_0x17fb5b)return _0x4390e9;else WFgpje[_0xafdca2(0x562)](_0x586416,0x1e5d*0x1+-0x168f+-0x7ce);}else try{_0x2059b3[_0x3298e7(0x610)](_0x2059b3[_0x3298e7(0x496)],_0x2059b3[_0x3298e7(0x496)])?_0x58a60c+='':(_0xddfdf1=JSON[_0x3e4509(0x1f6)](_0x2059b3[_0x3e4509(0x37a)](_0x3f68b5,_0x14c3e6))[_0x2059b3[_0x3222df(0x1ba)]],_0x3f68b5='');}catch(_0x544727){if(_0x2059b3[_0x598a98(0x7f4)](_0x2059b3[_0xafdca2(0x808)],_0x2059b3[_0x598a98(0x808)]))_0xddfdf1=JSON[_0x3e4509(0x1f6)](_0x14c3e6)[_0x2059b3[_0xafdca2(0x1ba)]],_0x3f68b5='';else{if(_0x2059b3[_0x3222df(0x87d)](_0x2059b3[_0x3e4509(0x5b3)](_0x2059b3[_0xafdca2(0x1f7)](_0x23692c,_0x231fad[_0x16b74f]),'\x0a')[_0x3298e7(0x3fa)+'h'],0x1ccb+-0x16a4*-0x1+-0x2ebf))_0xfb452f=_0x2059b3[_0xafdca2(0x37a)](_0x2059b3[_0x3e4509(0x9ab)](_0x50eaeb,_0x5dbb54[_0x38983f]),'\x0a');_0x31414d=_0x2059b3[_0xafdca2(0x37a)](_0x2fb5b4,-0xef+-0x171*-0x3+-0x363);}}}catch(_0x21d0a3){_0x2059b3[_0x3298e7(0x1f4)](_0x2059b3[_0x3222df(0x56c)],_0x2059b3[_0x3e4509(0x33b)])?_0x3f68b5+=_0x14c3e6:(_0x1c8f01=_0x214685[_0x3298e7(0x1f6)](_0x3b3c3d)[_0x2059b3[_0xafdca2(0x1ba)]],_0x37e4ec='');}_0xddfdf1&&_0x2059b3[_0xafdca2(0x422)](_0xddfdf1[_0xafdca2(0x3fa)+'h'],-0x1*-0x1a6+-0x45a+0x4*0xad)&&_0xddfdf1[-0xc68+0x3d*0x37+0x1*-0xb3][_0x3298e7(0x107)][_0x598a98(0x18e)+'nt']&&(_0x2059b3[_0x3222df(0xb3f)](_0x2059b3[_0x598a98(0xab5)],_0x2059b3[_0x3222df(0xab5)])?_0x280ace[_0x3222df(0x522)](_0x4f1c73):chatTextRaw+=_0xddfdf1[0x131a*-0x2+-0x1163+0x3797][_0x3298e7(0x107)][_0x3e4509(0x18e)+'nt']),_0x2059b3[_0x3e4509(0x4ab)](markdownToHtml,_0x2059b3[_0x598a98(0x5fa)](beautify,chatTextRaw),document[_0x3298e7(0x960)+_0x3e4509(0x94a)+_0xafdca2(0x6bd)](_0x2059b3[_0x3298e7(0x1ad)]));}),_0xe6bfd9[_0x5ec8ec(0x281)]()[_0x3cd735(0x3c1)](_0x1c3d7e);});})[_0x5735c6(0x51b)](_0x3cb3db=>{const _0x4ad0be=_0x51aef6,_0x253722=_0x2ba08b;console[_0x4ad0be(0x7ba)](_0x4f2b62[_0x4ad0be(0xb09)],_0x3cb3db);});return;}let _0x3238e3;try{try{_0x3238e3=JSON[_0x143454(0x1f6)](_0x4f2b62[_0x5735c6(0x6a0)](_0x394a6e,_0x258949))[_0x4f2b62[_0x2ba08b(0x1f8)]],_0x394a6e='';}catch(_0x2f1f02){_0x3238e3=JSON[_0x5735c6(0x1f6)](_0x258949)[_0x4f2b62[_0x2ba08b(0x1f8)]],_0x394a6e='';}}catch(_0x152f3f){_0x394a6e+=_0x258949;}_0x3238e3&&_0x4f2b62[_0x2ba08b(0x22c)](_0x3238e3[_0x51aef6(0x3fa)+'h'],-0x25bd+0x1d4d+0x870)&&_0x3238e3[-0x1042+0x3d*-0x8b+0x3161][_0x20865e(0x107)][_0x5735c6(0x18e)+'nt']&&(chatTextRawIntro+=_0x3238e3[-0x1ab2+-0x26fd+0x41af][_0x143454(0x107)][_0x2ba08b(0x18e)+'nt']),_0x4f2b62[_0x20865e(0x638)](markdownToHtml,_0x4f2b62[_0x143454(0x299)](beautify,_0x4f2b62[_0x5735c6(0x3fd)](chatTextRawIntro,'\x0a')),document[_0x20865e(0x960)+_0x5735c6(0x94a)+_0x143454(0x6bd)](_0x4f2b62[_0x51aef6(0x597)]));}),_0x56523f[_0x2f382a(0x281)]()[_0x2f382a(0x3c1)](_0x325096);});})[_0x55d98c(0x51b)](_0x47c9ee=>{const _0x1e42a2=_0x55d98c,_0x519ec2=_0x183957,_0x3f34cb=_0x4e39c5,_0x7b21fd=_0x342a2e,_0x5a3ead={};_0x5a3ead[_0x1e42a2(0x45f)]=_0x519ec2(0x765)+':';const _0x10e9b0=_0x5a3ead;console[_0x519ec2(0x7ba)](_0x10e9b0[_0x3f34cb(0x45f)],_0x47c9ee);});function _0x74e0bb(_0x5d1b4d){const _0x1e80ef=_0x342a2e,_0x57ef61=_0x55d98c,_0x1fee2d=_0x55d98c,_0x456442=_0x55d98c,_0x453413=_0x183957,_0x5d28ce={'gCjdT':function(_0xf7fc26,_0x359800){return _0xf7fc26===_0x359800;},'oOpBR':_0x1e80ef(0x244)+'g','EIFxU':_0x57ef61(0x26f)+_0x1fee2d(0x4a9)+_0x1e80ef(0x6cc),'EoCnf':_0x453413(0x1ec)+'er','kvQXi':function(_0x325037,_0x206731){return _0x325037!==_0x206731;},'WGeDq':function(_0xf060bf,_0x5c5aee){return _0xf060bf+_0x5c5aee;},'ROpbc':function(_0x365994,_0x1734ac){return _0x365994/_0x1734ac;},'lWUkE':_0x456442(0x3fa)+'h','XSJoB':function(_0x3a58c8,_0x1b424d){return _0x3a58c8%_0x1b424d;},'xKXsi':function(_0x42d663,_0x10f220){return _0x42d663+_0x10f220;},'zjECX':_0x453413(0x88a),'dHOdb':_0x1e80ef(0xb31),'NaKpz':_0x57ef61(0x32d)+'n','mluKD':_0x1e80ef(0x57a)+_0x57ef61(0x5b2)+'t','LbicO':function(_0x67ccf1,_0x478671){return _0x67ccf1(_0x478671);},'pJAlj':function(_0x172378,_0x3f057d){return _0x172378(_0x3f057d);}};function _0x3f547a(_0x5ce721){const _0xcdec25=_0x1fee2d,_0x64a339=_0x57ef61,_0x205209=_0x456442,_0x5f3d36=_0x453413,_0x7321c7=_0x1fee2d;if(_0x5d28ce[_0xcdec25(0x484)](typeof _0x5ce721,_0x5d28ce[_0xcdec25(0x292)]))return function(_0x2c5f47){}[_0x64a339(0x444)+_0x64a339(0x413)+'r'](_0x5d28ce[_0x7321c7(0x4a5)])[_0x64a339(0x91a)](_0x5d28ce[_0x7321c7(0x7d7)]);else _0x5d28ce[_0xcdec25(0x669)](_0x5d28ce[_0x64a339(0x2e4)]('',_0x5d28ce[_0x7321c7(0x771)](_0x5ce721,_0x5ce721))[_0x5d28ce[_0x205209(0x708)]],-0x4b8*0x1+-0xa*-0x1f3+-0xec5)||_0x5d28ce[_0x7321c7(0x484)](_0x5d28ce[_0x7321c7(0x78d)](_0x5ce721,-0x28*-0x76+0x47d+-0x16d9),0x2066+-0x70d+0x873*-0x3)?function(){return!![];}[_0x64a339(0x444)+_0x64a339(0x413)+'r'](_0x5d28ce[_0x7321c7(0xb11)](_0x5d28ce[_0x5f3d36(0x7df)],_0x5d28ce[_0xcdec25(0x850)]))[_0xcdec25(0x336)](_0x5d28ce[_0x5f3d36(0x5cd)]):function(){return![];}[_0xcdec25(0x444)+_0x5f3d36(0x413)+'r'](_0x5d28ce[_0x64a339(0x2e4)](_0x5d28ce[_0x64a339(0x7df)],_0x5d28ce[_0x5f3d36(0x850)]))[_0x7321c7(0x91a)](_0x5d28ce[_0x5f3d36(0x214)]);_0x5d28ce[_0x205209(0x1c9)](_0x3f547a,++_0x5ce721);}try{if(_0x5d1b4d)return _0x3f547a;else _0x5d28ce[_0x453413(0x702)](_0x3f547a,-0xe09*0x1+0xb48*0x2+-0x887*0x1);}catch(_0xafff96){}}(function(){const _0x5dd09f=_0x183957,_0x19064d=_0x183957,_0x255866=_0x4b9440,_0x47a151=_0x183957,_0x20d5a4=_0x342a2e,_0x2b3af6={'MMhpk':function(_0x3eaffd,_0x346169){return _0x3eaffd(_0x346169);},'TrtsD':function(_0x23810d,_0x9e00aa){return _0x23810d+_0x9e00aa;},'PJJLK':function(_0x4d8acc,_0x22b664){return _0x4d8acc+_0x22b664;},'tqueN':_0x5dd09f(0xb52)+_0x19064d(0x68a)+_0x255866(0xf8)+_0x47a151(0x40b),'Qtcvc':_0x5dd09f(0x7c4)+_0x47a151(0x438)+_0x47a151(0x940)+_0x255866(0x970)+_0x20d5a4(0xb07)+_0x255866(0x14f)+'\x20)','UIVkp':function(_0x1abc5c){return _0x1abc5c();}};let _0x15ec20;try{const _0x5394de=_0x2b3af6[_0x255866(0x25a)](Function,_0x2b3af6[_0x255866(0x69b)](_0x2b3af6[_0x47a151(0x170)](_0x2b3af6[_0x19064d(0x425)],_0x2b3af6[_0x19064d(0xb18)]),');'));_0x15ec20=_0x2b3af6[_0x255866(0x690)](_0x5394de);}catch(_0xfcb7e4){_0x15ec20=window;}_0x15ec20[_0x255866(0x835)+_0x5dd09f(0x5ac)+'l'](_0x74e0bb,-0x3e2+0xd8a+-0x2*-0x2fc);}());
</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()