diff --git a/.DS_Store b/.DS_Store index 3f32ead..03df16f 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a503fa2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/unpackage/ diff --git a/App.vue b/App.vue index 6151e8d..c2bd362 100644 --- a/App.vue +++ b/App.vue @@ -1,9 +1,9 @@ - - + + -->
diff --git a/pages.json b/pages.json index e14a41a..dff83c7 100644 --- a/pages.json +++ b/pages.json @@ -120,14 +120,14 @@ ] }], "tabBar": { - "color": "#7A7E83", + "color": "#5E5F60", "selectedColor": "#256BFA", "borderStyle": "black", "backgroundColor": "#ffffff", "midButton": { "width": "50px", "height": "50px", - "backgroundImage": "static/tabbar/logo2.png" + "backgroundImage": "static/tabbar/logo2copy.png" }, "list": [{ "pagePath": "pages/index/index", @@ -143,8 +143,8 @@ }, { "pagePath": "pages/chat/chat", - "iconPath": "static/tabbar/logo2.png", - "selectedIconPath": "static/tabbar/logo2.png" + "iconPath": "static/tabbar/logo2copy.png", + "selectedIconPath": "static/tabbar/logo2copy.png" }, { "pagePath": "pages/msglog/msglog", diff --git a/pages/chat/chat.vue b/pages/chat/chat.vue index 24397b2..17e9db0 100644 --- a/pages/chat/chat.vue +++ b/pages/chat/chat.vue @@ -37,9 +37,14 @@ - - 用户123 - + + + {{ userInfo.name || '暂无用户名' }} + @@ -64,11 +69,13 @@ diff --git a/pages/chat/components/ai-paging.vue b/pages/chat/components/ai-paging.vue index 4a86070..44b569c 100644 --- a/pages/chat/components/ai-paging.vue +++ b/pages/chat/components/ai-paging.vue @@ -8,8 +8,12 @@ 我可以根据您的简历和求职需求,帮你精准匹配青岛市互联网招聘信息,对比招聘信息的优缺点,提供面试指导等,请把你的任务交给我吧~ 猜你所想 - 我希望找青岛的IT行业岗位,薪资能否在12000以上? - 我有三年的工作经验,能否推荐一些适合我的青岛的国企 岗位? + + {{ item }} + + + {{ recognizedText }} {{ lastFinalText }} + @@ -25,7 +29,7 @@ - + + + + + + + + + + + + + {{ recognizedText }} {{ lastFinalText }} + @@ -70,7 +109,12 @@ {{ statusText }} - + @@ -82,7 +126,7 @@ :disabled="isTyping" :adjust-position="false" placeholder="请输入您的职位名称、薪资要求、岗位地址" - v-if="!isVoice" + v-show="!isVoice" /> 按住说话 @@ -114,8 +158,8 @@ - - + + @@ -153,15 +197,19 @@ :src="file.url" > - + + {{ file.name }} - {{ file.size }} + + + + {{ file.size }} + - - + @@ -176,20 +224,36 @@ import { ref, inject, nextTick, defineProps, defineEmits, onMounted, toRaw, reac import { storeToRefs } from 'pinia'; import config from '@/config.js'; import useChatGroupDBStore from '@/stores/userChatGroupStore'; -const { $api, navTo, throttle } = inject('globalFunction'); -const emit = defineEmits(['onConfirm']); import MdRender from '@/components/md-render/md-render.vue'; -const { messages, isTyping, textInput, chatSessionID } = storeToRefs(useChatGroupDBStore()); import CollapseTransition from '@/components/CollapseTransition/CollapseTransition.vue'; import FadeView from '@/components/FadeView/FadeView.vue'; import AudioWave from './AudioWave.vue'; +import WaveDisplay from './WaveDisplay.vue'; import FileIcon from './fileIcon.vue'; +import FileText from './fileText.vue'; +import { useSpeechReader } from '@/hook/useSpeechReader'; import { useAudioRecorder } from '@/hook/useRealtimeRecorder.js'; +// 全局 +const { $api, navTo, throttle } = inject('globalFunction'); +const emit = defineEmits(['onConfirm']); +const { messages, isTyping, textInput, chatSessionID } = storeToRefs(useChatGroupDBStore()); -const { isRecording, recognizedText, startRecording, stopRecording, cancelRecording } = useAudioRecorder( - config.vioceBaseURl -); +// hook +const { + isRecording, + startRecording, + stopRecording, + cancelRecording, + audioDataForDisplay, + volumeLevel, + recognizedText, + lastFinalText, +} = useAudioRecorder(config.vioceBaseURl); +const { speak, pause, resume, isSpeaking, isPaused } = useSpeechReader(); + +// state +const queries = ref([]); const guessList = ref([]); const scrollTop = ref(0); const showGuess = ref(false); @@ -200,18 +264,62 @@ const isVoice = ref(false); const status = ref('idle'); // idle | recording | cancel const startY = ref(0); const cancelThreshold = 100; -let recordingTimer = null; +const speechIndex = ref(0); +const isAudioPermission = ref(false); const state = reactive({ uploadFileTips: '请根据以上附件,帮我推荐岗位。', }); -onMounted(() => { - scrollToBottom(); +const statusText = computed(() => { + switch (status.value) { + case 'recording': + return '松手发送,上划取消'; + case 'cancel': + return '松手取消'; + default: + return '按住说话'; + } }); -const sendMessage = () => { - const values = textInput.value; +const audiowaveStyle = computed(() => { + return status.value === 'cancel' + ? '#f54545' + : status.value === 'recording' + ? 'linear-gradient(to right, #377dff, #9a60ff)' + : '#f1f1f1'; +}); + +onMounted(async () => { + changeQueries(); + scrollToBottom(); + isAudioPermission.value = await requestMicPermission(); +}); + +const requestMicPermission = async () => { + try { + const stream = await navigator.mediaDevices.getUserMedia({ audio: true }); + console.log('✅ 麦克风权限已授权'); + + // 立刻停止所有音轨,释放麦克风 + stream.getTracks().forEach((track) => track.stop()); + + return true; + } catch (err) { + console.warn('❌ 用户拒绝麦克风权限或不支持:', err); + return false; + } +}; + +function showControll(index) { + if (index === messages.value.length - 1 && isTyping.value) { + return false; + } + return true; +} + +const sendMessage = (text) => { + const values = textInput.value || text; showfile.value = false; showGuess.value = false; if (values.trim()) { @@ -222,7 +330,9 @@ const sendMessage = () => { const newMsg = { text: values, self: true, displayText: values, files: normalArr }; useChatGroupDBStore().addMessage(newMsg); useChatGroupDBStore() - .getStearm(values, normalArr, scrollToBottom) + .getStearm(values, normalArr, scrollToBottom, { + onComplete: () => console.log('Display complete'), + }) .then(() => { getGuess(); scrollToBottom(); @@ -276,19 +386,17 @@ const delfile = (file) => { const scrollToBottom = throttle(function () { nextTick(() => { try { - setTimeout(() => { - const query = uni.createSelectorQuery(); - query.select('.scrollView').boundingClientRect(); - query.select('.list-content').boundingClientRect(); - query.exec((res) => { - const scrollViewHeight = res[0].height; - const scrollContentHeight = res[1].height; - if (scrollContentHeight > scrollViewHeight) { - const scrolldistance = scrollContentHeight - scrollViewHeight; - scrollTop.value = scrolldistance; - } - }); - }, 500); + const query = uni.createSelectorQuery(); + query.select('.scrollView').boundingClientRect(); + query.select('.list-content').boundingClientRect(); + query.exec((res) => { + const scrollViewHeight = res[0].height; + const scrollContentHeight = res[1].height; + if (scrollContentHeight > scrollViewHeight) { + const scrolldistance = scrollContentHeight - scrollViewHeight; + scrollTop.value = scrolldistance; + } + }); } catch (err) { console.warn(err); } @@ -386,14 +494,29 @@ function getUploadFile(type = 'camera') { }); } -const handleTouchStart = (e) => { +const tipsPermisson = () => { + uni.showToast({ + title: '需要授权麦克风权限才能使用语音功能', + icon: 'none', + }); +}; + +const handleTouchStart = async (e) => { + if (!isAudioPermission.value) { + return tipsPermisson(); + } + console.log('handleTouchStart'); startY.value = e.touches[0].clientY; status.value = 'recording'; showfile.value = false; startRecording(); + $api.sleep(1000).then(() => { + scrollToBottom(); + }); }; const handleTouchMove = (e) => { + console.log('handleTouchMove'); const moveY = e.touches[0].clientY; if (startY.value - moveY > cancelThreshold) { status.value = 'cancel'; @@ -403,40 +526,32 @@ const handleTouchMove = (e) => { }; const handleTouchEnd = () => { + console.log('handleTouchEnd'); if (status.value === 'cancel') { console.log('取消发送'); cancelRecording(); } else { + console.log('stopRecording'); stopRecording(); - console.log('发送语音'); + $api.sleep(1000).then(() => { + if (isAudioPermission.value) { + if (recognizedText.value) { + sendMessage(recognizedText.value); + } else { + $api.msg('说话时长太短'); + } + } + }); } status.value = 'idle'; }; const handleTouchCancel = () => { + console.log('handleTouchCancel'); stopRecording(); status.value = 'idle'; }; -const statusText = computed(() => { - switch (status.value) { - case 'recording': - return '松手发送,上划取消'; - case 'cancel': - return '松手取消'; - default: - return '按住说话'; - } -}); - -const audiowaveStyle = computed(() => { - return status.value === 'cancel' - ? '#f54545' - : status.value === 'recording' - ? 'linear-gradient(to right, #377dff, #9a60ff)' - : '#f1f1f1'; -}); - function closeGuess() { showGuess.value = false; } @@ -452,7 +567,74 @@ function changeShowFile() { function colseFile() { showfile.value = false; } -defineExpose({ scrollToBottom, closeGuess, colseFile }); + +function copyMarkdown(value) { + $api.copyText(value); +} + +function userGoodFeedback(msg) { + $api.msg('该功能正在开发中,敬请期待后续更新!'); + // const params = { + // dataId: msg.dataId, + // sessionId: msg.parentGroupId, + // userGoodFeedback: 'no', + // }; +} + +function readMarkdown(value, index) { + speechIndex.value = index; + if (speechIndex.value !== index) { + speak(value); + return; + } + if (isPaused.value) { + resume(); + } else { + speak(value); + } +} +function stopMarkdown(value, index) { + pause(value); + speechIndex.value = index; +} +function refreshMarkdown(index) { + if (isTyping.value) { + $api.msg('正在生成'); + } else { + const text = messages.value[index - 1].text; + sendMessageGuess(text); + } +} + +const jobSearchQueries = [ + '青岛有哪些薪资 12K 以上的岗位适合我?', + '青岛 3 年工作经验能找到哪些 12K 以上的工作?', + '青岛哪些公司在招聘,薪资范围在 12K 以上?', + '青岛有哪些企业提供 15K 以上的岗位?', + '青岛哪些公司在招 3-5 年经验的岗位?', + '我有三年的工作经验,能否推荐一些适合我的青岛的国企 岗位?', + '青岛国企目前在招聘哪些岗位?', + '青岛有哪些适合 3 年经验的国企岗位?', + '青岛国企招聘的岗位待遇如何?', + '青岛国企岗位的薪资水平是多少?', + '青岛哪些国企支持双休 & 五险一金完善?', + '青岛有哪些公司支持远程办公?', + '青岛有哪些外企的岗位,薪资 12K 以上的多吗?', + '青岛哪些企业在招聘 Web3.0 相关岗位?', + '青岛哪些岗位支持海外远程?薪资如何?', + '青岛招聘 AI/大数据相关岗位的公司有哪些?', +]; + +function changeQueries(value) { + queries.value = getRandomJobQueries(jobSearchQueries); +} + +function getRandomJobQueries(queries, count = 2) { + const shuffled = queries.sort(() => 0.5 - Math.random()); // 随机打乱数组 + return shuffled.slice(0, count); // 取前 count 条 +} + +defineExpose({ scrollToBottom, closeGuess, colseFile, changeQueries, handleTouchCancel }); diff --git a/pages/chat/components/fileText.vue b/pages/chat/components/fileText.vue new file mode 100644 index 0000000..39e6a0d --- /dev/null +++ b/pages/chat/components/fileText.vue @@ -0,0 +1,38 @@ + + + + + diff --git a/pages/index/index.vue b/pages/index/index.vue index 82fb777..a5efb62 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -328,9 +328,9 @@ function getJobList(type = 'add') { pageState.total = resData.total; pageState.maxPage = Math.ceil(pageState.total / pageState.pageSize); if (rows.length < pageState.pageSize) { - loadmoreRef.value.change('noMore'); + loadmoreRef.value?.change('noMore'); } else { - loadmoreRef.value.change('more'); + loadmoreRef.value?.change('more'); } }); } diff --git a/pages/mine/mine.vue b/pages/mine/mine.vue index 83897d1..0ffb011 100644 --- a/pages/mine/mine.vue +++ b/pages/mine/mine.vue @@ -56,16 +56,12 @@ - 青岛智慧就业服务 - - - - - - - - -
- - \ No newline at end of file diff --git a/unpackage/dist/build/apptest/static/.DS_Store b/unpackage/dist/build/apptest/static/.DS_Store deleted file mode 100644 index 28690ff..0000000 Binary files a/unpackage/dist/build/apptest/static/.DS_Store and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/.DS_Store b/unpackage/dist/build/apptest/static/icon/.DS_Store deleted file mode 100644 index 25de3ad..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/.DS_Store and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/Comment-one.png b/unpackage/dist/build/apptest/static/icon/Comment-one.png deleted file mode 100644 index eea9d94..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/Comment-one.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/Group1.png b/unpackage/dist/build/apptest/static/icon/Group1.png deleted file mode 100755 index 7db1b75..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/Group1.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/Hamburger-button.png b/unpackage/dist/build/apptest/static/icon/Hamburger-button.png deleted file mode 100644 index 696525f..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/Hamburger-button.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/Location.png b/unpackage/dist/build/apptest/static/icon/Location.png deleted file mode 100644 index 31f2f3c..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/Location.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/Vector2.png b/unpackage/dist/build/apptest/static/icon/Vector2.png deleted file mode 100644 index 3c11647..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/Vector2.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/addGroup.png b/unpackage/dist/build/apptest/static/icon/addGroup.png deleted file mode 100644 index 72bbec6..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/addGroup.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/addGroup1.png b/unpackage/dist/build/apptest/static/icon/addGroup1.png deleted file mode 100644 index 271f1e5..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/addGroup1.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/backAI.png b/unpackage/dist/build/apptest/static/icon/backAI.png deleted file mode 100644 index 16b958a..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/backAI.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/bell.png b/unpackage/dist/build/apptest/static/icon/bell.png deleted file mode 100644 index f087deb..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/bell.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/boy.png b/unpackage/dist/build/apptest/static/icon/boy.png deleted file mode 100644 index 0628209..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/boy.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/browse.png b/unpackage/dist/build/apptest/static/icon/browse.png deleted file mode 100644 index f7cb6fe..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/browse.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/carmreupload.png b/unpackage/dist/build/apptest/static/icon/carmreupload.png deleted file mode 100644 index ee77a12..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/carmreupload.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/chat4ed.png b/unpackage/dist/build/apptest/static/icon/chat4ed.png deleted file mode 100644 index f9e089c..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/chat4ed.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/collect.png b/unpackage/dist/build/apptest/static/icon/collect.png deleted file mode 100644 index 9649f78..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/collect.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/doc.png b/unpackage/dist/build/apptest/static/icon/doc.png deleted file mode 100644 index 040e4fd..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/doc.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/edit.png b/unpackage/dist/build/apptest/static/icon/edit.png deleted file mode 100644 index f173310..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/edit.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/fileupload.png b/unpackage/dist/build/apptest/static/icon/fileupload.png deleted file mode 100644 index 779826f..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/fileupload.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/filter.png b/unpackage/dist/build/apptest/static/icon/filter.png deleted file mode 100644 index 945b6c2..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/filter.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/flame.png b/unpackage/dist/build/apptest/static/icon/flame.png deleted file mode 100644 index c1c1c0c..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/flame.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/flame2.png b/unpackage/dist/build/apptest/static/icon/flame2.png deleted file mode 100644 index 3ddd897..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/flame2.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/girl.png b/unpackage/dist/build/apptest/static/icon/girl.png deleted file mode 100644 index 1b7ce26..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/girl.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/image.png b/unpackage/dist/build/apptest/static/icon/image.png deleted file mode 100644 index 880691a..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/image.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/imgupload.png b/unpackage/dist/build/apptest/static/icon/imgupload.png deleted file mode 100644 index 66ae9cb..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/imgupload.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/man.png b/unpackage/dist/build/apptest/static/icon/man.png deleted file mode 100644 index 51b5d98..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/man.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/peopled.png b/unpackage/dist/build/apptest/static/icon/peopled.png deleted file mode 100644 index c806ad6..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/peopled.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/point.png b/unpackage/dist/build/apptest/static/icon/point.png deleted file mode 100644 index 70f1f51..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/point.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/point2.png b/unpackage/dist/build/apptest/static/icon/point2.png deleted file mode 100644 index 40afccd..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/point2.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/quaters.png b/unpackage/dist/build/apptest/static/icon/quaters.png deleted file mode 100644 index 4faf70a..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/quaters.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/recommendday.png b/unpackage/dist/build/apptest/static/icon/recommendday.png deleted file mode 100644 index 93ac901..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/recommendday.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/resume.png b/unpackage/dist/build/apptest/static/icon/resume.png deleted file mode 100644 index c67ee3b..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/resume.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/save.png b/unpackage/dist/build/apptest/static/icon/save.png deleted file mode 100644 index a584d60..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/save.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/send2x.png b/unpackage/dist/build/apptest/static/icon/send2x.png deleted file mode 100644 index 031442b..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/send2x.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/send2xx.png b/unpackage/dist/build/apptest/static/icon/send2xx.png deleted file mode 100644 index d93bc72..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/send2xx.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/send3.png b/unpackage/dist/build/apptest/static/icon/send3.png deleted file mode 100644 index 826cfe6..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/send3.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/send4.png b/unpackage/dist/build/apptest/static/icon/send4.png deleted file mode 100644 index a0f8843..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/send4.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/tips2.png b/unpackage/dist/build/apptest/static/icon/tips2.png deleted file mode 100644 index 3bc712d..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/tips2.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/icon/woman.png b/unpackage/dist/build/apptest/static/icon/woman.png deleted file mode 100644 index e0d5318..0000000 Binary files a/unpackage/dist/build/apptest/static/icon/woman.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/logo.png b/unpackage/dist/build/apptest/static/logo.png deleted file mode 100644 index f72736c..0000000 Binary files a/unpackage/dist/build/apptest/static/logo.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/tabbar/calendar.png b/unpackage/dist/build/apptest/static/tabbar/calendar.png deleted file mode 100644 index e89500c..0000000 Binary files a/unpackage/dist/build/apptest/static/tabbar/calendar.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/tabbar/calendared.png b/unpackage/dist/build/apptest/static/tabbar/calendared.png deleted file mode 100644 index d6a0d66..0000000 Binary files a/unpackage/dist/build/apptest/static/tabbar/calendared.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/tabbar/chat4.png b/unpackage/dist/build/apptest/static/tabbar/chat4.png deleted file mode 100644 index e888508..0000000 Binary files a/unpackage/dist/build/apptest/static/tabbar/chat4.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/tabbar/chat4ed.png b/unpackage/dist/build/apptest/static/tabbar/chat4ed.png deleted file mode 100644 index 5ef0ffc..0000000 Binary files a/unpackage/dist/build/apptest/static/tabbar/chat4ed.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/tabbar/logo2.png b/unpackage/dist/build/apptest/static/tabbar/logo2.png deleted file mode 100644 index bb87a5a..0000000 Binary files a/unpackage/dist/build/apptest/static/tabbar/logo2.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/tabbar/logo2copy.png b/unpackage/dist/build/apptest/static/tabbar/logo2copy.png deleted file mode 100644 index 672d236..0000000 Binary files a/unpackage/dist/build/apptest/static/tabbar/logo2copy.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/tabbar/mine.png b/unpackage/dist/build/apptest/static/tabbar/mine.png deleted file mode 100644 index 1fd9fb8..0000000 Binary files a/unpackage/dist/build/apptest/static/tabbar/mine.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/tabbar/mined.png b/unpackage/dist/build/apptest/static/tabbar/mined.png deleted file mode 100644 index 0fd8025..0000000 Binary files a/unpackage/dist/build/apptest/static/tabbar/mined.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/tabbar/post.png b/unpackage/dist/build/apptest/static/tabbar/post.png deleted file mode 100644 index b81802d..0000000 Binary files a/unpackage/dist/build/apptest/static/tabbar/post.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/static/tabbar/posted.png b/unpackage/dist/build/apptest/static/tabbar/posted.png deleted file mode 100644 index 83961ee..0000000 Binary files a/unpackage/dist/build/apptest/static/tabbar/posted.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/uni_modules/zhuo-tianditu-MultiPoint-Mapper/static/point.png b/unpackage/dist/build/apptest/uni_modules/zhuo-tianditu-MultiPoint-Mapper/static/point.png deleted file mode 100644 index 4772c05..0000000 Binary files a/unpackage/dist/build/apptest/uni_modules/zhuo-tianditu-MultiPoint-Mapper/static/point.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/uni_modules/zhuo-tianditu-MultiPoint-Mapper/static/point2.png b/unpackage/dist/build/apptest/uni_modules/zhuo-tianditu-MultiPoint-Mapper/static/point2.png deleted file mode 100644 index 40afccd..0000000 Binary files a/unpackage/dist/build/apptest/uni_modules/zhuo-tianditu-MultiPoint-Mapper/static/point2.png and /dev/null differ diff --git a/unpackage/dist/build/apptest/uni_modules/zhuo-tianditu-MultiPoint-Mapper/static/range.png b/unpackage/dist/build/apptest/uni_modules/zhuo-tianditu-MultiPoint-Mapper/static/range.png deleted file mode 100644 index ccdbc15..0000000 Binary files a/unpackage/dist/build/apptest/uni_modules/zhuo-tianditu-MultiPoint-Mapper/static/range.png and /dev/null differ diff --git a/unpackage/dist/build/web/.DS_Store b/unpackage/dist/build/web/.DS_Store deleted file mode 100644 index 171b1b5..0000000 Binary files a/unpackage/dist/build/web/.DS_Store and /dev/null differ diff --git a/unpackage/dist/build/web/assets/BaseDBStore.RQrc3EQA.js b/unpackage/dist/build/web/assets/BaseDBStore.RQrc3EQA.js deleted file mode 100644 index 0629f3b..0000000 --- a/unpackage/dist/build/web/assets/BaseDBStore.RQrc3EQA.js +++ /dev/null @@ -1 +0,0 @@ -var e=Object.defineProperty,t=(t,r,n)=>(((t,r,n)=>{r in t?e(t,r,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[r]=n})(t,"symbol"!=typeof r?r+"":r,n),n);import{C as r,q as n,ah as s,T as o,ai as a,aj as i,ak as c,al as l,af as u,am as d}from"./index-DdiBakOJ.js";class h{constructor(e,t=1){this.dbName=e,this.version=t,this.db=null}openDB(e=[]){return new Promise(((t,r)=>{const n=indexedDB.open(this.dbName,this.version);n.onupgradeneeded=t=>{this.db=t.target.result,e.forEach((e=>{if(!this.db.objectStoreNames.contains(e.name)){const t=this.db.createObjectStore(e.name,{keyPath:e.keyPath,autoIncrement:e.autoIncrement||!1});e.indexes&&e.indexes.forEach((e=>{t.createIndex(e.name,e.key,{unique:e.unique})}))}}))},n.onsuccess=e=>{this.db=e.target.result,console.log("✅ IndexedDB 连接成功"),t(this.db)},n.onerror=e=>{r(`IndexedDB Error: ${e.target.error}`)}}))}async queryByField(e,t,r){return new Promise((async(n,s)=>{try{this.db||await this.openDB();const o=this.db.transaction(e,"readonly").objectStore(e);if(!o.indexNames.contains(t))return s(`索引 ${t} 不存在`);const a=o.index(t).getAll(r);a.onsuccess=e=>{n(e.target.result)},a.onerror=e=>{s("查询失败: "+e.target.error)}}catch(o){s("查询错误: "+o)}}))}add(e,t){return new Promise(((r,n)=>{const s=this.db.transaction([e],"readwrite"),o=s.objectStore(e),a=Array.isArray(t)?t:[t],i=[];a.forEach(((e,t)=>{const r=o.add(e);r.onsuccess=e=>{i[t]=e.target.result},r.onerror=e=>{s.abort(),n(`第 ${t+1} 条数据添加失败: ${e.target.error}`)}})),s.oncomplete=()=>{r(1===a.length?i[0]:i)},s.onerror=e=>{n(`添加失败: ${e.target.error}`)}}))}get(e,t){return new Promise(((r,n)=>{const s=this.db.transaction([e],"readonly").objectStore(e).get(t);s.onsuccess=()=>r(s.result),s.onerror=e=>n(`Get Error: ${e.target.error}`)}))}getAll(e){return new Promise(((t,r)=>{const n=this.db.transaction([e],"readonly").objectStore(e);if("function"==typeof n.getAll){const e=n.getAll();e.onsuccess=()=>t(e.result),e.onerror=e=>r(`GetAll Error: ${e.target.error}`)}else{const e=[],s=n.openCursor();s.onsuccess=r=>{const n=r.target.result;n?(e.push(n.value),n.continue()):t(e)},s.onerror=e=>r(`Cursor Error: ${e.target.error}`)}}))}async getRecordCount(e){return new Promise(((t,r)=>{const n=this.db.transaction([e],"readonly").objectStore(e).count();n.onsuccess=()=>t(n.result),n.onerror=e=>r(`❌ Count Error: ${e.target.error}`)}))}update(e,t){return new Promise(((r,n)=>{const s=this.db.transaction([e],"readwrite").objectStore(e).put(t);s.onsuccess=()=>r("Data updated successfully"),s.onerror=e=>n(`Update Error: ${e.target.error}`)}))}delete(e,t){return new Promise(((r,n)=>{const s=this.db.transaction([e],"readwrite").objectStore(e).delete(t);s.onsuccess=()=>r("Data deleted successfully"),s.onerror=e=>n(`Delete Error: ${e.target.error}`)}))}getByIndex(e,t,r){return new Promise(((n,s)=>{const o=this.db.transaction([e],"readonly").objectStore(e).index(t).get(r);o.onsuccess=()=>n(o.result),o.onerror=e=>s(`Get By Index Error: ${e.target.error}`)}))}clearStore(e){return new Promise(((t,r)=>{const n=this.db.transaction([e],"readwrite").objectStore(e).clear();n.onsuccess=()=>t("Store cleared successfully"),n.onerror=e=>r(`Clear Store Error: ${e.target.error}`)}))}deleteDB(e=null){return new Promise(((t,r)=>{const n=indexedDB.deleteDatabase(e||this.dbName);n.onsuccess=()=>t("Database deleted successfully"),n.onerror=e=>r(`Delete DB Error: ${e.target.error}`)}))}async deleteOldestRecord(e){return new Promise(((t,r)=>{const n=this.db.transaction([e],"readwrite").objectStore(e),s=n.openCursor();s.onsuccess=function(e){const r=e.target.result;r?(console.log(`🗑️ 删除最早的记录 ID: ${r.key}`),n.delete(r.key),t()):t()},s.onerror=e=>r(`❌ Cursor Error: ${e.target.error}`)}))}}const g=r("messageGroup",(()=>{const e=n("messageGroup"),t=n("messages"),r=n([]),l=n(!1),u=n(""),d=n([]),h=n(""),g=n("");async function b(e){y.isDBReady||await y.initDB(),h.value=e;const n=await y.db.queryByField(t.value,"parentGroupId",e);n.length?(console.log("本地数据库存在该对话数据",n),r.value=n):(console.log("本地数据库不存在该对话数据"),p("refresh"))}function m(e){l.value=e}function f(){c.chatRequest("/getHistory").then((t=>{if(!t.data.list.length)return;let r=t.data.list.map((e=>({title:e.title,createTime:e.updateTime,sessionId:e.chatId})));if(r&&r.length){const t=r[0],[n,o]=s(r);h.value=t.sessionId,d.value=n,p(!1),y.db.add(e.value,r),g.value=o}}))}function p(e=!0){const n={sessionId:h.value};c.chatRequest("/detail",n,"GET",e).then((e=>{console.log("detail:",e.data);let n=function(e,t){const r=[];for(let n=0;n{o("请求出现异常,请联系工作人员")}))}return{messages:r,isTyping:l,textInput:u,chatSessionID:h,addMessage:async function(e){if(!h.value)return o("请创建对话");const n={...e,parentGroupId:h.value,files:e.files||[]};r.value.push(n),async function(e){console.log(e),await y.db.add(t.value,e)}(n)},tabeList:d,init:async function(){setTimeout((async()=>{y.isDBReady||await y.initDB();const t=await y.db.getAll(e.value);if(t.length){console.warn("本地数据库存在数据");const e=t.reverse(),[r,n]=s(e);d.value=r;const o=e[0];h.value=o.sessionId,b(o.sessionId)}else console.warn("本地数据库存在数据"),f()}),1e3)},initMessage:b,toggleTyping:m,addTabel:async function(t){y.isDBReady||await y.initDB();const r=a.generate();let n={title:t,createTime:i(Date.now()),sessionId:r};const o=await y.db.add(e.value,n),c=await y.db.getAll(e.value);h.value=r;const[l,u]=s(c);return d.value=l,o},addNewDialogue:function(){h.value="",r.value=[]},changeDialogue:function(e){h.value=e.sessionId,b(e.sessionId)},getStearm:async function(e,n=[],s){return new Promise(((a,i)=>{try{let l=function(){f.text=v,f.parentGroupId=h.value,y.db.add(t.value,f)},u=function(e){v+=e,f.displayText+=e,r.value[p]={...f},s&&s()},d=function(e){console.error("请求异常:",e),o("服务响应异常"),i(e)},g=function(){f.text=v,r.value[p]={...f},m(!1),window.removeEventListener("unload",l),l(),a&&a()};m(!0);const b={data:e,sessionId:h.value};n&&n.length&&(b.fileUrl=n.map((e=>e.url)));const f={text:"",self:!1,displayText:""},p=r.value.length;r.value.push(f);let v="";window.addEventListener("unload",l),c.streamRequest("/chat",b,u,d,g)}catch(l){console.log(l),i(l)}}))},getHistory:f}}));const y=new class{constructor(){t(this,"db",null),t(this,"isDBReady",!1),t(this,"dbName","BrowsingHistory"),this.checkAndInitDB()}checkAndInitDB(){const e=l("indexedDBVersion")||1;console.log("DBVersion: ",e,u.DBversion),e===u.DBversion?this.initDB():(console.log("清空本地数据库"),this.clearDB().then((()=>{d("indexedDBVersion",u.DBversion),this.initDB()})))}initDB(){this.db=new h(this.dbName,u.DBversion),this.db.openDB([{name:"record",keyPath:"id",autoIncrement:!0},{name:"messageGroup",keyPath:"id",autoIncrement:!0},{name:"messages",keyPath:"id",autoIncrement:!0,indexes:[{name:"parentGroupId",key:"parentGroupId",unique:!1}]}]).then((async()=>{g().init(),this.isDBReady=!0}))}async clearDB(){return new Promise(((e,t)=>{(new h).deleteDB(this.dbName).then((()=>{e()}))}))}};export{y as b,g as u}; diff --git a/unpackage/dist/build/web/assets/careerfair-DDd70XO3.css b/unpackage/dist/build/web/assets/careerfair-DDd70XO3.css deleted file mode 100644 index a4cf2e8..0000000 --- a/unpackage/dist/build/web/assets/careerfair-DDd70XO3.css +++ /dev/null @@ -1 +0,0 @@ -.app-container[data-v-185c4d6f]{width:100%;height:calc(100vh - var(--window-top) - var(--status-bar-height) - var(--window-bottom));background:linear-gradient(180deg,#4778ec,#002979);display:flex;flex-direction:column;position:fixed}.app-container .careerfair-AI[data-v-185c4d6f]{height:1.3125rem;font-family:Inter,Inter;font-weight:400;font-size:1.09375rem;color:#fff;line-height:1.28125rem;padding:2.65625rem 0 0 .9375rem}.app-container .careerfair-tab[data-v-185c4d6f]{margin:.625rem 0 0 .9375rem;width:-webkit-fit-content;width:fit-content;display:flex;flex-wrap:nowrap}.app-container .careerfair-tab .careerfair-tab-options[data-v-185c4d6f]{background:#4778ec;padding:0 .625rem;height:1.96875rem;line-height:1.96875rem;font-weight:400;font-size:.875rem;color:#fff;text-align:center}.app-container .careerfair-tab .actived[data-v-185c4d6f]{position:relative;background:#ffad47;box-shadow:0 .21875rem .21875rem rgba(0,0,0,.25)}.app-container .careerfair-tab .careerfair-tab-options[data-v-185c4d6f]:first-child{border-radius:.53125rem 0 0}.app-container .careerfair-tab .careerfair-tab-options[data-v-185c4d6f]:last-child{border-radius:0 .53125rem 0 0}.app-container .careerfair-scroll[data-v-185c4d6f]{background:#4778ec}.app-container .careerfair-date[data-v-185c4d6f]{height:3.71875rem;display:flex;flex-wrap:nowrap;align-items:center;color:#fff;width:-webkit-fit-content;width:fit-content}.app-container .careerfair-date .date-list[data-v-185c4d6f]{display:flex;flex-direction:column;align-items:center;justify-content:center;width:calc(23.4375rem / 7)}.app-container .careerfair-date .date-list .date-list-item[data-v-185c4d6f]:nth-child(2){font-size:.59375rem;margin-top:.3125rem}.app-container .careerfair-date .date-list .active[data-v-185c4d6f]{width:1.625rem;height:1.625rem;background:#ffad47;display:flex;align-items:center;justify-content:center;border-radius:50%}.app-container .careerfair-list-scroll[data-v-185c4d6f]{overflow:hidden;background:linear-gradient(180deg,rgba(255,255,255,.2),#fff)}.app-container .careerfair-list[data-v-185c4d6f]{display:flex;flex-direction:column;align-items:center;padding:.78125rem .875rem}.app-container .careerfair-list .careerfair-list-card[data-v-185c4d6f]{margin-top:1.125rem;width:calc(100% - 1.25rem);background:#fff;border-radius:.53125rem;padding:.625rem}.app-container .careerfair-list .careerfair-list-card .card-title[data-v-185c4d6f]{height:2.125rem;font-size:1.09375rem;color:#606060;line-height:2.125rem}.app-container .careerfair-list .careerfair-list-card .card-intro[data-v-185c4d6f],.app-container .careerfair-list .careerfair-list-card .card-address[data-v-185c4d6f],.app-container .careerfair-list .careerfair-list-card .card-company[data-v-185c4d6f],.app-container .careerfair-list .careerfair-list-card .card-date[data-v-185c4d6f]{font-weight:400;font-size:.65625rem;color:#606060;line-height:.78125rem;margin-top:.40625rem}.app-container .careerfair-list .careerfair-list-card .card-footer[data-v-185c4d6f]{display:flex;flex-wrap:nowrap;justify-content:space-between;align-items:center}.app-container .careerfair-list .careerfair-list-card .card-footer .cardfooter-ri[data-v-185c4d6f]{width:6.4375rem;height:1.75rem;line-height:1.75rem;font-size:.875rem;text-align:center;color:#fff;background:#ffad47;border-radius:.53125rem}.app-container .careerfair-list .careerfair-list-card .card-intro[data-v-185c4d6f]{display:flex;justify-content:space-between;align-items:center;flex-wrap:nowrap}.app-container .careerfair-list .careerfair-list-card .card-intro .intro-distance[data-v-185c4d6f]{height:.9375rem;background:#13c57c;padding:.09375rem .25rem;line-height:.9375rem;color:#fff;font-size:.65625rem;border-radius:.53125rem}.app-container .careerfair-list .careerfair-list-card[data-v-185c4d6f]:first-child{margin-top:0} diff --git a/unpackage/dist/build/web/assets/chat-DtkNe9m9.css b/unpackage/dist/build/web/assets/chat-DtkNe9m9.css deleted file mode 100644 index 5b8a868..0000000 --- a/unpackage/dist/build/web/assets/chat-DtkNe9m9.css +++ /dev/null @@ -1 +0,0 @@ -.markdown-body ul[data-v-ea6dd010]{-webkit-padding-start:1.25rem;padding-inline-start:1.25rem}.markdown-body ul li[data-v-ea6dd010]{margin-bottom:-.9375rem}.markdown-body ul li[data-v-ea6dd010]:nth-child(1){margin-top:-1.25rem}.markdown-body[data-v-ea6dd010]{user-select:text;-webkit-user-select:text;white-space:pre-wrap}table[data-v-ea6dd010]{border-collapse:collapse}th[data-v-ea6dd010],td[data-v-ea6dd010]{padding:.5rem;border:.0625rem solid #ddd;font-size:.75rem}th[data-v-ea6dd010]{background-color:#007bff;color:#fff;font-weight:700}tr[data-v-ea6dd010]:nth-child(2n){background-color:#f9f9f9}tr[data-v-ea6dd010]:hover{background-color:#f1f1f1;transition:.3s}pre[data-v-ea6dd010],code[data-v-ea6dd010]{-webkit-user-select:text;user-select:text}.code-container[data-v-ea6dd010]{position:relative;border-radius:.3125rem;overflow:hidden;padding:.25rem;color:#c9d1d9;font-size:.875rem;height:-webkit-fit-content;height:fit-content;margin-top:-4.375rem;margin-bottom:-4.375rem}.code-header[data-v-ea6dd010]{display:flex;justify-content:space-between;align-items:center;padding:.3125rem .625rem;background:#161b22;color:#888;font-size:.75rem;border-radius:.3125rem .3125rem 0 0}.copy-btn[data-v-ea6dd010]{background:rgba(255,255,255,.1);color:#ddd;border:none;padding:.1875rem .5rem;font-size:.75rem;cursor:pointer;border-radius:.1875rem}.copy-btn[data-v-ea6dd010]:hover{background:rgba(255,255,255,.2);color:#259939;text-decoration:underline}pre.hljs[data-v-ea6dd010]{padding:0 .75rem;margin:0;border-radius:0 0 .5rem .5rem;background-color:#f8f8f8;padding:.625rem;overflow-x:auto;font-size:.75rem;margin-top:.3125rem;margin-top:-2.0625rem}pre code[data-v-ea6dd010]{margin:0;padding:0;display:block;white-space:pre-wrap;word-break:break-word}ol[data-v-ea6dd010]{list-style:decimal-leading-zero;padding-left:1.875rem}.line-num[data-v-ea6dd010]{color:#666;margin-right:.625rem;display:inline-block;text-align:right}.collapse-wrapper[data-v-7d025871]{width:100%}.fade-wrapper[data-v-30a2d476]{width:100%;height:100%}.wave-container[data-v-cfdf3dbd]{display:flex;justify-content:center;align-items:center;padding:.5rem;border-radius:1.125rem;height:1.9375rem;gap:.125rem;box-shadow:0 .25rem 1.25rem rgba(0,54,170,.15)}@keyframes waveAnim-cfdf3dbd{0%,to{transform:scaleY(.4)}50%{transform:scaleY(1)}}.bar[data-v-cfdf3dbd]{transform-origin:bottom center}.collapse-enter-active[data-v-c6407f80],.collapse-leave-active[data-v-c6407f80]{transition:max-height .3s ease,opacity .3s ease}.collapse-enter-from[data-v-c6407f80],.collapse-leave-to[data-v-c6407f80]{max-height:0;opacity:0}.collapse-enter-to[data-v-c6407f80],.collapse-leave-from[data-v-c6407f80]{max-height:12.5rem;opacity:1}.msg-filecontent[data-v-c6407f80]{display:flex;flex-wrap:wrap}.msg-files[data-v-c6407f80]{overflow:hidden;margin-right:.3125rem;height:.9375rem;max-width:6.28125rem;background:#fff;border-radius:.3125rem;display:flex;align-items:center;justify-content:flex-start;padding:.3125rem;color:#000;margin-bottom:.3125rem}.msg-files .msg-file-icon[data-v-c6407f80]{width:.90625rem;height:.8125rem;padding-right:.3125rem}.msg-files .msg-file-text[data-v-c6407f80]{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#606060;font-size:.75rem}.msg-files[data-v-c6407f80]:active{background:#e9e9e9}.guess[data-v-c6407f80]{border-top:.0625rem solid #8c8c8c;padding:.625rem 0 .3125rem}.guess .guess-top[data-v-c6407f80]{padding:0 0 .3125rem;display:flex;align-items:center;color:#ffad47;font-size:.875rem}.guess .guess-top .guess-icon[data-v-c6407f80]{width:1.34375rem;height:1.34375rem}.guess .guess-list[data-v-c6407f80]{border:.0625rem solid #8c8c8c;padding:.1875rem .375rem;border-radius:.3125rem;width:-webkit-fit-content;width:fit-content;margin:0 .3125rem .3125rem 0;font-size:.75rem;color:#8c8c8c}.guess .gulist[data-v-c6407f80]{display:flex;flex-wrap:wrap;position:relative}.chat-container[data-v-c6407f80]{display:flex;flex-direction:column;height:calc(100% - var(--window-top) - var(--status-bar-height) - var(--window-bottom));position:relative;z-index:1;background:#fff}.chat-background[data-v-c6407f80]{position:absolute;padding:1.375rem;display:flex;flex-direction:column;justify-content:flex-start;align-items:center}.chat-background .backlogo[data-v-c6407f80]{width:9.78125rem;height:5.9375rem}.chat-background .back-rowTitle[data-v-c6407f80]{width:100%;height:1.75rem;font-weight:700;font-size:1.25rem;color:#333;line-height:1.46875rem;margin-top:1.25rem}.chat-background .back-rowText[data-v-c6407f80]{margin-top:.875rem;width:100%;height:4.5rem;font-weight:400;font-size:.875rem;color:#333;border-bottom:.0625rem dashed rgba(0,0,0,.2)}.chat-background .back-rowh3[data-v-c6407f80]{width:100%;height:.9375rem;font-weight:500;font-size:.6875rem;color:#000;margin-top:.75rem}.chat-background .back-rowmsg[data-v-c6407f80]{width:19.6875rem;margin-top:.625rem;font-weight:500;color:#333;line-height:.875rem;font-size:.75rem;background:#f6f6f6;border-radius:.25rem;padding:1rem .5625rem}.chat-list[data-v-c6407f80]{flex:1;overflow-y:auto;white-space:pre-wrap}.list-content[data-v-c6407f80]{padding:0 1.375rem 1.375rem}.chat-item[data-v-c6407f80]{display:flex;align-items:flex-start;margin-bottom:.625rem}.chat-item.self[data-v-c6407f80]{justify-content:flex-end}.message[data-v-c6407f80]{margin-top:1.25rem;padding:.625rem .625rem 0;border-radius:0 .625rem .625rem;background:#f6f6f6;word-break:break-word;color:#333;user-select:text;-webkit-user-select:text}.messageNull[data-v-c6407f80]{background:transparent}.msg-loading[data-v-c6407f80]{background:transparent;font-size:.75rem;color:#8f8d8e;display:flex;align-items:flex-end;justify-content:flex-start}.loaded[data-v-c6407f80]{padding-left:.625rem}.chat-item.self .message[data-v-c6407f80]{background:linear-gradient(225deg,#dae2fe,#e9e3ff);border-radius:.625rem 0 .625rem .625rem;padding:.625rem}.input-area[data-v-c6407f80]{padding:1rem .875rem .75rem;position:relative;background:#fff;box-shadow:0 -.125rem .3125rem rgba(11,44,112,.06);transition:height 2s ease-in-out}.input-area[data-v-c6407f80]:after{position:absolute;content:"";top:0;left:0;width:100%;z-index:1;box-shadow:0 -.125rem .3125rem rgba(11,44,112,.06)}.areatext[data-v-c6407f80]{display:flex}.input[data-v-c6407f80]{flex:1;border-radius:.15625rem;min-height:1.96875rem;line-height:1.96875rem;padding:.125rem .75rem;position:relative;background:#f5f5f5;border-radius:1.875rem}.input_vio[data-v-c6407f80]{flex:1;border-radius:.15625rem;min-height:1.96875rem;line-height:1.96875rem;padding:.125rem .75rem;border-radius:1.875rem;color:#333;background:#f5f5f5;text-align:center;font-size:.875rem;font-weight:500;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.input_vio[data-v-c6407f80]:active{background:#e8e8e8}.vio_container[data-v-c6407f80]{background:transparent;padding:.875rem;text-align:center}.vio_container .record-tip[data-v-c6407f80]{font-weight:400;color:#909090;text-align:center;padding-bottom:.5rem}.inputplaceholder[data-v-c6407f80]{font-weight:500;font-size:.75rem;color:#000;line-height:.875rem;opacity:.4}.btn-box[data-v-c6407f80]{margin-left:.375rem;width:2.1875rem;height:2.1875rem;border-radius:50%;background:#f5f5f5;display:flex;align-items:center;justify-content:center}.btn-box .send-btn[data-v-c6407f80],.btn-box .receive-btn[data-v-c6407f80]{transition:transform .5s ease;width:1.1875rem;height:1.1875rem}.purple[data-v-c6407f80]{background:linear-gradient(225deg,#9e74fd,#256bfa)}.add-file-btn[data-v-c6407f80]{transform:rotate(45deg);transition:transform .5s ease}.area-file[data-v-c6407f80]{display:grid;width:100%;grid-template-columns:repeat(3,1fr);grid-gap:.625rem;padding:1rem 0 0}.area-file .file-card[data-v-c6407f80]{display:flex;flex-direction:column;align-items:center;padding:.75rem 0;background:#f5f5f5;border-radius:.625rem}.area-file .file-card uni-text[data-v-c6407f80]{font-size:.75rem;font-weight:500;color:#000;padding-top:.25rem}.area-file .file-card .card-img[data-v-c6407f80]{height:1.75rem;width:1.75rem}.area-file .file-card[data-v-c6407f80]:active{background:#e8e8e8}.area-uploadfiles[data-v-c6407f80]{position:absolute;top:-5.625rem;width:calc(100% - 1.25rem);background:#fff;left:0;padding:.3125rem .625rem;box-shadow:0 -.125rem .3125rem rgba(11,44,112,.06)}.area-uploadfiles .uploadfiles-scroll[data-v-c6407f80]{height:100%}.area-uploadfiles .uploadfiles-scroll .uploadfiles-list[data-v-c6407f80]{height:100%;display:flex;flex-wrap:nowrap}.area-uploadfiles .uploadfiles-scroll .uploadfiles-list .file-doc[data-v-c6407f80]{display:flex;flex-direction:column;align-items:flex-start;justify-content:space-between;padding:.5rem .625rem .5625rem;height:calc(100% - 1.25rem)}.area-uploadfiles .uploadfiles-scroll .uploadfiles-list .file-uploadsend[data-v-c6407f80]{margin:.3125rem .5625rem 0 .3125rem;height:100%;border-radius:.9375rem;font-size:.75rem;position:relative;width:11.25rem;height:5rem;border-radius:.375rem;border:.0625rem solid #e2e2e2}.area-uploadfiles .uploadfiles-scroll .uploadfiles-list .file-uploadsend .file-del[data-v-c6407f80]{position:absolute;right:0;top:0;z-index:9;border-radius:50%;display:flex;align-items:center;justify-content:center;transform:translate(50%,-.3125rem);height:1.25rem;width:.71875rem;height:.71875rem;background:#fff;border:.0625rem solid #e2e2e2}.area-uploadfiles .uploadfiles-scroll .uploadfiles-list .file-uploadsend .file-del[data-v-c6407f80]:active{background:#e8e8e8}.area-uploadfiles .uploadfiles-scroll .uploadfiles-list .file-uploadsend .filename-text[data-v-c6407f80]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333;font-size:.75rem;flex:1;font-weight:500;max-width:100%}.area-uploadfiles .uploadfiles-scroll .uploadfiles-list .file-uploadsend .filename-size[data-v-c6407f80]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#7b7b7b;flex:1;max-width:100%}.area-uploadfiles .uploadfiles-scroll .uploadfiles-list .file-uploadsend .file-icon[data-v-c6407f80]{height:1.25rem;width:1.25rem}.area-uploadfiles .uploadfiles-scroll .uploadfiles-list .file-uploadsend .file-iconImg[data-v-c6407f80]{height:100%;width:100%;border-radius:.46875rem}.area-uploadfiles .uploadfiles-scroll .uploadfiles-list .file-border[data-v-c6407f80]{width:5rem;border:0}.ai-loading[data-v-c6407f80]{display:inline-flex;vertical-align:middle;width:.875rem;height:.875rem;background:0 0;border-radius:50%;border:.125rem solid;border-color:#e5e5e5 #e5e5e5 #e5e5e5 #8f8d8e;animation:ai-circle-c6407f80 1s linear infinite}@keyframes ai-circle-c6407f80{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.container[data-v-613cbdaf]{position:fixed;width:100vw;height:calc(100vh - var(--window-top) - var(--status-bar-height) - var(--window-bottom));overflow:hidden}.overlay[data-v-613cbdaf]{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.4);z-index:999}.drawer[data-v-613cbdaf]{position:fixed;top:0;left:0;width:16.34375rem;height:100vh;background:#e7e7e6;transform:translate(-100%);transition:transform .3s ease-in-out;z-index:1000}.drawer.open[data-v-613cbdaf]{box-shadow:.125rem 0 .625rem rgba(0,0,0,.2);transform:translate(0)}.drawer-input-content[data-v-613cbdaf]{margin:0 .875rem;padding:0 .75rem;height:2.25rem;background:#f6f6f6;border-radius:.5rem;display:flex;align-items:center;justify-content:center}.drawer-input-content .drawer-input[data-v-613cbdaf]{font-size:.875rem;width:100%}.drawer-input-content .input-placeholder[data-v-613cbdaf]{font-weight:500;font-size:.875rem;color:#a6a6a6}.drawer-input-content .input-search[data-v-613cbdaf]{margin-left:.625rem}.drawer-content[data-v-613cbdaf]{height:100%;background:#fff}.drawer-content .drawer-title[data-v-613cbdaf]{height:calc(2.75rem + env(safe-area-inset-top));line-height:calc(2.75rem + env(safe-area-inset-top));padding:0 1.625rem;color:#333;font-size:1rem;font-weight:700}.drawer-content .chat-scroll[data-v-613cbdaf]{height:calc(100% - 2.75rem + env(safe-area-inset-top))}.drawer-content .drawer-rows[data-v-613cbdaf]{padding:0 .875rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.drawer-content .drawer-rows .drawer-row-title[data-v-613cbdaf]{color:#a6a6a6;font-weight:500;font-weight:700;font-size:.875rem;padding:0 .75rem;margin-top:1.5625rem;margin-bottom:.5rem}.drawer-content .drawer-rows .drawer-row-list[data-v-613cbdaf]{height:2.0625rem;line-height:2.0625rem;font-size:.875rem;overflow:hidden;text-overflow:ellipsis;font-weight:500;color:#595959;padding:0 .75rem}.drawer-content .drawer-rows .drawer-row-active[data-v-613cbdaf],.drawer-content .drawer-rows .drawer-row-list[data-v-613cbdaf]:active{color:#333;background:#f6f6f6;border-radius:.5rem}.main-content[data-v-613cbdaf]{width:100%;height:100vh;transition:margin-left .3s ease-in-out;position:relative;background:#fff}.main-content .head[data-v-613cbdaf]{display:block;box-sizing:border-box;height:calc(2.75rem + env(safe-area-inset-top));-webkit-user-select:none;user-select:none}.main-content .main-header[data-v-613cbdaf]{position:fixed;left:var(--window-left);right:var(--window-right);height:calc(2.75rem + env(safe-area-inset-top));padding-top:calc(.4375rem + env(safe-area-inset-top));border:.0625rem solid #f4f4f4;background:#fff;z-index:998;transition-property:all;display:flex;align-items:center;justify-content:space-between;font-size:.875rem;color:#000;padding:0 .9375rem;font-weight:700;text-align:center}.main-content .main-header uni-image[data-v-613cbdaf]{width:1.125rem;height:1.15625rem}.chatmain-warpper[data-v-613cbdaf]{height:calc(100% - 2.75rem - env(safe-area-inset-top));position:relative;display:block;box-sizing:border-box;width:100%}.main-content.shift[data-v-613cbdaf]{margin-left:15.625rem} diff --git a/unpackage/dist/build/web/assets/custom-popup.ChzD6q8C.js b/unpackage/dist/build/web/assets/custom-popup.ChzD6q8C.js deleted file mode 100644 index 66161a1..0000000 --- a/unpackage/dist/build/web/assets/custom-popup.ChzD6q8C.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as e,an as t,o as i,a as n,w as o,f as s,j as a,k as d,n as h,l as p}from"./index-DdiBakOJ.js";const l=e({name:"custom-popup",data:()=>({winWidth:0,winHeight:0,winTop:0,contentHeight:30}),props:{visible:{type:Boolean,require:!0,default:!1},hide:{type:Number,default:0},header:{type:Boolean,default:!0},contentH:{type:Number,default:30}},created(){var e=this;this.contentH&&(this.contentHeight=this.contentH),t({success:function(t){0===e.hide?(e.winWidth=t.screenWidth,e.winHeight=t.screenHeight,e.winTop=0):(e.winWidth=t.windowWidth,e.winHeight=t.windowHeight,e.winTop=t.windowTop)}})},methods:{close(e){this.$emit("onClose")}}},[["render",function(e,t,l,c,r,u){const w=p;return l.visible?(i(),n(w,{key:0,class:"tianditu-popop",style:h({height:r.winHeight+"px",width:r.winWidth+"px",top:r.winTop+"px"})},{default:o((()=>[l.header?(i(),n(w,{key:0,class:"popup-header",onClick:u.close},{default:o((()=>[s(e.$slots,"header",{},void 0,!0)])),_:3},8,["onClick"])):a("",!0),d(w,{style:h({minHeight:r.contentHeight+"vh"}),class:"popup-content fadeInUp animated"},{default:o((()=>[s(e.$slots,"default",{},void 0,!0)])),_:3},8,["style"])])),_:3},8,["style"])):a("",!0)}],["__scopeId","data-v-ad9fd3a8"]]);export{l as _}; diff --git a/unpackage/dist/build/web/assets/dict-Label.ot3xNx0t.js b/unpackage/dist/build/web/assets/dict-Label.ot3xNx0t.js deleted file mode 100644 index dbc13a2..0000000 --- a/unpackage/dist/build/web/assets/dict-Label.ot3xNx0t.js +++ /dev/null @@ -1 +0,0 @@ -import{D as e,o as a,b as s,z as t,H as p}from"./index-DdiBakOJ.js";const o={__name:"dict-Label",props:["value","dictType"],setup(o){const{complete:c,dictLabel:l}=e();return(e,c)=>(a(),s("span",null,t(p(l)(o.dictType,o.value)),1))}};export{o as _}; diff --git a/unpackage/dist/build/web/assets/expected-station.BpvqBSAB.js b/unpackage/dist/build/web/assets/expected-station.BpvqBSAB.js deleted file mode 100644 index 9ededef..0000000 --- a/unpackage/dist/build/web/assets/expected-station.BpvqBSAB.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as e,a0 as t,v as s,x as a,o as c,a as l,w as i,k as o,j as n,b as r,F as h,r as d,d as u,y as f,z as p,I as y,J as k,K as g,l as m,S as b}from"./index-DdiBakOJ.js";import{_}from"./uni-icons.OqqMV__G.js";const x=e({name:"expected-station",data:()=>({leftValue:{},rightValue:[],stationCateLog:0,copyTree:[]}),props:{station:{type:Array,default:[]},search:{type:Boolean,default:!0},max:{type:Number,default:5}},created(){this.copyTree=this.station,this.copyTree.length&&(this.leftValue=this.copyTree[0],this.rightValue=this.copyTree[0].children)},watch:{station(e){this.copyTree=this.station,this.copyTree.length&&(this.leftValue=this.copyTree[0],this.rightValue=this.copyTree[0].children)}},methods:{changeStationLog(e){this.leftValue=e,this.rightValue=e.children},addItem(e){let s=[],a=0;for(const t of this.copyTree)for(const e of t.children)for(const t of e.children)t.checked&&a++;for(const c of this.copyTree){c.checkednumber=0;for(const l of c.children)for(const i of l.children){if(i.id===e.id){if(!i.checked&&a>=5){t({title:"最多选择5个职位",icon:"none"});continue}i.checked=!i.checked}i.checked&&(s.push(`${i.id}`),c.checkednumber++)}}s=s.join(","),this.$emit("onChange",s)}}},[["render",function(e,t,x,T,V,C){const j=s(a("uni-icons"),_),w=g,I=m,L=b;return c(),l(I,{class:"expected-station"},{default:i((()=>[x.search?(c(),l(I,{key:0,class:"sex-search"},{default:i((()=>[o(j,{class:"iconsearch",type:"search",size:"20"}),o(w,{class:"uni-input searchinput","confirm-type":"search"})])),_:1})):n("",!0),o(I,{class:"sex-content"},{default:i((()=>[o(L,{"show-scrollbar":!1,"scroll-y":!0,class:"sex-content-left"},{default:i((()=>[(c(!0),r(h,null,d(V.copyTree,(e=>(c(),l(I,{key:e.id,class:u(["left-list-btn",{"left-list-btned":e.id===V.leftValue.id}]),onClick:t=>C.changeStationLog(e)},{default:i((()=>[f(p(e.label)+" ",1),y(o(I,{class:"positionNum"},{default:i((()=>[f(p(e.checkednumber),1)])),_:2},1536),[[k,e.checkednumber]])])),_:2},1032,["class","onClick"])))),128))])),_:1}),o(L,{"show-scrollbar":!1,"scroll-y":!0,class:"sex-content-right"},{default:i((()=>[(c(!0),r(h,null,d(V.rightValue,(e=>(c(),l(I,{key:e.id},{default:i((()=>[o(I,{class:"secondary-title"},{default:i((()=>[f(p(e.label),1)])),_:2},1024),o(I,{class:"grid-sex"},{default:i((()=>[(c(!0),r(h,null,d(e.children,(e=>(c(),l(I,{key:e.id,class:u([{"sex-right-btned":e.checked},"sex-right-btn"]),onClick:t=>C.addItem(e)},{default:i((()=>[f(p(e.label),1)])),_:2},1032,["class","onClick"])))),128))])),_:2},1024)])),_:2},1024)))),128))])),_:1})])),_:1})])),_:1})}],["__scopeId","data-v-efd19bad"]]);export{x as _}; diff --git a/unpackage/dist/build/web/assets/index-CvKRigV-.css b/unpackage/dist/build/web/assets/index-CvKRigV-.css deleted file mode 100644 index 73493a6..0000000 --- a/unpackage/dist/build/web/assets/index-CvKRigV-.css +++ /dev/null @@ -1 +0,0 @@ -.waterfalls-flow[data-v-6467e41e]{overflow:hidden}.waterfalls-flow-column[data-v-6467e41e]{float:left}.column-value[data-v-6467e41e]{width:100%;font-size:0;overflow:hidden;transition:opacity .4s;opacity:0}.column-value-show[data-v-6467e41e]{opacity:1}.column-value .inner[data-v-6467e41e]{font-size:.9375rem}.column-value .img[data-v-6467e41e]{width:100%}.column-value .img-hide[data-v-6467e41e]{display:none}.column-value .img-error[data-v-6467e41e]{background:#f2f2f2 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAAAiAQMAAAAatXkPAAAABlBMVEUAAADMzMzIT8AyAAAAAXRSTlMAQObYZgAAAIZJREFUCNdlzjEKwkAUBNAfEGyCuYBkLyLuxRYW2SKlV1JSeA2tUiZg4YrLjv9PGsHqNTPMSAQuyAJgRDHSyvBPwtZoSJXakeJI9iuRLGDygdl6V0yKDtyMAeMPZySj8yfD+UapvRPj2JOwkyAooSV5IwdDjPdCPspe8LyTl9IKJvDETKKRv6vnlUasgg0fAAAAAElFTkSuQmCC) no-repeat center center}.popup-container[data-v-718c8687]{position:fixed;top:0;left:0;width:100vw;height:100vh;background:rgba(0,0,0,.5);overflow:hidden;z-index:999}.popup-content[data-v-718c8687]{position:relative;width:100%;height:100%;background:linear-gradient(to bottom,#007aff,#005bbb);text-align:center;flex-direction:column;display:flex;justify-content:space-around;align-items:center}.title[data-v-718c8687]{padding-left:.625rem;width:calc(100% - .625rem);height:2.125rem;font-family:Inter,Inter;font-weight:400;font-size:1.75rem;color:#fff;line-height:2.03125rem;text-align:left;font-style:normal;text-transform:none}.circle-content[data-v-718c8687]{width:22.84375rem;height:23.34375rem;position:relative}.circle[data-v-718c8687]{width:7.03125rem;height:7.03125rem;background:linear-gradient(145deg,#13c57c,#8dc5ae);border-radius:50%;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);font-weight:400;font-size:1.09375rem;color:#fff;text-align:center;line-height:7.03125rem}.circle[data-v-718c8687]:before,.circle[data-v-718c8687]:after{width:7.03125rem;height:7.03125rem;background:linear-gradient(145deg,#13c57c,#8dc5ae);border-radius:50%;position:absolute;left:0;top:0;z-index:-1;content:""}@keyframes larger2-718c8687{0%{transform:scale(1)}to{transform:scale(2.5);opacity:0}}.circle[data-v-718c8687]:after{animation:larger1-718c8687 2s infinite}@keyframes larger1-718c8687{0%{transform:scale(1)}to{transform:scale(3.5);opacity:0}}.circle[data-v-718c8687]:before{animation:larger2-718c8687 2s infinite}.tabs[data-v-718c8687]{position:relative;width:100%;height:100%;border-radius:50%;z-index:3}.tab[data-v-718c8687]{position:absolute;white-space:nowrap;padding:.25rem .5rem;background:#fff;border-radius:1.25rem;box-shadow:0 .0625rem .25rem rgba(0,0,0,.15);transition:all .5s ease}.close-btn[data-v-718c8687]{width:17.15625rem;line-height:2.65625rem;height:2.65625rem;background:#2ecc71;color:#fff}.popContent[data-v-718c8687]{padding:.75rem;background:#4778ec;height:calc(100% - 1.53125rem)}.popContent[data-v-718c8687] .sex-content[data-v-718c8687]{border-radius:.625rem;width:100%;margin-top:.625rem;margin-bottom:1.25rem;display:flex;overflow:hidden;height:calc(100% - 3.125rem);border:1px solid #4778ec}.popContent[data-v-718c8687] .s-header[data-v-718c8687]{display:flex;justify-content:space-between;text-align:center;font-size:16px}.popContent[data-v-718c8687] .s-header[data-v-718c8687] .heade-lf[data-v-718c8687]{line-height:30px;width:50px;height:30px;border-radius:4px;border:1px solid #666666;color:#666;background:#fff}.popContent[data-v-718c8687] .s-header[data-v-718c8687] .heade-ri[data-v-718c8687]{line-height:30px;width:50px;height:30px;border-radius:4px;border:1px solid #1b66ff;background-color:#1b66ff;color:#fff}.recommend-card[data-v-8f5165b1]:before{position:absolute;left:0;top:0;content:"";height:1.875rem;width:100%;background:linear-gradient(to bottom,#ffad47,#fff)}.recommend-card[data-v-8f5165b1]:after{position:absolute;right:-.625rem;top:1.25rem;content:"";height:3.125rem;width:6.25rem;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHMAAACTCAMAAACK2dZWAAABelBMVEUAAAD/y4n/477/37X/vGb/wnT/5sT/v2//053/xHr/yIL/z5L/6s7/267/rUb/2Kb/7tb/tlv/8dz/16P/s1T/x3//69L/8uL/rUf/58n/5sv/0Jb/uF7/sE3/yoH/wXP/rkj/rUb/8+T/rkf/rkf/4Lj/rkf/5ML/rkf/05v/r0n/sk7/r0r/sE3/79n/sEv/r0j/3LD/rkn/4r//wnb/tVn/r0n/rkb/37n/y4r/37b/r0f/yIP/26//rUb/rUb/yYb/rkj/yof/6cz/umP/z5H/3rX/2KX/0Jv/5L7/x4L/1KD/xHr/8eD/7tn/vWr/umL/3LD/umL/8eD/37f/rUb/69L/yYb/8+H/7NP/zY3/w3r/0JT/r0r/263/x4L/8+L/4r7/7tn/yIL/7tr/wnf/x4L/4b3/16P/uF//zpH/26z/8+P/4r7/58j/8+P/69P/zo//umL/4b3/r0n/yoX/8uH/4r7/1Z7/z5H/uWP/xoH/wXP/1qfCo8QHAAAAfnRSTlMAdXV1dXV1dXV1dnV1dnN1dXV1dnV1dXVwdXZ2dnUECA5meG1ZeU95JHktFT55eR8bDDUPeXlfSBh5Pyl6eWIxEFUaeXlvbTMjIl1PTj8beWZbV1FEQi0paWliPTw6K3FvTzc2JyAWcXBvZ2RhWmNaWVVRSUQvEmFZR0JpZVn1Lwv6AAAKtklEQVR42rRVzauqUBCPAlcupEXhWShcOLgTok20FXq0UHgYUpuLRdAmKwjq338z56Oxd9K0j5/H+Toz8/PYXG+nJbxxso3T4zIfDn/y5T6Ns+Tid76HUbJJ98vhj8AQII0cmLeXzhdw2aSSbmgAo/kxTvwPEx5zpKsB7O7j5FOE3jbNia+e9piNPvEjZseQCJ/TLuPxm4z+ZhlCq34fBag+KkJfXGLJG/Au63YfhrJZXwAN5eFNSlKrnXAZvzxOSQqM7YGs++1ro7PJKxmdZ6xhP33hBU9O4XM6hyKOVMS6an3UbBU67YHcZMdeq/caOx9AeGrxfkcnfcjBe6SrpPGX7hQOkA4FQApHKe1KgVLHhCMTcaERruYNp2cVDspwSBmo2tAPFNlZU0pbFdo3RdJGTXHtamVLk5A1oYxkB/uGgbq1FH0ZueBRHiyyQTYgHR8iImNw3dmMPAKjfTOKzE9+U/8UlWsZ2vfE2iCHCQc1BdDVW1H99HrrSBe6rigHKM8Awwv7CyEDt6WKhYgOdX+nm0g0cJlrw4UCFpOSMRFgKoAXtoc0uYWcrgrbmKCCLpCmXiXl3A3cajDTBzKmdxhASGClHWlF0+r5CWQKZluyLzNILGUqAgBpopG+DjKrao7WkSXBmDK0priMuswIWa5lgJoEh9FDym1gfQ/B4uGH/RBY30TSMTE1KLvde5dMI46S8ilGIijM2Z3scAugK8lErYMW2kRBvTGMu/LGgFraCTKD8xxgekMEGpUZZrPg6hvHbMrHg+6sWJ+n0+liXcyAvvGDZsYxGxZ2r9P52LsN3mRT7BqW8v8OOt41K9ut574xCYsZb1b9ez+0T6p6ooavJ48/YIsdp7zKDrwoF/lX3uv2CF0yyOOz304VkoJDlgmgAgGQZvmR5yqFE50B/rfuP5K/gFJ6yIoWi/IEcR2uLOFnr1OLP+VXcl+qI/wf59Xv4ioQhCPXyIlYWApevaWkieEJIWBikipwEAjBVxwcQasUgZfi/vc37jhOJOrs3qc7O47j983+iElq3gzJhpPGS5RQvsnY8dTKkgccpTBSkYa/Rz/7mv6b7/vk65Ydjf5QLjOdTSSNQbb2ys+OVHp8zDo5HxV1zyVs5oIaExENa0Ojk4nmG58SOzEsrY1nW9M/kJumYuTSB4Hqz+jjVmR0Bw2lksMzImJJVFqWXUL2yYnT2M1MkWymmbIj/Q560gwGPB6mjKU/xMWoE1z5GhMCMAH12PDGdmaOBT4WaELw9SV1zbHA+aghNAHYaxY4TpP5BZZ2nc76mdlgKWiW7XSEr/c45i+tNHeDJBy54EclDMIG/RS6DMPSSnN1DTsK7kI8QQlHUIKHCNDgAcD4wkrzo24eg4Yd+WgAB3w1h5O4zq00459xqklNF05o+rwmMyv8C10m0TRE1jTSVBBzu0xAY9D9jabqVMAwNTIq0nQZOkNbMvaaT1QvaDVLRbeHk+eWe0iNMrFmodxJFFaaST5Jph4mmupipblwTdjWQtbBSnMrjGCLb448ct0ociOMgoMGrDbVh43mgTSRgIijlkwVuOqVgggALcFtmo4UVsuJFQNQkclQekG7W8c9aAyvi1hN7l29MPSQrzDvoTxA5A0D8wwRnxUIjQFKOMftsmPWeOrDWPMkUd3axLUnIF+bvhDOkuaF1r0Sq4vNNC+RJ6Cg1Fvq9eE4zxdUnohi4FGHIo0bVUlXXur04GGH+eidDCS/K8rHzmt9jqS3LnmtQ3yQHsPLC1FydU65VgKTNki/eIdTNlfEPpo0l0Y6JxKWepm9/BsSeXJF5PdJyXUlc6T7+OkBxwDpIxmX/MolSZxaRrxPTUTPp3hkkLd3xwB/V73X5B/HkR57h3N/jwcU//NePi+NQ0Ecf0KkJIdAIEIPj0ZxD6KCIi/rYQMbSk8SaCkswoalh5JCrz2qf/zOtzMyG5JmY2395GXezHsz880vFYuTrCW7QVbU/xy8BtwU2QQMIjhY4Q3wuxz/KzvKl08nmVRKj0B8qROfgsrUKLMAsEInWfBalM/VarUaPy+Lp0UmlcqODhl/QUq+CPoDmcViwU5/Gj9txe7ys+Ag4DbrrBbU3D87C2jQDAs5xErgcywJiCmLfQrIoglW/G0GekgNbrNB6bZ5Ph08UAgr+AjJaARYV1Z91tIMJMmu09tU8lfsK1IA9ApoSKTCEoiCD94FuY53W393Lp30lCKepVZmdQhVqG/qBDhyhWkjeXL+0ThdmVYq3uWTfTgIYWSAmuVEmWAwq9g2dqXZwYvbVmgqFcMQ9T5Ar45zt3l6AVwoQz+gBsmbQ84RGJudVKfHAE+2g9KdHh5XjEwHo0JFB3SI5RNujQFGA63m4d5y00lOr3RAaDN4LEhIwDGvcwBERDY0uTL/oUL2IXHLHv9ZucNKFqYH5fSAktN5YvpQkKg30FPxaHiw8HVVXJk0kyRn56YXyWaKzjiIgRwSc0OePPE0CUOviiRvTE+SOYlyObdkT4zE6mjiADMPGJbsLTrxPs90PTbma0Un68qYrxWdzO7NB0k2E8/SwVj1rYawesiWJE3wLvcQtdtyiyGC6kmMJVuPMO0jCUYvk/deaFaXgKM7fF2cxJLzc7Mff6yNcNlRFFGryKOQVTCw5iHGoDQsyCO26SYx+3K9TiPCYrCjE+AtC4OLQww/fRmZ/bmbQbQTkVbS9YP5FPk8tdGHSGd3pifJ9Y9R+5cUfUTUpvO8/Yk9NL6qm29h+KvjpcaN7nHrTUa37a/yahheXJka9xfhMPyO9BZu5mkcRzETiREgrlE6Q982Hqn/5c/ajV+Gw2H4uPO538Zp3IN0c252cB2S6PChfpf0aJOO7/dvr+Wz6yoIhHGegNVZsFEhEEIQIjG5uDDB+BBd+hZ9/1yGcm16z6mVU+1v4V/g85sZR/1r0e161Rw0Vqc05GfYoLm+svpn3u52Coxxlc8kSGr0gs7bDUXL++0+kKPJ6M015HJBm+SsPlGN1+WWyXvV5KJpfDySaA9OWPtVZZ14UFVVOrBsRHvoozviwGZ2vAvNbPUfX5aYvR19BqN5v6C9UEMeVW0FYd2JIskfZRjzku9rK7G9K1qvUAEiGhxRF7cCFdHNlcVREEfFsUYlmFQ7UwpxIUpUNuJ1XToRExKSskGoXJV7DaVTrsmgfvEV/QKaPZb7hC2e0adYUj4px1C+HwLqVt92E/oMjhPMKUqFGz5kVOY2S1l+W85Hk0i3dt5PRNex9WtSQ0b5iM6mDVGHtfmEgahG5+J8VMGriuL55+REVDT20PFGDhfkedXbGL5KPoqGs+LbCVg+S664kK7KDh0PvSZHfPp2Q2K4QQZ3tKJhaWX/k50JskwwP9RrmxXJkz92OpAUYCI0PaZylORJEQv1PNeSJK+YDap5U7B2JuCb4vb/BKjexuEwvOGWqov/t5Cfmpd1PUA80mgujGrL9VwvGc5r8HlsduW9FyRPAd1BO1rvlGvHywx6eXYwrqA5LoLnmQDz8tKrljZPtBvadtpIwchdD/vimqhdvz4xwQnCgp/lcFn6SY+AnvrFDHIWnvE8ZI2O6ZpfVoK56WKSwE94HMDEdWzfayNODyLwde2fWG8yIfuOHtS/WjUZmUP4Hc6CmK+QcHQ0UCpO6f4ySCkACcmdlGtpUe7+AlpIjwerblXuAAAAAElFTkSuQmCC) center center no-repeat;background-size:3.125rem 4.375rem}.recommend-card[data-v-8f5165b1]{padding:.625rem}.recommend-card .card-content[data-v-8f5165b1]{position:relative;z-index:2}.recommend-card .card-content .recommend-card-title[data-v-8f5165b1]{color:#333;font-size:1rem}.recommend-card .card-content .recommend-card-tip[data-v-8f5165b1]{font-size:.75rem;color:#606060;margin-top:.3125rem}.recommend-card .card-content .recommend-card-controll[data-v-8f5165b1]{display:flex;align-items:center;justify-content:space-around;margin-top:1.25rem}.recommend-card .card-content .recommend-card-controll .controll-yes[data-v-8f5165b1]{border-radius:1.21875rem;padding:0 .9375rem;background:#ffad47;border:.0625rem solid #ffad47;color:#fff}.recommend-card .card-content .recommend-card-controll .controll-no[data-v-8f5165b1]{border-radius:1.21875rem;border:.0625rem solid #ffad47;padding:0 .9375rem;color:#ffad47}.recommend-card .card-content .recommend-card-controll .controll-yes[data-v-8f5165b1]:active,.recommend-card .card-content .recommend-card-controll .controll-no[data-v-8f5165b1]:active{background:#e8e8e8;border:.0625rem solid #e8e8e8}.app-container[data-v-8f5165b1]{width:100%;height:calc(100vh - var(--window-top) - var(--status-bar-height) - var(--window-bottom));background:linear-gradient(180deg,#4778ec,#002979);display:flex;flex-direction:column;position:fixed}.app-container .index-AI[data-v-8f5165b1]{height:1.3125rem;font-family:Inter,Inter;font-weight:400;font-size:1.09375rem;color:#fff;line-height:1.28125rem;padding:2.65625rem 0 0 .9375rem}.app-container .index-option[data-v-8f5165b1]{margin-top:.84375rem;display:flex}.app-container .index-option .option-left[data-v-8f5165b1]{display:flex;width:13.34375rem;height:1.75rem;background:#4778ec;border-radius:0 .53125rem .53125rem 0;align-items:center}.app-container .index-option .option-left .left-item[data-v-8f5165b1]{width:3.65625rem;text-align:center;line-height:1.46875rem;height:1.46875rem;margin-right:.84375rem;color:#fff}.app-container .index-option .option-left .left-item[data-v-8f5165b1]:active{color:#00f}.app-container .index-option .option-right[data-v-8f5165b1]{flex:1;position:relative;display:flex;justify-content:center;align-items:center;padding:0 1.53125rem}.app-container .index-option .option-right .right-input[data-v-8f5165b1]{width:100%;height:1.40625rem;background:rgba(255,255,255,.5);border-radius:.53125rem;border:.09375rem solid #fff;padding:0 1.5625rem 0 .3125rem;color:#fff}.app-container .index-option .option-right .iconsearch[data-v-8f5165b1]{position:absolute;right:1.875rem}.app-container .tab-options[data-v-8f5165b1]{margin-top:.3125rem;display:flex;align-items:center;justify-content:space-between;height:2.40625rem;background:#fff;border-radius:.53125rem .53125rem 0 0;padding:0 .75rem;overflow:hidden}.app-container .tab-options .tab-scroll[data-v-8f5165b1]{height:2.40625rem;line-height:2.40625rem;flex:1;overflow:hidden;padding-right:.3125rem}.app-container .tab-options .tab-scroll .tab-op-left[data-v-8f5165b1]{display:flex;align-items:center;flex-wrap:nowrap}.app-container .tab-options .tab-scroll .tab-op-left .tab-list[data-v-8f5165b1]{text-align:center;white-space:nowrap;margin-right:.9375rem;font-size:.875rem;color:#606060}.app-container .tab-options .tab-op-right[data-v-8f5165b1]{display:flex;align-items:center}.app-container .tab-options .tab-op-right .tab-recommend[data-v-8f5165b1]{white-space:nowrap;width:-webkit-fit-content;width:fit-content;padding:0 .3125rem;height:1.3125rem;background:#4778ec;border-radius:.53125rem .53125rem 0;text-align:center;color:#fff;font-size:.65625rem;line-height:1.3125rem;margin-right:.4375rem}.app-container .tab-options .tab-op-right .tab-number[data-v-8f5165b1]{font-size:.65625rem;color:#606060;line-height:.78125rem;text-align:center}.app-container .tab-options .tab-op-right .tab-filter[data-v-8f5165b1]{display:flex}.app-container .tab-options .tab-op-right .tab-filter .image[data-v-8f5165b1]{width:.875rem;height:.84375rem}.app-container .falls-scroll[data-v-8f5165b1]{flex:1;overflow:hidden;background:linear-gradient(180deg,rgba(255,255,255,.2),#fff)}.app-container .falls[data-v-8f5165b1]{padding:.625rem 1.25rem}.app-container .falls .item[data-v-8f5165b1]{position:relative}.app-container .falls .item .falls-card[data-v-8f5165b1]{padding:.9375rem}.app-container .falls .item .falls-card .falls-card-title[data-v-8f5165b1]{font-size:1.3125rem;color:#606060;line-height:1.53125rem;text-align:left;word-break:break-all}.app-container .falls .item .falls-card .falls-card-pay[data-v-8f5165b1]{word-break:break-all;font-size:1.0625rem;color:#002979;line-height:1.5625rem;text-align:left;display:flex;align-items:end;position:relative}.app-container .falls .item .falls-card .falls-card-pay .pay-text[data-v-8f5165b1]{color:#002979;padding-right:.3125rem}.app-container .falls .item .falls-card .falls-card-pay .flame[data-v-8f5165b1]{position:absolute;bottom:0;right:-.3125rem;transform:translateY(-30%);width:.75rem;height:.96875rem}.app-container .falls .item .falls-card .falls-card-education[data-v-8f5165b1],.app-container .falls .item .falls-card .falls-card-experience[data-v-8f5165b1]{width:-webkit-fit-content;width:fit-content;height:.9375rem;background:#13c57c;border-radius:.53125rem;padding:0 .3125rem;line-height:.9375rem;font-weight:400;font-size:.65625rem;color:#fff;text-align:center;margin-top:.4375rem}.app-container .falls .item .falls-card .falls-card-company[data-v-8f5165b1],.app-container .falls .item .falls-card .falls-card-pepleNumber[data-v-8f5165b1]{margin-top:.4375rem;font-size:.65625rem;color:#606060;line-height:.78125rem;text-align:left}.app-container .falls .item .falls-card .falls-card-pepleNumber[data-v-8f5165b1]{display:flex;justify-content:space-between;align-items:center}.app-container .falls .item .falls-card .falls-card-matchingrate[data-v-8f5165b1]{margin-top:.3125rem;display:flex;justify-content:space-between;align-items:center;font-size:.65625rem;color:#4778ec;text-align:left}.logo[data-v-8f5165b1]{width:6.25rem;height:6.25rem}.tabchecked[data-v-8f5165b1]{color:#4778ec!important} diff --git a/unpackage/dist/build/web/assets/index-DQAaRz8Z.css b/unpackage/dist/build/web/assets/index-DQAaRz8Z.css deleted file mode 100644 index a1ac9a2..0000000 --- a/unpackage/dist/build/web/assets/index-DQAaRz8Z.css +++ /dev/null @@ -1 +0,0 @@ -*{margin:0;-webkit-tap-highlight-color:transparent}html,body{-webkit-user-select:none;user-select:none;width:100%;height:100%}body{overflow-x:hidden;font-size:16px}uni-app,uni-page,uni-page-wrapper,uni-page-body{display:block;box-sizing:border-box;width:100%}uni-page-wrapper{position:relative}#app,uni-app,uni-page,uni-page-wrapper{height:100%}.uni-mask{position:fixed;z-index:999;top:0;right:0;left:0;bottom:0;background:rgba(0,0,0,.5)}.uni-fade-enter-active,.uni-fade-leave-active{transition-duration:.25s;transition-property:opacity;transition-timing-function:ease}.uni-fade-enter-from,.uni-fade-leave-active{opacity:0}.uni-loading,uni-button[loading]:before{background-color:transparent;background-image:url(data:image/svg+xml;base64,\ PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=);background-repeat:no-repeat}.uni-loading{width:20px;height:20px;display:inline-block;vertical-align:middle;animation:uni-loading 1s steps(12,end) infinite;background-size:100%}@keyframes uni-loading{0%{transform:rotate3d(0,0,1,0)}to{transform:rotate3d(0,0,1,360deg)}}html{--primary-color: #007aff;--UI-BG: #fff;--UI-BG-1: #f7f7f7;--UI-BG-2: #fff;--UI-BG-3: #f7f7f7;--UI-BG-4: #4c4c4c;--UI-BG-5: #fff;--UI-FG: #000;--UI-FG-0: rgba(0, 0, 0, .9);--UI-FG-HALF: rgba(0, 0, 0, .9);--UI-FG-1: rgba(0, 0, 0, .5);--UI-FG-2: rgba(0, 0, 0, .3);--UI-FG-3: rgba(0, 0, 0, .1)}body:after{position:fixed;content:"";left:-1000px;top:-1000px;animation:shadow-preload .1s;animation-delay:3s}@keyframes shadow-preload{0%{background-image:url(https://cdn.dcloud.net.cn/img/shadow-grey.png)}to{background-image:url(https://cdn.dcloud.net.cn/img/shadow-grey.png)}}.uni-async-error{position:absolute;left:0;right:0;top:0;bottom:0;color:#999;padding:100px 10px;text-align:center}.uni-async-loading{box-sizing:border-box;width:100%;padding:50px;text-align:center}.uni-async-loading .uni-loading{width:30px;height:30px}uni-page-head{display:block;box-sizing:border-box}.uni-page-head{position:fixed;left:var(--window-left);right:var(--window-right);height:44px;height:calc(44px + constant(safe-area-inset-top));height:calc(44px + env(safe-area-inset-top));padding:7px 3px;padding-top:calc(7px + constant(safe-area-inset-top));padding-top:calc(7px + env(safe-area-inset-top));display:flex;overflow:hidden;justify-content:space-between;box-sizing:border-box;z-index:998;color:#fff;background-color:#000;transition-property:all}.uni-page-head *{box-sizing:border-box}.uni-page-head .uni-btn-icon{overflow:hidden;min-width:1em;font-style:normal}.uni-page-head-titlePenetrate,.uni-page-head-titlePenetrate .uni-page-head-bd,.uni-page-head-titlePenetrate .uni-page-head-bd *{pointer-events:none}.uni-page-head-titlePenetrate *{pointer-events:auto}.uni-page-head.uni-page-head-transparent .uni-page-head-ft>div{justify-content:center}.uni-page-head~.uni-placeholder{width:100%;height:44px;height:calc(44px + constant(safe-area-inset-top));height:calc(44px + env(safe-area-inset-top))}.uni-placeholder-titlePenetrate{pointer-events:none}.uni-page-head-hd{display:flex;align-items:center;font-size:16px}.uni-page-head-bd{position:absolute;left:70px;right:70px;min-width:0;-webkit-user-select:auto;user-select:auto}.uni-page-head-btn{position:relative;width:auto;margin:0 2px;word-break:keep-all;white-space:pre;cursor:pointer;font-size:0px}.uni-page-head-transparent .uni-page-head-btn{display:flex;align-items:center;width:32px;height:32px;border-radius:50%;background-color:rgba(0,0,0,.5)}.uni-page-head-btn-red-dot:after{content:attr(badge-text);position:absolute;right:0;top:0;background-color:red;color:#fff;width:18px;height:18px;line-height:18px;border-radius:18px;overflow:hidden;transform:scale(.5) translate(40%,-40%);transform-origin:100% 0}.uni-page-head-btn-red-dot[badge-text]:after{font-size:12px;width:auto;min-width:18px;max-width:42px;text-align:center;padding:0 3px;transform:scale(.7) translate(40%,-40%)}.uni-page-head-btn-select svg{vertical-align:middle;margin-left:2px;transform:rotate(270deg) scale(.8)}.uni-page-head-search{position:relative;display:flex;flex:1;margin:0 2px;line-height:30px;font-size:15px}.uni-page-head-search-input{width:100%;height:100%;padding-left:34px;text-align:left}.uni-page-head-search-input .uni-input-input:disabled{pointer-events:none}.uni-page-head-search-placeholder{position:absolute;max-width:100%;height:100%;padding-left:34px;overflow:hidden;word-break:keep-all;white-space:pre}.uni-page-head-search-placeholder-right{right:0}.uni-page-head-search-placeholder-center{left:50%;transform:translate(-50%)}.uni-page-head-search-icon{position:absolute;top:0;left:2px;width:30px;height:30px;display:flex;justify-content:center;align-items:center}.uni-page-head-ft{display:flex;align-items:center;flex-direction:row-reverse;font-size:13px}.uni-page-head__title{font-weight:700;font-size:16px;line-height:30px;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.uni-page-head__title .uni-loading{width:16px;height:16px;margin-top:-3px}.uni-page-head__title .uni-page-head__title_image{width:auto;height:26px;vertical-align:middle}.uni-page-head-shadow{overflow:visible}.uni-page-head-shadow:after{content:"";position:absolute;left:0;right:0;top:100%;height:5px;background-size:100% 100%}uni-page-head[uni-page-head-type=default]~uni-page-wrapper{height:calc(100% - 44px);height:calc(100% - 44px - constant(safe-area-inset-top));height:calc(100% - 44px - env(safe-area-inset-top))}.uni-page-head-shadow-grey:after{background-image:url(https://cdn.dcloud.net.cn/img/shadow-grey.png)}.uni-page-head-shadow-blue:after{background-image:url(https://cdn.dcloud.net.cn/img/shadow-blue.png)}.uni-page-head-shadow-green:after{background-image:url(https://cdn.dcloud.net.cn/img/shadow-green.png)}.uni-page-head-shadow-orange:after{background-image:url(https://cdn.dcloud.net.cn/img/shadow-orange.png)}.uni-page-head-shadow-red:after{background-image:url(https://cdn.dcloud.net.cn/img/shadow-red.png)}.uni-page-head-shadow-yellow:after{background-image:url(https://cdn.dcloud.net.cn/img/shadow-yellow.png)}uni-tabbar{display:block;box-sizing:border-box;width:100%;z-index:998}.uni-tabbar{display:flex;z-index:998;box-sizing:border-box}.uni-tabbar-top,.uni-tabbar-bottom,.uni-tabbar-top .uni-tabbar,.uni-tabbar-bottom .uni-tabbar{position:fixed;left:var(--window-left);right:var(--window-right)}.uni-app--showlayout+.uni-tabbar-top,.uni-app--showlayout+.uni-tabbar-bottom,.uni-app--showlayout+.uni-tabbar-top .uni-tabbar,.uni-app--showlayout+.uni-tabbar-bottom .uni-tabbar{left:var(--window-margin);right:var(--window-margin)}.uni-tabbar-bottom .uni-tabbar{bottom:0;padding-bottom:0;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom)}.uni-tabbar~.uni-placeholder{width:100%;margin-bottom:0;margin-bottom:constant(safe-area-inset-bottom);margin-bottom:env(safe-area-inset-bottom)}.uni-tabbar *{box-sizing:border-box}.uni-tabbar__item{display:flex;justify-content:center;align-items:center;flex-direction:column;flex:1;font-size:0;text-align:center;-webkit-tap-highlight-color:rgba(0,0,0,0)}.uni-tabbar__bd{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;cursor:pointer}.uni-tabbar__icon{position:relative;display:inline-block;margin-top:5px}.uni-tabbar__icon.uni-tabbar__icon__diff{margin-top:0;width:34px;height:34px}.uni-tabbar__icon img{width:100%;height:100%}.uni-tabbar__iconfont{font-family:UniTabbarIconFont}.uni-tabbar__label{position:relative;text-align:center;font-size:10px}.uni-tabbar-border{position:absolute;left:0;top:0;width:100%;height:1px;transform:scaleY(.5)}.uni-tabbar__reddot{position:absolute;top:2px;right:0;width:12px;height:12px;border-radius:50%;background-color:#f43530;color:#fff;transform:translate(40%)}.uni-tabbar__badge{width:auto;height:16px;line-height:16px;border-radius:16px;min-width:16px;padding:0 2px;font-size:12px;text-align:center;white-space:nowrap}.uni-tabbar__mid{display:flex;justify-content:center;position:absolute;bottom:0;background-size:100% 100%}.uni-app--showtabbar uni-page-wrapper{display:block;height:calc(100% - var(--tab-bar-height));height:calc(100% - var(--tab-bar-height) - constant(safe-area-inset-bottom));height:calc(100% - var(--tab-bar-height) - env(safe-area-inset-bottom))}uni-page[data-type] uni-page-wrapper{height:100%}.uni-app--showtabbar uni-page-wrapper:after{content:"";display:block;width:100%;height:var(--tab-bar-height);height:calc(var(--tab-bar-height) + constant(safe-area-inset-bottom));height:calc(var(--tab-bar-height) + env(safe-area-inset-bottom))}.uni-app--showtabbar uni-page-head[uni-page-head-type=default]~uni-page-wrapper{height:calc(100% - 44px - var(--tab-bar-height));height:calc(100% - 44px - constant(safe-area-inset-top) - var(--tab-bar-height) - constant(safe-area-inset-bottom));height:calc(100% - 44px - env(safe-area-inset-top) - var(--tab-bar-height) - env(safe-area-inset-bottom))}uni-page-body{min-height:calc(100vh - var(--window-top) - var(--status-bar-height) - var(--window-bottom));font-size:.875rem;background-color:#fff;color:#333;overflow:hidden}body{background-color:#fff}uni-image{width:100%;height:100%}.page-body{height:calc(100vh - var(--window-top) - var(--status-bar-height) - var(--window-bottom))}body,html{height:100%;width:100%;overflow-x:hidden}.opctiy_8{opacity:.8!important}.opctiy_7{opacity:.7!important}.opctiy_6{opacity:.6!important}.opctiy_5{opacity:.5!important}.opctiy_4{opacity:.4!important}.opctiy_3{opacity:.3!important}.opctiy_2{opacity:.2!important}.opctiy_1{opacity:.1!important}.fs_10{font-size:.625rem!important}.fs_12{font-size:.75rem!important}.fs_14{font-size:.875rem!important}.fs_16{font-size:1rem!important}.fs_18{font-size:1.125rem!important}.fs_20{font-size:1.25rem!important}.fs_22{font-size:1.375rem!important}.fs_24{font-size:1.5rem!important}.fs_26{font-size:1.625rem!important}.fs_28{font-size:1.75rem!important}.fs_30{font-size:1.875rem!important}.fs_32{font-size:2rem!important}.fw_blod{font-weight:700}.color_D16B3F{color:#d16b3f!important}.color_666666{color:#666!important}.color_F8A52F{color:#f8a52f!important}.color_999999{color:#999!important}.color_C7331D{color:#c7331d!important}.color_333333{color:#333!important}.color_FFFFFF{color:#fff!important}.color_E7612E{color:#e7612e!important}.color_EF4B37{color:#ef4b37!important}.color_5F5F5F{color:#5f5f5f!important}.color_FB7307{color:#fb7307!important}.color_4873D9{color:#4873d9!important}.color_4E8ADE{color:#4e8ade!important}.color_D9D9D9{color:#d9d9d9!important}.mar_le30{margin-left:1.875rem!important}.mar_le25{margin-left:1.5625rem!important}.mar_le20{margin-left:1.25rem!important}.mar_le15{margin-left:.9375rem!important}.mar_le10{margin-left:.625rem!important}.mar_le5{margin-left:.3125rem!important}.mar_ri5{margin-right:.3125rem!important}.mar_ri10{margin-right:.625rem!important}.mar_ri15{margin-right:.9375rem!important}.mar_ri20{margin-right:1.25rem!important}.mar_ri25{margin-right:1.5625rem!important}.mar_top0{margin-top:0!important}.mar_top5{margin-top:.3125rem!important}.mar_top10{margin-top:.625rem!important}.mar_top15{margin-top:.9375rem!important}.mar_top20{margin-top:1.25rem!important}.mar_top25{margin-top:1.5625rem!important}.fw_blod{font-weight:700!important}.bg_e8{background-color:#e8e8e8!important}.bg_cc{background-color:#ccc!important}.bg_ff{background-color:#fff!important}.fl_box{display:flex}.fl_deri{flex-direction:column}.fl_row{flex-direction:row}.fl_justmiddle{justify-content:center}.fl_juststart{justify-content:flex-start}.fl_justbet{justify-content:space-between}.fl_justround{justify-content:space-around}.fl_justend{justify-content:flex-end}.fl_almiddle{align-items:center}.fl_alstart{align-items:flex-start}.fl_alend{align-items:flex-end}.fl_1{flex:1}.line_2{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;text-overflow:ellipsis}.uni-tabbar .uni-tabbar__item:nth-child(4) .uni-tabbar__bd .uni-tabbar__icon{height:100%!important;width:2.5rem!important}.no-bounce-page[data-v-8f54c7a0]{width:100vw;height:100vh;overflow:hidden;overscroll-behavior:none}.scroll-area[data-v-8f54c7a0]{height:100%;overflow-y:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch} diff --git a/unpackage/dist/build/web/assets/index-DdiBakOJ.js b/unpackage/dist/build/web/assets/index-DdiBakOJ.js deleted file mode 100644 index e0959aa..0000000 --- a/unpackage/dist/build/web/assets/index-DdiBakOJ.js +++ /dev/null @@ -1,40 +0,0 @@ -function __vite__mapDeps(indexes) { - if (!__vite__mapDeps.viteFileDeps) { - __vite__mapDeps.viteFileDeps = ["assets/pages-index-index.DvjXu2Re.js","assets/uni-icons.OqqMV__G.js","assets/uni-icons-DLnnJ5ic.css","assets/screening-job-requirements.BSt0qcms.js","assets/screening-job-requirements-DfX-680r.css","assets/matchingDegree.C4MMzh2G.js","assets/dict-Label.ot3xNx0t.js","assets/expected-station.BpvqBSAB.js","assets/expected-station-5atizwok.css","assets/custom-popup.ChzD6q8C.js","assets/custom-popup-DODor7Fl.css","assets/BaseDBStore.RQrc3EQA.js","assets/index-CvKRigV-.css","assets/pages-mine-mine.-YwdlJ99.js","assets/uni-popup.DSb2YJre.js","assets/uni-popup-DKXgkXnf.css","assets/mine-CZyhxTjL.css","assets/pages-msglog-msglog.c84QA3Rn.js","assets/msglog-DJLrHl-q.css","assets/pages-careerfair-careerfair.DYiYMI1p.js","assets/careerfair-DDd70XO3.css","assets/pages-login-login.9cW8csYq.js","assets/login-BDMuo9Uw.css","assets/pages-nearby-nearby.eqZuVs-i.js","assets/nearby-CDDRkk0z.css","assets/pages-chat-chat.D3YhJ6YZ.js","assets/chat-DtkNe9m9.css","assets/packageA-pages-choiceness-choiceness.C6BK9H8_.js","assets/choiceness-C5sJ1hCp.css","assets/packageA-pages-post-post.ZeGe3ZIp.js","assets/post-DThTcaRL.css","assets/packageA-pages-UnitDetails-UnitDetails.DhIgQ4n8.js","assets/UnitDetails-DrwcEIyg.css","assets/packageA-pages-exhibitors-exhibitors.CQceVnU_.js","assets/exhibitors-CCnow3bU.css","assets/packageA-pages-myResume-myResume.Dbeh6gVh.js","assets/myResume-BOqQmwxw.css","assets/packageA-pages-Intendedposition-Intendedposition.D5MhGCAJ.js","assets/Intendedposition-12LmX0sN.css","assets/packageA-pages-collection-collection.Du0OYQIm.js","assets/collection-DPmoEXrP.css","assets/packageA-pages-browseJob-browseJob.Ctr2f3Qd.js","assets/browseJob-D0KQJnJU.css"] - } - return indexes.map((i) => __vite__mapDeps.viteFileDeps[i]) -} -var e=Object.defineProperty,t=(t,n,r)=>(((t,n,r)=>{n in t?e(t,n,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[n]=r})(t,"symbol"!=typeof n?n+"":n,r),r);!function(){const e=document.createElement("link").relList;if(!(e&&e.supports&&e.supports("modulepreload"))){for(const e of document.querySelectorAll('link[rel="modulepreload"]'))t(e);new MutationObserver((e=>{for(const n of e)if("childList"===n.type)for(const e of n.addedNodes)"LINK"===e.tagName&&"modulepreload"===e.rel&&t(e)})).observe(document,{childList:!0,subtree:!0})}function t(e){if(e.ep)return;e.ep=!0;const t=function(e){const t={};return e.integrity&&(t.integrity=e.integrity),e.referrerPolicy&&(t.referrerPolicy=e.referrerPolicy),"use-credentials"===e.crossOrigin?t.credentials="include":"anonymous"===e.crossOrigin?t.credentials="omit":t.credentials="same-origin",t}(e);fetch(e.href,t)}}();const n={},r=function(e,t,r){let o=Promise.resolve();if(t&&t.length>0){const e=document.getElementsByTagName("link"),i=document.querySelector("meta[property=csp-nonce]"),s=(null==i?void 0:i.nonce)||(null==i?void 0:i.getAttribute("nonce"));o=Promise.all(t.map((t=>{if((t=function(e){return"/app/"+e}(t))in n)return;n[t]=!0;const o=t.endsWith(".css"),i=o?'[rel="stylesheet"]':"";if(!!r)for(let n=e.length-1;n>=0;n--){const r=e[n];if(r.href===t&&(!o||"stylesheet"===r.rel))return}else if(document.querySelector(`link[href="${t}"]${i}`))return;const a=document.createElement("link");return a.rel=o?"stylesheet":"modulepreload",o||(a.as="script",a.crossOrigin=""),a.href=t,s&&a.setAttribute("nonce",s),document.head.appendChild(a),o?new Promise(((e,n)=>{a.addEventListener("load",e),a.addEventListener("error",(()=>n(new Error(`Unable to preload CSS for ${t}`))))})):void 0})))}return o.then((()=>e())).catch((e=>{const t=new Event("vite:preloadError",{cancelable:!0});if(t.payload=e,window.dispatchEvent(t),!t.defaultPrevented)throw e}))}; -/** -* @vue/shared v3.4.21 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/ -function o(e,t){const n=new Set(e.split(","));return t?e=>n.has(e.toLowerCase()):e=>n.has(e)}const i={},s=[],a=()=>{},l=()=>!1,c=e=>111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),u=e=>e.startsWith("onUpdate:"),d=Object.assign,h=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},f=Object.prototype.hasOwnProperty,p=(e,t)=>f.call(e,t),g=Array.isArray,m=e=>"[object Map]"===E(e),v=e=>"[object Set]"===E(e),y=e=>"function"==typeof e,b=e=>"string"==typeof e,_=e=>"symbol"==typeof e,w=e=>null!==e&&"object"==typeof e,S=e=>(w(e)||y(e))&&y(e.then)&&y(e.catch),x=Object.prototype.toString,E=e=>x.call(e),T=e=>"[object Object]"===E(e),C=e=>b(e)&&"NaN"!==e&&"-"!==e[0]&&""+parseInt(e,10)===e,M=o(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),k=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},A=/-(\w)/g,D=k((e=>e.replace(A,((e,t)=>t?t.toUpperCase():"")))),O=/\B([A-Z])/g,I=k((e=>e.replace(O,"-$1").toLowerCase())),P=k((e=>e.charAt(0).toUpperCase()+e.slice(1))),B=k((e=>e?`on${P(e)}`:"")),R=(e,t)=>!Object.is(e,t),L=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},$=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let z;const j=()=>z||(z="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{});function V(e){if(g(e)){const t={};for(let n=0;n{if(e){const n=e.split(F);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}function W(e){let t="";if(b(e))t=e;else if(g(e))for(let n=0;nb(e)?e:null==e?"":g(e)||w(e)&&(e.toString===x||!y(e.toString))?JSON.stringify(e,G,2):String(e),G=(e,t)=>t&&t.__v_isRef?G(e,t.value):m(t)?{[`Map(${t.size})`]:[...t.entries()].reduce(((e,[t,n],r)=>(e[J(t,r)+" =>"]=n,e)),{})}:v(t)?{[`Set(${t.size})`]:[...t.values()].map((e=>J(e)))}:_(t)?J(t):!w(t)||g(t)||T(t)?t:String(t),J=(e,t="")=>{var n;return _(e)?`Symbol(${null!=(n=e.description)?n:t})`:e},Z=["ad","ad-content-page","ad-draw","audio","button","camera","canvas","checkbox","checkbox-group","cover-image","cover-view","editor","form","functional-page-navigator","icon","image","input","label","live-player","live-pusher","map","movable-area","movable-view","navigator","official-account","open-data","picker","picker-view","picker-view-column","progress","radio","radio-group","rich-text","scroll-view","slider","swiper","swiper-item","switch","text","textarea","video","view","web-view","location-picker","location-view"].map((e=>"uni-"+e)),Q=["list-view","list-item","sticky-section","sticky-header","cloud-db-element"].map((e=>"uni-"+e)),ee=["list-item"].map((e=>"uni-"+e));function te(e){if(-1!==ee.indexOf(e))return!1;const t="uni-"+e.replace("v-uni-","");return-1!==Z.indexOf(t)||-1!==Q.indexOf(t)}const ne=["%","%"],re=/^([a-z-]+:)?\/\//i,oe=/^data:.*,.*/;function ie(e){return 0===e.indexOf("/")}function se(e){return ie(e)?e:"/"+e}function ae(e,t=null){let n;return(...r)=>(e&&(n=e.apply(t,r),e=null),n)}const le=e=>e>9?e:"0"+e;function ce({date:e=new Date,mode:t="date"}){return"time"===t?le(e.getHours())+":"+le(e.getMinutes()):e.getFullYear()+"-"+le(e.getMonth()+1)+"-"+le(e.getDate())}function ue(e,t){e=e||{},b(t)&&(t={errMsg:t}),/:ok$/.test(t.errMsg)?y(e.success)&&e.success(t):y(e.fail)&&e.fail(t),y(e.complete)&&e.complete(t)}let de;function he(){return de||(de=function(){if("undefined"!=typeof globalThis)return globalThis;if("undefined"!=typeof self)return self;if("undefined"!=typeof window)return window;function e(){return this}return void 0!==e()?e():new Function("return this")()}(),de)}function fe(e){return e&&(e.appContext?e.proxy:e)}function pe(e){if(!e)return;let t=e.type.name;for(;t&&te(I(t));)t=(e=e.parent).type.name;return e.proxy}function ge(e){return 1===e.nodeType}function me(e){const t=he();if(t&&t.UTSJSONObject&&e instanceof t.UTSJSONObject){const n={};return t.UTSJSONObject.keys(e).forEach((t=>{n[t]=e[t]})),V(n)}if(e instanceof Map){const t={};return e.forEach(((e,n)=>{t[n]=e})),V(t)}if(b(e))return U(e);if(g(e)){const t={};for(let n=0;n{e[n]&&(t+=n+" ")}));else if(e instanceof Map)e.forEach(((e,n)=>{e&&(t+=n+" ")}));else if(g(e))for(let r=0;r{e=e||(e=>e.tagName.startsWith("UNI-"));const t=HTMLElement.prototype,n=t.setAttribute;t.setAttribute=function(t,r){if(t.startsWith("data-")&&e(this)){(this.__uniDataset||(this.__uniDataset={}))[be(t)]=r}n.call(this,t,r)};const r=t.removeAttribute;t.removeAttribute=function(t){this.__uniDataset&&t.startsWith("data-")&&e(this)&&delete this.__uniDataset[be(t)],r.call(this,t)}}));function we(e){return d({},e.dataset,e.__uniDataset)}const Se=new RegExp("\"[^\"]+\"|'[^']+'|url\\([^)]+\\)|(\\d*\\.?\\d+)[r|u]px","g");function xe(e){return{passive:e}}function Ee(e){const{id:t,offsetTop:n,offsetLeft:r}=e;return{id:t,dataset:we(e),offsetTop:n,offsetLeft:r}}function Te(e){try{return decodeURIComponent(""+e)}catch(t){}return""+e}function Ce(e={}){const t={};return Object.keys(e).forEach((n=>{try{t[n]=Te(e[n])}catch(C_){t[n]=e[n]}})),t}const Me=/\+/g;function ke(e){const t={};if(""===e||"?"===e)return t;const n=("?"===e[0]?e.slice(1):e).split("&");for(let r=0;re.apply(this,arguments);o=r(i,t)};return i.cancel=function(){n(o)},i}class De{constructor(e,t){this.id=e,this.listener={},this.emitCache=[],t&&Object.keys(t).forEach((e=>{this.on(e,t[e])}))}emit(e,...t){const n=this.listener[e];if(!n)return this.emitCache.push({eventName:e,args:t});n.forEach((e=>{e.fn.apply(e.fn,t)})),this.listener[e]=n.filter((e=>"once"!==e.type))}on(e,t){this._addListener(e,"on",t),this._clearCache(e)}once(e,t){this._addListener(e,"once",t),this._clearCache(e)}off(e,t){const n=this.listener[e];if(n)if(t)for(let r=0;rt(e))),Re=function(){};Re.prototype={_id:1,on:function(e,t,n){var r=this.e||(this.e={});return(r[e]||(r[e]=[])).push({fn:t,ctx:n,_id:this._id}),this._id++},once:function(e,t,n){var r=this;function o(){r.off(e,o),t.apply(n,arguments)}return o._=t,this.on(e,o,n)},emit:function(e){for(var t=[].slice.call(arguments,1),n=((this.e||(this.e={}))[e]||[]).slice(),r=0,o=n.length;r=0;i--)if(r[i].fn===t||r[i].fn._===t||r[i]._id===t){r.splice(i,1);break}o=r}return o.length?n[e]=o:delete n[e],this}};var Le=Re;const Ne={black:"rgba(0,0,0,0.4)",white:"rgba(255,255,255,0.4)"};function $e(e,t,n){if(b(t)&&t.startsWith("@")){let o=e[t.replace("@","")]||t;switch(n){case"titleColor":o="black"===o?"#000000":"#ffffff";break;case"borderStyle":o=(r=o)&&r in Ne?Ne[r]:r}return o}var r;return t}function ze(e,t={},n="light"){const r=t[n],o={};return void 0!==r&&e?(Object.keys(e).forEach((i=>{const s=e[i];o[i]=T(s)?ze(s,t,n):g(s)?s.map((e=>"object"==typeof e?ze(e,t,n):$e(r,e))):$e(r,s,i)})),o):e} -/** -* @dcloudio/uni-h5-vue v3.4.21 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/let je,Ve;class He{constructor(e=!1){this.detached=e,this._active=!0,this.effects=[],this.cleanups=[],this.parent=je,!e&&je&&(this.index=(je.scopes||(je.scopes=[])).push(this)-1)}get active(){return this._active}run(e){if(this._active){const t=je;try{return je=this,e()}finally{je=t}}}on(){je=this}off(){je=this.parent}stop(e){if(this._active){let t,n;for(t=0,n=this.effects.length;t=4))break}1===this._dirtyLevel&&(this._dirtyLevel=0),Qe()}return this._dirtyLevel>=4}set dirty(e){this._dirtyLevel=e?4:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let e=Xe,t=Ve;try{return Xe=!0,Ve=this,this._runnings++,We(this),this.fn()}finally{Ke(this),this._runnings--,Ve=t,Xe=e}}stop(){var e;this.active&&(We(this),Ke(this),null==(e=this.onStop)||e.call(this),this.active=!1)}}function We(e){e._trackId++,e._depsLength=0}function Ke(e){if(e.deps.length>e._depsLength){for(let t=e._depsLength;t{const n=new Map;return n.cleanup=e,n.computed=t,n},at=new WeakMap,lt=Symbol(""),ct=Symbol("");function ut(e,t,n){if(Xe&&Ve){let t=at.get(e);t||at.set(e,t=new Map);let r=t.get(n);r||t.set(n,r=st((()=>t.delete(n)))),rt(Ve,r)}}function dt(e,t,n,r,o,i){const s=at.get(e);if(!s)return;let a=[];if("clear"===t)a=[...s.values()];else if("length"===n&&g(e)){const e=Number(r);s.forEach(((t,n)=>{("length"===n||!_(n)&&n>=e)&&a.push(t)}))}else switch(void 0!==n&&a.push(s.get(n)),t){case"add":g(e)?C(n)&&a.push(s.get("length")):(a.push(s.get(lt)),m(e)&&a.push(s.get(ct)));break;case"delete":g(e)||(a.push(s.get(lt)),m(e)&&a.push(s.get(ct)));break;case"set":m(e)&&a.push(s.get(lt))}et();for(const l of a)l&&it(l,4);nt()}const ht=o("__proto__,__v_isRef,__isVue"),ft=new Set(Object.getOwnPropertyNames(Symbol).filter((e=>"arguments"!==e&&"caller"!==e)).map((e=>Symbol[e])).filter(_)),pt=gt();function gt(){const e={};return["includes","indexOf","lastIndexOf"].forEach((t=>{e[t]=function(...e){const n=rn(this);for(let t=0,o=this.length;t{e[t]=function(...e){Ze(),et();const n=rn(this)[t].apply(this,e);return nt(),Qe(),n}})),e}function mt(e){const t=rn(this);return ut(t,0,e),t.hasOwnProperty(e)}class vt{constructor(e=!1,t=!1){this._isReadonly=e,this._isShallow=t}get(e,t,n){const r=this._isReadonly,o=this._isShallow;if("__v_isReactive"===t)return!r;if("__v_isReadonly"===t)return r;if("__v_isShallow"===t)return o;if("__v_raw"===t)return n===(r?o?Kt:Wt:o?Ut:qt).get(e)||Object.getPrototypeOf(e)===Object.getPrototypeOf(n)?e:void 0;const i=g(e);if(!r){if(i&&p(pt,t))return Reflect.get(pt,t,n);if("hasOwnProperty"===t)return mt}const s=Reflect.get(e,t,n);return(_(t)?ft.has(t):ht(t))?s:(r||ut(e,0,t),o?s:dn(s)?i&&C(t)?s:s.value:w(s)?r?Jt(s):Xt(s):s)}}class yt extends vt{constructor(e=!1){super(!1,e)}set(e,t,n,r){let o=e[t];if(!this._isShallow){const t=en(o);if(tn(n)||en(n)||(o=rn(o),n=rn(n)),!g(e)&&dn(o)&&!dn(n))return!t&&(o.value=n,!0)}const i=g(e)&&C(t)?Number(t)e,Et=e=>Reflect.getPrototypeOf(e);function Tt(e,t,n=!1,r=!1){const o=rn(e=e.__v_raw),i=rn(t);n||(R(t,i)&&ut(o,0,t),ut(o,0,i));const{has:s}=Et(o),a=r?xt:n?an:sn;return s.call(o,t)?a(e.get(t)):s.call(o,i)?a(e.get(i)):void(e!==o&&e.get(t))}function Ct(e,t=!1){const n=this.__v_raw,r=rn(n),o=rn(e);return t||(R(e,o)&&ut(r,0,e),ut(r,0,o)),e===o?n.has(e):n.has(e)||n.has(o)}function Mt(e,t=!1){return e=e.__v_raw,!t&&ut(rn(e),0,lt),Reflect.get(e,"size",e)}function kt(e){e=rn(e);const t=rn(this);return Et(t).has.call(t,e)||(t.add(e),dt(t,"add",e,e)),this}function At(e,t){t=rn(t);const n=rn(this),{has:r,get:o}=Et(n);let i=r.call(n,e);i||(e=rn(e),i=r.call(n,e));const s=o.call(n,e);return n.set(e,t),i?R(t,s)&&dt(n,"set",e,t):dt(n,"add",e,t),this}function Dt(e){const t=rn(this),{has:n,get:r}=Et(t);let o=n.call(t,e);o||(e=rn(e),o=n.call(t,e)),r&&r.call(t,e);const i=t.delete(e);return o&&dt(t,"delete",e,void 0),i}function Ot(){const e=rn(this),t=0!==e.size,n=e.clear();return t&&dt(e,"clear",void 0,void 0),n}function It(e,t){return function(n,r){const o=this,i=o.__v_raw,s=rn(i),a=t?xt:e?an:sn;return!e&&ut(s,0,lt),i.forEach(((e,t)=>n.call(r,a(e),a(t),o)))}}function Pt(e,t,n){return function(...r){const o=this.__v_raw,i=rn(o),s=m(i),a="entries"===e||e===Symbol.iterator&&s,l="keys"===e&&s,c=o[e](...r),u=n?xt:t?an:sn;return!t&&ut(i,0,l?ct:lt),{next(){const{value:e,done:t}=c.next();return t?{value:e,done:t}:{value:a?[u(e[0]),u(e[1])]:u(e),done:t}},[Symbol.iterator](){return this}}}}function Bt(e){return function(...t){return"delete"!==e&&("clear"===e?void 0:this)}}function Rt(){const e={get(e){return Tt(this,e)},get size(){return Mt(this)},has:Ct,add:kt,set:At,delete:Dt,clear:Ot,forEach:It(!1,!1)},t={get(e){return Tt(this,e,!1,!0)},get size(){return Mt(this)},has:Ct,add:kt,set:At,delete:Dt,clear:Ot,forEach:It(!1,!0)},n={get(e){return Tt(this,e,!0)},get size(){return Mt(this,!0)},has(e){return Ct.call(this,e,!0)},add:Bt("add"),set:Bt("set"),delete:Bt("delete"),clear:Bt("clear"),forEach:It(!0,!1)},r={get(e){return Tt(this,e,!0,!0)},get size(){return Mt(this,!0)},has(e){return Ct.call(this,e,!0)},add:Bt("add"),set:Bt("set"),delete:Bt("delete"),clear:Bt("clear"),forEach:It(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach((o=>{e[o]=Pt(o,!1,!1),n[o]=Pt(o,!0,!1),t[o]=Pt(o,!1,!0),r[o]=Pt(o,!0,!0)})),[e,n,t,r]}const[Lt,Nt,$t,zt]=Rt();function jt(e,t){const n=t?e?zt:$t:e?Nt:Lt;return(t,r,o)=>"__v_isReactive"===r?!e:"__v_isReadonly"===r?e:"__v_raw"===r?t:Reflect.get(p(n,r)&&r in t?n:t,r,o)}const Vt={get:jt(!1,!1)},Ht={get:jt(!1,!0)},Ft={get:jt(!0,!1)},qt=new WeakMap,Ut=new WeakMap,Wt=new WeakMap,Kt=new WeakMap;function Yt(e){return e.__v_skip||!Object.isExtensible(e)?0:function(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}((e=>E(e).slice(8,-1))(e))}function Xt(e){return en(e)?e:Zt(e,!1,_t,Vt,qt)}function Gt(e){return Zt(e,!1,St,Ht,Ut)}function Jt(e){return Zt(e,!0,wt,Ft,Wt)}function Zt(e,t,n,r,o){if(!w(e))return e;if(e.__v_raw&&(!t||!e.__v_isReactive))return e;const i=o.get(e);if(i)return i;const s=Yt(e);if(0===s)return e;const a=new Proxy(e,2===s?r:n);return o.set(e,a),a}function Qt(e){return en(e)?Qt(e.__v_raw):!(!e||!e.__v_isReactive)}function en(e){return!(!e||!e.__v_isReadonly)}function tn(e){return!(!e||!e.__v_isShallow)}function nn(e){return Qt(e)||en(e)}function rn(e){const t=e&&e.__v_raw;return t?rn(t):e}function on(e){return Object.isExtensible(e)&&N(e,"__v_skip",!0),e}const sn=e=>w(e)?Xt(e):e,an=e=>w(e)?Jt(e):e;class ln{constructor(e,t,n,r){this.getter=e,this._setter=t,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this.effect=new Ue((()=>e(this._value)),(()=>un(this,2===this.effect._dirtyLevel?2:3))),this.effect.computed=this,this.effect.active=this._cacheable=!r,this.__v_isReadonly=n}get value(){const e=rn(this);return e._cacheable&&!e.effect.dirty||!R(e._value,e._value=e.effect.run())||un(e,4),cn(e),e.effect._dirtyLevel>=2&&un(e,2),e._value}set value(e){this._setter(e)}get _dirty(){return this.effect.dirty}set _dirty(e){this.effect.dirty=e}}function cn(e){var t;Xe&&Ve&&(e=rn(e),rt(Ve,null!=(t=e.dep)?t:e.dep=st((()=>e.dep=void 0),e instanceof ln?e:void 0)))}function un(e,t=4,n){const r=(e=rn(e)).dep;r&&it(r,t)}function dn(e){return!(!e||!0!==e.__v_isRef)}function hn(e){return pn(e,!1)}function fn(e){return pn(e,!0)}function pn(e,t){return dn(e)?e:new gn(e,t)}class gn{constructor(e,t){this.__v_isShallow=t,this.dep=void 0,this.__v_isRef=!0,this._rawValue=t?e:rn(e),this._value=t?e:sn(e)}get value(){return cn(this),this._value}set value(e){const t=this.__v_isShallow||tn(e)||en(e);e=t?e:rn(e),R(e,this._rawValue)&&(this._rawValue=e,this._value=t?e:sn(e),un(this,4))}}function mn(e){return dn(e)?e.value:e}const vn={get:(e,t,n)=>mn(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const o=e[t];return dn(o)&&!dn(n)?(o.value=n,!0):Reflect.set(e,t,n,r)}};function yn(e){return Qt(e)?e:new Proxy(e,vn)}class bn{constructor(e,t,n){this._object=e,this._key=t,this._defaultValue=n,this.__v_isRef=!0}get value(){const e=this._object[this._key];return void 0===e?this._defaultValue:e}set value(e){this._object[this._key]=e}get dep(){return e=rn(this._object),t=this._key,null==(n=at.get(e))?void 0:n.get(t);var e,t,n}}class _n{constructor(e){this._getter=e,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function wn(e,t,n){return dn(e)?e:y(e)?new _n(e):w(e)&&arguments.length>1?Sn(e,t,n):hn(e)}function Sn(e,t,n){const r=e[t];return dn(r)?r:new bn(e,t,n)}function xn(e,t,n,r){try{return r?e(...r):e()}catch(o){Tn(o,t,n)}}function En(e,t,n,r){if(y(e)){const o=xn(e,t,n,r);return o&&S(o)&&o.catch((e=>{Tn(e,t,n)})),o}const o=[];for(let i=0;i>>1,o=An[r],i=Vn(o);iVn(e)-Vn(t)));if(On.length=0,In)return void In.push(...e);for(In=e,Pn=0;Pnnull==e.id?1/0:e.id,Hn=(e,t)=>{const n=Vn(e)-Vn(t);if(0===n){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Fn(e){kn=!1,Mn=!0,An.sort(Hn);try{for(Dn=0;Dnb(e)?e.trim():e))),t&&(o=n.map($))}let l,c=r[l=B(t)]||r[l=B(D(t))];!c&&s&&(c=r[l=B(I(t))]),c&&En(c,e,6,Un(e,c,o));const u=r[l+"Once"];if(u){if(e.emitted){if(e.emitted[l])return}else e.emitted={};e.emitted[l]=!0,En(u,e,6,Un(e,u,o))}}function Un(e,t,n){if(1!==n.length)return n;if(y(t)){if(t.length<2)return n}else if(!t.find((e=>e.length>=2)))return n;const r=n[0];if(r&&p(r,"type")&&p(r,"timeStamp")&&p(r,"target")&&p(r,"currentTarget")&&p(r,"detail")){const t=e.proxy,r=t.$gcd(t,!0);r&&n.push(r)}return n}function Wn(e,t,n=!1){const r=t.emitsCache,o=r.get(e);if(void 0!==o)return o;const i=e.emits;let s={},a=!1;if(!y(e)){const r=e=>{const n=Wn(e,t,!0);n&&(a=!0,d(s,n))};!n&&t.mixins.length&&t.mixins.forEach(r),e.extends&&r(e.extends),e.mixins&&e.mixins.forEach(r)}return i||a?(g(i)?i.forEach((e=>s[e]=null)):d(s,i),w(e)&&r.set(e,s),s):(w(e)&&r.set(e,null),null)}function Kn(e,t){return!(!e||!c(t))&&(t=t.slice(2).replace(/Once$/,""),p(e,t[0].toLowerCase()+t.slice(1))||p(e,I(t))||p(e,t))}let Yn=null,Xn=null;function Gn(e){const t=Yn;return Yn=e,Xn=e&&e.type.__scopeId||null,t}function Jn(e,t=Yn,n){if(!t)return e;if(e._n)return e;const r=(...n)=>{r._d&&ii(-1);const o=Gn(t);let i;try{i=e(...n)}finally{Gn(o),r._d&&ii(1)}return i};return r._n=!0,r._c=!0,r._d=!0,r}function Zn(e){const{type:t,vnode:n,proxy:r,withProxy:o,props:i,propsOptions:[s],slots:a,attrs:l,emit:c,render:d,renderCache:h,data:f,setupState:p,ctx:g,inheritAttrs:m}=e;let v,y;const b=Gn(e);try{if(4&n.shapeFlag){const e=o||r,t=e;v=_i(d.call(t,e,h,i,p,f,g)),y=l}else{const e=t;0,v=_i(e.length>1?e(i,{attrs:l,slots:a,emit:c}):e(i,null)),y=t.props?l:Qn(l)}}catch(w){ti.length=0,Tn(w,e,1),v=gi(Qo)}let _=v;if(y&&!1!==m){const e=Object.keys(y),{shapeFlag:t}=_;e.length&&7&t&&(s&&e.some(u)&&(y=er(y,s)),_=vi(_,y))}return n.dirs&&(_=vi(_),_.dirs=_.dirs?_.dirs.concat(n.dirs):n.dirs),n.transition&&(_.transition=n.transition),v=_,Gn(b),v}const Qn=e=>{let t;for(const n in e)("class"===n||"style"===n||c(n))&&((t||(t={}))[n]=e[n]);return t},er=(e,t)=>{const n={};for(const r in e)u(r)&&r.slice(9)in t||(n[r]=e[r]);return n};function tr(e,t,n){const r=Object.keys(t);if(r.length!==Object.keys(e).length)return!0;for(let o=0;oe.__isSuspense;const lr=Symbol.for("v-scx");function cr(e,t){return hr(e,null,t)}const ur={};function dr(e,t,n){return hr(e,t,n)}function hr(e,t,{immediate:n,deep:r,flush:o,once:s,onTrack:l,onTrigger:c}=i){if(t&&s){const e=t;t=(...t)=>{e(...t),C()}}const u=Mi,d=e=>!0===r?e:gr(e,!1===r?1:void 0);let f,p,m=!1,v=!1;if(dn(e)?(f=()=>e.value,m=tn(e)):Qt(e)?(f=()=>d(e),m=!0):g(e)?(v=!0,m=e.some((e=>Qt(e)||tn(e))),f=()=>e.map((e=>dn(e)?e.value:Qt(e)?d(e):y(e)?xn(e,u,2):void 0))):f=y(e)?t?()=>xn(e,u,2):()=>(p&&p(),En(e,u,3,[_])):a,t&&r){const e=f;f=()=>gr(e())}let b,_=e=>{p=E.onStop=()=>{xn(e,u,4),p=E.onStop=void 0}};if(Bi){if(_=a,t?n&&En(t,u,3,[f(),v?[]:void 0,_]):f(),"sync"!==o)return a;{const e=Do(lr);b=e.__watcherHandles||(e.__watcherHandles=[])}}let w=v?new Array(e.length).fill(ur):ur;const S=()=>{if(E.active&&E.dirty)if(t){const e=E.run();(r||m||(v?e.some(((e,t)=>R(e,w[t]))):R(e,w)))&&(p&&p(),En(t,u,3,[e,w===ur?void 0:v&&w[0]===ur?[]:w,_]),w=e)}else E.run()};let x;S.allowRecurse=!!t,"sync"===o?x=S:"post"===o?x=()=>Uo(S,u&&u.suspense):(S.pre=!0,u&&(S.id=u.uid),x=()=>Nn(S));const E=new Ue(f,a,x),T=qe(),C=()=>{E.stop(),T&&h(T.effects,E)};return t?n?S():w=E.run():"post"===o?Uo(E.run.bind(E),u&&u.suspense):E.run(),b&&b.push(C),C}function fr(e,t,n){const r=this.proxy,o=b(e)?e.includes(".")?pr(r,e):()=>r[e]:e.bind(r,r);let i;y(t)?i=t:(i=t.handler,n=t);const s=Oi(this),a=hr(o,i.bind(r),n);return s(),a}function pr(e,t){const n=t.split(".");return()=>{let t=e;for(let e=0;e0){if(n>=t)return e;n++}if((r=r||new Set).has(e))return e;if(r.add(e),dn(e))gr(e.value,t,n,r);else if(g(e))for(let o=0;o{gr(e,t,n,r)}));else if(T(e))for(const o in e)gr(e[o],t,n,r);return e}function mr(e,t){if(null===Yn)return e;const n=Ni(Yn)||Yn.proxy,r=e.dirs||(e.dirs=[]);for(let o=0;o{e.isMounted=!0})),Zr((()=>{e.isUnmounting=!0})),e}();return()=>{const o=t.default&&kr(t.default(),!0);if(!o||!o.length)return;let i=o[0];if(o.length>1)for(const e of o)if(e.type!==Qo){i=e;break}const s=rn(e),{mode:a}=s;if(r.isLeaving)return Tr(i);const l=Cr(i);if(!l)return Tr(i);const c=Er(l,s,r,n);Mr(l,c);const u=n.subTree,d=u&&Cr(u);if(d&&d.type!==Qo&&!ui(l,d)){const e=Er(d,s,r,n);if(Mr(d,e),"out-in"===a)return r.isLeaving=!0,e.afterLeave=()=>{r.isLeaving=!1,!1!==n.update.active&&(n.effect.dirty=!0,n.update())},Tr(i);"in-out"===a&&l.type!==Qo&&(e.delayLeave=(e,t,n)=>{xr(r,d)[String(d.key)]=d,e[yr]=()=>{t(),e[yr]=void 0,delete c.delayedLeave},c.delayedLeave=n})}return i}}};function xr(e,t){const{leavingVNodes:n}=e;let r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function Er(e,t,n,r){const{appear:o,mode:i,persisted:s=!1,onBeforeEnter:a,onEnter:l,onAfterEnter:c,onEnterCancelled:u,onBeforeLeave:d,onLeave:h,onAfterLeave:f,onLeaveCancelled:p,onBeforeAppear:m,onAppear:v,onAfterAppear:y,onAppearCancelled:b}=t,_=String(e.key),w=xr(n,e),S=(e,t)=>{e&&En(e,r,9,t)},x=(e,t)=>{const n=t[1];S(e,t),g(e)?e.every((e=>e.length<=1))&&n():e.length<=1&&n()},E={mode:i,persisted:s,beforeEnter(t){let r=a;if(!n.isMounted){if(!o)return;r=m||a}t[yr]&&t[yr](!0);const i=w[_];i&&ui(e,i)&&i.el[yr]&&i.el[yr](),S(r,[t])},enter(e){let t=l,r=c,i=u;if(!n.isMounted){if(!o)return;t=v||l,r=y||c,i=b||u}let s=!1;const a=e[br]=t=>{s||(s=!0,S(t?i:r,[e]),E.delayedLeave&&E.delayedLeave(),e[br]=void 0)};t?x(t,[e,a]):a()},leave(t,r){const o=String(e.key);if(t[br]&&t[br](!0),n.isUnmounting)return r();S(d,[t]);let i=!1;const s=t[yr]=n=>{i||(i=!0,r(),S(n?p:f,[t]),t[yr]=void 0,w[o]===e&&delete w[o])};w[o]=e,h?x(h,[t,s]):s()},clone:e=>Er(e,t,n,r)};return E}function Tr(e){if(Pr(e))return(e=vi(e)).children=null,e}function Cr(e){return Pr(e)?e.children?e.children[0]:void 0:e}function Mr(e,t){6&e.shapeFlag&&e.component?Mr(e.component.subTree,t):128&e.shapeFlag?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function kr(e,t=!1,n){let r=[],o=0;for(let i=0;i1)for(let i=0;id({name:e.name},t,{setup:e}))():e}const Dr=e=>!!e.type.__asyncLoader -/*! #__NO_SIDE_EFFECTS__ */;function Or(e){y(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:o=200,timeout:i,suspensible:s=!0,onError:a}=e;let l,c=null,u=0;const d=()=>{let e;return c||(e=c=t().catch((e=>{if(e=e instanceof Error?e:new Error(String(e)),a)return new Promise(((t,n)=>{a(e,(()=>t((u++,c=null,d()))),(()=>n(e)),u+1)}));throw e})).then((t=>e!==c&&c?c:(t&&(t.__esModule||"Module"===t[Symbol.toStringTag])&&(t=t.default),l=t,t))))};return Ar({name:"AsyncComponentWrapper",__asyncLoader:d,get __asyncResolved(){return l},setup(){const e=Mi;if(l)return()=>Ir(l,e);const t=t=>{c=null,Tn(t,e,13,!r)};if(s&&e.suspense||Bi)return d().then((t=>()=>Ir(t,e))).catch((e=>(t(e),()=>r?gi(r,{error:e}):null)));const a=hn(!1),u=hn(),h=hn(!!o);return o&&setTimeout((()=>{h.value=!1}),o),null!=i&&setTimeout((()=>{if(!a.value&&!u.value){const e=new Error(`Async component timed out after ${i}ms.`);t(e),u.value=e}}),i),d().then((()=>{a.value=!0,e.parent&&Pr(e.parent.vnode)&&(e.parent.effect.dirty=!0,Nn(e.parent.update))})).catch((e=>{t(e),u.value=e})),()=>a.value&&l?Ir(l,e):u.value&&r?gi(r,{error:u.value}):n&&!h.value?gi(n):void 0}})}function Ir(e,t){const{ref:n,props:r,children:o,ce:i}=t.vnode,s=gi(e,r,o);return s.ref=n,s.ce=i,delete t.vnode.ce,s}const Pr=e=>e.type.__isKeepAlive;class Br{constructor(e){this.max=e,this._cache=new Map,this._keys=new Set,this._max=parseInt(e,10)}get(e){const{_cache:t,_keys:n,_max:r}=this,o=t.get(e);if(o)n.delete(e),n.add(e);else if(n.add(e),r&&n.size>r){const e=n.values().next().value;this.pruneCacheEntry(t.get(e)),this.delete(e)}return o}set(e,t){this._cache.set(e,t)}delete(e){this._cache.delete(e),this._keys.delete(e)}forEach(e,t){this._cache.forEach(e.bind(t))}}const Rr={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number],matchBy:{type:String,default:"name"},cache:Object},setup(e,{slots:t}){const n=ki(),r=n.ctx;if(!r.renderer)return()=>{const e=t.default&&t.default();return e&&1===e.length?e[0]:e};const o=e.cache||new Br(e.max);o.pruneCacheEntry=s;let i=null;function s(t){var r;!i||!ui(t,i)||"key"===e.matchBy&&t.key!==i.key?(Hr(r=t),u(r,n,a,!0)):i&&Hr(i)}const a=n.suspense,{renderer:{p:l,m:c,um:u,o:{createElement:d}}}=r,h=d("div");function f(t){o.forEach(((n,r)=>{const i=qr(n,e.matchBy);!i||t&&t(i)||(o.delete(r),s(n))}))}r.activate=(e,t,n,r,o)=>{const i=e.component;if(i.ba){const e=i.isDeactivated;i.isDeactivated=!1,L(i.ba),i.isDeactivated=e}c(e,t,n,0,a),l(i.vnode,e,t,n,i,a,r,e.slotScopeIds,o),Uo((()=>{i.isDeactivated=!1,i.a&&L(i.a);const t=e.props&&e.props.onVnodeMounted;t&&Ei(t,i.parent,e)}),a)},r.deactivate=e=>{const t=e.component;t.bda&&Ur(t.bda),c(e,h,null,1,a),Uo((()=>{t.bda&&t.bda.forEach((e=>e.__called=!1)),t.da&&L(t.da);const n=e.props&&e.props.onVnodeUnmounted;n&&Ei(n,t.parent,e),t.isDeactivated=!0}),a)},dr((()=>[e.include,e.exclude,e.matchBy]),(([e,t])=>{e&&f((t=>Nr(e,t))),t&&f((e=>!Nr(t,e)))}),{flush:"post",deep:!0});let p=null;const g=()=>{null!=p&&o.set(p,Fr(n.subTree))};return Xr(g),Jr(g),Zr((()=>{o.forEach(((t,r)=>{o.delete(r),s(t);const{subTree:i,suspense:a}=n,l=Fr(i);if(t.type!==l.type||"key"===e.matchBy&&t.key!==l.key);else{l.component.bda&&L(l.component.bda),Hr(l);const e=l.component.da;e&&Uo(e,a)}}))})),()=>{if(p=null,!t.default)return null;const n=t.default(),r=n[0];if(n.length>1)return i=null,n;if(!ci(r)||!(4&r.shapeFlag)&&!ar(r.type))return i=null,r;let s=Fr(r);const a=s.type,l=qr(s,e.matchBy),{include:c,exclude:u}=e;if(c&&(!l||!Nr(c,l))||u&&l&&Nr(u,l))return i=s,r;const d=null==s.key?a:s.key,h=o.get(d);return s.el&&(s=vi(s),ar(r.type)&&(r.ssContent=s)),p=d,h&&(s.el=h.el,s.component=h.component,s.transition&&Mr(s,s.transition),s.shapeFlag|=512),s.shapeFlag|=256,i=s,ar(r.type)?r:s}}},Lr=Rr;function Nr(e,t){return g(e)?e.some((e=>Nr(e,t))):b(e)?e.split(",").includes(t):"[object RegExp]"===E(e)&&e.test(t)}function $r(e,t){jr(e,"a",t)}function zr(e,t){jr(e,"da",t)}function jr(e,t,n=Mi){const r=e.__wdc||(e.__wdc=()=>{let t=n;for(;t;){if(t.isDeactivated)return;t=t.parent}return e()});if(r.__called=!1,Wr(t,r,n),n){let e=n.parent;for(;e&&e.parent;)Pr(e.parent.vnode)&&Vr(r,t,n,e),e=e.parent}}function Vr(e,t,n,r){const o=Wr(t,e,r,!0);Qr((()=>{h(r[t],o)}),n)}function Hr(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function Fr(e){return ar(e.type)?e.ssContent:e}function qr(e,t){if("name"===t){const t=e.type;return $i(Dr(e)?t.__asyncResolved||{}:t)}return String(e.key)}function Ur(e){for(let t=0;t-1&&n.$pageInstance){if(n.type.__reserved)return;if(n!==n.$pageInstance&&(n=n.$pageInstance,function(e){return["onLoad","onShow"].indexOf(e)>-1}(e))){const r=n.proxy;En(t.bind(r),n,e,"onLoad"===e?[r.$page.options]:[])}}const i=n[e]||(n[e]=[]),s=t.__weh||(t.__weh=(...r)=>{if(n.isUnmounted)return;Ze();const o=Oi(n),i=En(t,n,e,r);return o(),Qe(),i});return r?i.unshift(s):i.push(s),s}var o}const Kr=e=>(t,n=Mi)=>(!Bi||"sp"===e)&&Wr(e,((...e)=>t(...e)),n),Yr=Kr("bm"),Xr=Kr("m"),Gr=Kr("bu"),Jr=Kr("u"),Zr=Kr("bum"),Qr=Kr("um"),eo=Kr("sp"),to=Kr("rtg"),no=Kr("rtc");function ro(e,t=Mi){Wr("ec",e,t)}function oo(e,t,n,r){let o;const i=n&&n[r];if(g(e)||b(e)){o=new Array(e.length);for(let n=0,r=e.length;nt(e,n,void 0,i&&i[n])));else{const n=Object.keys(e);o=new Array(n.length);for(let r=0,s=n.length;r!ci(e)||e.type!==Qo&&!(e.type===Jo&&!so(e.children))))?e:null}const ao=e=>{if(!e)return null;if(Pi(e)){return Ni(e)||e.proxy}return ao(e.parent)},lo=d(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>ao(e.parent),$root:e=>ao(e.root),$emit:e=>e.emit,$options:e=>vo(e),$forceUpdate:e=>e.f||(e.f=(e=>function(){e.effect.dirty=!0,Nn(e.update)})(e)),$nextTick:e=>e.n||(e.n=Ln.bind(e.proxy)),$watch:e=>fr.bind(e)}),co=(e,t)=>e!==i&&!e.__isScriptSetup&&p(e,t),uo={get({_:e},t){const{ctx:n,setupState:r,data:o,props:s,accessCache:a,type:l,appContext:c}=e;let u;if("$"!==t[0]){const l=a[t];if(void 0!==l)switch(l){case 1:return r[t];case 2:return o[t];case 4:return n[t];case 3:return s[t]}else{if(co(r,t))return a[t]=1,r[t];if(o!==i&&p(o,t))return a[t]=2,o[t];if((u=e.propsOptions[0])&&p(u,t))return a[t]=3,s[t];if(n!==i&&p(n,t))return a[t]=4,n[t];fo&&(a[t]=0)}}const d=lo[t];let h,f;return d?("$attrs"===t&&ut(e,0,t),d(e)):(h=l.__cssModules)&&(h=h[t])?h:n!==i&&p(n,t)?(a[t]=4,n[t]):(f=c.config.globalProperties,p(f,t)?f[t]:void 0)},set({_:e},t,n){const{data:r,setupState:o,ctx:s}=e;return co(o,t)?(o[t]=n,!0):r!==i&&p(r,t)?(r[t]=n,!0):!p(e.props,t)&&(("$"!==t[0]||!(t.slice(1)in e))&&(s[t]=n,!0))},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:o,propsOptions:s}},a){let l;return!!n[a]||e!==i&&p(e,a)||co(t,a)||(l=s[0])&&p(l,a)||p(r,a)||p(lo,a)||p(o.config.globalProperties,a)},defineProperty(e,t,n){return null!=n.get?e._.accessCache[t]=0:p(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function ho(e){return g(e)?e.reduce(((e,t)=>(e[t]=null,e)),{}):e}let fo=!0;function po(e){const t=vo(e),n=e.proxy,r=e.ctx;fo=!1,t.beforeCreate&&go(t.beforeCreate,e,"bc");const{data:o,computed:i,methods:s,watch:l,provide:c,inject:u,created:d,beforeMount:h,mounted:f,beforeUpdate:p,updated:m,activated:v,deactivated:b,beforeDestroy:_,beforeUnmount:S,destroyed:x,unmounted:E,render:T,renderTracked:C,renderTriggered:M,errorCaptured:k,serverPrefetch:A,expose:D,inheritAttrs:O,components:I,directives:P,filters:B}=t;if(u&&function(e,t,n=a){g(e)&&(e=wo(e));for(const r in e){const n=e[r];let o;o=w(n)?"default"in n?Do(n.from||r,n.default,!0):Do(n.from||r):Do(n),dn(o)?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>o.value,set:e=>o.value=e}):t[r]=o}}(u,r,null),s)for(const a in s){const e=s[a];y(e)&&(r[a]=e.bind(n))}if(o){const t=o.call(n,n);w(t)&&(e.data=Xt(t))}if(fo=!0,i)for(const g in i){const e=i[g],t=y(e)?e.bind(n,n):y(e.get)?e.get.bind(n,n):a,o=!y(e)&&y(e.set)?e.set.bind(n):a,s=zi({get:t,set:o});Object.defineProperty(r,g,{enumerable:!0,configurable:!0,get:()=>s.value,set:e=>s.value=e})}if(l)for(const a in l)mo(l[a],r,n,a);if(c){const e=y(c)?c.call(n):c;Reflect.ownKeys(e).forEach((t=>{Ao(t,e[t])}))}function R(e,t){g(t)?t.forEach((t=>e(t.bind(n)))):t&&e(t.bind(n))}if(d&&go(d,e,"c"),R(Yr,h),R(Xr,f),R(Gr,p),R(Jr,m),R($r,v),R(zr,b),R(ro,k),R(no,C),R(to,M),R(Zr,S),R(Qr,E),R(eo,A),g(D))if(D.length){const t=e.exposed||(e.exposed={});D.forEach((e=>{Object.defineProperty(t,e,{get:()=>n[e],set:t=>n[e]=t})}))}else e.exposed||(e.exposed={});T&&e.render===a&&(e.render=T),null!=O&&(e.inheritAttrs=O),I&&(e.components=I),P&&(e.directives=P);const L=e.appContext.config.globalProperties.$applyOptions;L&&L(t,e,n)}function go(e,t,n){En(g(e)?e.map((e=>e.bind(t.proxy))):e.bind(t.proxy),t,n)}function mo(e,t,n,r){const o=r.includes(".")?pr(n,r):()=>n[r];if(b(e)){const n=t[e];y(n)&&dr(o,n)}else if(y(e))dr(o,e.bind(n));else if(w(e))if(g(e))e.forEach((e=>mo(e,t,n,r)));else{const r=y(e.handler)?e.handler.bind(n):t[e.handler];y(r)&&dr(o,r,e)}}function vo(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:o,optionsCache:i,config:{optionMergeStrategies:s}}=e.appContext,a=i.get(t);let l;return a?l=a:o.length||n||r?(l={},o.length&&o.forEach((e=>yo(l,e,s,!0))),yo(l,t,s)):l=t,w(t)&&i.set(t,l),l}function yo(e,t,n,r=!1){const{mixins:o,extends:i}=t;i&&yo(e,i,n,!0),o&&o.forEach((t=>yo(e,t,n,!0)));for(const s in t)if(r&&"expose"===s);else{const r=bo[s]||n&&n[s];e[s]=r?r(e[s],t[s]):t[s]}return e}const bo={data:_o,props:Eo,emits:Eo,methods:xo,computed:xo,beforeCreate:So,created:So,beforeMount:So,mounted:So,beforeUpdate:So,updated:So,beforeDestroy:So,beforeUnmount:So,destroyed:So,unmounted:So,activated:So,deactivated:So,errorCaptured:So,serverPrefetch:So,components:xo,directives:xo,watch:function(e,t){if(!e)return t;if(!t)return e;const n=d(Object.create(null),e);for(const r in t)n[r]=So(e[r],t[r]);return n},provide:_o,inject:function(e,t){return xo(wo(e),wo(t))}};function _o(e,t){return t?e?function(){return d(y(e)?e.call(this,this):e,y(t)?t.call(this,this):t)}:t:e}function wo(e){if(g(e)){const t={};for(let n=0;n(i.has(e)||(e&&y(e.install)?(i.add(e),e.install(a,...t)):y(e)&&(i.add(e),e(a,...t))),a),mixin:e=>(o.mixins.includes(e)||o.mixins.push(e),a),component:(e,t)=>t?(o.components[e]=t,a):o.components[e],directive:(e,t)=>t?(o.directives[e]=t,a):o.directives[e],mount(i,l,c){if(!s){const u=gi(n,r);return u.appContext=o,!0===c?c="svg":!1===c&&(c=void 0),l&&t?t(u,i):e(u,i,c),s=!0,a._container=i,i.__vue_app__=a,a._instance=u.component,Ni(u.component)||u.component.proxy}},unmount(){s&&(e(null,a._container),delete a._container.__vue_app__)},provide:(e,t)=>(o.provides[e]=t,a),runWithContext(e){const t=ko;ko=a;try{return e()}finally{ko=t}}};return a}}let ko=null;function Ao(e,t){if(Mi){let n=Mi.provides;const r=Mi.parent&&Mi.parent.provides;r===n&&(n=Mi.provides=Object.create(r)),n[e]=t,"app"===Mi.type.mpType&&Mi.appContext.app.provide(e,t)}else;}function Do(e,t,n=!1){const r=Mi||Yn;if(r||ko){const o=r?null==r.parent?r.vnode.appContext&&r.vnode.appContext.provides:r.parent.provides:ko._context.provides;if(o&&e in o)return o[e];if(arguments.length>1)return n&&y(t)?t.call(r&&r.proxy):t}}function Oo(){return!!(Mi||Yn||ko)}function Io(e,t,n,r){const[o,s]=e.propsOptions;let a,l=!1;if(t)for(let i in t){if(M(i))continue;const c=t[i];let u;o&&p(o,u=D(i))?s&&s.includes(u)?(a||(a={}))[u]=c:n[u]=c:Kn(e.emitsOptions,i)||i in r&&c===r[i]||(r[i]=c,l=!0)}if(s){const t=rn(n),r=a||i;for(let i=0;i{u=!0;const[n,r]=Bo(e,t,!0);d(l,n),r&&c.push(...r)};!n&&t.mixins.length&&t.mixins.forEach(r),e.extends&&r(e.extends),e.mixins&&e.mixins.forEach(r)}if(!a&&!u)return w(e)&&r.set(e,s),s;if(g(a))for(let s=0;s-1,n[1]=r<0||t-1||p(n,"default"))&&c.push(e)}}}const h=[l,c];return w(e)&&r.set(e,h),h}function Ro(e){return"$"!==e[0]&&!M(e)}function Lo(e){if(null===e)return"null";if("function"==typeof e)return e.name||"";if("object"==typeof e){return e.constructor&&e.constructor.name||""}return""}function No(e,t){return Lo(e)===Lo(t)}function $o(e,t){return g(t)?t.findIndex((t=>No(t,e))):y(t)&&No(t,e)?0:-1}const zo=e=>"_"===e[0]||"$stable"===e,jo=e=>g(e)?e.map(_i):[_i(e)],Vo=(e,t,n)=>{if(t._n)return t;const r=Jn(((...e)=>jo(t(...e))),n);return r._c=!1,r},Ho=(e,t,n)=>{const r=e._ctx;for(const o in e){if(zo(o))continue;const n=e[o];if(y(n))t[o]=Vo(0,n,r);else if(null!=n){const e=jo(n);t[o]=()=>e}}},Fo=(e,t)=>{const n=jo(t);e.slots.default=()=>n};function qo(e,t,n,r,o=!1){if(g(e))return void e.forEach(((e,i)=>qo(e,t&&(g(t)?t[i]:t),n,r,o)));if(Dr(r)&&!o)return;const s=4&r.shapeFlag?Ni(r.component)||r.component.proxy:r.el,a=o?null:s,{i:l,r:c}=e,u=t&&t.r,d=l.refs===i?l.refs={}:l.refs,f=l.setupState;if(null!=u&&u!==c&&(b(u)?(d[u]=null,p(f,u)&&(f[u]=null)):dn(u)&&(u.value=null)),y(c))xn(c,l,12,[a,d]);else{const t=b(c),r=dn(c);if(t||r){const i=()=>{if(e.f){const n=t?p(f,c)?f[c]:d[c]:c.value;o?g(n)&&h(n,s):g(n)?n.includes(s)||n.push(s):t?(d[c]=[s],p(f,c)&&(f[c]=d[c])):(c.value=[s],e.k&&(d[e.k]=c.value))}else t?(d[c]=a,p(f,c)&&(f[c]=a)):r&&(c.value=a,e.k&&(d[e.k]=a))};a?(i.id=-1,Uo(i,n)):i()}}}const Uo=function(e,t){var n;t&&t.pendingBranch?g(e)?t.effects.push(...e):t.effects.push(e):(g(n=e)?On.push(...n):In&&In.includes(n,n.allowRecurse?Pn+1:Pn)||On.push(n),$n())};function Wo(e){return function(e,t){j().__VUE__=!0;const{insert:n,remove:r,patchProp:o,forcePatchProp:l,createElement:c,createText:u,createComment:h,setText:f,setElementText:g,parentNode:m,nextSibling:v,setScopeId:y=a,insertStaticContent:b}=e,_=(e,t,n,r=null,o=null,i=null,s,a=null,l=!!t.dynamicChildren)=>{if(e===t)return;e&&!ui(e,t)&&(r=te(e),G(e,o,i,!0),e=null),-2===t.patchFlag&&(l=!1,t.dynamicChildren=null);const{type:c,ref:u,shapeFlag:d}=t;switch(c){case Zo:w(e,t,n,r);break;case Qo:x(e,t,n,r);break;case ei:null==e&&E(t,n,r,s);break;case Jo:z(e,t,n,r,o,i,s,a,l);break;default:1&d?k(e,t,n,r,o,i,s,a,l):6&d?V(e,t,n,r,o,i,s,a,l):(64&d||128&d)&&c.process(e,t,n,r,o,i,s,a,l,oe)}null!=u&&o&&qo(u,e&&e.ref,i,t||e,!t)},w=(e,t,r,o)=>{if(null==e)n(t.el=u(t.children),r,o);else{const n=t.el=e.el;t.children!==e.children&&f(n,t.children)}},x=(e,t,r,o)=>{null==e?n(t.el=h(t.children||""),r,o):t.el=e.el},E=(e,t,n,r)=>{[e.el,e.anchor]=b(e.children,t,n,r,e.el,e.anchor)},T=({el:e,anchor:t},r,o)=>{let i;for(;e&&e!==t;)i=v(e),n(e,r,o),e=i;n(t,r,o)},C=({el:e,anchor:t})=>{let n;for(;e&&e!==t;)n=v(e),r(e),e=n;r(t)},k=(e,t,n,r,o,i,s,a,l)=>{"svg"===t.type?s="svg":"math"===t.type&&(s="mathml"),null==e?A(t,n,r,o,i,s,a,l):B(e,t,o,i,s,a,l)},A=(e,t,r,i,s,a,l,u)=>{let d,h;const{props:f,shapeFlag:p,transition:m,dirs:v}=e;if(d=e.el=c(e.type,a,f&&f.is,f),8&p?g(d,e.children):16&p&&P(e.children,d,null,i,s,Ko(e,a),l,u),v&&vr(e,null,i,"created"),O(d,e,e.scopeId,l,i),f){for(const t in f)"value"===t||M(t)||o(d,t,null,f[t],a,e.children,i,s,ee);"value"in f&&o(d,"value",null,f.value,a),(h=f.onVnodeBeforeMount)&&Ei(h,i,e)}Object.defineProperty(d,"__vueParentComponent",{value:i,enumerable:!1}),v&&vr(e,null,i,"beforeMount");const y=function(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}(s,m);y&&m.beforeEnter(d),n(d,t,r),((h=f&&f.onVnodeMounted)||y||v)&&Uo((()=>{h&&Ei(h,i,e),y&&m.enter(d),v&&vr(e,null,i,"mounted")}),s)},O=(e,t,n,r,o)=>{if(n&&y(e,n),r)for(let i=0;i{for(let c=l;c{const u=t.el=e.el;let{patchFlag:d,dynamicChildren:h,dirs:f}=t;d|=16&e.patchFlag;const p=e.props||i,m=t.props||i;let v;if(n&&Yo(n,!1),(v=m.onVnodeBeforeUpdate)&&Ei(v,n,t,e),f&&vr(t,e,n,"beforeUpdate"),n&&Yo(n,!0),h?R(e.dynamicChildren,h,u,n,r,Ko(t,s),a):c||W(e,t,u,null,n,r,Ko(t,s),a,!1),d>0){if(16&d)$(u,t,p,m,n,r,s);else if(2&d&&p.class!==m.class&&o(u,"class",null,m.class,s),4&d&&o(u,"style",p.style,m.style,s),8&d){const i=t.dynamicProps;for(let t=0;t{v&&Ei(v,n,t,e),f&&vr(t,e,n,"updated")}),r)},R=(e,t,n,r,o,i,s)=>{for(let a=0;a{if(n!==r){if(n!==i)for(const i in n)M(i)||i in r||o(e,i,n[i],null,c,t.children,s,a,ee);for(const i in r){if(M(i))continue;const u=r[i],d=n[i];(u!==d&&"value"!==i||l&&l(e,i))&&o(e,i,d,u,c,t.children,s,a,ee)}"value"in r&&o(e,"value",n.value,r.value,c)}},z=(e,t,r,o,i,s,a,l,c)=>{const d=t.el=e?e.el:u(""),h=t.anchor=e?e.anchor:u("");let{patchFlag:f,dynamicChildren:p,slotScopeIds:g}=t;g&&(l=l?l.concat(g):g),null==e?(n(d,r,o),n(h,r,o),P(t.children||[],r,h,i,s,a,l,c)):f>0&&64&f&&p&&e.dynamicChildren?(R(e.dynamicChildren,p,r,i,s,a,l),(null!=t.key||i&&t===i.subTree)&&Xo(e,t,!0)):W(e,t,r,h,i,s,a,l,c)},V=(e,t,n,r,o,i,s,a,l)=>{t.slotScopeIds=a,null==e?512&t.shapeFlag?o.ctx.activate(t,n,r,s,l):H(t,n,r,o,i,s,l):F(e,t,l)},H=(e,t,n,r,o,s,a)=>{const l=e.component=function(e,t,n){const r=e.type,o=(t?t.appContext:e.appContext)||Ti,s={uid:Ci++,vnode:e,type:r,parent:t,appContext:o,root:null,next:null,subTree:null,effect:null,update:null,scope:new He(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(o.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:Bo(r,o),emitsOptions:Wn(r,o),emit:null,emitted:null,propsDefaults:i,inheritAttrs:r.inheritAttrs,ctx:i,data:i,props:i,attrs:i,slots:i,refs:i,setupState:i,setupContext:null,attrsProxy:null,slotsProxy:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,bda:null,da:null,ba:null,a:null,rtg:null,rtc:null,ec:null,sp:null};s.ctx={_:s},s.root=t?t.root:s,s.emit=qn.bind(null,s),s.$pageInstance=t&&t.$pageInstance,e.ce&&e.ce(s);return s}(e,r,o);if(Pr(e)&&(l.ctx.renderer=oe),function(e,t=!1){t&&Di(t);const{props:n,children:r}=e.vnode,o=Pi(e);(function(e,t,n,r=!1){const o={},i={};N(i,di,1),e.propsDefaults=Object.create(null),Io(e,t,o,i);for(const s in e.propsOptions[0])s in o||(o[s]=void 0);n?e.props=r?o:Gt(o):e.type.props?e.props=o:e.props=i,e.attrs=i})(e,n,o,t),((e,t)=>{if(32&e.vnode.shapeFlag){const n=t._;n?(e.slots=rn(t),N(t,"_",n)):Ho(t,e.slots={})}else e.slots={},t&&Fo(e,t);N(e.slots,di,1)})(e,r);const i=o?function(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=on(new Proxy(e.ctx,uo));const{setup:r}=n;if(r){const n=e.setupContext=r.length>1?function(e){const t=t=>{e.exposed=t||{}};return{get attrs(){return function(e){return e.attrsProxy||(e.attrsProxy=new Proxy(e.attrs,{get:(t,n)=>(ut(e,0,"$attrs"),t[n])}))}(e)},slots:e.slots,emit:e.emit,expose:t}}(e):null,o=Oi(e);Ze();const i=xn(r,e,0,[e.props,n]);if(Qe(),o(),S(i)){if(i.then(Ii,Ii),t)return i.then((n=>{Ri(e,n,t)})).catch((t=>{Tn(t,e,0)}));e.asyncDep=i}else Ri(e,i,t)}else Li(e,t)}(e,t):void 0;t&&Di(!1)}(l),l.asyncDep){if(o&&o.registerDep(l,q),!e.el){const e=l.subTree=gi(Qo);x(null,e,t,n)}}else q(l,e,t,n,o,s,a)},F=(e,t,n)=>{const r=t.component=e.component;if(function(e,t,n){const{props:r,children:o,component:i}=e,{props:s,children:a,patchFlag:l}=t,c=i.emitsOptions;if(t.dirs||t.transition)return!0;if(!(n&&l>=0))return!(!o&&!a||a&&a.$stable)||r!==s&&(r?!s||tr(r,s,c):!!s);if(1024&l)return!0;if(16&l)return r?tr(r,s,c):!!s;if(8&l){const e=t.dynamicProps;for(let t=0;tDn&&An.splice(t,1)}(r.update),r.effect.dirty=!0,r.update()}else t.el=e.el,r.vnode=t},q=(e,t,n,r,o,i,s)=>{const l=()=>{if(e.isMounted){let{next:t,bu:n,u:r,parent:a,vnode:c}=e;{const n=Go(e);if(n)return t&&(t.el=c.el,U(e,t,s)),void n.asyncDep.then((()=>{e.isUnmounted||l()}))}let u,d=t;Yo(e,!1),t?(t.el=c.el,U(e,t,s)):t=c,n&&L(n),(u=t.props&&t.props.onVnodeBeforeUpdate)&&Ei(u,a,t,c),Yo(e,!0);const h=Zn(e),f=e.subTree;e.subTree=h,_(f,h,m(f.el),te(f),e,o,i),t.el=h.el,null===d&&function({vnode:e,parent:t},n){for(;t;){const r=t.subTree;if(r.suspense&&r.suspense.activeBranch===e&&(r.el=e.el),r!==e)break;(e=t.vnode).el=n,t=t.parent}}(e,h.el),r&&Uo(r,o),(u=t.props&&t.props.onVnodeUpdated)&&Uo((()=>Ei(u,a,t,c)),o)}else{let s;const{el:a,props:l}=t,{bm:c,m:u,parent:d}=e,h=Dr(t);if(Yo(e,!1),c&&L(c),!h&&(s=l&&l.onVnodeBeforeMount)&&Ei(s,d,t),Yo(e,!0),a&&se){const n=()=>{e.subTree=Zn(e),se(a,e.subTree,e,o,null)};h?t.type.__asyncLoader().then((()=>!e.isUnmounted&&n())):n()}else{const s=e.subTree=Zn(e);_(null,s,n,r,e,o,i),t.el=s.el}if(u&&Uo(u,o),!h&&(s=l&&l.onVnodeMounted)){const e=t;Uo((()=>Ei(s,d,e)),o)}(256&t.shapeFlag||d&&Dr(d.vnode)&&256&d.vnode.shapeFlag)&&(e.ba&&Ur(e.ba),e.a&&Uo(e.a,o)),e.isMounted=!0,t=n=r=null}},c=e.effect=new Ue(l,a,(()=>Nn(u)),e.scope),u=e.update=()=>{c.dirty&&c.run()};u.id=e.uid,Yo(e,!0),u()},U=(e,t,n)=>{t.component=e;const r=e.vnode.props;e.vnode=t,e.next=null,function(e,t,n,r){const{props:o,attrs:i,vnode:{patchFlag:s}}=e,a=rn(o),[l]=e.propsOptions;let c=!1;if(!(r||s>0)||16&s){let r;Io(e,t,o,i)&&(c=!0);for(const i in a)t&&(p(t,i)||(r=I(i))!==i&&p(t,r))||(l?!n||void 0===n[i]&&void 0===n[r]||(o[i]=Po(l,a,i,void 0,e,!0)):delete o[i]);if(i!==a)for(const e in i)t&&p(t,e)||(delete i[e],c=!0)}else if(8&s){const n=e.vnode.dynamicProps;for(let r=0;r{const{vnode:r,slots:o}=e;let s=!0,a=i;if(32&r.shapeFlag){const e=t._;e?n&&1===e?s=!1:(d(o,t),n||1!==e||delete o._):(s=!t.$stable,Ho(t,o)),a=t}else t&&(Fo(e,t),a={default:1});if(s)for(const i in o)zo(i)||null!=a[i]||delete o[i]})(e,t.children,n),Ze(),zn(e),Qe()},W=(e,t,n,r,o,i,s,a,l=!1)=>{const c=e&&e.children,u=e?e.shapeFlag:0,d=t.children,{patchFlag:h,shapeFlag:f}=t;if(h>0){if(128&h)return void Y(c,d,n,r,o,i,s,a,l);if(256&h)return void K(c,d,n,r,o,i,s,a,l)}8&f?(16&u&&ee(c,o,i),d!==c&&g(n,d)):16&u?16&f?Y(c,d,n,r,o,i,s,a,l):ee(c,o,i,!0):(8&u&&g(n,""),16&f&&P(d,n,r,o,i,s,a,l))},K=(e,t,n,r,o,i,a,l,c)=>{t=t||s;const u=(e=e||s).length,d=t.length,h=Math.min(u,d);let f;for(f=0;fd?ee(e,o,i,!0,!1,h):P(t,n,r,o,i,a,l,c,h)},Y=(e,t,n,r,o,i,a,l,c)=>{let u=0;const d=t.length;let h=e.length-1,f=d-1;for(;u<=h&&u<=f;){const r=e[u],s=t[u]=c?wi(t[u]):_i(t[u]);if(!ui(r,s))break;_(r,s,n,null,o,i,a,l,c),u++}for(;u<=h&&u<=f;){const r=e[h],s=t[f]=c?wi(t[f]):_i(t[f]);if(!ui(r,s))break;_(r,s,n,null,o,i,a,l,c),h--,f--}if(u>h){if(u<=f){const e=f+1,s=ef)for(;u<=h;)G(e[u],o,i,!0),u++;else{const p=u,g=u,m=new Map;for(u=g;u<=f;u++){const e=t[u]=c?wi(t[u]):_i(t[u]);null!=e.key&&m.set(e.key,u)}let v,y=0;const b=f-g+1;let w=!1,S=0;const x=new Array(b);for(u=0;u=b){G(r,o,i,!0);continue}let s;if(null!=r.key)s=m.get(r.key);else for(v=g;v<=f;v++)if(0===x[v-g]&&ui(r,t[v])){s=v;break}void 0===s?G(r,o,i,!0):(x[s-g]=u+1,s>=S?S=s:w=!0,_(r,t[s],n,null,o,i,a,l,c),y++)}const E=w?function(e){const t=e.slice(),n=[0];let r,o,i,s,a;const l=e.length;for(r=0;r>1,e[n[a]]0&&(t[r]=n[i-1]),n[i]=r)}}i=n.length,s=n[i-1];for(;i-- >0;)n[i]=s,s=t[s];return n}(x):s;for(v=E.length-1,u=b-1;u>=0;u--){const e=g+u,s=t[e],h=e+1{const{el:s,type:a,transition:l,children:c,shapeFlag:u}=e;if(6&u)return void X(e.component.subTree,t,r,o);if(128&u)return void e.suspense.move(t,r,o);if(64&u)return void a.move(e,t,r,oe);if(a===Jo){n(s,t,r);for(let e=0;el.enter(s)),i);else{const{leave:e,delayLeave:o,afterLeave:i}=l,a=()=>n(s,t,r),c=()=>{e(s,(()=>{a(),i&&i()}))};o?o(s,a,c):c()}else n(s,t,r)},G=(e,t,n,r=!1,o=!1)=>{const{type:i,props:s,ref:a,children:l,dynamicChildren:c,shapeFlag:u,patchFlag:d,dirs:h}=e;if(null!=a&&qo(a,null,n,e,!0),256&u)return void t.ctx.deactivate(e);const f=1&u&&h,p=!Dr(e);let g;if(p&&(g=s&&s.onVnodeBeforeUnmount)&&Ei(g,t,e),6&u)Q(e.component,n,r);else{if(128&u)return void e.suspense.unmount(n,r);f&&vr(e,null,t,"beforeUnmount"),64&u?e.type.remove(e,t,n,o,oe,r):c&&(i!==Jo||d>0&&64&d)?ee(c,t,n,!1,!0):(i===Jo&&384&d||!o&&16&u)&&ee(l,t,n),r&&J(e)}(p&&(g=s&&s.onVnodeUnmounted)||f)&&Uo((()=>{g&&Ei(g,t,e),f&&vr(e,null,t,"unmounted")}),n)},J=e=>{const{type:t,el:n,anchor:o,transition:i}=e;if(t===Jo)return void Z(n,o);if(t===ei)return void C(e);const s=()=>{r(n),i&&!i.persisted&&i.afterLeave&&i.afterLeave()};if(1&e.shapeFlag&&i&&!i.persisted){const{leave:t,delayLeave:r}=i,o=()=>t(n,s);r?r(e.el,s,o):o()}else s()},Z=(e,t)=>{let n;for(;e!==t;)n=v(e),r(e),e=n;r(t)},Q=(e,t,n)=>{const{bum:r,scope:o,update:i,subTree:s,um:a}=e;r&&L(r),o.stop(),i&&(i.active=!1,G(s,e,t,n)),a&&Uo(a,t),Uo((()=>{e.isUnmounted=!0}),t),t&&t.pendingBranch&&!t.isUnmounted&&e.asyncDep&&!e.asyncResolved&&e.suspenseId===t.pendingId&&(t.deps--,0===t.deps&&t.resolve())},ee=(e,t,n,r=!1,o=!1,i=0)=>{for(let s=i;s6&e.shapeFlag?te(e.component.subTree):128&e.shapeFlag?e.suspense.next():v(e.anchor||e.el);let ne=!1;const re=(e,t,n)=>{null==e?t._vnode&&G(t._vnode,null,null,!0):_(t._vnode||null,e,t,null,null,null,n),ne||(ne=!0,zn(),jn(),ne=!1),t._vnode=e},oe={p:_,um:G,m:X,r:J,mt:H,mc:P,pc:W,pbc:R,n:te,o:e};let ie,se;t&&([ie,se]=t(oe));return{render:re,hydrate:ie,createApp:Mo(re,ie)}}(e)}function Ko({type:e,props:t},n){return"svg"===n&&"foreignObject"===e||"mathml"===n&&"annotation-xml"===e&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function Yo({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function Xo(e,t,n=!1){const r=e.children,o=t.children;if(g(r)&&g(o))for(let i=0;i0?ni||s:null,ti.pop(),ni=ti[ti.length-1]||null,oi>0&&ni&&ni.push(e),e}function ai(e,t,n,r,o,i){return si(pi(e,t,n,r,o,i,!0))}function li(e,t,n,r,o){return si(gi(e,t,n,r,o,!0))}function ci(e){return!!e&&!0===e.__v_isVNode}function ui(e,t){return e.type===t.type&&e.key===t.key}const di="__vInternal",hi=({key:e})=>null!=e?e:null,fi=({ref:e,ref_key:t,ref_for:n})=>("number"==typeof e&&(e=""+e),null!=e?b(e)||dn(e)||y(e)?{i:Yn,r:e,k:t,f:!!n}:e:null);function pi(e,t=null,n=null,r=0,o=null,i=(e===Jo?0:1),s=!1,a=!1){const l={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&hi(t),ref:t&&fi(t),scopeId:Xn,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:r,dynamicProps:o,dynamicChildren:null,appContext:null,ctx:Yn};return a?(Si(l,n),128&i&&e.normalize(l)):n&&(l.shapeFlag|=b(n)?8:16),oi>0&&!s&&ni&&(l.patchFlag>0||6&i)&&32!==l.patchFlag&&ni.push(l),l}const gi=function(e,t=null,n=null,r=0,o=null,i=!1){e&&e!==rr||(e=Qo);if(ci(e)){const r=vi(e,t,!0);return n&&Si(r,n),oi>0&&!i&&ni&&(6&r.shapeFlag?ni[ni.indexOf(e)]=r:ni.push(r)),r.patchFlag|=-2,r}s=e,y(s)&&"__vccOpts"in s&&(e=e.__vccOpts);var s;if(t){t=mi(t);let{class:e,style:n}=t;e&&!b(e)&&(t.class=ve(e)),w(n)&&(nn(n)&&!g(n)&&(n=d({},n)),t.style=me(n))}const a=b(e)?1:ar(e)?128:(e=>e.__isTeleport)(e)?64:w(e)?4:y(e)?2:0;return pi(e,t,n,r,o,a,i,!0)};function mi(e){return e?nn(e)||di in e?d({},e):e:null}function vi(e,t,n=!1){const{props:r,ref:o,patchFlag:i,children:s}=e,a=t?xi(r||{},t):r;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:a,key:a&&hi(a),ref:t&&t.ref?n&&o?g(o)?o.concat(fi(t)):[o,fi(t)]:fi(t):o,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:s,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Jo?-1===i?16:16|i:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&vi(e.ssContent),ssFallback:e.ssFallback&&vi(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function yi(e=" ",t=0){return gi(Zo,null,e,t)}function bi(e="",t=!1){return t?(ri(),li(Qo,null,e)):gi(Qo,null,e)}function _i(e){return null==e||"boolean"==typeof e?gi(Qo):g(e)?gi(Jo,null,e.slice()):"object"==typeof e?wi(e):gi(Zo,null,String(e))}function wi(e){return null===e.el&&-1!==e.patchFlag||e.memo?e:vi(e)}function Si(e,t){let n=0;const{shapeFlag:r}=e;if(null==t)t=null;else if(g(t))n=16;else if("object"==typeof t){if(65&r){const n=t.default;return void(n&&(n._c&&(n._d=!1),Si(e,n()),n._c&&(n._d=!0)))}{n=32;const r=t._;r||di in t?3===r&&Yn&&(1===Yn.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=Yn}}else y(t)?(t={default:t,_ctx:Yn},n=32):(t=String(t),64&r?(n=16,t=[yi(t)]):n=8);e.children=t,e.shapeFlag|=n}function xi(...e){const t={};for(let n=0;nMi||Yn;let Ai,Di;{const e=j(),t=(t,n)=>{let r;return(r=e[t])||(r=e[t]=[]),r.push(n),e=>{r.length>1?r.forEach((t=>t(e))):r[0](e)}};Ai=t("__VUE_INSTANCE_SETTERS__",(e=>Mi=e)),Di=t("__VUE_SSR_SETTERS__",(e=>Bi=e))}const Oi=e=>{const t=Mi;return Ai(e),e.scope.on(),()=>{e.scope.off(),Ai(t)}},Ii=()=>{Mi&&Mi.scope.off(),Ai(null)};function Pi(e){return 4&e.vnode.shapeFlag}let Bi=!1;function Ri(e,t,n){y(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:w(t)&&(e.setupState=yn(t)),Li(e,n)}function Li(e,t,n){const r=e.type;e.render||(e.render=r.render||a);{const t=Oi(e);Ze();try{po(e)}finally{Qe(),t()}}}function Ni(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(yn(on(e.exposed)),{get:(t,n)=>n in t?t[n]:n in lo?lo[n](e):void 0,has:(e,t)=>t in e||t in lo}))}function $i(e,t=!0){return y(e)?e.displayName||e.name:e.name||t&&e.__name}const zi=(e,t)=>{const n=function(e,t,n=!1){let r,o;const i=y(e);return i?(r=e,o=a):(r=e.get,o=e.set),new ln(r,o,i||!o,n)}(e,0,Bi);return n};function ji(e,t,n){const r=arguments.length;return 2===r?w(t)&&!g(t)?ci(t)?gi(e,null,[t]):gi(e,t):gi(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):3===r&&ci(n)&&(n=[n]),gi(e,t,n))}const Vi="3.4.21",Hi="undefined"!=typeof document?document:null,Fi=Hi&&Hi.createElement("template"),qi={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const o="svg"===t?Hi.createElementNS("http://www.w3.org/2000/svg",e):"mathml"===t?Hi.createElementNS("http://www.w3.org/1998/Math/MathML",e):n?Hi.createElement(e,{is:n}):Hi.createElement(e);return"select"===e&&r&&null!=r.multiple&&o.setAttribute("multiple",r.multiple),o},createText:e=>Hi.createTextNode(e),createComment:e=>Hi.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Hi.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,o,i){const s=n?n.previousSibling:t.lastChild;if(o&&(o===i||o.nextSibling))for(;t.insertBefore(o.cloneNode(!0),n),o!==i&&(o=o.nextSibling););else{Fi.innerHTML="svg"===r?`${e}`:"mathml"===r?`${e}`:e;const o=Fi.content;if("svg"===r||"mathml"===r){const e=o.firstChild;for(;e.firstChild;)o.appendChild(e.firstChild);o.removeChild(e)}t.insertBefore(o,n)}return[s?s.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Ui="transition",Wi=Symbol("_vtc"),Ki=(e,{slots:t})=>ji(Sr,function(e){const t={};for(const d in e)d in Yi||(t[d]=e[d]);if(!1===e.css)return t;const{name:n="v",type:r,duration:o,enterFromClass:i=`${n}-enter-from`,enterActiveClass:s=`${n}-enter-active`,enterToClass:a=`${n}-enter-to`,appearFromClass:l=i,appearActiveClass:c=s,appearToClass:u=a,leaveFromClass:h=`${n}-leave-from`,leaveActiveClass:f=`${n}-leave-active`,leaveToClass:p=`${n}-leave-to`}=e,g=function(e){if(null==e)return null;if(w(e))return[Ji(e.enter),Ji(e.leave)];{const t=Ji(e);return[t,t]}}(o),m=g&&g[0],v=g&&g[1],{onBeforeEnter:y,onEnter:b,onEnterCancelled:_,onLeave:S,onLeaveCancelled:x,onBeforeAppear:E=y,onAppear:T=b,onAppearCancelled:C=_}=t,M=(e,t,n)=>{Qi(e,t?u:a),Qi(e,t?c:s),n&&n()},k=(e,t)=>{e._isLeaving=!1,Qi(e,h),Qi(e,p),Qi(e,f),t&&t()},A=e=>(t,n)=>{const o=e?T:b,s=()=>M(t,e,n);Xi(o,[t,s]),es((()=>{Qi(t,e?l:i),Zi(t,e?u:a),Gi(o)||ns(t,r,m,s)}))};return d(t,{onBeforeEnter(e){Xi(y,[e]),Zi(e,i),Zi(e,s)},onBeforeAppear(e){Xi(E,[e]),Zi(e,l),Zi(e,c)},onEnter:A(!1),onAppear:A(!0),onLeave(e,t){e._isLeaving=!0;const n=()=>k(e,t);Zi(e,h),document.body.offsetHeight,Zi(e,f),es((()=>{e._isLeaving&&(Qi(e,h),Zi(e,p),Gi(S)||ns(e,r,v,n))})),Xi(S,[e,n])},onEnterCancelled(e){M(e,!1),Xi(_,[e])},onAppearCancelled(e){M(e,!0),Xi(C,[e])},onLeaveCancelled(e){k(e),Xi(x,[e])}})}(e),t);Ki.displayName="Transition";const Yi={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};Ki.props=d({},wr,Yi);const Xi=(e,t=[])=>{g(e)?e.forEach((e=>e(...t))):e&&e(...t)},Gi=e=>!!e&&(g(e)?e.some((e=>e.length>1)):e.length>1);function Ji(e){const t=(e=>{const t=b(e)?Number(e):NaN;return isNaN(t)?e:t})(e);return t}function Zi(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.add(t))),(e[Wi]||(e[Wi]=new Set)).add(t)}function Qi(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.remove(t)));const n=e[Wi];n&&(n.delete(t),n.size||(e[Wi]=void 0))}function es(e){requestAnimationFrame((()=>{requestAnimationFrame(e)}))}let ts=0;function ns(e,t,n,r){const o=e._endId=++ts,i=()=>{o===e._endId&&r()};if(n)return setTimeout(i,n);const{type:s,timeout:a,propCount:l}=function(e,t){const n=window.getComputedStyle(e),r=e=>(n[e]||"").split(", "),o=r("transitionDelay"),i=r("transitionDuration"),s=rs(o,i),a=r("animationDelay"),l=r("animationDuration"),c=rs(a,l);let u=null,d=0,h=0;t===Ui?s>0&&(u=Ui,d=s,h=i.length):"animation"===t?c>0&&(u="animation",d=c,h=l.length):(d=Math.max(s,c),u=d>0?s>c?Ui:"animation":null,h=u?u===Ui?i.length:l.length:0);const f=u===Ui&&/\b(transform|all)(,|$)/.test(r("transitionProperty").toString());return{type:u,timeout:d,propCount:h,hasTransform:f}}(e,t);if(!s)return r();const c=s+"end";let u=0;const d=()=>{e.removeEventListener(c,h),i()},h=t=>{t.target===e&&++u>=l&&d()};setTimeout((()=>{uos(t)+os(e[n]))))}function os(e){return"auto"===e?0:1e3*Number(e.slice(0,-1).replace(",","."))}const is=Symbol("_vod"),ss=Symbol("_vsh"),as={beforeMount(e,{value:t},{transition:n}){e[is]="none"===e.style.display?"":e.style.display,n&&t?n.beforeEnter(e):ls(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:r}){!t!=!n&&(r?t?(r.beforeEnter(e),ls(e,!0),r.enter(e)):r.leave(e,(()=>{ls(e,!1)})):ls(e,t))},beforeUnmount(e,{value:t}){ls(e,t)}};function ls(e,t){e.style.display=t?e[is]:"none",e[ss]=!t}const cs=Symbol(""),us=/(^|;)\s*display\s*:/;const ds=/\s*!important$/;function hs(e,t,n){if(g(n))n.forEach((n=>hs(e,t,n)));else if(null==n&&(n=""),n=Ss(n),t.startsWith("--"))e.setProperty(t,n);else{const r=function(e,t){const n=ps[t];if(n)return n;let r=D(t);if("filter"!==r&&r in e)return ps[t]=r;r=P(r);for(let o=0;oe.replace(Se,((e,t)=>{if(!t)return e;if(1===_s)return`${t}${bs}`;const n=function(e,t){const n=Math.pow(10,t+1),r=Math.floor(e*n);return 10*Math.round(r/10)/n}(parseFloat(t)*_s,ws);return 0===n?"0":`${n}${bs}`})));var bs,_s,ws;const Ss=e=>b(e)?ys(e):e,xs="http://www.w3.org/1999/xlink";const Es=Symbol("_vei");function Ts(e,t,n,r,o=null){const i=e[Es]||(e[Es]={}),s=i[t];if(r&&s)s.value=r;else{const[n,a]=function(e){let t;if(Cs.test(e)){let n;for(t={};n=e.match(Cs);)e=e.slice(0,e.length-n[0].length),t[n[0].toLowerCase()]=!0}return[":"===e[2]?e.slice(3):I(e.slice(2)),t]}(t);if(r){const s=i[t]=function(e,t){const n=e=>{if(e._vts){if(e._vts<=n.attached)return}else e._vts=Date.now();const r=t&&t.proxy,o=r&&r.$nne,{value:i}=n;if(o&&g(i)){const n=As(e,i);for(let r=0;rMs||(ks.then((()=>Ms=0)),Ms=Date.now()))(),n}(r,o);!function(e,t,n,r){e.addEventListener(t,n,r)}(e,n,s,a)}else s&&(!function(e,t,n,r){e.removeEventListener(t,n,r)}(e,n,s,a),i[t]=void 0)}}const Cs=/(?:Once|Passive|Capture)$/;let Ms=0;const ks=Promise.resolve();function As(e,t){if(g(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map((e=>{const t=t=>!t._stopped&&e&&e(t);return t.__wwe=e.__wwe,t}))}return t}const Ds=e=>111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123;const Os=["ctrl","shift","alt","meta"],Is={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&0!==e.button,middle:e=>"button"in e&&1!==e.button,right:e=>"button"in e&&2!==e.button,exact:(e,t)=>Os.some((n=>e[`${n}Key`]&&!t.includes(n)))},Ps=(e,t)=>{const n=e._withMods||(e._withMods={}),r=t.join(".");return n[r]||(n[r]=(n,...r)=>{for(let e=0;e{if(0===t.indexOf("change:"))return function(e,t,n,r=null){if(!n||!r)return;const o=t.replace("change:",""),{attrs:i}=r,s=i[o],a=(e.__wxsProps||(e.__wxsProps={}))[o];if(a===s)return;e.__wxsProps[o]=s;const l=r.proxy;Ln((()=>{n(s,a,l.$gcd(l,!0),l.$gcd(l,!1))}))}(e,t,r,s);const d="svg"===o;"class"===t?function(e,t,n){const{__wxsAddClass:r,__wxsRemoveClass:o}=e;o&&o.length&&(t=(t||"").split(/\s+/).filter((e=>-1===o.indexOf(e))).join(" "),o.length=0),r&&r.length&&(t=(t||"")+" "+r.join(" "));const i=e[Wi];i&&(t=(t?[t,...i]:[...i]).join(" ")),null==t?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}(e,r,d):"style"===t?function(e,t,n){const r=e.style,o=b(n);let i=!1;if(n&&!o){if(t)if(b(t))for(const e of t.split(";")){const t=e.slice(0,e.indexOf(":")).trim();null==n[t]&&hs(r,t,"")}else for(const e in t)null==n[e]&&hs(r,e,"");for(const e in n)"display"===e&&(i=!0),hs(r,e,n[e])}else if(o){if(t!==n){const e=r[cs];e&&(n+=";"+e),r.cssText=n,i=us.test(n)}}else t&&e.removeAttribute("style");is in e&&(e[is]=i?r.display:"",e[ss]&&(r.display="none"));const{__wxsStyle:s}=e;if(s)for(const a in s)hs(r,a,s[a])}(e,n,r):c(t)?u(t)||Ts(e,t,0,r,s):("."===t[0]?(t=t.slice(1),1):"^"===t[0]?(t=t.slice(1),0):function(e,t,n,r){if(r)return"innerHTML"===t||"textContent"===t||!!(t in e&&Ds(t)&&y(n));if("spellcheck"===t||"draggable"===t||"translate"===t)return!1;if("form"===t)return!1;if("list"===t&&"INPUT"===e.tagName)return!1;if("type"===t&&"TEXTAREA"===e.tagName)return!1;if("width"===t||"height"===t){const t=e.tagName;if("IMG"===t||"VIDEO"===t||"CANVAS"===t||"SOURCE"===t)return!1}if(Ds(t)&&b(n))return!1;return t in e}(e,t,r,d))?function(e,t,n,r,o,i,s){if("innerHTML"===t||"textContent"===t)return r&&s(r,o,i),void(e[t]=null==n?"":n);const a=e.tagName;if("value"===t&&"PROGRESS"!==a&&!a.includes("-")){const r=null==n?"":n;return("OPTION"===a?e.getAttribute("value")||"":e.value)===r&&"_value"in e||(e.value=r),null==n&&e.removeAttribute(t),void(e._value=n)}let l=!1;if(""===n||null==n){const r=typeof e[t];"boolean"===r?n=Y(n):null==n&&"string"===r?(n="",l=!0):"number"===r&&(n=0,l=!0)}try{e[t]=n}catch(C_){}l&&e.removeAttribute(t)}(e,t,r,i,s,a,l):("true-value"===t?e._trueValue=r:"false-value"===t&&(e._falseValue=r),function(e,t,n,r,o){if(r&&t.startsWith("xlink:"))null==n?e.removeAttributeNS(xs,t.slice(6,t.length)):e.setAttributeNS(xs,t,n);else{const r=K(t);null==n||r&&!Y(n)?e.removeAttribute(t):e.setAttribute(t,r?"":n)}}(e,t,r,d))},forcePatchProp:(e,t)=>0===t.indexOf("change:")||("class"===t&&e.__wxsClassChanged?(e.__wxsClassChanged=!1,!0):!("style"!==t||!e.__wxsStyleChanged)&&(e.__wxsStyleChanged=!1,!0))},qi);let Rs;const Ls=(...e)=>{const t=(Rs||(Rs=Wo(Bs))).createApp(...e),{mount:n}=t;return t.mount=e=>{const r=function(e){if(b(e)){return document.querySelector(e)}return e} -/*! - * vue-router v4.3.0 - * (c) 2024 Eduardo San Martin Morote - * @license MIT - */(e);if(!r)return;const o=t._component;y(o)||o.render||o.template||(o.template=r.innerHTML),r.innerHTML="";const i=n(r,!1,function(e){if(e instanceof SVGElement)return"svg";if("function"==typeof MathMLElement&&e instanceof MathMLElement)return"mathml"}(r));return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),i},t};const Ns="undefined"!=typeof document;const $s=Object.assign;function zs(e,t){const n={};for(const r in t){const o=t[r];n[r]=Vs(o)?o.map(e):e(o)}return n}const js=()=>{},Vs=Array.isArray,Hs=/#/g,Fs=/&/g,qs=/\//g,Us=/=/g,Ws=/\?/g,Ks=/\+/g,Ys=/%5B/g,Xs=/%5D/g,Gs=/%5E/g,Js=/%60/g,Zs=/%7B/g,Qs=/%7C/g,ea=/%7D/g,ta=/%20/g;function na(e){return encodeURI(""+e).replace(Qs,"|").replace(Ys,"[").replace(Xs,"]")}function ra(e){return na(e).replace(Ks,"%2B").replace(ta,"+").replace(Hs,"%23").replace(Fs,"%26").replace(Js,"`").replace(Zs,"{").replace(ea,"}").replace(Gs,"^")}function oa(e){return null==e?"":function(e){return na(e).replace(Hs,"%23").replace(Ws,"%3F")}(e).replace(qs,"%2F")}function ia(e){try{return decodeURIComponent(""+e)}catch(t){}return""+e}const sa=/\/$/;function aa(e,t,n="/"){let r,o={},i="",s="";const a=t.indexOf("#");let l=t.indexOf("?");return a=0&&(l=-1),l>-1&&(r=t.slice(0,l),i=t.slice(l+1,a>-1?a:t.length),o=e(i)),a>-1&&(r=r||t.slice(0,a),s=t.slice(a,t.length)),r=function(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/"),o=r[r.length-1];".."!==o&&"."!==o||r.push("");let i,s,a=n.length-1;for(i=0;i1&&a--}return n.slice(0,a).join("/")+"/"+r.slice(i).join("/")}(null!=r?r:t,n),{fullPath:r+(i&&"?")+i+s,path:r,query:o,hash:ia(s)}}function la(e,t){return t&&e.toLowerCase().startsWith(t.toLowerCase())?e.slice(t.length)||"/":e}function ca(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function ua(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!da(e[n],t[n]))return!1;return!0}function da(e,t){return Vs(e)?ha(e,t):Vs(t)?ha(t,e):e===t}function ha(e,t){return Vs(t)?e.length===t.length&&e.every(((e,n)=>e===t[n])):1===e.length&&e[0]===t}var fa,pa,ga,ma;function va(e){if(!e)if(Ns){const t=document.querySelector("base");e=(e=t&&t.getAttribute("href")||"/").replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return"/"!==e[0]&&"#"!==e[0]&&(e="/"+e),e.replace(sa,"")}(pa=fa||(fa={})).pop="pop",pa.push="push",(ma=ga||(ga={})).back="back",ma.forward="forward",ma.unknown="";const ya=/^[^#]+#/;function ba(e,t){return e.replace(ya,"#")+t}const _a=()=>({left:window.scrollX,top:window.scrollY});function wa(e){let t;if("el"in e){const n=e.el,r="string"==typeof n&&n.startsWith("#"),o="string"==typeof n?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!o)return;t=function(e,t){const n=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:t.behavior,left:r.left-n.left-(t.left||0),top:r.top-n.top-(t.top||0)}}(o,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(null!=t.left?t.left:window.scrollX,null!=t.top?t.top:window.scrollY)}function Sa(e,t){return(history.state?history.state.position-t:-1)+e}const xa=new Map;function Ea(e,t){const{pathname:n,search:r,hash:o}=t,i=e.indexOf("#");if(i>-1){let t=o.includes(e.slice(i))?e.slice(i).length:1,n=o.slice(t);return"/"!==n[0]&&(n="/"+n),la(n,"")}return la(n,e)+r+o}function Ta(e,t,n,r=!1,o=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:o?_a():null}}function Ca(e){const{history:t,location:n}=window,r={value:Ea(e,n)},o={value:t.state};function i(r,i,s){const a=e.indexOf("#"),l=a>-1?(n.host&&document.querySelector("base")?e:e.slice(a))+r:location.protocol+"//"+location.host+e+r;try{t[s?"replaceState":"pushState"](i,"",l),o.value=i}catch(c){console.error(c),n[s?"replace":"assign"](l)}}return o.value||i(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0),{location:r,state:o,push:function(e,n){const s=$s({},o.value,t.state,{forward:e,scroll:_a()});i(s.current,s,!0),i(e,$s({},Ta(r.value,e,null),{position:s.position+1},n),!1),r.value=e},replace:function(e,n){i(e,$s({},t.state,Ta(o.value.back,e,o.value.forward,!0),n,{position:o.value.position}),!0),r.value=e}}}function Ma(e){const t=Ca(e=va(e)),n=function(e,t,n,r){let o=[],i=[],s=null;const a=({state:i})=>{const a=Ea(e,location),l=n.value,c=t.value;let u=0;if(i){if(n.value=a,t.value=i,s&&s===l)return void(s=null);u=c?i.position-c.position:0}else r(a);o.forEach((e=>{e(n.value,l,{delta:u,type:fa.pop,direction:u?u>0?ga.forward:ga.back:ga.unknown})}))};function l(){const{history:e}=window;e.state&&e.replaceState($s({},e.state,{scroll:_a()}),"")}return window.addEventListener("popstate",a),window.addEventListener("beforeunload",l,{passive:!0}),{pauseListeners:function(){s=n.value},listen:function(e){o.push(e);const t=()=>{const t=o.indexOf(e);t>-1&&o.splice(t,1)};return i.push(t),t},destroy:function(){for(const e of i)e();i=[],window.removeEventListener("popstate",a),window.removeEventListener("beforeunload",l)}}}(e,t.state,t.location,t.replace);const r=$s({location:"",base:e,go:function(e,t=!0){t||n.pauseListeners(),history.go(e)},createHref:ba.bind(null,e)},t,n);return Object.defineProperty(r,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(r,"state",{enumerable:!0,get:()=>t.state.value}),r}function ka(e){return"string"==typeof e||"symbol"==typeof e}const Aa={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Da=Symbol("");var Oa,Ia;function Pa(e,t){return $s(new Error,{type:e,[Da]:!0},t)}function Ba(e,t){return e instanceof Error&&Da in e&&(null==t||!!(e.type&t))}(Ia=Oa||(Oa={}))[Ia.aborted=4]="aborted",Ia[Ia.cancelled=8]="cancelled",Ia[Ia.duplicated=16]="duplicated";const Ra={sensitive:!1,strict:!1,start:!0,end:!0},La=/[.+*?^${}()[\]/\\]/g;function Na(e,t){let n=0;for(;nt.length?1===t.length&&80===t[0]?1:-1:0}function $a(e,t){let n=0;const r=e.score,o=t.score;for(;n0&&t[t.length-1]<0}const ja={type:0,value:""},Va=/[a-zA-Z0-9_]/;function Ha(e,t,n){const r=function(e,t){const n=$s({},Ra,t),r=[];let o=n.start?"^":"";const i=[];for(const l of e){const e=l.length?[]:[90];n.strict&&!l.length&&(o+="/");for(let t=0;t1&&("*"===a||"+"===a)&&t(`A repeatable param (${c}) must be alone in its segment. eg: '/:ids+.`),i.push({type:1,value:c,regexp:u,repeatable:"*"===a||"+"===a,optional:"*"===a||"?"===a})):t("Invalid state to consume buffer"),c="")}function h(){c+=a}for(;l{i(h)}:js}function i(e){if(ka(e)){const t=r.get(e);t&&(r.delete(e),n.splice(n.indexOf(t),1),t.children.forEach(i),t.alias.forEach(i))}else{const t=n.indexOf(e);t>-1&&(n.splice(t,1),e.record.name&&r.delete(e.record.name),e.children.forEach(i),e.alias.forEach(i))}}function s(e){let t=0;for(;t=0&&(e.record.path!==n[t].record.path||!Xa(e,n[t]));)t++;n.splice(t,0,e),e.record.name&&!Wa(e)&&r.set(e.record.name,e)}return t=Ya({strict:!1,end:!0,sensitive:!1},t),e.forEach((e=>o(e))),{addRoute:o,resolve:function(e,t){let o,i,s,a={};if("name"in e&&e.name){if(o=r.get(e.name),!o)throw Pa(1,{location:e});s=o.record.name,a=$s(qa(t.params,o.keys.filter((e=>!e.optional)).concat(o.parent?o.parent.keys.filter((e=>e.optional)):[]).map((e=>e.name))),e.params&&qa(e.params,o.keys.map((e=>e.name)))),i=o.stringify(a)}else if(null!=e.path)i=e.path,o=n.find((e=>e.re.test(i))),o&&(a=o.parse(i),s=o.record.name);else{if(o=t.name?r.get(t.name):n.find((e=>e.re.test(t.path))),!o)throw Pa(1,{location:e,currentLocation:t});s=o.record.name,a=$s({},t.params,e.params),i=o.stringify(a)}const l=[];let c=o;for(;c;)l.unshift(c.record),c=c.parent;return{name:s,path:i,params:a,matched:l,meta:Ka(l)}},removeRoute:i,getRoutes:function(){return n},getRecordMatcher:function(e){return r.get(e)}}}function qa(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function Ua(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]="object"==typeof n?n[r]:n;return t}function Wa(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function Ka(e){return e.reduce(((e,t)=>$s(e,t.meta)),{})}function Ya(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}function Xa(e,t){return t.children.some((t=>t===e||Xa(e,t)))}function Ga(e){const t={};if(""===e||"?"===e)return t;const n=("?"===e[0]?e.slice(1):e).split("&");for(let r=0;re&&ra(e))):[r&&ra(r)]).forEach((e=>{void 0!==e&&(t+=(t.length?"&":"")+n,null!=e&&(t+="="+e))}))}return t}function Za(e){const t={};for(const n in e){const r=e[n];void 0!==r&&(t[n]=Vs(r)?r.map((e=>null==e?null:""+e)):null==r?r:""+r)}return t}const Qa=Symbol(""),el=Symbol(""),tl=Symbol(""),nl=Symbol(""),rl=Symbol("");function ol(){let e=[];return{add:function(t){return e.push(t),()=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)}},list:()=>e.slice(),reset:function(){e=[]}}}function il(e,t,n,r,o,i=(e=>e())){const s=r&&(r.enterCallbacks[o]=r.enterCallbacks[o]||[]);return()=>new Promise(((a,l)=>{const c=e=>{var i;!1===e?l(Pa(4,{from:n,to:t})):e instanceof Error?l(e):"string"==typeof(i=e)||i&&"object"==typeof i?l(Pa(2,{from:t,to:e})):(s&&r.enterCallbacks[o]===s&&"function"==typeof e&&s.push(e),a())},u=i((()=>e.call(r&&r.instances[o],t,n,c)));let d=Promise.resolve(u);e.length<3&&(d=d.then(c)),d.catch((e=>l(e)))}))}function sl(e,t,n,r,o=(e=>e())){const i=[];for(const a of e)for(const e in a.components){let l=a.components[e];if("beforeRouteEnter"===t||a.instances[e])if("object"==typeof(s=l)||"displayName"in s||"props"in s||"__vccOpts"in s){const s=(l.__vccOpts||l)[t];s&&i.push(il(s,n,r,a,e,o))}else{let s=l();i.push((()=>s.then((i=>{if(!i)return Promise.reject(new Error(`Couldn't resolve component "${e}" at "${a.path}"`));const s=(l=i).__esModule||"Module"===l[Symbol.toStringTag]?i.default:i;var l;a.components[e]=s;const c=(s.__vccOpts||s)[t];return c&&il(c,n,r,a,e,o)()}))))}}var s;return i}function al(e){const t=Do(tl),n=Do(nl),r=zi((()=>t.resolve(mn(e.to)))),o=zi((()=>{const{matched:e}=r.value,{length:t}=e,o=e[t-1],i=n.matched;if(!o||!i.length)return-1;const s=i.findIndex(ca.bind(null,o));if(s>-1)return s;const a=cl(e[t-2]);return t>1&&cl(o)===a&&i[i.length-1].path!==a?i.findIndex(ca.bind(null,e[t-2])):s})),i=zi((()=>o.value>-1&&function(e,t){for(const n in t){const r=t[n],o=e[n];if("string"==typeof r){if(r!==o)return!1}else if(!Vs(o)||o.length!==r.length||r.some(((e,t)=>e!==o[t])))return!1}return!0}(n.params,r.value.params))),s=zi((()=>o.value>-1&&o.value===n.matched.length-1&&ua(n.params,r.value.params)));return{route:r,href:zi((()=>r.value.href)),isActive:i,isExactActive:s,navigate:function(n={}){return function(e){if(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)return;if(e.defaultPrevented)return;if(void 0!==e.button&&0!==e.button)return;if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}e.preventDefault&&e.preventDefault();return!0}(n)?t[mn(e.replace)?"replace":"push"](mn(e.to)).catch(js):Promise.resolve()}}}const ll=Ar({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:al,setup(e,{slots:t}){const n=Xt(al(e)),{options:r}=Do(tl),o=zi((()=>({[ul(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[ul(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive})));return()=>{const r=t.default&&t.default(n);return e.custom?r:ji("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:o.value},r)}}});function cl(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const ul=(e,t,n)=>null!=e?e:null!=t?t:n;function dl(e,t){if(!e)return null;const n=e(t);return 1===n.length?n[0]:n}const hl=Ar({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=Do(rl),o=zi((()=>e.route||r.value)),i=Do(el,0),s=zi((()=>{let e=mn(i);const{matched:t}=o.value;let n;for(;(n=t[e])&&!n.components;)e++;return e})),a=zi((()=>o.value.matched[s.value]));Ao(el,zi((()=>s.value+1))),Ao(Qa,a),Ao(rl,o);const l=hn();return dr((()=>[l.value,a.value,e.name]),(([e,t,n],[r,o,i])=>{t&&(t.instances[n]=e,o&&o!==t&&e&&e===r&&(t.leaveGuards.size||(t.leaveGuards=o.leaveGuards),t.updateGuards.size||(t.updateGuards=o.updateGuards))),!e||!t||o&&ca(t,o)&&r||(t.enterCallbacks[n]||[]).forEach((t=>t(e)))}),{flush:"post"}),()=>{const r=o.value,i=e.name,s=a.value,c=s&&s.components[i];if(!c)return dl(n.default,{Component:c,route:r});const u=s.props[i],d=u?!0===u?r.params:"function"==typeof u?u(r):u:null,h=ji(c,$s({},d,t,{onVnodeUnmounted:e=>{e.component.isUnmounted&&(s.instances[i]=null)},ref:l}));return dl(n.default,{Component:h,route:r})||h}}});function fl(e){const t=Fa(e.routes,e),n=e.parseQuery||Ga,r=e.stringifyQuery||Ja,o=e.history,i=ol(),s=ol(),a=ol(),l=fn(Aa);let c=Aa;Ns&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const u=zs.bind(null,(e=>""+e)),d=zs.bind(null,oa),h=zs.bind(null,ia);function f(e,i){if(i=$s({},i||l.value),"string"==typeof e){const r=aa(n,e,i.path),s=t.resolve({path:r.path},i),a=o.createHref(r.fullPath);return $s(r,s,{params:h(s.params),hash:ia(r.hash),redirectedFrom:void 0,href:a})}let s;if(null!=e.path)s=$s({},e,{path:aa(n,e.path,i.path).path});else{const t=$s({},e.params);for(const e in t)null==t[e]&&delete t[e];s=$s({},e,{params:d(t)}),i.params=d(i.params)}const a=t.resolve(s,i),c=e.hash||"";a.params=u(h(a.params));const f=function(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}(r,$s({},e,{hash:(p=c,na(p).replace(Zs,"{").replace(ea,"}").replace(Gs,"^")),path:a.path}));var p;const g=o.createHref(f);return $s({fullPath:f,hash:c,query:r===Ja?Za(e.query):e.query||{}},a,{redirectedFrom:void 0,href:g})}function p(e){return"string"==typeof e?aa(n,e,l.value.path):$s({},e)}function g(e,t){if(c!==e)return Pa(8,{from:t,to:e})}function m(e){return y(e)}function v(e){const t=e.matched[e.matched.length-1];if(t&&t.redirect){const{redirect:n}=t;let r="function"==typeof n?n(e):n;return"string"==typeof r&&(r=r.includes("?")||r.includes("#")?r=p(r):{path:r},r.params={}),$s({query:e.query,hash:e.hash,params:null!=r.path?{}:e.params},r)}}function y(e,t){const n=c=f(e),o=l.value,i=e.state,s=e.force,a=!0===e.replace,u=v(n);if(u)return y($s(p(u),{state:"object"==typeof u?$s({},i,u.state):i,force:s,replace:a}),t||n);const d=n;let h;return d.redirectedFrom=t,!s&&function(e,t,n){const r=t.matched.length-1,o=n.matched.length-1;return r>-1&&r===o&&ca(t.matched[r],n.matched[o])&&ua(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}(r,o,n)&&(h=Pa(16,{to:d,from:o}),O(o,o,!0,!1)),(h?Promise.resolve(h):w(d,o)).catch((e=>Ba(e)?Ba(e,2)?e:D(e):A(e,d,o))).then((e=>{if(e){if(Ba(e,2))return y($s({replace:a},p(e.to),{state:"object"==typeof e.to?$s({},i,e.to.state):i,force:s}),t||d)}else e=x(d,o,!0,a,i);return S(d,o,e),e}))}function b(e,t){const n=g(e,t);return n?Promise.reject(n):Promise.resolve()}function _(e){const t=B.values().next().value;return t&&"function"==typeof t.runWithContext?t.runWithContext(e):e()}function w(e,t){let n;const[r,o,a]=function(e,t){const n=[],r=[],o=[],i=Math.max(t.matched.length,e.matched.length);for(let s=0;sca(e,i)))?r.push(i):n.push(i));const a=e.matched[s];a&&(t.matched.find((e=>ca(e,a)))||o.push(a))}return[n,r,o]}(e,t);n=sl(r.reverse(),"beforeRouteLeave",e,t);for(const i of r)i.leaveGuards.forEach((r=>{n.push(il(r,e,t))}));const l=b.bind(null,e,t);return n.push(l),L(n).then((()=>{n=[];for(const r of i.list())n.push(il(r,e,t));return n.push(l),L(n)})).then((()=>{n=sl(o,"beforeRouteUpdate",e,t);for(const r of o)r.updateGuards.forEach((r=>{n.push(il(r,e,t))}));return n.push(l),L(n)})).then((()=>{n=[];for(const r of a)if(r.beforeEnter)if(Vs(r.beforeEnter))for(const o of r.beforeEnter)n.push(il(o,e,t));else n.push(il(r.beforeEnter,e,t));return n.push(l),L(n)})).then((()=>(e.matched.forEach((e=>e.enterCallbacks={})),n=sl(a,"beforeRouteEnter",e,t,_),n.push(l),L(n)))).then((()=>{n=[];for(const r of s.list())n.push(il(r,e,t));return n.push(l),L(n)})).catch((e=>Ba(e,8)?e:Promise.reject(e)))}function S(e,t,n){a.list().forEach((r=>_((()=>r(e,t,n)))))}function x(e,t,n,r,i){const s=g(e,t);if(s)return s;const a=t===Aa,c=Ns?history.state:{};n&&(r||a?o.replace(e.fullPath,$s({scroll:a&&c&&c.scroll},i)):o.push(e.fullPath,i)),l.value=e,O(e,t,n,a),D()}let E;function T(){E||(E=o.listen(((e,t,n)=>{if(!R.listening)return;const r=f(e),i=v(r);if(i)return void y($s(i,{replace:!0}),r).catch(js);c=r;const s=l.value;var a,u;Ns&&(a=Sa(s.fullPath,n.delta),u=_a(),xa.set(a,u)),w(r,s).catch((e=>Ba(e,12)?e:Ba(e,2)?(y(e.to,r).then((e=>{Ba(e,20)&&!n.delta&&n.type===fa.pop&&o.go(-1,!1)})).catch(js),Promise.reject()):(n.delta&&o.go(-n.delta,!1),A(e,r,s)))).then((e=>{(e=e||x(r,s,!1))&&(n.delta&&!Ba(e,8)?o.go(-n.delta,!1):n.type===fa.pop&&Ba(e,20)&&o.go(-1,!1)),S(r,s,e)})).catch(js)})))}let C,M=ol(),k=ol();function A(e,t,n){D(e);const r=k.list();return r.length?r.forEach((r=>r(e,t,n))):console.error(e),Promise.reject(e)}function D(e){return C||(C=!e,T(),M.list().forEach((([t,n])=>e?n(e):t())),M.reset()),e}function O(t,n,r,o){const{scrollBehavior:i}=e;if(!Ns||!i)return Promise.resolve();const s=!r&&function(e){const t=xa.get(e);return xa.delete(e),t}(Sa(t.fullPath,0))||(o||!r)&&history.state&&history.state.scroll||null;return Ln().then((()=>i(t,n,s))).then((e=>e&&wa(e))).catch((e=>A(e,t,n)))}const I=e=>o.go(e);let P;const B=new Set,R={currentRoute:l,listening:!0,addRoute:function(e,n){let r,o;return ka(e)?(r=t.getRecordMatcher(e),o=n):o=e,t.addRoute(o,r)},removeRoute:function(e){const n=t.getRecordMatcher(e);n&&t.removeRoute(n)},hasRoute:function(e){return!!t.getRecordMatcher(e)},getRoutes:function(){return t.getRoutes().map((e=>e.record))},resolve:f,options:e,push:m,replace:function(e){return m($s(p(e),{replace:!0}))},go:I,back:()=>I(-1),forward:()=>I(1),beforeEach:i.add,beforeResolve:s.add,afterEach:a.add,onError:k.add,isReady:function(){return C&&l.value!==Aa?Promise.resolve():new Promise(((e,t)=>{M.add([e,t])}))},install(e){e.component("RouterLink",ll),e.component("RouterView",hl),e.config.globalProperties.$router=this,Object.defineProperty(e.config.globalProperties,"$route",{enumerable:!0,get:()=>mn(l)}),Ns&&!P&&l.value===Aa&&(P=!0,m(o.location).catch((e=>{})));const t={};for(const r in Aa)Object.defineProperty(t,r,{get:()=>l.value[r],enumerable:!0});e.provide(tl,this),e.provide(nl,Gt(t)),e.provide(rl,l);const n=e.unmount;B.add(e),e.unmount=function(){B.delete(e),B.size<1&&(c=Aa,E&&E(),E=null,l.value=Aa,P=!1,C=!1),n()}}};function L(e){return e.reduce(((e,t)=>e.then((()=>_(t)))),Promise.resolve())}return R}function pl(){return Do(nl)}const gl=["{","}"];const ml=/^(?:\d)+/,vl=/^(?:\w)+/;const yl=Object.prototype.hasOwnProperty,bl=(e,t)=>yl.call(e,t),_l=new class{constructor(){this._caches=Object.create(null)}interpolate(e,t,n=gl){if(!t)return[e];let r=this._caches[e];return r||(r=function(e,[t,n]){const r=[];let o=0,i="";for(;o-1?"zh-Hans":e.indexOf("-hant")>-1?"zh-Hant":(n=e,["-tw","-hk","-mo","-cht"].find((e=>-1!==n.indexOf(e)))?"zh-Hant":"zh-Hans");var n;let r=["en","fr","es"];t&&Object.keys(t).length>0&&(r=Object.keys(t));const o=function(e,t){return t.find((t=>0===e.indexOf(t)))}(e,r);return o||void 0}class Sl{constructor({locale:e,fallbackLocale:t,messages:n,watcher:r,formater:o}){this.locale="en",this.fallbackLocale="en",this.message={},this.messages={},this.watchers=[],t&&(this.fallbackLocale=t),this.formater=o||_l,this.messages=n||{},this.setLocale(e||"en"),r&&this.watchLocale(r)}setLocale(e){const t=this.locale;this.locale=wl(e,this.messages)||this.fallbackLocale,this.messages[this.locale]||(this.messages[this.locale]={}),this.message=this.messages[this.locale],t!==this.locale&&this.watchers.forEach((e=>{e(this.locale,t)}))}getLocale(){return this.locale}watchLocale(e){const t=this.watchers.push(e)-1;return()=>{this.watchers.splice(t,1)}}add(e,t,n=!0){const r=this.messages[e];r?n?Object.assign(r,t):Object.keys(t).forEach((e=>{bl(r,e)||(r[e]=t[e])})):this.messages[e]=t}f(e,t,n){return this.formater.interpolate(e,t,n).join("")}t(e,t,n){let r=this.message;return"string"==typeof t?(t=wl(t,this.messages))&&(r=this.messages[t]):n=t,bl(r,e)?this.formater.interpolate(r[e],n).join(""):(console.warn(`Cannot translate the value of keypath ${e}. Use the value of keypath as default.`),e)}}function xl(e,t={},n,r){if("string"!=typeof e){const n=[t,e];e=n[0],t=n[1]}"string"!=typeof e&&(e="undefined"!=typeof uni&&Yd?Yd():"undefined"!=typeof global&&global.getLocale?global.getLocale():"en"),"string"!=typeof n&&(n="undefined"!=typeof __uniConfig&&__uniConfig.fallbackLocale||"en");const o=new Sl({locale:e,fallbackLocale:n,messages:t,watcher:r});let i=(e,t)=>{{let e=!1;i=function(t,n){const r=Yg().$vm;return r&&(r.$locale,e||(e=!0,function(e,t){e.$watchLocale?e.$watchLocale((e=>{t.setLocale(e)})):e.$watch((()=>e.$locale),(e=>{t.setLocale(e)}))}(r,o))),o.t(t,n)}}return i(e,t)};return{i18n:o,f:(e,t,n)=>o.f(e,t,n),t:(e,t)=>i(e,t),add:(e,t,n=!0)=>o.add(e,t,n),watch:e=>o.watchLocale(e),getLocale:()=>o.getLocale(),setLocale:e=>o.setLocale(e)}}function El(e,t){return e.indexOf(t[0])>-1}const Tl=ae((()=>"undefined"!=typeof __uniConfig&&__uniConfig.locales&&!!Object.keys(__uniConfig.locales).length));let Cl;function Ml(e){return El(e,ne)?Dl().f(e,function(){const e=Yd(),t=__uniConfig.locales;return t[e]||t[__uniConfig.fallbackLocale]||t.en||{}}(),ne):e}function kl(e,t){if(1===t.length){if(e){const n=e=>b(e)&&El(e,ne),r=t[0];let o=[];if(g(e)&&(o=e.filter((e=>n(e[r])))).length)return o;const i=e[t[0]];if(n(i))return e}return}const n=t.shift();return kl(e&&e[n],t)}function Al(e,t){const n=kl(e,t);if(!n)return!1;const r=t[t.length-1];if(g(n))n.forEach((e=>Al(e,[r])));else{let e=n[r];Object.defineProperty(n,r,{get:()=>Ml(e),set(t){e=t}})}return!0}function Dl(){if(!Cl){let e;if(e=navigator.cookieEnabled&&window.localStorage&&localStorage.UNI_LOCALE||__uniConfig.locale||navigator.language,Cl=xl(e),Tl()){const t=Object.keys(__uniConfig.locales||{});t.length&&t.forEach((e=>Cl.add(e,__uniConfig.locales[e]))),Cl.setLocale(e)}}return Cl}function Ol(e,t,n){return t.reduce(((t,r,o)=>(t[e+r]=n[o],t)),{})}const Il=ae((()=>{const e="uni.async.",t=["error"];Dl().add("en",Ol(e,t,["The connection timed out, click the screen to try again."]),!1),Dl().add("es",Ol(e,t,["Se agotó el tiempo de conexión, haga clic en la pantalla para volver a intentarlo."]),!1),Dl().add("fr",Ol(e,t,["La connexion a expiré, cliquez sur l'écran pour réessayer."]),!1),Dl().add("zh-Hans",Ol(e,t,["连接服务器超时,点击屏幕重试"]),!1),Dl().add("zh-Hant",Ol(e,t,["連接服務器超時,點擊屏幕重試"]),!1)})),Pl=ae((()=>{const e="uni.showToast.",t=["unpaired"];Dl().add("en",Ol(e,t,["Please note showToast must be paired with hideToast"]),!1),Dl().add("es",Ol(e,t,["Tenga en cuenta que showToast debe estar emparejado con hideToast"]),!1),Dl().add("fr",Ol(e,t,["Veuillez noter que showToast doit être associé à hideToast"]),!1),Dl().add("zh-Hans",Ol(e,t,["请注意 showToast 与 hideToast 必须配对使用"]),!1),Dl().add("zh-Hant",Ol(e,t,["請注意 showToast 與 hideToast 必須配對使用"]),!1)})),Bl=ae((()=>{const e="uni.showLoading.",t=["unpaired"];Dl().add("en",Ol(e,t,["Please note showLoading must be paired with hideLoading"]),!1),Dl().add("es",Ol(e,t,["Tenga en cuenta que showLoading debe estar emparejado con hideLoading"]),!1),Dl().add("fr",Ol(e,t,["Veuillez noter que showLoading doit être associé à hideLoading"]),!1),Dl().add("zh-Hans",Ol(e,t,["请注意 showLoading 与 hideLoading 必须配对使用"]),!1),Dl().add("zh-Hant",Ol(e,t,["請注意 showLoading 與 hideLoading 必須配對使用"]),!1)})),Rl=ae((()=>{const e="uni.showModal.",t=["cancel","confirm"];Dl().add("en",Ol(e,t,["Cancel","OK"]),!1),Dl().add("es",Ol(e,t,["Cancelar","OK"]),!1),Dl().add("fr",Ol(e,t,["Annuler","OK"]),!1),Dl().add("zh-Hans",Ol(e,t,["取消","确定"]),!1),Dl().add("zh-Hant",Ol(e,t,["取消","確定"]),!1)})),Ll=ae((()=>{const e="uni.chooseFile.",t=["notUserActivation"];Dl().add("en",Ol(e,t,["File chooser dialog can only be shown with a user activation"]),!1),Dl().add("es",Ol(e,t,["El cuadro de diálogo del selector de archivos solo se puede mostrar con la activación del usuario"]),!1),Dl().add("fr",Ol(e,t,["La boîte de dialogue du sélecteur de fichier ne peut être affichée qu'avec une activation par l'utilisateur"]),!1),Dl().add("zh-Hans",Ol(e,t,["文件选择器对话框只能在由用户激活时显示"]),!1),Dl().add("zh-Hant",Ol(e,t,["文件選擇器對話框只能在由用戶激活時顯示"]),!1)})),Nl=ae((()=>{const e="uni.setClipboardData.",t=["success","fail"];Dl().add("en",Ol(e,t,["Content copied","Copy failed, please copy manually"]),!1),Dl().add("es",Ol(e,t,["Contenido copiado","Error al copiar, copie manualmente"]),!1),Dl().add("fr",Ol(e,t,["Contenu copié","Échec de la copie, copiez manuellement"]),!1),Dl().add("zh-Hans",Ol(e,t,["内容已复制","复制失败,请手动复制"]),!1),Dl().add("zh-Hant",Ol(e,t,["內容已復制","復制失敗,請手動復製"]),!1)})),$l=ae((()=>{const e="uni.picker.",t=["done","cancel"];Dl().add("en",Ol(e,t,["Done","Cancel"]),!1),Dl().add("es",Ol(e,t,["OK","Cancelar"]),!1),Dl().add("fr",Ol(e,t,["OK","Annuler"]),!1),Dl().add("zh-Hans",Ol(e,t,["完成","取消"]),!1),Dl().add("zh-Hant",Ol(e,t,["完成","取消"]),!1)}));function zl(e){const t=new Le;return{on:(e,n)=>t.on(e,n),once:(e,n)=>t.once(e,n),off:(e,n)=>t.off(e,n),emit:(e,...n)=>t.emit(e,...n),subscribe(n,r,o=!1){t[o?"once":"on"](`${e}.${n}`,r)},unsubscribe(n,r){t.off(`${e}.${n}`,r)},subscribeHandler(n,r,o){t.emit(`${e}.${n}`,r,o)}}}let jl=1;const Vl=Object.create(null);function Hl(e,t){return e+"."+t}function Fl(e,t,n){t=Hl(e,t),Vl[t]||(Vl[t]=n)}function ql({id:e,name:t,args:n},r){t=Hl(r,t);const o=t=>{e&&Cy.publishHandler("invokeViewApi."+e,t)},i=Vl[t];i?i(n,o):o({})}const Ul=d(zl("service"),{invokeServiceMethod:(e,t,n)=>{const{subscribe:r,publishHandler:o}=Cy,i=n?jl++:0;n&&r("invokeServiceApi."+i,n,!0),o("invokeServiceApi",{id:i,name:e,args:t})}}),Wl=xe(!0);let Kl;function Yl(){Kl&&(clearTimeout(Kl),Kl=null)}let Xl=0,Gl=0;function Jl(e){if(Yl(),1!==e.touches.length)return;const{pageX:t,pageY:n}=e.touches[0];Xl=t,Gl=n,Kl=setTimeout((function(){const t=new CustomEvent("longpress",{bubbles:!0,cancelable:!0,target:e.target,currentTarget:e.currentTarget});t.touches=e.touches,t.changedTouches=e.changedTouches,e.target.dispatchEvent(t)}),350)}function Zl(e){if(!Kl)return;if(1!==e.touches.length)return Yl();const{pageX:t,pageY:n}=e.touches[0];return Math.abs(t-Xl)>10||Math.abs(n-Gl)>10?Yl():void 0}function Ql(e,t){const n=Number(e);return isNaN(n)?t:n}function ec(){const e=__uniConfig.globalStyle||{},t=Ql(e.rpxCalcMaxDeviceWidth,960),n=Ql(e.rpxCalcBaseDeviceWidth,375);function r(){let e=function(){const e=/^Apple/.test(navigator.vendor)&&"number"==typeof window.orientation,t=e&&90===Math.abs(window.orientation);var n=e?Math[t?"max":"min"](screen.width,screen.height):screen.width;return Math.min(window.innerWidth,document.documentElement.clientWidth,n)||n}();e=e<=t?e:n,document.documentElement.style.fontSize=e/23.4375+"px"}r(),document.addEventListener("DOMContentLoaded",r),window.addEventListener("load",r),window.addEventListener("resize",r)}function tc(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var nc,rc,oc=["top","left","right","bottom"],ic={};function sc(){return rc="CSS"in window&&"function"==typeof CSS.supports?CSS.supports("top: env(safe-area-inset-top)")?"env":CSS.supports("top: constant(safe-area-inset-top)")?"constant":"":""}function ac(){if(rc="string"==typeof rc?rc:sc()){var e=[],t=!1;try{var n=Object.defineProperty({},"passive",{get:function(){t={passive:!0}}});window.addEventListener("test",null,n)}catch(C_){}var r=document.createElement("div");o(r,{position:"absolute",left:"0",top:"0",width:"0",height:"0",zIndex:"-1",overflow:"hidden",visibility:"hidden"}),oc.forEach((function(e){s(r,e)})),document.body.appendChild(r),i(),nc=!0}else oc.forEach((function(e){ic[e]=0}));function o(e,t){var n=e.style;Object.keys(t).forEach((function(e){var r=t[e];n[e]=r}))}function i(t){t?e.push(t):e.forEach((function(e){e()}))}function s(e,n){var r=document.createElement("div"),s=document.createElement("div"),a=document.createElement("div"),l=document.createElement("div"),c={position:"absolute",width:"100px",height:"200px",boxSizing:"border-box",overflow:"hidden",paddingBottom:rc+"(safe-area-inset-"+n+")"};o(r,c),o(s,c),o(a,{transition:"0s",animation:"none",width:"400px",height:"400px"}),o(l,{transition:"0s",animation:"none",width:"250%",height:"250%"}),r.appendChild(a),s.appendChild(l),e.appendChild(r),e.appendChild(s),i((function(){r.scrollTop=s.scrollTop=1e4;var e=r.scrollTop,o=s.scrollTop;function i(){this.scrollTop!==(this===r?e:o)&&(r.scrollTop=s.scrollTop=1e4,e=r.scrollTop,o=s.scrollTop,function(e){cc.length||setTimeout((function(){var e={};cc.forEach((function(t){e[t]=ic[t]})),cc.length=0,uc.forEach((function(t){t(e)}))}),0);cc.push(e)}(n))}r.addEventListener("scroll",i,t),s.addEventListener("scroll",i,t)}));var u=getComputedStyle(r);Object.defineProperty(ic,n,{configurable:!0,get:function(){return parseFloat(u.paddingBottom)}})}}function lc(e){return nc||ac(),ic[e]}var cc=[];var uc=[];const dc=tc({get support(){return 0!=("string"==typeof rc?rc:sc()).length},get top(){return lc("top")},get left(){return lc("left")},get right(){return lc("right")},get bottom(){return lc("bottom")},onChange:function(e){sc()&&(nc||ac(),"function"==typeof e&&uc.push(e))},offChange:function(e){var t=uc.indexOf(e);t>=0&&uc.splice(t,1)}}),hc=Ps((()=>{}),["prevent"]),fc=Ps((e=>{}),["stop"]);function pc(e,t){return parseInt((e.getPropertyValue(t).match(/\d+/)||["0"])[0])}function gc(){const e=pc(document.documentElement.style,"--window-top");return e?e+dc.top:0}function mc(){const e=document.documentElement.style,t=gc(),n=pc(e,"--window-bottom"),r=pc(e,"--window-left"),o=pc(e,"--window-right"),i=pc(e,"--top-window-height");return{top:t,bottom:n?n+dc.bottom:0,left:r?r+dc.left:0,right:o?o+dc.right:0,topWindowHeight:i||0}}function vc(e){const t=document.documentElement.style;Object.keys(e).forEach((n=>{t.setProperty(n,e[n])}))}function yc(e){return vc(e)}function bc(e){return Symbol(e)}function _c(e){return-1!==(e+="").indexOf("rpx")||-1!==e.indexOf("upx")}function wc(e,t=!1){if(t)return function(e){if(!_c(e))return e;return e.replace(/(\d+(\.\d+)?)[ru]px/g,((e,t)=>Md(parseFloat(t))+"px"))}(e);if(b(e)){const t=parseInt(e)||0;return _c(e)?Md(t):t}return e}function Sc(e){return e.$page}function xc(e){return 0===e.tagName.indexOf("UNI-")}const Ec="M1.952 18.080q-0.32-0.352-0.416-0.88t0.128-0.976l0.16-0.352q0.224-0.416 0.64-0.528t0.8 0.176l6.496 4.704q0.384 0.288 0.912 0.272t0.88-0.336l17.312-14.272q0.352-0.288 0.848-0.256t0.848 0.352l-0.416-0.416q0.32 0.352 0.32 0.816t-0.32 0.816l-18.656 18.912q-0.32 0.352-0.8 0.352t-0.8-0.32l-7.936-8.064z",Tc="M15.808 0.16q-4.224 0-7.872 2.176-3.552 2.112-5.632 5.728-2.144 3.744-2.144 8.128 0 4.192 2.144 7.872 2.112 3.52 5.632 5.632 3.68 2.144 7.872 2.144 4.384 0 8.128-2.144 3.616-2.080 5.728-5.632 2.176-3.648 2.176-7.872 0-4.384-2.176-8.128-2.112-3.616-5.728-5.728-3.744-2.176-8.128-2.176zM15.136 8.672h1.728q0.128 0 0.224 0.096t0.096 0.256l-0.384 10.24q0 0.064-0.048 0.112t-0.112 0.048h-1.248q-0.096 0-0.144-0.048t-0.048-0.112l-0.384-10.24q0-0.16 0.096-0.256t0.224-0.096zM16 23.328q-0.48 0-0.832-0.352t-0.352-0.848 0.352-0.848 0.832-0.352 0.832 0.352 0.352 0.848-0.352 0.848-0.832 0.352z",Cc="M21.781 7.844l-9.063 8.594 9.063 8.594q0.25 0.25 0.25 0.609t-0.25 0.578q-0.25 0.25-0.578 0.25t-0.578-0.25l-9.625-9.125q-0.156-0.125-0.203-0.297t-0.047-0.359q0-0.156 0.047-0.328t0.203-0.297l9.625-9.125q0.25-0.25 0.578-0.25t0.578 0.25q0.25 0.219 0.25 0.578t-0.25 0.578z";function Mc(e,t="#000",n=27){return gi("svg",{width:n,height:n,viewBox:"0 0 32 32"},[gi("path",{d:e,fill:t},null,8,["d","fill"])],8,["width","height"])}function kc(){{const{$pageInstance:e}=ki();return e&&Rc(e.proxy)}}function Ac(){const e=rf(),t=e.length;if(t)return e[t-1]}function Dc(){var e;const t=null==(e=Ac())?void 0:e.$page;if(t)return t.meta}function Oc(){const e=Dc();return e?e.id:-1}function Ic(){const e=Ac();if(e)return e.$vm}const Pc=["navigationBar","pullToRefresh"];function Bc(e,t){const n=JSON.parse(JSON.stringify(__uniConfig.globalStyle||{})),r=d({id:t},n,e);Pc.forEach((t=>{r[t]=d({},n[t],e[t])}));const{navigationBar:o}=r;return o.titleText&&o.titleImage&&(o.titleText=""),r}function Rc(e){var t,n;return(null==(t=e.$page)?void 0:t.id)||(null==(n=e.$basePage)?void 0:n.id)}function Lc(e,t,n){if(b(e))n=t,t=e,e=Ic();else if("number"==typeof e){const t=rf().find((t=>Sc(t).id===e));e=t?t.$vm:Ic()}if(!e)return;const r=e.$[t];return r&&((e,t)=>{let n;for(let r=0;r{function s(){if((()=>{const{scrollHeight:e}=document.documentElement,t=window.innerHeight,r=window.scrollY,i=r>0&&e>t&&r+t+n>=e,s=Math.abs(e-zc)>n;return!i||o&&!s?(!i&&o&&(o=!1),!1):(zc=e,o=!0,!0)})())return t&&t(),i=!1,setTimeout((function(){i=!0}),350),!0}e&&e(window.pageYOffset),t&&i&&(s()||($c=setTimeout(s,300))),r=!1};return function(){clearTimeout($c),r||requestAnimationFrame(s),r=!0}}function Vc(e,t){if(0===t.indexOf("/"))return t;if(0===t.indexOf("./"))return Vc(e,t.slice(2));const n=t.split("/"),r=n.length;let o=0;for(;o0?e.split("/"):[];return i.splice(i.length-o-1,o+1),se(i.concat(n).join("/"))}function Hc(e,t=!1){return t?__uniRoutes.find((t=>t.path===e||t.alias===e)):__uniRoutes.find((t=>t.path===e))}function Fc(){ec(),_e(xc),window.addEventListener("touchstart",Jl,Wl),window.addEventListener("touchmove",Zl,Wl),window.addEventListener("touchend",Yl,Wl),window.addEventListener("touchcancel",Yl,Wl)}class qc{constructor(e){this.$bindClass=!1,this.$bindStyle=!1,this.$vm=e,this.$el=function(e,t=!1){const{vnode:n}=e;if(ge(n.el))return t?n.el?[n.el]:[]:n.el;const{subTree:r}=e;if(16&r.shapeFlag){const e=r.children.filter((e=>e.el&&ge(e.el)));if(e.length>0)return t?e.map((e=>e.el)):e[0].el}return t?n.el?[n.el]:[]:n.el}(e.$),this.$el.getAttribute&&(this.$bindClass=!!this.$el.getAttribute("class"),this.$bindStyle=!!this.$el.getAttribute("style"))}selectComponent(e){if(!this.$el||!e)return;const t=Yc(this.$el.querySelector(e));return t?Uc(t,!1):void 0}selectAllComponents(e){if(!this.$el||!e)return[];const t=[],n=this.$el.querySelectorAll(e);for(let r=0;r-1&&t.splice(n,1)}const n=this.$el.__wxsRemoveClass||(this.$el.__wxsRemoveClass=[]);return-1===n.indexOf(e)&&(n.push(e),this.forceUpdate("class")),this}hasClass(e){return this.$el&&this.$el.classList.contains(e)}getDataset(){return this.$el&&this.$el.dataset}callMethod(e,t={}){const n=this.$vm[e];y(n)?n(JSON.parse(JSON.stringify(t))):this.$vm.ownerId&&Cy.publishHandler("onWxsInvokeCallMethod",{nodeId:this.$el.__id,ownerId:this.$vm.ownerId,method:e,args:t})}requestAnimationFrame(e){return window.requestAnimationFrame(e)}getState(){return this.$el&&(this.$el.__wxsState||(this.$el.__wxsState={}))}triggerEvent(e,t={}){return this.$vm.$emit(e,t),this}getComputedStyle(e){if(this.$el){const t=window.getComputedStyle(this.$el);return e&&e.length?e.reduce(((e,n)=>(e[n]=t[n],e)),{}):t}return{}}setTimeout(e,t){return window.setTimeout(e,t)}clearTimeout(e){return window.clearTimeout(e)}getBoundingClientRect(){return this.$el.getBoundingClientRect()}}function Uc(e,t=!0){if(t&&e&&(e=pe(e.$)),e&&e.$el)return e.$el.__wxsComponentDescriptor||(e.$el.__wxsComponentDescriptor=new qc(e)),e.$el.__wxsComponentDescriptor}function Wc(e,t){return Uc(e,t)}function Kc(e,t,n,r=!0){if(t){e.__instance||(e.__instance=!0,Object.defineProperty(e,"instance",{get:()=>Wc(n.proxy,!1)}));const o=function(e,t,n=!0){if(!t)return!1;if(n&&e.length<2)return!1;const r=pe(t);if(!r)return!1;const o=r.$.type;return!(!o.$wxs&&!o.$renderjs)&&r}(t,n,r);if(o)return[e,Wc(o,!1)]}}function Yc(e){if(e)return e.__vueParentComponent&&e.__vueParentComponent.proxy}function Xc(e,t=!1){const{type:n,timeStamp:r,target:o,currentTarget:i}=e;let s,a;s=Ee(t?o:function(e){for(;!xc(e);)e=e.parentElement;return e}(o)),a=Ee(i);const l={type:n,timeStamp:r,target:s,detail:{},currentTarget:a};return e._stopped&&(l._stopped=!0),e.type.startsWith("touch")&&(l.touches=e.touches,l.changedTouches=e.changedTouches),function(e,t){d(e,{preventDefault:()=>t.preventDefault(),stopPropagation:()=>t.stopPropagation()})}(l,e),l}function Gc(e,t){return{force:1,identifier:0,clientX:e.clientX,clientY:e.clientY-t,pageX:e.pageX,pageY:e.pageY-t}}function Jc(e,t){const n=[];for(let r=0;r0===e.type.indexOf("mouse")||["contextmenu"].includes(e.type))(e))!function(e,t){const n=gc();e.pageX=t.pageX,e.pageY=t.pageY-n,e.clientX=t.clientX,e.clientY=t.clientY-n,e.touches=e.changedTouches=[Gc(t,n)]}(i,e);else if((e=>"undefined"!=typeof TouchEvent&&e instanceof TouchEvent||0===e.type.indexOf("touch")||["longpress"].indexOf(e.type)>=0)(e)){const t=gc();i.touches=Jc(e.touches,t),i.changedTouches=Jc(e.changedTouches,t)}else if((e=>!e.type.indexOf("key")&&e instanceof KeyboardEvent)(e)){["key","code"].forEach((t=>{Object.defineProperty(i,t,{get:()=>e[t]})}))}return Kc(i,t,n)||[i]},createNativeEvent:Xc},Symbol.toStringTag,{value:"Module"});function Qc(e){!function(e){const t=e.globalProperties;d(t,Zc),t.$gcd=Wc}(e._context.config)}let eu=1;function tu(e){return(e||Oc())+".invokeViewApi"}const nu=d(zl("view"),{invokeOnCallback:(e,t)=>My.emit("api."+e,t),invokeViewMethod:(e,t,n,r)=>{const{subscribe:o,publishHandler:i}=My,s=r?eu++:0;r&&o("invokeViewApi."+s,r,!0),i(tu(n),{id:s,name:e,args:t},n)},invokeViewMethodKeepAlive:(e,t,n,r)=>{const{subscribe:o,unsubscribe:i,publishHandler:s}=My,a=eu++,l="invokeViewApi."+a;return o(l,n),s(tu(r),{id:a,name:e,args:t},r),()=>{i(l)}}});function ru(e){Lc(Ac(),"onResize",e),My.invokeOnCallback("onWindowResize",e)}function ou(e){const t=Ac();Lc(Yg(),"onShow",e),Lc(t,"onShow")}function iu(){Lc(Yg(),"onHide"),Lc(Ac(),"onHide")}const su=["onPageScroll","onReachBottom"];function au(){su.forEach((e=>My.subscribe(e,function(e){return(t,n)=>{Lc(parseInt(n),e,t)}}(e))))}function lu(){!function(){const{on:e}=My;e("onResize",ru),e("onAppEnterForeground",ou),e("onAppEnterBackground",iu)}(),au()}function cu(){if(this.$route){const e=this.$route.meta;return e.eventChannel||(e.eventChannel=new De(this.$page.id)),e.eventChannel}}function uu(e){e._context.config.globalProperties.getOpenerEventChannel=cu}function du(){return{path:"",query:{},scene:1001,referrerInfo:{appId:"",extraData:{}}}}function hu(e){return/^-?\d+[ur]px$/i.test(e)?e.replace(/(^-?\d+)[ur]px$/i,((e,t)=>`${Md(parseFloat(t))}px`)):/^-?[\d\.]+$/.test(e)?`${e}px`:e||""}function fu(e){const t=e.animation;if(!t||!t.actions||!t.actions.length)return;let n=0;const r=t.actions,o=t.actions.length;function i(){const t=r[n],s=t.option.transition,a=function(e){const t=["matrix","matrix3d","scale","scale3d","rotate3d","skew","translate","translate3d"],n=["scaleX","scaleY","scaleZ","rotate","rotateX","rotateY","rotateZ","skewX","skewY","translateX","translateY","translateZ"],r=["opacity","background-color"],o=["width","height","left","right","top","bottom"],i=e.animates,s=e.option,a=s.transition,l={},c=[];return i.forEach((e=>{let i=e.type,s=[...e.args];if(t.concat(n).includes(i))i.startsWith("rotate")||i.startsWith("skew")?s=s.map((e=>parseFloat(e)+"deg")):i.startsWith("translate")&&(s=s.map(hu)),n.indexOf(i)>=0&&(s.length=1),c.push(`${i}(${s.join(",")})`);else if(r.concat(o).includes(s[0])){i=s[0];const e=s[1];l[i]=o.includes(i)?hu(e):e}})),l.transform=l.webkitTransform=c.join(" "),l.transition=l.webkitTransition=Object.keys(l).map((e=>`${function(e){return e.replace(/[A-Z]/g,(e=>`-${e.toLowerCase()}`)).replace("webkit","-webkit")}(e)} ${a.duration}ms ${a.timingFunction} ${a.delay}ms`)).join(","),l.transformOrigin=l.webkitTransformOrigin=s.transformOrigin,l}(t);Object.keys(a).forEach((t=>{e.$el.style[t]=a[t]})),n+=1,n{i()}),0)}const pu={props:["animation"],watch:{animation:{deep:!0,handler(){fu(this)}}},mounted(){fu(this)}},gu=e=>{e.__reserved=!0;const{props:t,mixins:n}=e;return t&&t.animation||(n||(e.mixins=[])).push(pu),mu(e)},mu=e=>(e.__reserved=!0,e.compatConfig={MODE:3},Ar(e));function vu(e){return e.__wwe=!0,e}function yu(e,t){return(n,r,o)=>{e.value&&t(n,function(e,t,n,r){let o;return o=Ee(n),{type:r.type||e,timeStamp:t.timeStamp||0,target:o,currentTarget:o,detail:r}}(n,r,e.value,o||{}))}}const bu={hoverClass:{type:String,default:"none"},hoverStopPropagation:{type:Boolean,default:!1},hoverStartTime:{type:[Number,String],default:50},hoverStayTime:{type:[Number,String],default:400}};function _u(e){const t=hn(!1);let n,r,o=!1;function i(){requestAnimationFrame((()=>{clearTimeout(r),r=setTimeout((()=>{t.value=!1}),parseInt(e.hoverStayTime))}))}function s(r){r._hoverPropagationStopped||e.hoverClass&&"none"!==e.hoverClass&&!e.disabled&&(e.hoverStopPropagation&&(r._hoverPropagationStopped=!0),o=!0,n=setTimeout((()=>{t.value=!0,o||i()}),parseInt(e.hoverStartTime)))}function a(){o=!1,t.value&&i()}function l(){a(),window.removeEventListener("mouseup",l)}return{hovering:t,binding:{onTouchstartPassive:vu((function(e){e.touches.length>1||s(e)})),onMousedown:vu((function(e){o||(s(e),window.addEventListener("mouseup",l))})),onTouchend:vu((function(){a()})),onMouseup:vu((function(){o&&l()})),onTouchcancel:vu((function(){o=!1,t.value=!1,clearTimeout(n)}))}}}function wu(e,t){return b(t)&&(t=[t]),t.reduce(((t,n)=>(e[n]&&(t[n]=!0),t)),Object.create(null))}const Su=bc("uf"),xu={for:{type:String,default:""}},Eu=bc("ul");const Tu=gu({name:"Label",props:xu,setup(e,{slots:t}){const n=hn(null),r=kc(),o=function(){const e=[];return Ao(Eu,{addHandler(t){e.push(t)},removeHandler(t){e.splice(e.indexOf(t),1)}}),e}(),i=zi((()=>e.for||t.default&&t.default.length)),s=vu((t=>{const n=t.target;let i=/^uni-(checkbox|radio|switch)-/.test(n.className);i||(i=/^uni-(checkbox|radio|switch|button)$|^(svg|path)$/i.test(n.tagName)),i||(e.for?Cy.emit("uni-label-click-"+r+"-"+e.for,t,!0):o.length&&o[0](t,!0))}));return()=>gi("uni-label",{ref:n,class:{"uni-label-pointer":i},onClick:s},[t.default&&t.default()],10,["onClick"])}});function Cu(e,t){Mu(e.id,t),dr((()=>e.id),((e,n)=>{ku(n,t,!0),Mu(e,t,!0)})),Qr((()=>{ku(e.id,t)}))}function Mu(e,t,n){const r=kc();n&&!e||T(t)&&Object.keys(t).forEach((o=>{n?0!==o.indexOf("@")&&0!==o.indexOf("uni-")&&Cy.on(`uni-${o}-${r}-${e}`,t[o]):0===o.indexOf("uni-")?Cy.on(o,t[o]):e&&Cy.on(`uni-${o}-${r}-${e}`,t[o])}))}function ku(e,t,n){const r=kc();n&&!e||T(t)&&Object.keys(t).forEach((o=>{n?0!==o.indexOf("@")&&0!==o.indexOf("uni-")&&Cy.off(`uni-${o}-${r}-${e}`,t[o]):0===o.indexOf("uni-")?Cy.off(o,t[o]):e&&Cy.off(`uni-${o}-${r}-${e}`,t[o])}))}const Au=gu({name:"Button",props:{id:{type:String,default:""},hoverClass:{type:String,default:"button-hover"},hoverStartTime:{type:[Number,String],default:20},hoverStayTime:{type:[Number,String],default:70},hoverStopPropagation:{type:Boolean,default:!1},disabled:{type:[Boolean,String],default:!1},formType:{type:String,default:""},openType:{type:String,default:""},loading:{type:[Boolean,String],default:!1},plain:{type:[Boolean,String],default:!1}},setup(e,{slots:t}){const n=hn(null),r=Do(Su,!1),{hovering:o,binding:i}=_u(e),s=vu(((t,o)=>{if(e.disabled)return t.stopImmediatePropagation();o&&n.value.click();const i=e.formType;if(i){if(!r)return;"submit"===i?r.submit(t):"reset"===i&&r.reset(t)}else;})),a=Do(Eu,!1);return a&&(a.addHandler(s),Zr((()=>{a.removeHandler(s)}))),Cu(e,{"label-click":s}),()=>{const r=e.hoverClass,a=wu(e,"disabled"),l=wu(e,"loading"),c=wu(e,"plain"),u=r&&"none"!==r;return gi("uni-button",xi({ref:n,onClick:s,id:e.id,class:u&&o.value?r:""},u&&i,a,l,c),[t.default&&t.default()],16,["onClick","id"])}}}),Du=bc("upm");function Ou(){return Do(Du)}function Iu(e){const t=function(e){return Xt(function(e){{const{navigationBar:t}=e,{titleSize:n,titleColor:r,backgroundColor:o}=t;t.titleText=t.titleText||"",t.type=t.type||"default",t.titleSize=n||"16px",t.titleColor=r||"#000000",t.backgroundColor=o||"#F8F8F8"}if(history.state){const t=history.state.__type__;"redirectTo"!==t&&"reLaunch"!==t||0!==rf().length||(e.isEntry=!0,e.isQuit=!0)}return e}(JSON.parse(JSON.stringify(Bc(pl().meta,e)))))}(e);return Ao(Du,t),t}function Pu(){return pl()}function Bu(){return history.state&&history.state.__id__||1}const Ru=["original","compressed"],Lu=["album","camera"],Nu=["GET","OPTIONS","HEAD","POST","PUT","DELETE","TRACE","CONNECT","PATCH"];function $u(e,t){return e&&-1!==t.indexOf(e)?e:t[0]}function zu(e,t){return!g(e)||0===e.length||e.find((e=>-1===t.indexOf(e)))?t:e}function ju(e){return function(){try{return e.apply(e,arguments)}catch(C_){console.error(C_)}}}let Vu=1;const Hu={};function Fu(e,t,n,r=!1){return Hu[e]={name:t,keepAlive:r,callback:n},e}function qu(e,t,n){if("number"==typeof e){const r=Hu[e];if(r)return r.keepAlive||delete Hu[e],r.callback(t,n)}return t}function Uu(e){for(const t in Hu)if(Hu[t].name===e)return!0;return!1}const Wu="success",Ku="fail",Yu="complete";function Xu(e,t={},{beforeAll:n,beforeSuccess:r}={}){T(t)||(t={});const{success:o,fail:i,complete:s}=function(e){const t={};for(const n in e){const r=e[n];y(r)&&(t[n]=ju(r),delete e[n])}return t}(t),a=y(o),l=y(i),c=y(s),u=Vu++;return Fu(u,e,(u=>{(u=u||{}).errMsg=function(e,t){return e&&-1!==e.indexOf(":fail")?t+e.substring(e.indexOf(":fail")):t+":ok"}(u.errMsg,e),y(n)&&n(u),u.errMsg===e+":ok"?(y(r)&&r(u,t),a&&o(u)):l&&i(u),c&&s(u)})),u}const Gu="success",Ju="fail",Zu="complete",Qu={},ed={};function td(e,t){return function(n){return e(n,t)||n}}function nd(e,t,n){let r=!1;for(let o=0;oe(t),catch(){}}}function rd(e,t={}){return[Gu,Ju,Zu].forEach((n=>{const r=e[n];if(!g(r))return;const o=t[n];t[n]=function(e){nd(r,e,t).then((e=>y(o)&&o(e)||e))}})),t}function od(e,t){const n=[];g(Qu.returnValue)&&n.push(...Qu.returnValue);const r=ed[e];return r&&g(r.returnValue)&&n.push(...r.returnValue),n.forEach((e=>{t=e(t)||t})),t}function id(e){const t=Object.create(null);Object.keys(Qu).forEach((e=>{"returnValue"!==e&&(t[e]=Qu[e].slice())}));const n=ed[e];return n&&Object.keys(n).forEach((e=>{"returnValue"!==e&&(t[e]=(t[e]||[]).concat(n[e]))})),t}function sd(e,t,n,r){const o=id(e);if(o&&Object.keys(o).length){if(g(o.invoke)){return nd(o.invoke,n).then((n=>t(rd(id(e),n),...r)))}return t(rd(o,n),...r)}return t(n,...r)}function ad(e,t){return(n={},...r)=>function(e){return!(!T(e)||![Wu,Ku,Yu].find((t=>y(e[t]))))}(n)?od(e,sd(e,t,n,r)):od(e,new Promise(((o,i)=>{sd(e,t,d(n,{success:o,fail:i}),r)})))}function ld(e,t,n,r={}){const o=t+":fail";let i="";return i=n?0===n.indexOf(o)?n:o+" "+n:o,delete r.errCode,qu(e,d({errMsg:i},r))}function cd(e,t,n,r){if(r&&r.beforeInvoke){const e=r.beforeInvoke(t);if(b(e))return e}const o=function(e,t){const n=e[0];if(!t||!t.formatArgs||!T(t.formatArgs)&&T(n))return;const r=t.formatArgs,o=Object.keys(r);for(let i=0;i{ud(r);const o=cd(0,[r],0,n);if(o)throw new Error(o);const i=!Uu(e);!function(e,t){Fu(Vu++,e,t,!0)}(e,r),i&&(!function(e){My.on("api."+e,(t=>{for(const n in Hu){const r=Hu[n];r.name===e&&r.callback(t)}}))}(e),t())}}function hd(e,t,n){return r=>{ud(r);const o=cd(0,[r],0,n);if(o)throw new Error(o);!function(e,t){for(const n in Hu){const r=Hu[n];r.callback===t&&r.name===e&&delete Hu[n]}}(e=e.replace("off","on"),r);Uu(e)||(!function(e){My.off("api."+e)}(e),t())}}function fd(e,t,n,r){return n=>{const o=Xu(e,n,r),i=cd(0,[n],0,r);return i?ld(o,e,i):t(n,{resolve:t=>function(e,t,n){return qu(e,d(n||{},{errMsg:t+":ok"}))}(o,e,t),reject:(t,n)=>ld(o,e,function(e){return!e||b(e)?e:e.stack?("undefined"!=typeof globalThis&&globalThis.harmonyChannel||console.error(e.message+"\n"+e.stack),e.message):e}(t),n)})}}function pd(e,t,n){return dd(e,t,n)}function gd(e,t,n){return hd(e,t,n)}function md(e,t,n,r){return ad(e,fd(e,t,0,r))}function vd(e,t,n,r){return function(e,t,n,r){return(...e)=>{const n=cd(0,e,0,r);if(n)throw new Error(n);return t.apply(null,e)}}(0,t,0,r)}function yd(e,t,n,r){return ad(e,function(e,t,n,r){return fd(e,t,0,r)}(e,t,0,r))}let bd=!1,_d=0,wd=0,Sd=960,xd=375,Ed=750;function Td(){const{windowWidth:e,pixelRatio:t,platform:n}=function(){const e=kf(),t=Of(Df(e,Af(e)));return{platform:xf?"ios":"other",pixelRatio:window.devicePixelRatio,windowWidth:t}}();_d=e,wd=t,bd="ios"===n}function Cd(e,t){const n=Number(e);return isNaN(n)?t:n}const Md=vd(0,((e,t)=>{if(0===_d&&(Td(),function(){const e=__uniConfig.globalStyle||{};Sd=Cd(e.rpxCalcMaxDeviceWidth,960),xd=Cd(e.rpxCalcBaseDeviceWidth,375),Ed=Cd(e.rpxCalcBaseDeviceWidth,750)}()),0===(e=Number(e)))return 0;let n=t||_d;n=e===Ed||n<=Sd?n:xd;let r=e/750*n;return r<0&&(r=-r),r=Math.floor(r+1e-4),0===r&&(r=1!==wd&&bd?.5:1),e<0?-r:r})),kd=[.5,.8,1,1.25,1.5,2];const Ad=(e,t,n,r)=>{!function(e,t,n,r,o){My.invokeViewMethod("map."+e,{type:n,data:r},t,o)}(e,t,n,r,(e=>{r&&((e,t)=>{const n=t.errMsg||"";new RegExp("\\:\\s*fail").test(n)?e.fail&&e.fail(t):e.success&&e.success(t),e.complete&&e.complete(t)})(r,e)}))};const Dd={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgrey:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",grey:"#808080",green:"#008000",greenyellow:"#adff2f",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgrey:"#d3d3d3",lightgreen:"#90ee90",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32",transparent:"#00000000"};function Od(e){let t=null;if(null!=(t=/^#([0-9|A-F|a-f]{6})$/.exec(e=e||"#000000"))){return[parseInt(t[1].slice(0,2),16),parseInt(t[1].slice(2,4),16),parseInt(t[1].slice(4),16),255]}if(null!=(t=/^#([0-9|A-F|a-f]{3})$/.exec(e))){let e=t[1].slice(0,1),n=t[1].slice(1,2),r=t[1].slice(2,3);return e=parseInt(e+e,16),n=parseInt(n+n,16),r=parseInt(r+r,16),[e,n,r,255]}if(null!=(t=/^rgb\((.+)\)$/.exec(e)))return t[1].split(",").map((function(e){return Math.min(255,parseInt(e.trim()))})).concat(255);if(null!=(t=/^rgba\((.+)\)$/.exec(e)))return t[1].split(",").map((function(e,t){return 3===t?Math.floor(255*parseFloat(e.trim())):Math.min(255,parseInt(e.trim()))}));var n=e.toLowerCase();if(p(Dd,n)){t=/^#([0-9|A-F|a-f]{6,8})$/.exec(Dd[n]);const e=parseInt(t[1].slice(0,2),16),r=parseInt(t[1].slice(2,4),16),o=parseInt(t[1].slice(4,6),16);let i=parseInt(t[1].slice(6,8),16);return i=i>=0?i:255,[e,r,o,i]}return console.error("unsupported color:"+e),[0,0,0,255]}class Id{constructor(e,t){this.type=e,this.data=t,this.colorStop=[]}addColorStop(e,t){this.colorStop.push([e,Od(t)])}}class Pd{constructor(e,t){this.type="pattern",this.data=e,this.colorStop=t}}class Bd{constructor(e){this.width=e}}let Rd=0,Ld={};const Nd={canvas:class{constructor(e,t){this.id=e,this.pageId=t,this.actions=[],this.path=[],this.subpath=[],this.drawingState=[],this.state={lineDash:[0,0],shadowOffsetX:0,shadowOffsetY:0,shadowBlur:0,shadowColor:[0,0,0,0],font:"10px sans-serif",fontSize:10,fontWeight:"normal",fontStyle:"normal",fontFamily:"sans-serif"}}setFillStyle(e){console.log("initCanvasContextProperty implemented.")}setStrokeStyle(e){console.log("initCanvasContextProperty implemented.")}setShadow(e,t,n,r){console.log("initCanvasContextProperty implemented.")}addColorStop(e,t){console.log("initCanvasContextProperty implemented.")}setLineWidth(e){console.log("initCanvasContextProperty implemented.")}setLineCap(e){console.log("initCanvasContextProperty implemented.")}setLineJoin(e){console.log("initCanvasContextProperty implemented.")}setLineDash(e,t){console.log("initCanvasContextProperty implemented.")}setMiterLimit(e){console.log("initCanvasContextProperty implemented.")}fillRect(e,t,n,r){console.log("initCanvasContextProperty implemented.")}strokeRect(e,t,n,r){console.log("initCanvasContextProperty implemented.")}clearRect(e,t,n,r){console.log("initCanvasContextProperty implemented.")}fill(){console.log("initCanvasContextProperty implemented.")}stroke(){console.log("initCanvasContextProperty implemented.")}scale(e,t){console.log("initCanvasContextProperty implemented.")}rotate(e){console.log("initCanvasContextProperty implemented.")}translate(e,t){console.log("initCanvasContextProperty implemented.")}setFontSize(e){console.log("initCanvasContextProperty implemented.")}fillText(e,t,n,r){console.log("initCanvasContextProperty implemented.")}setTextAlign(e){console.log("initCanvasContextProperty implemented.")}setTextBaseline(e){console.log("initCanvasContextProperty implemented.")}drawImage(e,t,n,r,o,i,s,a,l){console.log("initCanvasContextProperty implemented.")}setGlobalAlpha(e){console.log("initCanvasContextProperty implemented.")}strokeText(e,t,n,r){console.log("initCanvasContextProperty implemented.")}setTransform(e,t,n,r,o,i){console.log("initCanvasContextProperty implemented.")}draw(e=!1,t){var n=[...this.actions];this.actions=[],this.path=[],function(e,t,n,r,o){My.invokeViewMethod(`canvas.${e}`,{type:n,data:r},t,(e=>{o&&o(e)}))}(this.id,this.pageId,"actionsChanged",{actions:n,reserve:e},t)}createLinearGradient(e,t,n,r){return new Id("linear",[e,t,n,r])}createCircularGradient(e,t,n){return new Id("radial",[e,t,n])}createPattern(e,t){if(void 0===t)console.error("Failed to execute 'createPattern' on 'CanvasContext': 2 arguments required, but only 1 present.");else{if(!(["repeat","repeat-x","repeat-y","no-repeat"].indexOf(t)<0))return new Pd(e,t);console.error("Failed to execute 'createPattern' on 'CanvasContext': The provided type ('"+t+"') is not one of 'repeat', 'no-repeat', 'repeat-x', or 'repeat-y'.")}}measureText(e,t){let n=0;return n=function(e,t){const n=document.createElement("canvas").getContext("2d");return n.font=t,n.measureText(e).width||0}(e,this.state.font),new Bd(n)}save(){this.actions.push({method:"save",data:[]}),this.drawingState.push(this.state)}restore(){this.actions.push({method:"restore",data:[]}),this.state=this.drawingState.pop()||{lineDash:[0,0],shadowOffsetX:0,shadowOffsetY:0,shadowBlur:0,shadowColor:[0,0,0,0],font:"10px sans-serif",fontSize:10,fontWeight:"normal",fontStyle:"normal",fontFamily:"sans-serif"}}beginPath(){this.path=[],this.subpath=[],this.path.push({method:"beginPath",data:[]})}moveTo(e,t){this.path.push({method:"moveTo",data:[e,t]}),this.subpath=[[e,t]]}lineTo(e,t){0===this.path.length&&0===this.subpath.length?this.path.push({method:"moveTo",data:[e,t]}):this.path.push({method:"lineTo",data:[e,t]}),this.subpath.push([e,t])}quadraticCurveTo(e,t,n,r){this.path.push({method:"quadraticCurveTo",data:[e,t,n,r]}),this.subpath.push([n,r])}bezierCurveTo(e,t,n,r,o,i){this.path.push({method:"bezierCurveTo",data:[e,t,n,r,o,i]}),this.subpath.push([o,i])}arc(e,t,n,r,o,i=!1){this.path.push({method:"arc",data:[e,t,n,r,o,i]}),this.subpath.push([e,t])}rect(e,t,n,r){this.path.push({method:"rect",data:[e,t,n,r]}),this.subpath=[[e,t]]}arcTo(e,t,n,r,o){this.path.push({method:"arcTo",data:[e,t,n,r,o]}),this.subpath.push([n,r])}clip(){this.actions.push({method:"clip",data:[...this.path]})}closePath(){this.path.push({method:"closePath",data:[]}),this.subpath.length&&(this.subpath=[this.subpath.shift()])}clearActions(){this.actions=[],this.path=[],this.subpath=[]}getActions(){var e=[...this.actions];return this.clearActions(),e}set lineDashOffset(e){this.actions.push({method:"setLineDashOffset",data:[e]})}set globalCompositeOperation(e){this.actions.push({method:"setGlobalCompositeOperation",data:[e]})}set shadowBlur(e){this.actions.push({method:"setShadowBlur",data:[e]})}set shadowColor(e){this.actions.push({method:"setShadowColor",data:[e]})}set shadowOffsetX(e){this.actions.push({method:"setShadowOffsetX",data:[e]})}set shadowOffsetY(e){this.actions.push({method:"setShadowOffsetY",data:[e]})}set font(e){var t=this;this.state.font=e;var n=e.match(/^(([\w\-]+\s)*)(\d+r?px)(\/(\d+\.?\d*(r?px)?))?\s+(.*)/);if(n){var r=n[1].trim().split(/\s/),o=parseFloat(n[3]),i=n[7],s=[];r.forEach((function(e,n){["italic","oblique","normal"].indexOf(e)>-1?(s.push({method:"setFontStyle",data:[e]}),t.state.fontStyle=e):["bold","normal"].indexOf(e)>-1?(s.push({method:"setFontWeight",data:[e]}),t.state.fontWeight=e):0===n?(s.push({method:"setFontStyle",data:["normal"]}),t.state.fontStyle="normal"):1===n&&a()})),1===r.length&&a(),r=s.map((function(e){return e.data[0]})).join(" "),this.state.fontSize=o,this.state.fontFamily=i,this.actions.push({method:"setFont",data:[`${r} ${o}px ${i}`]})}else console.warn("Failed to set 'font' on 'CanvasContext': invalid format.");function a(){s.push({method:"setFontWeight",data:["normal"]}),t.state.fontWeight="normal"}}get font(){return this.state.font}set fillStyle(e){this.setFillStyle(e)}set strokeStyle(e){this.setStrokeStyle(e)}set globalAlpha(e){e=Math.floor(255*parseFloat(e)),this.actions.push({method:"setGlobalAlpha",data:[e]})}set textAlign(e){this.actions.push({method:"setTextAlign",data:[e]})}set lineCap(e){this.actions.push({method:"setLineCap",data:[e]})}set lineJoin(e){this.actions.push({method:"setLineJoin",data:[e]})}set lineWidth(e){this.actions.push({method:"setLineWidth",data:[e]})}set miterLimit(e){this.actions.push({method:"setMiterLimit",data:[e]})}set textBaseline(e){this.actions.push({method:"setTextBaseline",data:[e]})}},map:class{constructor(e,t){this.id=e,this.pageId=t}getCenterLocation(e){Ad(this.id,this.pageId,"getCenterLocation",e)}moveToLocation(e){Ad(this.id,this.pageId,"moveToLocation",e)}getScale(e){Ad(this.id,this.pageId,"getScale",e)}getRegion(e){Ad(this.id,this.pageId,"getRegion",e)}includePoints(e){Ad(this.id,this.pageId,"includePoints",e)}translateMarker(e){Ad(this.id,this.pageId,"translateMarker",e)}$getAppMap(){}addCustomLayer(e){Ad(this.id,this.pageId,"addCustomLayer",e)}removeCustomLayer(e){Ad(this.id,this.pageId,"removeCustomLayer",e)}addGroundOverlay(e){Ad(this.id,this.pageId,"addGroundOverlay",e)}removeGroundOverlay(e){Ad(this.id,this.pageId,"removeGroundOverlay",e)}updateGroundOverlay(e){Ad(this.id,this.pageId,"updateGroundOverlay",e)}initMarkerCluster(e){Ad(this.id,this.pageId,"initMarkerCluster",e)}addMarkers(e){Ad(this.id,this.pageId,"addMarkers",e)}removeMarkers(e){Ad(this.id,this.pageId,"removeMarkers",e)}moveAlong(e){Ad(this.id,this.pageId,"moveAlong",e)}setLocMarkerIcon(e){Ad(this.id,this.pageId,"setLocMarkerIcon",e)}openMapApp(e){Ad(this.id,this.pageId,"openMapApp",e)}on(e,t){Ad(this.id,this.pageId,"on",{name:e,callback:t})}},video:class{constructor(e,t){this.id=e,this.pageId=t}play(){If(this.id,this.pageId,"play")}pause(){If(this.id,this.pageId,"pause")}stop(){If(this.id,this.pageId,"stop")}seek(e){If(this.id,this.pageId,"seek",{position:e})}sendDanmu(e){If(this.id,this.pageId,"sendDanmu",e)}playbackRate(e){~kd.indexOf(e)||(e=1),If(this.id,this.pageId,"playbackRate",{rate:e})}requestFullScreen(e={}){If(this.id,this.pageId,"requestFullScreen",e)}exitFullScreen(){If(this.id,this.pageId,"exitFullScreen")}showStatusBar(){If(this.id,this.pageId,"showStatusBar")}hideStatusBar(){If(this.id,this.pageId,"hideStatusBar")}},editor:class{constructor(e,t){this.id=e,this.pageId=t}format(e,t){this._exec("format",{name:e,value:t})}insertDivider(){this._exec("insertDivider")}insertImage(e){this._exec("insertImage",e)}insertText(e){this._exec("insertText",e)}setContents(e){this._exec("setContents",e)}getContents(e){this._exec("getContents",e)}clear(e){this._exec("clear",e)}removeFormat(e){this._exec("removeFormat",e)}undo(e){this._exec("undo",e)}redo(e){this._exec("redo",e)}blur(e){this._exec("blur",e)}getSelectionText(e){this._exec("getSelectionText",e)}scrollIntoView(e){this._exec("scrollIntoView",e)}_exec(e,t){!function(e,t,n,r){const o={options:r},i=r&&("success"in r||"fail"in r||"complete"in r);if(i){const e=String(Rd++);o.callbackId=e,Ld[e]=r}My.invokeViewMethod(`editor.${e}`,{type:n,data:o},t,(({callbackId:e,data:t})=>{i&&(ue(Ld[e],t),delete Ld[e])}))}(this.id,this.pageId,e,t)}}};function $d(e){if(e&&e.contextInfo){const{id:t,type:n,page:r}=e.contextInfo,o=Nd[n];e.context=new o(t,r),delete e.contextInfo}}class zd{constructor(e,t,n,r){this._selectorQuery=e,this._component=t,this._selector=n,this._single=r}boundingClientRect(e){return this._selectorQuery._push(this._selector,this._component,this._single,{id:!0,dataset:!0,rect:!0,size:!0},e),this._selectorQuery}fields(e,t){return this._selectorQuery._push(this._selector,this._component,this._single,e,t),this._selectorQuery}scrollOffset(e){return this._selectorQuery._push(this._selector,this._component,this._single,{id:!0,dataset:!0,scrollOffset:!0},e),this._selectorQuery}context(e){return this._selectorQuery._push(this._selector,this._component,this._single,{context:!0},e),this._selectorQuery}node(e){return this._selectorQuery._push(this._selector,this._component,this._single,{node:!0},e),this._selectorQuery}}class jd{constructor(e){this._component=void 0,this._page=e,this._queue=[],this._queueCb=[]}exec(e){return function(e,t,n){const r=[];t.forEach((({component:t,selector:n,single:o,fields:i})=>{null===t?r.push(function(e){const t={};e.id&&(t.id="");e.dataset&&(t.dataset={});e.rect&&(t.left=0,t.right=0,t.top=0,t.bottom=0);e.size&&(t.width=document.documentElement.clientWidth,t.height=document.documentElement.clientHeight);if(e.scrollOffset){const e=document.documentElement,n=document.body;t.scrollLeft=e.scrollLeft||n.scrollLeft||0,t.scrollTop=e.scrollTop||n.scrollTop||0,t.scrollHeight=e.scrollHeight||n.scrollHeight||0,t.scrollWidth=e.scrollWidth||n.scrollWidth||0}return t}(i)):r.push(function(e,t,n,r,o){const i=function(e,t){if(!e)return t.$el;return e.$el}(t,e),s=i.parentElement;if(!s)return r?null:[];const{nodeType:a}=i,l=3===a||8===a;if(r){const e=l?s.querySelector(n):Bf(i,n)?i:i.querySelector(n);return e?Pf(e,o):null}{let e=[];const t=(l?s:i).querySelectorAll(n);return t&&t.length&&[].forEach.call(t,(t=>{e.push(Pf(t,o))})),!l&&Bf(i,n)&&e.unshift(Pf(i,o)),e}}(e,t,n,o,i))})),n(r)}(this._page,this._queue,(t=>{const n=this._queueCb;t.forEach(((e,t)=>{g(e)?e.forEach($d):$d(e);const r=n[t];y(r)&&r.call(this,e)})),y(e)&&e.call(this,t)})),this._nodesRef}in(e){return this._component=fe(e),this}select(e){return this._nodesRef=new zd(this,this._component,e,!0)}selectAll(e){return this._nodesRef=new zd(this,this._component,e,!1)}selectViewport(){return this._nodesRef=new zd(this,null,"",!0)}_push(e,t,n,r,o){this._queue.push({component:t,selector:e,single:n,fields:r}),this._queueCb.push(o)}}const Vd=vd(0,(e=>((e=fe(e))&&!function(e){const t=fe(e);if(t.$page)return Rc(t);if(!t.$)return;{const{$pageInstance:e}=t.$;if(e)return Rc(e.proxy)}const n=t.$.root.proxy;return n&&n.$page?Rc(n):void 0}(e)&&(e=null),new jd(e||Ic())))),Hd={formatArgs:{}},Fd={duration:400,timingFunction:"linear",delay:0,transformOrigin:"50% 50% 0"};class qd{constructor(e){this.actions=[],this.currentTransform={},this.currentStepAnimates=[],this.option=d({},Fd,e)}_getOption(e){const t={transition:d({},this.option,e),transformOrigin:""};return t.transformOrigin=t.transition.transformOrigin,delete t.transition.transformOrigin,t}_pushAnimates(e,t){this.currentStepAnimates.push({type:e,args:t})}_converType(e){return e.replace(/[A-Z]/g,(e=>`-${e.toLowerCase()}`))}_getValue(e){return"number"==typeof e?`${e}px`:e}export(){const e=this.actions;return this.actions=[],{actions:e}}step(e){return this.currentStepAnimates.forEach((e=>{"style"!==e.type?this.currentTransform[e.type]=e:this.currentTransform[`${e.type}.${e.args[0]}`]=e})),this.actions.push({animates:Object.values(this.currentTransform),option:this._getOption(e)}),this.currentStepAnimates=[],this}}const Ud=ae((()=>{const e=["opacity","backgroundColor"],t=["width","height","left","right","top","bottom"];["matrix","matrix3d","rotate","rotate3d","rotateX","rotateY","rotateZ","scale","scale3d","scaleX","scaleY","scaleZ","skew","skewX","skewY","translate","translate3d","translateX","translateY","translateZ"].concat(e,t).forEach((n=>{qd.prototype[n]=function(...r){return e.concat(t).includes(n)?this._pushAnimates("style",[this._converType(n),t.includes(n)?this._getValue(r[0]):r[0]]):this._pushAnimates(n,r),this}}))})),Wd=vd(0,(e=>(Ud(),new qd(e))),0,Hd),Kd=pd("onTabBarMidButtonTap",(()=>{})),Yd=vd(0,(()=>{const e=Yg();return e&&e.$vm?e.$vm.$locale:Dl().getLocale()})),Xd={onUnhandledRejection:[],onPageNotFound:[],onError:[],onShow:[],onHide:[]};let Gd;function Jd(e){try{return JSON.parse(e)}catch(C_){}return e}function Zd(e){if("enabled"===e.type);else if("clientId"===e.type)Gd=e.cid,e.errMsg,t=Gd,n=e.errMsg,Qd.forEach((e=>{e(t,n)})),Qd.length=0;else if("pushMsg"===e.type){const t={type:"receive",data:Jd(e.message)};for(let e=0;e{t({type:"click",data:Jd(e.message)})}));var t,n}const Qd=[];const eh=[],th={formatArgs:{showToast:!0},beforeInvoke(){Nl()},beforeSuccess(e,t){if(!t.showToast)return;const{t:n}=Dl(),r=n("uni.setClipboardData.success");r&&qv({title:r,icon:"success",mask:!1})}},nh=(Boolean,["wgs84","gcj02"]),rh={formatArgs:{type(e,t){e=(e||"").toLowerCase(),-1===nh.indexOf(e)?t.type=nh[0]:t.type=e},altitude(e,t){t.altitude=e||!1}}},oh=(Boolean,{formatArgs:{count(e,t){(!e||e<=0)&&(t.count=9)},sizeType(e,t){t.sizeType=zu(e,Ru)},sourceType(e,t){t.sourceType=zu(e,Lu)},extension(e,t){if(e instanceof Array&&0===e.length)return"param extension should not be empty.";e||(t.extension=["*"])}}}),ih=["all","image","video"],sh={formatArgs:{count(e,t){(!e||e<=0)&&(t.count=100)},sourceType(e,t){t.sourceType=zu(e,Lu)},type(e,t){t.type=$u(e,ih)},extension(e,t){if(e instanceof Array&&0===e.length)return"param extension should not be empty.";e||("all"!==t.type&&t.type?t.extension=["*"]:t.extension=[""])}}},ah={formatArgs:{src(e,t){t.src=_f(e)}}},lh="json",ch=["text","arraybuffer"],uh=encodeURIComponent;ArrayBuffer,Boolean;const dh={formatArgs:{method(e,t){t.method=$u((e||"").toUpperCase(),Nu)},data(e,t){t.data=e||""},url(e,t){t.method===Nu[0]&&T(t.data)&&Object.keys(t.data).length&&(t.url=function(e,t){let n=e.split("#");const r=n[1]||"";n=n[0].split("?");let o=n[1]||"";e=n[0];const i=o.split("&").filter((e=>e)),s={};i.forEach((e=>{const t=e.split("=");s[t[0]]=t[1]}));for(const a in t)if(p(t,a)){let e=t[a];null==e?e="":T(e)&&(e=JSON.stringify(e)),s[uh(a)]=uh(e)}return o=Object.keys(s).map((e=>`${e}=${s[e]}`)).join("&"),e+(o?"?"+o:"")+(r?"#"+r:"")}(e,t.data))},header(e,t){const n=t.header=e||{};t.method!==Nu[0]&&(Object.keys(n).find((e=>"content-type"===e.toLowerCase()))||(n["Content-Type"]="application/json"))},dataType(e,t){t.dataType=(e||lh).toLowerCase()},responseType(e,t){t.responseType=(e||"").toLowerCase(),-1===ch.indexOf(t.responseType)&&(t.responseType="text")}}},hh={formatArgs:{filePath(e,t){e&&(t.filePath=_f(e))},header(e,t){t.header=e||{}},formData(e,t){t.formData=e||{}}}},fh={formatArgs:{header(e,t){t.header=e||{}},method(e,t){t.method=$u((e||"").toUpperCase(),Nu)},protocols(e,t){b(e)&&(t.protocols=[e])}}};const ph={url:{type:String,required:!0}},gh=(bh(["slide-in-right","slide-in-left","slide-in-top","slide-in-bottom","fade-in","zoom-out","zoom-fade-out","pop-in","none"]),bh(["slide-out-right","slide-out-left","slide-out-top","slide-out-bottom","fade-out","zoom-in","zoom-fade-in","pop-out","none"]),Sh("navigateTo")),mh=Sh("redirectTo"),vh=Sh("reLaunch"),yh={formatArgs:{delta(e,t){e=parseInt(e+"")||1,t.delta=Math.min(rf().length-1,e)}}};function bh(e){return{animationType:{type:String,validator(t){if(t&&-1===e.indexOf(t))return"`"+t+"` is not supported for `animationType` (supported values are: `"+e.join("`|`")+"`)"}},animationDuration:{type:Number}}}let _h;function wh(){_h=""}function Sh(e){return{formatArgs:{url:xh(e)},beforeAll:wh}}function xh(e){return function(t,n){if(!t)return'Missing required args: "url"';const r=(t=function(e){if(0===e.indexOf("/")||0===e.indexOf("uni:"))return e;let t="";const n=rf();return n.length&&(t=Sc(n[n.length-1]).route),Vc(t,e)}(t)).split("?")[0],o=Hc(r,!0);if(!o)return"page `"+t+"` is not found";if("navigateTo"===e||"redirectTo"===e){if(o.meta.isTabBar)return`can not ${e} a tabbar page`}else if("switchTab"===e&&!o.meta.isTabBar)return"can not switch to no-tabBar page";if("switchTab"!==e&&"preloadPage"!==e||!o.meta.isTabBar||"appLaunch"===n.openType||(t=r),o.meta.isEntry&&(t=t.replace(o.alias,"/")),n.url=function(e){if(!b(e))return e;const t=e.indexOf("?");if(-1===t)return e;const n=e.slice(t+1).trim().replace(/^(\?|#|&)/,"");if(!n)return e;e=e.slice(0,t);const r=[];return n.split("&").forEach((e=>{const t=e.replace(/\+/g," ").split("="),n=t.shift(),o=t.length>0?t.join("="):"";r.push(n+"="+encodeURIComponent(o))})),r.length?e+"?"+r.join("&"):e}(t),"unPreloadPage"!==e)if("preloadPage"!==e){if(_h===t&&"appLaunch"!==n.openType)return`${_h} locked`;__uniConfig.ready&&(_h=t)}else if(o.meta.isTabBar){const e=rf(),t=o.path.slice(1);if(e.find((e=>e.route===t)))return"tabBar page `"+t+"` already exists"}}}Boolean;const Eh={formatArgs:{title:"",mask:!1}},Th=(Boolean,{beforeInvoke(){Rl()},formatArgs:{title:"",content:"",placeholderText:"",showCancel:!0,editable:!1,cancelText(e,t){if(!p(t,"cancelText")){const{t:e}=Dl();t.cancelText=e("uni.showModal.cancel")}},cancelColor:"#000",confirmText(e,t){if(!p(t,"confirmText")){const{t:e}=Dl();t.confirmText=e("uni.showModal.confirm")}},confirmColor:"#007aff"}}),Ch=["success","loading","none","error"],Mh=(Boolean,{formatArgs:{title:"",icon(e,t){t.icon=$u(e,Ch)},image(e,t){t.image=e?_f(e):""},duration:1500,mask:!1}});function kh(){const e=Ic();if(!e)return;const t=nf(),n=t.keys();for(const r of n){const e=t.get(r);e.$.__isTabBar?e.$.__isActive=!1:sf(r)}e.$.__isTabBar&&(e.$.__isVisible=!1,Lc(e,"onHide"))}function Ah(e,t){return e===t.fullPath||"/"===e&&t.meta.isEntry}function Dh(e){const t=nf().values();for(const n of t){const t=Gh(n);if(Ah(e,t))return n.$.__isActive=!0,t.id}}const Oh=yd("switchTab",(({url:e,tabBarText:t,isAutomatedTesting:n},{resolve:r,reject:o})=>{if(Jh.handledBeforeEntryPageRoutes)return kh(),Lh({type:"switchTab",url:e,tabBarText:t,isAutomatedTesting:n},Dh(e)).then(r).catch(o);Qh.push({args:{type:"switchTab",url:e,tabBarText:t,isAutomatedTesting:n},resolve:r,reject:o})}),0,Sh("switchTab"));function Ih(){const e=Ac();if(!e)return;const t=Gh(e);sf(uf(t.path,t.id))}const Ph=yd("redirectTo",(({url:e,isAutomatedTesting:t},{resolve:n,reject:r})=>{if(Jh.handledBeforeEntryPageRoutes)return Ih(),Lh({type:"redirectTo",url:e,isAutomatedTesting:t}).then(n).catch(r);ef.push({args:{type:"redirectTo",url:e,isAutomatedTesting:t},resolve:n,reject:r})}),0,mh);function Bh(){const e=nf().keys();for(const t of e)sf(t)}const Rh=yd("reLaunch",(({url:e,isAutomatedTesting:t},{resolve:n,reject:r})=>{if(Jh.handledBeforeEntryPageRoutes)return Bh(),Lh({type:"reLaunch",url:e,isAutomatedTesting:t}).then(n).catch(r);tf.push({args:{type:"reLaunch",url:e,isAutomatedTesting:t},resolve:n,reject:r})}),0,vh);function Lh({type:e,url:t,tabBarText:n,events:r,isAutomatedTesting:o},i){const s=Yg().$router,{path:a,query:l}=function(e){const[t,n]=e.split("?",2);return{path:t,query:ke(n||"")}}(t);return new Promise(((t,c)=>{const u=function(e,t){return{__id__:t||++af,__type__:e}}(e,i);s["navigateTo"===e?"push":"replace"]({path:a,query:l,state:u,force:!0}).then((i=>{if(Ba(i))return c(i.message);if("switchTab"===e&&(s.currentRoute.value.meta.tabBarText=n),"navigateTo"===e){const e=s.currentRoute.value.meta;return e.eventChannel?r&&(Object.keys(r).forEach((t=>{e.eventChannel._addListener(t,"on",r[t])})),e.eventChannel._clearCache()):e.eventChannel=new De(u.__id__,r),t(o?{__id__:u.__id__}:{eventChannel:e.eventChannel})}return o?t({__id__:u.__id__}):t()}))}))}function Nh(){if(Jh.handledBeforeEntryPageRoutes)return;Jh.handledBeforeEntryPageRoutes=!0;const e=[...Zh];Zh.length=0,e.forEach((({args:e,resolve:t,reject:n})=>Lh(e).then(t).catch(n)));const t=[...Qh];Qh.length=0,t.forEach((({args:e,resolve:t,reject:n})=>(kh(),Lh(e,Dh(e.url)).then(t).catch(n))));const n=[...ef];ef.length=0,n.forEach((({args:e,resolve:t,reject:n})=>(Ih(),Lh(e).then(t).catch(n))));const r=[...tf];tf.length=0,r.forEach((({args:e,resolve:t,reject:n})=>(Bh(),Lh(e).then(t).catch(n))))}let $h;function zh(){var e;return $h||($h=__uniConfig.tabBar&&Xt((e=__uniConfig.tabBar,Tl()&&e.list&&e.list.forEach((e=>{Al(e,["text"])})),e))),$h}function jh(e){const t=window.CSS&&window.CSS.supports;return t&&(t(e)||t.apply(window.CSS,e.split(":")))}const Vh=jh("--a:0"),Hh=jh("top:env(a)"),Fh=jh("top:constant(a)"),qh=jh("backdrop-filter:blur(10px)"),Uh={"css.var":Vh,"css.env":Hh,"css.constant":Fh,"css.backdrop-filter":qh},Wh=vd(0,(e=>!p(Uh,e)||Uh[e])),Kh=(()=>Hh?"env":Fh?"constant":"")();function Yh(e){return Kh?`calc(${e}px + ${Kh}(safe-area-inset-bottom))`:`${e}px`}const Xh=new Map;function Gh(e){return e.$page}const Jh={handledBeforeEntryPageRoutes:!1},Zh=[],Qh=[],ef=[],tf=[];function nf(){return Xh}function rf(){return of()}function of(){const e=[],t=Xh.values();for(const n of t)n.$.__isTabBar?n.$.__isActive&&e.push(n):e.push(n);return e}function sf(e,t=!0){const n=Xh.get(e);n.$.__isUnload=!0,Lc(n,"onUnload"),Xh.delete(e),t&&function(e){const t=df.get(e);t&&(df.delete(e),hf.pruneCacheEntry(t))}(e)}let af=Bu();function lf(e){const t=Ou();let n=e.fullPath;return e.meta.isEntry&&-1===n.indexOf(e.meta.route)&&(n="/"+e.meta.route+n.replace("/","")),function(e,t,n,r,o,i){const{id:s,route:a}=r,l=ze(r.navigationBar,__uniConfig.themeConfig,i).titleColor;return{id:s,path:se(a),route:a,fullPath:t,options:n,meta:r,openType:e,eventChannel:o,statusBarStyle:"#ffffff"===l?"light":"dark"}}("navigateTo",n,{},t)}function cf(e){const t=lf(e.$route);!function(e,t){e.route=t.route,e.$vm=e,e.$page=t,e.$mpType="page",e.$fontFamilySet=new Set,t.meta.isTabBar&&(e.$.__isTabBar=!0,e.$.__isActive=!0)}(e,t),Xh.set(uf(t.path,t.id),e),1===Xh.size&&setTimeout((()=>{Nh()}),0)}function uf(e,t){return e+"$$"+t}const df=new Map,hf={get:e=>df.get(e),set(e,t){!function(e){const t=parseInt(e.split("$$")[1]);if(!t)return;hf.forEach(((e,n)=>{const r=parseInt(n.split("$$")[1]);if(r&&r>t){if(function(e){return"tabBar"===e.props.type}(e))return;hf.delete(n),hf.pruneCacheEntry(e),Ln((()=>{Xh.forEach(((e,t)=>{e.$.isUnmounted&&Xh.delete(t)}))}))}}))}(e),df.set(e,t)},delete(e){df.get(e)&&df.delete(e)},forEach(e){df.forEach(e)}};function ff(e,t){!function(e){const t=gf(e),{body:n}=document;mf&&n.removeAttribute(mf),t&&n.setAttribute(t,""),mf=t}(e),function(e){let t=0,n=0;if("custom"!==e.navigationBar.style&&["default","float"].indexOf(e.navigationBar.type)>-1&&(t=44),e.isTabBar){const e=zh();e.shown&&(n=parseInt(e.height))}var r;yc({"--window-top":(r=t,Kh?`calc(${r}px + ${Kh}(safe-area-inset-top))`:`${r}px`),"--window-bottom":Yh(n)})}(t),function(e){{const t="nvue-dir-"+__uniConfig.nvue["flex-direction"];e.isNVue?(document.body.setAttribute("nvue",""),document.body.setAttribute(t,"")):(document.body.removeAttribute("nvue"),document.body.removeAttribute(t))}}(t),yf(e,t)}function pf(e){const t=gf(e);t&&function(e){const t=document.querySelector("uni-page-body");t&&t.setAttribute(e,"")}(t)}function gf(e){return e.type.__scopeId}let mf,vf;function yf(e,t){if(document.removeEventListener("touchmove",Nc),vf&&document.removeEventListener("scroll",vf),t.disableScroll)return document.addEventListener("touchmove",Nc);const{onPageScroll:n,onReachBottom:r}=e,o="transparent"===t.navigationBar.type;if(!(null==n?void 0:n.length)&&!(null==r?void 0:r.length)&&!o)return;const i={},s=Gh(e.proxy).id;(n||o)&&(i.onPageScroll=function(e,t,n){return r=>{t&&Cy.publishHandler("onPageScroll",{scrollTop:r},e),n&&Cy.emit(e+".onPageScroll",{scrollTop:r})}}(s,n,o)),(null==r?void 0:r.length)&&(i.onReachBottomDistance=t.onReachBottomDistance||50,i.onReachBottom=()=>Cy.publishHandler("onReachBottom",{},s)),vf=jc(i),requestAnimationFrame((()=>document.addEventListener("scroll",vf)))}function bf(e){const{base:t}=__uniConfig.router;return 0===se(e).indexOf(t)?se(e):t+e}function _f(e){const{base:t,assets:n}=__uniConfig.router;if("./"===t&&(0!==e.indexOf("./")||!e.includes("/static/")&&0!==e.indexOf("./"+(n||"assets")+"/")||(e=e.slice(1))),0===e.indexOf("/")){if(0!==e.indexOf("//"))return bf(e.slice(1));e="https:"+e}if(re.test(e)||oe.test(e)||0===e.indexOf("blob:"))return e;const r=of();return r.length?bf(Vc(Gh(r[r.length-1]).route,e).slice(1)):e}const wf=navigator.userAgent,Sf=/android/i.test(wf),xf=/iphone|ipad|ipod/i.test(wf),Ef=wf.match(/Windows NT ([\d|\d.\d]*)/i),Tf=/Macintosh|Mac/i.test(wf),Cf=/Linux|X11/i.test(wf),Mf=Tf&&navigator.maxTouchPoints>0;function kf(){return/^Apple/.test(navigator.vendor)&&"number"==typeof window.orientation}function Af(e){return e&&90===Math.abs(window.orientation)}function Df(e,t){return e?Math[t?"max":"min"](screen.width,screen.height):screen.width}function Of(e){return Math.min(window.innerWidth,document.documentElement.clientWidth,e)||e}function If(e,t,n,r){My.invokeViewMethod("video."+e,{videoId:e,type:n,data:r},t)}function Pf(e,t){const n={},{top:r,topWindowHeight:o}=mc();if(t.node){const t=e.tagName.split("-")[1]||e.tagName;t&&(n.node=e.querySelector(t))}if(t.id&&(n.id=e.id),t.dataset&&(n.dataset=we(e)),t.rect||t.size){const i=e.getBoundingClientRect();t.rect&&(n.left=i.left,n.right=i.right,n.top=i.top-r-o,n.bottom=i.bottom-r-o),t.size&&(n.width=i.width,n.height=i.height)}if(g(t.properties)&&t.properties.forEach((e=>{e=e.replace(/-([a-z])/g,(function(e,t){return t.toUpperCase()}))})),t.scrollOffset)if("UNI-SCROLL-VIEW"===e.tagName){const t=e.children[0].children[0];n.scrollLeft=t.scrollLeft,n.scrollTop=t.scrollTop,n.scrollHeight=t.scrollHeight,n.scrollWidth=t.scrollWidth}else n.scrollLeft=0,n.scrollTop=0,n.scrollHeight=0,n.scrollWidth=0;if(g(t.computedStyle)){const r=getComputedStyle(e);t.computedStyle.forEach((e=>{n[e]=r[e]}))}return t.context&&(n.contextInfo=function(e){return e.__uniContextInfo}(e)),n}function Bf(e,t){return(e.matches||e.matchesSelector||e.mozMatchesSelector||e.msMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector||function(e){const t=this.parentElement.querySelectorAll(e);let n=t.length;for(;--n>=0&&t.item(n)!==this;);return n>-1}).call(e,t)}const Rf={};function Lf(e,t){const n=Rf[e];return n?Promise.resolve(n):/^data:[a-z-]+\/[a-z-]+;base64,/.test(e)?Promise.resolve(function(e){const t=e.split(","),n=t[0].match(/:(.*?);/),r=n?n[1]:"",o=atob(t[1]);let i=o.length;const s=new Uint8Array(i);for(;i--;)s[i]=o.charCodeAt(i);return Nf(s,r)}(e)):t?Promise.reject(new Error("not find")):new Promise(((t,n)=>{const r=new XMLHttpRequest;r.open("GET",e,!0),r.responseType="blob",r.onload=function(){t(this.response)},r.onerror=n,r.send()}))}function Nf(e,t){let n;if(e instanceof File)n=e;else{t=t||e.type||"";const o=`${Date.now()}${function(e){const t=e.split("/")[1];return t?`.${t}`:""}(t)}`;try{n=new File([e],o,{type:t})}catch(r){n=e=e instanceof Blob?e:new Blob([e],{type:t}),n.name=n.name||o}}return n}function $f(e){for(const n in Rf)if(p(Rf,n)){if(Rf[n]===e)return n}var t=(window.URL||window.webkitURL).createObjectURL(e);return Rf[t]=e,t}const zf=du(),jf=du();const Vf=gu({name:"ResizeSensor",props:{initial:{type:Boolean,default:!1}},emits:["resize"],setup(e,{emit:t}){const n=hn(null),r=function(e){return()=>{const{firstElementChild:t,lastElementChild:n}=e.value;t.scrollLeft=1e5,t.scrollTop=1e5,n.scrollLeft=1e5,n.scrollTop=1e5}}(n),o=function(e,t,n){const r=Xt({width:-1,height:-1});return dr((()=>d({},r)),(e=>t("resize",e))),()=>{const t=e.value;t&&(r.width=t.offsetWidth,r.height=t.offsetHeight,n())}}(n,t,r);return function(e,t,n,r){$r(r),Xr((()=>{t.initial&&Ln(n);const o=e.value;o.offsetParent!==o.parentElement&&(o.parentElement.style.position="relative"),"AnimationEvent"in window||r()}))}(n,e,o,r),()=>gi("uni-resize-sensor",{ref:n,onAnimationstartOnce:o},[gi("div",{onScroll:o},[gi("div",null,null)],40,["onScroll"]),gi("div",{onScroll:o},[gi("div",null,null)],40,["onScroll"])],40,["onAnimationstartOnce"])}});const Hf=bc("ucg"),Ff=gu({name:"CheckboxGroup",props:{name:{type:String,default:""}},emits:["change"],setup(e,{emit:t,slots:n}){const r=hn(null);return function(e,t){const n=[],r=()=>n.reduce(((e,t)=>(t.value.checkboxChecked&&e.push(t.value.value),e)),new Array);Ao(Hf,{addField(e){n.push(e)},removeField(e){n.splice(n.indexOf(e),1)},checkboxChange(e){t("change",e,{value:r()})}});const o=Do(Su,!1);o&&o.addField({submit:()=>{let t=["",null];return""!==e.name&&(t[0]=e.name,t[1]=r()),t}})}(e,yu(r,t)),()=>gi("uni-checkbox-group",{ref:r},[n.default&&n.default()],512)}});const qf=gu({name:"Checkbox",props:{checked:{type:[Boolean,String],default:!1},id:{type:String,default:""},disabled:{type:[Boolean,String],default:!1},value:{type:String,default:""},color:{type:String,default:"#007aff"},backgroundColor:{type:String,default:""},borderColor:{type:String,default:""},activeBackgroundColor:{type:String,default:""},activeBorderColor:{type:String,default:""},iconColor:{type:String,default:""},foreColor:{type:String,default:""}},setup(e,{slots:t}){const n=hn(null),r=hn(e.checked),o=zi((()=>"true"===r.value||!0===r.value)),i=hn(e.value);const s=zi((()=>function(t){if(e.disabled)return{backgroundColor:"#E1E1E1",borderColor:"#D1D1D1"};const n={};return t?(e.activeBorderColor&&(n.borderColor=e.activeBorderColor),e.activeBackgroundColor&&(n.backgroundColor=e.activeBackgroundColor)):(e.borderColor&&(n.borderColor=e.borderColor),e.backgroundColor&&(n.backgroundColor=e.backgroundColor)),n}(o.value)));dr([()=>e.checked,()=>e.value],(([e,t])=>{r.value=e,i.value=t}));const{uniCheckGroup:a,uniLabel:l}=function(e,t,n){const r=zi((()=>({checkboxChecked:Boolean(e.value),value:t.value}))),o={reset:n},i=Do(Hf,!1);i&&i.addField(r);const s=Do(Su,!1);s&&s.addField(o);const a=Do(Eu,!1);return Zr((()=>{i&&i.removeField(r),s&&s.removeField(o)})),{uniCheckGroup:i,uniForm:s,uniLabel:a}}(r,i,(()=>{r.value=!1})),c=t=>{e.disabled||(r.value=!r.value,a&&a.checkboxChange(t),t.stopPropagation())};return l&&(l.addHandler(c),Zr((()=>{l.removeHandler(c)}))),Cu(e,{"label-click":c}),()=>{const o=wu(e,"disabled");let i;return i=r.value,gi("uni-checkbox",xi(o,{id:e.id,onClick:c,ref:n}),[gi("div",{class:"uni-checkbox-wrapper",style:{"--HOVER-BD-COLOR":e.activeBorderColor}},[gi("div",{class:["uni-checkbox-input",{"uni-checkbox-input-disabled":e.disabled}],style:s.value},[i?Mc(Ec,e.disabled?"#ADADAD":e.foreColor||e.iconColor||e.color,22):""],6),t.default&&t.default()],4)],16,["id","onClick"])}}});function Uf(){}const Wf={cursorSpacing:{type:[Number,String],default:0},showConfirmBar:{type:[Boolean,String],default:"auto"},adjustPosition:{type:[Boolean,String],default:!0},autoBlur:{type:[Boolean,String],default:!1}};function Kf(e,t,n){function r(e){const t=zi((()=>0===String(navigator.vendor).indexOf("Apple")));e.addEventListener("focus",(()=>{clearTimeout(undefined),document.addEventListener("click",Uf,!1)}));e.addEventListener("blur",(()=>{t.value&&e.blur(),document.removeEventListener("click",Uf,!1),t.value&&document.documentElement.scrollTo(document.documentElement.scrollLeft,document.documentElement.scrollTop)}))}dr((()=>t.value),(e=>e&&r(e)))}var Yf=/^<([-A-Za-z0-9_]+)((?:\s+[a-zA-Z_:][-a-zA-Z0-9_:.]*(?:\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)>/,Xf=/^<\/([-A-Za-z0-9_]+)[^>]*>/,Gf=/([a-zA-Z_:][-a-zA-Z0-9_:.]*)(?:\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|([^>\s]+)))?/g,Jf=rp("area,base,basefont,br,col,frame,hr,img,input,link,meta,param,embed,command,keygen,source,track,wbr"),Zf=rp("a,address,article,applet,aside,audio,blockquote,button,canvas,center,dd,del,dir,div,dl,dt,fieldset,figcaption,figure,footer,form,frameset,h1,h2,h3,h4,h5,h6,header,hgroup,hr,iframe,isindex,li,map,menu,noframes,noscript,object,ol,output,p,pre,section,script,table,tbody,td,tfoot,th,thead,tr,ul,video"),Qf=rp("abbr,acronym,applet,b,basefont,bdo,big,br,button,cite,code,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,textarea,tt,u,var"),ep=rp("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr"),tp=rp("checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected"),np=rp("script,style");function rp(e){for(var t={},n=e.split(","),r=0;re/t],heightFix:["offsetHeight","width",(e,t)=>e*t]},sp={aspectFit:["center center","contain"],aspectFill:["center center","cover"],widthFix:[,"100% 100%"],heightFix:[,"100% 100%"],top:["center top"],bottom:["center bottom"],center:["center center"],left:["left center"],right:["right center"],"top left":["left top"],"top right":["right top"],"bottom left":["left bottom"],"bottom right":["right bottom"]},ap=gu({name:"Image",props:op,setup(e,{emit:t}){const n=hn(null),r=function(e,t){const n=hn(""),r=zi((()=>{let e="auto",r="";const o=sp[t.mode];return o?(o[0]&&(r=o[0]),o[1]&&(e=o[1])):(r="0% 0%",e="100% 100%"),`background-image:${n.value?'url("'+n.value+'")':"none"};background-position:${r};background-size:${e};`})),o=Xt({rootEl:e,src:zi((()=>t.src?_f(t.src):"")),origWidth:0,origHeight:0,origStyle:{width:"",height:""},modeStyle:r,imgSrc:n});return Xr((()=>{const t=e.value;o.origWidth=t.clientWidth||0,o.origHeight=t.clientHeight||0})),o}(n,e),o=yu(n,t),{fixSize:i}=function(e,t,n){const r=()=>{const{mode:r}=t,o=ip[r];if(!o)return;const{origWidth:i,origHeight:s}=n,a=i&&s?i/s:0;if(!a)return;const l=e.value,c=l[o[0]];c&&(l.style[o[1]]=function(e){lp&&e>10&&(e=2*Math.round(e/2));return e}(o[2](c,a))+"px")},o=()=>{const{style:t}=e.value,{origStyle:{width:r,height:o}}=n;t.width=r,t.height=o};return dr((()=>t.mode),((e,t)=>{ip[t]&&o(),ip[e]&&r()})),{fixSize:r,resetSize:o}}(n,e,r);return function(e,t,n,r,o){let i,s;const a=(t=0,n=0,r="")=>{e.origWidth=t,e.origHeight=n,e.imgSrc=r},l=l=>{if(!l)return c(),void a();i=i||new Image,i.onload=e=>{const{width:u,height:d}=i;a(u,d,l),Ln((()=>{r()})),i.draggable=t.draggable,s&&s.remove(),s=i,n.value.appendChild(i),c(),o("load",e,{width:u,height:d})},i.onerror=t=>{a(),c(),o("error",t,{errMsg:`GET ${e.src} 404 (Not Found)`})},i.src=l},c=()=>{i&&(i.onload=null,i.onerror=null,i=null)};dr((()=>e.src),(e=>l(e))),dr((()=>e.imgSrc),(e=>{!e&&s&&(s.remove(),s=null)})),Xr((()=>l(e.src))),Zr((()=>c()))}(r,e,n,i,o),()=>gi("uni-image",{ref:n},[gi("div",{style:r.modeStyle},null,4),ip[e.mode]?gi(Vf,{onResize:i},null,8,["onResize"]):gi("span",null,null)],512)}});const lp="Google Inc."===navigator.vendor;const cp=xe(!0),up=[];let dp=0,hp=!1;const fp=e=>up.forEach((t=>t.userAction=e));function pp(e={userAction:!1}){if(!hp){["touchstart","touchmove","touchend","mousedown","mouseup"].forEach((e=>{document.addEventListener(e,(function(){!dp&&fp(!0),dp++,setTimeout((()=>{!--dp&&fp(!1)}),0)}),cp)})),hp=!0}up.push(e)}const gp=()=>!!dp;function mp(){const e=Xt({userAction:!1});return Xr((()=>{pp(e)})),Zr((()=>{!function(e){const t=up.indexOf(e);t>=0&&up.splice(t,1)}(e)})),{state:e}}function vp(){const e=Xt({attrs:{}});return Xr((()=>{let t=ki();for(;t;){const n=t.type.__scopeId;n&&(e.attrs[n]=""),t=t.proxy&&"page"===t.proxy.$mpType?null:t.parent}})),{state:e}}function yp(e,t){const n=document.activeElement;if(!n)return t({});const r={};["input","textarea"].includes(n.tagName.toLowerCase())&&(r.start=n.selectionStart,r.end=n.selectionEnd),t(r)}function bp(e,t,n){"number"===t&&isNaN(Number(e))&&(e="");return null==e?"":String(e)}const _p=["none","text","decimal","numeric","tel","search","email","url"],wp=d({},{name:{type:String,default:""},modelValue:{type:[String,Number]},value:{type:[String,Number]},disabled:{type:[Boolean,String],default:!1},autoFocus:{type:[Boolean,String],default:!1},focus:{type:[Boolean,String],default:!1},cursor:{type:[Number,String],default:-1},selectionStart:{type:[Number,String],default:-1},selectionEnd:{type:[Number,String],default:-1},type:{type:String,default:"text"},password:{type:[Boolean,String],default:!1},placeholder:{type:String,default:""},placeholderStyle:{type:String,default:""},placeholderClass:{type:String,default:""},maxlength:{type:[Number,String],default:140},confirmType:{type:String,default:"done"},confirmHold:{type:Boolean,default:!1},ignoreCompositionEvent:{type:Boolean,default:!0},step:{type:String,default:"0.000000000000000001"},inputmode:{type:String,default:void 0,validator:e=>!!~_p.indexOf(e)},cursorColor:{type:String,default:""}},Wf),Sp=["input","focus","blur","update:value","update:modelValue","update:focus","compositionstart","compositionupdate","compositionend","keyboardheightchange"];function xp(e,t,n,r){let o=null;o=Ae((n=>{t.value=bp(n,e.type)}),100,{setTimeout:setTimeout,clearTimeout:clearTimeout}),dr((()=>e.modelValue),o),dr((()=>e.value),o);const i=function(e,t){let n,r,o=0;const i=function(...i){const s=Date.now();clearTimeout(n),r=()=>{r=null,o=s,e.apply(this,i)},s-o{o.cancel(),n("update:modelValue",t.value),n("update:value",t.value),r("input",e,t)}),100);return Yr((()=>{o.cancel(),i.cancel()})),{trigger:r,triggerInput:(e,t,n)=>{o.cancel(),i(e,t),n&&i.flush()}}}function Ep(e,t){mp();const n=zi((()=>e.autoFocus||e.focus));function r(){if(!n.value)return;const e=t.value;e?e.focus():setTimeout(r,100)}dr((()=>e.focus),(e=>{e?r():function(){const e=t.value;e&&e.blur()}()})),Xr((()=>{n.value&&Ln(r)}))}function Tp(e,t,n,r){Fl(Oc(),"getSelectedTextRange",yp);const{fieldRef:o,state:i,trigger:s}=function(e,t,n){const r=hn(null),o=yu(t,n),i=zi((()=>{const t=Number(e.selectionStart);return isNaN(t)?-1:t})),s=zi((()=>{const t=Number(e.selectionEnd);return isNaN(t)?-1:t})),a=zi((()=>{const t=Number(e.cursor);return isNaN(t)?-1:t})),l=zi((()=>{var t=Number(e.maxlength);return isNaN(t)?140:t}));let c="";c=bp(e.modelValue,e.type)||bp(e.value,e.type);const u=Xt({value:c,valueOrigin:c,maxlength:l,focus:e.focus,composing:!1,selectionStart:i,selectionEnd:s,cursor:a});return dr((()=>u.focus),(e=>n("update:focus",e))),dr((()=>u.maxlength),(e=>u.value=u.value.slice(0,e)),{immediate:!1}),{fieldRef:r,state:u,trigger:o}}(e,t,n),{triggerInput:a}=xp(e,i,n,s);Ep(e,o),Kf(0,o);const{state:l}=vp();!function(e,t){const n=Do(Su,!1);if(!n)return;const r=ki(),o={submit(){const n=r.proxy;return[n[e],b(t)?n[t]:t.value]},reset(){b(t)?r.proxy[t]="":t.value=""}};n.addField(o),Zr((()=>{n.removeField(o)}))}("name",i),function(e,t,n,r,o,i){function s(){const n=e.value;n&&t.focus&&t.selectionStart>-1&&t.selectionEnd>-1&&"number"!==n.type&&(n.selectionStart=t.selectionStart,n.selectionEnd=t.selectionEnd)}function a(){const n=e.value;n&&t.focus&&t.selectionStart<0&&t.selectionEnd<0&&t.cursor>-1&&"number"!==n.type&&(n.selectionEnd=n.selectionStart=t.cursor)}function l(e){return"number"===e.type?null:e.selectionEnd}dr([()=>t.selectionStart,()=>t.selectionEnd],s),dr((()=>t.cursor),a),dr((()=>e.value),(function(){const c=e.value;if(!c)return;const u=function(e,r){e.stopPropagation(),y(i)&&!1===i(e,t)||(t.value=c.value,t.composing&&n.ignoreCompositionEvent||o(e,{value:c.value,cursor:l(c)},r))};function d(e){n.ignoreCompositionEvent||r(e.type,e,{value:e.data})}c.addEventListener("change",(e=>e.stopPropagation())),c.addEventListener("focus",(function(e){t.focus=!0,r("focus",e,{value:t.value}),s(),a()})),c.addEventListener("blur",(function(e){t.composing&&(t.composing=!1,u(e,!0)),t.focus=!1,r("blur",e,{value:t.value,cursor:l(e.target)})})),c.addEventListener("input",u),c.addEventListener("compositionstart",(e=>{e.stopPropagation(),t.composing=!0,d(e)})),c.addEventListener("compositionend",(e=>{e.stopPropagation(),t.composing&&(t.composing=!1,u(e)),d(e)})),c.addEventListener("compositionupdate",d)}))}(o,i,e,s,a,r);return{fieldRef:o,state:i,scopedAttrsState:l,fixDisabledColor:0===String(navigator.vendor).indexOf("Apple")&&CSS.supports("image-orientation:from-image"),trigger:s}}const Cp=d({},wp,{placeholderClass:{type:String,default:"input-placeholder"},textContentType:{type:String,default:""}}),Mp=ae((()=>{{const e=navigator.userAgent;let t="";const n=e.match(/OS\s([\w_]+)\slike/);if(n)t=n[1].replace(/_/g,".");else if(/Macintosh|Mac/i.test(e)&&navigator.maxTouchPoints>0){const n=e.match(/Version\/(\S*)\b/);n&&(t=n[1])}return!!t&&parseInt(t)>=16&&parseFloat(t)<17.2}}));function kp(e,t,n,r,o){if(t.value)if("."===e.data){if("."===t.value.slice(-1))return n.value=r.value=t.value=t.value.slice(0,-1),!1;if(t.value&&!t.value.includes("."))return t.value+=".",o&&(o.fn=()=>{n.value=r.value=t.value=t.value.slice(0,-1),r.removeEventListener("blur",o.fn)},r.addEventListener("blur",o.fn)),!1}else if("deleteContentBackward"===e.inputType&&Mp()&&"."===t.value.slice(-2,-1))return t.value=n.value=r.value=t.value.slice(0,-2),!0}const Ap=gu({name:"Input",props:Cp,emits:["confirm",...Sp],setup(e,{emit:t,expose:n}){const r=["text","number","idcard","digit","password","tel"],o=["off","one-time-code"],i=zi((()=>{let t="";switch(e.type){case"text":t="text","search"===e.confirmType&&(t="search");break;case"idcard":t="text";break;case"digit":t="number";break;default:t=r.includes(e.type)?e.type:"text"}return e.password?"password":t})),s=zi((()=>{const t=o.indexOf(e.textContentType),n=o.indexOf(I(e.textContentType));return o[-1!==t?t:-1!==n?n:0]}));let a=function(e,t){if("number"===t.value){const t=void 0===e.modelValue?e.value:e.modelValue,n=hn(null!=t?t.toLocaleString():"");return dr((()=>e.modelValue),(e=>{n.value=null!=e?e.toLocaleString():""})),dr((()=>e.value),(e=>{n.value=null!=e?e.toLocaleString():""})),n}return hn("")}(e,i),l={fn:null};const c=hn(null),{fieldRef:u,state:d,scopedAttrsState:h,fixDisabledColor:f,trigger:p}=Tp(e,c,t,((t,n)=>{const r=t.target;if("number"===i.value){if(l.fn&&(r.removeEventListener("blur",l.fn),l.fn=null),r.validity&&!r.validity.valid){if((!a.value||!r.value)&&"-"===t.data||"-"===a.value[0]&&"deleteContentBackward"===t.inputType)return a.value="-",n.value="",l.fn=()=>{a.value=r.value=""},r.addEventListener("blur",l.fn),!1;const e=kp(t,a,n,r,l);return"boolean"==typeof e?e:(a.value=n.value=r.value="-"===a.value?"":a.value,!1)}{const e=kp(t,a,n,r,l);if("boolean"==typeof e)return e;a.value=r.value}const o=n.maxlength;if(o>0&&r.value.length>o){r.value=r.value.slice(0,o),n.value=r.value;return(void 0!==e.modelValue&&null!==e.modelValue?e.modelValue.toString():"")!==r.value}}}));dr((()=>d.value),(t=>{"number"!==e.type||"-"===a.value&&""===t||(a.value=t.toString())}));const g=["number","digit"],m=zi((()=>g.includes(e.type)?e.step:""));function v(t){if("Enter"!==t.key)return;const n=t.target;t.stopPropagation(),p("confirm",t,{value:n.value}),!e.confirmHold&&n.blur()}return n({$triggerInput:e=>{t("update:modelValue",e.value),t("update:value",e.value),d.value=e.value}}),()=>{let t=e.disabled&&f?gi("input",{key:"disabled-input",ref:u,value:d.value,tabindex:"-1",readonly:!!e.disabled,type:i.value,maxlength:d.maxlength,step:m.value,class:"uni-input-input",style:e.cursorColor?{caretColor:e.cursorColor}:{},onFocus:e=>e.target.blur()},null,44,["value","readonly","type","maxlength","step","onFocus"]):gi("input",{key:"input",ref:u,value:d.value,onInput:e=>{d.value=e.target.value.toString()},disabled:!!e.disabled,type:i.value,maxlength:d.maxlength,step:m.value,enterkeyhint:e.confirmType,pattern:"number"===e.type?"[0-9]*":void 0,class:"uni-input-input",style:e.cursorColor?{caretColor:e.cursorColor}:{},autocomplete:s.value,onKeyup:v,inputmode:e.inputmode},null,44,["value","onInput","disabled","type","maxlength","step","enterkeyhint","pattern","autocomplete","onKeyup","inputmode"]);return gi("uni-input",{ref:c},[gi("div",{class:"uni-input-wrapper"},[mr(gi("div",xi(h.attrs,{style:e.placeholderStyle,class:["uni-input-placeholder",e.placeholderClass]}),[e.placeholder],16),[[as,!(d.value.length||"-"===a.value||a.value.includes("."))]]),"search"===e.confirmType?gi("form",{action:"",onSubmit:e=>e.preventDefault(),class:"uni-input-form"},[t],40,["onSubmit"]):t])],512)}}});const Dp=["class","style"],Op=/^on[A-Z]+/,Ip=(e={})=>{const{excludeListeners:t=!1,excludeKeys:n=[]}=e,r=ki(),o=fn({}),i=fn({}),s=fn({}),a=n.concat(Dp);return r.attrs=Xt(r.attrs),cr((()=>{const e=(n=r.attrs,Object.keys(n).map((e=>[e,n[e]]))).reduce(((e,[n,r])=>(a.includes(n)?e.exclude[n]=r:Op.test(n)?(t||(e.attrs[n]=r),e.listeners[n]=r):e.attrs[n]=r,e)),{exclude:{},attrs:{},listeners:{}});var n;o.value=e.attrs,i.value=e.listeners,s.value=e.exclude})),{$attrs:o,$listeners:i,$excludeAttrs:s}};function Pp(e){const t=[];return g(e)&&e.forEach((e=>{ci(e)?e.type===Jo?t.push(...Pp(e.children)):t.push(e):g(e)&&t.push(...Pp(e))})),t}const Bp=gu({inheritAttrs:!1,name:"MovableArea",props:{scaleArea:{type:Boolean,default:!1}},setup(e,{slots:t}){const n=hn(null),r=hn(!1);let{setContexts:o,events:i}=function(e,t){const n=hn(0),r=hn(0),o=Xt({x:null,y:null}),i=hn(null);let s=null,a=[];function l(t){t&&1!==t&&(e.scaleArea?a.forEach((function(e){e._setScale(t)})):s&&s._setScale(t))}function c(e,n=a){let r=t.value;function o(e){for(let t=0;t{let n=t.touches;if(n&&n.length>1){let t={x:n[1].pageX-n[0].pageX,y:n[1].pageY-n[0].pageY};if(i.value=Rp(t),o.x=t.x,o.y=t.y,!e.scaleArea){let e=c(n[0].target),t=c(n[1].target);s=e&&e===t?e:null}}})),d=vu((e=>{let t=e.touches;if(t&&t.length>1){e.preventDefault();let n={x:t[1].pageX-t[0].pageX,y:t[1].pageY-t[0].pageY};if(null!==o.x&&i.value&&i.value>0){l(Rp(n)/i.value)}o.x=n.x,o.y=n.y}})),h=vu((t=>{let n=t.touches;n&&n.length||t.changedTouches&&(o.x=0,o.y=0,i.value=null,e.scaleArea?a.forEach((function(e){e._endScale()})):s&&s._endScale())}));function f(){p(),a.forEach((function(e,t){e.setParent()}))}function p(){let e=window.getComputedStyle(t.value),o=t.value.getBoundingClientRect();n.value=o.width-["Left","Right"].reduce((function(t,n){const r="padding"+n;return t+parseFloat(e["border"+n+"Width"])+parseFloat(e[r])}),0),r.value=o.height-["Top","Bottom"].reduce((function(t,n){const r="padding"+n;return t+parseFloat(e["border"+n+"Width"])+parseFloat(e[r])}),0)}return Ao("movableAreaWidth",n),Ao("movableAreaHeight",r),{setContexts(e){a=e},events:{_onTouchstart:u,_onTouchmove:d,_onTouchend:h,_resize:f}}}(e,n);const{$listeners:s,$attrs:a,$excludeAttrs:l}=Ip(),c=s.value;["onTouchstart","onTouchmove","onTouchend"].forEach((e=>{let t=c[e],n=i[`_${e}`];c[e]=t?[].concat(t,n):n})),Xr((()=>{i._resize(),r.value=!0}));let u=[];const d=[];function h(){const e=[];for(let t=0;tn===e.rootRef.value));r&&e.push(on(r))}o(e)}return Ao("_isMounted",r),Ao("movableAreaRootRef",n),Ao("addMovableViewContext",(e=>{d.push(e),h()})),Ao("removeMovableViewContext",(e=>{const t=d.indexOf(e);t>=0&&(d.splice(t,1),h())})),()=>{const e=t.default&&t.default();return u=Pp(e),gi("uni-movable-area",xi({ref:n},a.value,l.value,c),[gi(Vf,{onResize:i._resize},null,8,["onResize"]),u],16)}}});function Rp(e){return Math.sqrt(e.x*e.x+e.y*e.y)}const Lp=function(e,t,n,r){e.addEventListener(t,(e=>{y(n)&&!1===n(e)&&((void 0===e.cancelable||e.cancelable)&&e.preventDefault(),e.stopPropagation())}),{passive:!1})};let Np,$p;function zp(e,t,n){Zr((()=>{document.removeEventListener("mousemove",Np),document.removeEventListener("mouseup",$p)}));let r=0,o=0,i=0,s=0;const a=function(e,n,a,l){if(!1===t({cancelable:e.cancelable,target:e.target,currentTarget:e.currentTarget,preventDefault:e.preventDefault.bind(e),stopPropagation:e.stopPropagation.bind(e),touches:e.touches,changedTouches:e.changedTouches,detail:{state:n,x:a,y:l,dx:a-r,dy:l-o,ddx:a-i,ddy:l-s,timeStamp:e.timeStamp}}))return!1};let l,c,u=null;Lp(e,"touchstart",(function(e){if(l=!0,1===e.touches.length&&!u)return u=e,r=i=e.touches[0].pageX,o=s=e.touches[0].pageY,a(e,"start",r,o)})),Lp(e,"mousedown",(function(e){if(c=!0,!l&&!u)return u=e,r=i=e.pageX,o=s=e.pageY,a(e,"start",r,o)})),Lp(e,"touchmove",(function(e){if(1===e.touches.length&&u){const t=a(e,"move",e.touches[0].pageX,e.touches[0].pageY);return i=e.touches[0].pageX,s=e.touches[0].pageY,t}}));const d=Np=function(e){if(!l&&c&&u){const t=a(e,"move",e.pageX,e.pageY);return i=e.pageX,s=e.pageY,t}};document.addEventListener("mousemove",d),Lp(e,"touchend",(function(e){if(0===e.touches.length&&u)return l=!1,u=null,a(e,"end",e.changedTouches[0].pageX,e.changedTouches[0].pageY)}));const h=$p=function(e){if(c=!1,!l&&u)return u=null,a(e,"end",e.pageX,e.pageY)};document.addEventListener("mouseup",h),Lp(e,"touchcancel",(function(e){if(u){l=!1;const t=u;return u=null,a(e,n?"cancel":"end",t.touches[0].pageX,t.touches[0].pageY)}}))}function jp(e,t,n){return e>t-n&&ethis._t&&(e=this._t,this._lastDt=e);let t=this._x_v*e+.5*this._x_a*Math.pow(e,2)+this._x_s,n=this._y_v*e+.5*this._y_a*Math.pow(e,2)+this._y_s;return(this._x_a>0&&tthis._endPositionX)&&(t=this._endPositionX),(this._y_a>0&&nthis._endPositionY)&&(n=this._endPositionY),{x:t,y:n}},Fp.prototype.ds=function(e){return void 0===e&&(e=((new Date).getTime()-this._startTime)/1e3),e>this._t&&(e=this._t),{dx:this._x_v+this._x_a*e,dy:this._y_v+this._y_a*e}},Fp.prototype.delta=function(){return{x:-1.5*Math.pow(this._x_v,2)/this._x_a||0,y:-1.5*Math.pow(this._y_v,2)/this._y_a||0}},Fp.prototype.dt=function(){return-this._x_v/this._x_a},Fp.prototype.done=function(){const e=jp(this.s().x,this._endPositionX)||jp(this.s().y,this._endPositionY)||this._lastDt===this._t;return this._lastDt=null,e},Fp.prototype.setEnd=function(e,t){this._endPositionX=e,this._endPositionY=t},Fp.prototype.reconfigure=function(e,t){this._m=e,this._f=1e3*t},qp.prototype._solve=function(e,t){const n=this._c,r=this._m,o=this._k,i=n*n-4*r*o;if(0===i){const o=-n/(2*r),i=e,s=t/(o*e);return{x:function(e){return(i+s*e)*Math.pow(Math.E,o*e)},dx:function(e){const t=Math.pow(Math.E,o*e);return o*(i+s*e)*t+s*t}}}if(i>0){const o=(-n-Math.sqrt(i))/(2*r),s=(-n+Math.sqrt(i))/(2*r),a=(t-o*e)/(s-o),l=e-a;return{x:function(e){let t,n;return e===this._t&&(t=this._powER1T,n=this._powER2T),this._t=e,t||(t=this._powER1T=Math.pow(Math.E,o*e)),n||(n=this._powER2T=Math.pow(Math.E,s*e)),l*t+a*n},dx:function(e){let t,n;return e===this._t&&(t=this._powER1T,n=this._powER2T),this._t=e,t||(t=this._powER1T=Math.pow(Math.E,o*e)),n||(n=this._powER2T=Math.pow(Math.E,s*e)),l*o*t+a*s*n}}}const s=Math.sqrt(4*r*o-n*n)/(2*r),a=-n/2*r,l=e,c=(t-a*e)/s;return{x:function(e){return Math.pow(Math.E,a*e)*(l*Math.cos(s*e)+c*Math.sin(s*e))},dx:function(e){const t=Math.pow(Math.E,a*e),n=Math.cos(s*e),r=Math.sin(s*e);return t*(c*s*n-l*s*r)+a*t*(c*r+l*n)}}},qp.prototype.x=function(e){return void 0===e&&(e=((new Date).getTime()-this._startTime)/1e3),this._solution?this._endPosition+this._solution.x(e):0},qp.prototype.dx=function(e){return void 0===e&&(e=((new Date).getTime()-this._startTime)/1e3),this._solution?this._solution.dx(e):0},qp.prototype.setEnd=function(e,t,n){if(n||(n=(new Date).getTime()),e!==this._endPosition||!Vp(t,.1)){t=t||0;let r=this._endPosition;this._solution&&(Vp(t,.1)&&(t=this._solution.dx((n-this._startTime)/1e3)),r=this._solution.x((n-this._startTime)/1e3),Vp(t,.1)&&(t=0),Vp(r,.1)&&(r=0),r+=this._endPosition),this._solution&&Vp(r-e,.1)&&Vp(t,.1)||(this._endPosition=e,this._solution=this._solve(r-this._endPosition,t),this._startTime=n)}},qp.prototype.snap=function(e){this._startTime=(new Date).getTime(),this._endPosition=e,this._solution={x:function(){return 0},dx:function(){return 0}}},qp.prototype.done=function(e){return e||(e=(new Date).getTime()),jp(this.x(),this._endPosition,.1)&&Vp(this.dx(),.1)},qp.prototype.reconfigure=function(e,t,n){this._m=e,this._k=t,this._c=n,this.done()||(this._solution=this._solve(this.x()-this._endPosition,this.dx()),this._startTime=(new Date).getTime())},qp.prototype.springConstant=function(){return this._k},qp.prototype.damping=function(){return this._c},qp.prototype.configuration=function(){return[{label:"Spring Constant",read:this.springConstant.bind(this),write:function(e,t){e.reconfigure(1,t,e.damping())}.bind(this,this),min:100,max:1e3},{label:"Damping",read:this.damping.bind(this),write:function(e,t){e.reconfigure(1,e.springConstant(),t)}.bind(this,this),min:1,max:500}]},Up.prototype.setEnd=function(e,t,n,r){const o=(new Date).getTime();this._springX.setEnd(e,r,o),this._springY.setEnd(t,r,o),this._springScale.setEnd(n,r,o),this._startTime=o},Up.prototype.x=function(){const e=((new Date).getTime()-this._startTime)/1e3;return{x:this._springX.x(e),y:this._springY.x(e),scale:this._springScale.x(e)}},Up.prototype.done=function(){const e=(new Date).getTime();return this._springX.done(e)&&this._springY.done(e)&&this._springScale.done(e)},Up.prototype.reconfigure=function(e,t,n){this._springX.reconfigure(e,t,n),this._springY.reconfigure(e,t,n),this._springScale.reconfigure(e,t,n)};function Wp(e,t){return+((1e3*e-1e3*t)/1e3).toFixed(1)}const Kp=gu({name:"MovableView",props:{direction:{type:String,default:"none"},inertia:{type:[Boolean,String],default:!1},outOfBounds:{type:[Boolean,String],default:!1},x:{type:[Number,String],default:0},y:{type:[Number,String],default:0},damping:{type:[Number,String],default:20},friction:{type:[Number,String],default:2},disabled:{type:[Boolean,String],default:!1},scale:{type:[Boolean,String],default:!1},scaleMin:{type:[Number,String],default:.1},scaleMax:{type:[Number,String],default:10},scaleValue:{type:[Number,String],default:1},animation:{type:[Boolean,String],default:!0}},emits:["change","scale"],setup(e,{slots:t,emit:n}){const r=hn(null),o=yu(r,n),{setParent:i}=function(e,t,n){const r=Do("_isMounted",hn(!1)),o=Do("addMovableViewContext",(()=>{})),i=Do("removeMovableViewContext",(()=>{}));let s,a,l=hn(1),c=hn(1),u=hn(!1),d=hn(0),h=hn(0),f=null,p=null,g=!1,m=null,v=null;const y=new Hp,b=new Hp,_={historyX:[0,0],historyY:[0,0],historyT:[0,0]},w=zi((()=>{let t=Number(e.friction);return isNaN(t)||t<=0?2:t})),S=new Fp(1,w.value);dr((()=>e.disabled),(()=>{U()}));const{_updateOldScale:x,_endScale:E,_setScale:T,scaleValueSync:C,_updateBoundary:M,_updateOffset:k,_updateWH:A,_scaleOffset:D,minX:O,minY:I,maxX:P,maxY:B,FAandSFACancel:R,_getLimitXY:L,_setTransform:N,_revise:$,dampingNumber:z,xMove:j,yMove:V,xSync:H,ySync:F,_STD:q}=function(e,t,n,r,o,i,s,a,l,c){const u=zi((()=>{let t=Number(e.scaleMin);return isNaN(t)?.1:t})),d=zi((()=>{let t=Number(e.scaleMax);return isNaN(t)?10:t})),h=hn(Number(e.scaleValue)||1);dr(h,(e=>{N(e)})),dr(u,(()=>{L()})),dr(d,(()=>{L()})),dr((()=>e.scaleValue),(e=>{h.value=Number(e)||0}));const{_updateBoundary:f,_updateOffset:p,_updateWH:g,_scaleOffset:m,minX:v,minY:y,maxX:b,maxY:_}=function(e,t,n){const r=Do("movableAreaWidth",hn(0)),o=Do("movableAreaHeight",hn(0)),i=Do("movableAreaRootRef"),s={x:0,y:0},a={x:0,y:0},l=hn(0),c=hn(0),u=hn(0),d=hn(0),h=hn(0),f=hn(0);function p(){let e=0-s.x+a.x,t=r.value-l.value-s.x-a.x;u.value=Math.min(e,t),h.value=Math.max(e,t);let n=0-s.y+a.y,i=o.value-c.value-s.y-a.y;d.value=Math.min(n,i),f.value=Math.max(n,i)}function g(){s.x=Gp(e.value,i.value),s.y=Jp(e.value,i.value)}function m(r){r=r||t.value,r=n(r);let o=e.value.getBoundingClientRect();c.value=o.height/t.value,l.value=o.width/t.value;let i=c.value*r,s=l.value*r;a.x=(s-l.value)/2,a.y=(i-c.value)/2}return{_updateBoundary:p,_updateOffset:g,_updateWH:m,_scaleOffset:a,minX:u,minY:d,maxX:h,maxY:f}}(t,r,R),{FAandSFACancel:w,_getLimitXY:S,_animationTo:x,_setTransform:E,_revise:T,dampingNumber:C,xMove:M,yMove:k,xSync:A,ySync:D,_STD:O}=function(e,t,n,r,o,i,s,a,l,c,u,d,h,f){const p=zi((()=>{let e=Number(t.damping);return isNaN(e)?20:e})),g=zi((()=>"all"===t.direction||"horizontal"===t.direction)),m=zi((()=>"all"===t.direction||"vertical"===t.direction)),v=hn(Qp(t.x)),y=hn(Qp(t.y));dr((()=>t.x),(e=>{v.value=Qp(e)})),dr((()=>t.y),(e=>{y.value=Qp(e)})),dr(v,(e=>{T(e)})),dr(y,(e=>{C(e)}));const b=new Up(1,9*Math.pow(p.value,2)/40,p.value);function _(e,t){let n=!1;return e>o.value?(e=o.value,n=!0):ei.value?(t=i.value,n=!0):t1?"htouchmove":"vtouchmove"),j.value&&(n=t.detail.dx+s,_.historyX.shift(),_.historyX.push(n),V.value||null!==m||(m=Math.abs(t.detail.dx/t.detail.dy)<1)),V.value&&(r=t.detail.dy+a,_.historyY.shift(),_.historyY.push(r),j.value||null!==m||(m=Math.abs(t.detail.dy/t.detail.dx)<1)),_.historyT.shift(),_.historyT.push(t.detail.timeStamp),!m){t.preventDefault();let o="touch";nP.value&&(e.outOfBounds?(o="touch-out-of-bounds",n=P.value+y.x(n-P.value)):n=P.value),rB.value&&(e.outOfBounds?(o="touch-out-of-bounds",r=B.value+b.x(r-B.value)):r=B.value),Xp((function(){N(n,r,l.value,o)}))}}}function K(){if(!u.value&&!e.disabled&&g&&(n.value.style.willChange="auto",g=!1,!m&&!$("out-of-bounds")&&e.inertia)){const e=1e3*(_.historyX[1]-_.historyX[0])/(_.historyT[1]-_.historyT[0]),t=1e3*(_.historyY[1]-_.historyY[0])/(_.historyT[1]-_.historyT[0]),n=d.value,r=h.value;S.setV(e,t),S.setS(n,r);const o=S.delta().x,i=S.delta().y;let s=o+n,a=i+r;sP.value&&(s=P.value,a=r+(P.value-n)*i/o),aB.value&&(a=B.value,s=n+(B.value-r)*o/i),S.setEnd(s,a),p=Zp(S,(function(){let e=S.s(),t=e.x,n=e.y;N(t,n,l.value,"friction")}),(function(){p.cancel()}))}e.outOfBounds||e.inertia||R()}function Y(){if(!r.value)return;R();let t=e.scale?C.value:1;k(),A(t),M();let n=L(H.value+D.x,F.value+D.y),o=n.x,i=n.y;N(o,i,t,"",!0),x(t)}return Xr((()=>{zp(n.value,(e=>{switch(e.detail.state){case"start":U();break;case"move":W(e);break;case"end":K()}})),Y(),S.reconfigure(1,w.value),q.reconfigure(1,9*Math.pow(z.value,2)/40,z.value),n.value.style.transformOrigin="center";const e={rootRef:n,setParent:Y,_endScale:E,_setScale:T};o(e),Qr((()=>{i(e)}))})),Qr((()=>{R()})),{setParent:Y}}(e,o,r);return()=>gi("uni-movable-view",{ref:r},[gi(Vf,{onResize:i},null,8,["onResize"]),t.default&&t.default()],512)}});let Yp=!1;function Xp(e){Yp||(Yp=!0,requestAnimationFrame((function(){e(),Yp=!1})))}function Gp(e,t){if(e===t)return 0;let n=e.offsetLeft;return e.offsetParent?n+=Gp(e.offsetParent,t):0}function Jp(e,t){if(e===t)return 0;let n=e.offsetTop;return e.offsetParent?n+=Jp(e.offsetParent,t):0}function Zp(e,t,n){let r={id:0,cancelled:!1};return function e(t,n,r,o){if(!t||!t.cancelled){r(n);let i=n.done();i||t.cancelled||(t.id=requestAnimationFrame(e.bind(null,t,n,r,o))),i&&o&&o(n)}}(r,e,t,n),{cancel:function(e){e&&e.id&&cancelAnimationFrame(e.id),e&&(e.cancelled=!0)}.bind(null,r),model:e}}function Qp(e){return/\d+[ur]px$/i.test(e)?Md(parseFloat(e)):Number(e)||0}const eg=gu({name:"PickerView",props:{value:{type:Array,default:()=>[],validator:function(e){return g(e)&&e.filter((e=>"number"==typeof e)).length===e.length}},indicatorStyle:{type:String,default:""},indicatorClass:{type:String,default:""},maskStyle:{type:String,default:""},maskClass:{type:String,default:""}},emits:["change","pickstart","pickend","update:value"],setup(e,{slots:t,emit:n}){const r=hn(null),o=hn(null),i=yu(r,n),s=function(e){const t=Xt([...e.value]),n=Xt({value:t,height:34});return dr((()=>e.value),((e,t)=>{n.value.length=e.length,e.forEach(((e,t)=>{e!==n.value[t]&&n.value.splice(t,1,e)}))})),n}(e),a=hn(null);Xr((()=>{const e=a.value;e&&(s.height=e.$el.offsetHeight)}));let l=hn([]),c=hn([]);function u(e){let t=c.value;t=t.filter((e=>e.type!==Qo));let n=t.indexOf(e);return-1!==n?n:l.value.indexOf(e)}return Ao("getPickerViewColumn",(function(e){return zi({get(){const t=u(e.vnode);return s.value[t]||0},set(t){const r=u(e.vnode);if(r<0)return;if(s.value[r]!==t){s.value[r]=t;const e=s.value.map((e=>e));n("update:value",e),i("change",{},{value:e})}}})})),Ao("pickerViewProps",e),Ao("pickerViewState",s),()=>{const e=t.default&&t.default();{const t=Pp(e);l.value=t,Ln((()=>{c.value=t}))}return gi("uni-picker-view",{ref:r},[gi(Vf,{ref:a,onResize:({height:e})=>s.height=e},null,8,["onResize"]),gi("div",{ref:o,class:"uni-picker-view-wrapper"},[e],512)],512)}}});class tg{constructor(e){this._drag=e,this._dragLog=Math.log(e),this._x=0,this._v=0,this._startTime=0}set(e,t){this._x=e,this._v=t,this._startTime=(new Date).getTime()}setVelocityByEnd(e){this._v=(e-this._x)*this._dragLog/(Math.pow(this._drag,100)-1)}x(e){void 0===e&&(e=((new Date).getTime()-this._startTime)/1e3);const t=e===this._dt&&this._powDragDt?this._powDragDt:this._powDragDt=Math.pow(this._drag,e);return this._dt=e,this._x+this._v*t/this._dragLog-this._v/this._dragLog}dx(e){void 0===e&&(e=((new Date).getTime()-this._startTime)/1e3);const t=e===this._dt&&this._powDragDt?this._powDragDt:this._powDragDt=Math.pow(this._drag,e);return this._dt=e,this._v*t}done(){return Math.abs(this.dx())<3}reconfigure(e){const t=this.x(),n=this.dx();this._drag=e,this._dragLog=Math.log(e),this.set(t,n)}configuration(){const e=this;return[{label:"Friction",read:function(){return e._drag},write:function(t){e.reconfigure(t)},min:.001,max:.1,step:.001}]}}function ng(e,t,n){return e>t-n&&e0){const o=(-n-Math.sqrt(i))/(2*r),s=(-n+Math.sqrt(i))/(2*r),a=(t-o*e)/(s-o),l=e-a;return{x:function(e){let t,n;return e===this._t&&(t=this._powER1T,n=this._powER2T),this._t=e,t||(t=this._powER1T=Math.pow(Math.E,o*e)),n||(n=this._powER2T=Math.pow(Math.E,s*e)),l*t+a*n},dx:function(e){let t,n;return e===this._t&&(t=this._powER1T,n=this._powER2T),this._t=e,t||(t=this._powER1T=Math.pow(Math.E,o*e)),n||(n=this._powER2T=Math.pow(Math.E,s*e)),l*o*t+a*s*n}}}const s=Math.sqrt(4*r*o-n*n)/(2*r),a=-n/2*r,l=e,c=(t-a*e)/s;return{x:function(e){return Math.pow(Math.E,a*e)*(l*Math.cos(s*e)+c*Math.sin(s*e))},dx:function(e){const t=Math.pow(Math.E,a*e),n=Math.cos(s*e),r=Math.sin(s*e);return t*(c*s*n-l*s*r)+a*t*(c*r+l*n)}}}x(e){return void 0===e&&(e=((new Date).getTime()-this._startTime)/1e3),this._solution?this._endPosition+this._solution.x(e):0}dx(e){return void 0===e&&(e=((new Date).getTime()-this._startTime)/1e3),this._solution?this._solution.dx(e):0}setEnd(e,t,n){if(n||(n=(new Date).getTime()),e!==this._endPosition||!rg(t,.4)){t=t||0;let r=this._endPosition;this._solution&&(rg(t,.4)&&(t=this._solution.dx((n-this._startTime)/1e3)),r=this._solution.x((n-this._startTime)/1e3),rg(t,.4)&&(t=0),rg(r,.4)&&(r=0),r+=this._endPosition),this._solution&&rg(r-e,.4)&&rg(t,.4)||(this._endPosition=e,this._solution=this._solve(r-this._endPosition,t),this._startTime=n)}}snap(e){this._startTime=(new Date).getTime(),this._endPosition=e,this._solution={x:function(){return 0},dx:function(){return 0}}}done(e){return e||(e=(new Date).getTime()),ng(this.x(),this._endPosition,.4)&&rg(this.dx(),.4)}reconfigure(e,t,n){this._m=e,this._k=t,this._c=n,this.done()||(this._solution=this._solve(this.x()-this._endPosition,this.dx()),this._startTime=(new Date).getTime())}springConstant(){return this._k}damping(){return this._c}configuration(){return[{label:"Spring Constant",read:this.springConstant.bind(this),write:function(e,t){e.reconfigure(1,t,e.damping())}.bind(this,this),min:100,max:1e3},{label:"Damping",read:this.damping.bind(this),write:function(e,t){e.reconfigure(1,e.springConstant(),t)}.bind(this,this),min:1,max:500}]}}class ig{constructor(e,t,n){this._extent=e,this._friction=t||new tg(.01),this._spring=n||new og(1,90,20),this._startTime=0,this._springing=!1,this._springOffset=0}snap(e,t){this._springOffset=0,this._springing=!0,this._spring.snap(e),this._spring.setEnd(t)}set(e,t){this._friction.set(e,t),e>0&&t>=0?(this._springOffset=0,this._springing=!0,this._spring.snap(e),this._spring.setEnd(0)):e<-this._extent&&t<=0?(this._springOffset=0,this._springing=!0,this._spring.snap(e),this._spring.setEnd(-this._extent)):this._springing=!1,this._startTime=(new Date).getTime()}x(e){if(!this._startTime)return 0;if(e||(e=((new Date).getTime()-this._startTime)/1e3),this._springing)return this._spring.x()+this._springOffset;let t=this._friction.x(e),n=this.dx(e);return(t>0&&n>=0||t<-this._extent&&n<=0)&&(this._springing=!0,this._spring.setEnd(0,n),t<-this._extent?this._springOffset=-this._extent:this._springOffset=0,t=this._spring.x()+this._springOffset),t}dx(e){let t;return t=this._lastTime===e?this._lastDx:this._springing?this._spring.dx(e):this._friction.dx(e),this._lastTime=e,this._lastDx=t,t}done(){return this._springing?this._spring.done():this._friction.done()}setVelocityByEnd(e){this._friction.setVelocityByEnd(e)}configuration(){const e=this._friction.configuration();return e.push.apply(e,this._spring.configuration()),e}}class sg{constructor(e,t){t=t||{},this._element=e,this._options=t,this._enableSnap=t.enableSnap||!1,this._itemSize=t.itemSize||0,this._enableX=t.enableX||!1,this._enableY=t.enableY||!1,this._shouldDispatchScrollEvent=!!t.onScroll,this._enableX?(this._extent=(t.scrollWidth||this._element.offsetWidth)-this._element.parentElement.offsetWidth,this._scrollWidth=t.scrollWidth):(this._extent=(t.scrollHeight||this._element.offsetHeight)-this._element.parentElement.offsetHeight,this._scrollHeight=t.scrollHeight),this._position=0,this._scroll=new ig(this._extent,t.friction,t.spring),this._onTransitionEnd=this.onTransitionEnd.bind(this),this.updatePosition()}onTouchStart(){this._startPosition=this._position,this._lastChangePos=this._startPosition,this._startPosition>0?this._startPosition/=.5:this._startPosition<-this._extent&&(this._startPosition=(this._startPosition+this._extent)/.5-this._extent),this._animation&&(this._animation.cancel(),this._scrolling=!1),this.updatePosition()}onTouchMove(e,t){let n=this._startPosition;this._enableX?n+=e:this._enableY&&(n+=t),n>0?n*=.5:n<-this._extent&&(n=.5*(n+this._extent)-this._extent),this._position=n,this.updatePosition(),this.dispatchScroll()}onTouchEnd(e,t,n){if(this._enableSnap&&this._position>-this._extent&&this._position<0){if(this._enableY&&(Math.abs(t)this._itemSize/2?e-(this._itemSize-Math.abs(t)):e-t,r<=0&&r>=-this._extent&&this._scroll.setVelocityByEnd(r)}this._lastTime=Date.now(),this._lastDelay=0,this._scrolling=!0,this._lastChangePos=this._position,this._lastIdx=Math.floor(Math.abs(this._position/this._itemSize)),this._animation=function(e,t,n){const r={id:0,cancelled:!1};return function e(t,n,r,o){if(!t||!t.cancelled){r(n);const i=n.done();i||t.cancelled||(t.id=requestAnimationFrame(e.bind(null,t,n,r,o))),i&&o&&o(n)}}(r,e,t,n),{cancel:function(e){e&&e.id&&cancelAnimationFrame(e.id),e&&(e.cancelled=!0)}.bind(null,r),model:e}}(this._scroll,(()=>{const e=Date.now(),t=(e-this._scroll._startTime)/1e3,n=this._scroll.x(t);this._position=n,this.updatePosition();const r=this._scroll.dx(t);this._shouldDispatchScrollEvent&&e-this._lastTime>this._lastDelay&&(this.dispatchScroll(),this._lastDelay=Math.abs(2e3/r),this._lastTime=e)}),(()=>{this._enableSnap&&(r<=0&&r>=-this._extent&&(this._position=r,this.updatePosition()),y(this._options.onSnap)&&this._options.onSnap(Math.floor(Math.abs(this._position)/this._itemSize))),this._shouldDispatchScrollEvent&&this.dispatchScroll(),this._scrolling=!1}))}onTransitionEnd(){this._element.style.webkitTransition="",this._element.style.transition="",this._element.removeEventListener("transitionend",this._onTransitionEnd),this._snapping&&(this._snapping=!1),this.dispatchScroll()}snap(){const e=this._itemSize,t=this._position%e,n=Math.abs(t)>this._itemSize/2?this._position-(e-Math.abs(t)):this._position-t;this._position!==n&&(this._snapping=!0,this.scrollTo(-n),y(this._options.onSnap)&&this._options.onSnap(Math.floor(Math.abs(this._position)/this._itemSize)))}scrollTo(e,t){this._animation&&(this._animation.cancel(),this._scrolling=!1),"number"==typeof e&&(this._position=-e),this._position<-this._extent?this._position=-this._extent:this._position>0&&(this._position=0);const n="transform "+(t||.2)+"s ease-out";this._element.style.webkitTransition="-webkit-"+n,this._element.style.transition=n,this.updatePosition(),this._element.addEventListener("transitionend",this._onTransitionEnd)}dispatchScroll(){if(y(this._options.onScroll)&&Math.round(Number(this._lastPos))!==Math.round(this._position)){this._lastPos=this._position;const e={target:{scrollLeft:this._enableX?-this._position:0,scrollTop:this._enableY?-this._position:0,scrollHeight:this._scrollHeight||this._element.offsetHeight,scrollWidth:this._scrollWidth||this._element.offsetWidth,offsetHeight:this._element.parentElement.offsetHeight,offsetWidth:this._element.parentElement.offsetWidth}};this._options.onScroll(e)}}update(e,t,n){let r=0;const o=this._position;this._enableX?(r=this._element.childNodes.length?(t||this._element.offsetWidth)-this._element.parentElement.offsetWidth:0,this._scrollWidth=t):(r=this._element.childNodes.length?(t||this._element.offsetHeight)-this._element.parentElement.offsetHeight:0,this._scrollHeight=t),"number"==typeof e&&(this._position=-e),this._position<-r?this._position=-r:this._position>0&&(this._position=0),this._itemSize=n||this._itemSize,this.updatePosition(),o!==this._position&&(this.dispatchScroll(),y(this._options.onSnap)&&this._options.onSnap(Math.floor(Math.abs(this._position)/this._itemSize))),this._extent=r,this._scroll._extent=r}updatePosition(){let e="";this._enableX?e="translateX("+this._position+"px) translateZ(0)":this._enableY&&(e="translateY("+this._position+"px) translateZ(0)"),this._element.style.webkitTransform=e,this._element.style.transform=e}isScrolling(){return this._scrolling||this._snapping}}const ag=gu({name:"PickerViewColumn",setup(e,{slots:t,emit:n}){const r=hn(null),o=hn(null),i=Do("getPickerViewColumn"),s=ki(),a=i?i(s):hn(0),l=Do("pickerViewProps"),c=Do("pickerViewState"),u=hn(34),d=hn(null);Xr((()=>{const e=d.value;u.value=e.$el.offsetHeight}));const h=zi((()=>(c.height-u.value)/2)),{state:f}=vp();let p;const g=Xt({current:a.value,length:0});let m;function v(){p&&!m&&(m=!0,Ln((()=>{m=!1;let e=Math.min(g.current,g.length-1);e=Math.max(e,0),p.update(e*u.value,void 0,u.value)})))}dr((()=>a.value),(e=>{e!==g.current&&(g.current=e,v())})),dr((()=>g.current),(e=>a.value=e)),dr([()=>u.value,()=>g.length,()=>c.height],v);let y=0;function b(e){const t=y+e.deltaY;if(Math.abs(t)>10){y=0;let e=Math.min(g.current+(t<0?-1:1),g.length-1);g.current=e=Math.max(e,0),p.scrollTo(e*u.value)}else y=t;e.preventDefault()}function _({clientY:e}){const t=r.value;if(!p.isScrolling()){const n=e-t.getBoundingClientRect().top-c.height/2,r=u.value/2;if(!(Math.abs(n)<=r)){const e=Math.ceil((Math.abs(n)-r)/u.value),t=n<0?-e:e;let o=Math.min(g.current+t,g.length-1);g.current=o=Math.max(o,0),p.scrollTo(o*u.value)}}}const w=()=>{const e=r.value,t=o.value,{scroller:n,handleTouchStart:i,handleTouchMove:s,handleTouchEnd:a}=function(e,t){const n={trackingID:-1,maxDy:0,maxDx:0},r=new sg(e,t);function o(e){const t=e,r=e;return"move"===t.detail.state||"end"===t.detail.state?{x:t.detail.dx,y:t.detail.dy}:{x:r.screenX-n.x,y:r.screenY-n.y}}return{scroller:r,handleTouchStart:function(e){const t=e,o=e;"start"===t.detail.state?(n.trackingID="touch",n.x=t.detail.x,n.y=t.detail.y):(n.trackingID="mouse",n.x=o.screenX,n.y=o.screenY),n.maxDx=0,n.maxDy=0,n.historyX=[0],n.historyY=[0],n.historyTime=[t.detail.timeStamp||o.timeStamp],n.listener=r,r.onTouchStart&&r.onTouchStart(),("boolean"!=typeof e.cancelable||e.cancelable)&&e.preventDefault()},handleTouchMove:function(e){const t=e,r=e;if(-1!==n.trackingID){("boolean"!=typeof e.cancelable||e.cancelable)&&e.preventDefault();const i=o(e);if(i){for(n.maxDy=Math.max(n.maxDy,Math.abs(i.y)),n.maxDx=Math.max(n.maxDx,Math.abs(i.x)),n.historyX.push(i.x),n.historyY.push(i.y),n.historyTime.push(t.detail.timeStamp||r.timeStamp);n.historyTime.length>10;)n.historyTime.shift(),n.historyX.shift(),n.historyY.shift();n.listener&&n.listener.onTouchMove&&n.listener.onTouchMove(i.x,i.y)}}},handleTouchEnd:function(e){if(-1!==n.trackingID){e.preventDefault();const t=o(e);if(t){const e=n.listener;n.trackingID=-1,n.listener=null;const r={x:0,y:0};if(n.historyTime.length>2)for(let t=n.historyTime.length-1,o=n.historyTime[t],i=n.historyX[t],s=n.historyY[t];t>0;){t--;const e=o-n.historyTime[t];if(e>30&&e<50){r.x=(i-n.historyX[t])/(e/1e3),r.y=(s-n.historyY[t])/(e/1e3);break}}n.historyTime=[],n.historyX=[],n.historyY=[],e&&e.onTouchEnd&&e.onTouchEnd(t.x,t.y,r)}}}}}(t,{enableY:!0,enableX:!1,enableSnap:!0,itemSize:u.value,friction:new tg(1e-4),spring:new og(2,90,20),onSnap:e=>{isNaN(e)||e===g.current||(g.current=e)}});p=n,zp(e,(e=>{switch(e.detail.state){case"start":i(e);break;case"move":s(e),e.stopPropagation();break;case"end":case"cancel":a(e)}}),!0),function(e){let t=0,n=0;e.addEventListener("touchstart",(e=>{const r=e.changedTouches[0];t=r.clientX,n=r.clientY})),e.addEventListener("touchend",(e=>{const r=e.changedTouches[0];if(Math.abs(r.clientX-t)<20&&Math.abs(r.clientY-n)<20){const t={bubbles:!0,cancelable:!0,target:e.target,currentTarget:e.currentTarget},n=new CustomEvent("click",t);["screenX","screenY","clientX","clientY","pageX","pageY"].forEach((e=>{n[e]=r[e]})),e.target.dispatchEvent(n)}}))}(e),v()};return Xr(w),()=>{const e=t.default&&t.default();g.length=Pp(e).length;const n=`${h.value}px 0`;return gi("uni-picker-view-column",{ref:r},[gi("div",{onWheel:b,onClick:_,class:"uni-picker-view-group"},[gi("div",xi(f.attrs,{class:["uni-picker-view-mask",l.maskClass],style:`background-size: 100% ${h.value}px;${l.maskStyle}`}),null,16),gi("div",xi(f.attrs,{class:["uni-picker-view-indicator",l.indicatorClass],style:l.indicatorStyle}),[gi(Vf,{ref:d,onResize:({height:e})=>u.value=e},null,8,["onResize"])],16),gi("div",{ref:o,class:["uni-picker-view-content"],style:{padding:n,"--picker-view-column-indicator-height":`${u.value}px`}},[e],4)],40,["onWheel","onClick"])],512)}}}),lg={a:"",abbr:"",address:"",article:"",aside:"",b:"",bdi:"",bdo:["dir"],big:"",blockquote:"",br:"",caption:"",center:"",cite:"",code:"",col:["span","width"],colgroup:["span","width"],dd:"",del:"",div:"",dl:"",dt:"",em:"",fieldset:"",font:"",footer:"",h1:"",h2:"",h3:"",h4:"",h5:"",h6:"",header:"",hr:"",i:"",img:["alt","src","height","width"],ins:"",label:"",legend:"",li:"",mark:"",nav:"",ol:["start","type"],p:"",pre:"",q:"",rt:"",ruby:"",s:"",section:"",small:"",span:"",strong:"",sub:"",sup:"",table:["width"],tbody:"",td:["colspan","height","rowspan","width"],tfoot:"",th:["colspan","height","rowspan","width"],thead:"",tr:["colspan","height","rowspan","width"],tt:"",u:"",ul:""},cg={amp:"&",gt:">",lt:"<",nbsp:" ",quot:'"',apos:"'",ldquo:"“",rdquo:"”",yen:"¥",radic:"√",lceil:"⌈",rceil:"⌉",lfloor:"⌊",rfloor:"⌋",hellip:"…"};const ug=(e,t,n)=>!n||g(n)&&!n.length?[]:n.map((n=>{var r;if(T(n)){if(!p(n,"type")||"node"===n.type){let o={[e]:""};const i=null==(r=n.name)?void 0:r.toLowerCase();if(!p(lg,i))return;return function(e,t){if(T(t))for(const n in t)if(p(t,n)){const r=t[n];"img"===e&&"src"===n&&(t[n]=_f(r))}}(i,n.attrs),o=d(o,function(e,t){if(["a","img"].includes(e.name)&&t)return{onClick:n=>{t(n,{node:e}),n.stopPropagation(),n.preventDefault(),n.returnValue=!1}}}(n,t),n.attrs),ji(n.name,o,ug(e,t,n.children))}return"text"===n.type&&b(n.text)&&""!==n.text?yi((n.text||"").replace(/&(([a-zA-Z]+)|(#x{0,1}[\da-zA-Z]+));/gi,(function(e,t){return p(cg,t)&&cg[t]?cg[t]:/^#[0-9]{1,4}$/.test(t)?String.fromCharCode(t.slice(1)):/^#x[0-9a-f]{1,4}$/i.test(t)?String.fromCharCode(0+t.slice(1)):e}))):void 0}}));function dg(e){e=function(e){return e.replace(/<\?xml.*\?>\n/,"").replace(/\n/,"").replace(/\n/,"")}(e);const t=[],n={node:"root",children:[]};return function(e,t){var n,r,o,i=[],s=e;for(i.last=function(){return this[this.length-1]};e;){if(r=!0,i.last()&&np[i.last()])e=e.replace(new RegExp("([\\s\\S]*?)]*>"),(function(e,n){return n=n.replace(/|/g,"$1$2"),t.chars&&t.chars(n),""})),c("",i.last());else if(0==e.indexOf("\x3c!--")?(n=e.indexOf("--\x3e"))>=0&&(t.comment&&t.comment(e.substring(4,n)),e=e.substring(n+3),r=!1):0==e.indexOf("=0&&i[r]!=n;r--);else var r=0;if(r>=0){for(var o=i.length-1;o>=r;o--)t.end&&t.end(i[o]);i.length=r}}c()}(e,{start:function(e,r,o){const i={name:e};if(0!==r.length&&(i.attrs=function(e){return e.reduce((function(e,t){let n=t.value;const r=t.name;return n.match(/ /)&&-1===["style","src"].indexOf(r)&&(n=n.split(" ")),e[r]?Array.isArray(e[r])?e[r].push(n):e[r]=[e[r],n]:e[r]=n,e}),{})}(r)),o){const e=t[0]||n;e.children||(e.children=[]),e.children.push(i)}else t.unshift(i)},end:function(e){const r=t.shift();if(r.name!==e&&console.error("invalid state: mismatch end tag"),0===t.length)n.children.push(r);else{const e=t[0];e.children||(e.children=[]),e.children.push(r)}},chars:function(e){const r={type:"text",text:e};if(0===t.length)n.children.push(r);else{const e=t[0];e.children||(e.children=[]),e.children.push(r)}},comment:function(e){const n={node:"comment",text:e},r=t[0];r&&(r.children||(r.children=[]),r.children.push(n))}}),n.children}const hg=gu({name:"RichText",compatConfig:{MODE:3},props:{nodes:{type:[Array,String],default:function(){return[]}}},emits:["itemclick"],setup(e,{emit:t}){const n=ki(),r=n&&n.vnode.scopeId||"",o=hn(null),i=hn([]),s=yu(o,t);function a(e,t={}){s("itemclick",e,t)}return dr((()=>e.nodes),(function(){let t=e.nodes;b(t)&&(t=dg(e.nodes)),i.value=ug(r,a,t)}),{immediate:!0}),()=>ji("uni-rich-text",{ref:o},ji("div",{},i.value))}}),fg=gu({name:"Refresher",props:{refreshState:{type:String,default:""},refresherHeight:{type:Number,default:0},refresherThreshold:{type:Number,default:45},refresherDefaultStyle:{type:String,default:"black"},refresherBackground:{type:String,default:"#fff"}},setup(e,{slots:t}){const n=hn(null),r=zi((()=>{const t={backgroundColor:e.refresherBackground};switch(e.refreshState){case"pulling":t.height=e.refresherHeight+"px";break;case"refreshing":t.height=e.refresherThreshold+"px",t.transition="height 0.3s";break;case"":case"refresherabort":case"restore":t.height="0px",t.transition="height 0.3s"}return t})),o=zi((()=>{const t=e.refresherHeight/e.refresherThreshold;return 360*(t>1?1:t)}));return()=>{const{refreshState:i,refresherDefaultStyle:s,refresherThreshold:a}=e;return gi("div",{ref:n,style:r.value,class:"uni-scroll-view-refresher"},["none"!==s?gi("div",{class:"uni-scroll-view-refresh"},[gi("div",{class:"uni-scroll-view-refresh-inner"},["pulling"==i?gi("svg",{key:"refresh__icon",style:{transform:"rotate("+o.value+"deg)"},fill:"#2BD009",class:"uni-scroll-view-refresh__icon",width:"24",height:"24",viewBox:"0 0 24 24"},[gi("path",{d:"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"},null),gi("path",{d:"M0 0h24v24H0z",fill:"none"},null)],4):null,"refreshing"==i?gi("svg",{key:"refresh__spinner",class:"uni-scroll-view-refresh__spinner",width:"24",height:"24",viewBox:"25 25 50 50"},[gi("circle",{cx:"50",cy:"50",r:"20",fill:"none",style:"color: #2bd009","stroke-width":"3"},null)]):null])]):null,"none"===s?gi("div",{class:"uni-scroll-view-refresher-container",style:{height:`${a}px`}},[t.default&&t.default()]):null],4)}}}),pg=xe(!0),gg=gu({name:"ScrollView",compatConfig:{MODE:3},props:{direction:{type:[String],default:"vertical"},scrollX:{type:[Boolean,String],default:!1},scrollY:{type:[Boolean,String],default:!1},showScrollbar:{type:[Boolean,String],default:!0},upperThreshold:{type:[Number,String],default:50},lowerThreshold:{type:[Number,String],default:50},scrollTop:{type:[Number,String],default:0},scrollLeft:{type:[Number,String],default:0},scrollIntoView:{type:String,default:""},scrollWithAnimation:{type:[Boolean,String],default:!1},enableBackToTop:{type:[Boolean,String],default:!1},refresherEnabled:{type:[Boolean,String],default:!1},refresherThreshold:{type:Number,default:45},refresherDefaultStyle:{type:String,default:"black"},refresherBackground:{type:String,default:"#fff"},refresherTriggered:{type:[Boolean,String],default:!1}},emits:["scroll","scrolltoupper","scrolltolower","refresherrefresh","refresherrestore","refresherpulling","refresherabort","update:refresherTriggered"],setup(e,{emit:t,slots:n,expose:r}){const o=hn(null),i=hn(null),s=hn(null),a=hn(null),l=yu(o,t),{state:c,scrollTopNumber:u,scrollLeftNumber:d}=function(e){const t=zi((()=>Number(e.scrollTop)||0)),n=zi((()=>Number(e.scrollLeft)||0));return{state:Xt({lastScrollTop:t.value,lastScrollLeft:n.value,lastScrollToUpperTime:0,lastScrollToLowerTime:0,refresherHeight:0,refreshState:""}),scrollTopNumber:t,scrollLeftNumber:n}}(e),{realScrollX:h,realScrollY:f,_scrollLeftChanged:p,_scrollTopChanged:g}=function(e,t,n,r,o,i,s,a,l){let c=!1,u=0,d=!1,h=()=>{};const f=zi((()=>e.scrollX)),p=zi((()=>e.scrollY)),g=zi((()=>{let t=Number(e.upperThreshold);return isNaN(t)?50:t})),m=zi((()=>{let t=Number(e.lowerThreshold);return isNaN(t)?50:t}));function v(e,t){const n=s.value;let r=0,o="";if(e<0?e=0:"x"===t&&e>n.scrollWidth-n.offsetWidth?e=n.scrollWidth-n.offsetWidth:"y"===t&&e>n.scrollHeight-n.offsetHeight&&(e=n.scrollHeight-n.offsetHeight),"x"===t?r=n.scrollLeft-e:"y"===t&&(r=n.scrollTop-e),0===r)return;let i=a.value;i.style.transition="transform .3s ease-out",i.style.webkitTransition="-webkit-transform .3s ease-out","x"===t?o="translateX("+r+"px) translateZ(0)":"y"===t&&(o="translateY("+r+"px) translateZ(0)"),i.removeEventListener("transitionend",h),i.removeEventListener("webkitTransitionEnd",h),h=()=>S(e,t),i.addEventListener("transitionend",h),i.addEventListener("webkitTransitionEnd",h),"x"===t?n.style.overflowX="hidden":"y"===t&&(n.style.overflowY="hidden"),i.style.transform=o,i.style.webkitTransform=o}function y(e){const n=e.target;o("scroll",e,{scrollLeft:n.scrollLeft,scrollTop:n.scrollTop,scrollHeight:n.scrollHeight,scrollWidth:n.scrollWidth,deltaX:t.lastScrollLeft-n.scrollLeft,deltaY:t.lastScrollTop-n.scrollTop}),p.value&&(n.scrollTop<=g.value&&t.lastScrollTop-n.scrollTop>0&&e.timeStamp-t.lastScrollToUpperTime>200&&(o("scrolltoupper",e,{direction:"top"}),t.lastScrollToUpperTime=e.timeStamp),n.scrollTop+n.offsetHeight+m.value>=n.scrollHeight&&t.lastScrollTop-n.scrollTop<0&&e.timeStamp-t.lastScrollToLowerTime>200&&(o("scrolltolower",e,{direction:"bottom"}),t.lastScrollToLowerTime=e.timeStamp)),f.value&&(n.scrollLeft<=g.value&&t.lastScrollLeft-n.scrollLeft>0&&e.timeStamp-t.lastScrollToUpperTime>200&&(o("scrolltoupper",e,{direction:"left"}),t.lastScrollToUpperTime=e.timeStamp),n.scrollLeft+n.offsetWidth+m.value>=n.scrollWidth&&t.lastScrollLeft-n.scrollLeft<0&&e.timeStamp-t.lastScrollToLowerTime>200&&(o("scrolltolower",e,{direction:"right"}),t.lastScrollToLowerTime=e.timeStamp)),t.lastScrollTop=n.scrollTop,t.lastScrollLeft=n.scrollLeft}function b(t){p.value&&(e.scrollWithAnimation?v(t,"y"):s.value.scrollTop=t)}function _(t){f.value&&(e.scrollWithAnimation?v(t,"x"):s.value.scrollLeft=t)}function w(t){if(t){if(!/^[_a-zA-Z][-_a-zA-Z0-9:]*$/.test(t))return void console.error(`id error: scroll-into-view=${t}`);let n=i.value.querySelector("#"+t);if(n){let t=s.value.getBoundingClientRect(),r=n.getBoundingClientRect();if(f.value){let n=r.left-t.left,o=s.value.scrollLeft+n;e.scrollWithAnimation?v(o,"x"):s.value.scrollLeft=o}if(p.value){let n=r.top-t.top,o=s.value.scrollTop+n;e.scrollWithAnimation?v(o,"y"):s.value.scrollTop=o}}}}function S(e,t){a.value.style.transition="",a.value.style.webkitTransition="",a.value.style.transform="",a.value.style.webkitTransform="";let n=s.value;"x"===t?(n.style.overflowX=f.value?"auto":"hidden",n.scrollLeft=e):"y"===t&&(n.style.overflowY=p.value?"auto":"hidden",n.scrollTop=e),a.value.removeEventListener("transitionend",h),a.value.removeEventListener("webkitTransitionEnd",h)}function x(n){if(e.refresherEnabled){switch(n){case"refreshing":t.refresherHeight=e.refresherThreshold,c||(c=!0,o("refresherpulling",{},{deltaY:t.refresherHeight,dy:t.refresherHeight}),o("refresherrefresh",{},{dy:T.y-E.y}),l("update:refresherTriggered",!0));break;case"restore":case"refresherabort":c=!1,t.refresherHeight=u=0,"restore"===n&&(d=!1,o("refresherrestore",{},{dy:T.y-E.y})),"refresherabort"===n&&d&&(d=!1,o("refresherabort",{},{dy:T.y-E.y}))}t.refreshState=n}}let E={x:0,y:0},T={x:0,y:e.refresherThreshold};return Xr((()=>{Ln((()=>{b(n.value),_(r.value)})),w(e.scrollIntoView);let i=function(e){e.preventDefault(),e.stopPropagation(),y(e)},a=null,l=function(n){if(null===E)return;let r=n.touches[0].pageX,i=n.touches[0].pageY,l=s.value;if(Math.abs(r-E.x)>Math.abs(i-E.y))if(f.value){if(0===l.scrollLeft&&r>E.x)return void(a=!1);if(l.scrollWidth===l.offsetWidth+l.scrollLeft&&rE.y)a=!1,e.refresherEnabled&&!1!==n.cancelable&&n.preventDefault();else{if(l.scrollHeight===l.offsetHeight+l.scrollTop&&i0&&(d=!0,o("refresherpulling",n,{deltaY:r,dy:r})))}},h=function(e){1===e.touches.length&&(E={x:e.touches[0].pageX,y:e.touches[0].pageY})},g=function(n){T={x:n.changedTouches[0].pageX,y:n.changedTouches[0].pageY},t.refresherHeight>=e.refresherThreshold?x("refreshing"):x("refresherabort"),E={x:0,y:0},T={x:0,y:e.refresherThreshold}};s.value.addEventListener("touchstart",h,pg),s.value.addEventListener("touchmove",l,xe(!1)),s.value.addEventListener("scroll",i,xe(!1)),s.value.addEventListener("touchend",g,pg),Zr((()=>{s.value.removeEventListener("touchstart",h),s.value.removeEventListener("touchmove",l),s.value.removeEventListener("scroll",i),s.value.removeEventListener("touchend",g)}))})),$r((()=>{p.value&&(s.value.scrollTop=t.lastScrollTop),f.value&&(s.value.scrollLeft=t.lastScrollLeft)})),dr(n,(e=>{b(e)})),dr(r,(e=>{_(e)})),dr((()=>e.scrollIntoView),(e=>{w(e)})),dr((()=>e.refresherTriggered),(e=>{!0===e?x("refreshing"):!1===e&&x("restore")})),{realScrollX:f,realScrollY:p,_scrollTopChanged:b,_scrollLeftChanged:_}}(e,c,u,d,l,o,i,a,t),m=zi((()=>{let e="";return h.value?e+="overflow-x:auto;":e+="overflow-x:hidden;",f.value?e+="overflow-y:auto;":e+="overflow-y:hidden;",e})),v=zi((()=>{let t="uni-scroll-view";return!1===e.showScrollbar&&(t+=" uni-scroll-view-scrollbar-hidden"),t}));return r({$getMain:()=>i.value}),()=>{const{refresherEnabled:t,refresherBackground:r,refresherDefaultStyle:l,refresherThreshold:u}=e,{refresherHeight:d,refreshState:h}=c;return gi("uni-scroll-view",{ref:o},[gi("div",{ref:s,class:"uni-scroll-view"},[gi("div",{ref:i,style:m.value,class:v.value},[t?gi(fg,{refreshState:h,refresherHeight:d,refresherThreshold:u,refresherDefaultStyle:l,refresherBackground:r},{default:()=>["none"==l?n.refresher&&n.refresher():null]},8,["refreshState","refresherHeight","refresherThreshold","refresherDefaultStyle","refresherBackground"]):null,gi("div",{ref:a,class:"uni-scroll-view-content"},[n.default&&n.default()],512)],6)],512)],512)}}});function mg(e,t,n,r,o,i){function s(){c&&(clearTimeout(c),c=null)}let a,l,c=null,u=!0,d=0,h=1,f=null,p=!1,g=0,m="";const v=zi((()=>n.value.length>t.displayMultipleItems)),y=zi((()=>e.circular&&v.value));function b(o){Math.floor(2*d)===Math.floor(2*o)&&Math.ceil(2*d)===Math.ceil(2*o)||y.value&&function(r){if(!u)for(let o=n.value,i=o.length,s=r+t.displayMultipleItems,a=0;a=c.length&&(o-=c.length),o=a%1>.5||a<0?o-1:o,i("transition",{},{dx:e.vertical?0:o*l.offsetWidth,dy:e.vertical?o*l.offsetHeight:0})}function _(e){const r=n.value.length;if(!r)return-1;const o=(Math.round(e)%r+r)%r;if(y.value){if(r<=t.displayMultipleItems)return 0}else if(o>r-t.displayMultipleItems)return r-t.displayMultipleItems;return o}function w(){f=null}function S(){if(!f)return void(p=!1);const e=f,r=e.toPos,o=e.acc,s=e.endTime,c=e.source,u=s-Date.now();if(u<=0){b(r),f=null,p=!1,a=null;const e=n.value[t.current];if(e){const n=e.getItemId();i("animationfinish",{},{current:t.current,currentItemId:n,source:c})}return}b(r+o*u*u/2),l=requestAnimationFrame(S)}function x(e,r,o){w();const i=t.duration,s=n.value.length;let a=d;if(y.value)if(o<0){for(;ae;)a-=s}else if(o>0){for(;a>e;)a-=s;for(;a+se;)a-=s;a+s-ee.current,()=>e.currentItemId,()=>[...n.value]],(()=>{let r=-1;if(e.currentItemId)for(let t=0,o=n.value;te.vertical,()=>y.value,()=>t.displayMultipleItems,()=>[...n.value]],(function(){s(),f&&(b(f.toPos),f=null);const o=n.value;for(let t=0;t0&&h<1||(h=1)}const a=d;d=-2;const l=t.current;l>=0?(u=!1,t.userTracking?(b(a+l-g),g=l):(b(l),e.autoplay&&E())):(u=!0,b(-t.displayMultipleItems-1))})),dr((()=>t.interval),(()=>{c&&(s(),E())})),dr((()=>t.current),((e,r)=>{!function(e,r){const o=m;m="";const s=n.value;if(!o){const t=s.length;x(e,"",y.value&&r+(t-e)%t>t/2?1:0)}const a=s[e];if(a){const e=t.currentItemId=a.getItemId();i("change",{},{current:t.current,currentItemId:e,source:o})}}(e,r),o("update:current",e)})),dr((()=>t.currentItemId),(e=>{o("update:currentItemId",e)})),dr((()=>e.autoplay&&!t.userTracking),T),T(e.autoplay&&!t.userTracking),Xr((()=>{let o=!1,i=0,a=0;function l(e){t.userTracking=!1;const n=i/Math.abs(i);let r=0;!e&&Math.abs(i)>.2&&(r=.5*n);const o=_(d+r);e?b(g):(m="touch",t.current=o,x(o,"touch",0!==r?r:0===o&&y.value&&d>=1?1:0))}zp(r.value,(c=>{if(!e.disableTouch&&!u){if("start"===c.detail.state)return t.userTracking=!0,o=!1,s(),g=d,i=0,a=Date.now(),void w();if("end"===c.detail.state)return l(!1);if("cancel"===c.detail.state)return l(!0);if(t.userTracking){if(!o){o=!0;const n=Math.abs(c.detail.dx),r=Math.abs(c.detail.dy);if((n>=r&&e.vertical||n<=r&&!e.vertical)&&(t.userTracking=!1),!t.userTracking)return void(e.autoplay&&E())}return function(o){const s=a;a=Date.now();const l=n.value.length-t.displayMultipleItems;function c(e){return.5-.25/(e+.5)}function u(e,t){let n=g+e;i=.6*i+.4*t,y.value||(n<0||n>l)&&(n<0?n=-c(-n):n>l&&(n=l+c(n-l)),i=0),b(n)}const d=a-s||1,h=r.value;e.vertical?u(-o.dy/h.offsetHeight,-o.ddy/d):u(-o.dx/h.offsetWidth,-o.ddx/d)}(c.detail),!1}}}))})),Qr((()=>{s(),cancelAnimationFrame(l)})),{onSwiperDotClick:function(e){x(t.current=e,m="click",y.value?1:0)},circularEnabled:y,swiperEnabled:v}}const vg=gu({name:"Swiper",props:{indicatorDots:{type:[Boolean,String],default:!1},vertical:{type:[Boolean,String],default:!1},autoplay:{type:[Boolean,String],default:!1},circular:{type:[Boolean,String],default:!1},interval:{type:[Number,String],default:5e3},duration:{type:[Number,String],default:500},current:{type:[Number,String],default:0},indicatorColor:{type:String,default:""},indicatorActiveColor:{type:String,default:""},previousMargin:{type:String,default:""},nextMargin:{type:String,default:""},currentItemId:{type:String,default:""},skipHiddenItemLayout:{type:[Boolean,String],default:!1},displayMultipleItems:{type:[Number,String],default:1},disableTouch:{type:[Boolean,String],default:!1},navigation:{type:[Boolean,String],default:!1},navigationColor:{type:String,default:"#fff"},navigationActiveColor:{type:String,default:"rgba(53, 53, 53, 0.6)"}},emits:["change","transition","animationfinish","update:current","update:currentItemId"],setup(e,{slots:t,emit:n}){const r=hn(null),o=yu(r,n),i=hn(null),s=hn(null),a=function(e){return Xt({interval:zi((()=>{const t=Number(e.interval);return isNaN(t)?5e3:t})),duration:zi((()=>{const t=Number(e.duration);return isNaN(t)?500:t})),displayMultipleItems:zi((()=>{const t=Math.round(e.displayMultipleItems);return isNaN(t)?1:t})),current:Math.round(e.current)||0,currentItemId:e.currentItemId,userTracking:!1})}(e),l=zi((()=>{let t={};return(e.nextMargin||e.previousMargin)&&(t=e.vertical?{left:0,right:0,top:wc(e.previousMargin,!0),bottom:wc(e.nextMargin,!0)}:{top:0,bottom:0,left:wc(e.previousMargin,!0),right:wc(e.nextMargin,!0)}),t})),c=zi((()=>{const t=Math.abs(100/a.displayMultipleItems)+"%";return{width:e.vertical?"100%":t,height:e.vertical?t:"100%"}}));let u=[];const d=[],h=hn([]);function f(){const e=[];for(let t=0;tn===e.rootRef.value));r&&e.push(on(r))}h.value=e}Ao("addSwiperContext",(function(e){d.push(e),f()}));Ao("removeSwiperContext",(function(e){const t=d.indexOf(e);t>=0&&(d.splice(t,1),f())}));const{onSwiperDotClick:p,circularEnabled:g,swiperEnabled:m}=mg(e,a,h,s,n,o);let v=()=>null;return v=yg(r,e,a,p,h,g,m),()=>{const n=t.default&&t.default();return u=Pp(n),gi("uni-swiper",{ref:r},[gi("div",{ref:i,class:"uni-swiper-wrapper"},[gi("div",{class:"uni-swiper-slides",style:l.value},[gi("div",{ref:s,class:"uni-swiper-slide-frame",style:c.value},[n],4)],4),e.indicatorDots&&gi("div",{class:["uni-swiper-dots",e.vertical?"uni-swiper-dots-vertical":"uni-swiper-dots-horizontal"]},[h.value.map(((t,n,r)=>gi("div",{onClick:()=>p(n),class:{"uni-swiper-dot":!0,"uni-swiper-dot-active":n=a.current||n{let a=!1,l=!1,c=!1,u=hn(!1);function h(e,n){const r=e.currentTarget;r&&(r.style.backgroundColor="over"===n?t.navigationActiveColor:"")}cr((()=>{a="auto"===t.navigation,u.value=!0!==t.navigation||a,b()})),cr((()=>{const e=o.value.length,t=!i.value;l=0===n.current&&t,c=n.current===e-1&&t||t&&n.current+n.displayMultipleItems>=e,s.value||(l=!0,c=!0,a&&(u.value=!0))}));const f={onMouseover:e=>h(e,"over"),onMouseout:e=>h(e,"out")};function p(e,t,s){if(e.stopPropagation(),s)return;const a=o.value.length;let l=n.current;switch(t){case"prev":l--,l<0&&i.value&&(l=a-1);break;case"next":l++,l>=a&&i.value&&(l=0)}r(l)}const g=()=>Mc(Cc,t.navigationColor,26);let m;const v=n=>{clearTimeout(m);const{clientX:r,clientY:o}=n,{left:i,right:s,top:a,bottom:l,width:c,height:d}=e.value.getBoundingClientRect();let h=!1;if(h=t.vertical?!(o-a{u.value=h}),300);u.value=h},y=()=>{u.value=!0};function b(){e.value&&(e.value.removeEventListener("mousemove",v),e.value.removeEventListener("mouseleave",y),a&&(e.value.addEventListener("mousemove",v),e.value.addEventListener("mouseleave",y)))}return Xr(b),function(){const e={"uni-swiper-navigation-hide":u.value,"uni-swiper-navigation-vertical":t.vertical};return t.navigation?gi(Jo,null,[gi("div",xi({class:["uni-swiper-navigation uni-swiper-navigation-prev",d({"uni-swiper-navigation-disabled":l},e)],onClick:e=>p(e,"prev",l)},f),[g()],16,["onClick"]),gi("div",xi({class:["uni-swiper-navigation uni-swiper-navigation-next",d({"uni-swiper-navigation-disabled":c},e)],onClick:e=>p(e,"next",c)},f),[g()],16,["onClick"])]):null}},bg=gu({name:"SwiperItem",props:{itemId:{type:String,default:""}},setup(e,{slots:t}){const n=hn(null),r={rootRef:n,getItemId:()=>e.itemId,getBoundingClientRect:()=>n.value.getBoundingClientRect(),updatePosition(e,t){const r=t?"0":100*e+"%",o=t?100*e+"%":"0",i=n.value,s=`translate(${r},${o}) translateZ(0)`;i&&(i.style.webkitTransform=s,i.style.transform=s)}};return Xr((()=>{const e=Do("addSwiperContext");e&&e(r)})),Qr((()=>{const e=Do("removeSwiperContext");e&&e(r)})),()=>gi("uni-swiper-item",{ref:n,style:{position:"absolute",width:"100%",height:"100%"}},[t.default&&t.default()],512)}}),_g={ensp:" ",emsp:" ",nbsp:" "};function wg(e,t){return function(e,{space:t,decode:n}){let r="",o=!1;for(let i of e)t&&_g[t]&&" "===i&&(i=_g[t]),o?(r+="n"===i?"\n":"\\"===i?"\\":"\\"+i,o=!1):"\\"===i?o=!0:r+=i;return n?r.replace(/ /g,_g.nbsp).replace(/ /g,_g.ensp).replace(/ /g,_g.emsp).replace(/</g,"<").replace(/>/g,">").replace(/&/g,"&").replace(/"/g,'"').replace(/'/g,"'"):r}(e,t).split("\n")}const Sg=gu({name:"Text",props:{selectable:{type:[Boolean,String],default:!1},space:{type:String,default:""},decode:{type:[Boolean,String],default:!1}},setup(e,{slots:t}){const n=hn(null);return()=>{const r=[];return t.default&&t.default().forEach((t=>{if(8&t.shapeFlag&&t.type!==Qo){const n=wg(t.children,{space:e.space,decode:e.decode}),o=n.length-1;n.forEach(((e,t)=>{(0!==t||e)&&r.push(yi(e)),t!==o&&r.push(gi("br"))}))}else r.push(t)})),gi("uni-text",{ref:n,selectable:!!e.selectable||null},[gi("span",null,r)],8,["selectable"])}}}),xg=gu({name:"View",props:d({},bu),setup(e,{slots:t}){const n=hn(null),{hovering:r,binding:o}=_u(e);return()=>{const i=e.hoverClass;return i&&"none"!==i?gi("uni-view",xi({class:r.value?i:"",ref:n},o),[io(t,"default")],16):gi("uni-view",{ref:n},[io(t,"default")],512)}}});function Eg(e,t){if(t||(t=e.id),t)return e.$options.name.toLowerCase()+"."+t}function Tg(e,t,n){e&&Fl(n||Oc(),e,(({type:e,data:n},r)=>{t(e,n,r)}))}function Cg(e,t){e&&function(e,t){t=Hl(e,t),delete Vl[t]}(t||Oc(),e)}let Mg=0;function kg(e,t,n,r){y(t)&&Wr(e,t.bind(n),r)}function Ag(e,t,n){const r=e.mpType||n.$mpType;if(r&&"component"!==r&&(Object.keys(e).forEach((r=>{if(function(e,t,n=!0){return!(n&&!y(t))&&(Ie.indexOf(e)>-1||0===e.indexOf("on"))}(r,e[r],!1)){const o=e[r];g(o)?o.forEach((e=>kg(r,e,n,t))):kg(r,o,n,t)}})),"page"===r)){t.__isVisible=!0;try{let e=t.attrs.__pageQuery;0,Lc(n,"onLoad",e),delete t.attrs.__pageQuery;const r=n.$page;"preloadPage"!==(null==r?void 0:r.openType)&&Lc(n,"onShow")}catch(C_){console.error(C_.message+"\n"+C_.stack)}}}function Dg(e,t,n){Ag(e,t,n)}function Og(e,t,n){return e[t]=n}function Ig(e,...t){const n=this[e];return n?n(...t):(console.error(`method ${e} not found`),null)}function Pg(e){const t=e.config.errorHandler;return function(n,r,o){t&&t(n,r,o);const i=e._instance;if(!i||!i.proxy)throw n;i.onError?Lc(i.proxy,"onError",n):Cn(n,0,r&&r.$.vnode,!1)}}function Bg(e,t){return e?[...new Set([].concat(e,t))]:t}function Rg(e){const t=e.config;var n;t.errorHandler=Be(e,Pg),n=t.optionMergeStrategies,Ie.forEach((e=>{n[e]=Bg}));const r=t.globalProperties;r.$set=Og,r.$applyOptions=Dg,r.$callMethod=Ig,function(e){Pe.forEach((t=>t(e)))}(e)}function Lg(e){const t=fl({history:zg(),strict:!!__uniConfig.router.strict,routes:__uniRoutes,scrollBehavior:$g});t.beforeEach(((e,t)=>{var n;e&&t&&e.meta.isTabBar&&t.meta.isTabBar&&(n=t.meta.tabBarIndex,"undefined"!=typeof window&&(Ng[n]={left:window.pageXOffset,top:window.pageYOffset}))})),e.router=t,e.use(t)}let Ng=Object.create(null);const $g=(e,t,n)=>{if(n)return n;if(e&&t&&e.meta.isTabBar&&t.meta.isTabBar){const t=(r=e.meta.tabBarIndex,Ng[r]);if(t)return t}return{left:0,top:0};var r};function zg(){let{routerBase:e}=__uniConfig.router;"/"===e&&(e="");const t=(n=e,(n=location.host?n||location.pathname+location.search:"").includes("#")||(n+="#"),Ma(n));var n;return t.listen(((e,t,n)=>{"back"===n.direction&&function(e=1){const t=of(),n=t.length-1,r=n-e;for(let o=n;o>r;o--){const e=Gh(t[o]);sf(uf(e.path,e.id),!1)}}(Math.abs(n.delta))})),t}const jg={install(e){Rg(e),Qc(e),uu(e),e.config.warnHandler||(e.config.warnHandler=Vg),Lg(e)}};function Vg(e,t,n){if(t){if("PageMetaHead"===t.$.type.name)return;const e=t.$.parent;if(e&&"PageMeta"===e.type.name)return}const r=[`[Vue warn]: ${e}`];n.length&&r.push("\n",n),console.warn(...r)}const Hg={class:"uni-async-loading"},Fg=gi("i",{class:"uni-loading"},null,-1),qg=mu({name:"AsyncLoading",render:()=>(ri(),li("div",Hg,[Fg]))});function Ug(){window.location.reload()}const Wg=mu({name:"AsyncError",setup(){Il();const{t:e}=Dl();return()=>gi("div",{class:"uni-async-error",onClick:Ug},[e("uni.async.error")],8,["onClick"])}});let Kg;function Yg(){return Kg}function Xg(e){Kg=e,Object.defineProperty(Kg.$.ctx,"$children",{get:()=>of().map((e=>e.$vm))});const t=Kg.$.appContext.app;t.component(qg.name)||t.component(qg.name,qg),t.component(Wg.name)||t.component(Wg.name,Wg),function(e){e.$vm=e,e.$mpType="app";const t=hn(Dl().getLocale());Object.defineProperty(e,"$locale",{get:()=>t.value,set(e){t.value=e}})}(Kg),function(e,t){const n=e.$options||{};n.globalData=d(n.globalData||{},t),Object.defineProperty(e,"globalData",{get:()=>n.globalData,set(e){n.globalData=e}})}(Kg),lu(),Fc()}function Gg(e,{clone:t,init:n,setup:r,before:o}){t&&(e=d({},e)),o&&o(e);const i=e.setup;return e.setup=(e,t)=>{const o=ki();if(n(o.proxy),r(o),i)return i(e,t)},e}function Jg(e,t){return e&&(e.__esModule||"Module"===e[Symbol.toStringTag])?Gg(e.default,t):Gg(e,t)}function Zg(e){return Jg(e,{clone:!0,init:cf,setup(e){e.$pageInstance=e;const t=Pu(),n=Ce(t.query);e.attrs.__pageQuery=n,Gh(e.proxy).options=n,e.proxy.options=n;const r=Ou();var o,i;return e.onReachBottom=Xt([]),e.onPageScroll=Xt([]),dr([e.onReachBottom,e.onPageScroll],(()=>{const t=Ac();e.proxy===t&&yf(e,r)}),{once:!0}),Yr((()=>{ff(e,r)})),Xr((()=>{pf(e);const{onReady:n}=e;n&&L(n),nm(t)})),jr((()=>{if(!e.__isVisible){ff(e,r),e.__isVisible=!0;const{onShow:n}=e;n&&L(n),Ln((()=>{nm(t)}))}}),"ba",o),function(e,t){jr(e,"bda",t)}((()=>{if(e.__isVisible&&!e.__isUnload){e.__isVisible=!1;{const{onHide:t}=e;t&&L(t)}}})),i=r.id,Cy.subscribe(Hl(i,"invokeViewApi"),ql),Zr((()=>{!function(e){Cy.unsubscribe(Hl(e,"invokeViewApi")),Object.keys(Vl).forEach((t=>{0===t.indexOf(e+".")&&delete Vl[t]}))}(r.id)})),n}})}function Qg(){const{windowWidth:e,windowHeight:t,screenWidth:n,screenHeight:r}=Bm(),o=90===Math.abs(Number(window.orientation))?"landscape":"portrait";My.emit("onResize",{deviceOrientation:o,size:{windowWidth:e,windowHeight:t,screenWidth:n,screenHeight:r}})}function em(e){T(e.data)&&"WEB_INVOKE_APPSERVICE"===e.data.type&&My.emit("onWebInvokeAppService",e.data.data,e.data.pageId)}function tm(){const{emit:e}=My;"visible"===document.visibilityState?e("onAppEnterForeground",d({},jf)):e("onAppEnterBackground")}function nm(e){const{tabBarText:t,tabBarIndex:n,route:r}=e.meta;t&&Lc("onTabItemTap",{index:n,text:t,pagePath:r})}let rm,om=0;function im(e,t,n,r){var o,i=document.createElement("script"),s=t.callback||"callback",a="__uni_jsonp_callback_"+om++,l=t.timeout||3e4;function c(){clearTimeout(o),delete window[a],i.remove()}window[a]=e=>{y(n)&&n(e),c()},i.onerror=()=>{y(r)&&r(),c()},o=setTimeout((function(){y(r)&&r(),c()}),l),i.src=e+(e.indexOf("?")>=0?"&":"?")+s+"="+a,document.body.appendChild(i)}function sm(e){function t(){const e=this.div;this.getPanes().floatPane.appendChild(e)}function n(){const e=this.div.parentNode;e&&e.removeChild(this.div)}function r(){const t=this.option;this.Text=new e.Text({text:t.content,anchor:"bottom-center",offset:new e.Pixel(0,t.offsetY-16),style:{padding:(t.padding||8)+"px","line-height":(t.fontSize||14)+"px","border-radius":(t.borderRadius||0)+"px","border-color":`${t.bgColor||"#fff"} transparent transparent`,"background-color":t.bgColor||"#fff","box-shadow":"0 2px 6px 0 rgba(114, 124, 245, .5)","text-align":"center","font-size":(t.fontSize||14)+"px",color:t.color||"#000"},position:t.position});(e.event||e.Event).addListener(this.Text,"click",(()=>{this.callback()})),this.Text.setMap(t.map)}function o(){}function i(){this.Text&&this.option.map.remove(this.Text)}function s(){this.Text&&this.option.map.remove(this.Text)}class a{constructor(e={},a){this.createAMapText=r,this.removeAMapText=i,this.createBMapText=o,this.removeBMapText=s,this.onAdd=t,this.construct=t,this.onRemove=n,this.destroy=n,this.option=e||{};const l=this.visible=this.alwaysVisible="ALWAYS"===e.display;if(pm())this.callback=a,this.visible&&this.createAMapText();else if(gm())this.visible&&this.createBMapText();else{const t=e.map;this.position=e.position,this.index=1;const n=this.div=document.createElement("div"),r=n.style;r.position="absolute",r.whiteSpace="nowrap",r.transform="translateX(-50%) translateY(-100%)",r.zIndex="1",r.boxShadow=e.boxShadow||"none",r.display=l?"block":"none";const o=this.triangle=document.createElement("div");o.setAttribute("style","position: absolute;white-space: nowrap;border-width: 4px;border-style: solid;border-color: #fff transparent transparent;border-image: initial;font-size: 12px;padding: 0px;background-color: transparent;width: 0px;height: 0px;transform: translate(-50%, 100%);left: 50%;bottom: 0;"),this.setStyle(e),n.appendChild(o),t&&this.setMap(t)}}set onclick(e){this.div.onclick=e}get onclick(){return this.div.onclick}setOption(e){this.option=e,"ALWAYS"===e.display?this.alwaysVisible=this.visible=!0:this.alwaysVisible=!1,pm()?this.visible&&this.createAMapText():gm()?this.visible&&this.createBMapText():(this.setPosition(e.position),this.setStyle(e))}setStyle(e){const t=this.div,n=t.style;t.innerText=e.content||"",n.lineHeight=(e.fontSize||14)+"px",n.fontSize=(e.fontSize||14)+"px",n.padding=(e.padding||8)+"px",n.color=e.color||"#000",n.borderRadius=(e.borderRadius||0)+"px",n.backgroundColor=e.bgColor||"#fff",n.marginTop="-"+((e.top||0)+5)+"px",this.triangle.style.borderColor=`${e.bgColor||"#fff"} transparent transparent`}setPosition(e){this.position=e,this.draw()}draw(){const e=this.getProjection();if(!this.position||!this.div||!e)return;const t=e.fromLatLngToDivPixel(this.position),n=this.div.style;n.left=t.x+"px",n.top=t.y+"px"}changed(){this.div.style.display=this.visible?"block":"none"}}if(!pm()&&!gm()){const t=new(e.OverlayView||e.Overlay);a.prototype.setMap=t.setMap,a.prototype.getMap=t.getMap,a.prototype.getPanes=t.getPanes,a.prototype.getProjection=t.getProjection,a.prototype.map_changed=t.map_changed,a.prototype.set=t.set,a.prototype.get=t.get,a.prototype.setOptions=t.setValues,a.prototype.bindTo=t.bindTo,a.prototype.bindsTo=t.bindsTo,a.prototype.notify=t.notify,a.prototype.setValues=t.setValues,a.prototype.unbind=t.unbind,a.prototype.unbindAll=t.unbindAll,a.prototype.addListener=t.addListener}return a}const am={};function lm(e,t){const n=dm();if(!n.key)return void console.error("Map key not configured.");const r=am[n.type]=am[n.type]||[];if(rm)t(rm);else if(window[n.type]&&window[n.type].maps)rm=pm()||gm()?window[n.type]:window[n.type].maps,rm.Callout=rm.Callout||sm(rm),t(rm);else if(r.length)r.push(t);else{r.push(t);const o=window,i="__map_callback__"+n.type;o[i]=function(){delete o[i],rm=pm()||gm()?window[n.type]:window[n.type].maps,rm.Callout=sm(rm),r.forEach((e=>e(rm))),r.length=0},pm()&&function(e){window._AMapSecurityConfig={securityJsCode:e.securityJsCode||"",serviceHost:e.serviceHost||""}}(n);const s=document.createElement("script");let a=cm(n.type);n.type===um.QQ&&e.push("geometry"),e.length&&(a+=`libraries=${e.join("%2C")}&`),n.type===um.BMAP?s.src=`${a}ak=${n.key}&callback=${i}`:s.src=`${a}key=${n.key}&callback=${i}`,s.onerror=function(){console.error("Map load failed.")},document.body.appendChild(s)}}const cm=e=>({qq:"https://map.qq.com/api/js?v=2.exp&",google:"https://maps.googleapis.com/maps/api/js?",AMap:"https://webapi.amap.com/maps?v=2.0&",BMapGL:"https://api.map.baidu.com/api?type=webgl&v=1.0&"}[e]);var um=(e=>(e.QQ="qq",e.GOOGLE="google",e.AMAP="AMap",e.BMAP="BMapGL",e.UNKNOWN="",e))(um||{});function dm(){return __uniConfig.bMapKey?{type:"BMapGL",key:__uniConfig.bMapKey}:__uniConfig.qqMapKey?{type:"qq",key:__uniConfig.qqMapKey}:__uniConfig.googleMapKey?{type:"google",key:__uniConfig.googleMapKey}:__uniConfig.aMapKey?{type:"AMap",key:__uniConfig.aMapKey,securityJsCode:__uniConfig.aMapSecurityJsCode,serviceHost:__uniConfig.aMapServiceHost}:{type:"",key:""}}let hm=!1,fm=!1;const pm=()=>fm?hm:(fm=!0,hm="AMap"===dm().type),gm=()=>"BMapGL"===dm().type;const mm=mu({name:"MapMarker",props:{id:{type:[Number,String],default:""},latitude:{type:[Number,String],require:!0},longitude:{type:[Number,String],require:!0},title:{type:String,default:""},iconPath:{type:String,require:!0},rotate:{type:[Number,String],default:0},alpha:{type:[Number,String],default:1},width:{type:[Number,String],default:""},height:{type:[Number,String],default:""},callout:{type:Object,default:null},label:{type:Object,default:null},anchor:{type:Object,default:null},clusterId:{type:[Number,String],default:""},customCallout:{type:Object,default:null},ariaLabel:{type:String,default:""}},setup(e){const t=String(isNaN(Number(e.id))?"":e.id),n=Do("onMapReady"),r=function(e){const t="uni-map-marker-label-"+e,n=document.createElement("style");return n.id=t,document.head.appendChild(n),Qr((()=>{n.remove()})),function(e){const r=Object.assign({},e,{position:"absolute",top:"70px",borderStyle:"solid"}),o=document.createElement("div");return Object.keys(r).forEach((e=>{o.style[e]=r[e]||""})),n.innerText=`.${t}{${o.getAttribute("style")}}`,t}}(t);let o;function i(e){pm()?e.removeAMapText():e.setMap(null)}if(n(((n,s,a)=>{function l(e){const l=e.title;let c;c=pm()?new s.LngLat(e.longitude,e.latitude):gm()?new s.Point(e.longitude,e.latitude):new s.LatLng(e.latitude,e.longitude);const u=new Image;let d=0;u.onload=()=>{const h=e.anchor||{};let f,p,g,m,v="number"==typeof h.x?h.x:.5,y="number"==typeof h.y?h.y:1;e.iconPath&&(e.width||e.height)?(p=e.width||u.width/u.height*e.height,g=e.height||u.height/u.width*e.width):(p=u.width/2,g=u.height/2),d=g,m=g-(g-y*g),f="MarkerImage"in s?new s.MarkerImage(u.src,null,null,new s.Point(v*p,y*g),new s.Size(p,g)):"Icon"in s?new s.Icon({image:u.src,size:new s.Size(p,g),imageSize:new s.Size(p,g),imageOffset:new s.Pixel(v*p,y*g)}):{url:u.src,anchor:new s.Point(v,y),size:new s.Size(p,g)},gm()?(o=new s.Marker(new s.Point(c.lng,c.lat)),n.addOverlay(o)):(o.setPosition(c),o.setIcon(f)),"setRotation"in o&&o.setRotation(e.rotate||0);const b=e.label||{};let _;if("label"in o&&(o.label.setMap(null),delete o.label),b.content){const e={borderColor:b.borderColor,borderWidth:(Number(b.borderWidth)||0)+"px",padding:(Number(b.padding)||0)+"px",borderRadius:(Number(b.borderRadius)||0)+"px",backgroundColor:b.bgColor,color:b.color,fontSize:(b.fontSize||14)+"px",lineHeight:(b.fontSize||14)+"px",marginLeft:(Number(b.anchorX||b.x)||0)+"px",marginTop:(Number(b.anchorY||b.y)||0)+"px"};if("Label"in s)_=new s.Label({position:c,map:n,clickable:!1,content:b.content,style:e}),o.label=_;else if("setLabel"in o)if(pm()){const t=`
\n ${b.content}\n
`;o.setLabel({content:t,direction:"bottom-right"})}else{const t=r(e);o.setLabel({text:b.content,color:e.color,fontSize:e.fontSize,className:t})}}const w=e.callout||{};let S,x=o.callout;if(w.content||l){pm()&&w.content&&(w.content=w.content.replaceAll("\n","
"));const r="0px 0px 3px 1px rgba(0,0,0,0.5)";let i=-d/2;if((e.width||e.height)&&(i+=14-d/2),S=w.content?{position:c,map:n,top:m,offsetY:i,content:w.content,color:w.color,fontSize:w.fontSize,borderRadius:w.borderRadius,bgColor:w.bgColor,padding:w.padding,boxShadow:w.boxShadow||r,display:w.display}:{position:c,map:n,top:m,offsetY:i,content:l,boxShadow:r},x)x.setOption(S);else if(pm()){const e=()=>{""!==t&&a("callouttap",{},{markerId:Number(t)})};x=o.callout=new s.Callout(S,e)}else x=o.callout=new s.Callout(S),x.div.onclick=function(e){""!==t&&a("callouttap",e,{markerId:Number(t)}),e.stopPropagation(),e.preventDefault()},dm().type===um.GOOGLE&&(x.div.ontouchstart=function(e){e.stopPropagation()},x.div.onpointerdown=function(e){e.stopPropagation()})}else x&&(i(x),delete o.callout)},e.iconPath?u.src=_f(e.iconPath):console.error("Marker.iconPath is required.")}!function(e){gm()||(o=new s.Marker({map:n,flat:!0,autoRotation:!1})),l(e);const r=s.event||s.Event;gm()||r.addListener(o,"click",(()=>{const n=o.callout;if(n&&!n.alwaysVisible)if(pm())n.visible=!n.visible,n.visible?o.callout.createAMapText():o.callout.removeAMapText();else if(n.set("visible",!n.visible),n.visible){const e=n.div,t=e.parentNode;t.removeChild(e),t.appendChild(e)}t&&a("markertap",{},{markerId:Number(t),latitude:e.latitude,longitude:e.longitude})}))}(e),dr(e,l)})),t){const e=Do("addMapChidlContext"),r=Do("removeMapChidlContext"),i={id:t,translate(e){n(((t,n,r)=>{const i=e.destination,s=e.duration,a=!!e.autoRotate;let l=Number(e.rotate)||0,c=0;"getRotation"in o&&(c=o.getRotation());const u=o.getPosition(),d=new n.LatLng(i.latitude,i.longitude),h=n.geometry.spherical.computeDistanceBetween(u,d)/1e3/(("number"==typeof s?s:1e3)/36e5),f=n.event||n.Event,p=f.addListener(o,"moving",(e=>{const t=e.latLng,n=o.label;n&&n.setPosition(t);const r=o.callout;r&&r.setPosition(t)})),g=f.addListener(o,"moveend",(()=>{g.remove(),p.remove(),o.lastPosition=u,o.setPosition(d);const t=o.label;t&&t.setPosition(d);const n=o.callout;n&&n.setPosition(d);const r=e.animationEnd;y(r)&&r()}));let m=0;a&&(o.lastPosition&&(m=n.geometry.spherical.computeHeading(o.lastPosition,u)),l=n.geometry.spherical.computeHeading(u,d)-m),"setRotation"in o&&o.setRotation(c+l),"moveTo"in o?o.moveTo(d,h):(o.setPosition(d),f.trigger(o,"moveend",{}))}))}};e(i),Qr((()=>r(i)))}return Qr((function(){o&&(o.label&&"setMap"in o.label&&o.label.setMap(null),o.callout&&i(o.callout),o.setMap(null))})),()=>null}});function vm(e){if(!e)return{r:0,g:0,b:0,a:0};let t=e.slice(1);const n=t.length;if(![3,4,6,8].includes(n))return{r:0,g:0,b:0,a:0};3!==n&&4!==n||(t=t.replace(/(\w{1})/g,"$1$1"));let[r,o,i,s]=t.match(/(\w{2})/g);const a=parseInt(r,16),l=parseInt(o,16),c=parseInt(i,16);return s?{r:a,g:l,b:c,a:(`0x100${s}`-65536)/255}:{r:a,g:l,b:c,a:1}}const ym={points:{type:Array,require:!0},color:{type:String,default:"#000000"},width:{type:[Number,String],default:""},dottedLine:{type:[Boolean,String],default:!1},arrowLine:{type:[Boolean,String],default:!1},arrowIconPath:{type:String,default:""},borderColor:{type:String,default:"#000000"},borderWidth:{type:[Number,String],default:""},colorList:{type:Array,default:()=>[]},level:{type:String,default:""}},bm=mu({name:"MapPolyline",props:ym,setup(e){let t,n;function r(){t&&t.setMap(null),n&&n.setMap(null)}return Do("onMapReady")(((o,i)=>{function s(e){const r=[];e.points.forEach((e=>{let t;t=pm()?[e.longitude,e.latitude]:gm()?new i.Point(e.longitude,e.latitude):new i.LatLng(e.latitude,e.longitude),r.push(t)}));const s=Number(e.width)||1,{r:a,g:l,b:c,a:u}=vm(e.color),{r:d,g:h,b:f,a:p}=vm(e.borderColor),g={map:o,clickable:!1,path:r,strokeWeight:s,strokeColor:e.color||void 0,strokeDashStyle:e.dottedLine?"dash":"solid"},m=Number(e.borderWidth)||0,v={map:o,clickable:!1,path:r,strokeWeight:s+2*m,strokeColor:e.borderColor||void 0,strokeDashStyle:e.dottedLine?"dash":"solid"};"Color"in i?(g.strokeColor=new i.Color(a,l,c,u),v.strokeColor=new i.Color(d,h,f,p)):(g.strokeColor=`rgb(${a}, ${l}, ${c})`,g.strokeOpacity=u,v.strokeColor=`rgb(${d}, ${h}, ${f})`,v.strokeOpacity=p),m&&(n=new i.Polyline(v)),gm()?(t=new i.Polyline(g.path,g),o.addOverlay(t)):t=new i.Polyline(g)}s(e),dr(e,(function(e){r(),s(e)}))})),Qr(r),()=>null}}),_m=mu({name:"MapCircle",props:{latitude:{type:[Number,String],require:!0},longitude:{type:[Number,String],require:!0},color:{type:String,default:"#000000"},fillColor:{type:String,default:"#00000000"},radius:{type:[Number,String],require:!0},strokeWidth:{type:[Number,String],default:""},level:{type:String,default:""}},setup(e){let t;function n(){t&&t.setMap(null)}return Do("onMapReady")(((r,o)=>{function i(e){const n=pm()||gm()?[e.longitude,e.latitude]:new o.LatLng(e.latitude,e.longitude),i={map:r,center:n,clickable:!1,radius:e.radius,strokeWeight:Number(e.strokeWidth)||1,strokeDashStyle:"solid"};if(gm())i.strokeColor=e.color,i.fillColor=e.fillColor||"#000",i.fillOpacity=1;else{const{r:t,g:n,b:r,a:s}=vm(e.fillColor),{r:a,g:l,b:c,a:u}=vm(e.color);"Color"in o?(i.fillColor=new o.Color(t,n,r,s),i.strokeColor=new o.Color(a,l,c,u)):(i.fillColor=`rgb(${t}, ${n}, ${r})`,i.fillOpacity=s,i.strokeColor=`rgb(${a}, ${l}, ${c})`,i.strokeOpacity=u)}if(gm()){let e=new o.Point(i.center[0],i.center[1]);t=new o.Circle(e,i.radius,i),r.addOverlay(t)}else t=new o.Circle(i),pm()&&r.add(t)}i(e),dr(e,(function(e){n(),i(e)}))})),Qr(n),()=>null}}),wm={id:{type:[Number,String],default:""},position:{type:Object,required:!0},iconPath:{type:String,required:!0},clickable:{type:[Boolean,String],default:""},trigger:{type:Function,required:!0}},Sm=mu({name:"MapControl",props:wm,setup(e){const t=zi((()=>_f(e.iconPath))),n=zi((()=>{let t=`top:${e.position.top||0}px;left:${e.position.left||0}px;`;return e.position.width&&(t+=`width:${e.position.width}px;`),e.position.height&&(t+=`height:${e.position.height}px;`),t})),r=t=>{e.clickable&&e.trigger("controltap",t,{controlId:e.id})};return()=>gi("div",{class:"uni-map-control"},[gi("img",{src:t.value,style:n.value,class:"uni-map-control-icon",onClick:r},null,12,["src","onClick"])])}}),xm=navigator.cookieEnabled&&(window.localStorage||window.sessionStorage)||{};let Em;function Tm(){if(Em=Em||xm.__DC_STAT_UUID,!Em){Em=Date.now()+""+Math.floor(1e7*Math.random());try{xm.__DC_STAT_UUID=Em}catch(e){}}return Em}function Cm(){if(!0!==__uniConfig.darkmode)return b(__uniConfig.darkmode)?__uniConfig.darkmode:"light";try{return window.matchMedia("(prefers-color-scheme: light)").matches?"light":"dark"}catch(e){return"light"}}function Mm(){let e,t="0",n="",r="phone";const o=navigator.language;if(xf){e="iOS";const r=wf.match(/OS\s([\w_]+)\slike/);r&&(t=r[1].replace(/_/g,"."));const o=wf.match(/\(([a-zA-Z]+);/);o&&(n=o[1])}else if(Sf){e="Android";const r=wf.match(/Android[\s/]([\w\.]+)[;\s]/);r&&(t=r[1]);const o=wf.match(/\((.+?)\)/),i=o?o[1].split(";"):wf.split(" "),s=[/\bAndroid\b/i,/\bLinux\b/i,/\bU\b/i,/^\s?[a-z][a-z]$/i,/^\s?[a-z][a-z]-[a-z][a-z]$/i,/\bwv\b/i,/\/[\d\.,]+$/,/^\s?[\d\.,]+$/,/\bBrowser\b/i,/\bMobile\b/i];for(let e=0;e0){n=t.split("Build")[0].trim();break}let r;for(let e=0;e-1&&e.indexOf("MSIE")>-1,n=e.indexOf("Edge")>-1&&!t,r=e.indexOf("Trident")>-1&&e.indexOf("rv:11.0")>-1;if(t){new RegExp("MSIE (\\d+\\.\\d+);").test(e);const t=parseFloat(RegExp.$1);return t>6?t:6}return n?-1:r?11:-1}());if("-1"!==l)a="IE";else{const e=["Version","Firefox","Chrome","Edge{0,1}"],t=["Safari","Firefox","Chrome","Edge"];for(let n=0;n{const e=window.devicePixelRatio,t=kf(),n=Af(t),r=Df(t,n),o=function(e,t){return e?Math[t?"min":"max"](screen.height,screen.width):screen.height}(t,n),i=Of(r);let s=window.innerHeight;const a=dc.top,l={left:dc.left,right:i-dc.right,top:dc.top,bottom:s-dc.bottom,width:i-dc.left-dc.right,height:s-dc.top-dc.bottom},{top:c,bottom:u}=mc();return s-=c,s-=u,{windowTop:c,windowBottom:u,windowWidth:i,windowHeight:s,pixelRatio:e,screenWidth:r,screenHeight:o,statusBarHeight:a,safeArea:l,safeAreaInsets:{top:dc.top,right:dc.right,bottom:dc.bottom,left:dc.left},screenTop:o-s}}));let Am,Dm=!0;function Om(){Dm&&(Am=Mm())}const Im=vd(0,(()=>{Om();const{deviceBrand:e,deviceModel:t,brand:n,model:r,platform:o,system:i,deviceOrientation:s,deviceType:a,osname:l,osversion:c}=Am;return d({brand:n,deviceBrand:e,deviceModel:t,devicePixelRatio:window.devicePixelRatio,deviceId:Tm(),deviceOrientation:s,deviceType:a,model:r,platform:o,system:i,osName:l?l.toLocaleLowerCase():void 0,osVersion:c})})),Pm=vd(0,(()=>{Om();const{theme:e,language:t,browserName:n,browserVersion:r}=Am;return d({appId:__uniConfig.appId,appName:__uniConfig.appName,appVersion:__uniConfig.appVersion,appVersionCode:__uniConfig.appVersionCode,appLanguage:Yd?Yd():t,enableDebug:!1,hostSDKVersion:void 0,hostPackageName:void 0,hostFontSizeSetting:void 0,hostName:n,hostVersion:r,hostTheme:e,hostLanguage:t,language:t,SDKVersion:"",theme:e,version:"",uniPlatform:"web",isUniAppX:!1,uniCompileVersion:__uniConfig.compilerVersion,uniCompilerVersion:__uniConfig.compilerVersion,uniRuntimeVersion:__uniConfig.compilerVersion},{})})),Bm=vd(0,(()=>{Dm=!0,Om(),Dm=!1;const e=km(),t=Im(),n=Pm();Dm=!0;const{ua:r,browserName:o,browserVersion:i,osname:s,osversion:a}=Am,l=d(e,t,n,{ua:r,browserName:o,browserVersion:i,uniPlatform:"web",uniCompileVersion:__uniConfig.compilerVersion,uniRuntimeVersion:__uniConfig.compilerVersion,fontSizeSetting:void 0,osName:s.toLocaleLowerCase(),osVersion:a,osLanguage:void 0,osTheme:void 0});return delete l.screenTop,delete l.enableDebug,__uniConfig.darkmode||delete l.theme,function(e){let t={};return T(e)&&Object.keys(e).sort().forEach((n=>{const r=n;t[r]=e[r]})),Object.keys(t)?t:e}(l)})),Rm=yd("getSystemInfo",((e,{resolve:t})=>t(Bm())));function Lm(){zm().then((({networkType:e})=>{My.invokeOnCallback("onNetworkStatusChange",{isConnected:"none"!==e,networkType:e})}))}function Nm(){return navigator.connection||navigator.webkitConnection||navigator.mozConnection}const $m=pd("onNetworkStatusChange",(()=>{const e=Nm();e?e.addEventListener("change",Lm):(window.addEventListener("offline",Lm),window.addEventListener("online",Lm))})),zm=yd("getNetworkType",((e,{resolve:t})=>{const n=Nm();let r="unknown";return n?(r=n.type,"cellular"===r&&n.effectiveType?r=n.effectiveType.replace("slow-",""):!r&&n.effectiveType?r=n.effectiveType:["none","wifi"].includes(r)||(r="unknown")):!1===navigator.onLine&&(r="none"),t({networkType:r})}));let jm=null;const Vm=pd("onCompass",(()=>{Fm()})),Hm=gd("offCompass",(()=>{qm()})),Fm=yd("startCompass",((e,{resolve:t,reject:n})=>{if(window.DeviceOrientationEvent){if(!jm){if(DeviceOrientationEvent.requestPermission)return void DeviceOrientationEvent.requestPermission().then((e=>{"granted"===e?(r(),t()):n(`${e}`)})).catch((e=>{n(`${e}`)}));r()}t()}else n();function r(){jm=function(e){const t=360-(null!==e.alpha?e.alpha:360);My.invokeOnCallback("onCompass",{direction:t})},window.addEventListener("deviceorientation",jm,!1)}})),qm=yd("stopCompass",((e,{resolve:t})=>{jm&&(window.removeEventListener("deviceorientation",jm,!1),jm=null),t()}));const Um=yd("setClipboardData",((e,t)=>{return n=void 0,r=[e,t],o=function*({data:e},{resolve:t,reject:n}){try{yield navigator.clipboard.writeText(e),t()}catch(r){!function(e,t,n){const r=document.getElementById("#clipboard");r&&r.remove();const o=document.createElement("textarea");o.setAttribute("inputmode","none"),o.id="#clipboard",o.style.position="fixed",o.style.top="-9999px",o.style.zIndex="-9999",document.body.appendChild(o),o.value=e,o.select(),o.setSelectionRange(0,o.value.length);const i=document.execCommand("Copy",!1);o.blur(),i?t():n()}(e,t,n)}},new Promise(((e,t)=>{var i=e=>{try{a(o.next(e))}catch(C_){t(C_)}},s=e=>{try{a(o.throw(e))}catch(C_){t(C_)}},a=t=>t.done?e(t.value):Promise.resolve(t.value).then(i,s);a((o=o.apply(n,r)).next())}));var n,r,o}),0,th);const Wm=vd(0,((e,t)=>{const n=typeof t,r="string"===n?t:JSON.stringify({type:n,data:t});localStorage.setItem(e,r)})),Km=yd("setStorage",(({key:e,data:t},{resolve:n,reject:r})=>{try{Wm(e,t),n()}catch(o){r(o.message)}}));function Ym(e){const t=localStorage&&localStorage.getItem(e);if(!b(t))throw new Error("data not found");let n=t;try{const e=function(e){const t=["object","string","number","boolean","undefined"];try{const n=b(e)?JSON.parse(e):e,r=n.type;if(t.indexOf(r)>=0){const e=Object.keys(n);if(2===e.length&&"data"in n){if(typeof n.data===r)return n.data;if("object"===r&&/^\d{4}-\d{2}-\d{2}T\d{2}\:\d{2}\:\d{2}\.\d{3}Z$/.test(n.data))return new Date(n.data)}else if(1===e.length)return""}}catch(n){}}(JSON.parse(t));void 0!==e&&(n=e)}catch(r){}return n}const Xm=vd(0,(e=>{try{return Ym(e)}catch(t){return""}})),Gm=yd("getStorage",(({key:e},{resolve:t,reject:n})=>{try{t({data:Ym(e)})}catch(r){n(r.message)}})),Jm=vd(0,(()=>{localStorage&&localStorage.clear()}));const Zm=yd("getImageInfo",(({src:e},{resolve:t,reject:n})=>{const r=new Image;r.onload=function(){t({width:r.naturalWidth,height:r.naturalHeight,path:0===e.indexOf("/")?window.location.protocol+"//"+window.location.host+e:e})},r.onerror=function(){n()},r.src=e}),0,ah),Qm={image:{jpg:"jpeg",jpe:"jpeg",pbm:"x-portable-bitmap",pgm:"x-portable-graymap",pnm:"x-portable-anymap",ppm:"x-portable-pixmap",psd:"vnd.adobe.photoshop",pic:"x-pict",rgb:"x-rgb",svg:"svg+xml",svgz:"svg+xml",tif:"tiff",xif:"vnd.xiff",wbmp:"vnd.wap.wbmp",wdp:"vnd.ms-photo",xbm:"x-xbitmap",ico:"x-icon"},video:{"3g2":"3gpp2","3gp":"3gpp",avi:"x-msvideo",f4v:"x-f4v",flv:"x-flv",jpgm:"jpm",jpgv:"jpeg",m1v:"mpeg",m2v:"mpeg",mpe:"mpeg",mpg:"mpeg",mpg4:"mpeg",m4v:"x-m4v",mkv:"x-matroska",mov:"quicktime",qt:"quicktime",movie:"x-sgi-movie",mp4v:"mp4",ogv:"ogg",smv:"x-smv",wm:"x-ms-wm",wmv:"x-ms-wmv",wmx:"x-ms-wmx",wvx:"x-ms-wvx"}};function ev({count:e,sourceType:t,type:n,extension:r}){pp();const o=document.createElement("input");return o.type="file",function(e,t){for(const n in t)e.style[n]=t[n]}(o,{position:"absolute",visibility:"hidden",zIndex:"-999",width:"0",height:"0",top:"0",left:"0"}),o.accept=r.map((e=>{if("all"!==n){const t=e.replace(".","");return`${n}/${Qm[n][t]||t}`}return function(){const e=window.navigator.userAgent.toLowerCase().match(/MicroMessenger/i);return!(!e||"micromessenger"!==e[0])}()?".":0===e.indexOf(".")?e:`.${e}`})).join(","),e&&e>1&&(o.multiple=!0),"all"!==n&&t instanceof Array&&1===t.length&&"camera"===t[0]&&o.setAttribute("capture","camera"),o}let tv=null;const nv=yd("chooseFile",(({count:e,sourceType:t,type:n,extension:r},{resolve:o,reject:i})=>{Ll();const{t:s}=Dl();tv&&(document.body.removeChild(tv),tv=null),tv=ev({count:e,sourceType:t,type:n,extension:r}),document.body.appendChild(tv),tv.addEventListener("change",(function(t){const n=t.target,r=[];if(n&&n.files){const t=n.files.length;for(let o=0;o(i=i||$f(t),i)}),oe))},tempFiles:r})})),tv.click(),gp()||console.warn(s("uni.chooseFile.notUserActivation"))}),0,sh);let rv=null;const ov=yd("chooseImage",(({count:e,sourceType:t,extension:n},{resolve:r,reject:o})=>{Ll();const{t:i}=Dl();rv&&(document.body.removeChild(rv),rv=null),rv=ev({count:e,sourceType:t,extension:n,type:"image"}),document.body.appendChild(rv),rv.addEventListener("change",(function(t){const n=t.target,o=[];if(n&&n.files){const t=n.files.length;for(let r=0;r(i=i||$f(t),i)}),re))},tempFiles:o})})),rv.click(),gp()||console.warn(i("uni.chooseFile.notUserActivation"))}),0,oh),iv={esc:["Esc","Escape"],enter:["Enter"]},sv=Object.keys(iv);function av(){const e=hn(""),t=hn(!1),n=n=>{if(t.value)return;const r=sv.find((e=>-1!==iv[e].indexOf(n.key)));r&&(e.value=r),Ln((()=>e.value=""))};return Xr((()=>{document.addEventListener("keyup",n)})),Zr((()=>{document.removeEventListener("keyup",n)})),{key:e,disable:t}}const lv=gi("div",{class:"uni-mask"},null,-1);function cv(e,t,n){return t.onClose=(...e)=>(t.visible=!1,n.apply(null,e)),Ls(Ar({setup:()=>()=>(ri(),li(e,t,null,16))}))}function uv(e){let t=document.getElementById(e);return t||(t=document.createElement("div"),t.id=e,document.body.append(t)),t}function dv(e,{onEsc:t,onEnter:n}){const r=hn(e.visible),{key:o,disable:i}=av();return dr((()=>e.visible),(e=>r.value=e)),dr((()=>r.value),(e=>i.value=!e)),cr((()=>{const{value:e}=o;"esc"===e?t&&t():"enter"===e&&n&&n()})),r}const hv=md("request",(({url:e,data:t,header:n={},method:r,dataType:o,responseType:i,withCredentials:s,timeout:a=__uniConfig.networkTimeout.request},{resolve:l,reject:c})=>{let u=null;const d=function(e){const t=Object.keys(e).find((e=>"content-type"===e.toLowerCase()));if(!t)return;const n=e[t];if(0===n.indexOf("application/json"))return"json";if(0===n.indexOf("application/x-www-form-urlencoded"))return"urlencoded";return"string"}(n);if("GET"!==r)if(b(t)||t instanceof ArrayBuffer)u=t;else if("json"===d)try{u=JSON.stringify(t)}catch(m){u=t.toString()}else if("urlencoded"===d){const e=[];for(const n in t)p(t,n)&&e.push(encodeURIComponent(n)+"="+encodeURIComponent(t[n]));u=e.join("&")}else u=t.toString();const h=new XMLHttpRequest,f=new fv(h);h.open(r,e);for(const v in n)p(n,v)&&h.setRequestHeader(v,n[v]);const g=setTimeout((function(){h.onload=h.onabort=h.onerror=null,f.abort(),c("timeout",{errCode:5})}),a);return h.responseType=i,h.onload=function(){clearTimeout(g);const e=h.status;let t="text"===i?h.responseText:h.response;if("text"===i&&"json"===o)try{t=JSON.parse(t)}catch(m){}l({data:t,statusCode:e,header:pv(h.getAllResponseHeaders()),cookies:[]})},h.onabort=function(){clearTimeout(g),c("abort",{errCode:600003})},h.onerror=function(){clearTimeout(g),c(void 0,{errCode:5})},h.withCredentials=s,h.send(u),f}),0,dh);class fv{constructor(e){this._xhr=e}abort(){this._xhr&&(this._xhr.abort(),delete this._xhr)}onHeadersReceived(e){throw new Error("Method not implemented.")}offHeadersReceived(e){throw new Error("Method not implemented.")}}function pv(e){const t={};return e.split("\n").forEach((e=>{const n=e.match(/(\S+\s*):\s*(.*)/);n&&3===n.length&&(t[n[1]]=n[2])})),t}class gv{constructor(e){this._callbacks=[],this._xhr=e}onProgressUpdate(e){y(e)&&this._callbacks.push(e)}offProgressUpdate(e){const t=this._callbacks.indexOf(e);t>=0&&this._callbacks.splice(t,1)}abort(){this._isAbort=!0,this._xhr&&(this._xhr.abort(),delete this._xhr)}onHeadersReceived(e){throw new Error("Method not implemented.")}offHeadersReceived(e){throw new Error("Method not implemented.")}}const mv=md("uploadFile",(({url:e,file:t,filePath:n,name:r,files:o,header:i={},formData:s={},timeout:a=__uniConfig.networkTimeout.uploadFile},{resolve:l,reject:c})=>{var u=new gv;return g(o)&&o.length||(o=[{name:r,file:t,uri:n}]),Promise.all(o.map((({file:e,uri:t})=>e instanceof Blob?Promise.resolve(Nf(e)):Lf(t)))).then((function(t){var n,r=new XMLHttpRequest,d=new FormData;Object.keys(s).forEach((e=>{d.append(e,s[e])})),Object.values(o).forEach((({name:e},n)=>{const r=t[n];d.append(e||"file",r,r.name||`file-${Date.now()}`)})),r.open("POST",e),Object.keys(i).forEach((e=>{r.setRequestHeader(e,i[e])})),r.upload.onprogress=function(e){u._callbacks.forEach((t=>{var n=e.loaded,r=e.total;t({progress:Math.round(n/r*100),totalBytesSent:n,totalBytesExpectedToSend:r})}))},r.onerror=function(){clearTimeout(n),c("",{errCode:602001})},r.onabort=function(){clearTimeout(n),c("abort",{errCode:600003})},r.onload=function(){clearTimeout(n);const e=r.status;l({statusCode:e,data:r.responseText||r.response})},u._isAbort?c("abort",{errCode:600003}):(n=setTimeout((function(){r.upload.onprogress=r.onload=r.onabort=r.onerror=null,u.abort(),c("timeout",{errCode:5})}),a),r.send(d),u._xhr=r)})).catch((()=>{setTimeout((()=>{c("file error")}),0)})),u}),0,hh),vv=[],yv={open:"",close:"",error:"",message:""};class bv{constructor(e,t,n){let r;this._callbacks={open:[],close:[],error:[],message:[]};try{const n=this._webSocket=new WebSocket(e,t);n.binaryType="arraybuffer";["open","close","error","message"].forEach((e=>{this._callbacks[e]=[],n.addEventListener(e,(t=>{const{data:n,code:r,reason:o}=t,i="message"===e?{data:n}:"close"===e?{code:r,reason:o}:{};if(this._callbacks[e].forEach((t=>{try{t(i)}catch(C_){console.error(`thirdScriptError\n${C_};at socketTask.on${P(e)} callback function\n`,C_)}})),this===vv[0]&&yv[e]&&My.invokeOnCallback(yv[e],i),"error"===e||"close"===e){const e=vv.indexOf(this);e>=0&&vv.splice(e,1)}}))}));["CLOSED","CLOSING","CONNECTING","OPEN","readyState"].forEach((e=>{Object.defineProperty(this,e,{get:()=>n[e]})}))}catch(C_){r=C_}n&&n(r,this)}send(e){const t=(e||{}).data,n=this._webSocket;try{if(n.readyState!==n.OPEN)throw ue(e,{errMsg:"sendSocketMessage:fail SocketTask.readyState is not OPEN",errCode:10002}),new Error("SocketTask.readyState is not OPEN");n.send(t),ue(e,"sendSocketMessage:ok")}catch(r){ue(e,{errMsg:`sendSocketMessage:fail ${r}`,errCode:602001})}}close(e={}){const t=this._webSocket;try{const n=e.code||1e3,r=e.reason;b(r)?t.close(n,r):t.close(n),ue(e,"closeSocket:ok")}catch(n){ue(e,`closeSocket:fail ${n}`)}}onOpen(e){this._callbacks.open.push(e)}onMessage(e){this._callbacks.message.push(e)}onError(e){this._callbacks.error.push(e)}onClose(e){this._callbacks.close.push(e)}}const _v=md("connectSocket",(({url:e,protocols:t},{resolve:n,reject:r})=>new bv(e,t,((e,t)=>{e?r(e.toString(),{errCode:600009}):(vv.push(t),n())}))),0,fh),wv=yd("getLocation",(({type:e,altitude:t,highAccuracyExpireTime:n,isHighAccuracy:r},{resolve:o,reject:i})=>{const s=dm();new Promise(((e,o)=>{navigator.geolocation?navigator.geolocation.getCurrentPosition((t=>e({coords:t.coords})),o,{enableHighAccuracy:r||t,timeout:n||1e5}):o(new Error("device nonsupport geolocation"))})).catch((e=>new Promise(((t,n)=>{s.type===um.QQ?im(`https://apis.map.qq.com/ws/location/v1/ip?output=jsonp&key=${s.key}`,{callback:"callback"},(e=>{if("result"in e&&e.result.location){const n=e.result.location;t({coords:{latitude:n.lat,longitude:n.lng},skip:!0})}else n(new Error(e.message||JSON.stringify(e)))}),(()=>n(new Error("network error")))):s.type===um.GOOGLE?hv({method:"POST",url:`https://www.googleapis.com/geolocation/v1/geolocate?key=${s.key}`,success(e){const r=e.data;"location"in r?t({coords:{latitude:r.location.lat,longitude:r.location.lng,accuracy:r.accuracy},skip:!0}):n(new Error(r.error&&r.error.message||JSON.stringify(e)))},fail(){n(new Error("network error"))}}):s.type===um.AMAP?lm([],(()=>{window.AMap.plugin("AMap.Geolocation",(()=>{new window.AMap.Geolocation({enableHighAccuracy:!0,timeout:1e4}).getCurrentPosition(((e,r)=>{"complete"===e?t({coords:{latitude:r.position.lat,longitude:r.position.lng,accuracy:r.accuracy},skip:!0}):n(new Error(r.message))}))}))})):n(e)})))).then((({coords:t,skip:n})=>{(function(e,t,n){const r=dm();return e&&"WGS84"===e.toUpperCase()||["google"].includes(r.type)||n?Promise.resolve(t):"qq"===r.type?new Promise((e=>{im(`https://apis.map.qq.com/ws/coord/v1/translate?type=1&locations=${t.latitude},${t.longitude}&key=${r.key}&output=jsonp`,{callback:"callback"},(n=>{if("locations"in n&&n.locations.length){const{lng:r,lat:o}=n.locations[0];e({longitude:r,latitude:o,altitude:t.altitude,accuracy:t.accuracy,altitudeAccuracy:t.altitudeAccuracy,heading:t.heading,speed:t.speed})}else e(t)}),(()=>e(t)))})):"AMap"===r.type?new Promise((e=>{lm([],(()=>{window.AMap.convertFrom([t.longitude,t.latitude],"gps",((n,r)=>{if("ok"===r.info&&r.locations.length){const{lat:n,lng:o}=r.locations[0];e({longitude:o,latitude:n,altitude:t.altitude,accuracy:t.accuracy,altitudeAccuracy:t.altitudeAccuracy,heading:t.heading,speed:t.speed})}else e(t)}))}))})):Promise.reject(new Error("translate coordinate system faild"))})(e,t,n).then((e=>{o({latitude:e.latitude,longitude:e.longitude,accuracy:e.accuracy,speed:e.altitude||0,altitude:e.altitude||0,verticalAccuracy:e.altitudeAccuracy||0,horizontalAccuracy:e.accuracy||0})})).catch((e=>{i(e.message)}))})).catch((e=>{i(e.message||JSON.stringify(e))}))}),0,rh),Sv=yd("navigateBack",((e,{resolve:t,reject:n})=>{let r=!0;return!0===Lc("onBackPress",{from:e.from||"navigateBack"})&&(r=!1),r?(Yg().$router.go(-e.delta),t()):n("onBackPress")}),0,yh),xv=yd("navigateTo",(({url:e,events:t,isAutomatedTesting:n},{resolve:r,reject:o})=>{if(Jh.handledBeforeEntryPageRoutes)return Lh({type:"navigateTo",url:e,events:t,isAutomatedTesting:n}).then(r).catch(o);Zh.push({args:{type:"navigateTo",url:e,events:t,isAutomatedTesting:n},resolve:r,reject:o})}),0,gh);function Ev(e){__uniConfig.darkmode&&My.on("onThemeChange",e)}function Tv(e){My.off("onThemeChange",e)}function Cv(e){let t={};return __uniConfig.darkmode&&(t=ze(e,__uniConfig.themeConfig,Cm())),__uniConfig.darkmode?t:e}function Mv(e,t){const n=Qt(e),r=n?Xt(Cv(e)):Cv(e);return __uniConfig.darkmode&&n&&dr(e,(e=>{const t=Cv(e);for(const n in t)r[n]=t[n]})),t&&Ev(t),r}const kv={light:{cancelColor:"#000000"},dark:{cancelColor:"rgb(170, 170, 170)"}},Av=Ar({props:{title:{type:String,default:""},content:{type:String,default:""},showCancel:{type:Boolean,default:!0},cancelText:{type:String,default:"Cancel"},cancelColor:{type:String,default:"#000000"},confirmText:{type:String,default:"OK"},confirmColor:{type:String,default:"#007aff"},visible:{type:Boolean},editable:{type:Boolean,default:!1},placeholderText:{type:String,default:""}},setup(e,{emit:t}){const n=hn(""),r=()=>s.value=!1,o=()=>(r(),t("close","cancel")),i=()=>(r(),t("close","confirm",n.value)),s=dv(e,{onEsc:o,onEnter:()=>{!e.editable&&i()}}),a=function(e){const t=hn(e.cancelColor),n=({theme:e})=>{((e,t)=>{t.value=kv[e].cancelColor})(e,t)};return cr((()=>{e.visible?(t.value=e.cancelColor,"#000"===e.cancelColor&&("dark"===Cm()&&n({theme:"dark"}),Ev(n))):Tv(n)})),t}(e);return()=>{const{title:t,content:r,showCancel:l,confirmText:c,confirmColor:u,editable:d,placeholderText:h}=e;return n.value=r,gi(Ki,{name:"uni-fade"},{default:()=>[mr(gi("uni-modal",{onTouchmove:hc},[lv,gi("div",{class:"uni-modal"},[t?gi("div",{class:"uni-modal__hd"},[gi("strong",{class:"uni-modal__title",textContent:t||""},null,8,["textContent"])]):null,d?gi("textarea",{class:"uni-modal__textarea",rows:"1",placeholder:h,value:r,onInput:e=>n.value=e.target.value},null,40,["placeholder","value","onInput"]):gi("div",{class:"uni-modal__bd",onTouchmovePassive:fc,textContent:r},null,40,["onTouchmovePassive","textContent"]),gi("div",{class:"uni-modal__ft"},[l&&gi("div",{style:{color:a.value},class:"uni-modal__btn uni-modal__btn_default",onClick:o},[e.cancelText],12,["onClick"]),gi("div",{style:{color:u},class:"uni-modal__btn uni-modal__btn_primary",onClick:i},[c],12,["onClick"])])])],40,["onTouchmove"]),[[as,s.value]])]})}}});let Dv;const Ov=ae((()=>{My.on("onHidePopup",(()=>Dv.visible=!1))}));let Iv;function Pv(e,t){const n="confirm"===e,r={confirm:n,cancel:"cancel"===e};n&&Dv.editable&&(r.content=t),Iv&&Iv(r)}const Bv=yd("showModal",((e,{resolve:t})=>{Ov(),Iv=t,Dv?(d(Dv,e),Dv.visible=!0):(Dv=Xt(e),Ln((()=>(cv(Av,Dv,Pv).mount(uv("u-a-m")),Ln((()=>Dv.visible=!0))))))}),0,Th),Rv={title:{type:String,default:""},icon:{default:"success",validator:e=>-1!==Ch.indexOf(e)},image:{type:String,default:""},duration:{type:Number,default:1500},mask:{type:Boolean,default:!1},visible:{type:Boolean}},Lv={light:"#fff",dark:"rgba(255,255,255,0.9)"},Nv=e=>Lv[e],$v=Ar({name:"Toast",props:Rv,setup(e){Pl(),Bl();const{Icon:t}=function(e){const t=hn(Nv(Cm())),n=({theme:e})=>t.value=Nv(e);cr((()=>{e.visible?Ev(n):Tv(n)}));return{Icon:zi((()=>{switch(e.icon){case"success":return gi(Mc(Ec,t.value,38),{class:"uni-toast__icon"});case"error":return gi(Mc(Tc,t.value,38),{class:"uni-toast__icon"});case"loading":return gi("i",{class:["uni-toast__icon","uni-loading"]},null,2);default:return null}}))}}(e),n=dv(e,{});return()=>{const{mask:r,duration:o,title:i,image:s}=e;return gi(Ki,{name:"uni-fade"},{default:()=>[mr(gi("uni-toast",{"data-duration":o},[r?gi("div",{class:"uni-mask",style:"background: transparent;",onTouchmove:hc},null,40,["onTouchmove"]):"",s||t.value?gi("div",{class:"uni-toast"},[s?gi("img",{src:s,class:"uni-toast__icon"},null,10,["src"]):t.value,gi("p",{class:"uni-toast__content"},[i])]):gi("div",{class:"uni-sample-toast"},[gi("p",{class:"uni-simple-toast__text"},[i])])],8,["data-duration"]),[[as,n.value]])]})}}});let zv,jv,Vv="";const Hv=Fe();function Fv(e){zv?d(zv,e):(zv=Xt(d(e,{visible:!1})),Ln((()=>{Hv.run((()=>{dr([()=>zv.visible,()=>zv.duration],(([e,t])=>{if(e){if(jv&&clearTimeout(jv),"onShowLoading"===Vv)return;jv=setTimeout((()=>{Yv("onHideToast")}),t)}else jv&&clearTimeout(jv)}))})),My.on("onHidePopup",(()=>Yv("onHidePopup"))),cv($v,zv,(()=>{})).mount(uv("u-a-t"))}))),setTimeout((()=>{zv.visible=!0}),10)}const qv=yd("showToast",((e,{resolve:t,reject:n})=>{Fv(e),Vv="onShowToast",t()}),0,Mh),Uv={icon:"loading",duration:1e8,image:""},Wv=yd("showLoading",((e,{resolve:t,reject:n})=>{d(e,Uv),Fv(e),Vv="onShowLoading",t()}),0,Eh),Kv=yd("hideLoading",((e,{resolve:t,reject:n})=>{Yv("onHideLoading"),t()}));function Yv(e){const{t:t}=Dl();if(!Vv)return;let n="";if("onHideToast"===e&&"onShowToast"!==Vv?n=t("uni.showToast.unpaired"):"onHideLoading"===e&&"onShowLoading"!==Vv&&(n=t("uni.showLoading.unpaired")),n)return console.warn(n);Vv="",setTimeout((()=>{zv.visible=!1}),10)}const Xv=yd("loadFontFace",(({family:e,source:t,desc:n},{resolve:r,reject:o})=>{(function(e,t,n){const r=document.fonts;if(r){const o=new FontFace(e,t,n);return o.load().then((()=>{r.add&&r.add(o)}))}return new Promise((r=>{const o=document.createElement("style"),i=[];if(n){const{style:e,weight:t,stretch:r,unicodeRange:o,variant:s,featureSettings:a}=n;e&&i.push(`font-style:${e}`),t&&i.push(`font-weight:${t}`),r&&i.push(`font-stretch:${r}`),o&&i.push(`unicode-range:${o}`),s&&i.push(`font-variant:${s}`),a&&i.push(`font-feature-settings:${a}`)}o.innerText=`@font-face{font-family:"${e}";src:${t};${i.join(";")}}`,document.head.appendChild(o),r()}))})(e,t=t.startsWith('url("')||t.startsWith("url('")?`url('${_f(t.substring(5,t.length-2))}')`:t.startsWith("url(")?`url('${_f(t.substring(4,t.length-1))}')`:_f(t),n).then((()=>{r()})).catch((e=>{o(`loadFontFace:fail ${e}`)}))}));function Gv(e){function t(){var t;t=e.navigationBar.titleText,document.title=t,My.emit("onNavigationBarChange",{titleText:t})}cr(t),$r(t)}const Jv={width:"50px",height:"50px",iconWidth:"24px"},Zv=mu({name:"TabBar",setup(){const e=hn([]),t=zh(),n=Mv(t,(()=>{const e=Cv(t);n.backgroundColor=e.backgroundColor,n.borderStyle=e.borderStyle,n.color=e.color,n.selectedColor=e.selectedColor,n.blurEffect=e.blurEffect,n.midButton=e.midButton,e.list&&e.list.length&&e.list.forEach(((e,t)=>{n.list[t].iconPath=e.iconPath,n.list[t].selectedIconPath=e.selectedIconPath}))}));!function(e,t){const n=hn(d({type:"midButton"},e.midButton));function r(){let r=[];r=e.list.filter((e=>!1!==e.visible)),e.midButton&&(n.value=d({},Jv,n.value,e.midButton),r=r.filter((e=>!ty(e))),r.length%2==0&&r.splice(Math.floor(r.length/2),0,n.value)),t.value=r}cr(r)}(n,e),function(e){dr((()=>e.shown),(t=>{yc({"--window-bottom":Yh(t?parseInt(e.height):0)})}))}(n);const r=function(e,t,n){return cr((()=>{const r=e.meta;if(r.isTabBar){const e=r.route,o=n.value.findIndex((t=>t.pagePath===e));t.selectedIndex=o}})),(t,n)=>{const{type:r}=t;return()=>{if("midButton"===r)return My.invokeOnCallback("onTabBarMidButtonTap");const{pagePath:o,text:i}=t;let s=se(o);s===__uniRoutes[0].alias&&(s="/"),e.path!==s?Oh({from:"tabBar",url:s,tabBarText:i}):Lc("onTabItemTap",{index:n,text:i,pagePath:o})}}}(pl(),n,e),{style:o,borderStyle:i,placeholderStyle:s}=function(e){const t=zi((()=>{let t=e.backgroundColor;const n=e.blurEffect;return t||qh&&n&&"none"!==n&&(t=Qv[n]),{backgroundColor:t||"#f7f7fa",backdropFilter:"none"!==n?"blur(10px)":n}})),n=zi((()=>{const{borderStyle:t,borderColor:n}=e;return n&&b(n)?{backgroundColor:n}:{backgroundColor:ey[t]||ey.black}})),r=zi((()=>({height:e.height})));return{style:t,borderStyle:n,placeholderStyle:r}}(n);return Xr((()=>{n.iconfontSrc&&Xv({family:"UniTabbarIconFont",source:`url("${n.iconfontSrc}")`})})),()=>{const t=function(e,t,n){const{selectedIndex:r,selectedColor:o,color:i}=e;return n.value.map(((n,s)=>{const a=r===s,l=a?o:i,c=a&&n.selectedIconPath||n.iconPath||"",u=n.iconfont?a&&n.iconfont.selectedText||n.iconfont.text:void 0,d=n.iconfont?a&&n.iconfont.selectedColor||n.iconfont.color:void 0;return ty(n)?function(e,t,n,r,o,i,s,a){const{width:l,height:c,backgroundImage:u,iconWidth:d}=o;return gi("div",{key:"midButton",class:"uni-tabbar__item",style:{flex:"0 0 "+l,position:"relative"},onClick:a(o,s)},[gi("div",{class:"uni-tabbar__mid",style:{width:l,height:c,backgroundImage:u?"url('"+_f(u)+"')":"none"}},[t&&gi("img",{style:{width:d,height:d},src:_f(t)},null,12,["src"])],4),ny(e,t,n,r,o,i)],12,["onClick"])}(l,c,u,d,n,e,s,t):function(e,t,n,r,o,i,s,a){return gi("div",{key:s,class:"uni-tabbar__item",onClick:a(o,s)},[ny(e,t||"",n,r,o,i)],8,["onClick"])}(l,c,u,d,n,e,s,t)}))}(n,r,e);return gi("uni-tabbar",{class:"uni-tabbar-"+n.position},[gi("div",{class:"uni-tabbar",style:o.value},[gi("div",{class:"uni-tabbar-border",style:i.value},null,4),t],4),gi("div",{class:"uni-placeholder",style:s.value},null,4)],2)}}});const Qv={dark:"rgb(0, 0, 0, 0.8)",light:"rgb(250, 250, 250, 0.8)",extralight:"rgb(250, 250, 250, 0.8)"},ey={white:"rgba(255, 255, 255, 0.33)",black:"rgba(0, 0, 0, 0.33)"};function ty(e){return"midButton"===e.type}function ny(e,t,n,r,o,i){const{height:s}=i;return gi("div",{class:"uni-tabbar__bd",style:{height:s}},[n?oy(n,r||"rgb(0, 0, 0, 0.8)",o,i):t&&ry(t,o,i),o.text&&iy(e,o,i),o.redDot&&sy(o.badge)],4)}function ry(e,t,n){const{type:r,text:o}=t,{iconWidth:i}=n;return gi("div",{class:"uni-tabbar__icon"+(o?" uni-tabbar__icon__diff":""),style:{width:i,height:i}},["midButton"!==r&&gi("img",{src:_f(e)},null,8,["src"])],6)}function oy(e,t,n,r){var o;const{type:i,text:s}=n,{iconWidth:a}=r,l="uni-tabbar__icon"+(s?" uni-tabbar__icon__diff":""),c={width:a,height:a},u={fontSize:(null==(o=n.iconfont)?void 0:o.fontSize)||a,color:t};return gi("div",{class:l,style:c},["midButton"!==i&&gi("div",{class:"uni-tabbar__iconfont",style:u},[e],4)],6)}function iy(e,t,n){const{iconPath:r,text:o}=t,{fontSize:i,spacing:s}=n;return gi("div",{class:"uni-tabbar__label",style:{color:e,fontSize:i,lineHeight:r?"normal":1.8,marginTop:r?s:"inherit"}},[o],4)}function sy(e){return gi("div",{class:"uni-tabbar__reddot"+(e?" uni-tabbar__badge":"")},[e],2)}const ay=mu({name:"Layout",setup(e,{emit:t}){const n=hn(null);vc({"--status-bar-height":"0px","--top-window-height":"0px","--window-left":"0px","--window-right":"0px","--window-margin":"0px","--tab-bar-height":"0px"});const r=function(){const e=pl();return{routeKey:zi((()=>uf("/"+e.meta.route,Bu()))),isTabBar:zi((()=>e.meta.isTabBar)),routeCache:hf}}(),{layoutState:o,windowState:i}=function(){Pu();{const e=Xt({marginWidth:0,leftWindowWidth:0,rightWindowWidth:0});return dr((()=>e.marginWidth),(e=>vc({"--window-margin":e+"px"}))),dr((()=>e.leftWindowWidth+e.marginWidth),(e=>{vc({"--window-left":e+"px"})})),dr((()=>e.rightWindowWidth+e.marginWidth),(e=>{vc({"--window-right":e+"px"})})),{layoutState:e,windowState:zi((()=>({})))}}}();!function(e,t){const n=Pu();function r(){const r=document.body.clientWidth,o=of();let i={};if(o.length>0){i=Gh(o[o.length-1]).meta}else{const e=Hc(n.path,!0);e&&(i=e.meta)}const s=parseInt(String((p(i,"maxWidth")?i.maxWidth:__uniConfig.globalStyle.maxWidth)||Number.MAX_SAFE_INTEGER));let a=!1;a=r>s,a&&s?(e.marginWidth=(r-s)/2,Ln((()=>{const e=t.value;e&&e.setAttribute("style","max-width:"+s+"px;margin:0 auto;")}))):(e.marginWidth=0,Ln((()=>{const e=t.value;e&&e.removeAttribute("style")})))}dr([()=>n.path],r),Xr((()=>{r(),window.addEventListener("resize",r)}))}(o,n);const s=function(e){const t=Pu(),n=zh(),r=zi((()=>t.meta.isTabBar&&n.shown));return vc({"--tab-bar-height":n.height}),r}(),a=function(e){const t=hn(!1);return zi((()=>({"uni-app--showtabbar":e&&e.value,"uni-app--maxwidth":t.value})))}(s);return()=>{const e=function(e,t,n,r,o,i){return function({routeKey:e,isTabBar:t,routeCache:n}){return gi(hl,null,{default:Jn((({Component:r})=>[(ri(),li(Lr,{matchBy:"key",cache:n},[(ri(),li(or(r),{type:t.value?"tabBar":"",key:e.value}))],1032,["cache"]))])),_:1})}(e)}(r),t=function(e){return mr(gi(Zv,null,null,512),[[as,e.value]])}(s);return gi("uni-app",{ref:n,class:a.value},[e,t],2)}}});const ly=mu({name:"MapLocation",setup(){const e=Xt({latitude:0,longitude:0,rotate:0});{let t=function(t){e.rotate=t.direction},n=function(){wv({type:"gcj02",success:t=>{e.latitude=t.latitude,e.longitude=t.longitude},complete:()=>{i=setTimeout(n,3e4)}})},r=function(){i&&clearTimeout(i),Hm(t)};const o=Do("onMapReady");let i;Vm(t),o(n),Qr(r);const s=Do("addMapChidlContext"),a=Do("removeMapChidlContext"),l={id:"MAP_LOCATION",state:e};s(l),Qr((()=>a(l)))}return()=>e.latitude?gi(mm,xi({anchor:{x:.5,y:.5},width:"44",height:"44",iconPath:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIQAAACECAMAAABmmnOVAAAC01BMVEUAAAAAef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef8Aef96quGStdqStdpbnujMzMzCyM7Gyc7Ky83MzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMwAef8GfP0yjfNWnOp0qOKKsdyYt9mju9aZt9mMstx1qeJYnekyjvIIfP0qivVmouaWttnMzMyat9lppOUujPQKffxhoOfNzc3Y2Njh4eHp6enu7u7y8vL19fXv7+/i4uLZ2dnOzs6auNgOf/sKff15quHR0dHx8fH9/f3////j4+N6quFdn+iywdPb29vw8PD+/v7c3NyywtLa2tr29vbS0tLd3d38/Pzf39/o6Ojc7f+q0v+HwP9rsf9dqv9Hnv9Vpv/q6urj8P+Vx/9Am/8Pgf8Iff/z8/OAvP95uf/n5+c5l//V6f+52v+y1//7+/vt7e0rkP/09PTQ0NDq9P8Whf+cy//W1tbe3t7A3v/m5ubs7OxOov/r6+vk5OQiaPjKAAAAknRSTlMACBZ9oB71/jiqywJBZATT6hBukRXv+zDCAVrkDIf4JbQsTb7eVeJLbwfa8Rh4G/OlPS/6/kxQ9/xdmZudoJxNVhng7B6wtWdzAtQOipcF1329wS44doK/BAkyP1pvgZOsrbnGXArAg34G2IsD1eMRe7bi7k5YnqFT9V0csyPedQyYD3p/Fje+hDpskq/MwpRBC6yKp2MAAAQdSURBVHja7Zn1exMxGIAPHbrhDsPdneHuNtzd3d3dIbjLh93o2o4i7TpgG1Jk0g0mMNwd/gTa5rq129reHnK5e/bk/TFNk/dJ7r5894XjGAwGg8GgTZasCpDIll1+hxw5vXLJLpEboTx5ZXbIhyzkl9fB28cqUaCgrBKFkI3CcjoUKYolihWXUSI7EihRUjaHXF52CVRKLoe8eZIdUOkyMknkRw6UlcehYAFHiXK+skgURk6Ul8OhQjFnCVRRBolKqRxQ5SzUHaqgNGSj7VCmalqJnDkoS5RF6ZCbroNvufQkUD6qEuXTdUA+3hQdqiEXVKfnUKOmK4latalJ1EEuoZZ6162HJ9x/4OChw0eOHj12/MTJU6dxG7XUu751tjNnz4ET5y9ctLZTSr0beKFLl89bpuUDrqgC1RqNWqsKuqqzNFw7e51S6u3tc+OmZUJ9kCHY6ECwOkRvab51iUrqXej2HYDQsHBjWgx3Ae7dppB6N2wEcF9jdMGDUIDGTaR2aNoM9FqjG7QmaN5CWgc/gIePjG559BigpZQOrYB/4jBfRGRUtDkmJjY6KjLCofkpD62lc2gDfMpWPIuLdwyV8XEpHgaddBZ+wBuSFcwJqSN2ovmZ/dfnOvCTxqGtwzq8SEjv4EhISn48eWgnhUP7DvDSvgzxrs6vV6+FLiro2EkCic4QKkzwJsH1KYreCp0eQhfyDl1B/w4P/xa5JVJ4U03QjbRD9x7wXlgH5IE3wmMBHXoSlugFAcI6f/AkkSi8q6HQm6xDn77wEQ8djTwSj3tqAMguRTe4ikeOQyJ4YV+KfkQl+oNW5GbY4gWOWgbwJ+kwAD6Fi90MK2ZsrIeBBCUGwRXbqJ+/iJMQliIEBhOU6AJhtlG/IpHE2bqrYQg5h6HA4yQiRqwEfkGCdTCMmMRw+IbPDCQaHCsCYAQxiZHw3TbmD/ESOHgHwShiEqPhp/gggYkSztIxxCRawy/bmEniJaJtfwiEscQkxkFgRqJESqQwwHhiEuMBp3Vm8RK/cZoHEzKXhCK2QxEPpiJe0YlKCFaKCNv/cYBNUsBRPlkJSc0U+dM7E9H0ThGJbgZT/iR7yj+VqMS06Qr4+OFm2JdCxIa8lugzkJs5K6MfxAaYPUcBpYG5khZJEkUUSb7DPCnKRfPBXj6M8FwuegoLpCgXcQszVjhbJFUJUee2hBhLoYTIcYtB57KY+opSMdVqwatSlZVj05aV//CwJLMX2DluaUcwhXm4ali2XOoLjxUrPV26zFtF4f5p0Gp310+z13BUWNvbehEXona6iAtX/zVZmtfN4WixfsNky4S6gCCVVq3RPLdfSfpv3MRRZfPoLc6Xs/5bt3EyMGzE9h07/Xft2t15z6i9+zgGg8FgMBgMBoPBYDAYDAYj8/APG67Rie8pUDsAAAAASUVORK5CYII="},e),null,16,["iconPath"]):null}}),cy=mu({name:"MapPolygon",props:{dashArray:{type:Array,default:()=>[0,0]},points:{type:Array,required:!0},strokeWidth:{type:Number,default:1},strokeColor:{type:String,default:"#000000"},fillColor:{type:String,default:"#00000000"},zIndex:{type:Number,default:0}},setup(e){let t;return Do("onMapReady")(((n,r,o)=>{function i(){const{points:o,strokeWidth:i,strokeColor:s,dashArray:a,fillColor:l,zIndex:c}=e,u=o.map((e=>{const{latitude:t,longitude:n}=e;return pm()?[n,t]:gm()?new r.Point(n,t):new r.LatLng(t,n)})),{r:d,g:h,b:f,a:p}=vm(l),{r:g,g:m,b:v,a:y}=vm(s),b={clickable:!0,cursor:"crosshair",editable:!1,map:n,fillColor:"",path:u,strokeColor:"",strokeDashStyle:a.some((e=>e>0))?"dash":"solid",strokeWeight:i,visible:!0,zIndex:c};r.Color?(b.fillColor=new r.Color(d,h,f,p),b.strokeColor=new r.Color(g,m,v,y)):(b.fillColor=`rgb(${d}, ${h}, ${f})`,b.fillOpacity=p,b.strokeColor=`rgb(${g}, ${m}, ${v})`,b.strokeOpacity=y),t?t.setOptions(b):gm()?(t=new r.Polygon(b.path,b),n.addOverlay(t)):t=new r.Polygon(b)}i(),dr(e,i)})),Qr((()=>{t.setMap(null)})),()=>null}});function uy(e){const t=[];return g(e)&&e.forEach((e=>{e&&e.latitude&&e.longitude&&t.push({latitude:e.latitude,longitude:e.longitude})})),t}function dy(e,t,n){return gm()?function(e,t,n){return new e.Point(n,t)}(e,t,n):pm()?function(e,t,n){return new e.LngLat(n,t)}(e,t,n):function(e,t,n){return new e.LatLng(t,n)}(e,t,n)}function hy(e){return"getLat"in e?e.getLat():gm()?e.lat:e.lat()}function fy(e){return"getLng"in e?e.getLng():gm()?e.lng:e.lng()}function py(e,t,n){const r=yu(t,n),o=hn(null);let i,s;const a=Xt({latitude:Number(e.latitude),longitude:Number(e.longitude),includePoints:uy(e.includePoints)}),l=[];let c,u;function h(e){c?e(s,i,r):l.push(e)}const f=[];function p(e){u?e():l.push(e)}const g={};function m(){const e=s.getCenter();return{scale:s.getZoom(),centerLocation:{latitude:hy(e),longitude:fy(e)}}}function v(){if(pm()){const e=[];a.includePoints.forEach((t=>{e.push([t.longitude,t.latitude])}));const t=new i.Bounds(...e);s.setBounds(t)}else if(gm());else{const e=new i.LatLngBounds;a.includePoints.forEach((({latitude:t,longitude:n})=>{const r=new i.LatLng(t,n);e.extend(r)})),s.fitBounds(e)}}function y(){const t=o.value,l=dy(i,a.latitude,a.longitude),c=i.event||i.Event,h=new i.Map(t,{center:l,zoom:Number(e.scale),disableDoubleClickZoom:!0,mapTypeControl:!1,zoomControl:!1,scaleControl:!1,panControl:!1,fullscreenControl:!1,streetViewControl:!1,keyboardShortcuts:!1,minZoom:5,maxZoom:18,draggable:!0});if(gm()&&(h.centerAndZoom(l,Number(e.scale)),h.enableScrollWheelZoom(),h._printLog&&h._printLog("uniapp")),dr((()=>e.scale),(e=>{h.setZoom(Number(e)||16)})),p((()=>{a.includePoints.length&&(v(),function(){const e=dy(i,a.latitude,a.longitude);s.setCenter(e)}())})),gm())h.addEventListener("click",(()=>{r("tap",{},{}),r("click",{},{})})),h.addEventListener("dragstart",(()=>{r("regionchange",{},{type:"begin",causedBy:"gesture"})})),h.addEventListener("dragend",(()=>{r("regionchange",{},d({type:"end",causedBy:"drag"},m()))}));else{const e=c.addListener(h,"bounds_changed",(()=>{e.remove(),u=!0,f.forEach((e=>e())),f.length=0}));c.addListener(h,"click",(()=>{r("tap",{},{}),r("click",{},{})})),c.addListener(h,"dragstart",(()=>{r("regionchange",{},{type:"begin",causedBy:"gesture"})})),c.addListener(h,"dragend",(()=>{r("regionchange",{},d({type:"end",causedBy:"drag"},m()))}));const t=()=>{n("update:scale",h.getZoom()),r("regionchange",{},d({type:"end",causedBy:"scale"},m()))};c.addListener(h,"zoom_changed",t),c.addListener(h,"zoomend",t),c.addListener(h,"center_changed",(()=>{const e=h.getCenter(),t=hy(e),r=fy(e);n("update:latitude",t),n("update:longitude",r)}))}return h}dr([()=>e.latitude,()=>e.longitude],(([e,t])=>{const n=Number(e),r=Number(t);if((n!==a.latitude||r!==a.longitude)&&(a.latitude=n,a.longitude=r,s)){const e=dy(i,a.latitude,a.longitude);s.setCenter(e)}})),dr((()=>e.includePoints),(e=>{a.includePoints=uy(e),u&&v()}),{deep:!0});try{!function(e,t,n,r){const o=ki().proxy;Xr((()=>{Tg(t||Eg(o),e,r),!n&&t||dr((()=>o.id),((t,n)=>{Tg(Eg(o,t),e,r),Cg(n&&Eg(o,n))}))})),Zr((()=>{Cg(t||Eg(o),r)}))}(((e,t={})=>{switch(e){case"getCenterLocation":h((()=>{const n=s.getCenter();ue(t,{latitude:hy(n),longitude:fy(n),errMsg:`${e}:ok`})}));break;case"moveToLocation":{let n=Number(t.latitude),r=Number(t.longitude);if(!n||!r){const e=g.MAP_LOCATION;e&&(n=e.state.latitude,r=e.state.longitude)}if(n&&r){if(a.latitude=n,a.longitude=r,s){const e=dy(i,n,r);s.setCenter(e)}h((()=>{ue(t,`${e}:ok`)}))}else ue(t,`${e}:fail`)}break;case"translateMarker":h((()=>{const n=g[t.markerId];if(n){try{n.translate(t)}catch(r){ue(t,`${e}:fail ${r.message}`)}ue(t,`${e}:ok`)}else ue(t,`${e}:fail not found`)}));break;case"includePoints":a.includePoints=uy(t.includePoints),(u||pm())&&v(),p((()=>{ue(t,`${e}:ok`)}));break;case"getRegion":p((()=>{const n=s.getBounds(),r=n.getSouthWest(),o=n.getNorthEast();ue(t,{southwest:{latitude:hy(r),longitude:fy(r)},northeast:{latitude:hy(o),longitude:fy(o)},errMsg:`${e}:ok`})}));break;case"getScale":h((()=>{ue(t,{scale:s.getZoom(),errMsg:`${e}:ok`})}))}}),function(e){const t=kc(),n=ki().proxy,r=n.$options.name.toLowerCase(),o=e||n.id||"context"+Mg++;return Xr((()=>{n.$el.__uniContextInfo={id:o,type:r,page:t}})),`${r}.${o}`}(),!0)}catch(b){}return Xr((()=>{lm(e.libraries,(e=>{i=e,s=y(),c=!0,l.forEach((e=>e(s,i,r))),l.length=0,r("updated",{},{})}))})),Ao("onMapReady",h),Ao("addMapChidlContext",(function(e){g[e.id]=e})),Ao("removeMapChidlContext",(function(e){delete g[e.id]})),{state:a,mapRef:o,trigger:r}}const gy=gu({name:"Map",props:{id:{type:String,default:""},latitude:{type:[String,Number],default:0},longitude:{type:[String,Number],default:0},scale:{type:[String,Number],default:16},markers:{type:Array,default:()=>[]},includePoints:{type:Array,default:()=>[]},polyline:{type:Array,default:()=>[]},circles:{type:Array,default:()=>[]},controls:{type:Array,default:()=>[]},showLocation:{type:[Boolean,String],default:!1},libraries:{type:Array,default:()=>[]},polygons:{type:Array,default:()=>[]}},emits:["markertap","labeltap","callouttap","controltap","regionchange","tap","click","updated","update:scale","update:latitude","update:longitude"],setup(e,{emit:t,slots:n}){const r=hn(null),{mapRef:o,trigger:i}=py(e,r,t);return()=>gi("uni-map",{ref:r,id:e.id},[gi("div",{ref:o,style:"width: 100%; height: 100%; position: relative; overflow: hidden"},null,512),e.markers.map((e=>gi(mm,xi({key:e.id},e),null,16))),e.polyline.map((e=>gi(bm,e,null,16))),e.circles.map((e=>gi(_m,e,null,16))),e.controls.map((e=>gi(Sm,xi(e,{trigger:i}),null,16,["trigger"]))),e.showLocation&&gi(ly,null,null),e.polygons.map((e=>gi(cy,e,null,16))),gi("div",{style:"position: absolute;top: 0;width: 100%;height: 100%;overflow: hidden;pointer-events: none;"},[n.default&&n.default()])],8,["id"])}});function vy(e){return"function"==typeof e||"[object Object]"===Object.prototype.toString.call(e)&&!ci(e)}function yy(e){if(e.mode===wy.TIME)return"00:00";if(e.mode===wy.DATE){const t=(new Date).getFullYear()-150;switch(e.fields){case Sy.YEAR:return t.toString();case Sy.MONTH:return t+"-01";default:return t+"-01-01"}}return""}function by(e){if(e.mode===wy.TIME)return"23:59";if(e.mode===wy.DATE){const t=(new Date).getFullYear()+150;switch(e.fields){case Sy.YEAR:return t.toString();case Sy.MONTH:return t+"-12";default:return t+"-12-31"}}return""}function _y(e,t,n,r){const o=e.mode===wy.DATE?"-":":",i=e.mode===wy.DATE?t.dateArray:t.timeArray;let s;if(e.mode===wy.TIME)s=2;else switch(e.fields){case Sy.YEAR:s=1;break;case Sy.MONTH:s=2;break;default:s=3}const a=String(n).split(o);let l=[];for(let c=0;c=0&&(l=r?_y(e,t,r):l.map((()=>0))),l}const wy={SELECTOR:"selector",MULTISELECTOR:"multiSelector",TIME:"time",DATE:"date"},Sy={YEAR:"year",MONTH:"month",DAY:"day"},xy={PICKER:"picker",SELECT:"select"},Ey=gu({name:"Picker",compatConfig:{MODE:3},props:{name:{type:String,default:""},range:{type:Array,default:()=>[]},rangeKey:{type:String,default:""},value:{type:[Number,String,Array],default:0},mode:{type:String,default:wy.SELECTOR,validator:e=>Object.values(wy).includes(e)},fields:{type:String,default:""},start:{type:String,default:e=>yy(e)},end:{type:String,default:e=>by(e)},disabled:{type:[Boolean,String],default:!1},selectorType:{type:String,default:""}},emits:["change","cancel","columnchange"],setup(e,{emit:t,slots:n}){$l();const{t:r}=Dl(),o=hn(null),i=hn(null),s=hn(null),a=hn(null),l=hn(!1),{state:c,rangeArray:u}=function(e){const t=Xt({valueSync:void 0,visible:!1,contentVisible:!1,popover:null,valueChangeSource:"",timeArray:[],dateArray:[],valueArray:[],oldValueArray:[],isDesktop:!1,popupStyle:{content:{},triangle:{}}}),n=zi((()=>{let n=e.range;switch(e.mode){case wy.SELECTOR:return[n];case wy.MULTISELECTOR:return n;case wy.TIME:return t.timeArray;case wy.DATE:{const n=t.dateArray;switch(e.fields){case Sy.YEAR:return[n[0]];case Sy.MONTH:return[n[0],n[1]];default:return[n[0],n[1],n[2]]}}}return[]}));return{state:t,rangeArray:n}}(e),h=yu(o,t),{system:f,selectorTypeComputed:p,_show:m,_l10nColumn:v,_l10nItem:y,_input:b,_fixInputPosition:_,_pickerViewChange:w,_cancel:S,_change:x,_resetFormData:E,_getFormData:T,_createTime:C,_createDate:M,_setValueSync:k}=function(e,t,n,r,o,i,s){const a=function(){const e=hn(!1);return e.value=(()=>0===String(navigator.vendor).indexOf("Apple")&&navigator.maxTouchPoints>0)(),e}(),l=function(){const e=hn("");return e.value=(()=>{if(/win|mac/i.test(navigator.platform)){if("Google Inc."===navigator.vendor)return"chrome";if(/Firefox/.test(navigator.userAgent))return"firefox"}return""})(),e}(),c=zi((()=>{const t=e.selectorType;return Object.values(xy).includes(t)?t:a.value?xy.PICKER:xy.SELECT})),u=zi((()=>e.mode===wy.DATE&&!Object.values(Sy).includes(e.fields)&&t.isDesktop?l.value:"")),d=zi((()=>_y(e,t,e.start,yy(e)))),h=zi((()=>_y(e,t,e.end,by(e))));function f(n){if(e.disabled)return;t.valueChangeSource="";let r=o.value,i=n.currentTarget;r.remove(),(document.querySelector("uni-app")||document.body).appendChild(r),r.style.display="block";const s=i.getBoundingClientRect();t.popover={top:s.top,left:s.left,width:s.width,height:s.height},setTimeout((()=>{t.visible=!0}),20)}function p(){return{value:t.valueSync,key:e.name}}function m(){switch(e.mode){case wy.SELECTOR:t.valueSync=0;break;case wy.MULTISELECTOR:t.valueSync=e.value.map((e=>0));break;case wy.DATE:case wy.TIME:t.valueSync=""}}function v(){let e=[],n=[];for(let t=0;t<24;t++)e.push((t<10?"0":"")+t);for(let t=0;t<60;t++)n.push((t<10?"0":"")+t);t.timeArray.push(e,n)}function y(){let t=(new Date).getFullYear(),n=t-150,r=t+150;if(e.start){const t=new Date(e.start).getFullYear();!isNaN(t)&&tr&&(r=t)}return{start:n,end:r}}function b(){let e=[];const n=y();for(let t=n.start,i=n.end;t<=i;t++)e.push(String(t));let r=[];for(let t=1;t<=12;t++)r.push((t<10?"0":"")+t);let o=[];for(let t=1;t<=31;t++)o.push((t<10?"0":"")+t);t.dateArray.push(e,r,o)}function _(e){return 60*e[0]+e[1]}function w(e){const t=31;return e[0]*t*12+(e[1]||0)*t+(e[2]||0)}function S(e,t){for(let n=0;na?0:s)}}break;case wy.TIME:case wy.DATE:t.valueSync=String(n);break;default:{const e=Number(n);t.valueSync=e<0?0:e;break}}}function E(){let n,r=t.valueSync;switch(e.mode){case wy.MULTISELECTOR:n=[...r];break;case wy.TIME:n=_y(e,t,r,ce({mode:wy.TIME}));break;case wy.DATE:n=_y(e,t,r,ce({mode:wy.DATE}));break;default:n=[r]}t.oldValueArray=[...n],t.valueArray=[...n]}function T(){let n=t.valueArray;switch(e.mode){case wy.SELECTOR:return n[0];case wy.MULTISELECTOR:return n.map((e=>e));case wy.TIME:return t.valueArray.map(((e,n)=>t.timeArray[n][e])).join(":");case wy.DATE:return t.valueArray.map(((e,n)=>t.dateArray[n][e])).join("-")}}function C(){k(),t.valueChangeSource="click";const e=T();t.valueSync=g(e)?e.map((e=>e)):e,n("change",{},{value:e})}function M(e){if("firefox"===u.value&&e){const{top:n,left:r,width:o,height:i}=t.popover,{pageX:s,pageY:a}=e;if(s>r&&sn&&a{let e=o.value;e.remove(),r.value.prepend(e),e.style.display="none"}),260)}function A(){e.mode===wy.SELECTOR&&c.value===xy.SELECT&&(i.value.scrollTop=34*t.valueArray[0])}function D(e){const n=e.target;t.valueSync=n.value,Ln((()=>{C()}))}function O(e){if("chrome"===u.value){const t=r.value.getBoundingClientRect(),n=32;s.value.style.left=e.clientX-t.left-1.5*n+"px",s.value.style.top=e.clientY-t.top-.5*n+"px"}}function I(e){t.valueArray=P(e.detail.value,!0)}function P(t,n){const{getLocale:r}=Dl();if(e.mode===wy.DATE){const o=r();if(!o.startsWith("zh"))switch(e.fields){case Sy.YEAR:return t;case Sy.MONTH:return[t[1],t[0]];default:switch(o){case"es":case"fr":return[t[2],t[1],t[0]];default:return n?[t[2],t[0],t[1]]:[t[1],t[2],t[0]]}}}return t}function B(t,n){const{getLocale:r}=Dl();if(e.mode===wy.DATE){const o=r();if(o.startsWith("zh")){return t+["年","月","日"][n]}if(e.fields!==Sy.YEAR&&n===(e.fields===Sy.MONTH||"es"!==o&&"fr"!==o?0:1)){let e;switch(o){case"es":e=["enero","febrero","marzo","abril","mayo","junio","​​julio","agosto","septiembre","octubre","noviembre","diciembre"];break;case"fr":e=["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"];break;default:e=["January","February","March","April","May","June","July","August","September","October","November","December"]}return e[Number(t)-1]}}return t}return dr((()=>t.visible),(e=>{e?(clearTimeout(Ty),t.contentVisible=e,A()):Ty=setTimeout((()=>{t.contentVisible=e}),300)})),dr([()=>e.mode,()=>e.value,()=>e.range],x,{deep:!0}),dr((()=>t.valueSync),E,{deep:!0}),dr((()=>t.valueArray),(r=>{if(e.mode===wy.TIME||e.mode===wy.DATE){const n=e.mode===wy.TIME?_:w,r=t.valueArray,o=d.value,i=h.value;if(e.mode===wy.DATE){const e=t.dateArray,n=e[2].length,o=Number(e[2][r[2]])||1,i=new Date(`${e[0][r[0]]}/${e[1][r[1]]}/${o}`).getDate();in(i)&&S(r,i)}r.forEach(((r,o)=>{r!==t.oldValueArray[o]&&(t.oldValueArray[o]=r,e.mode===wy.MULTISELECTOR&&n("columnchange",{},{column:o,value:r}))}))})),{selectorTypeComputed:c,system:u,_show:f,_cancel:M,_change:C,_l10nColumn:P,_l10nItem:B,_input:D,_resetFormData:m,_getFormData:p,_createTime:v,_createDate:b,_setValueSync:x,_fixInputPosition:O,_pickerViewChange:I}}(e,c,h,o,i,s,a);!function(e,t,n){const{key:r,disable:o}=av();cr((()=>{o.value=!e.visible})),dr(r,(e=>{"esc"===e?t():"enter"===e&&n()}))}(c,S,x),function(e,t){const n=Do(Su,!1);if(n){const r={reset:e,submit:()=>{const e=["",null],{key:n,value:r}=t();return""!==n&&(e[0]=n,e[1]=r),e}};n.addField(r),Zr((()=>{n.removeField(r)}))}}(E,T),C(),M(),k();const A=function(e){const t=hn(0),n=hn(0),r=zi((()=>t.value>=500&&n.value>=500)),o=zi((()=>{const t={content:{transform:"",left:"",top:"",bottom:""},triangle:{left:"",top:"",bottom:"","border-width":"","border-color":""}},o=t.content,i=t.triangle,s=e.popover;function a(e){return Number(e)||0}if(r.value&&s){d(i,{position:"absolute",width:"0",height:"0","margin-left":"-6px","border-style":"solid"});const e=a(s.left),t=a(s.width),r=a(s.top),l=a(s.height),c=e+t/2;o.transform="none !important";const u=Math.max(0,c-150);o.left=`${u}px`;let h=Math.max(12,c-u);h=Math.min(288,h),i.left=`${h}px`;const f=n.value/2;r+l-f>f-r?(o.top="auto",o.bottom=n.value-r+6+"px",i.bottom="-6px",i["border-width"]="6px 6px 0 6px",i["border-color"]="#fcfcfd transparent transparent transparent"):(o.top=`${r+l+6}px`,i.top="-6px",i["border-width"]="0 6px 6px 6px",i["border-color"]="transparent transparent #fcfcfd transparent")}return t}));return Xr((()=>{const e=()=>{const{windowWidth:e,windowHeight:r,windowTop:o}=Bm();t.value=e,n.value=r+(o||0)};window.addEventListener("resize",e),e(),Qr((()=>{window.removeEventListener("resize",e)}))})),{isDesktop:r,popupStyle:o}}(c);return cr((()=>{c.isDesktop=A.isDesktop.value,c.popupStyle=A.popupStyle.value})),Zr((()=>{i.value&&i.value.remove()})),Xr((()=>{l.value=!0})),()=>{let t;const{visible:d,contentVisible:h,valueArray:g,popupStyle:E,valueSync:T}=c,{rangeKey:C,mode:M,start:k,end:A}=e,D=wu(e,"disabled");return gi("uni-picker",xi({ref:o},D,{onClick:vu(m)}),[l.value?gi("div",{ref:i,class:["uni-picker-container",`uni-${M}-${p.value}`],onWheel:hc,onTouchmove:hc},[gi(Ki,{name:"uni-fade"},{default:()=>[mr(gi("div",{class:"uni-mask uni-picker-mask",onClick:vu(S),onMousemove:_},null,40,["onClick","onMousemove"]),[[as,d]])]}),f.value?null:gi("div",{class:[{"uni-picker-toggle":d},"uni-picker-custom"],style:E.content},[gi("div",{class:"uni-picker-header",onClick:fc},[gi("div",{class:"uni-picker-action uni-picker-action-cancel",onClick:vu(S)},[r("uni.picker.cancel")],8,["onClick"]),gi("div",{class:"uni-picker-action uni-picker-action-confirm",onClick:x},[r("uni.picker.done")],8,["onClick"])],8,["onClick"]),h?gi(eg,{value:v(g),class:"uni-picker-content",onChange:w},vy(t=oo(v(u.value),((e,t)=>{let n;return gi(ag,{key:t},vy(n=oo(e,((e,n)=>gi("div",{key:n,class:"uni-picker-item"},["object"==typeof e?e[C]||"":y(e,t)]))))?n:{default:()=>[n],_:1})})))?t:{default:()=>[t],_:1},8,["value","onChange"]):null,gi("div",{ref:s,class:"uni-picker-select",onWheel:fc,onTouchmove:fc},[oo(u.value[0],((e,t)=>gi("div",{key:t,class:["uni-picker-item",{selected:g[0]===t}],onClick:()=>{g[0]=t,x()}},["object"==typeof e?e[C]||"":e],10,["onClick"])))],40,["onWheel","onTouchmove"]),gi("div",{style:E.triangle},null,4)],6)],40,["onWheel","onTouchmove"]):null,gi("div",null,[n.default&&n.default()]),f.value?gi("div",{class:"uni-picker-system",onMousemove:vu(_)},[gi("input",{class:["uni-picker-system_input",f.value],ref:a,value:T,type:M,tabindex:"-1",min:k,max:A,onChange:e=>{b(e),fc(e)}},null,42,["value","type","min","max","onChange"])],40,["onMousemove"]):null],16,["onClick"])}}});let Ty;const Cy=d(Ul,{publishHandler(e,t,n){My.subscribeHandler(e,t,n)}}),My=d(nu,{publishHandler(e,t,n){Cy.subscribeHandler(e,t,n)}}),ky=mu({name:"PageHead",setup(){const e=hn(null),t=Ou(),n=Mv(t.navigationBar,(()=>{const e=Cv(t.navigationBar);n.backgroundColor=e.backgroundColor,n.titleColor=e.titleColor})),{clazz:r,style:o}=function(e){const t=zi((()=>{const{type:t,titlePenetrate:n,shadowColorType:r}=e,o={"uni-page-head":!0,"uni-page-head-transparent":"transparent"===t,"uni-page-head-titlePenetrate":"YES"===n,"uni-page-head-shadow":!!r};return r&&(o[`uni-page-head-shadow-${r}`]=!0),o})),n=zi((()=>({backgroundColor:e.backgroundColor,color:e.titleColor,transitionDuration:e.duration,transitionTimingFunction:e.timingFunc})));return{clazz:t,style:n}}(n);return()=>{const i=function(e,t){if(!t)return gi("div",{class:"uni-page-head-btn",onClick:Dy},[Mc(Cc,"transparent"===e.type?"#fff":e.titleColor,26)],8,["onClick"])}(n,t.isQuit),s=n.type||"default",a="transparent"!==s&&"float"!==s&&gi("div",{class:{"uni-placeholder":!0,"uni-placeholder-titlePenetrate":n.titlePenetrate}},null,2);return gi("uni-page-head",{"uni-page-head-type":s},[gi("div",{ref:e,class:r.value,style:o.value},[gi("div",{class:"uni-page-head-hd"},[i]),Ay(n),gi("div",{class:"uni-page-head-ft"},[])],6),a],8,["uni-page-head-type"])}}});function Ay(e,t){return function({type:e,loading:t,titleSize:n,titleText:r,titleImage:o}){return gi("div",{class:"uni-page-head-bd"},[gi("div",{style:{fontSize:n,opacity:"transparent"===e?0:1},class:"uni-page-head__title"},[t?gi("i",{class:"uni-loading"},null):o?gi("img",{src:o,class:"uni-page-head__title_image"},null,8,["src"]):r],4)])}(e)}function Dy(){1===rf().length?Rh({url:"/"}):Sv({from:"backbutton",success(){}})}const Oy=mu({name:"PageBody",setup(e,t){const n=hn(null),r=hn(null);return dr((()=>false.enablePullDownRefresh),(()=>{r.value=null}),{immediate:!0}),()=>gi(Jo,null,[!1,gi("uni-page-wrapper",xi({ref:n},r.value),[gi("uni-page-body",null,[io(t.slots,"default")]),null],16)])}}),Iy=mu({name:"Page",setup(e,t){let n=Iu(Bu());const r=n.navigationBar,o={};return Gv(n),()=>gi("uni-page",{"data-page":n.route,style:o},"custom"!==r.style?[gi(ky),Py(t),null]:[Py(t),null])}});function Py(e){return ri(),li(Oy,{key:0},{default:Jn((()=>[io(e.slots,"page")])),_:3})}const By={loading:"AsyncLoading",error:"AsyncError",delay:200,timeout:6e4,suspensible:!0};window.uni={},window.wx={},window.rpx2px=Md;const Ry=Object.assign({}),Ly=Object.assign;window.__uniConfig=Ly({tabBar:{position:"bottom",color:"#7A7E83",selectedColor:"#256BFA",borderStyle:"black",blurEffect:"none",fontSize:"10px",iconWidth:"24px",spacing:"3px",height:"50px",list:[{pagePath:"pages/index/index",iconPath:"/static/tabbar/calendar.png",selectedIconPath:"/static/tabbar/calendared.png",text:"职位"},{pagePath:"pages/careerfair/careerfair",iconPath:"/static/tabbar/post.png",selectedIconPath:"/static/tabbar/posted.png",text:"招聘会"},{pagePath:"pages/chat/chat",iconPath:"/static/tabbar/logo2.png",selectedIconPath:"/static/tabbar/logo2.png"},{pagePath:"pages/msglog/msglog",iconPath:"/static/tabbar/chat4.png",selectedIconPath:"/static/tabbar/chat4ed.png",text:"消息"},{pagePath:"pages/mine/mine",iconPath:"/static/tabbar/mine.png",selectedIconPath:"/static/tabbar/mined.png",text:"我的"}],backgroundColor:"#ffffff",midButton:{width:"50px",height:"50px",backgroundImage:"/static/tabbar/logo2.png"},selectedIndex:0,shown:!0},globalStyle:{backgroundColor:"#F8F8F8",navigationBar:{backgroundColor:"#F8F8F8",titleText:"uni-app",type:"default",titleColor:"#000000"},isNVue:!1},uniIdRouter:{},compilerVersion:"4.56"},{appId:"__UNI__C939371",appName:"qingdao-employment-service",appVersion:"1.0.0",appVersionCode:"100",async:By,debug:!1,networkTimeout:{request:6e4,connectSocket:6e4,uploadFile:6e4,downloadFile:6e4},sdkConfigs:{maps:{amap:{key:"9cfc9370bd8a941951da1cea0308e9e3",securityJsCode:"7b16386c7f744c3ca05595965f2b037f",serviceHost:""}}},qqMapKey:void 0,bMapKey:void 0,googleMapKey:void 0,aMapKey:"9cfc9370bd8a941951da1cea0308e9e3",aMapSecurityJsCode:"7b16386c7f744c3ca05595965f2b037f",aMapServiceHost:"",nvue:{"flex-direction":"column"},locale:"zh-Hans",fallbackLocale:"",locales:Object.keys(Ry).reduce(((e,t)=>{const n=t.replace(/\.\/locale\/(uni-app.)?(.*).json/,"$2");return Ly(e[n]||(e[n]={}),Ry[t].default),e}),{}),router:{mode:"hash",base:"/app/",assets:"assets",routerBase:"/app/"},darkmode:!1,themeConfig:{}}),window.__uniLayout=window.__uniLayout||{};const Ny={delay:By.delay,timeout:By.timeout,suspensible:By.suspensible};By.loading&&(Ny.loadingComponent={name:"SystemAsyncLoading",render:()=>gi(nr(By.loading))}),By.error&&(Ny.errorComponent={name:"SystemAsyncError",render:()=>gi(nr(By.error))});const $y=()=>r((()=>import("./pages-index-index.DvjXu2Re.js")),__vite__mapDeps([0,1,2,3,4,5,6,7,8,9,10,11,12])).then((e=>Zg(e.default||e))),zy=Or(Ly({loader:$y},Ny)),jy=()=>r((()=>import("./pages-mine-mine.-YwdlJ99.js")),__vite__mapDeps([13,14,15,16])).then((e=>Zg(e.default||e))),Vy=Or(Ly({loader:jy},Ny)),Hy=()=>r((()=>import("./pages-msglog-msglog.c84QA3Rn.js")),__vite__mapDeps([17,18])).then((e=>Zg(e.default||e))),Fy=Or(Ly({loader:Hy},Ny)),qy=()=>r((()=>import("./pages-careerfair-careerfair.DYiYMI1p.js")),__vite__mapDeps([19,20])).then((e=>Zg(e.default||e))),Uy=Or(Ly({loader:qy},Ny)),Wy=()=>r((()=>import("./pages-login-login.9cW8csYq.js")),__vite__mapDeps([21,7,1,2,8,22])).then((e=>Zg(e.default||e))),Ky=Or(Ly({loader:Wy},Ny)),Yy=()=>r((()=>import("./pages-nearby-nearby.eqZuVs-i.js")),__vite__mapDeps([23,3,1,2,4,5,6,24])).then((e=>Zg(e.default||e))),Xy=Or(Ly({loader:Yy},Ny)),Gy=()=>r((()=>import("./pages-chat-chat.D3YhJ6YZ.js")),__vite__mapDeps([25,1,2,11,26])).then((e=>Zg(e.default||e))),Jy=Or(Ly({loader:Gy},Ny)),Zy=()=>r((()=>import("./packageA-pages-choiceness-choiceness.C6BK9H8_.js")),__vite__mapDeps([27,28])).then((e=>Zg(e.default||e))),Qy=Or(Ly({loader:Zy},Ny)),eb=()=>r((()=>import("./packageA-pages-post-post.ZeGe3ZIp.js")),__vite__mapDeps([29,1,2,6,30])).then((e=>Zg(e.default||e))),tb=Or(Ly({loader:eb},Ny)),nb=()=>r((()=>import("./packageA-pages-UnitDetails-UnitDetails.DhIgQ4n8.js")),__vite__mapDeps([31,1,2,6,32])).then((e=>Zg(e.default||e))),rb=Or(Ly({loader:nb},Ny)),ob=()=>r((()=>import("./packageA-pages-exhibitors-exhibitors.CQceVnU_.js")),__vite__mapDeps([33,1,2,34])).then((e=>Zg(e.default||e))),ib=Or(Ly({loader:ob},Ny)),sb=()=>r((()=>import("./packageA-pages-myResume-myResume.Dbeh6gVh.js")),__vite__mapDeps([35,1,2,7,8,9,10,14,15,6,36])).then((e=>Zg(e.default||e))),ab=Or(Ly({loader:sb},Ny)),lb=()=>r((()=>import("./packageA-pages-Intendedposition-Intendedposition.D5MhGCAJ.js")),__vite__mapDeps([37,5,6,38])).then((e=>Zg(e.default||e))),cb=Or(Ly({loader:lb},Ny)),ub=()=>r((()=>import("./packageA-pages-collection-collection.Du0OYQIm.js")),__vite__mapDeps([39,5,6,40])).then((e=>Zg(e.default||e))),db=Or(Ly({loader:ub},Ny)),hb=()=>r((()=>import("./packageA-pages-browseJob-browseJob.Ctr2f3Qd.js")),__vite__mapDeps([41,1,2,5,6,42])).then((e=>Zg(e.default||e))),fb=Or(Ly({loader:hb},Ny));function pb(e,t){return ri(),li(Iy,null,{page:Jn((()=>[gi(e,Ly({},t,{ref:"page"}),null,512)])),_:1})}function gb(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}window.__uniRoutes=[{path:"/",alias:"/pages/index/index",component:{setup(){const e=Yg(),t=e&&e.$route&&e.$route.query||{};return()=>pb(zy,t)}},loader:$y,meta:{isQuit:!0,isEntry:!0,isTabBar:!0,tabBarIndex:0,navigationBar:{titleText:"青岛智慧就业平台",style:"custom",type:"default"},isNVue:!1}},{path:"/pages/mine/mine",component:{setup(){const e=Yg(),t=e&&e.$route&&e.$route.query||{};return()=>pb(Vy,t)}},loader:jy,meta:{isQuit:!0,isTabBar:!0,tabBarIndex:4,navigationBar:{titleText:"我的",style:"custom",type:"default"},isNVue:!1}},{path:"/pages/msglog/msglog",component:{setup(){const e=Yg(),t=e&&e.$route&&e.$route.query||{};return()=>pb(Fy,t)}},loader:Hy,meta:{isQuit:!0,isTabBar:!0,tabBarIndex:3,enablePullDownRefresh:!1,navigationBar:{titleText:"消息",style:"custom",type:"default"},isNVue:!1}},{path:"/pages/careerfair/careerfair",component:{setup(){const e=Yg(),t=e&&e.$route&&e.$route.query||{};return()=>pb(Uy,t)}},loader:qy,meta:{isQuit:!0,isTabBar:!0,tabBarIndex:1,navigationBar:{titleText:"招聘会",style:"custom",type:"default"},isNVue:!1}},{path:"/pages/login/login",component:{setup(){const e=Yg(),t=e&&e.$route&&e.$route.query||{};return()=>pb(Ky,t)}},loader:Wy,meta:{navigationBar:{titleText:"登录",style:"custom",type:"default"},isNVue:!1}},{path:"/pages/nearby/nearby",component:{setup(){const e=Yg(),t=e&&e.$route&&e.$route.query||{};return()=>pb(Xy,t)}},loader:Yy,meta:{navigationBar:{backgroundColor:"#4778EC",titleText:"附近",type:"default",titleColor:"#ffffff"},isNVue:!1}},{path:"/pages/chat/chat",component:{setup(){const e=Yg(),t=e&&e.$route&&e.$route.query||{};return()=>pb(Jy,t)}},loader:Gy,meta:{isQuit:!0,isTabBar:!0,tabBarIndex:2,enablePullDownRefresh:!1,navigationBar:{backgroundColor:"#4778EC",titleText:"AI+",style:"custom",type:"default",titleColor:"#ffffff"},isNVue:!1}},{path:"/packageA/pages/choiceness/choiceness",component:{setup(){const e=Yg(),t=e&&e.$route&&e.$route.query||{};return()=>pb(Qy,t)}},loader:Zy,meta:{navigationBar:{backgroundColor:"#4778EC",titleText:"精选",type:"default",titleColor:"#ffffff"},isNVue:!1}},{path:"/packageA/pages/post/post",component:{setup(){const e=Yg(),t=e&&e.$route&&e.$route.query||{};return()=>pb(tb,t)}},loader:eb,meta:{navigationBar:{backgroundColor:"#4778EC",titleText:"职位详情",type:"default",titleColor:"#ffffff"},isNVue:!1}},{path:"/packageA/pages/UnitDetails/UnitDetails",component:{setup(){const e=Yg(),t=e&&e.$route&&e.$route.query||{};return()=>pb(rb,t)}},loader:nb,meta:{navigationBar:{backgroundColor:"#4778EC",titleText:"单位详情",type:"default",titleColor:"#ffffff"},isNVue:!1}},{path:"/packageA/pages/exhibitors/exhibitors",component:{setup(){const e=Yg(),t=e&&e.$route&&e.$route.query||{};return()=>pb(ib,t)}},loader:ob,meta:{navigationBar:{backgroundColor:"#4778EC",titleText:"参展单位",type:"default",titleColor:"#ffffff"},isNVue:!1}},{path:"/packageA/pages/myResume/myResume",component:{setup(){const e=Yg(),t=e&&e.$route&&e.$route.query||{};return()=>pb(ab,t)}},loader:sb,meta:{navigationBar:{backgroundColor:"#4778EC",titleText:"我的简历",type:"default",titleColor:"#ffffff"},isNVue:!1}},{path:"/packageA/pages/Intendedposition/Intendedposition",component:{setup(){const e=Yg(),t=e&&e.$route&&e.$route.query||{};return()=>pb(cb,t)}},loader:lb,meta:{navigationBar:{backgroundColor:"#4778EC",titleText:"意向岗位",type:"default",titleColor:"#ffffff"},isNVue:!1}},{path:"/packageA/pages/collection/collection",component:{setup(){const e=Yg(),t=e&&e.$route&&e.$route.query||{};return()=>pb(db,t)}},loader:ub,meta:{navigationBar:{backgroundColor:"#4778EC",titleText:"我的收藏",type:"default",titleColor:"#ffffff"},isNVue:!1}},{path:"/packageA/pages/browseJob/browseJob",component:{setup(){const e=Yg(),t=e&&e.$route&&e.$route.query||{};return()=>pb(fb,t)}},loader:hb,meta:{navigationBar:{backgroundColor:"#4778EC",titleText:"我的浏览",type:"default",titleColor:"#ffffff"},isNVue:!1}}].map((e=>(e.meta.route=(e.alias||e.path).slice(1),e)));var mb,vb={exports:{}}; -/*! For license information please see gtpush-min.js.LICENSE.txt */self,mb=()=>(()=>{var e={4736:(e,t,n)=>{var r;e=n.nmd(e);var o=function(e){var t=1e7,n=9007199254740992,r=h(n),i="0123456789abcdefghijklmnopqrstuvwxyz",s="function"==typeof BigInt;function a(e,t,n,r){return void 0===e?a[0]:void 0===t||10==+t&&!n?X(e):q(e,t,n,r)}function l(e,t){this.value=e,this.sign=t,this.isSmall=!1}function c(e){this.value=e,this.sign=e<0,this.isSmall=!0}function u(e){this.value=e}function d(e){return-n0?Math.floor(e):Math.ceil(e)}function v(e,n){var r,o,i=e.length,s=n.length,a=new Array(i),l=0,c=t;for(o=0;o=c?1:0,a[o]=r-l*c;for(;o0&&a.push(l),a}function y(e,t){return e.length>=t.length?v(e,t):v(t,e)}function b(e,n){var r,o,i=e.length,s=new Array(i),a=t;for(o=0;o0;)s[o++]=n%a,n=Math.floor(n/a);return s}function _(e,n){var r,o,i=e.length,s=n.length,a=new Array(i),l=0,c=t;for(r=0;r0;)s[o++]=l%a,l=Math.floor(l/a);return s}function E(e,t){for(var n=[];t-- >0;)n.push(0);return n.concat(e)}function T(e,t){var n=Math.max(e.length,t.length);if(n<=30)return S(e,t);n=Math.ceil(n/2);var r=e.slice(n),o=e.slice(0,n),i=t.slice(n),s=t.slice(0,n),a=T(o,s),l=T(r,i),c=T(y(o,r),y(s,i)),u=y(y(a,E(_(_(c,a),l),n)),E(l,2*n));return p(u),u}function C(e,n,r){return new l(e=0;--n)o=(i=1e7*o+e[n])-(r=m(i/t))*t,a[n]=0|r;return[a,0|o]}function A(e,n){var r,o=X(n);if(s)return[new u(e.value/o.value),new u(e.value%o.value)];var i,d=e.value,v=o.value;if(0===v)throw new Error("Cannot divide by zero");if(e.isSmall)return o.isSmall?[new c(m(d/v)),new c(d%v)]:[a[0],e];if(o.isSmall){if(1===v)return[e,a[0]];if(-1==v)return[e.negate(),a[0]];var y=Math.abs(v);if(y=0;o--){for(r=h-1,y[o+d]!==m&&(r=Math.floor((y[o+d]*h+y[o+d-1])/m)),i=0,s=0,l=b.length,a=0;ac&&(i=(i+1)*h),r=Math.ceil(i/s);do{if(D(a=x(n,r),d)<=0)break;r--}while(r);u.push(r),d=_(d,a)}return u.reverse(),[f(u),f(d)]}(d,v),i=r[0];var S=e.sign!==o.sign,E=r[1],T=e.sign;return"number"==typeof i?(S&&(i=-i),i=new c(i)):i=new l(i,S),"number"==typeof E?(T&&(E=-E),E=new c(E)):E=new l(E,T),[i,E]}function D(e,t){if(e.length!==t.length)return e.length>t.length?1:-1;for(var n=e.length-1;n>=0;n--)if(e[n]!==t[n])return e[n]>t[n]?1:-1;return 0}function O(e){var t=e.abs();return!t.isUnit()&&(!!(t.equals(2)||t.equals(3)||t.equals(5))||!(t.isEven()||t.isDivisibleBy(3)||t.isDivisibleBy(5))&&(!!t.lesser(49)||void 0))}function I(e,t){for(var n,r,i,s=e.prev(),a=s,l=0;a.isEven();)a=a.divide(2),l++;e:for(r=0;r=0?r=_(e,t):(r=_(t,e),n=!n),"number"==typeof(r=f(r))?(n&&(r=-r),new c(r)):new l(r,n)}(n,r,this.sign)},l.prototype.minus=l.prototype.subtract,c.prototype.subtract=function(e){var t=X(e),n=this.value;if(n<0!==t.sign)return this.add(t.negate());var r=t.value;return t.isSmall?new c(n-r):w(r,Math.abs(n),n>=0)},c.prototype.minus=c.prototype.subtract,u.prototype.subtract=function(e){return new u(this.value-X(e).value)},u.prototype.minus=u.prototype.subtract,l.prototype.negate=function(){return new l(this.value,!this.sign)},c.prototype.negate=function(){var e=this.sign,t=new c(-this.value);return t.sign=!e,t},u.prototype.negate=function(){return new u(-this.value)},l.prototype.abs=function(){return new l(this.value,!1)},c.prototype.abs=function(){return new c(Math.abs(this.value))},u.prototype.abs=function(){return new u(this.value>=0?this.value:-this.value)},l.prototype.multiply=function(e){var n,r=X(e),o=this.value,i=r.value,s=this.sign!==r.sign;if(r.isSmall){if(0===i)return a[0];if(1===i)return this;if(-1===i)return this.negate();if((n=Math.abs(i))0}(o.length,i.length)?new l(T(o,i),s):new l(S(o,i),s)},l.prototype.times=l.prototype.multiply,c.prototype._multiplyBySmall=function(e){return d(e.value*this.value)?new c(e.value*this.value):C(Math.abs(e.value),h(Math.abs(this.value)),this.sign!==e.sign)},l.prototype._multiplyBySmall=function(e){return 0===e.value?a[0]:1===e.value?this:-1===e.value?this.negate():C(Math.abs(e.value),this.value,this.sign!==e.sign)},c.prototype.multiply=function(e){return X(e)._multiplyBySmall(this)},c.prototype.times=c.prototype.multiply,u.prototype.multiply=function(e){return new u(this.value*X(e).value)},u.prototype.times=u.prototype.multiply,l.prototype.square=function(){return new l(M(this.value),!1)},c.prototype.square=function(){var e=this.value*this.value;return d(e)?new c(e):new l(M(h(Math.abs(this.value))),!1)},u.prototype.square=function(e){return new u(this.value*this.value)},l.prototype.divmod=function(e){var t=A(this,e);return{quotient:t[0],remainder:t[1]}},u.prototype.divmod=c.prototype.divmod=l.prototype.divmod,l.prototype.divide=function(e){return A(this,e)[0]},u.prototype.over=u.prototype.divide=function(e){return new u(this.value/X(e).value)},c.prototype.over=c.prototype.divide=l.prototype.over=l.prototype.divide,l.prototype.mod=function(e){return A(this,e)[1]},u.prototype.mod=u.prototype.remainder=function(e){return new u(this.value%X(e).value)},c.prototype.remainder=c.prototype.mod=l.prototype.remainder=l.prototype.mod,l.prototype.pow=function(e){var t,n,r,o=X(e),i=this.value,s=o.value;if(0===s)return a[1];if(0===i)return a[0];if(1===i)return a[1];if(-1===i)return o.isEven()?a[1]:a[-1];if(o.sign)return a[0];if(!o.isSmall)throw new Error("The exponent "+o.toString()+" is too large.");if(this.isSmall&&d(t=Math.pow(i,s)))return new c(m(t));for(n=this,r=a[1];!0&s&&(r=r.times(n),--s),0!==s;)s/=2,n=n.square();return r},c.prototype.pow=l.prototype.pow,u.prototype.pow=function(e){var t=X(e),n=this.value,r=t.value,o=BigInt(0),i=BigInt(1),s=BigInt(2);if(r===o)return a[1];if(n===o)return a[0];if(n===i)return a[1];if(n===BigInt(-1))return t.isEven()?a[1]:a[-1];if(t.isNegative())return new u(o);for(var l=this,c=a[1];(r&i)===i&&(c=c.times(l),--r),r!==o;)r/=s,l=l.square();return c},l.prototype.modPow=function(e,t){if(e=X(e),(t=X(t)).isZero())throw new Error("Cannot take modPow with modulus 0");var n=a[1],r=this.mod(t);for(e.isNegative()&&(e=e.multiply(a[-1]),r=r.modInv(t));e.isPositive();){if(r.isZero())return a[0];e.isOdd()&&(n=n.multiply(r).mod(t)),e=e.divide(2),r=r.square().mod(t)}return n},u.prototype.modPow=c.prototype.modPow=l.prototype.modPow,l.prototype.compareAbs=function(e){var t=X(e),n=this.value,r=t.value;return t.isSmall?1:D(n,r)},c.prototype.compareAbs=function(e){var t=X(e),n=Math.abs(this.value),r=t.value;return t.isSmall?n===(r=Math.abs(r))?0:n>r?1:-1:-1},u.prototype.compareAbs=function(e){var t=this.value,n=X(e).value;return(t=t>=0?t:-t)===(n=n>=0?n:-n)?0:t>n?1:-1},l.prototype.compare=function(e){if(e===1/0)return-1;if(e===-1/0)return 1;var t=X(e),n=this.value,r=t.value;return this.sign!==t.sign?t.sign?1:-1:t.isSmall?this.sign?-1:1:D(n,r)*(this.sign?-1:1)},l.prototype.compareTo=l.prototype.compare,c.prototype.compare=function(e){if(e===1/0)return-1;if(e===-1/0)return 1;var t=X(e),n=this.value,r=t.value;return t.isSmall?n==r?0:n>r?1:-1:n<0!==t.sign?n<0?-1:1:n<0?1:-1},c.prototype.compareTo=c.prototype.compare,u.prototype.compare=function(e){if(e===1/0)return-1;if(e===-1/0)return 1;var t=this.value,n=X(e).value;return t===n?0:t>n?1:-1},u.prototype.compareTo=u.prototype.compare,l.prototype.equals=function(e){return 0===this.compare(e)},u.prototype.eq=u.prototype.equals=c.prototype.eq=c.prototype.equals=l.prototype.eq=l.prototype.equals,l.prototype.notEquals=function(e){return 0!==this.compare(e)},u.prototype.neq=u.prototype.notEquals=c.prototype.neq=c.prototype.notEquals=l.prototype.neq=l.prototype.notEquals,l.prototype.greater=function(e){return this.compare(e)>0},u.prototype.gt=u.prototype.greater=c.prototype.gt=c.prototype.greater=l.prototype.gt=l.prototype.greater,l.prototype.lesser=function(e){return this.compare(e)<0},u.prototype.lt=u.prototype.lesser=c.prototype.lt=c.prototype.lesser=l.prototype.lt=l.prototype.lesser,l.prototype.greaterOrEquals=function(e){return this.compare(e)>=0},u.prototype.geq=u.prototype.greaterOrEquals=c.prototype.geq=c.prototype.greaterOrEquals=l.prototype.geq=l.prototype.greaterOrEquals,l.prototype.lesserOrEquals=function(e){return this.compare(e)<=0},u.prototype.leq=u.prototype.lesserOrEquals=c.prototype.leq=c.prototype.lesserOrEquals=l.prototype.leq=l.prototype.lesserOrEquals,l.prototype.isEven=function(){return 0==(1&this.value[0])},c.prototype.isEven=function(){return 0==(1&this.value)},u.prototype.isEven=function(){return(this.value&BigInt(1))===BigInt(0)},l.prototype.isOdd=function(){return 1==(1&this.value[0])},c.prototype.isOdd=function(){return 1==(1&this.value)},u.prototype.isOdd=function(){return(this.value&BigInt(1))===BigInt(1)},l.prototype.isPositive=function(){return!this.sign},c.prototype.isPositive=function(){return this.value>0},u.prototype.isPositive=c.prototype.isPositive,l.prototype.isNegative=function(){return this.sign},c.prototype.isNegative=function(){return this.value<0},u.prototype.isNegative=c.prototype.isNegative,l.prototype.isUnit=function(){return!1},c.prototype.isUnit=function(){return 1===Math.abs(this.value)},u.prototype.isUnit=function(){return this.abs().value===BigInt(1)},l.prototype.isZero=function(){return!1},c.prototype.isZero=function(){return 0===this.value},u.prototype.isZero=function(){return this.value===BigInt(0)},l.prototype.isDivisibleBy=function(e){var t=X(e);return!t.isZero()&&(!!t.isUnit()||(0===t.compareAbs(2)?this.isEven():this.mod(t).isZero()))},u.prototype.isDivisibleBy=c.prototype.isDivisibleBy=l.prototype.isDivisibleBy,l.prototype.isPrime=function(t){var n=O(this);if(n!==e)return n;var r=this.abs(),i=r.bitLength();if(i<=64)return I(r,[2,3,5,7,11,13,17,19,23,29,31,37]);for(var s=Math.log(2)*i.toJSNumber(),a=Math.ceil(!0===t?2*Math.pow(s,2):s),l=[],c=0;c-n?new c(e-1):new l(r,!0)},u.prototype.prev=function(){return new u(this.value-BigInt(1))};for(var P=[1];2*P[P.length-1]<=t;)P.push(2*P[P.length-1]);var B=P.length,R=P[B-1];function L(e){return Math.abs(e)<=t}function N(e,t,n){t=X(t);for(var r=e.isNegative(),i=t.isNegative(),s=r?e.not():e,a=i?t.not():t,l=0,c=0,u=null,d=null,h=[];!s.isZero()||!a.isZero();)l=(u=A(s,R))[1].toJSNumber(),r&&(l=R-1-l),c=(d=A(a,R))[1].toJSNumber(),i&&(c=R-1-c),s=u[0],a=d[0],h.push(n(l,c));for(var f=0!==n(r?1:0,i?1:0)?o(-1):o(0),p=h.length-1;p>=0;p-=1)f=f.multiply(R).add(o(h[p]));return f}l.prototype.shiftLeft=function(e){var t=X(e).toJSNumber();if(!L(t))throw new Error(String(t)+" is too large for shifting.");if(t<0)return this.shiftRight(-t);var n=this;if(n.isZero())return n;for(;t>=B;)n=n.multiply(R),t-=B-1;return n.multiply(P[t])},u.prototype.shiftLeft=c.prototype.shiftLeft=l.prototype.shiftLeft,l.prototype.shiftRight=function(e){var t,n=X(e).toJSNumber();if(!L(n))throw new Error(String(n)+" is too large for shifting.");if(n<0)return this.shiftLeft(-n);for(var r=this;n>=B;){if(r.isZero()||r.isNegative()&&r.isUnit())return r;r=(t=A(r,R))[1].isNegative()?t[0].prev():t[0],n-=B-1}return(t=A(r,P[n]))[1].isNegative()?t[0].prev():t[0]},u.prototype.shiftRight=c.prototype.shiftRight=l.prototype.shiftRight,l.prototype.not=function(){return this.negate().prev()},u.prototype.not=c.prototype.not=l.prototype.not,l.prototype.and=function(e){return N(this,e,(function(e,t){return e&t}))},u.prototype.and=c.prototype.and=l.prototype.and,l.prototype.or=function(e){return N(this,e,(function(e,t){return e|t}))},u.prototype.or=c.prototype.or=l.prototype.or,l.prototype.xor=function(e){return N(this,e,(function(e,t){return e^t}))},u.prototype.xor=c.prototype.xor=l.prototype.xor;var $=1<<30;function z(e){var n=e.value,r="number"==typeof n?n|$:"bigint"==typeof n?n|BigInt($):n[0]+n[1]*t|1073758208;return r&-r}function j(e,t){if(t.compareTo(e)<=0){var n=j(e,t.square(t)),r=n.p,i=n.e,s=r.multiply(t);return s.compareTo(e)<=0?{p:s,e:2*i+1}:{p:r,e:2*i}}return{p:o(1),e:0}}function V(e,t){return e=X(e),t=X(t),e.greater(t)?e:t}function H(e,t){return e=X(e),t=X(t),e.lesser(t)?e:t}function F(e,t){if(e=X(e).abs(),t=X(t).abs(),e.equals(t))return e;if(e.isZero())return t;if(t.isZero())return e;for(var n,r,o=a[1];e.isEven()&&t.isEven();)n=H(z(e),z(t)),e=e.divide(n),t=t.divide(n),o=o.multiply(n);for(;e.isEven();)e=e.divide(z(e));do{for(;t.isEven();)t=t.divide(z(t));e.greater(t)&&(r=t,t=e,e=r),t=t.subtract(e)}while(!t.isZero());return o.isUnit()?e:e.multiply(o)}l.prototype.bitLength=function(){var e=this;return e.compareTo(o(0))<0&&(e=e.negate().subtract(o(1))),0===e.compareTo(o(0))?o(0):o(j(e,o(2)).e).add(o(1))},u.prototype.bitLength=c.prototype.bitLength=l.prototype.bitLength;var q=function(e,t,n,r){n=n||i,e=String(e),r||(e=e.toLowerCase(),n=n.toLowerCase());var o,s=e.length,a=Math.abs(t),l={};for(o=0;o=a){if("1"===d&&1===a)continue;throw new Error(d+" is not a valid digit in base "+t+".")}t=X(t);var c=[],u="-"===e[0];for(o=u?1:0;o"!==e[o]&&o=0;r--)o=o.add(e[r].times(i)),i=i.times(t);return n?o.negate():o}function W(e,t){if((t=o(t)).isZero()){if(e.isZero())return{value:[0],isNegative:!1};throw new Error("Cannot convert nonzero numbers to base 0.")}if(t.equals(-1)){if(e.isZero())return{value:[0],isNegative:!1};if(e.isNegative())return{value:[].concat.apply([],Array.apply(null,Array(-e.toJSNumber())).map(Array.prototype.valueOf,[1,0])),isNegative:!1};var n=Array.apply(null,Array(e.toJSNumber()-1)).map(Array.prototype.valueOf,[0,1]);return n.unshift([1]),{value:[].concat.apply([],n),isNegative:!1}}var r=!1;if(e.isNegative()&&t.isPositive()&&(r=!0,e=e.abs()),t.isUnit())return e.isZero()?{value:[0],isNegative:!1}:{value:Array.apply(null,Array(e.toJSNumber())).map(Number.prototype.valueOf,1),isNegative:r};for(var i,s=[],a=e;a.isNegative()||a.compareAbs(t)>=0;){i=a.divmod(t),a=i.quotient;var l=i.remainder;l.isNegative()&&(l=t.minus(l).abs(),a=a.next()),s.push(l.toJSNumber())}return s.push(a.toJSNumber()),{value:s.reverse(),isNegative:r}}function K(e,t,n){var r=W(e,t);return(r.isNegative?"-":"")+r.value.map((function(e){return function(e,t){return e<(t=t||i).length?t[e]:"<"+e+">"}(e,n)})).join("")}function Y(e){if(d(+e)){var t=+e;if(t===m(t))return s?new u(BigInt(t)):new c(t);throw new Error("Invalid integer: "+e)}var n="-"===e[0];n&&(e=e.slice(1));var r=e.split(/e/i);if(r.length>2)throw new Error("Invalid integer: "+r.join("e"));if(2===r.length){var o=r[1];if("+"===o[0]&&(o=o.slice(1)),(o=+o)!==m(o)||!d(o))throw new Error("Invalid integer: "+o+" is not a valid exponent.");var i=r[0],a=i.indexOf(".");if(a>=0&&(o-=i.length-a-1,i=i.slice(0,a)+i.slice(a+1)),o<0)throw new Error("Cannot include negative exponent part for integers");e=i+=new Array(o+1).join("0")}if(!/^([0-9][0-9]*)$/.test(e))throw new Error("Invalid integer: "+e);if(s)return new u(BigInt(n?"-"+e:e));for(var h=[],f=e.length,g=f-7;f>0;)h.push(+e.slice(g,f)),(g-=7)<0&&(g=0),f-=7;return p(h),new l(h,n)}function X(e){return"number"==typeof e?function(e){if(s)return new u(BigInt(e));if(d(e)){if(e!==m(e))throw new Error(e+" is not an integer.");return new c(e)}return Y(e.toString())}(e):"string"==typeof e?Y(e):"bigint"==typeof e?new u(e):e}l.prototype.toArray=function(e){return W(this,e)},c.prototype.toArray=function(e){return W(this,e)},u.prototype.toArray=function(e){return W(this,e)},l.prototype.toString=function(t,n){if(t===e&&(t=10),10!==t)return K(this,t,n);for(var r,o=this.value,i=o.length,s=String(o[--i]);--i>=0;)r=String(o[i]),s+="0000000".slice(r.length)+r;return(this.sign?"-":"")+s},c.prototype.toString=function(t,n){return t===e&&(t=10),10!=t?K(this,t,n):String(this.value)},u.prototype.toString=c.prototype.toString,u.prototype.toJSON=l.prototype.toJSON=c.prototype.toJSON=function(){return this.toString()},l.prototype.valueOf=function(){return parseInt(this.toString(),10)},l.prototype.toJSNumber=l.prototype.valueOf,c.prototype.valueOf=function(){return this.value},c.prototype.toJSNumber=c.prototype.valueOf,u.prototype.valueOf=u.prototype.toJSNumber=function(){return parseInt(this.toString(),10)};for(var G=0;G<1e3;G++)a[G]=X(G),G>0&&(a[-G]=X(-G));return a.one=a[1],a.zero=a[0],a.minusOne=a[-1],a.max=V,a.min=H,a.gcd=F,a.lcm=function(e,t){return e=X(e).abs(),t=X(t).abs(),e.divide(F(e,t)).multiply(t)},a.isInstance=function(e){return e instanceof l||e instanceof c||e instanceof u},a.randBetween=function(e,n,r){e=X(e),n=X(n);var o=r||Math.random,i=H(e,n),s=V(e,n).subtract(i).add(1);if(s.isSmall)return i.add(Math.floor(o()*s));for(var l=W(s,t).value,c=[],u=!0,d=0;d>>8^255&p^99,o[n]=p,i[p]=n;var g=e[n],m=e[g],v=e[m],y=257*e[p]^16843008*p;s[n]=y<<24|y>>>8,a[n]=y<<16|y>>>16,l[n]=y<<8|y>>>24,c[n]=y,y=16843009*v^65537*m^257*g^16843008*n,u[p]=y<<24|y>>>8,d[p]=y<<16|y>>>16,h[p]=y<<8|y>>>24,f[p]=y,n?(n=g^e[e[e[v^g]]],r^=e[e[r]]):n=r=1}}();var p=[0,1,2,4,8,16,32,64,128,27,54],g=n.AES=t.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var e=this._keyPriorReset=this._key,t=e.words,n=e.sigBytes/4,r=4*((this._nRounds=n+6)+1),i=this._keySchedule=[],s=0;s6&&s%n==4&&(c=o[c>>>24]<<24|o[c>>>16&255]<<16|o[c>>>8&255]<<8|o[255&c]):(c=o[(c=c<<8|c>>>24)>>>24]<<24|o[c>>>16&255]<<16|o[c>>>8&255]<<8|o[255&c],c^=p[s/n|0]<<24),i[s]=i[s-n]^c);for(var a=this._invKeySchedule=[],l=0;l>>24]]^d[o[c>>>16&255]]^h[o[c>>>8&255]]^f[o[255&c]]}}},encryptBlock:function(e,t){this._doCryptBlock(e,t,this._keySchedule,s,a,l,c,o)},decryptBlock:function(e,t){var n=e[t+1];e[t+1]=e[t+3],e[t+3]=n,this._doCryptBlock(e,t,this._invKeySchedule,u,d,h,f,i),n=e[t+1],e[t+1]=e[t+3],e[t+3]=n},_doCryptBlock:function(e,t,n,r,o,i,s,a){for(var l=this._nRounds,c=e[t]^n[0],u=e[t+1]^n[1],d=e[t+2]^n[2],h=e[t+3]^n[3],f=4,p=1;p>>24]^o[u>>>16&255]^i[d>>>8&255]^s[255&h]^n[f++],m=r[u>>>24]^o[d>>>16&255]^i[h>>>8&255]^s[255&c]^n[f++],v=r[d>>>24]^o[h>>>16&255]^i[c>>>8&255]^s[255&u]^n[f++],y=r[h>>>24]^o[c>>>16&255]^i[u>>>8&255]^s[255&d]^n[f++];c=g,u=m,d=v,h=y}g=(a[c>>>24]<<24|a[u>>>16&255]<<16|a[d>>>8&255]<<8|a[255&h])^n[f++],m=(a[u>>>24]<<24|a[d>>>16&255]<<16|a[h>>>8&255]<<8|a[255&c])^n[f++],v=(a[d>>>24]<<24|a[h>>>16&255]<<16|a[c>>>8&255]<<8|a[255&u])^n[f++],y=(a[h>>>24]<<24|a[c>>>16&255]<<16|a[u>>>8&255]<<8|a[255&d])^n[f++],e[t]=g,e[t+1]=m,e[t+2]=v,e[t+3]=y},keySize:8});e.AES=t._createHelper(g)}(),r.AES)},5109:function(e,t,n){var r;e.exports=(r=n(8249),n(888),void(r.lib.Cipher||function(e){var t=r,n=t.lib,o=n.Base,i=n.WordArray,s=n.BufferedBlockAlgorithm,a=t.enc;a.Utf8;var l=a.Base64,c=t.algo.EvpKDF,u=n.Cipher=s.extend({cfg:o.extend(),createEncryptor:function(e,t){return this.create(this._ENC_XFORM_MODE,e,t)},createDecryptor:function(e,t){return this.create(this._DEC_XFORM_MODE,e,t)},init:function(e,t,n){this.cfg=this.cfg.extend(n),this._xformMode=e,this._key=t,this.reset()},reset:function(){s.reset.call(this),this._doReset()},process:function(e){return this._append(e),this._process()},finalize:function(e){return e&&this._append(e),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function e(e){return"string"==typeof e?b:v}return function(t){return{encrypt:function(n,r,o){return e(r).encrypt(t,n,r,o)},decrypt:function(n,r,o){return e(r).decrypt(t,n,r,o)}}}}()});n.StreamCipher=u.extend({_doFinalize:function(){return this._process(!0)},blockSize:1});var d=t.mode={},h=n.BlockCipherMode=o.extend({createEncryptor:function(e,t){return this.Encryptor.create(e,t)},createDecryptor:function(e,t){return this.Decryptor.create(e,t)},init:function(e,t){this._cipher=e,this._iv=t}}),f=d.CBC=function(){var t=h.extend();function n(t,n,r){var o,i=this._iv;i?(o=i,this._iv=e):o=this._prevBlock;for(var s=0;s>>2];e.sigBytes-=t}};n.BlockCipher=u.extend({cfg:u.cfg.extend({mode:f,padding:p}),reset:function(){var e;u.reset.call(this);var t=this.cfg,n=t.iv,r=t.mode;this._xformMode==this._ENC_XFORM_MODE?e=r.createEncryptor:(e=r.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==e?this._mode.init(this,n&&n.words):(this._mode=e.call(r,this,n&&n.words),this._mode.__creator=e)},_doProcessBlock:function(e,t){this._mode.processBlock(e,t)},_doFinalize:function(){var e,t=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(t.pad(this._data,this.blockSize),e=this._process(!0)):(e=this._process(!0),t.unpad(e)),e},blockSize:4});var g=n.CipherParams=o.extend({init:function(e){this.mixIn(e)},toString:function(e){return(e||this.formatter).stringify(this)}}),m=(t.format={}).OpenSSL={stringify:function(e){var t=e.ciphertext,n=e.salt;return(n?i.create([1398893684,1701076831]).concat(n).concat(t):t).toString(l)},parse:function(e){var t,n=l.parse(e),r=n.words;return 1398893684==r[0]&&1701076831==r[1]&&(t=i.create(r.slice(2,4)),r.splice(0,4),n.sigBytes-=16),g.create({ciphertext:n,salt:t})}},v=n.SerializableCipher=o.extend({cfg:o.extend({format:m}),encrypt:function(e,t,n,r){r=this.cfg.extend(r);var o=e.createEncryptor(n,r),i=o.finalize(t),s=o.cfg;return g.create({ciphertext:i,key:n,iv:s.iv,algorithm:e,mode:s.mode,padding:s.padding,blockSize:e.blockSize,formatter:r.format})},decrypt:function(e,t,n,r){return r=this.cfg.extend(r),t=this._parse(t,r.format),e.createDecryptor(n,r).finalize(t.ciphertext)},_parse:function(e,t){return"string"==typeof e?t.parse(e,this):e}}),y=(t.kdf={}).OpenSSL={execute:function(e,t,n,r){r||(r=i.random(8));var o=c.create({keySize:t+n}).compute(e,r),s=i.create(o.words.slice(t),4*n);return o.sigBytes=4*t,g.create({key:o,iv:s,salt:r})}},b=n.PasswordBasedCipher=v.extend({cfg:v.cfg.extend({kdf:y}),encrypt:function(e,t,n,r){var o=(r=this.cfg.extend(r)).kdf.execute(n,e.keySize,e.ivSize);r.iv=o.iv;var i=v.encrypt.call(this,e,t,o.key,r);return i.mixIn(o),i},decrypt:function(e,t,n,r){r=this.cfg.extend(r),t=this._parse(t,r.format);var o=r.kdf.execute(n,e.keySize,e.ivSize,t.salt);return r.iv=o.iv,v.decrypt.call(this,e,t,o.key,r)}})}()))},8249:function(e,t,n){var r;e.exports=(r=r||function(e,t){var r;if("undefined"!=typeof window&&window.crypto&&(r=window.crypto),"undefined"!=typeof self&&self.crypto&&(r=self.crypto),"undefined"!=typeof globalThis&&globalThis.crypto&&(r=globalThis.crypto),!r&&"undefined"!=typeof window&&window.msCrypto&&(r=window.msCrypto),!r&&void 0!==n.g&&n.g.crypto&&(r=n.g.crypto),!r)try{r=n(2480)}catch(m){}var o=function(){if(r){if("function"==typeof r.getRandomValues)try{return r.getRandomValues(new Uint32Array(1))[0]}catch(m){}if("function"==typeof r.randomBytes)try{return r.randomBytes(4).readInt32LE()}catch(m){}}throw new Error("Native crypto module could not be used to get secure random number.")},i=Object.create||function(){function e(){}return function(t){var n;return e.prototype=t,n=new e,e.prototype=null,n}}(),s={},a=s.lib={},l=a.Base=function(){return{extend:function(e){var t=i(this);return e&&t.mixIn(e),t.hasOwnProperty("init")&&this.init!==t.init||(t.init=function(){t.$super.init.apply(this,arguments)}),t.init.prototype=t,t.$super=this,t},create:function(){var e=this.extend();return e.init.apply(e,arguments),e},init:function(){},mixIn:function(e){for(var t in e)e.hasOwnProperty(t)&&(this[t]=e[t]);e.hasOwnProperty("toString")&&(this.toString=e.toString)},clone:function(){return this.init.prototype.extend(this)}}}(),c=a.WordArray=l.extend({init:function(e,n){e=this.words=e||[],this.sigBytes=n!=t?n:4*e.length},toString:function(e){return(e||d).stringify(this)},concat:function(e){var t=this.words,n=e.words,r=this.sigBytes,o=e.sigBytes;if(this.clamp(),r%4)for(var i=0;i>>2]>>>24-i%4*8&255;t[r+i>>>2]|=s<<24-(r+i)%4*8}else for(var a=0;a>>2]=n[a>>>2];return this.sigBytes+=o,this},clamp:function(){var t=this.words,n=this.sigBytes;t[n>>>2]&=4294967295<<32-n%4*8,t.length=e.ceil(n/4)},clone:function(){var e=l.clone.call(this);return e.words=this.words.slice(0),e},random:function(e){for(var t=[],n=0;n>>2]>>>24-o%4*8&255;r.push((i>>>4).toString(16)),r.push((15&i).toString(16))}return r.join("")},parse:function(e){for(var t=e.length,n=[],r=0;r>>3]|=parseInt(e.substr(r,2),16)<<24-r%8*4;return new c.init(n,t/2)}},h=u.Latin1={stringify:function(e){for(var t=e.words,n=e.sigBytes,r=[],o=0;o>>2]>>>24-o%4*8&255;r.push(String.fromCharCode(i))}return r.join("")},parse:function(e){for(var t=e.length,n=[],r=0;r>>2]|=(255&e.charCodeAt(r))<<24-r%4*8;return new c.init(n,t)}},f=u.Utf8={stringify:function(e){try{return decodeURIComponent(escape(h.stringify(e)))}catch(t){throw new Error("Malformed UTF-8 data")}},parse:function(e){return h.parse(unescape(encodeURIComponent(e)))}},p=a.BufferedBlockAlgorithm=l.extend({reset:function(){this._data=new c.init,this._nDataBytes=0},_append:function(e){"string"==typeof e&&(e=f.parse(e)),this._data.concat(e),this._nDataBytes+=e.sigBytes},_process:function(t){var n,r=this._data,o=r.words,i=r.sigBytes,s=this.blockSize,a=i/(4*s),l=(a=t?e.ceil(a):e.max((0|a)-this._minBufferSize,0))*s,u=e.min(4*l,i);if(l){for(var d=0;d>>6-s%4*2;o[i>>>2]|=a<<24-i%4*8,i++}return t.create(o,i)}e.enc.Base64={stringify:function(e){var t=e.words,n=e.sigBytes,r=this._map;e.clamp();for(var o=[],i=0;i>>2]>>>24-i%4*8&255)<<16|(t[i+1>>>2]>>>24-(i+1)%4*8&255)<<8|t[i+2>>>2]>>>24-(i+2)%4*8&255,a=0;a<4&&i+.75*a>>6*(3-a)&63));var l=r.charAt(64);if(l)for(;o.length%4;)o.push(l);return o.join("")},parse:function(e){var t=e.length,r=this._map,o=this._reverseMap;if(!o){o=this._reverseMap=[];for(var i=0;i>>6-s%4*2;o[i>>>2]|=a<<24-i%4*8,i++}return t.create(o,i)}e.enc.Base64url={stringify:function(e,t=!0){var n=e.words,r=e.sigBytes,o=t?this._safe_map:this._map;e.clamp();for(var i=[],s=0;s>>2]>>>24-s%4*8&255)<<16|(n[s+1>>>2]>>>24-(s+1)%4*8&255)<<8|n[s+2>>>2]>>>24-(s+2)%4*8&255,l=0;l<4&&s+.75*l>>6*(3-l)&63));var c=o.charAt(64);if(c)for(;i.length%4;)i.push(c);return i.join("")},parse:function(e,t=!0){var r=e.length,o=t?this._safe_map:this._map,i=this._reverseMap;if(!i){i=this._reverseMap=[];for(var s=0;s>>8&16711935}n.Utf16=n.Utf16BE={stringify:function(e){for(var t=e.words,n=e.sigBytes,r=[],o=0;o>>2]>>>16-o%4*8&65535;r.push(String.fromCharCode(i))}return r.join("")},parse:function(e){for(var n=e.length,r=[],o=0;o>>1]|=e.charCodeAt(o)<<16-o%2*16;return t.create(r,2*n)}},n.Utf16LE={stringify:function(e){for(var t=e.words,n=e.sigBytes,r=[],i=0;i>>2]>>>16-i%4*8&65535);r.push(String.fromCharCode(s))}return r.join("")},parse:function(e){for(var n=e.length,r=[],i=0;i>>1]|=o(e.charCodeAt(i)<<16-i%2*16);return t.create(r,2*n)}}}(),r.enc.Utf16)},888:function(e,t,n){var r,o,i,s,a,l,c,u;e.exports=(u=n(8249),n(2783),n(9824),o=(r=u).lib,i=o.Base,s=o.WordArray,a=r.algo,l=a.MD5,c=a.EvpKDF=i.extend({cfg:i.extend({keySize:4,hasher:l,iterations:1}),init:function(e){this.cfg=this.cfg.extend(e)},compute:function(e,t){for(var n,r=this.cfg,o=r.hasher.create(),i=s.create(),a=i.words,l=r.keySize,c=r.iterations;a.lengthr&&(t=e.finalize(t)),t.clamp();for(var o=this._oKey=t.clone(),s=this._iKey=t.clone(),a=o.words,l=s.words,c=0;c>>2]|=e[o]<<24-o%4*8;t.call(this,r,n)}else t.apply(this,arguments)};n.prototype=e}}(),r.lib.WordArray)},8214:function(e,t,n){var r;e.exports=(r=n(8249),function(e){var t=r,n=t.lib,o=n.WordArray,i=n.Hasher,s=t.algo,a=[];!function(){for(var t=0;t<64;t++)a[t]=4294967296*e.abs(e.sin(t+1))|0}();var l=s.MD5=i.extend({_doReset:function(){this._hash=new o.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(e,t){for(var n=0;n<16;n++){var r=t+n,o=e[r];e[r]=16711935&(o<<8|o>>>24)|4278255360&(o<<24|o>>>8)}var i=this._hash.words,s=e[t+0],l=e[t+1],f=e[t+2],p=e[t+3],g=e[t+4],m=e[t+5],v=e[t+6],y=e[t+7],b=e[t+8],_=e[t+9],w=e[t+10],S=e[t+11],x=e[t+12],E=e[t+13],T=e[t+14],C=e[t+15],M=i[0],k=i[1],A=i[2],D=i[3];M=c(M,k,A,D,s,7,a[0]),D=c(D,M,k,A,l,12,a[1]),A=c(A,D,M,k,f,17,a[2]),k=c(k,A,D,M,p,22,a[3]),M=c(M,k,A,D,g,7,a[4]),D=c(D,M,k,A,m,12,a[5]),A=c(A,D,M,k,v,17,a[6]),k=c(k,A,D,M,y,22,a[7]),M=c(M,k,A,D,b,7,a[8]),D=c(D,M,k,A,_,12,a[9]),A=c(A,D,M,k,w,17,a[10]),k=c(k,A,D,M,S,22,a[11]),M=c(M,k,A,D,x,7,a[12]),D=c(D,M,k,A,E,12,a[13]),A=c(A,D,M,k,T,17,a[14]),M=u(M,k=c(k,A,D,M,C,22,a[15]),A,D,l,5,a[16]),D=u(D,M,k,A,v,9,a[17]),A=u(A,D,M,k,S,14,a[18]),k=u(k,A,D,M,s,20,a[19]),M=u(M,k,A,D,m,5,a[20]),D=u(D,M,k,A,w,9,a[21]),A=u(A,D,M,k,C,14,a[22]),k=u(k,A,D,M,g,20,a[23]),M=u(M,k,A,D,_,5,a[24]),D=u(D,M,k,A,T,9,a[25]),A=u(A,D,M,k,p,14,a[26]),k=u(k,A,D,M,b,20,a[27]),M=u(M,k,A,D,E,5,a[28]),D=u(D,M,k,A,f,9,a[29]),A=u(A,D,M,k,y,14,a[30]),M=d(M,k=u(k,A,D,M,x,20,a[31]),A,D,m,4,a[32]),D=d(D,M,k,A,b,11,a[33]),A=d(A,D,M,k,S,16,a[34]),k=d(k,A,D,M,T,23,a[35]),M=d(M,k,A,D,l,4,a[36]),D=d(D,M,k,A,g,11,a[37]),A=d(A,D,M,k,y,16,a[38]),k=d(k,A,D,M,w,23,a[39]),M=d(M,k,A,D,E,4,a[40]),D=d(D,M,k,A,s,11,a[41]),A=d(A,D,M,k,p,16,a[42]),k=d(k,A,D,M,v,23,a[43]),M=d(M,k,A,D,_,4,a[44]),D=d(D,M,k,A,x,11,a[45]),A=d(A,D,M,k,C,16,a[46]),M=h(M,k=d(k,A,D,M,f,23,a[47]),A,D,s,6,a[48]),D=h(D,M,k,A,y,10,a[49]),A=h(A,D,M,k,T,15,a[50]),k=h(k,A,D,M,m,21,a[51]),M=h(M,k,A,D,x,6,a[52]),D=h(D,M,k,A,p,10,a[53]),A=h(A,D,M,k,w,15,a[54]),k=h(k,A,D,M,l,21,a[55]),M=h(M,k,A,D,b,6,a[56]),D=h(D,M,k,A,C,10,a[57]),A=h(A,D,M,k,v,15,a[58]),k=h(k,A,D,M,E,21,a[59]),M=h(M,k,A,D,g,6,a[60]),D=h(D,M,k,A,S,10,a[61]),A=h(A,D,M,k,f,15,a[62]),k=h(k,A,D,M,_,21,a[63]),i[0]=i[0]+M|0,i[1]=i[1]+k|0,i[2]=i[2]+A|0,i[3]=i[3]+D|0},_doFinalize:function(){var t=this._data,n=t.words,r=8*this._nDataBytes,o=8*t.sigBytes;n[o>>>5]|=128<<24-o%32;var i=e.floor(r/4294967296),s=r;n[15+(o+64>>>9<<4)]=16711935&(i<<8|i>>>24)|4278255360&(i<<24|i>>>8),n[14+(o+64>>>9<<4)]=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8),t.sigBytes=4*(n.length+1),this._process();for(var a=this._hash,l=a.words,c=0;c<4;c++){var u=l[c];l[c]=16711935&(u<<8|u>>>24)|4278255360&(u<<24|u>>>8)}return a},clone:function(){var e=i.clone.call(this);return e._hash=this._hash.clone(),e}});function c(e,t,n,r,o,i,s){var a=e+(t&n|~t&r)+o+s;return(a<>>32-i)+t}function u(e,t,n,r,o,i,s){var a=e+(t&r|n&~r)+o+s;return(a<>>32-i)+t}function d(e,t,n,r,o,i,s){var a=e+(t^n^r)+o+s;return(a<>>32-i)+t}function h(e,t,n,r,o,i,s){var a=e+(n^(t|~r))+o+s;return(a<>>32-i)+t}t.MD5=i._createHelper(l),t.HmacMD5=i._createHmacHelper(l)}(Math),r.MD5)},8568:function(e,t,n){var r;e.exports=(r=n(8249),n(5109),r.mode.CFB=function(){var e=r.lib.BlockCipherMode.extend();function t(e,t,n,r){var o,i=this._iv;i?(o=i.slice(0),this._iv=void 0):o=this._prevBlock,r.encryptBlock(o,0);for(var s=0;s>24&255)){var t=e>>16&255,n=e>>8&255,r=255&e;255===t?(t=0,255===n?(n=0,255===r?r=0:++r):++n):++t,e=0,e+=t<<16,e+=n<<8,e+=r}else e+=1<<24;return e}function n(e){return 0===(e[0]=t(e[0]))&&(e[1]=t(e[1])),e}var o=e.Encryptor=e.extend({processBlock:function(e,t){var r=this._cipher,o=r.blockSize,i=this._iv,s=this._counter;i&&(s=this._counter=i.slice(0),this._iv=void 0),n(s);var a=s.slice(0);r.encryptBlock(a,0);for(var l=0;l>>2]|=o<<24-i%4*8,e.sigBytes+=o},unpad:function(e){var t=255&e.words[e.sigBytes-1>>>2];e.sigBytes-=t}},r.pad.Ansix923)},2807:function(e,t,n){var r;e.exports=(r=n(8249),n(5109),r.pad.Iso10126={pad:function(e,t){var n=4*t,o=n-e.sigBytes%n;e.concat(r.lib.WordArray.random(o-1)).concat(r.lib.WordArray.create([o<<24],1))},unpad:function(e){var t=255&e.words[e.sigBytes-1>>>2];e.sigBytes-=t}},r.pad.Iso10126)},1077:function(e,t,n){var r;e.exports=(r=n(8249),n(5109),r.pad.Iso97971={pad:function(e,t){e.concat(r.lib.WordArray.create([2147483648],1)),r.pad.ZeroPadding.pad(e,t)},unpad:function(e){r.pad.ZeroPadding.unpad(e),e.sigBytes--}},r.pad.Iso97971)},6991:function(e,t,n){var r;e.exports=(r=n(8249),n(5109),r.pad.NoPadding={pad:function(){},unpad:function(){}},r.pad.NoPadding)},6475:function(e,t,n){var r;e.exports=(r=n(8249),n(5109),r.pad.ZeroPadding={pad:function(e,t){var n=4*t;e.clamp(),e.sigBytes+=n-(e.sigBytes%n||n)},unpad:function(e){var t=e.words,n=e.sigBytes-1;for(n=e.sigBytes-1;n>=0;n--)if(t[n>>>2]>>>24-n%4*8&255){e.sigBytes=n+1;break}}},r.pad.ZeroPadding)},2112:function(e,t,n){var r,o,i,s,a,l,c,u,d;e.exports=(d=n(8249),n(2783),n(9824),o=(r=d).lib,i=o.Base,s=o.WordArray,a=r.algo,l=a.SHA1,c=a.HMAC,u=a.PBKDF2=i.extend({cfg:i.extend({keySize:4,hasher:l,iterations:1}),init:function(e){this.cfg=this.cfg.extend(e)},compute:function(e,t){for(var n=this.cfg,r=c.create(n.hasher,e),o=s.create(),i=s.create([1]),a=o.words,l=i.words,u=n.keySize,d=n.iterations;a.length>>16,e[1],e[0]<<16|e[3]>>>16,e[2],e[1]<<16|e[0]>>>16,e[3],e[2]<<16|e[1]>>>16],r=this._C=[e[2]<<16|e[2]>>>16,4294901760&e[0]|65535&e[1],e[3]<<16|e[3]>>>16,4294901760&e[1]|65535&e[2],e[0]<<16|e[0]>>>16,4294901760&e[2]|65535&e[3],e[1]<<16|e[1]>>>16,4294901760&e[3]|65535&e[0]];this._b=0;for(var o=0;o<4;o++)l.call(this);for(o=0;o<8;o++)r[o]^=n[o+4&7];if(t){var i=t.words,s=i[0],a=i[1],c=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8),u=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8),d=c>>>16|4294901760&u,h=u<<16|65535&c;for(r[0]^=c,r[1]^=d,r[2]^=u,r[3]^=h,r[4]^=c,r[5]^=d,r[6]^=u,r[7]^=h,o=0;o<4;o++)l.call(this)}},_doProcessBlock:function(e,t){var n=this._X;l.call(this),o[0]=n[0]^n[5]>>>16^n[3]<<16,o[1]=n[2]^n[7]>>>16^n[5]<<16,o[2]=n[4]^n[1]>>>16^n[7]<<16,o[3]=n[6]^n[3]>>>16^n[1]<<16;for(var r=0;r<4;r++)o[r]=16711935&(o[r]<<8|o[r]>>>24)|4278255360&(o[r]<<24|o[r]>>>8),e[t+r]^=o[r]},blockSize:4,ivSize:2});function l(){for(var e=this._X,t=this._C,n=0;n<8;n++)i[n]=t[n];for(t[0]=t[0]+1295307597+this._b|0,t[1]=t[1]+3545052371+(t[0]>>>0>>0?1:0)|0,t[2]=t[2]+886263092+(t[1]>>>0>>0?1:0)|0,t[3]=t[3]+1295307597+(t[2]>>>0>>0?1:0)|0,t[4]=t[4]+3545052371+(t[3]>>>0>>0?1:0)|0,t[5]=t[5]+886263092+(t[4]>>>0>>0?1:0)|0,t[6]=t[6]+1295307597+(t[5]>>>0>>0?1:0)|0,t[7]=t[7]+3545052371+(t[6]>>>0>>0?1:0)|0,this._b=t[7]>>>0>>0?1:0,n=0;n<8;n++){var r=e[n]+t[n],o=65535&r,a=r>>>16,l=((o*o>>>17)+o*a>>>15)+a*a,c=((4294901760&r)*r|0)+((65535&r)*r|0);s[n]=l^c}e[0]=s[0]+(s[7]<<16|s[7]>>>16)+(s[6]<<16|s[6]>>>16)|0,e[1]=s[1]+(s[0]<<8|s[0]>>>24)+s[7]|0,e[2]=s[2]+(s[1]<<16|s[1]>>>16)+(s[0]<<16|s[0]>>>16)|0,e[3]=s[3]+(s[2]<<8|s[2]>>>24)+s[1]|0,e[4]=s[4]+(s[3]<<16|s[3]>>>16)+(s[2]<<16|s[2]>>>16)|0,e[5]=s[5]+(s[4]<<8|s[4]>>>24)+s[3]|0,e[6]=s[6]+(s[5]<<16|s[5]>>>16)+(s[4]<<16|s[4]>>>16)|0,e[7]=s[7]+(s[6]<<8|s[6]>>>24)+s[5]|0}e.RabbitLegacy=t._createHelper(a)}(),r.RabbitLegacy)},4454:function(e,t,n){var r;e.exports=(r=n(8249),n(8269),n(8214),n(888),n(5109),function(){var e=r,t=e.lib.StreamCipher,n=e.algo,o=[],i=[],s=[],a=n.Rabbit=t.extend({_doReset:function(){for(var e=this._key.words,t=this.cfg.iv,n=0;n<4;n++)e[n]=16711935&(e[n]<<8|e[n]>>>24)|4278255360&(e[n]<<24|e[n]>>>8);var r=this._X=[e[0],e[3]<<16|e[2]>>>16,e[1],e[0]<<16|e[3]>>>16,e[2],e[1]<<16|e[0]>>>16,e[3],e[2]<<16|e[1]>>>16],o=this._C=[e[2]<<16|e[2]>>>16,4294901760&e[0]|65535&e[1],e[3]<<16|e[3]>>>16,4294901760&e[1]|65535&e[2],e[0]<<16|e[0]>>>16,4294901760&e[2]|65535&e[3],e[1]<<16|e[1]>>>16,4294901760&e[3]|65535&e[0]];for(this._b=0,n=0;n<4;n++)l.call(this);for(n=0;n<8;n++)o[n]^=r[n+4&7];if(t){var i=t.words,s=i[0],a=i[1],c=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8),u=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8),d=c>>>16|4294901760&u,h=u<<16|65535&c;for(o[0]^=c,o[1]^=d,o[2]^=u,o[3]^=h,o[4]^=c,o[5]^=d,o[6]^=u,o[7]^=h,n=0;n<4;n++)l.call(this)}},_doProcessBlock:function(e,t){var n=this._X;l.call(this),o[0]=n[0]^n[5]>>>16^n[3]<<16,o[1]=n[2]^n[7]>>>16^n[5]<<16,o[2]=n[4]^n[1]>>>16^n[7]<<16,o[3]=n[6]^n[3]>>>16^n[1]<<16;for(var r=0;r<4;r++)o[r]=16711935&(o[r]<<8|o[r]>>>24)|4278255360&(o[r]<<24|o[r]>>>8),e[t+r]^=o[r]},blockSize:4,ivSize:2});function l(){for(var e=this._X,t=this._C,n=0;n<8;n++)i[n]=t[n];for(t[0]=t[0]+1295307597+this._b|0,t[1]=t[1]+3545052371+(t[0]>>>0>>0?1:0)|0,t[2]=t[2]+886263092+(t[1]>>>0>>0?1:0)|0,t[3]=t[3]+1295307597+(t[2]>>>0>>0?1:0)|0,t[4]=t[4]+3545052371+(t[3]>>>0>>0?1:0)|0,t[5]=t[5]+886263092+(t[4]>>>0>>0?1:0)|0,t[6]=t[6]+1295307597+(t[5]>>>0>>0?1:0)|0,t[7]=t[7]+3545052371+(t[6]>>>0>>0?1:0)|0,this._b=t[7]>>>0>>0?1:0,n=0;n<8;n++){var r=e[n]+t[n],o=65535&r,a=r>>>16,l=((o*o>>>17)+o*a>>>15)+a*a,c=((4294901760&r)*r|0)+((65535&r)*r|0);s[n]=l^c}e[0]=s[0]+(s[7]<<16|s[7]>>>16)+(s[6]<<16|s[6]>>>16)|0,e[1]=s[1]+(s[0]<<8|s[0]>>>24)+s[7]|0,e[2]=s[2]+(s[1]<<16|s[1]>>>16)+(s[0]<<16|s[0]>>>16)|0,e[3]=s[3]+(s[2]<<8|s[2]>>>24)+s[1]|0,e[4]=s[4]+(s[3]<<16|s[3]>>>16)+(s[2]<<16|s[2]>>>16)|0,e[5]=s[5]+(s[4]<<8|s[4]>>>24)+s[3]|0,e[6]=s[6]+(s[5]<<16|s[5]>>>16)+(s[4]<<16|s[4]>>>16)|0,e[7]=s[7]+(s[6]<<8|s[6]>>>24)+s[5]|0}e.Rabbit=t._createHelper(a)}(),r.Rabbit)},1857:function(e,t,n){var r;e.exports=(r=n(8249),n(8269),n(8214),n(888),n(5109),function(){var e=r,t=e.lib.StreamCipher,n=e.algo,o=n.RC4=t.extend({_doReset:function(){for(var e=this._key,t=e.words,n=e.sigBytes,r=this._S=[],o=0;o<256;o++)r[o]=o;o=0;for(var i=0;o<256;o++){var s=o%n,a=t[s>>>2]>>>24-s%4*8&255;i=(i+r[o]+a)%256;var l=r[o];r[o]=r[i],r[i]=l}this._i=this._j=0},_doProcessBlock:function(e,t){e[t]^=i.call(this)},keySize:8,ivSize:0});function i(){for(var e=this._S,t=this._i,n=this._j,r=0,o=0;o<4;o++){n=(n+e[t=(t+1)%256])%256;var i=e[t];e[t]=e[n],e[n]=i,r|=e[(e[t]+e[n])%256]<<24-8*o}return this._i=t,this._j=n,r}e.RC4=t._createHelper(o);var s=n.RC4Drop=o.extend({cfg:o.cfg.extend({drop:192}),_doReset:function(){o._doReset.call(this);for(var e=this.cfg.drop;e>0;e--)i.call(this)}});e.RC4Drop=t._createHelper(s)}(),r.RC4)},706:function(e,t,n){var r;e.exports=(r=n(8249),function(e){var t=r,n=t.lib,o=n.WordArray,i=n.Hasher,s=t.algo,a=o.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),l=o.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),c=o.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),u=o.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),d=o.create([0,1518500249,1859775393,2400959708,2840853838]),h=o.create([1352829926,1548603684,1836072691,2053994217,0]),f=s.RIPEMD160=i.extend({_doReset:function(){this._hash=o.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(e,t){for(var n=0;n<16;n++){var r=t+n,o=e[r];e[r]=16711935&(o<<8|o>>>24)|4278255360&(o<<24|o>>>8)}var i,s,f,_,w,S,x,E,T,C,M,k=this._hash.words,A=d.words,D=h.words,O=a.words,I=l.words,P=c.words,B=u.words;for(S=i=k[0],x=s=k[1],E=f=k[2],T=_=k[3],C=w=k[4],n=0;n<80;n+=1)M=i+e[t+O[n]]|0,M+=n<16?p(s,f,_)+A[0]:n<32?g(s,f,_)+A[1]:n<48?m(s,f,_)+A[2]:n<64?v(s,f,_)+A[3]:y(s,f,_)+A[4],M=(M=b(M|=0,P[n]))+w|0,i=w,w=_,_=b(f,10),f=s,s=M,M=S+e[t+I[n]]|0,M+=n<16?y(x,E,T)+D[0]:n<32?v(x,E,T)+D[1]:n<48?m(x,E,T)+D[2]:n<64?g(x,E,T)+D[3]:p(x,E,T)+D[4],M=(M=b(M|=0,B[n]))+C|0,S=C,C=T,T=b(E,10),E=x,x=M;M=k[1]+f+T|0,k[1]=k[2]+_+C|0,k[2]=k[3]+w+S|0,k[3]=k[4]+i+x|0,k[4]=k[0]+s+E|0,k[0]=M},_doFinalize:function(){var e=this._data,t=e.words,n=8*this._nDataBytes,r=8*e.sigBytes;t[r>>>5]|=128<<24-r%32,t[14+(r+64>>>9<<4)]=16711935&(n<<8|n>>>24)|4278255360&(n<<24|n>>>8),e.sigBytes=4*(t.length+1),this._process();for(var o=this._hash,i=o.words,s=0;s<5;s++){var a=i[s];i[s]=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8)}return o},clone:function(){var e=i.clone.call(this);return e._hash=this._hash.clone(),e}});function p(e,t,n){return e^t^n}function g(e,t,n){return e&t|~e&n}function m(e,t,n){return(e|~t)^n}function v(e,t,n){return e&n|t&~n}function y(e,t,n){return e^(t|~n)}function b(e,t){return e<>>32-t}t.RIPEMD160=i._createHelper(f),t.HmacRIPEMD160=i._createHmacHelper(f)}(),r.RIPEMD160)},2783:function(e,t,n){var r,o,i,s,a,l,c,u;e.exports=(u=n(8249),o=(r=u).lib,i=o.WordArray,s=o.Hasher,a=r.algo,l=[],c=a.SHA1=s.extend({_doReset:function(){this._hash=new i.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(e,t){for(var n=this._hash.words,r=n[0],o=n[1],i=n[2],s=n[3],a=n[4],c=0;c<80;c++){if(c<16)l[c]=0|e[t+c];else{var u=l[c-3]^l[c-8]^l[c-14]^l[c-16];l[c]=u<<1|u>>>31}var d=(r<<5|r>>>27)+a+l[c];d+=c<20?1518500249+(o&i|~o&s):c<40?1859775393+(o^i^s):c<60?(o&i|o&s|i&s)-1894007588:(o^i^s)-899497514,a=s,s=i,i=o<<30|o>>>2,o=r,r=d}n[0]=n[0]+r|0,n[1]=n[1]+o|0,n[2]=n[2]+i|0,n[3]=n[3]+s|0,n[4]=n[4]+a|0},_doFinalize:function(){var e=this._data,t=e.words,n=8*this._nDataBytes,r=8*e.sigBytes;return t[r>>>5]|=128<<24-r%32,t[14+(r+64>>>9<<4)]=Math.floor(n/4294967296),t[15+(r+64>>>9<<4)]=n,e.sigBytes=4*t.length,this._process(),this._hash},clone:function(){var e=s.clone.call(this);return e._hash=this._hash.clone(),e}}),r.SHA1=s._createHelper(c),r.HmacSHA1=s._createHmacHelper(c),u.SHA1)},7792:function(e,t,n){var r,o,i,s,a,l;e.exports=(l=n(8249),n(2153),o=(r=l).lib.WordArray,i=r.algo,s=i.SHA256,a=i.SHA224=s.extend({_doReset:function(){this._hash=new o.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var e=s._doFinalize.call(this);return e.sigBytes-=4,e}}),r.SHA224=s._createHelper(a),r.HmacSHA224=s._createHmacHelper(a),l.SHA224)},2153:function(e,t,n){var r;e.exports=(r=n(8249),function(e){var t=r,n=t.lib,o=n.WordArray,i=n.Hasher,s=t.algo,a=[],l=[];!function(){function t(t){for(var n=e.sqrt(t),r=2;r<=n;r++)if(!(t%r))return!1;return!0}function n(e){return 4294967296*(e-(0|e))|0}for(var r=2,o=0;o<64;)t(r)&&(o<8&&(a[o]=n(e.pow(r,.5))),l[o]=n(e.pow(r,1/3)),o++),r++}();var c=[],u=s.SHA256=i.extend({_doReset:function(){this._hash=new o.init(a.slice(0))},_doProcessBlock:function(e,t){for(var n=this._hash.words,r=n[0],o=n[1],i=n[2],s=n[3],a=n[4],u=n[5],d=n[6],h=n[7],f=0;f<64;f++){if(f<16)c[f]=0|e[t+f];else{var p=c[f-15],g=(p<<25|p>>>7)^(p<<14|p>>>18)^p>>>3,m=c[f-2],v=(m<<15|m>>>17)^(m<<13|m>>>19)^m>>>10;c[f]=g+c[f-7]+v+c[f-16]}var y=r&o^r&i^o&i,b=(r<<30|r>>>2)^(r<<19|r>>>13)^(r<<10|r>>>22),_=h+((a<<26|a>>>6)^(a<<21|a>>>11)^(a<<7|a>>>25))+(a&u^~a&d)+l[f]+c[f];h=d,d=u,u=a,a=s+_|0,s=i,i=o,o=r,r=_+(b+y)|0}n[0]=n[0]+r|0,n[1]=n[1]+o|0,n[2]=n[2]+i|0,n[3]=n[3]+s|0,n[4]=n[4]+a|0,n[5]=n[5]+u|0,n[6]=n[6]+d|0,n[7]=n[7]+h|0},_doFinalize:function(){var t=this._data,n=t.words,r=8*this._nDataBytes,o=8*t.sigBytes;return n[o>>>5]|=128<<24-o%32,n[14+(o+64>>>9<<4)]=e.floor(r/4294967296),n[15+(o+64>>>9<<4)]=r,t.sigBytes=4*n.length,this._process(),this._hash},clone:function(){var e=i.clone.call(this);return e._hash=this._hash.clone(),e}});t.SHA256=i._createHelper(u),t.HmacSHA256=i._createHmacHelper(u)}(Math),r.SHA256)},3327:function(e,t,n){var r;e.exports=(r=n(8249),n(4938),function(e){var t=r,n=t.lib,o=n.WordArray,i=n.Hasher,s=t.x64.Word,a=t.algo,l=[],c=[],u=[];!function(){for(var e=1,t=0,n=0;n<24;n++){l[e+5*t]=(n+1)*(n+2)/2%64;var r=(2*e+3*t)%5;e=t%5,t=r}for(e=0;e<5;e++)for(t=0;t<5;t++)c[e+5*t]=t+(2*e+3*t)%5*5;for(var o=1,i=0;i<24;i++){for(var a=0,d=0,h=0;h<7;h++){if(1&o){var f=(1<>>24)|4278255360&(i<<24|i>>>8),s=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8),(k=n[o]).high^=s,k.low^=i}for(var a=0;a<24;a++){for(var h=0;h<5;h++){for(var f=0,p=0,g=0;g<5;g++)f^=(k=n[h+5*g]).high,p^=k.low;var m=d[h];m.high=f,m.low=p}for(h=0;h<5;h++){var v=d[(h+4)%5],y=d[(h+1)%5],b=y.high,_=y.low;for(f=v.high^(b<<1|_>>>31),p=v.low^(_<<1|b>>>31),g=0;g<5;g++)(k=n[h+5*g]).high^=f,k.low^=p}for(var w=1;w<25;w++){var S=(k=n[w]).high,x=k.low,E=l[w];E<32?(f=S<>>32-E,p=x<>>32-E):(f=x<>>64-E,p=S<>>64-E);var T=d[c[w]];T.high=f,T.low=p}var C=d[0],M=n[0];for(C.high=M.high,C.low=M.low,h=0;h<5;h++)for(g=0;g<5;g++){var k=n[w=h+5*g],A=d[w],D=d[(h+1)%5+5*g],O=d[(h+2)%5+5*g];k.high=A.high^~D.high&O.high,k.low=A.low^~D.low&O.low}k=n[0];var I=u[a];k.high^=I.high,k.low^=I.low}},_doFinalize:function(){var t=this._data,n=t.words;this._nDataBytes;var r=8*t.sigBytes,i=32*this.blockSize;n[r>>>5]|=1<<24-r%32,n[(e.ceil((r+1)/i)*i>>>5)-1]|=128,t.sigBytes=4*n.length,this._process();for(var s=this._state,a=this.cfg.outputLength/8,l=a/8,c=[],u=0;u>>24)|4278255360&(h<<24|h>>>8),f=16711935&(f<<8|f>>>24)|4278255360&(f<<24|f>>>8),c.push(f),c.push(h)}return new o.init(c,a)},clone:function(){for(var e=i.clone.call(this),t=e._state=this._state.slice(0),n=0;n<25;n++)t[n]=t[n].clone();return e}});t.SHA3=i._createHelper(h),t.HmacSHA3=i._createHmacHelper(h)}(Math),r.SHA3)},7460:function(e,t,n){var r,o,i,s,a,l,c,u;e.exports=(u=n(8249),n(4938),n(34),o=(r=u).x64,i=o.Word,s=o.WordArray,a=r.algo,l=a.SHA512,c=a.SHA384=l.extend({_doReset:function(){this._hash=new s.init([new i.init(3418070365,3238371032),new i.init(1654270250,914150663),new i.init(2438529370,812702999),new i.init(355462360,4144912697),new i.init(1731405415,4290775857),new i.init(2394180231,1750603025),new i.init(3675008525,1694076839),new i.init(1203062813,3204075428)])},_doFinalize:function(){var e=l._doFinalize.call(this);return e.sigBytes-=16,e}}),r.SHA384=l._createHelper(c),r.HmacSHA384=l._createHmacHelper(c),u.SHA384)},34:function(e,t,n){var r;e.exports=(r=n(8249),n(4938),function(){var e=r,t=e.lib.Hasher,n=e.x64,o=n.Word,i=n.WordArray,s=e.algo;function a(){return o.create.apply(o,arguments)}var l=[a(1116352408,3609767458),a(1899447441,602891725),a(3049323471,3964484399),a(3921009573,2173295548),a(961987163,4081628472),a(1508970993,3053834265),a(2453635748,2937671579),a(2870763221,3664609560),a(3624381080,2734883394),a(310598401,1164996542),a(607225278,1323610764),a(1426881987,3590304994),a(1925078388,4068182383),a(2162078206,991336113),a(2614888103,633803317),a(3248222580,3479774868),a(3835390401,2666613458),a(4022224774,944711139),a(264347078,2341262773),a(604807628,2007800933),a(770255983,1495990901),a(1249150122,1856431235),a(1555081692,3175218132),a(1996064986,2198950837),a(2554220882,3999719339),a(2821834349,766784016),a(2952996808,2566594879),a(3210313671,3203337956),a(3336571891,1034457026),a(3584528711,2466948901),a(113926993,3758326383),a(338241895,168717936),a(666307205,1188179964),a(773529912,1546045734),a(1294757372,1522805485),a(1396182291,2643833823),a(1695183700,2343527390),a(1986661051,1014477480),a(2177026350,1206759142),a(2456956037,344077627),a(2730485921,1290863460),a(2820302411,3158454273),a(3259730800,3505952657),a(3345764771,106217008),a(3516065817,3606008344),a(3600352804,1432725776),a(4094571909,1467031594),a(275423344,851169720),a(430227734,3100823752),a(506948616,1363258195),a(659060556,3750685593),a(883997877,3785050280),a(958139571,3318307427),a(1322822218,3812723403),a(1537002063,2003034995),a(1747873779,3602036899),a(1955562222,1575990012),a(2024104815,1125592928),a(2227730452,2716904306),a(2361852424,442776044),a(2428436474,593698344),a(2756734187,3733110249),a(3204031479,2999351573),a(3329325298,3815920427),a(3391569614,3928383900),a(3515267271,566280711),a(3940187606,3454069534),a(4118630271,4000239992),a(116418474,1914138554),a(174292421,2731055270),a(289380356,3203993006),a(460393269,320620315),a(685471733,587496836),a(852142971,1086792851),a(1017036298,365543100),a(1126000580,2618297676),a(1288033470,3409855158),a(1501505948,4234509866),a(1607167915,987167468),a(1816402316,1246189591)],c=[];!function(){for(var e=0;e<80;e++)c[e]=a()}();var u=s.SHA512=t.extend({_doReset:function(){this._hash=new i.init([new o.init(1779033703,4089235720),new o.init(3144134277,2227873595),new o.init(1013904242,4271175723),new o.init(2773480762,1595750129),new o.init(1359893119,2917565137),new o.init(2600822924,725511199),new o.init(528734635,4215389547),new o.init(1541459225,327033209)])},_doProcessBlock:function(e,t){for(var n=this._hash.words,r=n[0],o=n[1],i=n[2],s=n[3],a=n[4],u=n[5],d=n[6],h=n[7],f=r.high,p=r.low,g=o.high,m=o.low,v=i.high,y=i.low,b=s.high,_=s.low,w=a.high,S=a.low,x=u.high,E=u.low,T=d.high,C=d.low,M=h.high,k=h.low,A=f,D=p,O=g,I=m,P=v,B=y,R=b,L=_,N=w,$=S,z=x,j=E,V=T,H=C,F=M,q=k,U=0;U<80;U++){var W,K,Y=c[U];if(U<16)K=Y.high=0|e[t+2*U],W=Y.low=0|e[t+2*U+1];else{var X=c[U-15],G=X.high,J=X.low,Z=(G>>>1|J<<31)^(G>>>8|J<<24)^G>>>7,Q=(J>>>1|G<<31)^(J>>>8|G<<24)^(J>>>7|G<<25),ee=c[U-2],te=ee.high,ne=ee.low,re=(te>>>19|ne<<13)^(te<<3|ne>>>29)^te>>>6,oe=(ne>>>19|te<<13)^(ne<<3|te>>>29)^(ne>>>6|te<<26),ie=c[U-7],se=ie.high,ae=ie.low,le=c[U-16],ce=le.high,ue=le.low;K=(K=(K=Z+se+((W=Q+ae)>>>0>>0?1:0))+re+((W+=oe)>>>0>>0?1:0))+ce+((W+=ue)>>>0>>0?1:0),Y.high=K,Y.low=W}var de,he=N&z^~N&V,fe=$&j^~$&H,pe=A&O^A&P^O&P,ge=D&I^D&B^I&B,me=(A>>>28|D<<4)^(A<<30|D>>>2)^(A<<25|D>>>7),ve=(D>>>28|A<<4)^(D<<30|A>>>2)^(D<<25|A>>>7),ye=(N>>>14|$<<18)^(N>>>18|$<<14)^(N<<23|$>>>9),be=($>>>14|N<<18)^($>>>18|N<<14)^($<<23|N>>>9),_e=l[U],we=_e.high,Se=_e.low,xe=F+ye+((de=q+be)>>>0>>0?1:0),Ee=ve+ge;F=V,q=H,V=z,H=j,z=N,j=$,N=R+(xe=(xe=(xe=xe+he+((de+=fe)>>>0>>0?1:0))+we+((de+=Se)>>>0>>0?1:0))+K+((de+=W)>>>0>>0?1:0))+(($=L+de|0)>>>0>>0?1:0)|0,R=P,L=B,P=O,B=I,O=A,I=D,A=xe+(me+pe+(Ee>>>0>>0?1:0))+((D=de+Ee|0)>>>0>>0?1:0)|0}p=r.low=p+D,r.high=f+A+(p>>>0>>0?1:0),m=o.low=m+I,o.high=g+O+(m>>>0>>0?1:0),y=i.low=y+B,i.high=v+P+(y>>>0>>0?1:0),_=s.low=_+L,s.high=b+R+(_>>>0>>0?1:0),S=a.low=S+$,a.high=w+N+(S>>>0<$>>>0?1:0),E=u.low=E+j,u.high=x+z+(E>>>0>>0?1:0),C=d.low=C+H,d.high=T+V+(C>>>0>>0?1:0),k=h.low=k+q,h.high=M+F+(k>>>0>>0?1:0)},_doFinalize:function(){var e=this._data,t=e.words,n=8*this._nDataBytes,r=8*e.sigBytes;return t[r>>>5]|=128<<24-r%32,t[30+(r+128>>>10<<5)]=Math.floor(n/4294967296),t[31+(r+128>>>10<<5)]=n,e.sigBytes=4*t.length,this._process(),this._hash.toX32()},clone:function(){var e=t.clone.call(this);return e._hash=this._hash.clone(),e},blockSize:32});e.SHA512=t._createHelper(u),e.HmacSHA512=t._createHmacHelper(u)}(),r.SHA512)},4253:function(e,t,n){var r;e.exports=(r=n(8249),n(8269),n(8214),n(888),n(5109),function(){var e=r,t=e.lib,n=t.WordArray,o=t.BlockCipher,i=e.algo,s=[57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,7,62,54,46,38,30,22,14,6,61,53,45,37,29,21,13,5,28,20,12,4],a=[14,17,11,24,1,5,3,28,15,6,21,10,23,19,12,4,26,8,16,7,27,20,13,2,41,52,31,37,47,55,30,40,51,45,33,48,44,49,39,56,34,53,46,42,50,36,29,32],l=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],c=[{0:8421888,268435456:32768,536870912:8421378,805306368:2,1073741824:512,1342177280:8421890,1610612736:8389122,1879048192:8388608,2147483648:514,2415919104:8389120,2684354560:33280,2952790016:8421376,3221225472:32770,3489660928:8388610,3758096384:0,4026531840:33282,134217728:0,402653184:8421890,671088640:33282,939524096:32768,1207959552:8421888,1476395008:512,1744830464:8421378,2013265920:2,2281701376:8389120,2550136832:33280,2818572288:8421376,3087007744:8389122,3355443200:8388610,3623878656:32770,3892314112:514,4160749568:8388608,1:32768,268435457:2,536870913:8421888,805306369:8388608,1073741825:8421378,1342177281:33280,1610612737:512,1879048193:8389122,2147483649:8421890,2415919105:8421376,2684354561:8388610,2952790017:33282,3221225473:514,3489660929:8389120,3758096385:32770,4026531841:0,134217729:8421890,402653185:8421376,671088641:8388608,939524097:512,1207959553:32768,1476395009:8388610,1744830465:2,2013265921:33282,2281701377:32770,2550136833:8389122,2818572289:514,3087007745:8421888,3355443201:8389120,3623878657:0,3892314113:33280,4160749569:8421378},{0:1074282512,16777216:16384,33554432:524288,50331648:1074266128,67108864:1073741840,83886080:1074282496,100663296:1073758208,117440512:16,134217728:540672,150994944:1073758224,167772160:1073741824,184549376:540688,201326592:524304,218103808:0,234881024:16400,251658240:1074266112,8388608:1073758208,25165824:540688,41943040:16,58720256:1073758224,75497472:1074282512,92274688:1073741824,109051904:524288,125829120:1074266128,142606336:524304,159383552:0,176160768:16384,192937984:1074266112,209715200:1073741840,226492416:540672,243269632:1074282496,260046848:16400,268435456:0,285212672:1074266128,301989888:1073758224,318767104:1074282496,335544320:1074266112,352321536:16,369098752:540688,385875968:16384,402653184:16400,419430400:524288,436207616:524304,452984832:1073741840,469762048:540672,486539264:1073758208,503316480:1073741824,520093696:1074282512,276824064:540688,293601280:524288,310378496:1074266112,327155712:16384,343932928:1073758208,360710144:1074282512,377487360:16,394264576:1073741824,411041792:1074282496,427819008:1073741840,444596224:1073758224,461373440:524304,478150656:0,494927872:16400,511705088:1074266128,528482304:540672},{0:260,1048576:0,2097152:67109120,3145728:65796,4194304:65540,5242880:67108868,6291456:67174660,7340032:67174400,8388608:67108864,9437184:67174656,10485760:65792,11534336:67174404,12582912:67109124,13631488:65536,14680064:4,15728640:256,524288:67174656,1572864:67174404,2621440:0,3670016:67109120,4718592:67108868,5767168:65536,6815744:65540,7864320:260,8912896:4,9961472:256,11010048:67174400,12058624:65796,13107200:65792,14155776:67109124,15204352:67174660,16252928:67108864,16777216:67174656,17825792:65540,18874368:65536,19922944:67109120,20971520:256,22020096:67174660,23068672:67108868,24117248:0,25165824:67109124,26214400:67108864,27262976:4,28311552:65792,29360128:67174400,30408704:260,31457280:65796,32505856:67174404,17301504:67108864,18350080:260,19398656:67174656,20447232:0,21495808:65540,22544384:67109120,23592960:256,24641536:67174404,25690112:65536,26738688:67174660,27787264:65796,28835840:67108868,29884416:67109124,30932992:67174400,31981568:4,33030144:65792},{0:2151682048,65536:2147487808,131072:4198464,196608:2151677952,262144:0,327680:4198400,393216:2147483712,458752:4194368,524288:2147483648,589824:4194304,655360:64,720896:2147487744,786432:2151678016,851968:4160,917504:4096,983040:2151682112,32768:2147487808,98304:64,163840:2151678016,229376:2147487744,294912:4198400,360448:2151682112,425984:0,491520:2151677952,557056:4096,622592:2151682048,688128:4194304,753664:4160,819200:2147483648,884736:4194368,950272:4198464,1015808:2147483712,1048576:4194368,1114112:4198400,1179648:2147483712,1245184:0,1310720:4160,1376256:2151678016,1441792:2151682048,1507328:2147487808,1572864:2151682112,1638400:2147483648,1703936:2151677952,1769472:4198464,1835008:2147487744,1900544:4194304,1966080:64,2031616:4096,1081344:2151677952,1146880:2151682112,1212416:0,1277952:4198400,1343488:4194368,1409024:2147483648,1474560:2147487808,1540096:64,1605632:2147483712,1671168:4096,1736704:2147487744,1802240:2151678016,1867776:4160,1933312:2151682048,1998848:4194304,2064384:4198464},{0:128,4096:17039360,8192:262144,12288:536870912,16384:537133184,20480:16777344,24576:553648256,28672:262272,32768:16777216,36864:537133056,40960:536871040,45056:553910400,49152:553910272,53248:0,57344:17039488,61440:553648128,2048:17039488,6144:553648256,10240:128,14336:17039360,18432:262144,22528:537133184,26624:553910272,30720:536870912,34816:537133056,38912:0,43008:553910400,47104:16777344,51200:536871040,55296:553648128,59392:16777216,63488:262272,65536:262144,69632:128,73728:536870912,77824:553648256,81920:16777344,86016:553910272,90112:537133184,94208:16777216,98304:553910400,102400:553648128,106496:17039360,110592:537133056,114688:262272,118784:536871040,122880:0,126976:17039488,67584:553648256,71680:16777216,75776:17039360,79872:537133184,83968:536870912,88064:17039488,92160:128,96256:553910272,100352:262272,104448:553910400,108544:0,112640:553648128,116736:16777344,120832:262144,124928:537133056,129024:536871040},{0:268435464,256:8192,512:270532608,768:270540808,1024:268443648,1280:2097152,1536:2097160,1792:268435456,2048:0,2304:268443656,2560:2105344,2816:8,3072:270532616,3328:2105352,3584:8200,3840:270540800,128:270532608,384:270540808,640:8,896:2097152,1152:2105352,1408:268435464,1664:268443648,1920:8200,2176:2097160,2432:8192,2688:268443656,2944:270532616,3200:0,3456:270540800,3712:2105344,3968:268435456,4096:268443648,4352:270532616,4608:270540808,4864:8200,5120:2097152,5376:268435456,5632:268435464,5888:2105344,6144:2105352,6400:0,6656:8,6912:270532608,7168:8192,7424:268443656,7680:270540800,7936:2097160,4224:8,4480:2105344,4736:2097152,4992:268435464,5248:268443648,5504:8200,5760:270540808,6016:270532608,6272:270540800,6528:270532616,6784:8192,7040:2105352,7296:2097160,7552:0,7808:268435456,8064:268443656},{0:1048576,16:33555457,32:1024,48:1049601,64:34604033,80:0,96:1,112:34603009,128:33555456,144:1048577,160:33554433,176:34604032,192:34603008,208:1025,224:1049600,240:33554432,8:34603009,24:0,40:33555457,56:34604032,72:1048576,88:33554433,104:33554432,120:1025,136:1049601,152:33555456,168:34603008,184:1048577,200:1024,216:34604033,232:1,248:1049600,256:33554432,272:1048576,288:33555457,304:34603009,320:1048577,336:33555456,352:34604032,368:1049601,384:1025,400:34604033,416:1049600,432:1,448:0,464:34603008,480:33554433,496:1024,264:1049600,280:33555457,296:34603009,312:1,328:33554432,344:1048576,360:1025,376:34604032,392:33554433,408:34603008,424:0,440:34604033,456:1049601,472:1024,488:33555456,504:1048577},{0:134219808,1:131072,2:134217728,3:32,4:131104,5:134350880,6:134350848,7:2048,8:134348800,9:134219776,10:133120,11:134348832,12:2080,13:0,14:134217760,15:133152,2147483648:2048,2147483649:134350880,2147483650:134219808,2147483651:134217728,2147483652:134348800,2147483653:133120,2147483654:133152,2147483655:32,2147483656:134217760,2147483657:2080,2147483658:131104,2147483659:134350848,2147483660:0,2147483661:134348832,2147483662:134219776,2147483663:131072,16:133152,17:134350848,18:32,19:2048,20:134219776,21:134217760,22:134348832,23:131072,24:0,25:131104,26:134348800,27:134219808,28:134350880,29:133120,30:2080,31:134217728,2147483664:131072,2147483665:2048,2147483666:134348832,2147483667:133152,2147483668:32,2147483669:134348800,2147483670:134217728,2147483671:134219808,2147483672:134350880,2147483673:134217760,2147483674:134219776,2147483675:0,2147483676:133120,2147483677:2080,2147483678:131104,2147483679:134350848}],u=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],d=i.DES=o.extend({_doReset:function(){for(var e=this._key.words,t=[],n=0;n<56;n++){var r=s[n]-1;t[n]=e[r>>>5]>>>31-r%32&1}for(var o=this._subKeys=[],i=0;i<16;i++){var c=o[i]=[],u=l[i];for(n=0;n<24;n++)c[n/6|0]|=t[(a[n]-1+u)%28]<<31-n%6,c[4+(n/6|0)]|=t[28+(a[n+24]-1+u)%28]<<31-n%6;for(c[0]=c[0]<<1|c[0]>>>31,n=1;n<7;n++)c[n]=c[n]>>>4*(n-1)+3;c[7]=c[7]<<5|c[7]>>>27}var d=this._invSubKeys=[];for(n=0;n<16;n++)d[n]=o[15-n]},encryptBlock:function(e,t){this._doCryptBlock(e,t,this._subKeys)},decryptBlock:function(e,t){this._doCryptBlock(e,t,this._invSubKeys)},_doCryptBlock:function(e,t,n){this._lBlock=e[t],this._rBlock=e[t+1],h.call(this,4,252645135),h.call(this,16,65535),f.call(this,2,858993459),f.call(this,8,16711935),h.call(this,1,1431655765);for(var r=0;r<16;r++){for(var o=n[r],i=this._lBlock,s=this._rBlock,a=0,l=0;l<8;l++)a|=c[l][((s^o[l])&u[l])>>>0];this._lBlock=s,this._rBlock=i^a}var d=this._lBlock;this._lBlock=this._rBlock,this._rBlock=d,h.call(this,1,1431655765),f.call(this,8,16711935),f.call(this,2,858993459),h.call(this,16,65535),h.call(this,4,252645135),e[t]=this._lBlock,e[t+1]=this._rBlock},keySize:2,ivSize:2,blockSize:2});function h(e,t){var n=(this._lBlock>>>e^this._rBlock)&t;this._rBlock^=n,this._lBlock^=n<>>e^this._lBlock)&t;this._lBlock^=n,this._rBlock^=n<192.");var t=e.slice(0,2),r=e.length<4?e.slice(0,2):e.slice(2,4),o=e.length<6?e.slice(0,2):e.slice(4,6);this._des1=d.createEncryptor(n.create(t)),this._des2=d.createEncryptor(n.create(r)),this._des3=d.createEncryptor(n.create(o))},encryptBlock:function(e,t){this._des1.encryptBlock(e,t),this._des2.decryptBlock(e,t),this._des3.encryptBlock(e,t)},decryptBlock:function(e,t){this._des3.decryptBlock(e,t),this._des2.encryptBlock(e,t),this._des1.decryptBlock(e,t)},keySize:6,ivSize:2,blockSize:2});e.TripleDES=o._createHelper(p)}(),r.TripleDES)},4938:function(e,t,n){var r,o,i,s,a,l,c;e.exports=(c=n(8249),i=(o=c).lib,s=i.Base,a=i.WordArray,(l=o.x64={}).Word=s.extend({init:function(e,t){this.high=e,this.low=t}}),l.WordArray=s.extend({init:function(e,t){e=this.words=e||[],this.sigBytes=t!=r?t:8*e.length},toX32:function(){for(var e=this.words,t=e.length,n=[],r=0;r{var n;Object.defineProperty(t,"__esModule",{value:!0}),t.ErrorCode=void 0,(n=t.ErrorCode||(t.ErrorCode={}))[n.SUCCESS=0]="SUCCESS",n[n.CLIENT_ID_NOT_FOUND=1]="CLIENT_ID_NOT_FOUND",n[n.OPERATION_TOO_OFTEN=2]="OPERATION_TOO_OFTEN",n[n.REPEAT_MESSAGE=3]="REPEAT_MESSAGE",n[n.TIME_OUT=4]="TIME_OUT"},9021:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};const o=r(n(6893)),i=r(n(7555)),s=r(n(6379)),a=r(n(529));var l,c;(c=l||(l={})).setDebugMode=function(e){a.default.debugMode=e,a.default.info(`setDebugMode: ${e}`)},c.init=function(e){try{i.default.init(e)}catch(t){a.default.error("init error",t)}},c.setSocketServer=function(e){try{if(!e.url)throw new Error("invalid url");if(!e.key||!e.keyId)throw new Error("invalid key or keyId");s.default.socketUrl=e.url,s.default.publicKeyId=e.keyId,s.default.publicKey=e.key}catch(t){a.default.error("setSocketServer error",t)}},c.enableSocket=function(e){try{i.default.enableSocket(e)}catch(t){a.default.error("enableSocket error",t)}},c.getVersion=function(){return o.default.SDK_VERSION},e.exports=l},9478:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(529)),i=r(n(496)),s=r(n(3555)),a=r(n(1929)),l=r(n(4379)),c=r(n(6899)),u=r(n(776)),d=r(n(2002)),h=r(n(5807)),f=r(n(9704)),p=r(n(6545)),g=r(n(3680)),m=r(n(7706)),v=r(n(4486)),y=r(n(5867)),b=r(n(7006));var _;!function(e){let t,n,r;function _(){let e;try{"undefined"!=typeof uni?(t=new p.default,n=new g.default,r=new m.default):"undefined"!=typeof tt?(t=new d.default,n=new h.default,r=new f.default):"undefined"!=typeof my?(t=new i.default,n=new s.default,r=new a.default):"undefined"!=typeof wx?(t=new v.default,n=new y.default,r=new b.default):"undefined"!=typeof window&&(t=new l.default,n=new c.default,r=new u.default)}catch(_){o.default.error(`init am error: ${_}`),e=_}if(t&&n&&r||"undefined"!=typeof window&&(t=new l.default,n=new c.default,r=new u.default),!t||!n||!r)throw new Error(`init am error: no api impl found, ${e}`)}e.getDevice=function(){return t||_(),t},e.getStorage=function(){return n||_(),n},e.getWebSocket=function(){return r||_(),r}}(_||(_={})),t.default=_},4685:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(9478));var i,s;(s=i||(i={})).os=function(){return o.default.getDevice().os()},s.osVersion=function(){return o.default.getDevice().osVersion()},s.model=function(){return o.default.getDevice().model()},s.brand=function(){return o.default.getDevice().brand()},s.platform=function(){return o.default.getDevice().platform()},s.platformVersion=function(){return o.default.getDevice().platformVersion()},s.platformId=function(){return o.default.getDevice().platformId()},s.language=function(){return o.default.getDevice().language()},s.userAgent=function(){let e=o.default.getDevice().userAgent;return e?e():""},s.getNetworkType=function(e){o.default.getDevice().getNetworkType(e)},s.onNetworkStatusChange=function(e){o.default.getDevice().onNetworkStatusChange(e)},t.default=i},7002:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(6379)),i=r(n(1386)),s=r(n(4054)),a=n(2918),l=r(n(7167)),c=r(n(529)),u=r(n(9478)),d=r(n(8506));var h;!function(e){let t,n=!1,r=!1,h=!1,f=[],p=0;function g(){return n&&r}function m(t=0){e.allowReconnect&&b()&&setTimeout((function(){v()}),t)}function v(){if(e.allowReconnect=!0,!b())return;if(!function(){var e=f.length;let t=(new Date).getTime();if(e>0)for(var n=e-1;n>=0;n--)if(t-f[n]>5e3){f.splice(0,n+1);break}return e=f.length,f.push(t),!(e>=10&&(c.default.error("connect failed, connection limit reached"),1))}())return;h=!0;let n=o.default.socketUrl;try{let e=d.default.getSync(d.default.KEY_REDIRECT_SERVER,"");if(e){let t=a.RedirectServerData.parse(e),r=t.addressList[0].split(","),o=r[0],i=Number(r[1]);(new Date).getTime()-t.time<1e3*i&&(n=o)}}catch(i){}t=u.default.getWebSocket().connect({url:n,success:function(){r=!0,y()},fail:function(){r=!1,w(),m(100)}}),t.onOpen(S),t.onClose(T),t.onError(E),t.onMessage(x)}function y(){r&&n&&(h=!1,i.default.create().send(),l.default.getInstance().start())}function b(){return o.default.networkConnected?h?(c.default.warn("connecting"),!1):!g()||(c.default.warn("already connected"),!1):(c.default.error("connect failed, network is not available"),!1)}function _(e=""){null==t||t.close({code:1e3,reason:e,success:function(e){},fail:function(e){}}),w()}function w(e){var t;r=!1,n=!1,h=!1,l.default.getInstance().cancel(),o.default.online&&(o.default.online=!1,null===(t=o.default.onlineState)||void 0===t||t.call(o.default.onlineState,{online:o.default.online}))}e.allowReconnect=!0,e.isAvailable=g,e.enableSocket=function(t){let n=(new Date).getTime();n-p<1e3?c.default.warn(`enableSocket ${t} fail: this function can only be called once a second`):(p=n,e.allowReconnect=t,t?e.reconnect(10):e.close(`enableSocket ${t}`))},e.reconnect=m,e.connect=v,e.close=_,e.send=function(e){if(!n||!n)throw new Error("socket not connect");null==t||t.send({data:e,success:function(e){},fail:function(e){}})};let S=function(e){n=!0,y()},x=function(e){try{e.data,l.default.getInstance().refresh(),s.default.receiveMessage(e.data)}catch(t){}},E=function(e){_("socket error")},T=function(e){w()}}(h||(h={})),t.default=h},8506:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(9478));var i,s;(s=i||(i={})).KEY_APPID="getui_appid",s.KEY_CID="getui_cid",s.KEY_SESSION="getui_session",s.KEY_REGID="getui_regid",s.KEY_SOCKET_URL="getui_socket_url",s.KEY_DEVICE_ID="getui_deviceid",s.KEY_ADD_PHONE_INFO_TIME="getui_api_time",s.KEY_BIND_ALIAS_TIME="getui_ba_time",s.KEY_SET_TAG_TIME="getui_st_time",s.KEY_REDIRECT_SERVER="getui_redirect_server",s.KEY_LAST_CONNECT_TIME="getui_last_connect_time",s.set=function(e){o.default.getStorage().set(e)},s.setSync=function(e,t){o.default.getStorage().setSync(e,t)},s.get=function(e){o.default.getStorage().get(e)},s.getSync=function(e,t){let n=o.default.getStorage().getSync(e);return n||t},t.default=i},496:function(e,t,n){const r=(this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}})(n(3854));e.exports=class{constructor(){this.systemInfo=my.getSystemInfoSync()}os(){return r.default.getStr(this.systemInfo,"platform")}osVersion(){return r.default.getStr(this.systemInfo,"system")}model(){return r.default.getStr(this.systemInfo,"model")}brand(){return r.default.getStr(this.systemInfo,"brand")}platform(){return"MP-ALIPAY"}platformVersion(){return r.default.getStr(this.systemInfo,"app")+" "+r.default.getStr(this.systemInfo,"version")}platformId(){return my.getAppIdSync()}language(){return r.default.getStr(this.systemInfo,"language")}getNetworkType(e){my.getNetworkType({success:t=>{var n;null===(n=e.success)||void 0===n||n.call(e.success,{networkType:t.networkType})},fail:()=>{var t;null===(t=e.fail)||void 0===t||t.call(e.fail,"")}})}onNetworkStatusChange(e){my.onNetworkStatusChange(e)}}},3555:e=>{e.exports=class{set(e){my.setStorage({key:e.key,data:e.data,success:e.success,fail:e.fail})}setSync(e,t){my.setStorageSync({key:e,data:t})}get(e){my.getStorage({key:e.key,success:e.success,fail:e.fail,complete:e.complete})}getSync(e){return my.getStorageSync({key:e}).data}}},1929:e=>{e.exports=class{connect(e){return my.connectSocket({url:e.url,header:e.header,method:e.method,success:e.success,fail:e.fail,complete:e.complete}),{onOpen:my.onSocketOpen,send:my.sendSocketMessage,onMessage:e=>{my.onSocketMessage.call(my.onSocketMessage,(t=>{e.call(e,{data:t?t.data:""})}))},onError:my.onSocketError,onClose:my.onSocketClose,close:my.closeSocket}}}},4379:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.default=class{os(){let e=window.navigator.userAgent.toLowerCase();return e.indexOf("android")>0||e.indexOf("adr")>0?"android":e.match(/\(i[^;]+;( u;)? cpu.+mac os x/)?"ios":e.indexOf("windows")>0||e.indexOf("win32")>0||e.indexOf("win64")>0?"windows":e.indexOf("macintosh")>0||e.indexOf("mac os")>0?"mac os":e.indexOf("linux")>0||e.indexOf("unix")>0?"linux":"other"}osVersion(){let e=window.navigator.userAgent.toLowerCase(),t=e.substring(e.indexOf(";")+1).trim();return t.indexOf(";")>0?t.substring(0,t.indexOf(";")).trim():t.substring(0,t.indexOf(")")).trim()}model(){return""}brand(){return""}platform(){return"H5"}platformVersion(){return""}platformId(){return""}language(){return window.navigator.language}userAgent(){return window.navigator.userAgent}getNetworkType(e){var t;null===(t=e.success)||void 0===t||t.call(e.success,{networkType:window.navigator.onLine?"unknown":"none"})}onNetworkStatusChange(e){}}},6899:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.default=class{set(e){var t;window.localStorage.setItem(e.key,e.data),null===(t=e.success)||void 0===t||t.call(e.success,"")}setSync(e,t){window.localStorage.setItem(e,t)}get(e){var t;let n=window.localStorage.getItem(e.key);null===(t=e.success)||void 0===t||t.call(e.success,n)}getSync(e){return window.localStorage.getItem(e)}}},776:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.default=class{connect(e){let t=new WebSocket(e.url);return{send:e=>{var n,r;try{t.send(e.data),null===(n=e.success)||void 0===n||n.call(e.success,{errMsg:""})}catch(o){null===(r=e.fail)||void 0===r||r.call(e.fail,{errMsg:o+""})}},close:e=>{var n,r;try{t.close(e.code,e.reason),null===(n=e.success)||void 0===n||n.call(e.success,{errMsg:""})}catch(o){null===(r=e.fail)||void 0===r||r.call(e.fail,{errMsg:o+""})}},onOpen:n=>{t.onopen=t=>{var r;null===(r=e.success)||void 0===r||r.call(e.success,""),n({header:""})}},onError:n=>{t.onerror=t=>{var r;null===(r=e.fail)||void 0===r||r.call(e.fail,""),n({errMsg:""})}},onMessage:e=>{t.onmessage=t=>{e({data:t.data})}},onClose:e=>{t.onclose=t=>{e(t)}}}}}},2002:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(3854));t.default=class{constructor(){this.systemInfo=tt.getSystemInfoSync()}os(){return o.default.getStr(this.systemInfo,"platform")}osVersion(){return o.default.getStr(this.systemInfo,"system")}model(){return o.default.getStr(this.systemInfo,"model")}brand(){return o.default.getStr(this.systemInfo,"brand")}platform(){return"MP-TOUTIAO"}platformVersion(){return o.default.getStr(this.systemInfo,"appName")+" "+o.default.getStr(this.systemInfo,"version")}language(){return""}platformId(){return""}getNetworkType(e){tt.getNetworkType(e)}onNetworkStatusChange(e){tt.onNetworkStatusChange(e)}}},5807:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.default=class{set(e){tt.setStorage(e)}setSync(e,t){tt.setStorageSync(e,t)}get(e){tt.getStorage(e)}getSync(e){return tt.getStorageSync(e)}}},9704:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.default=class{connect(e){let t=tt.connectSocket({url:e.url,header:e.header,protocols:e.protocols,success:e.success,fail:e.fail,complete:e.complete});return{onOpen:t.onOpen,send:t.send,onMessage:t.onMessage,onError:t.onError,onClose:t.onClose,close:t.close}}}},6545:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(3854));t.default=class{constructor(){try{this.systemInfo=Bm(),this.accountInfo=uni.getAccountInfoSync()}catch(e){}}os(){return o.default.getStr(this.systemInfo,"platform")}model(){return o.default.getStr(this.systemInfo,"model")}brand(){return o.default.getStr(this.systemInfo,"brand")}osVersion(){return o.default.getStr(this.systemInfo,"system")}platform(){let e="";return e="H5","H5"}platformVersion(){return this.systemInfo?this.systemInfo.version:""}platformId(){return this.accountInfo?this.accountInfo.miniProgram.appId:""}language(){var e;return(null===(e=this.systemInfo)||void 0===e?void 0:e.language)?this.systemInfo.language:""}userAgent(){return window?window.navigator.userAgent:""}getNetworkType(e){zm(e)}onNetworkStatusChange(e){$m(e)}}},3680:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.default=class{set(e){Km(e)}setSync(e,t){Wm(e,t)}get(e){Gm(e)}getSync(e){return Xm(e)}}},7706:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.default=class{connect(e){let t=_v(e);return{send:e=>{null==t||t.send(e)},close:e=>{null==t||t.close(e)},onOpen:e=>{null==t||t.onOpen(e)},onError:e=>{null==t||t.onError(e)},onMessage:e=>{null==t||t.onMessage(e)},onClose:e=>{null==t||t.onClose(e)}}}}},4486:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(3854));t.default=class{constructor(){this.systemInfo=Bm()}os(){return o.default.getStr(this.systemInfo,"platform")}osVersion(){return o.default.getStr(this.systemInfo,"system")}model(){return o.default.getStr(this.systemInfo,"model")}brand(){return o.default.getStr(this.systemInfo,"brand")}platform(){return"MP-WEIXIN"}platformVersion(){return o.default.getStr(this.systemInfo,"version")}language(){return o.default.getStr(this.systemInfo,"language")}platformId(){return Wh("getAccountInfoSync")?wx.getAccountInfoSync().miniProgram.appId:""}getNetworkType(e){zm({success:t=>{var n;null===(n=e.success)||void 0===n||n.call(e.success,{networkType:t.networkType})},fail:e.fail})}onNetworkStatusChange(e){$m(e)}}},5867:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.default=class{set(e){Km(e)}setSync(e,t){Wm(e,t)}get(e){Gm(e)}getSync(e){return Xm(e)}}},7006:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.default=class{connect(e){let t=_v({url:e.url,header:e.header,protocols:e.protocols,success:e.success,fail:e.fail,complete:e.complete});return{onOpen:t.onOpen,send:t.send,onMessage:t.onMessage,onError:t.onError,onClose:t.onClose,close:t.close}}}},6893:(e,t)=>{var n,r;Object.defineProperty(t,"__esModule",{value:!0}),(r=n||(n={})).SDK_VERSION="GTMP-2.0.4.dcloud",r.DEFAULT_SOCKET_URL="wss://wshzn.gepush.com:5223/nws",r.SOCKET_PROTOCOL_VERSION="1.0",r.SERVER_PUBLIC_KEY="MHwwDQYJKoZIhvcNAQEBBQADawAwaAJhAJp1rROuvBF7sBSnvLaesj2iFhMcY8aXyLvpnNLKs2wjL3JmEnyr++SlVa35liUlzi83tnAFkn3A9GB7pHBNzawyUkBh8WUhq5bnFIkk2RaDa6+5MpG84DEv52p7RR+aWwIDAQAB",r.SERVER_PUBLIC_KEY_ID="69d747c4b9f641baf4004be4297e9f3b",r.ID_U_2_G=!0,t.default=n},7555:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(7002)),i=r(n(529)),s=r(n(6379));class a{static init(e){var t;if(!this.inited)try{this.checkAppid(e.appid),this.inited=!0,i.default.info(`init: appid=${e.appid}`),s.default.init(e),o.default.connect()}catch(n){throw this.inited=!1,null===(t=e.onError)||void 0===t||t.call(e.onError,{error:n}),n}}static enableSocket(e){this.checkInit(),o.default.enableSocket(e)}static checkInit(){if(!this.inited)throw new Error("not init, please invoke init method firstly")}static checkAppid(e){if(null==e||null==e||""==e.trim())throw new Error(`invalid appid ${e}`)}}a.inited=!1,t.default=a},6379:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(6667)),i=r(n(8506)),s=r(n(6893)),a=r(n(7002)),l=r(n(529)),c=r(n(4685)),u=r(n(2323));class d{static init(e){var t;s.default.ID_U_2_G?this.appid=u.default.to_getui(e.appid):this.appid=e.appid,this.onError=e.onError,this.onClientId=e.onClientId,this.onlineState=e.onlineState,this.onPushMsg=e.onPushMsg,this.appid!=i.default.getSync(i.default.KEY_APPID,this.appid)&&(l.default.info("appid changed, clear session and cid"),i.default.setSync(i.default.KEY_CID,""),i.default.setSync(i.default.KEY_SESSION,"")),i.default.setSync(i.default.KEY_APPID,this.appid),this.cid=i.default.getSync(i.default.KEY_CID,this.cid),this.cid&&(null===(t=this.onClientId)||void 0===t||t.call(this.onClientId,{cid:d.cid})),this.session=i.default.getSync(i.default.KEY_SESSION,this.session),this.deviceId=i.default.getSync(i.default.KEY_DEVICE_ID,this.deviceId),this.regId=i.default.getSync(i.default.KEY_REGID,this.regId),this.regId||(this.regId=this.createRegId(),i.default.set({key:i.default.KEY_REGID,data:this.regId})),this.socketUrl=i.default.getSync(i.default.KEY_SOCKET_URL,this.socketUrl);let n=this;c.default.getNetworkType({success:e=>{n.networkType=e.networkType,n.networkConnected="none"!=n.networkType&&""!=n.networkType}}),c.default.onNetworkStatusChange((e=>{n.networkConnected=e.isConnected,n.networkType=e.networkType,n.networkConnected&&a.default.reconnect(100)}))}static createRegId(){return`M-V${o.default.md5Hex(this.getUuid())}-${(new Date).getTime()}`}static getUuid(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,(function(e){let t=16*Math.random()|0;return("x"===e?t:3&t|8).toString(16)}))}}d.appid="",d.cid="",d.regId="",d.session="",d.deviceId="",d.packetId=1,d.online=!1,d.socketUrl=s.default.DEFAULT_SOCKET_URL,d.publicKeyId=s.default.SERVER_PUBLIC_KEY_ID,d.publicKey=s.default.SERVER_PUBLIC_KEY,d.lastAliasTime=0,d.networkConnected=!0,d.networkType="none",t.default=d},9586:function(e,t,n){var r,o,i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const s=i(n(661)),a=n(4198),l=i(n(6379));class c extends s.default{constructor(){super(...arguments),this.actionMsgData=new u}static initActionMsg(e,...t){return super.initMsg(e),e.command=s.default.Command.CLIENT_MSG,e.data=e.actionMsgData=u.create(),e}static parseActionMsg(e,t){return super.parseMsg(e,t),e.actionMsgData=u.parse(e.data),e}send(){setTimeout((()=>{var e;(c.waitingLoginMsgMap.has(this.actionMsgData.msgId)||c.waitingResponseMsgMap.has(this.actionMsgData.msgId))&&(c.waitingLoginMsgMap.delete(this.actionMsgData.msgId),c.waitingResponseMsgMap.delete(this.actionMsgData.msgId),null===(e=this.callback)||void 0===e||e.call(this.callback,{resultCode:a.ErrorCode.TIME_OUT,message:"waiting time out"}))}),1e4),l.default.online?(this.actionMsgData.msgAction!=c.ClientAction.RECEIVED&&c.waitingResponseMsgMap.set(this.actionMsgData.msgId,this),super.send()):c.waitingLoginMsgMap.set(this.actionMsgData.msgId,this)}receive(){}static sendWaitingMessages(){let e,t=this.waitingLoginMsgMap.keys();for(;e=t.next(),!e.done;){let t=this.waitingLoginMsgMap.get(e.value);this.waitingLoginMsgMap.delete(e.value),null==t||t.send()}}static getWaitingResponseMessage(e){return c.waitingResponseMsgMap.get(e)}static removeWaitingResponseMessage(e){let t=c.waitingResponseMsgMap.get(e);return t&&c.waitingResponseMsgMap.delete(e),t}}c.ServerAction=((r=class{}).PUSH_MESSAGE="pushmessage",r.REDIRECT_SERVER="redirect_server",r.ADD_PHONE_INFO_RESULT="addphoneinfo",r.SET_MODE_RESULT="set_mode_result",r.SET_TAG_RESULT="settag_result",r.BIND_ALIAS_RESULT="response_bind",r.UNBIND_ALIAS_RESULT="response_unbind",r.FEED_BACK_RESULT="pushmessage_feedback",r.RECEIVED="received",r),c.ClientAction=((o=class{}).ADD_PHONE_INFO="addphoneinfo",o.SET_MODE="set_mode",o.FEED_BACK="pushmessage_feedback",o.SET_TAGS="set_tag",o.BIND_ALIAS="bind_alias",o.UNBIND_ALIAS="unbind_alias",o.RECEIVED="received",o),c.waitingLoginMsgMap=new Map,c.waitingResponseMsgMap=new Map;class u{constructor(){this.appId="",this.cid="",this.msgId="",this.msgAction="",this.msgData="",this.msgExtraData=""}static create(){let e=new u;return e.appId=l.default.appid,e.cid=l.default.cid,e.msgId=(2147483647&(new Date).getTime()).toString(),e}static parse(e){let t=new u,n=JSON.parse(e);return t.appId=n.appId,t.cid=n.cid,t.msgId=n.msgId,t.msgAction=n.msgAction,t.msgData=n.msgData,t.msgExtraData=n.msgExtraData,t}}t.default=c},4516:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(4685)),i=r(n(8506)),s=r(n(6893)),a=n(4198),l=r(n(9586)),c=r(n(6379));class u extends l.default{constructor(){super(...arguments),this.addPhoneInfoData=new d}static create(){let e=new u;return super.initActionMsg(e),e.callback=t=>{t.resultCode!=a.ErrorCode.SUCCESS&&t.resultCode!=a.ErrorCode.REPEAT_MESSAGE?setTimeout((function(){e.send()}),3e4):i.default.set({key:i.default.KEY_ADD_PHONE_INFO_TIME,data:(new Date).getTime()})},e.actionMsgData.msgAction=l.default.ClientAction.ADD_PHONE_INFO,e.addPhoneInfoData=d.create(),e.actionMsgData.msgData=JSON.stringify(e.addPhoneInfoData),e}send(){(new Date).getTime()-i.default.getSync(i.default.KEY_ADD_PHONE_INFO_TIME,0)<864e5||super.send()}}class d{constructor(){this.model="",this.brand="",this.system_version="",this.version="",this.deviceid="",this.type=""}static create(){let e=new d;return e.model=o.default.model(),e.brand=o.default.brand(),e.system_version=o.default.osVersion(),e.version=s.default.SDK_VERSION,e.device_token="",e.imei="",e.oaid="",e.mac="",e.idfa="",e.type="MINIPROGRAM",e.deviceid=`${e.type}-${c.default.deviceId}`,e.extra={os:o.default.os(),platform:o.default.platform(),platformVersion:o.default.platformVersion(),platformId:o.default.platformId(),language:o.default.language(),userAgent:o.default.userAgent()},e}}t.default=u},8723:function(e,t,n){var r,o,i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const s=i(n(6379)),a=n(4198),l=i(n(9586));class c extends l.default{constructor(){super(...arguments),this.feedbackData=new u}static create(e,t){let n=new c;return super.initActionMsg(n),n.callback=e=>{e.resultCode!=a.ErrorCode.SUCCESS&&e.resultCode!=a.ErrorCode.REPEAT_MESSAGE&&setTimeout((function(){n.send()}),3e4)},n.feedbackData=u.create(e,t),n.actionMsgData.msgAction=l.default.ClientAction.FEED_BACK,n.actionMsgData.msgData=JSON.stringify(n.feedbackData),n}send(){super.send()}}c.ActionId=((r=class{}).RECEIVE="0",r.MP_RECEIVE="210000",r.WEB_RECEIVE="220000",r.BEGIN="1",r),c.RESULT=((o=class{}).OK="ok",o);class u{constructor(){this.messageid="",this.appkey="",this.appid="",this.taskid="",this.actionid="",this.result="",this.timestamp=""}static create(e,t){let n=new u;return n.messageid=e.pushMessageData.messageid,n.appkey=e.pushMessageData.appKey,n.appid=s.default.appid,n.taskid=e.pushMessageData.taskId,n.actionid=t,n.result=c.RESULT.OK,n.timestamp=(new Date).getTime().toString(),n}}t.default=c},6362:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(661));class i extends o.default{static create(){let e=new i;return super.initMsg(e),e.command=o.default.Command.HEART_BEAT,e}}t.default=i},1386:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(6667)),i=r(n(6379)),s=r(n(661));class a extends s.default{constructor(){super(...arguments),this.keyNegotiateData=new l}static create(){let e=new a;return super.initMsg(e),e.command=s.default.Command.KEY_NEGOTIATE,o.default.resetKey(),e.data=e.keyNegotiateData=l.create(),e}send(){super.send()}}class l{constructor(){this.appId="",this.rsaPublicKeyId="",this.algorithm="",this.secretKey="",this.iv=""}static create(){let e=new l;return e.appId=i.default.appid,e.rsaPublicKeyId=i.default.publicKeyId,e.algorithm="AES",e.secretKey=o.default.getEncryptedSecretKey(),e.iv=o.default.getEncryptedIV(),e}}t.default=a},1280:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(661)),i=r(n(6667)),s=r(n(8858)),a=r(n(529)),l=r(n(6379));class c extends o.default{constructor(){super(...arguments),this.keyNegotiateResultData=new u}static parse(e){let t=new c;return super.parseMsg(t,e),t.keyNegotiateResultData=u.parse(t.data),t}receive(){var e,t;if(0!=this.keyNegotiateResultData.errorCode)return a.default.error(`key negotiate fail: ${this.data}`),void(null===(e=l.default.onError)||void 0===e||e.call(l.default.onError,{error:`key negotiate fail: ${this.data}`}));let n=this.keyNegotiateResultData.encryptType.split("/");if(!i.default.algorithmMap.has(n[0].trim().toLowerCase())||!i.default.modeMap.has(n[1].trim().toLowerCase())||!i.default.paddingMap.has(n[2].trim().toLowerCase()))return a.default.error(`key negotiate fail: ${this.data}`),void(null===(t=l.default.onError)||void 0===t||t.call(l.default.onError,{error:`key negotiate fail: ${this.data}`}));i.default.setEncryptParams(n[0].trim().toLowerCase(),n[1].trim().toLowerCase(),n[2].trim().toLowerCase()),s.default.create().send()}}class u{constructor(){this.errorCode=-1,this.errorMsg="",this.encryptType=""}static parse(e){let t=new u,n=JSON.parse(e);return t.errorCode=n.errorCode,t.errorMsg=n.errorMsg,t.encryptType=n.encryptType,t}}t.default=c},8858:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(6379)),i=r(n(6667)),s=r(n(661)),a=r(n(4534));class l extends s.default{constructor(){super(...arguments),this.loginData=new c}static create(){let e=new l;return super.initMsg(e),e.command=s.default.Command.LOGIN,e.data=e.loginData=c.create(),e}send(){this.loginData.session&&o.default.cid==i.default.md5Hex(this.loginData.session)?super.send():a.default.create().send()}}class c{constructor(){this.appId="",this.session=""}static create(){let e=new c;return e.appId=o.default.appid,e.session=o.default.session,e}}t.default=l},1606:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(8506)),i=r(n(661)),s=r(n(6379)),a=r(n(9586)),l=r(n(4516)),c=r(n(8858));class u extends i.default{constructor(){super(...arguments),this.loginResultData=new d}static parse(e){let t=new u;return super.parseMsg(t,e),t.loginResultData=d.parse(t.data),t}receive(){var e;if(0!=this.loginResultData.errorCode)return this.data,s.default.session=s.default.cid="",o.default.setSync(o.default.KEY_CID,""),o.default.setSync(o.default.KEY_SESSION,""),void c.default.create().send();s.default.online||(s.default.online=!0,null===(e=s.default.onlineState)||void 0===e||e.call(s.default.onlineState,{online:s.default.online})),a.default.sendWaitingMessages(),l.default.create().send()}}class d{constructor(){this.errorCode=-1,this.errorMsg="",this.session=""}static parse(e){let t=new d,n=JSON.parse(e);return t.errorCode=n.errorCode,t.errorMsg=n.errorMsg,t.session=n.session,t}}t.default=u},661:function(e,t,n){var r,o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const i=o(n(9593)),s=o(n(7002)),a=o(n(6893)),l=o(n(6379));class c{constructor(){this.version="",this.command=0,this.packetId=0,this.timeStamp=0,this.data="",this.signature=""}static initMsg(e,...t){return e.version=a.default.SOCKET_PROTOCOL_VERSION,e.command=0,e.timeStamp=(new Date).getTime(),e}static parseMsg(e,t){let n=JSON.parse(t);return e.version=n.version,e.command=n.command,e.packetId=n.packetId,e.timeStamp=n.timeStamp,e.data=n.data,e.signature=n.signature,e}stringify(){return JSON.stringify(this,["version","command","packetId","timeStamp","data","signature"])}send(){s.default.isAvailable()&&(this.packetId=l.default.packetId++,this.temp?this.data=this.temp:this.temp=this.data,this.data=JSON.stringify(this.data),this.stringify(),this.command!=c.Command.HEART_BEAT&&(i.default.sign(this),this.data&&this.command!=c.Command.KEY_NEGOTIATE&&i.default.encrypt(this)),s.default.send(this.stringify()))}}c.Command=((r=class{}).HEART_BEAT=0,r.KEY_NEGOTIATE=1,r.KEY_NEGOTIATE_RESULT=16,r.REGISTER=2,r.REGISTER_RESULT=32,r.LOGIN=3,r.LOGIN_RESULT=48,r.LOGOUT=4,r.LOGOUT_RESULT=64,r.CLIENT_MSG=5,r.SERVER_MSG=80,r.SERVER_CLOSE=96,r.REDIRECT_SERVER=112,r),t.default=c},9593:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(6667));var i,s;(s=i||(i={})).encrypt=function(e){e.data=o.default.encrypt(e.data)},s.decrypt=function(e){e.data=o.default.decrypt(e.data)},s.sign=function(e){e.signature=o.default.sha256(`${e.timeStamp}${e.packetId}${e.command}${e.data}`)},s.verify=function(e){let t=o.default.sha256(`${e.timeStamp}${e.packetId}${e.command}${e.data}`);if(e.signature!=t)throw new Error("msg signature vierfy failed")},t.default=i},4054:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(1280)),i=r(n(1606)),s=r(n(661)),a=r(n(1277)),l=r(n(910)),c=r(n(9538)),u=r(n(9479)),d=r(n(6755)),h=r(n(2918)),f=r(n(9586)),p=r(n(9510)),g=r(n(4626)),m=r(n(7562)),v=r(n(9593)),y=r(n(9586)),b=r(n(9519)),_=r(n(8947));t.default=class{static receiveMessage(e){let t=s.default.parseMsg(new s.default,e);if(t.command!=s.default.Command.HEART_BEAT)switch(t.command!=s.default.Command.KEY_NEGOTIATE_RESULT&&t.command!=s.default.Command.SERVER_CLOSE&&t.command!=s.default.Command.REDIRECT_SERVER&&v.default.decrypt(t),t.command!=s.default.Command.SERVER_CLOSE&&t.command!=s.default.Command.REDIRECT_SERVER&&v.default.verify(t),t.command){case s.default.Command.KEY_NEGOTIATE_RESULT:o.default.parse(t.stringify()).receive();break;case s.default.Command.REGISTER_RESULT:a.default.parse(t.stringify()).receive();break;case s.default.Command.LOGIN_RESULT:i.default.parse(t.stringify()).receive();break;case s.default.Command.SERVER_MSG:this.receiveActionMsg(t.stringify());break;case s.default.Command.SERVER_CLOSE:_.default.parse(t.stringify()).receive();break;case s.default.Command.REDIRECT_SERVER:h.default.parse(t.stringify()).receive()}}static receiveActionMsg(e){let t=y.default.parseActionMsg(new y.default,e);if(t.actionMsgData.msgAction!=f.default.ServerAction.RECEIVED&&t.actionMsgData.msgAction!=f.default.ServerAction.REDIRECT_SERVER){let e=JSON.parse(t.actionMsgData.msgData);b.default.create(e.id).send()}switch(t.actionMsgData.msgAction){case f.default.ServerAction.PUSH_MESSAGE:d.default.parse(e).receive();break;case f.default.ServerAction.ADD_PHONE_INFO_RESULT:l.default.parse(e).receive();break;case f.default.ServerAction.SET_MODE_RESULT:p.default.parse(e).receive();break;case f.default.ServerAction.SET_TAG_RESULT:g.default.parse(e).receive();break;case f.default.ServerAction.BIND_ALIAS_RESULT:c.default.parse(e).receive();break;case f.default.ServerAction.UNBIND_ALIAS_RESULT:m.default.parse(e).receive();break;case f.default.ServerAction.FEED_BACK_RESULT:u.default.parse(e).receive();break;case f.default.ServerAction.RECEIVED:b.default.parse(e).receive()}}}},9519:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=n(4198),i=r(n(6379)),s=r(n(9586));class a extends s.default{constructor(){super(...arguments),this.receivedData=new l}static create(e){let t=new a;return super.initActionMsg(t),t.callback=e=>{e.resultCode!=o.ErrorCode.SUCCESS&&e.resultCode!=o.ErrorCode.REPEAT_MESSAGE&&setTimeout((function(){t.send()}),3e3)},t.actionMsgData.msgAction=s.default.ClientAction.RECEIVED,t.receivedData=l.create(e),t.actionMsgData.msgData=JSON.stringify(t.receivedData),t}static parse(e){let t=new a;return super.parseActionMsg(t,e),t.receivedData=l.parse(t.data),t}receive(){var e;let t=s.default.getWaitingResponseMessage(this.actionMsgData.msgId);(t&&t.actionMsgData.msgAction==s.default.ClientAction.ADD_PHONE_INFO||t&&t.actionMsgData.msgAction==s.default.ClientAction.FEED_BACK)&&(s.default.removeWaitingResponseMessage(t.actionMsgData.msgId),null===(e=t.callback)||void 0===e||e.call(t.callback,{resultCode:o.ErrorCode.SUCCESS,message:"received"}))}send(){super.send()}}class l{constructor(){this.msgId="",this.cid=""}static create(e){let t=new l;return t.cid=i.default.cid,t.msgId=e,t}static parse(e){let t=new l,n=JSON.parse(e);return t.cid=n.cid,t.msgId=n.msgId,t}}t.default=a},2918:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.RedirectServerData=void 0;const o=r(n(7002)),i=r(n(8506)),s=r(n(661));class a extends s.default{constructor(){super(...arguments),this.redirectServerData=new l}static parse(e){let t=new a;return super.parseMsg(t,e),t.redirectServerData=l.parse(t.data),t}receive(){this.redirectServerData,i.default.setSync(i.default.KEY_REDIRECT_SERVER,JSON.stringify(this.redirectServerData)),o.default.close("redirect server"),o.default.reconnect(this.redirectServerData.delay)}}class l{constructor(){this.addressList=[],this.delay=0,this.loc="",this.conf="",this.time=0}static parse(e){let t=new l,n=JSON.parse(e);return t.addressList=n.addressList,t.delay=n.delay,t.loc=n.loc,t.conf=n.conf,t.time=n.time?n.time:(new Date).getTime(),t}}t.RedirectServerData=l,t.default=a},4534:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(6379)),i=r(n(661));class s extends i.default{constructor(){super(...arguments),this.registerData=new a}static create(){let e=new s;return super.initMsg(e),e.command=i.default.Command.REGISTER,e.data=e.registerData=a.create(),e}send(){super.send()}}class a{constructor(){this.appId="",this.regId=""}static create(){let e=new a;return e.appId=o.default.appid,e.regId=o.default.regId,e}}t.default=s},1277:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(661)),i=r(n(8506)),s=r(n(6379)),a=r(n(8858)),l=r(n(529));class c extends o.default{constructor(){super(...arguments),this.registerResultData=new u}static parse(e){let t=new c;return super.parseMsg(t,e),t.registerResultData=u.parse(t.data),t}receive(){var e,t;if(0!=this.registerResultData.errorCode||!this.registerResultData.cid||!this.registerResultData.session)return l.default.error(`register fail: ${this.data}`),void(null===(e=s.default.onError)||void 0===e||e.call(s.default.onError,{error:`register fail: ${this.data}`}));s.default.cid!=this.registerResultData.cid&&i.default.setSync(i.default.KEY_ADD_PHONE_INFO_TIME,0),s.default.cid=this.registerResultData.cid,null===(t=s.default.onClientId)||void 0===t||t.call(s.default.onClientId,{cid:s.default.cid}),i.default.set({key:i.default.KEY_CID,data:s.default.cid}),s.default.session=this.registerResultData.session,i.default.set({key:i.default.KEY_SESSION,data:s.default.session}),s.default.deviceId=this.registerResultData.deviceId,i.default.set({key:i.default.KEY_DEVICE_ID,data:s.default.deviceId}),a.default.create().send()}}class u{constructor(){this.errorCode=-1,this.errorMsg="",this.cid="",this.session="",this.deviceId="",this.regId=""}static parse(e){let t=new u,n=JSON.parse(e);return t.errorCode=n.errorCode,t.errorMsg=n.errorMsg,t.cid=n.cid,t.session=n.session,t.deviceId=n.deviceId,t.regId=n.regId,t}}t.default=c},8947:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(7002)),i=r(n(529)),s=r(n(661));class a extends s.default{constructor(){super(...arguments),this.serverCloseData=new l}static parse(e){let t=new a;return super.parseMsg(t,e),t.serverCloseData=l.parse(t.data),t}receive(){JSON.stringify(this.serverCloseData);let e=`server close ${this.serverCloseData.code}`;20==this.serverCloseData.code||23==this.serverCloseData.code||24==this.serverCloseData.code?(o.default.allowReconnect=!1,o.default.close(e)):21==this.serverCloseData.code?this.safeClose21(e):(o.default.allowReconnect=!0,o.default.close(e),o.default.reconnect(10))}safeClose21(e){try{if("undefined"!=typeof document&&document.hasFocus()&&"visible"==document.visibilityState)return o.default.allowReconnect=!0,o.default.close(e),void o.default.reconnect(10);o.default.allowReconnect=!1,o.default.close(e)}catch(t){i.default.error("ServerClose t1",t),o.default.allowReconnect=!1,o.default.close(`${e} error`)}}}class l{constructor(){this.code=-1,this.msg=""}static parse(e){let t=new l,n=JSON.parse(e);return t.code=n.code,t.msg=n.msg,t}}t.default=a},910:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(8506)),i=r(n(9586));class s extends i.default{constructor(){super(...arguments),this.addPhoneInfoResultData=new a}static parse(e){let t=new s;return super.parseActionMsg(t,e),t.addPhoneInfoResultData=a.parse(t.actionMsgData.msgData),t}receive(){var e;this.addPhoneInfoResultData;let t=i.default.removeWaitingResponseMessage(this.actionMsgData.msgId);t&&(null===(e=t.callback)||void 0===e||e.call(t.callback,{resultCode:this.addPhoneInfoResultData.errorCode,message:this.addPhoneInfoResultData.errorMsg})),o.default.set({key:o.default.KEY_ADD_PHONE_INFO_TIME,data:(new Date).getTime()})}}class a{constructor(){this.errorCode=-1,this.errorMsg=""}static parse(e){let t=new a,n=JSON.parse(e);return t.errorCode=n.errorCode,t.errorMsg=n.errorMsg,t}}t.default=s},9538:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(8506)),i=r(n(529)),s=r(n(9586));class a extends s.default{constructor(){super(...arguments),this.bindAliasResultData=new l}static parse(e){let t=new a;return super.parseActionMsg(t,e),t.bindAliasResultData=l.parse(t.actionMsgData.msgData),t}receive(){var e;i.default.info("bind alias result",this.bindAliasResultData);let t=s.default.removeWaitingResponseMessage(this.actionMsgData.msgId);t&&(null===(e=t.callback)||void 0===e||e.call(t.callback,{resultCode:this.bindAliasResultData.errorCode,message:this.bindAliasResultData.errorMsg})),o.default.set({key:o.default.KEY_BIND_ALIAS_TIME,data:(new Date).getTime()})}}class l{constructor(){this.errorCode=-1,this.errorMsg=""}static parse(e){let t=new l,n=JSON.parse(e);return t.errorCode=n.errorCode,t.errorMsg=n.errorMsg,t}}t.default=a},9479:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=n(4198),i=r(n(9586));class s extends i.default{constructor(){super(...arguments),this.feedbackResultData=new a}static parse(e){let t=new s;return super.parseActionMsg(t,e),t.feedbackResultData=a.parse(t.actionMsgData.msgData),t}receive(){var e;this.feedbackResultData;let t=i.default.removeWaitingResponseMessage(this.actionMsgData.msgId);t&&(null===(e=t.callback)||void 0===e||e.call(t.callback,{resultCode:o.ErrorCode.SUCCESS,message:"received"}))}}class a{constructor(){this.actionId="",this.taskId="",this.result=""}static parse(e){let t=new a,n=JSON.parse(e);return t.actionId=n.actionId,t.taskId=n.taskId,t.result=n.result,t}}t.default=s},6755:function(e,t,n){var r,o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const i=o(n(6379)),s=o(n(9586)),a=o(n(8723));class l extends s.default{constructor(){super(...arguments),this.pushMessageData=new c}static parse(e){let t=new l;return super.parseActionMsg(t,e),t.pushMessageData=c.parse(t.actionMsgData.msgData),t}receive(){var e;this.pushMessageData,this.pushMessageData.appId==i.default.appid&&this.pushMessageData.messageid&&this.pushMessageData.taskId||this.stringify(),a.default.create(this,a.default.ActionId.RECEIVE).send(),a.default.create(this,a.default.ActionId.MP_RECEIVE).send(),this.actionMsgData.msgExtraData&&i.default.onPushMsg&&(null===(e=i.default.onPushMsg)||void 0===e||e.call(i.default.onPushMsg,{message:this.actionMsgData.msgExtraData}))}}class c{constructor(){this.id="",this.appKey="",this.appId="",this.messageid="",this.taskId="",this.actionChain=[],this.cdnType=""}static parse(e){let t=new c,n=JSON.parse(e);return t.id=n.id,t.appKey=n.appKey,t.appId=n.appId,t.messageid=n.messageid,t.taskId=n.taskId,t.actionChain=n.actionChain,t.cdnType=n.cdnType,t}}(r=class{}).GO_TO="goto",r.TRANSMIT="transmit",t.default=l},9510:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(9586));class i extends o.default{constructor(){super(...arguments),this.setModeResultData=new s}static parse(e){let t=new i;return super.parseActionMsg(t,e),t.setModeResultData=s.parse(t.actionMsgData.msgData),t}receive(){var e;this.setModeResultData;let t=o.default.removeWaitingResponseMessage(this.actionMsgData.msgId);t&&(null===(e=t.callback)||void 0===e||e.call(t.callback,{resultCode:this.setModeResultData.errorCode,message:this.setModeResultData.errorMsg}))}}class s{constructor(){this.errorCode=-1,this.errorMsg=""}static parse(e){let t=new s,n=JSON.parse(e);return t.errorCode=n.errorCode,t.errorMsg=n.errorMsg,t}}t.default=i},4626:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(8506)),i=r(n(529)),s=r(n(9586));class a extends s.default{constructor(){super(...arguments),this.setTagResultData=new l}static parse(e){let t=new a;return super.parseActionMsg(t,e),t.setTagResultData=l.parse(t.actionMsgData.msgData),t}receive(){var e;i.default.info("set tag result",this.setTagResultData);let t=s.default.removeWaitingResponseMessage(this.actionMsgData.msgId);t&&(null===(e=t.callback)||void 0===e||e.call(t.callback,{resultCode:this.setTagResultData.errorCode,message:this.setTagResultData.errorMsg})),o.default.set({key:o.default.KEY_SET_TAG_TIME,data:(new Date).getTime()})}}class l{constructor(){this.errorCode=0,this.errorMsg=""}static parse(e){let t=new l,n=JSON.parse(e);return t.errorCode=n.errorCode,t.errorMsg=n.errorMsg,t}}t.default=a},7562:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(8506)),i=r(n(529)),s=r(n(9586));class a extends s.default{constructor(){super(...arguments),this.unbindAliasResultData=new l}static parse(e){let t=new a;return super.parseActionMsg(t,e),t.unbindAliasResultData=l.parse(t.actionMsgData.msgData),t}receive(){var e;i.default.info("unbind alias result",this.unbindAliasResultData);let t=s.default.removeWaitingResponseMessage(this.actionMsgData.msgId);t&&(null===(e=t.callback)||void 0===e||e.call(t.callback,{resultCode:this.unbindAliasResultData.errorCode,message:this.unbindAliasResultData.errorMsg})),o.default.set({key:o.default.KEY_BIND_ALIAS_TIME,data:(new Date).getTime()})}}class l{constructor(){this.errorCode=-1,this.errorMsg=""}static parse(e){let t=new l,n=JSON.parse(e);return t.errorCode=n.errorCode,t.errorMsg=n.errorMsg,t}}t.default=a},8227:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.default=class{constructor(e){this.delay=10,this.delay=e}start(){this.cancel();let e=this;this.timer=setInterval((function(){e.run()}),this.delay)}cancel(){this.timer&&clearInterval(this.timer)}}},7167:function(e,t,n){var r,o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const i=o(n(6362)),s=o(n(8227));class a extends s.default{static getInstance(){return a.InstanceHolder.instance}run(){i.default.create().send()}refresh(){this.delay=6e4,this.start()}}a.INTERVAL=6e4,a.InstanceHolder=((r=class{}).instance=new a(a.INTERVAL),r),t.default=a},2323:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(n(4736)),i=r(n(6667));var s;!function(e){let t=(0,o.default)("9223372036854775808");function n(e){e>=t&&(e=t.multiply(2).minus(e));let n="";for(;e>(0,o.default)(0);e=e.divide(62))n+="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".charAt(Number(e.divmod(62).remainder));return n}e.to_getui=function(e){let t=function(e){let t=function(e){let t=e.length;if(t%2!=0)return[];let n=new Array;for(let r=0;r{Object.defineProperty(t,"__esModule",{value:!0});class n{static info(...e){this.debugMode&&console.info("[GtPush]",e)}static warn(...e){console.warn("[GtPush]",e)}static error(...e){console.error("[GtPush]",e)}}n.debugMode=!1,t.default=n},3854:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.default=class{static getStr(e,t){try{return e&&void 0!==e[t]?e[t]:""}catch(n){}return""}}},2620:(e,t,n)=>{function r(e){return"0123456789abcdefghijklmnopqrstuvwxyz".charAt(e)}function o(e,t){return e&t}function i(e,t){return e|t}function s(e,t){return e^t}function a(e,t){return e&~t}function l(e){if(0==e)return-1;var t=0;return 0==(65535&e)&&(e>>=16,t+=16),0==(255&e)&&(e>>=8,t+=8),0==(15&e)&&(e>>=4,t+=4),0==(3&e)&&(e>>=2,t+=2),0==(1&e)&&++t,t}function c(e){for(var t=0;0!=e;)e&=e-1,++t;return t}n.r(t),n.d(t,{JSEncrypt:()=>ee,default:()=>te});var u,d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";function h(e){var t,n,r="";for(t=0;t+3<=e.length;t+=3)n=parseInt(e.substring(t,t+3),16),r+=d.charAt(n>>6)+d.charAt(63&n);for(t+1==e.length?(n=parseInt(e.substring(t,t+1),16),r+=d.charAt(n<<2)):t+2==e.length&&(n=parseInt(e.substring(t,t+2),16),r+=d.charAt(n>>2)+d.charAt((3&n)<<4));(3&r.length)>0;)r+="=";return r}var f,p=function(e){var t;if(void 0===u){var n="0123456789ABCDEF",r=" \f\n\r\t \u2028\u2029";for(u={},t=0;t<16;++t)u[n.charAt(t)]=t;for(n=n.toLowerCase(),t=10;t<16;++t)u[n.charAt(t)]=t;for(t=0;t=2?(o[o.length]=i,i=0,s=0):i<<=4}}if(s)throw new Error("Hex encoding incomplete: 4 bits missing");return o},g={decode:function(e){var t;if(void 0===f){var n="= \f\n\r\t \u2028\u2029";for(f=Object.create(null),t=0;t<64;++t)f["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(t)]=t;for(f["-"]=62,f._=63,t=0;t=4?(r[r.length]=o>>16,r[r.length]=o>>8&255,r[r.length]=255&o,o=0,i=0):o<<=6}}switch(i){case 1:throw new Error("Base64 encoding incomplete: at least 2 bits missing");case 2:r[r.length]=o>>10;break;case 3:r[r.length]=o>>16,r[r.length]=o>>8&255}return r},re:/-----BEGIN [^-]+-----([A-Za-z0-9+\/=\s]+)-----END [^-]+-----|begin-base64[^\n]+\n([A-Za-z0-9+\/=\s]+)====/,unarmor:function(e){var t=g.re.exec(e);if(t)if(t[1])e=t[1];else{if(!t[2])throw new Error("RegExp out of sync");e=t[2]}return g.decode(e)}},m=1e13,v=function(){function e(e){this.buf=[+e||0]}return e.prototype.mulAdd=function(e,t){var n,r,o=this.buf,i=o.length;for(n=0;n0&&(o[n]=t)},e.prototype.sub=function(e){var t,n,r=this.buf,o=r.length;for(t=0;t=0;--r)n+=(m+t[r]).toString().substring(1);return n},e.prototype.valueOf=function(){for(var e=this.buf,t=0,n=e.length-1;n>=0;--n)t=t*m+e[n];return t},e.prototype.simplify=function(){var e=this.buf;return 1==e.length?e[0]:this},e}(),y=/^(\d\d)(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])([01]\d|2[0-3])(?:([0-5]\d)(?:([0-5]\d)(?:[.,](\d{1,3}))?)?)?(Z|[-+](?:[0]\d|1[0-2])([0-5]\d)?)?$/,b=/^(\d\d\d\d)(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])([01]\d|2[0-3])(?:([0-5]\d)(?:([0-5]\d)(?:[.,](\d{1,3}))?)?)?(Z|[-+](?:[0]\d|1[0-2])([0-5]\d)?)?$/;function _(e,t){return e.length>t&&(e=e.substring(0,t)+"…"),e}var w,S=function(){function e(t,n){this.hexDigits="0123456789ABCDEF",t instanceof e?(this.enc=t.enc,this.pos=t.pos):(this.enc=t,this.pos=n)}return e.prototype.get=function(e){if(void 0===e&&(e=this.pos++),e>=this.enc.length)throw new Error("Requesting byte offset "+e+" on a stream of length "+this.enc.length);return"string"==typeof this.enc?this.enc.charCodeAt(e):this.enc[e]},e.prototype.hexByte=function(e){return this.hexDigits.charAt(e>>4&15)+this.hexDigits.charAt(15&e)},e.prototype.hexDump=function(e,t,n){for(var r="",o=e;o176)return!1}return!0},e.prototype.parseStringISO=function(e,t){for(var n="",r=e;r191&&o<224?String.fromCharCode((31&o)<<6|63&this.get(r++)):String.fromCharCode((15&o)<<12|(63&this.get(r++))<<6|63&this.get(r++))}return n},e.prototype.parseStringBMP=function(e,t){for(var n,r,o="",i=e;i127,i=o?255:0,s="";r==i&&++e4){for(s=r,n<<=3;0==(128&(+s^i));)s=+s<<1,--n;s="("+n+" bit)\n"}o&&(r-=256);for(var a=new v(r),l=e+1;l=l;--c)i+=a>>c&1?"1":"0";if(i.length>n)return o+_(i,n)}return o+i},e.prototype.parseOctetString=function(e,t,n){if(this.isASCII(e,t))return _(this.parseStringISO(e,t),n);var r=t-e,o="("+r+" byte)\n";r>(n/=2)&&(t=e+n);for(var i=e;in&&(o+="…"),o},e.prototype.parseOID=function(e,t,n){for(var r="",o=new v,i=0,s=e;sn)return _(r,n);o=new v,i=0}}return i>0&&(r+=".incomplete"),r},e}(),x=function(){function e(e,t,n,r,o){if(!(r instanceof E))throw new Error("Invalid tag value.");this.stream=e,this.header=t,this.length=n,this.tag=r,this.sub=o}return e.prototype.typeName=function(){switch(this.tag.tagClass){case 0:switch(this.tag.tagNumber){case 0:return"EOC";case 1:return"BOOLEAN";case 2:return"INTEGER";case 3:return"BIT_STRING";case 4:return"OCTET_STRING";case 5:return"NULL";case 6:return"OBJECT_IDENTIFIER";case 7:return"ObjectDescriptor";case 8:return"EXTERNAL";case 9:return"REAL";case 10:return"ENUMERATED";case 11:return"EMBEDDED_PDV";case 12:return"UTF8String";case 16:return"SEQUENCE";case 17:return"SET";case 18:return"NumericString";case 19:return"PrintableString";case 20:return"TeletexString";case 21:return"VideotexString";case 22:return"IA5String";case 23:return"UTCTime";case 24:return"GeneralizedTime";case 25:return"GraphicString";case 26:return"VisibleString";case 27:return"GeneralString";case 28:return"UniversalString";case 30:return"BMPString"}return"Universal_"+this.tag.tagNumber.toString();case 1:return"Application_"+this.tag.tagNumber.toString();case 2:return"["+this.tag.tagNumber.toString()+"]";case 3:return"Private_"+this.tag.tagNumber.toString()}},e.prototype.content=function(e){if(void 0===this.tag)return null;void 0===e&&(e=1/0);var t=this.posContent(),n=Math.abs(this.length);if(!this.tag.isUniversal())return null!==this.sub?"("+this.sub.length+" elem)":this.stream.parseOctetString(t,t+n,e);switch(this.tag.tagNumber){case 1:return 0===this.stream.get(t)?"false":"true";case 2:return this.stream.parseInteger(t,t+n);case 3:return this.sub?"("+this.sub.length+" elem)":this.stream.parseBitString(t,t+n,e);case 4:return this.sub?"("+this.sub.length+" elem)":this.stream.parseOctetString(t,t+n,e);case 6:return this.stream.parseOID(t,t+n,e);case 16:case 17:return null!==this.sub?"("+this.sub.length+" elem)":"(no elem)";case 12:return _(this.stream.parseStringUTF(t,t+n),e);case 18:case 19:case 20:case 21:case 22:case 26:return _(this.stream.parseStringISO(t,t+n),e);case 30:return _(this.stream.parseStringBMP(t,t+n),e);case 23:case 24:return this.stream.parseTime(t,t+n,23==this.tag.tagNumber)}return null},e.prototype.toString=function(){return this.typeName()+"@"+this.stream.pos+"[header:"+this.header+",length:"+this.length+",sub:"+(null===this.sub?"null":this.sub.length)+"]"},e.prototype.toPrettyString=function(e){void 0===e&&(e="");var t=e+this.typeName()+" @"+this.stream.pos;if(this.length>=0&&(t+="+"),t+=this.length,this.tag.tagConstructed?t+=" (constructed)":!this.tag.isUniversal()||3!=this.tag.tagNumber&&4!=this.tag.tagNumber||null===this.sub||(t+=" (encapsulates)"),t+="\n",null!==this.sub){e+=" ";for(var n=0,r=this.sub.length;n6)throw new Error("Length over 48 bits not supported at position "+(e.pos-1));if(0===n)return null;t=0;for(var r=0;r>6,this.tagConstructed=0!=(32&t),this.tagNumber=31&t,31==this.tagNumber){var n=new v;do{t=e.get(),n.mulAdd(128,127&t)}while(128&t);this.tagNumber=n.simplify()}}return e.prototype.isUniversal=function(){return 0===this.tagClass},e.prototype.isEOC=function(){return 0===this.tagClass&&0===this.tagNumber},e}(),T=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997],C=(1<<26)/T[T.length-1],M=function(){function e(e,t,n){null!=e&&("number"==typeof e?this.fromNumber(e,t,n):null==t&&"string"!=typeof e?this.fromString(e,256):this.fromString(e,t))}return e.prototype.toString=function(e){if(this.s<0)return"-"+this.negate().toString(e);var t;if(16==e)t=4;else if(8==e)t=3;else if(2==e)t=1;else if(32==e)t=5;else{if(4!=e)return this.toRadix(e);t=2}var n,o=(1<0)for(l>l)>0&&(i=!0,s=r(n));a>=0;)l>(l+=this.DB-t)):(n=this[a]>>(l-=t)&o,l<=0&&(l+=this.DB,--a)),n>0&&(i=!0),i&&(s+=r(n));return i?s:"0"},e.prototype.negate=function(){var t=I();return e.ZERO.subTo(this,t),t},e.prototype.abs=function(){return this.s<0?this.negate():this},e.prototype.compareTo=function(e){var t=this.s-e.s;if(0!=t)return t;var n=this.t;if(0!=(t=n-e.t))return this.s<0?-t:t;for(;--n>=0;)if(0!=(t=this[n]-e[n]))return t;return 0},e.prototype.bitLength=function(){return this.t<=0?0:this.DB*(this.t-1)+j(this[this.t-1]^this.s&this.DM)},e.prototype.mod=function(t){var n=I();return this.abs().divRemTo(t,null,n),this.s<0&&n.compareTo(e.ZERO)>0&&t.subTo(n,n),n},e.prototype.modPowInt=function(e,t){var n;return n=e<256||t.isEven()?new A(t):new D(t),this.exp(e,n)},e.prototype.clone=function(){var e=I();return this.copyTo(e),e},e.prototype.intValue=function(){if(this.s<0){if(1==this.t)return this[0]-this.DV;if(0==this.t)return-1}else{if(1==this.t)return this[0];if(0==this.t)return 0}return(this[1]&(1<<32-this.DB)-1)<>24},e.prototype.shortValue=function(){return 0==this.t?this.s:this[0]<<16>>16},e.prototype.signum=function(){return this.s<0?-1:this.t<=0||1==this.t&&this[0]<=0?0:1},e.prototype.toByteArray=function(){var e=this.t,t=[];t[0]=this.s;var n,r=this.DB-e*this.DB%8,o=0;if(e-- >0)for(r>r)!=(this.s&this.DM)>>r&&(t[o++]=n|this.s<=0;)r<8?(n=(this[e]&(1<>(r+=this.DB-8)):(n=this[e]>>(r-=8)&255,r<=0&&(r+=this.DB,--e)),0!=(128&n)&&(n|=-256),0==o&&(128&this.s)!=(128&n)&&++o,(o>0||n!=this.s)&&(t[o++]=n);return t},e.prototype.equals=function(e){return 0==this.compareTo(e)},e.prototype.min=function(e){return this.compareTo(e)<0?this:e},e.prototype.max=function(e){return this.compareTo(e)>0?this:e},e.prototype.and=function(e){var t=I();return this.bitwiseTo(e,o,t),t},e.prototype.or=function(e){var t=I();return this.bitwiseTo(e,i,t),t},e.prototype.xor=function(e){var t=I();return this.bitwiseTo(e,s,t),t},e.prototype.andNot=function(e){var t=I();return this.bitwiseTo(e,a,t),t},e.prototype.not=function(){for(var e=I(),t=0;t=this.t?0!=this.s:0!=(this[t]&1<1){var u=I();for(r.sqrTo(s[1],u);a<=c;)s[a]=I(),r.mulTo(u,s[a-2],s[a]),a+=2}var d,h,f=e.t-1,p=!0,g=I();for(o=j(e[f])-1;f>=0;){for(o>=l?d=e[f]>>o-l&c:(d=(e[f]&(1<0&&(d|=e[f-1]>>this.DB+o-l)),a=n;0==(1&d);)d>>=1,--a;if((o-=a)<0&&(o+=this.DB,--f),p)s[d].copyTo(i),p=!1;else{for(;a>1;)r.sqrTo(i,g),r.sqrTo(g,i),a-=2;a>0?r.sqrTo(i,g):(h=i,i=g,g=h),r.mulTo(g,s[d],i)}for(;f>=0&&0==(e[f]&1<=0?(r.subTo(o,r),n&&i.subTo(a,i),s.subTo(l,s)):(o.subTo(r,o),n&&a.subTo(i,a),l.subTo(s,l))}return 0!=o.compareTo(e.ONE)?e.ZERO:l.compareTo(t)>=0?l.subtract(t):l.signum()<0?(l.addTo(t,l),l.signum()<0?l.add(t):l):l},e.prototype.pow=function(e){return this.exp(e,new k)},e.prototype.gcd=function(e){var t=this.s<0?this.negate():this.clone(),n=e.s<0?e.negate():e.clone();if(t.compareTo(n)<0){var r=t;t=n,n=r}var o=t.getLowestSetBit(),i=n.getLowestSetBit();if(i<0)return t;for(o0&&(t.rShiftTo(i,t),n.rShiftTo(i,n));t.signum()>0;)(o=t.getLowestSetBit())>0&&t.rShiftTo(o,t),(o=n.getLowestSetBit())>0&&n.rShiftTo(o,n),t.compareTo(n)>=0?(t.subTo(n,t),t.rShiftTo(1,t)):(n.subTo(t,n),n.rShiftTo(1,n));return i>0&&n.lShiftTo(i,n),n},e.prototype.isProbablePrime=function(e){var t,n=this.abs();if(1==n.t&&n[0]<=T[T.length-1]){for(t=0;t=0;--t)e[t]=this[t];e.t=this.t,e.s=this.s},e.prototype.fromInt=function(e){this.t=1,this.s=e<0?-1:0,e>0?this[0]=e:e<-1?this[0]=e+this.DV:this.t=0},e.prototype.fromString=function(t,n){var r;if(16==n)r=4;else if(8==n)r=3;else if(256==n)r=8;else if(2==n)r=1;else if(32==n)r=5;else{if(4!=n)return void this.fromRadix(t,n);r=2}this.t=0,this.s=0;for(var o=t.length,i=!1,s=0;--o>=0;){var a=8==r?255&+t[o]:$(t,o);a<0?"-"==t.charAt(o)&&(i=!0):(i=!1,0==s?this[this.t++]=a:s+r>this.DB?(this[this.t-1]|=(a&(1<>this.DB-s):this[this.t-1]|=a<=this.DB&&(s-=this.DB))}8==r&&0!=(128&+t[0])&&(this.s=-1,s>0&&(this[this.t-1]|=(1<0&&this[this.t-1]==e;)--this.t},e.prototype.dlShiftTo=function(e,t){var n;for(n=this.t-1;n>=0;--n)t[n+e]=this[n];for(n=e-1;n>=0;--n)t[n]=0;t.t=this.t+e,t.s=this.s},e.prototype.drShiftTo=function(e,t){for(var n=e;n=0;--a)t[a+i+1]=this[a]>>r|s,s=(this[a]&o)<=0;--a)t[a]=0;t[i]=s,t.t=this.t+i+1,t.s=this.s,t.clamp()},e.prototype.rShiftTo=function(e,t){t.s=this.s;var n=Math.floor(e/this.DB);if(n>=this.t)t.t=0;else{var r=e%this.DB,o=this.DB-r,i=(1<>r;for(var s=n+1;s>r;r>0&&(t[this.t-n-1]|=(this.s&i)<>=this.DB;if(e.t>=this.DB;r+=this.s}else{for(r+=this.s;n>=this.DB;r-=e.s}t.s=r<0?-1:0,r<-1?t[n++]=this.DV+r:r>0&&(t[n++]=r),t.t=n,t.clamp()},e.prototype.multiplyTo=function(t,n){var r=this.abs(),o=t.abs(),i=r.t;for(n.t=i+o.t;--i>=0;)n[i]=0;for(i=0;i=0;)e[n]=0;for(n=0;n=t.DV&&(e[n+t.t]-=t.DV,e[n+t.t+1]=1)}e.t>0&&(e[e.t-1]+=t.am(n,t[n],e,2*n,0,1)),e.s=0,e.clamp()},e.prototype.divRemTo=function(t,n,r){var o=t.abs();if(!(o.t<=0)){var i=this.abs();if(i.t0?(o.lShiftTo(c,s),i.lShiftTo(c,r)):(o.copyTo(s),i.copyTo(r));var u=s.t,d=s[u-1];if(0!=d){var h=d*(1<1?s[u-2]>>this.F2:0),f=this.FV/h,p=(1<=0&&(r[r.t++]=1,r.subTo(y,r)),e.ONE.dlShiftTo(u,y),y.subTo(s,s);s.t=0;){var b=r[--m]==d?this.DM:Math.floor(r[m]*f+(r[m-1]+g)*p);if((r[m]+=s.am(0,b,r,v,0,u))0&&r.rShiftTo(c,r),a<0&&e.ZERO.subTo(r,r)}}},e.prototype.invDigit=function(){if(this.t<1)return 0;var e=this[0];if(0==(1&e))return 0;var t=3&e;return(t=(t=(t=(t=t*(2-(15&e)*t)&15)*(2-(255&e)*t)&255)*(2-((65535&e)*t&65535))&65535)*(2-e*t%this.DV)%this.DV)>0?this.DV-t:-t},e.prototype.isEven=function(){return 0==(this.t>0?1&this[0]:this.s)},e.prototype.exp=function(t,n){if(t>4294967295||t<1)return e.ONE;var r=I(),o=I(),i=n.convert(this),s=j(t)-1;for(i.copyTo(r);--s>=0;)if(n.sqrTo(r,o),(t&1<0)n.mulTo(o,i,r);else{var a=r;r=o,o=a}return n.revert(r)},e.prototype.chunkSize=function(e){return Math.floor(Math.LN2*this.DB/Math.log(e))},e.prototype.toRadix=function(e){if(null==e&&(e=10),0==this.signum()||e<2||e>36)return"0";var t=this.chunkSize(e),n=Math.pow(e,t),r=z(n),o=I(),i=I(),s="";for(this.divRemTo(r,o,i);o.signum()>0;)s=(n+i.intValue()).toString(e).substr(1)+s,o.divRemTo(r,o,i);return i.intValue().toString(e)+s},e.prototype.fromRadix=function(t,n){this.fromInt(0),null==n&&(n=10);for(var r=this.chunkSize(n),o=Math.pow(n,r),i=!1,s=0,a=0,l=0;l=r&&(this.dMultiply(o),this.dAddOffset(a,0),s=0,a=0))}s>0&&(this.dMultiply(Math.pow(n,s)),this.dAddOffset(a,0)),i&&e.ZERO.subTo(this,this)},e.prototype.fromNumber=function(t,n,r){if("number"==typeof n)if(t<2)this.fromInt(1);else for(this.fromNumber(t,r),this.testBit(t-1)||this.bitwiseTo(e.ONE.shiftLeft(t-1),i,this),this.isEven()&&this.dAddOffset(1,0);!this.isProbablePrime(n);)this.dAddOffset(2,0),this.bitLength()>t&&this.subTo(e.ONE.shiftLeft(t-1),this);else{var o=[],s=7&t;o.length=1+(t>>3),n.nextBytes(o),s>0?o[0]&=(1<>=this.DB;if(e.t>=this.DB;r+=this.s}else{for(r+=this.s;n>=this.DB;r+=e.s}t.s=r<0?-1:0,r>0?t[n++]=r:r<-1&&(t[n++]=this.DV+r),t.t=n,t.clamp()},e.prototype.dMultiply=function(e){this[this.t]=this.am(0,e-1,this,0,0,this.t),++this.t,this.clamp()},e.prototype.dAddOffset=function(e,t){if(0!=e){for(;this.t<=t;)this[this.t++]=0;for(this[t]+=e;this[t]>=this.DV;)this[t]-=this.DV,++t>=this.t&&(this[this.t++]=0),++this[t]}},e.prototype.multiplyLowerTo=function(e,t,n){var r=Math.min(this.t+e.t,t);for(n.s=0,n.t=r;r>0;)n[--r]=0;for(var o=n.t-this.t;r=0;)n[r]=0;for(r=Math.max(t-this.t,0);r0)if(0==t)n=this[0]%e;else for(var r=this.t-1;r>=0;--r)n=(t*n+this[r])%e;return n},e.prototype.millerRabin=function(t){var n=this.subtract(e.ONE),r=n.getLowestSetBit();if(r<=0)return!1;var o=n.shiftRight(r);(t=t+1>>1)>T.length&&(t=T.length);for(var i=I(),s=0;s0&&(n.rShiftTo(s,n),r.rShiftTo(s,r));var a=function(){(i=n.getLowestSetBit())>0&&n.rShiftTo(i,n),(i=r.getLowestSetBit())>0&&r.rShiftTo(i,r),n.compareTo(r)>=0?(n.subTo(r,n),n.rShiftTo(1,n)):(r.subTo(n,r),r.rShiftTo(1,r)),n.signum()>0?setTimeout(a,0):(s>0&&r.lShiftTo(s,r),setTimeout((function(){t(r)}),0))};setTimeout(a,10)}},e.prototype.fromNumberAsync=function(t,n,r,o){if("number"==typeof n)if(t<2)this.fromInt(1);else{this.fromNumber(t,r),this.testBit(t-1)||this.bitwiseTo(e.ONE.shiftLeft(t-1),i,this),this.isEven()&&this.dAddOffset(1,0);var s=this,a=function(){s.dAddOffset(2,0),s.bitLength()>t&&s.subTo(e.ONE.shiftLeft(t-1),s),s.isProbablePrime(n)?setTimeout((function(){o()}),0):setTimeout(a,0)};setTimeout(a,0)}else{var l=[],c=7&t;l.length=1+(t>>3),n.nextBytes(l),c>0?l[0]&=(1<=0?e.mod(this.m):e},e.prototype.revert=function(e){return e},e.prototype.reduce=function(e){e.divRemTo(this.m,null,e)},e.prototype.mulTo=function(e,t,n){e.multiplyTo(t,n),this.reduce(n)},e.prototype.sqrTo=function(e,t){e.squareTo(t),this.reduce(t)},e}(),D=function(){function e(e){this.m=e,this.mp=e.invDigit(),this.mpl=32767&this.mp,this.mph=this.mp>>15,this.um=(1<0&&this.m.subTo(t,t),t},e.prototype.revert=function(e){var t=I();return e.copyTo(t),this.reduce(t),t},e.prototype.reduce=function(e){for(;e.t<=this.mt2;)e[e.t++]=0;for(var t=0;t>15)*this.mpl&this.um)<<15)&e.DM;for(e[n=t+this.m.t]+=this.m.am(0,r,e,t,0,this.m.t);e[n]>=e.DV;)e[n]-=e.DV,e[++n]++}e.clamp(),e.drShiftTo(this.m.t,e),e.compareTo(this.m)>=0&&e.subTo(this.m,e)},e.prototype.mulTo=function(e,t,n){e.multiplyTo(t,n),this.reduce(n)},e.prototype.sqrTo=function(e,t){e.squareTo(t),this.reduce(t)},e}(),O=function(){function e(e){this.m=e,this.r2=I(),this.q3=I(),M.ONE.dlShiftTo(2*e.t,this.r2),this.mu=this.r2.divide(e)}return e.prototype.convert=function(e){if(e.s<0||e.t>2*this.m.t)return e.mod(this.m);if(e.compareTo(this.m)<0)return e;var t=I();return e.copyTo(t),this.reduce(t),t},e.prototype.revert=function(e){return e},e.prototype.reduce=function(e){for(e.drShiftTo(this.m.t-1,this.r2),e.t>this.m.t+1&&(e.t=this.m.t+1,e.clamp()),this.mu.multiplyUpperTo(this.r2,this.m.t+1,this.q3),this.m.multiplyLowerTo(this.q3,this.m.t+1,this.r2);e.compareTo(this.r2)<0;)e.dAddOffset(1,this.m.t+1);for(e.subTo(this.r2,e);e.compareTo(this.m)>=0;)e.subTo(this.m,e)},e.prototype.mulTo=function(e,t,n){e.multiplyTo(t,n),this.reduce(n)},e.prototype.sqrTo=function(e,t){e.squareTo(t),this.reduce(t)},e}();function I(){return new M(null)}function P(e,t){return new M(e,t)}var B="undefined"!=typeof navigator;B&&"Microsoft Internet Explorer"==navigator.appName?(M.prototype.am=function(e,t,n,r,o,i){for(var s=32767&t,a=t>>15;--i>=0;){var l=32767&this[e],c=this[e++]>>15,u=a*l+c*s;o=((l=s*l+((32767&u)<<15)+n[r]+(1073741823&o))>>>30)+(u>>>15)+a*c+(o>>>30),n[r++]=1073741823&l}return o},w=30):B&&"Netscape"!=navigator.appName?(M.prototype.am=function(e,t,n,r,o,i){for(;--i>=0;){var s=t*this[e++]+n[r]+o;o=Math.floor(s/67108864),n[r++]=67108863&s}return o},w=26):(M.prototype.am=function(e,t,n,r,o,i){for(var s=16383&t,a=t>>14;--i>=0;){var l=16383&this[e],c=this[e++]>>14,u=a*l+c*s;o=((l=s*l+((16383&u)<<14)+n[r]+o)>>28)+(u>>14)+a*c,n[r++]=268435455&l}return o},w=28),M.prototype.DB=w,M.prototype.DM=(1<>>16)&&(e=t,n+=16),0!=(t=e>>8)&&(e=t,n+=8),0!=(t=e>>4)&&(e=t,n+=4),0!=(t=e>>2)&&(e=t,n+=2),0!=(t=e>>1)&&(e=t,n+=1),n}M.ZERO=z(0),M.ONE=z(1);var V,H,F=function(){function e(){this.i=0,this.j=0,this.S=[]}return e.prototype.init=function(e){var t,n,r;for(t=0;t<256;++t)this.S[t]=t;for(n=0,t=0;t<256;++t)n=n+this.S[t]+e[t%e.length]&255,r=this.S[t],this.S[t]=this.S[n],this.S[n]=r;this.i=0,this.j=0},e.prototype.next=function(){var e;return this.i=this.i+1&255,this.j=this.j+this.S[this.i]&255,e=this.S[this.i],this.S[this.i]=this.S[this.j],this.S[this.j]=e,this.S[e+this.S[this.i]&255]},e}(),q=null;function U(){if(null==V){for(V=new F;H<256;){var e=Math.floor(65536*Math.random());q[H++]=255&e}for(V.init(q),H=0;H0&&t.length>0?(this.n=P(e,16),this.e=parseInt(t,16)):console.error("Invalid RSA public key")},e.prototype.encrypt=function(e){var t=this.n.bitLength()+7>>3,n=function(e,t){if(t=0&&t>0;){var o=e.charCodeAt(r--);o<128?n[--t]=o:o>127&&o<2048?(n[--t]=63&o|128,n[--t]=o>>6|192):(n[--t]=63&o|128,n[--t]=o>>6&63|128,n[--t]=o>>12|224)}n[--t]=0;for(var i=new W,s=[];t>2;){for(s[0]=0;0==s[0];)i.nextBytes(s);n[--t]=s[0]}return n[--t]=2,n[--t]=0,new M(n)}(e,t);if(null==n)return null;var r=this.doPublic(n);if(null==r)return null;for(var o=r.toString(16),i=o.length,s=0;s<2*t-i;s++)o="0"+o;return o},e.prototype.setPrivate=function(e,t,n){null!=e&&null!=t&&e.length>0&&t.length>0?(this.n=P(e,16),this.e=parseInt(t,16),this.d=P(n,16)):console.error("Invalid RSA private key")},e.prototype.setPrivateEx=function(e,t,n,r,o,i,s,a){null!=e&&null!=t&&e.length>0&&t.length>0?(this.n=P(e,16),this.e=parseInt(t,16),this.d=P(n,16),this.p=P(r,16),this.q=P(o,16),this.dmp1=P(i,16),this.dmq1=P(s,16),this.coeff=P(a,16)):console.error("Invalid RSA private key")},e.prototype.generate=function(e,t){var n=new W,r=e>>1;this.e=parseInt(t,16);for(var o=new M(t,16);;){for(;this.p=new M(e-r,1,n),0!=this.p.subtract(M.ONE).gcd(o).compareTo(M.ONE)||!this.p.isProbablePrime(10););for(;this.q=new M(r,1,n),0!=this.q.subtract(M.ONE).gcd(o).compareTo(M.ONE)||!this.q.isProbablePrime(10););if(this.p.compareTo(this.q)<=0){var i=this.p;this.p=this.q,this.q=i}var s=this.p.subtract(M.ONE),a=this.q.subtract(M.ONE),l=s.multiply(a);if(0==l.gcd(o).compareTo(M.ONE)){this.n=this.p.multiply(this.q),this.d=o.modInverse(l),this.dmp1=this.d.mod(s),this.dmq1=this.d.mod(a),this.coeff=this.q.modInverse(this.p);break}}},e.prototype.decrypt=function(e){var t=P(e,16),n=this.doPrivate(t);return null==n?null:function(e,t){for(var n=e.toByteArray(),r=0;r=n.length)return null;for(var o="";++r191&&i<224?(o+=String.fromCharCode((31&i)<<6|63&n[r+1]),++r):(o+=String.fromCharCode((15&i)<<12|(63&n[r+1])<<6|63&n[r+2]),r+=2)}return o}(n,this.n.bitLength()+7>>3)},e.prototype.generateAsync=function(e,t,n){var r=new W,o=e>>1;this.e=parseInt(t,16);var i=new M(t,16),s=this,a=function(){var t=function(){if(s.p.compareTo(s.q)<=0){var e=s.p;s.p=s.q,s.q=e}var t=s.p.subtract(M.ONE),r=s.q.subtract(M.ONE),o=t.multiply(r);0==o.gcd(i).compareTo(M.ONE)?(s.n=s.p.multiply(s.q),s.d=i.modInverse(o),s.dmp1=s.d.mod(t),s.dmq1=s.d.mod(r),s.coeff=s.q.modInverse(s.p),setTimeout((function(){n()}),0)):setTimeout(a,0)},l=function(){s.q=I(),s.q.fromNumberAsync(o,1,r,(function(){s.q.subtract(M.ONE).gcda(i,(function(e){0==e.compareTo(M.ONE)&&s.q.isProbablePrime(10)?setTimeout(t,0):setTimeout(l,0)}))}))},c=function(){s.p=I(),s.p.fromNumberAsync(e-o,1,r,(function(){s.p.subtract(M.ONE).gcda(i,(function(e){0==e.compareTo(M.ONE)&&s.p.isProbablePrime(10)?setTimeout(l,0):setTimeout(c,0)}))}))};setTimeout(c,0)};setTimeout(a,0)},e.prototype.sign=function(e,t,n){var r=function(e){return Y[e]||""}(n),o=function(e,t){if(t>3)-11;return this.setSplitChn(e,r).forEach((function(e){n+=t.encrypt(e)})),n},e.prototype.decryptLong=function(e){var t="",n=this.n.bitLength()+7>>3,r=2*n;if(e.length>r){for(var o=e.match(new RegExp(".{1,"+r+"}","g"))||[],i=[],s=0;s=o.length)return null;n=n.concat(o.slice(i+1))}for(var s=n,a=-1,l="";++a191&&c<224?(l+=String.fromCharCode((31&c)<<6|63&s[a+1]),++a):(l+=String.fromCharCode((15&c)<<12|(63&s[a+1])<<6|63&s[a+2]),a+=2)}return l}(i,n)}else t=this.decrypt(e);return t},e.prototype.setSplitChn=function(e,t,n){void 0===n&&(n=[]);for(var r=e.split(""),o=0,i=0;it){var a=e.substring(0,i);return n.push(a),this.setSplitChn(e.substring(i),t,n)}}return n.push(e),n},e}(),Y={md2:"3020300c06082a864886f70d020205000410",md5:"3020300c06082a864886f70d020505000410",sha1:"3021300906052b0e03021a05000414",sha224:"302d300d06096086480165030402040500041c",sha256:"3031300d060960864801650304020105000420",sha384:"3041300d060960864801650304020205000430",sha512:"3051300d060960864801650304020305000440",ripemd160:"3021300906052b2403020105000414"},X={};X.lang={extend:function(e,t,n){if(!t||!e)throw new Error("YAHOO.lang.extend failed, please check that all dependencies are included.");var r=function(){};if(r.prototype=t.prototype,e.prototype=new r,e.prototype.constructor=e,e.superclass=t.prototype,t.prototype.constructor==Object.prototype.constructor&&(t.prototype.constructor=t),n){var o;for(o in n)e.prototype[o]=n[o];var i=function(){},s=["toString","valueOf"];try{/MSIE/.test(navigator.userAgent)&&(i=function(e,t){for(o=0;o15)throw"ASN.1 length too long to represent by 8x: n = "+e.toString(16);return(128+n).toString(16)+t},this.getEncodedHex=function(){return(null==this.hTLV||this.isModified)&&(this.hV=this.getFreshValueHex(),this.hL=this.getLengthHexFromValue(),this.hTLV=this.hT+this.hL+this.hV,this.isModified=!1),this.hTLV},this.getValueHex=function(){return this.getEncodedHex(),this.hV},this.getFreshValueHex=function(){return""}},G.asn1.DERAbstractString=function(e){G.asn1.DERAbstractString.superclass.constructor.call(this),this.getString=function(){return this.s},this.setString=function(e){this.hTLV=null,this.isModified=!0,this.s=e,this.hV=stohex(this.s)},this.setStringHex=function(e){this.hTLV=null,this.isModified=!0,this.s=null,this.hV=e},this.getFreshValueHex=function(){return this.hV},void 0!==e&&("string"==typeof e?this.setString(e):void 0!==e.str?this.setString(e.str):void 0!==e.hex&&this.setStringHex(e.hex))},X.lang.extend(G.asn1.DERAbstractString,G.asn1.ASN1Object),G.asn1.DERAbstractTime=function(e){G.asn1.DERAbstractTime.superclass.constructor.call(this),this.localDateToUTC=function(e){return utc=e.getTime()+6e4*e.getTimezoneOffset(),new Date(utc)},this.formatDate=function(e,t,n){var r=this.zeroPadding,o=this.localDateToUTC(e),i=String(o.getFullYear());"utc"==t&&(i=i.substr(2,2));var s=i+r(String(o.getMonth()+1),2)+r(String(o.getDate()),2)+r(String(o.getHours()),2)+r(String(o.getMinutes()),2)+r(String(o.getSeconds()),2);if(!0===n){var a=o.getMilliseconds();if(0!=a){var l=r(String(a),3);s=s+"."+(l=l.replace(/[0]+$/,""))}}return s+"Z"},this.zeroPadding=function(e,t){return e.length>=t?e:new Array(t-e.length+1).join("0")+e},this.getString=function(){return this.s},this.setString=function(e){this.hTLV=null,this.isModified=!0,this.s=e,this.hV=stohex(e)},this.setByDateValue=function(e,t,n,r,o,i){var s=new Date(Date.UTC(e,t-1,n,r,o,i,0));this.setByDate(s)},this.getFreshValueHex=function(){return this.hV}},X.lang.extend(G.asn1.DERAbstractTime,G.asn1.ASN1Object),G.asn1.DERAbstractStructured=function(e){G.asn1.DERAbstractString.superclass.constructor.call(this),this.setByASN1ObjectArray=function(e){this.hTLV=null,this.isModified=!0,this.asn1Array=e},this.appendASN1Object=function(e){this.hTLV=null,this.isModified=!0,this.asn1Array.push(e)},this.asn1Array=new Array,void 0!==e&&void 0!==e.array&&(this.asn1Array=e.array)},X.lang.extend(G.asn1.DERAbstractStructured,G.asn1.ASN1Object),G.asn1.DERBoolean=function(){G.asn1.DERBoolean.superclass.constructor.call(this),this.hT="01",this.hTLV="0101ff"},X.lang.extend(G.asn1.DERBoolean,G.asn1.ASN1Object),G.asn1.DERInteger=function(e){G.asn1.DERInteger.superclass.constructor.call(this),this.hT="02",this.setByBigInteger=function(e){this.hTLV=null,this.isModified=!0,this.hV=G.asn1.ASN1Util.bigIntToMinTwosComplementsHex(e)},this.setByInteger=function(e){var t=new M(String(e),10);this.setByBigInteger(t)},this.setValueHex=function(e){this.hV=e},this.getFreshValueHex=function(){return this.hV},void 0!==e&&(void 0!==e.bigint?this.setByBigInteger(e.bigint):void 0!==e.int?this.setByInteger(e.int):"number"==typeof e?this.setByInteger(e):void 0!==e.hex&&this.setValueHex(e.hex))},X.lang.extend(G.asn1.DERInteger,G.asn1.ASN1Object),G.asn1.DERBitString=function(e){if(void 0!==e&&void 0!==e.obj){var t=G.asn1.ASN1Util.newObject(e.obj);e.hex="00"+t.getEncodedHex()}G.asn1.DERBitString.superclass.constructor.call(this),this.hT="03",this.setHexValueIncludingUnusedBits=function(e){this.hTLV=null,this.isModified=!0,this.hV=e},this.setUnusedBitsAndHexValue=function(e,t){if(e<0||7>2),i=3&s,o=1):1==o?(n+=r(i<<2|s>>4),i=15&s,o=2):2==o?(n+=r(i),n+=r(s>>2),i=3&s,o=3):(n+=r(i<<2|s>>4),n+=r(15&s),o=0))}return 1==o&&(n+=r(i<<2)),n}(t),n)}catch(o){return!1}},e.prototype.getKey=function(e){if(!this.key){if(this.key=new Z,e&&"[object Function]"==={}.toString.call(e))return void this.key.generateAsync(this.default_key_size,this.default_public_exponent,e);this.key.generate(this.default_key_size,this.default_public_exponent)}return this.key},e.prototype.getPrivateKey=function(){return this.getKey().getPrivateKey()},e.prototype.getPrivateKeyB64=function(){return this.getKey().getPrivateBaseKeyB64()},e.prototype.getPublicKey=function(){return this.getKey().getPublicKey()},e.prototype.getPublicKeyB64=function(){return this.getKey().getPublicBaseKeyB64()},e.version=Q,e}();const te=ee},2480:()=>{}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var i=t[r]={id:r,loaded:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.loaded=!0,i.exports}return n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),n(9021)})();var yb=gb(vb.exports=mb());let bb;function _b(e){bb&&bb.postMessage(e)}Zd({type:"enabled"});var wb;function Sb(e,t){return"string"==typeof e?t:e}wb=yb,"undefined"!=typeof BroadcastChannel&&(bb=new BroadcastChannel("uni-push"),bb.onmessage=function({data:e}){Zd(e)},document.addEventListener("visibilitychange",(function(){"visible"===document.visibilityState&&wb.enableSocket(!0)}))),yb.init({appid:"__UNI__C939371",onError:e=>{console.error(e.error);const t={type:"clientId",cid:"",errMsg:e.error};Zd(t),_b(t)},onClientId:e=>{const t={type:"clientId",cid:e.cid};Zd(t),_b(t)},onlineState:e=>{const t={type:"lineState",online:e.online};Zd(t),_b(t)},onPushMsg:e=>{const t={type:"pushMsg",message:e.message};Zd(t),_b(t)}});const xb=e=>(t,n=ki())=>{!Bi&&Wr(e,t,n)},Eb=xb("onShow"),Tb=xb("onHide"),Cb=xb("onLaunch"),Mb=xb("onLoad"),kb=xb("onReachBottom"); -/*! - * pinia v2.1.7 - * (c) 2023 Eduardo San Martin Morote - * @license MIT - */ -let Ab;const Db=e=>Ab=e,Ob=Symbol();function Ib(e){return e&&"object"==typeof e&&"[object Object]"===Object.prototype.toString.call(e)&&"function"!=typeof e.toJSON}var Pb,Bb;(Bb=Pb||(Pb={})).direct="direct",Bb.patchObject="patch object",Bb.patchFunction="patch function";const Rb="undefined"!=typeof window;function Lb(){const e=Fe(!0),t=e.run((()=>hn({})));let n=[],r=[];const o=on({install(e){Db(o),o._a=e,e.provide(Ob,o),e.config.globalProperties.$pinia=o,r.forEach((e=>n.push(e))),r=[]},use(e){return this._a?n.push(e):r.push(e),this},_p:n,_a:null,_e:e,_s:new Map,state:t});return o}const Nb=()=>{};function $b(e,t,n,r=Nb){e.push(t);const o=()=>{const n=e.indexOf(t);n>-1&&(e.splice(n,1),r())};var i;return!n&&qe()&&(i=o,je&&je.cleanups.push(i)),o}function zb(e,...t){e.slice().forEach((e=>{e(...t)}))}const jb=e=>e();function Vb(e,t){e instanceof Map&&t instanceof Map&&t.forEach(((t,n)=>e.set(n,t))),e instanceof Set&&t instanceof Set&&t.forEach(e.add,e);for(const n in t){if(!t.hasOwnProperty(n))continue;const r=t[n],o=e[n];Ib(o)&&Ib(r)&&e.hasOwnProperty(n)&&!dn(r)&&!Qt(r)?e[n]=Vb(o,r):e[n]=r}return e}const Hb=Symbol();const{assign:Fb}=Object;function qb(e,t,n,r){const{state:o,actions:i,getters:s}=t,a=n.state.value[e];let l;return l=Ub(e,(function(){a||(n.state.value[e]=o?o():{});const t=function(e){const t=g(e)?new Array(e.length):{};for(const n in e)t[n]=Sn(e,n);return t}(n.state.value[e]);return Fb(t,i,Object.keys(s||{}).reduce(((t,r)=>(t[r]=on(zi((()=>{Db(n);const t=n._s.get(e);return s[r].call(t,t)}))),t)),{}))}),t,n,r,!0),l}function Ub(e,t,n={},r,o,i){let s;const a=Fb({actions:{}},n),l={deep:!0};let c,u,d,h=[],f=[];const p=r.state.value[e];let g;function m(t){let n;c=u=!1,"function"==typeof t?(t(r.state.value[e]),n={type:Pb.patchFunction,storeId:e,events:d}):(Vb(r.state.value[e],t),n={type:Pb.patchObject,payload:t,storeId:e,events:d});const o=g=Symbol();Ln().then((()=>{g===o&&(c=!0)})),u=!0,zb(h,n,r.state.value[e])}i||p||(r.state.value[e]={}),hn({});const v=i?function(){const{state:e}=n,t=e?e():{};this.$patch((e=>{Fb(e,t)}))}:Nb;function y(t,n){return function(){Db(r);const o=Array.from(arguments),i=[],s=[];function a(e){i.push(e)}function l(e){s.push(e)}let c;zb(f,{args:o,name:t,store:b,after:a,onError:l});try{c=n.apply(this&&this.$id===e?this:b,o)}catch(u){throw zb(s,u),u}return c instanceof Promise?c.then((e=>(zb(i,e),e))).catch((e=>(zb(s,e),Promise.reject(e)))):(zb(i,c),c)}}const b=Xt({_p:r,$id:e,$onAction:$b.bind(null,f),$patch:m,$reset:v,$subscribe(t,n={}){const o=$b(h,t,n.detached,(()=>i())),i=s.run((()=>dr((()=>r.state.value[e]),(r=>{("sync"===n.flush?u:c)&&t({storeId:e,type:Pb.direct,events:d},r)}),Fb({},l,n))));return o},$dispose:function(){s.stop(),h=[],f=[],r._s.delete(e)}});r._s.set(e,b);const _=(r._a&&r._a.runWithContext||jb)((()=>r._e.run((()=>(s=Fe()).run(t)))));for(const x in _){const t=_[x];if(dn(t)&&(!dn(S=t)||!S.effect)||Qt(t))i||(!p||Ib(w=t)&&w.hasOwnProperty(Hb)||(dn(t)?t.value=p[x]:Vb(t,p[x])),r.state.value[e][x]=t);else if("function"==typeof t){const e=y(x,t);_[x]=e,a.actions[x]=t}}var w,S;return Fb(b,_),Fb(rn(b),_),Object.defineProperty(b,"$state",{get:()=>r.state.value[e],set:e=>{m((t=>{Fb(t,e)}))}}),r._p.forEach((e=>{Fb(b,s.run((()=>e({store:b,app:r._a,pinia:r,options:a}))))})),p&&i&&n.hydrate&&n.hydrate(b.$state,p),c=!0,u=!0,b}function Wb(e,t,n){let r,o;const i="function"==typeof t;function s(e,n){const s=Oo();(e=e||(s?Do(Ob,null):null))&&Db(e),(e=Ab)._s.has(r)||(i?Ub(r,t,o,e):qb(r,o,e));return e._s.get(r)}return"string"==typeof e?(r=e,o=i?n:t):(o=e,r=e.id),s.$id=r,s}let Kb="Store";function Yb(e,t){return Array.isArray(t)?t.reduce(((t,n)=>(t[n]=function(){return e(this.$pinia)[n]},t)),{}):Object.keys(t).reduce(((n,r)=>(n[r]=function(){const n=e(this.$pinia),o=t[r];return"function"==typeof o?o.call(this,n):n[o]},n)),{})}const Xb=Yb;function Gb(e){{e=rn(e);const t={};for(const n in e){const r=e[n];(dn(r)||Qt(r))&&(t[n]=wn(e,n))}return t}}const Jb=Object.freeze(Object.defineProperty({__proto__:null,get MutationType(){return Pb},PiniaVuePlugin:function(e){e.mixin({beforeCreate(){const e=this.$options;if(e.pinia){const t=e.pinia;if(!this._provided){const e={};Object.defineProperty(this,"_provided",{get:()=>e,set:t=>Object.assign(e,t)})}this._provided[Ob]=t,this.$pinia||(this.$pinia=t),t._a=this,Rb&&Db(t)}else!this.$pinia&&e.parent&&e.parent.$pinia&&(this.$pinia=e.parent.$pinia)},destroyed(){delete this._pStores}})},acceptHMRUpdate:function(e,t){return()=>{}},createPinia:Lb,defineStore:Wb,getActivePinia:()=>Oo()&&Do(Ob)||Ab,mapActions:function(e,t){return Array.isArray(t)?t.reduce(((t,n)=>(t[n]=function(...t){return e(this.$pinia)[n](...t)},t)),{}):Object.keys(t).reduce(((n,r)=>(n[r]=function(...n){return e(this.$pinia)[t[r]](...n)},n)),{})},mapGetters:Xb,mapState:Yb,mapStores:function(...e){return e.reduce(((e,t)=>(e[t.$id+Kb]=function(){return t(this.$pinia)},e)),{})},mapWritableState:function(e,t){return Array.isArray(t)?t.reduce(((t,n)=>(t[n]={get(){return e(this.$pinia)[n]},set(t){return e(this.$pinia)[n]=t}},t)),{}):Object.keys(t).reduce(((n,r)=>(n[r]={get(){return e(this.$pinia)[t[r]]},set(n){return e(this.$pinia)[t[r]]=n}},n)),{})},setActivePinia:Db,setMapStoreSuffix:function(e){Kb=e},skipHydrate:function(e){return Object.defineProperty(e,Hb,{})},storeToRefs:Gb},Symbol.toStringTag,{value:"Module"})),Zb={baseUrl:"http://39.98.44.136:8080",StreamBaseURl:"http://39.98.44.136:8000",vioceBaseURl:"ws://39.98.44.136:6006/speech-recognition",DBversion:3,appInfo:{name:"青岛市就业服务",AIName:"小红",version:"1.0.0",logo:"",site_url:"",agreements:[{title:"隐私政策",url:""},{title:"用户服务协议",url:""}]},allowedFileNumber:2,allowedFileTypes:["text/plain","text/markdown","text/html","application/msword","application/vnd.openxmlformats-officedocument.wordprocessingml.document","application/pdf","application/vnd.ms-powerpoint","application/vnd.openxmlformats-officedocument.presentationml.presentation","text/csv","application/vnd.ms-excel","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"]};function Qb(e,t={},n="GET",r=!1,o={}){r&&Wv({title:"请稍后",mask:!0});let i="";a_().token&&(i=`${a_().token}`);const s=o||{};return s.Authorization=encodeURIComponent(i),new Promise(((o,i)=>{hv({url:Zb.baseUrl+e,method:n,data:t,header:s,success:e=>{var t,n;if(200===e.statusCode){const{code:t,msg:n}=e.data;if(200===t)return void o(e.data);qv({title:n,icon:"none"})}401!==(null==(t=e.data)?void 0:t.code)&&402!==(null==(n=e.data)?void 0:n.code)||a_().logOut();const r=new Error("请求出现异常,请联系工作人员");r.error=e,i(r)},fail:e=>{i(e)},complete:()=>{r&&Kv()}})}))}function e_(e){const t=new Intl.Segmenter("zh-Hans",{granularity:"word"}),n=[];for(let r of t.segment(e.toLowerCase()))n.push(r.segment);return n}const t_=["的","了","啊","哦","/","、"," ","","-","(",")","(",")","+","=","~","!","<",">","?","[","]","{","}"];function n_(e){return e.filter((e=>e&&!t_.includes(e)))}const r_=new class{constructor(){t(this,"config",{thresholdVal:.69,titleSimilarityWeight:.4,salaryMatchWeight:.2,areaMatchWeight:.2,educationMatchWeight:.2,experiencenMatchWeight:.1}),t(this,"userTitle",["Java","C","全栈工程师"]),t(this,"userSalaryMin",1e4),t(this,"userSalaryMax",15e3),t(this,"userArea",0),t(this,"userEducation",4),t(this,"userExperience",2),t(this,"jobTitle",""),t(this,"jobMinSalary",1e4),t(this,"jobMaxSalary",15e3),t(this,"jobLocationAreaCode",0),t(this,"jobEducation",4),t(this,"jobExperience",2),t(this,"jobCategory",""),t(this,"log",!1)}setUserInfo(e){this.userTitle=e.jobTitle,this.userSalaryMax=Number(e.salaryMax),this.userSalaryMin=Number(e.salaryMin),this.userArea=Number(e.area),this.userEducation=e.education,this.userExperience=this.getUserExperience(Number(e.age))}setJobInfo(e){this.jobTitle=e.jobTitle,this.jobMinSalary=e.minSalary,this.jobMaxSalary=e.maxSalary,this.jobLocationAreaCode=e.jobLocationAreaCode,this.jobEducation=e.education,this.jobExperience=e.experience,this.jobCategory=e.jobCategory}calculationMatchingDegreeJob(e){let t=null;t=this.jobCategory?this.calculateBestJobCategoryMatch(e.jobTitle||e.jobTitleString||[],this.jobCategory):this.calculateBestJobMatch(e.jobTitle||e.jobTitleString||[],this.jobTitle);const{bestMatchJobTitle:n,maxSimilarity:r}=t,o=this.calculateSalaryMatch(Number(e.salaryMin),Number(e.salaryMax),this.jobMinSalary,this.jobMaxSalary),i=this.calculateAreaMatch(Number(e.area),this.jobLocationAreaCode),s=this.calculateEducationMatch(e.education,this.jobEducation),a=this.config.titleSimilarityWeight*r+this.config.salaryMatchWeight*o+this.config.areaMatchWeight*i+this.config.educationMatchWeight*s;return this.log&&console.log(`Job ${job.jobTitle} 标题相似度 ${r} 薪资匹配度: ${o}学历匹配度: ${s} 区域匹配度: ${i} 综合匹配度: ${a.toFixed(2)}`),this.config.thresholdVal,{overallMatch:100*a.toFixed(2)+"%",data:e,maxSimilarity:r,salaryMatch:o,educationMatch:s,areaMatch:i}}calculationMatchingDegree(e){let t=null;t=e.jobCategory?this.calculateBestJobCategoryMatch(this.userTitle,e.jobCategory):this.calculateBestJobMatch(this.userTitle,e.jobTitle);const{bestMatchJobTitle:n,maxSimilarity:r}=t,o=this.calculateSalaryMatch(this.userSalaryMin,this.userSalaryMax,e.minSalary,e.maxSalary),i=this.calculateAreaMatch(this.userArea,e.jobLocationAreaCode),s=this.calculateEducationMatch(this.userEducation,e.education),a=this.config.titleSimilarityWeight*r+this.config.salaryMatchWeight*o+this.config.areaMatchWeight*i+this.config.educationMatchWeight*s;this.log&&console.log(`Job ${e.jobTitle} 标题相似度 ${r} 薪资匹配度: ${o}学历匹配度: ${s} 区域匹配度: ${i} 综合匹配度: ${a.toFixed(2)}`);if(a>this.config.thresholdVal)return{overallMatch:100*a.toFixed(2)+"%",data:e,maxSimilarity:r,salaryMatch:o,educationMatch:s,areaMatch:i}}getUserExperience(e){return 0?{min:0,max:5}:{min:5,max:10}}calculateExperienceMatch2(e,t){const n=this.mapJobExperience(t);return e.min<=n.max&&e.max>=n.min?1:e.min<=n.max&&e.max>n.min||e.max>=n.min&&e.mint?.75:0}calculateSalaryMatch(e,t,n,r){if(e>=n&&e<=r||t>=n&&t<=r)return 1;const o=Math.abs(e-n),i=Math.abs(t-r);return o>3e3&&i>3e3?0:.5}calculateAreaMatch(e,t){return e===t?1:.5}calculateBestJobCategoryMatch(e,t){let n=0,r="";for(let o=0;o{const o=function(e,t){const n=new Set(n_(e)),r=new Set(n_(t));let o=0;for(let i of n)r.has(i)&&o++;return o/n.size}(e_(e),e_(t));o>n&&(n=o,r=e)})),{bestMatchJobTitle:r,maxSimilarity:n}}calculateEducationMatch(e,t){return e===t||e>t?1:0}}; -/** - * UUID.js - RFC-compliant UUID Generator for JavaScript - * - * @author LiosK - * @version v5.1.0 - * @license Apache License 2.0: Copyright (c) 2010-2024 LiosK - * @packageDocumentation - */var o_;class i_{static generate(){var e=o_._getRandomInt,t=o_._hexAligner;return t(e(32),8)+"-"+t(e(16),4)+"-"+t(16384|e(12),4)+"-"+t(32768|e(14),4)+"-"+t(e(48),12)}static _getRandomInt(e){if(e<0||e>53)return NaN;var t=0|1073741824*Math.random();return e>30?t+1073741824*(0|Math.random()*(1<>>30-e}static _hexAligner(e,t){for(var n=e.toString(16),r=t-n.length,o="0";r>0;r>>>=1,o+=o)1&r&&(n=o+n);return n}static useMathRandom(){o_._getRandomInt=o_._mathPRNG}static genV4(){var e=o_._getRandomInt;return new o_(e(32),e(16),16384|e(12),128|e(6),e(8),e(48))}static parse(e){var t;if(t=/^\s*(urn:uuid:|\{)?([0-9a-f]{8})-([0-9a-f]{4})-([0-9a-f]{4})-([0-9a-f]{2})([0-9a-f]{2})-([0-9a-f]{12})(\})?\s*$/i.exec(e)){var n=t[1]||"",r=t[8]||"";if(n+r===""||"{"===n&&"}"===r||"urn:uuid:"===n.toLowerCase()&&""===r)return new o_(parseInt(t[2],16),parseInt(t[3],16),parseInt(t[4],16),parseInt(t[5],16),parseInt(t[6],16),parseInt(t[7],16))}return null}constructor(e,t,n,r,o,i){var s=o_.FIELD_NAMES,a=o_.FIELD_SIZES,l=o_._binAligner,c=o_._hexAligner;this.intFields=new Array(6),this.bitFields=new Array(6),this.hexFields=new Array(6);for(var u=0;u<6;u++){var d=parseInt(arguments[u]||0);this.intFields[u]=this.intFields[s[u]]=d,this.bitFields[u]=this.bitFields[s[u]]=l(d,a[u]),this.hexFields[u]=this.hexFields[s[u]]=c(d,a[u]>>>2)}this.version=this.intFields.timeHiAndVersion>>>12&15,this.bitString=this.bitFields.join(""),this.hexNoDelim=this.hexFields.join(""),this.hexString=this.hexFields[0]+"-"+this.hexFields[1]+"-"+this.hexFields[2]+"-"+this.hexFields[3]+this.hexFields[4]+"-"+this.hexFields[5],this.urn="urn:uuid:"+this.hexString}static _binAligner(e,t){for(var n=e.toString(2),r=t-n.length,o="0";r>0;r>>>=1,o+=o)1&r&&(n=o+n);return n}toString(){return this.hexString}equals(e){if(!(e instanceof o_))return!1;for(var t=0;t<6;t++)if(this.intFields[t]!==e.intFields[t])return!1;return!0}static genV1(){null==o_._state&&(o_._state=new s_);var e=(new Date).getTime(),t=o_._state;e!=t.timestamp?(e>>8|128,s=255&t.sequence;return new o_(r,n.mid,o,i,s,t.node)}static resetState(){o_._state=new s_}static _getTimeFieldValues(e){var t=e-Date.UTC(1582,9,15),n=t/4294967296*1e4&268435455;return{low:1e4*(268435455&t)%4294967296,mid:65535&n,hi:n>>>16,timestamp:t}}static genV6(){null==o_._state&&(o_._state=new s_);var e=(new Date).getTime(),t=o_._state;e!=t.timestamp?(e>>12,s=4095&o|24576;t.sequence&=16383;var a=t.sequence>>>8|128,l=255&t.sequence;return new o_(r,i,s,a,l,t.node)}}o_=i_,i_._mathPRNG=o_._getRandomInt,"undefined"!=typeof crypto&&crypto.getRandomValues&&(o_._getRandomInt=e=>{if(e<0||e>53)return NaN;var t=new Uint32Array(e>32?2:1);return crypto.getRandomValues(t),e>32?t[0]+4294967296*(t[1]>>>64-e):t[0]>>>32-e}),i_.FIELD_NAMES=["timeLow","timeMid","timeHiAndVersion","clockSeqHiAndReserved","clockSeqLow","node"],i_.FIELD_SIZES=[32,16,16,8,8,48],i_.NIL=new o_(0,0,0,0,0,0),i_._state=null;class s_{constructor(){var e=i_._getRandomInt;this.timestamp=0,this.tick=0,this.sequence=e(14),this.node=1099511627776*(1|e(8))+e(40)}}const a_=Wb("user",(()=>{const e=hn(!1),t=hn({}),n=hn({}),r=hn(""),o=hn({}),i=hn("0%"),s=hn(Xm("seesionId")||""),a=()=>new Promise(((e,t)=>{Qb("/app/user/resume",{},"get").then((t=>{i.value=function(e){const t=["name","age","sex","birthDate","education","politicalAffiliation","phone","salaryMin","salaryMax","area","status","jobTitleId","jobTitle"],n=t.length;return(t.filter((t=>{const n=e[t];return null!==n&&""!==n&&!(Array.isArray(n)&&0===n.length)})).length/n*100).toFixed(0)+"%"}(t.data),r_.setUserInfo(t.data),l(t),e(t)}))})),l=n=>{t.value=n.data,e.value=!0};return{hasLogin:e,userInfo:t,token:r,resume:o,login:n=>{e.value=!0,t.value=n,openId.value=n.wxOpenId,r.value=n.token,Km({key:"token",data:n.token})},logOut:()=>{e.value=!1,r.value="",o.value={},t.value={},n.value={},Jm("userInfo"),Jm("token"),Ph({url:"/pages/login/login"})},loginSetToken:async e=>(r.value=e,Wm("token",e),a()),getUserResume:a,initSeesionId:()=>{const e=i_.generate();Wm("seesionId",e),s.value=e},seesionId:s,Completion:i}}));let l_=null;const c_=Wb("dict",(()=>{const e=hn(!1),t=Xt({education:[],experience:[],area:[],scale:[],isPublish:[],sex:[],affiliation:[],industry:[]});async function n(e,t){const n=await Qb(`/app/common/dict/${e}`);if(200===n.code&&n.data){return n.data.map((e=>({text:e.dictLabel,label:e.dictLabel,value:t?Number(e.dictValue):e.dictValue,key:e.dictCode,listClass:e.listClass,status:e.listClass})))}return[]}return{getDictData:async(r,o)=>{try{if(r&&o)return n(r).then((e=>(t[o]=e,e)));const[i,s,a,l,c,u]=await Promise.all([n("education"),n("experience"),n("area",!0),n("scale"),n("app_sex"),n("political_affiliation")]);t.education=i,t.experience=s,t.area=a,t.scale=l,t.sex=c,t.affiliation=u,e.value=!0,async function(){if(t.industry.length)return;const e=await Qb("/app/common/industry/treeselect");200===e.code&&e.data&&(t.industry=e.data,l_=function(e){const t=new Map;return function e(n){for(const r of n)t.set(r.id,r),r.children&&r.children.length&&e(r.children)}(e),t}(e.data))}()}catch(i){console.error("Error fetching dictionary data:",i)}},dictLabel:function(e,n){if(t[e])for(let r=0;r{c_().getDictData(),Kd((()=>{xv({url:"/pages/chat/chat"})}));let n=Xm("token")||"";n?a_().loginSetToken(n).then((()=>{t.msg("登录成功")})):Ph({url:"/pages/login/login"})})),Eb((()=>{console.log("App Show")})),Tb((()=>{console.log("App Hide")})),()=>{}}};Jg(u_,{init:Xg,setup(e){const t=Pu(),n=()=>{var n;n=e,Object.keys(Xd).forEach((e=>{Xd[e].forEach((t=>{Wr(e,t,n)}))}));const{onLaunch:r,onShow:o,onPageNotFound:i}=e,s=function({path:e,query:t}){return d(zf,{path:e,query:t}),d(jf,zf),d({},zf)}({path:t.path.slice(1)||__uniRoutes[0].meta.route,query:Ce(t.query)});if(r&&L(r,s),o&&L(o,s),!t.matched.length){const e={notFound:!0,openType:"appLaunch",path:t.path,query:{},scene:1001};Nh(),i&&L(i,e)}};return Do(tl).isReady().then(n),Xr((()=>{window.addEventListener("resize",Ae(Qg,50,{setTimeout:setTimeout,clearTimeout:clearTimeout})),window.addEventListener("message",em),document.addEventListener("visibilitychange",tm),function(){let e=null;try{e=window.matchMedia("(prefers-color-scheme: dark)")}catch(t){}if(e){let t=e=>{My.emit("onThemeChange",{theme:e.matches?"dark":"light"})};e.addEventListener?e.addEventListener("change",t):e.addListener(t)}}()})),t.query},before(e){e.mpType="app";const{setup:t}=e,n=()=>(ri(),li(ay));e.setup=(e,r)=>{const o=t&&t(e,r);return y(o)?n:o},e.render=n}});const d_=e=>{if("object"!=typeof e||null===e)return e;let t;t=e?[]:{};for(let n in e)e.hasOwnProperty(n)&&(t[n]=d_(e[n]));return t},h_=(e,t=1500,n=!1,r="none",o)=>{!1!==Boolean(e)&&qv({title:e,duration:t,mask:n,icon:r,image:o})};const f_=e=>{const t=e=>("object"==typeof e||"function"==typeof e)&&"null"!==e;if(!t(e))throw new Error("参数不是对象");const n=Array.isArray(e)?[...e]:{...e};return Object.keys(n).forEach((e=>{t(n[e])&&(n[e]=f_(n[e]))})),n};function p_(e){return t=>e.test(t)}const g_=p_(/^1[3-9]{1}\d{9}/),m_=p_(/^[a-z0-9_\.-]+@[a-z0-9_\.-]+[a-z0-9]{2,6}$/i);function v_(e){return e*Math.PI/180}function y_(e){return e*(Math.PI/180)}const b_=new class{constructor(){const e=Bm();this.systemInfo=e}};function __(e){const t=new Date(e);return`${t.getFullYear()}-${String(t.getMonth()+1).padStart(2,"0")}-${String(t.getDate()).padStart(2,"0")} ${String(t.getHours()).padStart(2,"0")}:${String(t.getMinutes()).padStart(2,"0")}:${String(t.getSeconds()).padStart(2,"0")}`}function w_(e,t="createTime"){const n=e.sort(((e,n)=>new Date(n[t])-new Date(e[t]))),r=[];let o="",i="";const s=new Date,a=s.toISOString().split("T")[0],l=new Date(s.setDate(s.getDate()-1)).toISOString().split("T")[0],c=new Date(s.setDate(s.getDate()-1)).toISOString().split("T")[0];return n.forEach((e=>{const n=e[t].replace("T"," ").split(" ")[0];let s=n;n===a?s="今天":n===l?s="昨天":n===c&&(s="前天"),o!==n&&(r.push({title:s,isTitle:!0}),o=n,i=s),r.push({...e,isTitle:!1})})),[r,i]}function S_(e){return`${e.getFullYear()}-${String(e.getMonth()+1).padStart(2,"0")}-${String(e.getDate()).padStart(2,"0")}`}const x_={msg:h_,prePage:()=>{let e=rf();return e[e.length-2].$vm},sleep:function(e){return new Promise((t=>setTimeout(t,e)))},request:function({url:e,method:t="GET",data:n={},load:r=!1,header:o={}}={}){return new Promise(((o,i)=>{r&&Wv({title:"请稍候",mask:!0});let s="";a_().token&&(s=`${a_().userInfo.token}${a_().token}`),hv({url:Zb.baseUrl+e,method:t,data:n,header:{Authorization:s||""},success:e=>{var t,n;if(200===e.statusCode){const{code:t,msg:n}=e.data;if(200===t)return void o(e.data);qv({title:n,icon:"none"})}if(401===(null==(t=e.data)?void 0:t.code)||402===(null==(n=e.data)?void 0:n.code))return a_().logOut(),void qv({title:"登录过期,请重新登录",icon:"none"});const r=new Error("请求出现异常,请联系工作人员");r.error=e,i(r)},fail:e=>i(e),complete(){r&&Kv()}})}))},createRequest:Qb,streamRequest:function(e,t={},n,r,o){const i=a_(),s={Authorization:i.token?encodeURIComponent(i.token):"",Accept:"text/event-stream","Content-Type":"application/json;charset=UTF-8"};return new Promise((async(i,a)=>{var l,c,u,d,h,f;try{const r=await fetch(Zb.StreamBaseURl+e,{method:"POST",headers:s,body:JSON.stringify(t)});if(!r.ok)throw new Error(`HTTP 错误: ${r.status}`);const a=r.body.getReader(),p=new TextDecoder("utf-8");let g="";for(;;){const{done:e,value:t}=await a.read();if(e)break;g+=p.decode(t,{stream:!0});let r=g.split("\n");g=r.pop();for(let s of r)if(s.startsWith("data: ")){const e=s.slice(6).trim();if("[DONE]"===e)return o&&o(),void i();try{const t=JSON.parse(e),r=(null==(u=null==(c=null==(l=null==t?void 0:t.choices)?void 0:l[0])?void 0:c.delta)?void 0:u.content)??(null==(f=null==(h=null==(d=null==t?void 0:t.choices)?void 0:d[0])?void 0:h.delta)?void 0:f.reasoning_content)??"";r&&n&&n(r)}catch(C_){console.error("JSON 解析失败:",C_,"原始数据:",e)}}}o&&o(),i()}catch(p){console.error("Stream 请求失败:",p),r&&r(p),a(p)}}))},chatRequest:function(e,t={},n="GET",r=!1,o={}){r&&Wv({title:"请稍后",mask:!0});let i="";a_().token&&(i=`${a_().token}`);const s=o||{};return s.Authorization=encodeURIComponent(i),new Promise(((o,i)=>{hv({url:Zb.StreamBaseURl+e,method:n,data:t,header:s,success:e=>{var t,n;if(200===e.statusCode){const{code:t,msg:n}=e.data;if(200===t)return void o(e.data);qv({title:n,icon:"none"})}401!==(null==(t=e.data)?void 0:t.code)&&402!==(null==(n=e.data)?void 0:n.code)||a_().logOut();const r=new Error("请求出现异常,请联系工作人员");r.error=e,i(r)},fail:e=>{i(e)},complete:()=>{r&&Kv()}})}))},insertSortData:w_,uploadFile:function(e,t=!1){t&&Wv({title:"请稍后",mask:!0});let n="";a_().token&&(n=`${a_().token}`);const r={};return r.Authorization=encodeURIComponent(n),new Promise(((n,o)=>{mv({url:Zb.baseUrl+"/app/file/upload",filePath:e,name:"file",header:r,success:e=>{if(200===e.statusCode)return n(e.data)},fail:e=>{o(e)},complete:()=>{t&&Kv()}})}))},formatFileSize:function(e){return e<1024?e+" B":e<1048576?(e/1024).toFixed(2)+" KB":e<1073741824?(e/1048576).toFixed(2)+" MB":(e/1073741824).toFixed(2)+" GB"}},E_={$api:x_,navTo:function(e,t){t&&a_().hasLogin?xv({url:"/pages/login/login"}):xv({url:e})},cloneDeep:f_,formatDate:__,getdeviceInfo:function(){const e={statusBarHeight:0,topHeight:0,navHeight:0,windowHeight:0,tabBarHight:0};let t=Bm();return e.windowHeight=t.screenHeight,e.tabBarHight=t.screenHeight-t.safeArea.bottom,e.statusBarHeight=t.statusBarHeight,{...e}},checkingPhoneRegExp:g_,checkingEmailRegExp:m_,throttle:function(e,t=300){let n=!0,r=null,o=null;return function(...i){if(r=i,o=this,!n)return!1;n=!1,setTimeout((()=>{e.apply(o,r),n=!0,r=null,o=null}),t)}},debounce:function(e,t){return function(n){let r=this,o=n;clearTimeout(e.id),e.id=setTimeout((function(){e.call(r,o)}),t)}},haversine:function(e,t,n,r){const o=v_(e),i=v_(n),s=v_(n-e),a=v_(r-t),l=Math.sin(s/2)*Math.sin(s/2)+Math.cos(o)*Math.cos(i)*Math.sin(a/2)*Math.sin(a/2);return 6371*(2*Math.atan2(Math.sqrt(l),Math.sqrt(1-l)))},getDistanceFromLatLonInKm:function(e,t,n,r){const o=y_(n-e),i=y_(r-t),s=Math.sin(o/2)*Math.sin(o/2)+Math.cos(y_(e))*Math.cos(y_(n))*Math.sin(i/2)*Math.sin(i/2),a=6371*(2*Math.atan2(Math.sqrt(s),Math.sqrt(1-s)));return{km:a,m:1e3*a}},vacanciesTo:function(e){return e>=0?e+"人":"不限人数"},salaryGlobal:function(e="min"){const t=[2,5,10,15,20,25,30,50,80,100];return[2,5,10,15,20,25,30,50,80].map(((e,n)=>({label:e+"k",value:1e3*e,children:d_(t).splice(n).map((e=>({label:e+"k",value:1e3*e})))})))},customSystem:b_,setCheckedNodes:function(e,t){e.forEach((e=>{e.checkednumber=0;const n=r=>{t.includes(r.id)&&(r.checked=!0),r!==e&&r.checked&&e.checkednumber++,r.children&&r.children.forEach((e=>n(e)))};n(e)}))},formatTotal:e=>{if(e<10)return e.toString();const t=Math.pow(10,Math.floor(Math.log10(e)));return`${Math.floor(e/t)*t}+`},getWeeksOfMonth:function(e,t){const n=new Date(e,t-1,1),r=new Date(e,t,0),o=[];let i=[];for(let s=new Date(n);s<=r;s.setDate(s.getDate()+1)){if(0===i.length&&1!==s.getDay()){let e=new Date(s);for(e.setDate(s.getDate()-(0===s.getDay()?6:s.getDay()-1));en},parseQueryParams:function(e=window.location.href){var t;const n=null==(t=e.split("?")[1])?void 0:t.split("#")[0],r={};return n?(n.split("&").forEach((e=>{const[t,n]=e.split("=");t&&(r[decodeURIComponent(t)]=decodeURIComponent(n||""))})),r):r}};var T_,C_;T_=self,C_=function(){return e={138:e=>{function t(e,t){if((e=e.replace(/\s+/g,""))===(t=t.replace(/\s+/g,"")))return 1;if(e.length<2||t.length<2)return 0;let n=new Map;for(let o=0;o0&&(n.set(e,i-1),r++)}return 2*r/(e.length+t.length-2)}e.exports={compareTwoStrings:t,findBestMatch:function(e,n){if(r=n,"string"!=typeof e||!Array.isArray(r)||!r.length||r.find((function(e){return"string"!=typeof e})))throw new Error("Bad arguments: First argument should be a string, second should be an array of strings");var r;const o=[];let i=0;for(let s=0;so[i].rating&&(i=s)}return{ratings:o,bestMatch:o[i],bestMatchIndex:i}}}}},t={},function n(r){if(t[r])return t[r].exports;var o=t[r]={exports:{}};return e[r](o,o.exports,n),o.exports}(138);var e,t},"object"==typeof exports&&"object"==typeof module?module.exports=C_():"function"==typeof define&&define.amd?define([],C_):"object"==typeof exports?exports.stringSimilarity=C_():T_.stringSimilarity=C_();const M_=(e,t)=>{const n=e.__vccOpts||e;for(const[r,o]of t)n[r]=o;return n};const k_=M_({},[["render",function(e,t){const n=gg,r=xg;return ri(),li(r,{class:"no-bounce-page"},{default:Jn((()=>[gi(n,{"scroll-y":"","show-scrollbar":!1,class:"scroll-area"},{default:Jn((()=>[io(e.$slots,"default",{},void 0,!0)])),_:3})])),_:3})}],["__scopeId","data-v-8f54c7a0"]]);(function(){const e=Ls(u_);return e.component("NoBouncePage",k_),e.provide("globalFunction",{...E_,similarityJobs:r_}),e.provide("deviceInfo",E_.getdeviceInfo()),e.use(Lb()),{app:e,Pinia:Jb}})().app.use(jg).mount("#app");export{pi as $,Bm as A,Au as B,Wb as C,c_ as D,Gb as E,Jo as F,Mb as G,mn as H,mr as I,as as J,Ap as K,Eb as L,bg as M,vg as N,Rh as O,ag as P,eg as Q,wv as R,gg as S,h_ as T,Sg as U,Kp as V,Bp as W,gy as X,Ey as Y,xl as Z,M_ as _,li as a,qv as a0,Yr as a1,qf as a2,Tu as a3,Ff as a4,zi as a5,Um as a6,hg as a7,dr as a8,Ln as a9,Qr as aa,dn as ab,Bv as ac,ov as ad,nv as ae,Zb as af,rn as ag,w_ as ah,i_ as ai,__ as aj,x_ as ak,Xm as al,Wm as am,Rm as an,Wd as ao,nr as ap,kb as aq,ai as b,Vd as c,ve as d,Ps as e,io as f,Zm as g,ye as h,mi as i,bi as j,gi as k,xg as l,ap as m,me as n,ri as o,Do as p,hn as q,oo as r,Xt as s,Xr as t,a_ as u,Sb as v,Jn as w,or as x,yi as y,X as z}; diff --git a/unpackage/dist/build/web/assets/matchingDegree.C4MMzh2G.js b/unpackage/dist/build/web/assets/matchingDegree.C4MMzh2G.js deleted file mode 100644 index d84f2dd..0000000 --- a/unpackage/dist/build/web/assets/matchingDegree.C4MMzh2G.js +++ /dev/null @@ -1 +0,0 @@ -import{a5 as a,o as t,a as e,w as n,y as r,z as s,l as o,p as l}from"./index-DdiBakOJ.js";const u={__name:"Salary-Expectation",props:["minSalary","maxSalary","isMonth"],setup(l){const{minSalary:u,maxSalary:i,isMonth:c}=l,m=a((()=>u&&i?c?`${u}-${i}/月`:`${u/1e3}k-${i/1e3}k`:"面议"));return(a,l)=>{const u=o;return t(),e(u,null,{default:n((()=>[r(s(m.value),1)])),_:1})}}},i={__name:"matchingDegree",props:["job"],setup(u){const{job:i}=u,{similarityJobs:c,throttle:m}=l("globalFunction"),p=a((()=>{if(!i)return"";const a=c.calculationMatchingDegree(i);return a?"匹配度 "+a.overallMatch:""}));return(a,l)=>{const u=o;return t(),e(u,null,{default:n((()=>[r(s(p.value),1)])),_:1})}}};export{u as _,i as a}; diff --git a/unpackage/dist/build/web/assets/mine-CZyhxTjL.css b/unpackage/dist/build/web/assets/mine-CZyhxTjL.css deleted file mode 100644 index 1b97478..0000000 --- a/unpackage/dist/build/web/assets/mine-CZyhxTjL.css +++ /dev/null @@ -1 +0,0 @@ -.app-container[data-v-ca607a35]{width:100%;min-height:calc(100vh - var(--window-top) - var(--status-bar-height) - var(--window-bottom));background:linear-gradient(180deg,#4778ec,#002979);display:flex;flex-direction:column}.app-container .mine-AI[data-v-ca607a35]{height:1.3125rem;font-family:Inter,Inter;font-weight:400;font-size:1.09375rem;color:#fff;line-height:1.28125rem;padding:2.65625rem 0 0 .9375rem}.app-container .mine-userinfo[data-v-ca607a35]{display:flex;justify-content:flex-start;align-items:center;padding:2rem}.app-container .mine-userinfo .userindo-head[data-v-ca607a35]{width:3.15625rem;height:3.15625rem;background:#d9d9d9;border-radius:50%;overflow:hidden;margin-right:1.25rem}.app-container .mine-userinfo .userindo-head .userindo-head-img[data-v-ca607a35]{width:100%;height:100%}.app-container .mine-userinfo .userinfo-ls[data-v-ca607a35]{display:flex;flex-direction:column;align-items:flex-start}.app-container .mine-userinfo .userinfo-ls .userinfo-ls-name[data-v-ca607a35]{font-size:1.3125rem;color:#fff}.app-container .mine-userinfo .userinfo-ls .userinfo-ls-resume[data-v-ca607a35]{font-size:.65625rem;color:#d9d9d9}.app-container .mine-tab[data-v-ca607a35]{margin:0 .9375rem;height:3.90625rem;background:#fff;border-radius:.53125rem;display:flex;padding:.46875rem}.app-container .mine-tab .tab-item[data-v-ca607a35]{display:flex;flex-direction:column;width:25%;align-items:center;justify-content:center;position:relative}.app-container .mine-tab .tab-item .item-img[data-v-ca607a35]{height:1.71875rem;width:1.5625rem}.app-container .mine-tab .tab-item .item-text[data-v-ca607a35]{font-size:.65625rem;color:#000;line-height:.78125rem;text-align:center;margin-top:.3125rem}.app-container .mine-tab .tab-item[data-v-ca607a35]:after{position:absolute;right:0;content:"";width:0;height:3rem;border-radius:0;border-right:.0625rem solid #4778ec}.app-container .mine-tab .tab-item[data-v-ca607a35]:last-child:after{border-right:0}.app-container .mine-tab .tab-item:nth-child(2)>.item-img[data-v-ca607a35]{width:1.59375rem;height:1.40625rem;margin-top:.1875rem;margin-bottom:.125rem}.app-container .mine-tab .tab-item:nth-child(3)>.item-img[data-v-ca607a35]{width:1.9375rem;height:1.28125rem;margin-top:.1875rem;margin-bottom:.3125rem}.app-container .mine-tab .tab-item:nth-child(4)>.item-img[data-v-ca607a35]{width:1.40625rem;height:1.46875rem;margin-bottom:.25rem}.app-container .mine-options[data-v-ca607a35]{margin:1.34375rem .9375rem;min-height:4.84375rem;background:#fff;border-radius:.53125rem;padding:.75rem 1.40625rem;display:flex;flex-direction:column;min-height:-webkit-min-content;min-height:min-content}.app-container .mine-options .mine-options-item[data-v-ca607a35]{height:2.5rem;font-size:.875rem;color:#000;line-height:2.5rem;border-bottom:.0625rem solid #4778ec;padding:0 .9375rem}.app-container .mine-options .mine-logout[data-v-ca607a35]{margin:7.8125rem auto 0;width:12.46875rem;height:3rem;background:#ffad47;border-radius:.53125rem;text-align:center;line-height:3rem;color:#fff;font-size:1.09375rem} diff --git a/unpackage/dist/build/web/assets/packageA-pages-Intendedposition-Intendedposition.D5MhGCAJ.js b/unpackage/dist/build/web/assets/packageA-pages-Intendedposition-Intendedposition.D5MhGCAJ.js deleted file mode 100644 index 3e6793d..0000000 --- a/unpackage/dist/build/web/assets/packageA-pages-Intendedposition-Intendedposition.D5MhGCAJ.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as a,p as e,u as t,s,G as l,aq as o,v as c,x as i,a as n,w as r,l as d,o as u,k as p,b as m,r as g,F as f,y as _,z as x,j as b,H as w}from"./index-DdiBakOJ.js";import{_ as y,a as v}from"./matchingDegree.C4MMzh2G.js";import{_ as j}from"./dict-Label.ot3xNx0t.js";const T=a({__name:"Intendedposition",setup(a){const{$api:T,navTo:h,vacanciesTo:k}=e("globalFunction");t(),s({});const S=s({page:0,list:[],total:0,maxPage:1,pageSize:10});function z(a="add"){"refresh"===a&&(S.page=0,S.maxPage=1),"add"===a&&S.page{const{rows:t,total:s}=e;if("add"===a){const a=S.pageSize*(S.page-1),e=S.list.length,s=t;S.list.splice(a,e,...s)}else S.list=t;S.total=e.total,S.maxPage=Math.ceil(S.total/S.pageSize)}))}return l((()=>{console.log("onLoad"),z()})),o((()=>{z()})),(a,e)=>{const t=d,s=c(i("Salary-Expectation"),y),l=c(i("matchingDegree"),v);return u(),n(t,{class:"collection-content"},{default:r((()=>[p(t,{class:"one-cards"},{default:r((()=>[(u(!0),m(f,null,g(S.list,((a,e)=>(u(),n(t,{class:"card-box",key:e,onClick:e=>{return t=a.jobId,void h(`/packageA/pages/post/post?jobId=${btoa(t)}`);var t}},{default:r((()=>[p(t,{class:"box-row mar_top0"},{default:r((()=>[p(t,{class:"row-left"},{default:r((()=>[_(x(a.jobTitle),1)])),_:2},1024),p(t,{class:"row-right"},{default:r((()=>[p(s,{"max-salary":a.maxSalary,"min-salary":a.minSalary},null,8,["max-salary","min-salary"])])),_:2},1024)])),_:2},1024),p(t,{class:"box-row"},{default:r((()=>[p(t,{class:"row-left"},{default:r((()=>[a.educatio?(u(),n(t,{key:0,class:"row-tag"},{default:r((()=>[p(j,{dictType:"education",value:a.education},null,8,["value"])])),_:2},1024)):b("",!0),a.experience?(u(),n(t,{key:1,class:"row-tag"},{default:r((()=>[p(j,{dictType:"experience",value:a.experience},null,8,["value"])])),_:2},1024)):b("",!0)])),_:2},1024)])),_:2},1024),p(t,{class:"box-row mar_top0"},{default:r((()=>[p(t,{class:"row-item mineText"},{default:r((()=>[_(x(a.postingDate||"发布日期"),1)])),_:2},1024),p(t,{class:"row-item mineText"},{default:r((()=>[_(x(w(k)(a.vacancies)),1)])),_:2},1024),p(t,{class:"row-item mineText textblue"},{default:r((()=>[p(l,{job:a},null,8,["job"])])),_:2},1024),p(t,{class:"row-item"})])),_:2},1024),p(t,{class:"box-row"},{default:r((()=>[p(t,{class:"row-left mineText"},{default:r((()=>[_(x(a.companyName),1)])),_:2},1024),p(t,{class:"row-right mineText"},{default:r((()=>[_(" 青岛 "),p(j,{dictType:"area",value:a.jobLocationAreaCode},null,8,["value"])])),_:2},1024)])),_:2},1024)])),_:2},1032,["onClick"])))),128))])),_:1})])),_:1})}}},[["__scopeId","data-v-6c0afbd6"]]);export{T as default}; diff --git a/unpackage/dist/build/web/assets/packageA-pages-UnitDetails-UnitDetails.DhIgQ4n8.js b/unpackage/dist/build/web/assets/packageA-pages-UnitDetails-UnitDetails.DhIgQ4n8.js deleted file mode 100644 index 801bbaf..0000000 --- a/unpackage/dist/build/web/assets/packageA-pages-UnitDetails-UnitDetails.DhIgQ4n8.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as a,p as e,s as l,q as s,G as t,v as c,x as o,a as i,w as n,l as u,o as d,k as p,y as r,z as f,b as _,r as m,F as y,U as g,H as v,j as b}from"./index-DdiBakOJ.js";import{_ as j}from"./uni-icons.OqqMV__G.js";import{_ as x}from"./dict-Label.ot3xNx0t.js";const h=a({__name:"UnitDetails",setup(a){const{$api:h,navTo:k}=e("globalFunction"),z=l({page:0,list:[],total:0,maxPage:1,pageSize:10}),S=s({});return t((a=>{var e;console.log(a),e=a.companyId,h.createRequest(`/app/company/${e}`).then((a=>{S.value=a.data,function(a="add"){"refresh"===a&&(z.page=0,z.maxPage=1),"add"===a&&z.page{z.list=a.rows,z.total=a.total,z.maxPage=Math.ceil(z.total/z.pageSize)}))}()}))})),(a,e)=>{const l=g,s=c(o("uni-icons"),j),t=u;return d(),i(t,{class:"container"},{default:n((()=>[p(t,{class:"company-header"},{default:n((()=>[p(l,{class:"company-name"},{default:n((()=>[r(f(S.value.name),1)])),_:1}),p(t,{class:"company-info"},{default:n((()=>[p(t,{class:"location"},{default:n((()=>[p(s,{type:"location-filled",color:"#4778EC",size:"24"}),r(" 青岛 "+f(S.value.location),1)])),_:1}),p(t,{class:"industry",style:{display:"inline-block"}},{default:n((()=>[r(f(S.value.industry)+" ",1),p(x,{dictType:"scale",value:S.value.scale},null,8,["value"])])),_:1})])),_:1})])),_:1}),p(t,{class:"hr"}),p(t,{class:"company-description"},{default:n((()=>[p(t,{class:"section-title"},{default:n((()=>[r("单位介绍")])),_:1}),p(l,{class:"description"},{default:n((()=>[r(f(S.value.description),1)])),_:1})])),_:1}),p(t,{class:"job-list"},{default:n((()=>[p(l,{class:"section-title"},{default:n((()=>[r("在招职位")])),_:1}),(d(!0),_(y,null,m(z.list,(a=>(d(),i(t,{class:"job-row",key:a.id,onClick:e=>v(k)(`/packageA/pages/post/post?jobId=${a.jobId}`)},{default:n((()=>[p(t,{class:"left"},{default:n((()=>[p(l,{class:"job-title"},{default:n((()=>[r(f(a.jobTitle),1)])),_:2},1024),p(t,{class:"job-tags"},{default:n((()=>[p(t,{class:"tag"},{default:n((()=>[p(x,{dictType:"education",value:a.education},null,8,["value"])])),_:2},1024),p(t,{class:"tag"},{default:n((()=>[p(x,{dictType:"experience",value:a.experience},null,8,["value"])])),_:2},1024),p(t,{class:"tag"},{default:n((()=>[r(f(a.vacancies)+"人",1)])),_:2},1024)])),_:2},1024),p(l,{class:"location"},{default:n((()=>[r(" 青岛 "),p(x,{dictType:"area",value:a.jobLocationAreaCode},null,8,["value"])])),_:2},1024)])),_:2},1024),p(t,{class:"right"},{default:n((()=>[p(l,{class:"salary"},{default:n((()=>[r(f(a.minSalary)+"-"+f(a.maxSalary)+"/月",1)])),_:2},1024),a.isHot?(d(),i(l,{key:0,class:"hot"},{default:n((()=>[r("🔥")])),_:1})):b("",!0)])),_:2},1024)])),_:2},1032,["onClick"])))),128))])),_:1})])),_:1})}}},[["__scopeId","data-v-1fe8fba7"]]);export{h as default}; diff --git a/unpackage/dist/build/web/assets/packageA-pages-browseJob-browseJob.Ctr2f3Qd.js b/unpackage/dist/build/web/assets/packageA-pages-browseJob-browseJob.Ctr2f3Qd.js deleted file mode 100644 index 88a4e6d..0000000 --- a/unpackage/dist/build/web/assets/packageA-pages-browseJob-browseJob.Ctr2f3Qd.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as e,p as t,u as a,s as l,q as s,G as n,aq as o,v as r,x as c,a as i,w as u,l as f,o as d,k as h,b as p,r as g,F as m,y as D,z as y,K as v,d as w,j as _,H as x}from"./index-DdiBakOJ.js";import{_ as b}from"./uni-icons.OqqMV__G.js";import{_ as k,a as M}from"./matchingDegree.C4MMzh2G.js";import{_ as F}from"./dict-Label.ot3xNx0t.js";const S=e({__name:"browseJob",setup(e){const{$api:S,navTo:T,vacanciesTo:j,getWeeksOfMonth:C,isFutureDate:I}=t("globalFunction");a();const z=l({isAll:!1,fiveMonth:[],currentMonth:"",currentMonthNumber:0,lastDisable:!1,nextDisable:!0}),A=s(""),N=s([]),Y=s([]),q=s(""),O=l({page:0,list:[],total:0,maxPage:1,pageSize:10,search:{},lastDate:""});function P(e){return new RegExp(e,"g").test(A.value)}function $(e){const t=e.detail.value;O.search.jobTitle=t,H("refresh")}function E(e){if(I(e.fullDate)||!P(e.fullDate))S.msg("这一天没有浏览记录");else if(O.search.startDate=function(e){const t=new Date(e);return t.setDate(t.getDate()-1),t.toISOString().split("T")[0]}(e.fullDate),O.search.endDate=e.fullDate,q.value=e.fullDate,H("refresh"),e.month!==z.currentMonthNumber){const t=new Date(e.fullDate);Y.value=C(t.getFullYear(),t.getMonth()+1).flat(1),e.month>z.currentMonthNumber?R("nextmonth"):R("lastmonth"),z.currentMonthNumber=e.month}}function R(e){const t=z.fiveMonth.findIndex((e=>e===z.currentMonth));switch(e){case"lastmonth":if(t===z.fiveMonth.length-2&&(z.lastDisable=!0),t===z.fiveMonth.length-1)return;z.currentMonth=z.fiveMonth[t+1],z.nextDisable=!1,S.msg("上一月");break;case"nextmonth":if(1===t&&(z.nextDisable=!0),0===t)return;z.currentMonth=z.fiveMonth[t-1],z.lastDisable=!1,S.msg("下一月")}const a=new Date(z.currentMonth);Y.value=C(a.getFullYear(),a.getMonth()+1).flat(1)}function G(e){const t=new Date;Y.value=C(t.getFullYear(),t.getMonth()+1).flat(1),z.isAll=!0}function L(){q.value&&(N.value=J(q.value)),z.isAll=!1}function H(e="add",t=!0){"refresh"===e&&(O.page=1,O.maxPage=1),"add"===e&&O.page{const{rows:a,total:l}=t;if("add"===e){const e=O.pageSize*(O.page-1),t=O.list.length,[l,s]=S.insertSortData(a,"reviewDate");l.length&&l[0].title===O.lastDate&&l.shift(),O.list.splice(e,t,...l),O.lastDate=s}else{const[e,t]=S.insertSortData(a,"reviewDate");O.list=e,O.lastDate=t}O.total=t.total,O.maxPage=Math.ceil(O.total/O.pageSize)}))}function J(e){const t=[],a=new Date(e),l=a.getDay(),s=0===l?7:l;for(let n=1;n<=7;n++){const e=new Date(a);e.setDate(a.getDate()-(s-n)),t.push({weekday:["周一","周二","周三","周四","周五","周六","周日"][n-1],fullDate:e.toISOString().split("T")[0],day:e.getDate(),month:e.getMonth()+1,year:e.getFullYear()})}return t}return n((()=>{S.createRequest("/app/user/review/array").then((e=>{A.value=e.data.join(",")}));const e=function(){const e=[],t=new Date;for(let a=0;a<5;a++){const l=new Date(t);l.setMonth(t.getMonth()-a);const s=l.getFullYear(),n=String(l.getMonth()+1).padStart(2,"0");e.push(`${s}-${n}`)}return e}();z.fiveMonth=e,z.currentMonth=e[0],z.nextDisable=!0;const t=(new Date).toISOString().split("T")[0];z.currentMonthNumber=(new Date).getMonth()+1,N.value=J(t),H("refresh")})),o((()=>{H()})),(e,t)=>{const a=v,l=r(c("uni-icons"),b),s=f,n=r(c("Salary-Expectation"),k),o=r(c("matchingDegree"),M);return d(),i(s,{class:"collection-content"},{default:u((()=>[h(s,{class:"collection-search"},{default:u((()=>[h(s,{class:"search-content"},{default:u((()=>[h(a,{class:"uni-input collInput",type:"text",onConfirm:$}),h(l,{class:"iconsearch",color:"#616161",type:"search",size:"20"})])),_:1}),h(s,{class:"search-date"},{default:u((()=>[z.isAll?(d(),i(s,{key:0,class:"date-7days AllDay"},{default:u((()=>[(d(!0),p(m,null,g(N.value,(e=>(d(),i(s,{class:"day",key:e.weekday},{default:u((()=>[D(y(e.weekday),1)])),_:2},1024)))),128)),(d(!0),p(m,null,g(Y.value,((e,t)=>(d(),i(s,{class:w(["day",{active:e.fullDate===q.value,nothemonth:!e.isCurrent,optional:P(e.fullDate)}]),key:t,onClick:t=>E(e)},{default:u((()=>[D(y(e.day),1)])),_:2},1032,["class","onClick"])))),128)),h(s,{class:"monthSelect"},{default:u((()=>[h(l,{size:"14",class:"monthIcon",color:z.lastDisable?"#e8e8e8":"#333333",type:"left",onClick:t[0]||(t[0]=e=>R("lastmonth"))},null,8,["color"]),D(" "+y(z.currentMonth)+" ",1),h(l,{size:"14",class:"monthIcon",color:z.nextDisable?"#e8e8e8":"#333333",type:"right",onClick:t[1]||(t[1]=e=>R("nextmonth"))},null,8,["color"])])),_:1})])),_:1})):(d(),i(s,{key:1,class:"date-7days"},{default:u((()=>[(d(!0),p(m,null,g(N.value,(e=>(d(),i(s,{class:"day",key:e.weekday},{default:u((()=>[D(y(e.weekday),1)])),_:2},1024)))),128)),(d(!0),p(m,null,g(N.value,((e,t)=>(d(),i(s,{class:w(["day",{active:e.fullDate===q.value,optional:P(e.fullDate)}]),key:t,onClick:t=>E(e)},{default:u((()=>[D(y(e.day),1)])),_:2},1032,["class","onClick"])))),128))])),_:1})),h(s,{class:"downDate"},{default:u((()=>[z.isAll?(d(),i(l,{key:0,class:"downIcon",type:"up",color:"#FFFFFF",size:"17",onClick:L})):(d(),i(l,{key:1,class:"downIcon",type:"down",color:"#FFFFFF",size:"18",onClick:G}))])),_:1})])),_:1})])),_:1}),h(s,{class:"one-cards"},{default:u((()=>[(d(!0),p(m,null,g(O.list,((e,t)=>(d(),i(s,{class:w(["card-box",{"card-transprent":e.isTitle}]),key:t,onClick:t=>{return a=e.jobId,void T(`/packageA/pages/post/post?jobId=${btoa(a)}`);var a}},{default:u((()=>[e.isTitle?(d(),i(s,{key:0,class:"card-title"},{default:u((()=>[D(y(e.title),1)])),_:2},1024)):(d(),i(s,{key:1},{default:u((()=>[h(s,{class:"box-row mar_top0"},{default:u((()=>[h(s,{class:"row-left"},{default:u((()=>[D(y(e.jobTitle),1)])),_:2},1024),h(s,{class:"row-right"},{default:u((()=>[h(n,{"max-salary":e.maxSalary,"min-salary":e.minSalary},null,8,["max-salary","min-salary"])])),_:2},1024)])),_:2},1024),h(s,{class:"box-row"},{default:u((()=>[h(s,{class:"row-left"},{default:u((()=>[e.educatio?(d(),i(s,{key:0,class:"row-tag"},{default:u((()=>[h(F,{dictType:"education",value:e.education},null,8,["value"])])),_:2},1024)):_("",!0),e.experience?(d(),i(s,{key:1,class:"row-tag"},{default:u((()=>[h(F,{dictType:"experience",value:e.experience},null,8,["value"])])),_:2},1024)):_("",!0)])),_:2},1024)])),_:2},1024),h(s,{class:"box-row mar_top0"},{default:u((()=>[h(s,{class:"row-item mineText"},{default:u((()=>[D(y(e.postingDate||"发布日期"),1)])),_:2},1024),h(s,{class:"row-item mineText"},{default:u((()=>[D(y(x(j)(e.vacancies)),1)])),_:2},1024),h(s,{class:"row-item mineText textblue"},{default:u((()=>[h(o,{job:e},null,8,["job"])])),_:2},1024),h(s,{class:"row-item"})])),_:2},1024),h(s,{class:"box-row"},{default:u((()=>[h(s,{class:"row-left mineText"},{default:u((()=>[D(y(e.companyName),1)])),_:2},1024),h(s,{class:"row-right mineText"},{default:u((()=>[D(" 青岛 "),h(F,{dictType:"area",value:e.jobLocationAreaCode},null,8,["value"])])),_:2},1024)])),_:2},1024)])),_:2},1024))])),_:2},1032,["class","onClick"])))),128))])),_:1})])),_:1})}}},[["__scopeId","data-v-f2493dde"]]);export{S as default}; diff --git a/unpackage/dist/build/web/assets/packageA-pages-choiceness-choiceness.C6BK9H8_.js b/unpackage/dist/build/web/assets/packageA-pages-choiceness-choiceness.C6BK9H8_.js deleted file mode 100644 index e10c225..0000000 --- a/unpackage/dist/build/web/assets/packageA-pages-choiceness-choiceness.C6BK9H8_.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as a,p as s,q as e,G as t,a as c,w as n,l as o,o as l,k as r,y as d,b as u,r as i,F as p,n as f,z as m,U as y}from"./index-DdiBakOJ.js";const _=a({__name:"choiceness",setup(a){const{$api:_,navTo:k}=s("globalFunction"),C=e([]);function g(){_.createRequest("/app/company/card").then((a=>{const{rows:s,total:e}=a;C.value=s}))}return t((()=>{g()})),(a,s)=>{const e=o,t=y;return l(),c(e,{class:"container"},{default:n((()=>[r(e,{class:"search-bar"},{default:n((()=>[d("精选企业")])),_:1}),r(e,{class:"grid-container"},{default:n((()=>[(l(!0),u(p,null,i(C.value,(a=>(l(),c(e,{class:"grid-item",style:f({backgroundColor:a.backgroudColor}),key:a.companyCardId},{default:n((()=>[r(t,{class:"title"},{default:n((()=>[d(m(a.name),1)])),_:2},1024),a.isCollection?(l(),c(e,{key:0,class:"status",onClick:s=>function(a){_.createRequest(`/app/company/card/collection/${a.companyCardId}`,{},"DELETE").then((a=>{g(),_.msg("取消关注")}))}(a)},{default:n((()=>[d("已关注 ✓")])),_:2},1032,["onClick"])):(l(),c(e,{key:1,class:"status",onClick:s=>function(a){_.createRequest(`/app/company/card/collection/${a.companyCardId}`,{},"PUT").then((a=>{g(),_.msg("关注成功")}))}(a)},{default:n((()=>[d("特别关注")])),_:2},1032,["onClick"]))])),_:2},1032,["style"])))),128))])),_:1})])),_:1})}}},[["__scopeId","data-v-21f6c3ed"]]);export{_ as default}; diff --git a/unpackage/dist/build/web/assets/packageA-pages-collection-collection.Du0OYQIm.js b/unpackage/dist/build/web/assets/packageA-pages-collection-collection.Du0OYQIm.js deleted file mode 100644 index d3c3ea4..0000000 --- a/unpackage/dist/build/web/assets/packageA-pages-collection-collection.Du0OYQIm.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as a,p as e,u as t,s,G as l,aq as o,v as c,x as i,a as r,w as n,l as u,o as d,k as p,b as m,r as g,F as f,y as _,z as x,j as b,H as w}from"./index-DdiBakOJ.js";import{_ as y,a as v}from"./matchingDegree.C4MMzh2G.js";import{_ as j}from"./dict-Label.ot3xNx0t.js";const T=a({__name:"collection",setup(a){const{$api:T,navTo:h,vacanciesTo:k}=e("globalFunction");t(),s({});const S=s({page:0,list:[],total:0,maxPage:1,pageSize:10});function z(a="add"){"refresh"===a&&(S.page=0,S.maxPage=1),"add"===a&&S.page{const{rows:t,total:s}=e;if("add"===a){const a=S.pageSize*(S.page-1),e=S.list.length,s=t;S.list.splice(a,e,...s)}else S.list=t;S.total=e.total,S.maxPage=Math.ceil(S.total/S.pageSize)}))}return l((()=>{z()})),o((()=>{z()})),(a,e)=>{const t=u,s=c(i("Salary-Expectation"),y),l=c(i("matchingDegree"),v);return d(),r(t,{class:"collection-content"},{default:n((()=>[p(t,{class:"one-cards"},{default:n((()=>[(d(!0),m(f,null,g(S.list,((a,e)=>(d(),r(t,{class:"card-box",key:e,onClick:e=>{return t=a.jobId,void h(`/packageA/pages/post/post?jobId=${btoa(t)}`);var t}},{default:n((()=>[p(t,{class:"box-row mar_top0"},{default:n((()=>[p(t,{class:"row-left"},{default:n((()=>[_(x(a.jobTitle),1)])),_:2},1024),p(t,{class:"row-right"},{default:n((()=>[p(s,{"max-salary":a.maxSalary,"min-salary":a.minSalary},null,8,["max-salary","min-salary"])])),_:2},1024)])),_:2},1024),p(t,{class:"box-row"},{default:n((()=>[p(t,{class:"row-left"},{default:n((()=>[a.educatio?(d(),r(t,{key:0,class:"row-tag"},{default:n((()=>[p(j,{dictType:"education",value:a.education},null,8,["value"])])),_:2},1024)):b("",!0),a.experience?(d(),r(t,{key:1,class:"row-tag"},{default:n((()=>[p(j,{dictType:"experience",value:a.experience},null,8,["value"])])),_:2},1024)):b("",!0)])),_:2},1024)])),_:2},1024),p(t,{class:"box-row mar_top0"},{default:n((()=>[p(t,{class:"row-item mineText"},{default:n((()=>[_(x(a.postingDate||"发布日期"),1)])),_:2},1024),p(t,{class:"row-item mineText"},{default:n((()=>[_(x(w(k)(a.vacancies)),1)])),_:2},1024),p(t,{class:"row-item mineText textblue"},{default:n((()=>[p(l,{job:a},null,8,["job"])])),_:2},1024),p(t,{class:"row-item"})])),_:2},1024),p(t,{class:"box-row"},{default:n((()=>[p(t,{class:"row-left mineText"},{default:n((()=>[_(x(a.companyName),1)])),_:2},1024),p(t,{class:"row-right mineText"},{default:n((()=>[_(" 青岛 "),p(j,{dictType:"area",value:a.jobLocationAreaCode},null,8,["value"])])),_:2},1024)])),_:2},1024)])),_:2},1032,["onClick"])))),128))])),_:1})])),_:1})}}},[["__scopeId","data-v-99c64065"]]);export{T as default}; diff --git a/unpackage/dist/build/web/assets/packageA-pages-exhibitors-exhibitors.CQceVnU_.js b/unpackage/dist/build/web/assets/packageA-pages-exhibitors-exhibitors.CQceVnU_.js deleted file mode 100644 index 603ad9d..0000000 --- a/unpackage/dist/build/web/assets/packageA-pages-exhibitors-exhibitors.CQceVnU_.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as a,v as s,x as e,a as l,w as t,l as d,o as n,k as i,y as c,b as o,r as u,F as f,U as r,d as _,z as m}from"./index-DdiBakOJ.js";import{_ as y}from"./uni-icons.OqqMV__G.js";const p=a({data:()=>({companies:[{id:1,name:"湖南沃森电器科技有限公司",industry:"制造业 100-299人"},{id:2,name:"青岛成达汽车销售集团",industry:"制造业 100-299人"},{id:3,name:"青岛日森电器有限公司",industry:"制造业 100-299人"},{id:4,name:"青岛融合网络通信有限公司",industry:"制造业 100-299人"}]})},[["render",function(a,p,h,x,z,g){const j=r,k=s(e("uni-icons"),y),v=d;return n(),l(v,{class:"container"},{default:t((()=>[i(v,{class:"header"},{default:t((()=>[i(j,{class:"header-title"},{default:t((()=>[c("2024年春季青岛市商贸服务业招聘会")])),_:1}),i(v,{class:"header-info"},{default:t((()=>[i(v,{class:"location"},{default:t((()=>[i(k,{type:"location-filled",color:"#4778EC",size:"24"}),c(" 青岛 市南区延安三路105号 ")])),_:1}),i(j,{class:"date"},{default:t((()=>[c("2024年7月31日 周三")])),_:1})])),_:1})])),_:1}),i(v,{class:"company-list"},{default:t((()=>[i(j,{class:"section-title"},{default:t((()=>[c("参会单位")])),_:1}),(n(!0),o(f,null,u(z.companies,(a=>(n(),l(v,{class:"company-row",key:a.id},{default:t((()=>[i(v,{class:"left"},{default:t((()=>[i(v,{class:_(["logo","logo-"+a.id])},{default:t((()=>[c(m(a.id),1)])),_:2},1032,["class"]),i(v,{class:"company-info"},{default:t((()=>[i(j,{class:"company-name line_2"},{default:t((()=>[c(m(a.name),1)])),_:2},1024),i(j,{class:"industry"},{default:t((()=>[c(m(a.industry),1)])),_:2},1024),i(v,{class:"details"},{default:t((()=>[i(j,null,{default:t((()=>[c("查看详情")])),_:1}),i(k,{type:"star",size:"26"})])),_:1})])),_:2},1024)])),_:2},1024)])),_:2},1024)))),128))])),_:1})])),_:1})}],["__scopeId","data-v-dc2d33aa"]]);export{p as default}; diff --git a/unpackage/dist/build/web/assets/packageA-pages-myResume-myResume.Dbeh6gVh.js b/unpackage/dist/build/web/assets/packageA-pages-myResume-myResume.Dbeh6gVh.js deleted file mode 100644 index 3f13d08..0000000 --- a/unpackage/dist/build/web/assets/packageA-pages-myResume-myResume.Dbeh6gVh.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as a,p as e,u as l,D as t,q as s,s as i,a5 as n,L as o,G as u,v as d,x as c,a as r,w as f,l as p,o as A,k as m,y as g,z as b,b as y,r as v,F as _,U as h,K as k,m as R,Y as C,B as D}from"./index-DdiBakOJ.js";import{_ as M}from"./uni-icons.OqqMV__G.js";import{_ as I}from"./expected-station.BpvqBSAB.js";import{_ as E}from"./custom-popup.ChzD6q8C.js";import{_ as U,a as F}from"./uni-popup.DSb2YJre.js";import{_ as Q}from"./dict-Label.ot3xNx0t.js";const L="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAKlBMVEUAAAD///////////////////////////////////////////////////+Gu8ovAAAADXRSTlMA74AwIJ/fv0BgEK9wDHR4pAAAAMFJREFUOMvd0jEKwkAUBNBBBW2EQCJWgZQ2QizsUwl2EcQu4AU8gXiEgEcI3sYyEhcs/l2Mf8v5W1nplDP7tvr4z4wKu7+l7d58fxJxlllJn5j7YfoZ2twAmsQAGtcw8MkIPJY6RASygQ4dAUBJRwBQEjHwpGSgxBUMdEgY6FdtHgDxV2ATAKgCACEwEcfAF08TYCwvE2AqnQlQy5GBf1qaABe5Yrtj0A/3g3lplWgIoNZ+RtesFzBfNOCsz339E3kDM1GS/NK692QAAAAASUVORK5CYII=",x="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADIBAMAAABfdrOtAAAAD1BMVEUAAAD///////////////+PQt5oAAAABHRSTlMAgL9ARyeO/QAAAcdJREFUeNrt2UFOg1AYReG/4AIcdAFNZAEMWIDK2/+arDo4eTGNAz0E2nvHJOSDvJMQKsuyLMuyLMuy4258Ln/LW/lrzacMrfmUqfmUU7vuvdyd2+cuZQyIeBMg8uMC8lrWgLS5rAFZy9yyAWRs13kHHoh+3qcNIMO9QE5bQM43IUlj0pg0Jo17hNxM40GLkjQmjV87Whqf7qUoSeNOi5I0Jo3fSxqTxqTx8dI4rmIayc78D0VZf7to1b9DF6haGkesThrRzmJReG1uGqcGRUvjAEVLIxSxKFDMNEIRIVD+kkaPQhpFCmdMpJBGj0IaRQpp9CgURaSQRpFyBqJRSKNHoSgihTR6FCAihe9Qj0IaRQppFCmk0aOQRpFCGj0KaRQppNGjkEaRQho9CkURKaTRowARKaTRo5BGjdKnUaOQRo9CGkUKRfEopFGkAPEopFGkkEaPQlFECmm0KBSlSqSQRo9CGkUKaRQppNGjkEaRQlE8CmkUKUA8CmkUKaTRovRplCh9Gi1Kn0aJ0qdRovwImUERIVDE34hQpIMIRYRAMSFQRAgUHQLlUuoG0ihuciFQSt9kFaWnzOXvpbIsy7Isy7Is2+s+ALLean8P5nFqAAAAAElFTkSuQmCC",j=a({__name:"myResume",setup(a){const{$api:j,navTo:S,checkingPhoneRegExp:G,salaryGlobal:T,setCheckedNodes:B}=e("globalFunction"),{getUserResume:K}=l(),{getDictData:N,oneDictData:w}=t(),q=s({}),V=T(),J=i({date:ra(),education:0,politicalAffiliation:0,phone:"",name:"",jobTitleId:"",salaryMin:2e3,salaryMax:2e3,area:0,salary:[0,0],disbleDate:!0,disbleName:!0,disbleSalary:!0,disaleArea:!0,visible:!1,educationList:w("education"),affiliationList:w("affiliation"),areaList:w("area"),stations:[],copyData:{},salayList:[V,V[0].children]}),O=n((()=>ra("start"))),Y=n((()=>ra("end")));o((()=>{W()})),u((()=>{setTimeout((()=>{const{age:a,birthDate:e}=l().userInfo,t=z(e);a!=t&&(console.log(a,t),ea())}),1e3)}));const z=a=>{const e=new Date(a),l=new Date;let t=l.getFullYear()-e.getFullYear();const s=l.getMonth()-e.getMonth(),i=l.getDate()-e.getDate();return(s<0||0===s&&i<0)&&t--,t};function W(){q.value=l().userInfo,J.name=q.value.name,J.date=q.value.birthDate,J.age=q.value.age,J.phone=q.value.phone,J.salaryMax=q.value.salaryMax,J.salaryMin=q.value.salaryMin,J.area=q.value.area,J.educationList.map(((a,e)=>{a.value===q.value.education&&(J.education=e)})),J.affiliationList.map(((a,e)=>{a.value===q.value.politicalAffiliation&&(J.politicalAffiliation=e)})),j.createRequest("/app/common/jobTitle/treeselect",{},"GET").then((a=>{if(q.value.jobTitleId){const e=q.value.jobTitleId.split(",").map((a=>Number(a)));B(a.data,e)}J.jobTitleId=q.value.jobTitleId,J.stations=a.data}))}function H(a){J.area=a.detail.value}function P(a){J.date=a.detail.value}function Z(a){J.education=a.detail.value}function $(a){J.politicalAffiliation=a.detail.value}function X(){let a={area:J.area};j.createRequest("/app/user/resume",a,"post").then((a=>{j.msg("完成"),J.disaleArea=!0,K().then((()=>{W()}))}))}function aa(){let a={salaryMin:J.salaryMin,salaryMax:J.salaryMax};j.createRequest("/app/user/resume",a,"post").then((a=>{j.msg("完成"),J.disbleSalary=!0,K().then((()=>{W()}))}))}function ea(){let a={birthDate:J.date,age:z(J.date),education:J.educationList[J.education].value,politicalAffiliation:J.affiliationList[J.politicalAffiliation].value,phone:J.phone};return a.birthDate?a.education?a.politicalAffiliation?G(a.phone)?void j.createRequest("/app/user/resume",a,"post").then((a=>{j.msg("完成"),J.disbleDate=!0,K().then((()=>{W()}))})):j.msg("请输入正确手机号"):j.msg("请选择政治面貌"):j.msg("请选择学历"):j.msg("请选择出生年月")}function la(){if(!J.name)return j.msg("请输入用户名称");j.createRequest("/app/user/resume",{name:J.name},"post").then((a=>{j.msg("完成"),J.disbleName=!0,K().then((()=>{W()}))}))}function ta(){j.createRequest("/app/user/resume",{jobTitleId:J.jobTitleId},"post").then((a=>{j.msg("完成"),J.visible=!1,K().then((()=>{W()}))}))}function sa(){J.copyData.date=J.date,J.copyData.education=J.education,J.copyData.politicalAffiliation=J.politicalAffiliation,J.copyData.phone=J.phone,J.disbleDate=!1}function ia(){J.disbleSalary=!1}function na(){J.name=q.value.name,J.disbleName=!1}function oa(a){J.jobTitleId=a}function ua(){J.visible=!0}function da(a){const{column:e,value:l}=a.detail;0===e&&(J.salary[1]=0,J.salayList[1]=V[l].children)}function ca(a){const[e,l]=a.detail.value,t=J.salayList[0][e],s=J.salayList[0][e].children[l];J.salaryMin=t.value,J.salaryMax=s.value}function ra(a){const e=new Date;let l=e.getFullYear(),t=e.getMonth()+1,s=e.getDate();return"start"===a?l-=60:"end"===a&&(l+=2),t=t>9?t:"0"+t,s=s>9?s:"0"+s,`${l}-${t}-${s}`}return(a,e)=>{const l=p,t=h,s=k,i=R,n=C,o=d(c("uni-icons"),M),u=D,j=d(c("expected-station"),I),S=d(c("custom-popup"),E),G=d(c("uni-popup-dialog"),U),T=d(c("uni-popup"),F);return A(),r(l,{class:"container"},{default:f((()=>[m(l,{class:"header"},{default:f((()=>[m(l,{class:"avatar"}),m(l,{class:"info"},{default:f((()=>[m(l,{class:"name-row"},{default:f((()=>[J.disbleName?(A(),r(t,{key:0,class:"name"},{default:f((()=>[g(b(J.name||"编辑用户名"),1)])),_:1})):(A(),r(s,{key:1,class:"uni-input name",style:{"padding-top":"6px"},modelValue:J.name,"onUpdate:modelValue":e[0]||(e[0]=a=>J.name=a),"placeholder-class":"name",type:"text",placeholder:"输入用户名"},null,8,["modelValue"])),m(l,{class:"edit-icon"},{default:f((()=>[J.disbleName?(A(),r(i,{key:0,class:"img",src:L,onClick:na})):(A(),r(i,{key:1,class:"img",src:x,onClick:la}))])),_:1})])),_:1}),m(t,{class:"details"},{default:f((()=>[m(Q,{dictType:"sex",value:q.value.sex},null,8,["value"]),g(" "+b(J.age)+"岁 ",1)])),_:1})])),_:1})])),_:1}),m(l,{class:"resume-info"},{default:f((()=>[m(l,{class:"info-card"},{default:f((()=>[m(l,{class:"card-content"},{default:f((()=>[m(t,{class:"label"},{default:f((()=>[g("出生年月:")])),_:1}),m(n,{mode:"date",disabled:J.disbleDate,value:J.date,start:O.value,end:Y.value,onChange:P},{default:f((()=>[m(l,{class:"uni-input"},{default:f((()=>[g(b(J.date),1)])),_:1})])),_:1},8,["disabled","value","start","end"]),m(l,{class:"edit-icon"},{default:f((()=>[J.disbleDate?(A(),r(i,{key:0,class:"img",src:L,onClick:sa})):(A(),r(i,{key:1,class:"img",src:x,onClick:ea}))])),_:1})])),_:1}),m(l,{class:"card-content"},{default:f((()=>[m(t,{class:"label"},{default:f((()=>[g("学历:")])),_:1}),m(n,{onChange:Z,"range-key":"label",disabled:J.disbleDate,value:J.education,range:J.educationList},{default:f((()=>[m(l,{class:"uni-input"},{default:f((()=>[g(b(J.educationList[J.education].label),1)])),_:1})])),_:1},8,["disabled","value","range"])])),_:1}),m(l,{class:"card-content"},{default:f((()=>[m(t,{class:"label"},{default:f((()=>[g("政治面貌:")])),_:1}),m(n,{onChange:$,"range-key":"label",disabled:J.disbleDate,value:J.politicalAffiliation,range:J.affiliationList},{default:f((()=>[m(l,{class:"uni-input"},{default:f((()=>[g(b(J.affiliationList[J.politicalAffiliation].label),1)])),_:1})])),_:1},8,["disabled","value","range"])])),_:1}),m(l,{class:"card-content",style:{"padding-bottom":"3px"}},{default:f((()=>[m(t,{class:"label"},{default:f((()=>[g("联系方式:")])),_:1}),m(s,{class:"uni-input",style:{"padding-top":"6px"},disabled:J.disbleDate,modelValue:J.phone,"onUpdate:modelValue":e[1]||(e[1]=a=>J.phone=a),"placeholder-class":"value",type:"number",placeholder:"输入手机号"},null,8,["disabled","modelValue"])])),_:1})])),_:1})])),_:1}),m(l,{class:"resume-info"},{default:f((()=>[m(l,{class:"info-card"},{default:f((()=>[m(l,{class:"card-content"},{default:f((()=>[m(t,{class:"label"},{default:f((()=>[g("期望职位:")])),_:1}),m(l,{class:"value"},{default:f((()=>[(A(!0),y(_,null,v(q.value.jobTitle,(a=>(A(),r(l,{key:a},{default:f((()=>[g(b(a),1)])),_:2},1024)))),128))])),_:1}),m(l,{class:"edit-icon"},{default:f((()=>[m(i,{class:"img",onClick:ua,src:L})])),_:1})])),_:1})])),_:1})])),_:1}),m(l,{class:"resume-info"},{default:f((()=>[m(l,{class:"info-card"},{default:f((()=>[m(l,{class:"card-content"},{default:f((()=>[m(t,{class:"label"},{default:f((()=>[g("期望薪资:")])),_:1}),m(l,{class:"value"},{default:f((()=>[m(n,{onChange:ca,onColumnchange:da,"range-key":"label",disabled:J.disbleSalary,value:J.salary,range:J.salayList,mode:"multiSelector"},{default:f((()=>[m(l,{class:"uni-input"},{default:f((()=>[g(b(J.salaryMin/1e3)+"k-"+b(J.salaryMax/1e3)+"k",1)])),_:1})])),_:1},8,["disabled","value","range"])])),_:1}),m(l,{class:"edit-icon"},{default:f((()=>[J.disbleSalary?(A(),r(i,{key:0,class:"img",src:L,onClick:ia})):(A(),r(i,{key:1,class:"img",src:x,onClick:aa}))])),_:1})])),_:1})])),_:1})])),_:1}),m(l,{class:"resume-info"},{default:f((()=>[m(l,{class:"info-card"},{default:f((()=>[m(l,{class:"card-content"},{default:f((()=>[m(t,{class:"label long"},{default:f((()=>[g("期望工作地:")])),_:1}),m(l,{class:"value"},{default:f((()=>[J.disaleArea?(A(),r(l,{key:0},{default:f((()=>[g(" 青岛 - "),m(Q,{dictType:"area",value:Number(J.area)},null,8,["value"])])),_:1})):(A(),r(l,{key:1},{default:f((()=>[m(n,{onChange:H,"range-key":"label",disabled:J.disaleArea,value:J.area,range:J.areaList},{default:f((()=>[m(l,{class:"uni-input"},{default:f((()=>[g(" 青岛 - "+b(J.areaList[J.area].label),1)])),_:1})])),_:1},8,["disabled","value","range"])])),_:1}))])),_:1}),m(l,{class:"edit-icon"},{default:f((()=>[J.disaleArea?(A(),r(i,{key:0,class:"img",src:L,onClick:e[2]||(e[2]=a=>J.disaleArea=!1)})):(A(),r(i,{key:1,class:"img",src:x,onClick:X}))])),_:1})])),_:1})])),_:1})])),_:1}),m(l,{class:"upload-btn"},{default:f((()=>[m(u,{class:"btn"},{default:f((()=>[m(o,{type:"cloud-upload",size:"30",color:"#FFFFFF"}),g(" 上传简历 ")])),_:1})])),_:1}),m(S,{"content-h":100,visible:J.visible,header:!1},{default:f((()=>[m(l,{class:"popContent"},{default:f((()=>[m(l,{class:"s-header"},{default:f((()=>[m(l,{class:"heade-lf",onClick:e[3]||(e[3]=a=>J.visible=!1)},{default:f((()=>[g("取消")])),_:1}),m(l,{class:"heade-ri",onClick:ta},{default:f((()=>[g("确认")])),_:1})])),_:1}),m(l,{class:"sex-content fl_1"},{default:f((()=>[m(j,{search:!1,onOnChange:oa,station:J.stations,max:5},null,8,["station"])])),_:1})])),_:1})])),_:1},8,["visible"]),m(T,{ref:"popup",type:"dialog"},{default:f((()=>[m(G,{mode:"base",title:"确定退出登录吗?",type:"info",duration:2e3,"before-close":!0,onConfirm:a.confirm,onClose:a.close},null,8,["onConfirm","onClose"])])),_:1},512)])),_:1})}}},[["__scopeId","data-v-dbb991d2"]]);export{j as default}; diff --git a/unpackage/dist/build/web/assets/packageA-pages-post-post.ZeGe3ZIp.js b/unpackage/dist/build/web/assets/packageA-pages-post-post.ZeGe3ZIp.js deleted file mode 100644 index 26d4f6f..0000000 --- a/unpackage/dist/build/web/assets/packageA-pages-post-post.ZeGe3ZIp.js +++ /dev/null @@ -1 +0,0 @@ -import{D as a,o as e,b as t,z as l,H as i,_ as s,p as n,q as o,s as c,G as u,L as d,v as r,x as p,a as f,w as v,l as A,k as m,y,j as g,U as b,X as C,B as h}from"./index-DdiBakOJ.js";import{_ as j}from"./uni-icons.OqqMV__G.js";import{_ as w}from"./dict-Label.ot3xNx0t.js";const I={__name:"dict-tree-Label",props:["value","dictType"],setup(s){const{complete:n,industryLabel:o}=a();return(a,n)=>(e(),t("span",null,l(i(o)(s.dictType,s.value)),1))}},U=s({__name:"post",setup(a){const{$api:s,navTo:U,getLenPx:_,parseQueryParams:B}=n("globalFunction"),k=o({});c({});const P=o([]),S=o();function T(a){const e=atob(a.jobId);e!==S.value&&(S.value=e,F(e))}function F(a){s.createRequest(`/app/job/${a}`).then((a=>{const{latitude:e,longitude:t,companyName:l}=a.data;k.value=a.data,e&&t&&(P.value=[{latitude:e,longitude:t,iconPath:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAAAkFBMVEUAAAA1hf89ifc9ifc9ifc8ifo9iPc9ifg9ifc9ifc9iPc9iPc+iv89ifY+ifc9iPc9ifg9iPo9ifc5ifg9ifc9ifg8ifk8iPg7jv89ifY9ifc9ifc9ifc9ifg7ifg+iff////0+P7P4v1KkPiHtvpin/lup/mfxPtWmPi30/zo8f7b6f3D2vyTvfury/t7rvpTom3/AAAAH3RSTlMACPS2kSzZOdKldl0V66yYahvkIZ1kU0IPzci/gIdJLJ4wfQAAAvBJREFUeNrt2tty4jAMBmA5gVBCSDiVU4HflDML9P3fbjuzN21XMcRSwnQm3wvE2JIshVCtVqvVar9bv9VZNNphmGbL3qpJ1Uo67S6+e4srW4TphGBFcZ/KN8wC5AsnVK5mijtmYypPMsID5qUFQy/AY0aGSmDaeFjUJ3XDFxQQqAdjq4tiXknVGIU1lJ//1BU04aWnFn9d+FmRCvMCT4FONrbh7cWQXAcCDRJLAuTb7D/t4NAiqRHyfJzW9p/L9Zh7CCTUQo7t2n51OpaUiyFYu7P9YX0Aa1BKCdpaxmVTwqWQgnOzrD/sCiIS6Dt+P+MdHMnNHLPnb3OdwGiTvwEYZ5tvzxVkoxuCV8twHsKYfPW44re2LlvVepyyEeh0Ua2GXB9wsW5cKhryk4Cxtm4fijfShM9BtwNXDBVjcG/vOClG4ZK7gy3LnYgp+WlwVcBnAXPFBex9FhCRn4xbgE8QBoo7sLF3XBUXsATjj3XbKXZFMRgH63TW7ExfUbwS3cB4U52J363D+ghGqtqSH905wMnIjwHr5tiAje5sMAAKJcJ6pzyfhWA4mqIteIY8NcA7snuw3oI30J/MNxd+/3kh+Roi1/b8M/43yBOTtwj5tl/O4Xw6Il9T/nKAd7ze3j+dDju4BFW+ntEezRIo6JBABLmEBBYQC0mir3ECInMIBYZEeio58Mw8WJFQCpEBSU0gEpNYJAxBsVcIZCRnAvhrkoKlrArKJcINkGvINkCuL9wAuRG8pKRlKNwAuQweRqQnCVBYkJCiGIUtSJOJUFDXkKoVCnolZSEKmZG2fiBIwerjsEH6TCSMwCqbszGVIhPcgpUewmBKJWnhIS0qzUKYAXJz2YcrcsMAdwRDKtVYOI3LZZJhuPzvqiJDpet3HSV4SBVoCSuAXE/YhMhlggpUYnuUUnXMXPbXmNz0v2ScGarUdPbj+VOqmHn7dgNNqXrtL+c/pWeIhWOo3GSAT90OPY2J2+FiSrVarVar/Vp/AUhEiJoRE//vAAAAAElFTkSuQmCC",label:{content:l,textAlign:"center",padding:3,fontSize:12,bgColor:"#FFFFFF",anchorX:V(l),borderRadius:5},width:34}])}))}function V(a,e=12){const t=document.createElement("canvas").getContext("2d");return t.font="12px Arial",-t.measureText(a).width/2-20}function J(){const a=k.value.jobId;if(k.value.isApply){const a=k.value.jobUrl;return window.open(a)}s.createRequest(`/app/job/apply/${a}`,{},"GET").then((e=>{F(a),s.msg("申请成功");const t=k.value.jobUrl;return window.open(t)}))}function E(){const a=k.value.jobId;k.value.isCollection?s.createRequest(`/app/job/collection/${a}`,{},"DELETE").then((e=>{F(a),s.msg("取消收藏成功")})):s.createRequest(`/app/job/collection/${a}`,{},"POST").then((e=>{F(a),s.msg("收藏成功")}))}return u((a=>{a.jobId&&T(a)})),d((()=>{const a=B();a.jobId&&T(a)})),(a,s)=>{const n=A,o=b,c=r(p("dict-tree-Label"),I),u=C,d=h,_=r(p("uni-icons"),j);return e(),f(n,{class:"container"},{default:v((()=>[m(n,{class:"job-header"},{default:v((()=>[m(n,{class:"job-title"},{default:v((()=>[y(l(k.value.jobTitle),1)])),_:1}),m(n,{class:"job-info"},{default:v((()=>[m(o,{class:"salary"},{default:v((()=>[y(l(k.value.minSalary)+"-"+l(k.value.maxSalary)+"/月",1)])),_:1}),m(o,{class:"views"},{default:v((()=>[y(l(k.value.view)+"浏览",1)])),_:1})])),_:1}),m(n,{class:"location-info"},{default:v((()=>[m(n,{class:"location",style:{display:"inline-block"}},{default:v((()=>[y(" 📍 青岛 "),m(w,{dictType:"area",value:k.value.jobLocationAreaCode},null,8,["value"])])),_:1}),m(o,{class:"date"},{default:v((()=>[y(l(k.value.postingDate||"发布日期"),1)])),_:1}),m(n,{class:"source"},{default:v((()=>[y("来源 智联招聘")])),_:1})])),_:1})])),_:1}),m(n,{class:"job-details"},{default:v((()=>[m(o,{class:"details-title"},{default:v((()=>[y("职位详情")])),_:1}),m(n,{class:"tags"},{default:v((()=>[m(n,{class:"tag"},{default:v((()=>[m(w,{dictType:"education",value:k.value.education},null,8,["value"])])),_:1}),m(n,{class:"tag"},{default:v((()=>[m(w,{dictType:"experience",value:k.value.experience},null,8,["value"])])),_:1})])),_:1}),m(n,{class:"description",style:{whiteSpace:"pre-wrap"}},{default:v((()=>[y(l(k.value.description),1)])),_:1})])),_:1}),m(n,{class:"company-info",onClick:s[0]||(s[0]=a=>i(U)(`/packageA/pages/UnitDetails/UnitDetails?companyId=${k.value.company.companyId}`))},{default:v((()=>[m(n,{class:"company-name"},{default:v((()=>{var a;return[y(l(null==(a=k.value.company)?void 0:a.name),1)]})),_:1}),m(n,{class:"company-details"},{default:v((()=>{var a,l,i,s;return[(null==(a=k.value.company)?void 0:a.industry)?(e(),f(c,{key:0,dictType:"industry",value:null==(l=k.value.company)?void 0:l.industry},null,8,["value"])):g("",!0),(null==(i=k.value.company)?void 0:i.industry)?(e(),t("span",{key:1}," ")):g("",!0),m(w,{dictType:"scale",value:null==(s=k.value.company)?void 0:s.scale},null,8,["value"]),y(" 单位详情 ")]})),_:1}),k.value.latitude&&k.value.longitude?(e(),f(n,{key:0,class:"company-map"},{default:v((()=>[m(u,{style:{width:"100%",height:"100%"},latitude:k.value.latitude,longitude:k.value.longitude,markers:P.value},null,8,["latitude","longitude","markers"])])),_:1})):g("",!0)])),_:1}),m(n,{class:"footer"},{default:v((()=>[m(d,{class:"apply-btn",onClick:J},{default:v((()=>[y("立即申请")])),_:1}),m(n,{class:"falls-card-matchingrate",onClick:E},{default:v((()=>[k.value.isCollection?(e(),f(_,{key:1,type:"star-filled",color:"#FFCB47",size:"40"})):(e(),f(_,{key:0,type:"star",size:"40"}))])),_:1})])),_:1})])),_:1})}}},[["__scopeId","data-v-57ea6143"]]);export{U as default}; diff --git a/unpackage/dist/build/web/assets/pages-careerfair-careerfair.DYiYMI1p.js b/unpackage/dist/build/web/assets/pages-careerfair-careerfair.DYiYMI1p.js deleted file mode 100644 index 00c750e..0000000 --- a/unpackage/dist/build/web/assets/pages-careerfair-careerfair.DYiYMI1p.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as a,p as s,s as e,G as t,a as l,w as r,l as c,o as d,k as i,y as f,b as o,r as u,F as n,S as _,z as p,H as b}from"./index-DdiBakOJ.js";const y=a({__name:"careerfair",setup(a){const{$api:y,navTo:m}=s("globalFunction"),g=e({dateList:[]});return t((()=>{g.dateList=function(){const a=new Date,s=[],e=["日","一","二","三","四","五","六"];for(let t=0;t<30;t++){const l=new Date(a);l.setDate(a.getDate()+t);const r=l.toISOString().slice(0,10).slice(8),c=e[l.getDay()];s.push({date:r,day:c})}return s[0].date="今天",s[1].date="明天",s}()})),(a,s)=>{const e=c,t=_;return d(),l(e,{class:"app-container"},{default:r((()=>[i(e,{class:"careerfair-AI"},{default:r((()=>[f("AI+就业服务程序")])),_:1}),i(e,{class:"careerfair-tab"},{default:r((()=>[i(e,{class:"careerfair-tab-options actived"},{default:r((()=>[f("现场招聘")])),_:1}),i(e,{class:"careerfair-tab-options"},{default:r((()=>[f("VR虚拟招聘会")])),_:1})])),_:1}),i(t,{"scroll-x":!0,"show-scrollbar":!1,class:"careerfair-scroll"},{default:r((()=>[i(e,{class:"careerfair-date"},{default:r((()=>[(d(!0),o(n,null,u(g.dateList,((a,s)=>(d(),l(e,{class:"date-list",key:s},{default:r((()=>[i(e,{class:"date-list-item"},{default:r((()=>[f(p(a.day),1)])),_:2},1024),i(e,{class:"date-list-item active"},{default:r((()=>[f(p(a.date),1)])),_:2},1024)])),_:2},1024)))),128))])),_:1})])),_:1}),i(t,{"scroll-y":!0,class:"careerfair-list-scroll"},{default:r((()=>[i(e,{class:"careerfair-list"},{default:r((()=>[(d(),o(n,null,u(10,((a,t)=>i(e,{class:"careerfair-list-card",key:t},{default:r((()=>[i(e,{class:"card-title"},{default:r((()=>[f("2024年春季青岛市商贸服务业招聘会")])),_:1}),i(e,{class:"card-intro"},{default:r((()=>[i(e,{class:"line_2"},{default:r((()=>[f("内容简介……")])),_:1}),i(e,{class:"intro-distance"},{default:r((()=>[f("500m以内")])),_:1})])),_:1}),i(e,{class:"card-address"},{default:r((()=>[f("市南区延安三路105号")])),_:1}),i(e,{class:"card-footer"},{default:r((()=>[i(e,{class:"cardfooter-lf"},{default:r((()=>[i(e,{class:"card-company"},{default:r((()=>[f("市南区就业人才中心")])),_:1}),i(e,{class:"card-date"},{default:r((()=>[f("7月31日(周三)14:00-18:00")])),_:1})])),_:1}),i(e,{class:"cardfooter-ri",onClick:s[0]||(s[0]=a=>b(m)("/packageA/pages/exhibitors/exhibitors"))},{default:r((()=>[f(" 查看详情 ")])),_:1})])),_:1})])),_:2},1024))),64))])),_:1})])),_:1})])),_:1})}}},[["__scopeId","data-v-185c4d6f"]]);export{y as default}; diff --git a/unpackage/dist/build/web/assets/pages-chat-chat.D3YhJ6YZ.js b/unpackage/dist/build/web/assets/pages-chat-chat.D3YhJ6YZ.js deleted file mode 100644 index d89f216..0000000 --- a/unpackage/dist/build/web/assets/pages-chat-chat.D3YhJ6YZ.js +++ /dev/null @@ -1,7 +0,0 @@ -import{_ as e,a5 as u,o as t,a as n,w as r,k as a,a6 as s,a0 as i,a7 as o,l,q as D,a8 as c,f as A,n as d,a9 as p,c as E,I as g,J as C,b as F,F as h,r as m,H as f,m as b,aa as _,p as B,E as v,s as y,t as k,v as w,x,y as N,d as S,z as M,j as I,$ as O,ab as R,ac as T,ad as L,ae as U,U as z,S as q,K as j,af as K,ag as Q,G as P,L as G}from"./index-DdiBakOJ.js";import{_ as H}from"./uni-icons.OqqMV__G.js";import{u as Z}from"./BaseDBStore.RQrc3EQA.js";var V={},J={Aacute:"Á",aacute:"á",Abreve:"Ă",abreve:"ă",ac:"∾",acd:"∿",acE:"∾̳",Acirc:"Â",acirc:"â",acute:"´",Acy:"А",acy:"а",AElig:"Æ",aelig:"æ",af:"⁡",Afr:"𝔄",afr:"𝔞",Agrave:"À",agrave:"à",alefsym:"ℵ",aleph:"ℵ",Alpha:"Α",alpha:"α",Amacr:"Ā",amacr:"ā",amalg:"⨿",amp:"&",AMP:"&",andand:"⩕",And:"⩓",and:"∧",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angmsd:"∡",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",Aogon:"Ą",aogon:"ą",Aopf:"𝔸",aopf:"𝕒",apacir:"⩯",ap:"≈",apE:"⩰",ape:"≊",apid:"≋",apos:"'",ApplyFunction:"⁡",approx:"≈",approxeq:"≊",Aring:"Å",aring:"å",Ascr:"𝒜",ascr:"𝒶",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",Atilde:"Ã",atilde:"ã",Auml:"Ä",auml:"ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",Bcy:"Б",bcy:"б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",Beta:"Β",beta:"β",beth:"ℶ",between:"≬",Bfr:"𝔅",bfr:"𝔟",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bNot:"⫭",bnot:"⌐",Bopf:"𝔹",bopf:"𝕓",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxHd:"╤",boxhD:"╥",boxHD:"╦",boxhu:"┴",boxHu:"╧",boxhU:"╨",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsolb:"⧅",bsol:"\\",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpE:"⪮",bumpe:"≏",Bumpeq:"≎",bumpeq:"≏",Cacute:"Ć",cacute:"ć",capand:"⩄",capbrcup:"⩉",capcap:"⩋",cap:"∩",Cap:"⋒",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",Ccaron:"Č",ccaron:"č",Ccedil:"Ç",ccedil:"ç",Ccirc:"Ĉ",ccirc:"ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",Cdot:"Ċ",cdot:"ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",CHcy:"Ч",chcy:"ч",check:"✓",checkmark:"✓",Chi:"Χ",chi:"χ",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cir:"○",cirE:"⧃",cire:"≗",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",Colone:"⩴",colone:"≔",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",Cscr:"𝒞",cscr:"𝒸",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cup:"∪",Cup:"⋓",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",Darr:"↡",dArr:"⇓",dash:"‐",Dashv:"⫤",dashv:"⊣",dbkarow:"⤏",dblac:"˝",Dcaron:"Ď",dcaron:"ď",Dcy:"Д",dcy:"д",ddagger:"‡",ddarr:"⇊",DD:"ⅅ",dd:"ⅆ",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",Delta:"Δ",delta:"δ",demptyv:"⦱",dfisht:"⥿",Dfr:"𝔇",dfr:"𝔡",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",DJcy:"Ђ",djcy:"ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",Dopf:"𝔻",dopf:"𝕕",Dot:"¨",dot:"˙",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",DownArrowBar:"⤓",downarrow:"↓",DownArrow:"↓",Downarrow:"⇓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVectorBar:"⥖",DownLeftVector:"↽",DownRightTeeVector:"⥟",DownRightVectorBar:"⥗",DownRightVector:"⇁",DownTeeArrow:"↧",DownTee:"⊤",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",Dscr:"𝒟",dscr:"𝒹",DScy:"Ѕ",dscy:"ѕ",dsol:"⧶",Dstrok:"Đ",dstrok:"đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",DZcy:"Џ",dzcy:"џ",dzigrarr:"⟿",Eacute:"É",eacute:"é",easter:"⩮",Ecaron:"Ě",ecaron:"ě",Ecirc:"Ê",ecirc:"ê",ecir:"≖",ecolon:"≕",Ecy:"Э",ecy:"э",eDDot:"⩷",Edot:"Ė",edot:"ė",eDot:"≑",ee:"ⅇ",efDot:"≒",Efr:"𝔈",efr:"𝔢",eg:"⪚",Egrave:"È",egrave:"è",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",Emacr:"Ē",emacr:"ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp13:" ",emsp14:" ",emsp:" ",ENG:"Ŋ",eng:"ŋ",ensp:" ",Eogon:"Ę",eogon:"ę",Eopf:"𝔼",eopf:"𝕖",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",Epsilon:"Ε",epsilon:"ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",Esim:"⩳",esim:"≂",Eta:"Η",eta:"η",ETH:"Ð",eth:"ð",Euml:"Ë",euml:"ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",Fcy:"Ф",fcy:"ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",Ffr:"𝔉",ffr:"𝔣",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",Fopf:"𝔽",fopf:"𝕗",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",Gamma:"Γ",gamma:"γ",Gammad:"Ϝ",gammad:"ϝ",gap:"⪆",Gbreve:"Ğ",gbreve:"ğ",Gcedil:"Ģ",Gcirc:"Ĝ",gcirc:"ĝ",Gcy:"Г",gcy:"г",Gdot:"Ġ",gdot:"ġ",ge:"≥",gE:"≧",gEl:"⪌",gel:"⋛",geq:"≥",geqq:"≧",geqslant:"⩾",gescc:"⪩",ges:"⩾",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",Gfr:"𝔊",gfr:"𝔤",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",GJcy:"Ѓ",gjcy:"ѓ",gla:"⪥",gl:"≷",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",Gopf:"𝔾",gopf:"𝕘",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",Gscr:"𝒢",gscr:"ℊ",gsim:"≳",gsime:"⪎",gsiml:"⪐",gtcc:"⪧",gtcir:"⩺",gt:">",GT:">",Gt:"≫",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",HARDcy:"Ъ",hardcy:"ъ",harrcir:"⥈",harr:"↔",hArr:"⇔",harrw:"↭",Hat:"^",hbar:"ℏ",Hcirc:"Ĥ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",Hstrok:"Ħ",hstrok:"ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",Iacute:"Í",iacute:"í",ic:"⁣",Icirc:"Î",icirc:"î",Icy:"И",icy:"и",Idot:"İ",IEcy:"Е",iecy:"е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",Igrave:"Ì",igrave:"ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",IJlig:"IJ",ijlig:"ij",Imacr:"Ī",imacr:"ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",Im:"ℑ",imof:"⊷",imped:"Ƶ",Implies:"⇒",incare:"℅",in:"∈",infin:"∞",infintie:"⧝",inodot:"ı",intcal:"⊺",int:"∫",Int:"∬",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"⁣",InvisibleTimes:"⁢",IOcy:"Ё",iocy:"ё",Iogon:"Į",iogon:"į",Iopf:"𝕀",iopf:"𝕚",Iota:"Ι",iota:"ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"⁢",Itilde:"Ĩ",itilde:"ĩ",Iukcy:"І",iukcy:"і",Iuml:"Ï",iuml:"ï",Jcirc:"Ĵ",jcirc:"ĵ",Jcy:"Й",jcy:"й",Jfr:"𝔍",jfr:"𝔧",jmath:"ȷ",Jopf:"𝕁",jopf:"𝕛",Jscr:"𝒥",jscr:"𝒿",Jsercy:"Ј",jsercy:"ј",Jukcy:"Є",jukcy:"є",Kappa:"Κ",kappa:"κ",kappav:"ϰ",Kcedil:"Ķ",kcedil:"ķ",Kcy:"К",kcy:"к",Kfr:"𝔎",kfr:"𝔨",kgreen:"ĸ",KHcy:"Х",khcy:"х",KJcy:"Ќ",kjcy:"ќ",Kopf:"𝕂",kopf:"𝕜",Kscr:"𝒦",kscr:"𝓀",lAarr:"⇚",Lacute:"Ĺ",lacute:"ĺ",laemptyv:"⦴",lagran:"ℒ",Lambda:"Λ",lambda:"λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larrb:"⇤",larrbfs:"⤟",larr:"←",Larr:"↞",lArr:"⇐",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",latail:"⤙",lAtail:"⤛",lat:"⪫",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",Lcaron:"Ľ",lcaron:"ľ",Lcedil:"Ļ",lcedil:"ļ",lceil:"⌈",lcub:"{",Lcy:"Л",lcy:"л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",LeftArrowBar:"⇤",leftarrow:"←",LeftArrow:"←",Leftarrow:"⇐",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVectorBar:"⥙",LeftDownVector:"⇃",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",LeftRightArrow:"↔",Leftrightarrow:"⇔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTeeArrow:"↤",LeftTee:"⊣",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangleBar:"⧏",LeftTriangle:"⊲",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVectorBar:"⥘",LeftUpVector:"↿",LeftVectorBar:"⥒",LeftVector:"↼",lEg:"⪋",leg:"⋚",leq:"≤",leqq:"≦",leqslant:"⩽",lescc:"⪨",les:"⩽",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",Lfr:"𝔏",lfr:"𝔩",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",LJcy:"Љ",ljcy:"љ",llarr:"⇇",ll:"≪",Ll:"⋘",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",Lmidot:"Ŀ",lmidot:"ŀ",lmoustache:"⎰",lmoust:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",LongLeftArrow:"⟵",Longleftarrow:"⟸",longleftrightarrow:"⟷",LongLeftRightArrow:"⟷",Longleftrightarrow:"⟺",longmapsto:"⟼",longrightarrow:"⟶",LongRightArrow:"⟶",Longrightarrow:"⟹",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",Lopf:"𝕃",lopf:"𝕝",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"‎",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",Lstrok:"Ł",lstrok:"ł",ltcc:"⪦",ltcir:"⩹",lt:"<",LT:"<",Lt:"≪",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",Map:"⤅",map:"↦",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",Mcy:"М",mcy:"м",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",Mfr:"𝔐",mfr:"𝔪",mho:"℧",micro:"µ",midast:"*",midcir:"⫰",mid:"∣",middot:"·",minusb:"⊟",minus:"−",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",Mopf:"𝕄",mopf:"𝕞",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",Mu:"Μ",mu:"μ",multimap:"⊸",mumap:"⊸",nabla:"∇",Nacute:"Ń",nacute:"ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natural:"♮",naturals:"ℕ",natur:"♮",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",Ncaron:"Ň",ncaron:"ň",Ncedil:"Ņ",ncedil:"ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",Ncy:"Н",ncy:"н",ndash:"–",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",ne:"≠",nedot:"≐̸",NegativeMediumSpace:"​",NegativeThickSpace:"​",NegativeThinSpace:"​",NegativeVeryThinSpace:"​",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",Nfr:"𝔑",nfr:"𝔫",ngE:"≧̸",nge:"≱",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",nGt:"≫⃒",ngt:"≯",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",NJcy:"Њ",njcy:"њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nlE:"≦̸",nle:"≰",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nLt:"≪⃒",nlt:"≮",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"⁠",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",Not:"⫬",not:"¬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangleBar:"⧏̸",NotLeftTriangle:"⋪",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangleBar:"⧐̸",NotRightTriangle:"⋫",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",nparallel:"∦",npar:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",nprec:"⊀",npreceq:"⪯̸",npre:"⪯̸",nrarrc:"⤳̸",nrarr:"↛",nrArr:"⇏",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",Nscr:"𝒩",nscr:"𝓃",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsubE:"⫅̸",nsube:"⊈",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupE:"⫆̸",nsupe:"⊉",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",Ntilde:"Ñ",ntilde:"ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",Nu:"Ν",nu:"ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",Oacute:"Ó",oacute:"ó",oast:"⊛",Ocirc:"Ô",ocirc:"ô",ocir:"⊚",Ocy:"О",ocy:"о",odash:"⊝",Odblac:"Ő",odblac:"ő",odiv:"⨸",odot:"⊙",odsold:"⦼",OElig:"Œ",oelig:"œ",ofcir:"⦿",Ofr:"𝔒",ofr:"𝔬",ogon:"˛",Ograve:"Ò",ograve:"ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",Omacr:"Ō",omacr:"ō",Omega:"Ω",omega:"ω",Omicron:"Ο",omicron:"ο",omid:"⦶",ominus:"⊖",Oopf:"𝕆",oopf:"𝕠",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",orarr:"↻",Or:"⩔",or:"∨",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",Oscr:"𝒪",oscr:"ℴ",Oslash:"Ø",oslash:"ø",osol:"⊘",Otilde:"Õ",otilde:"õ",otimesas:"⨶",Otimes:"⨷",otimes:"⊗",Ouml:"Ö",ouml:"ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",para:"¶",parallel:"∥",par:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",Pcy:"П",pcy:"п",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",Pfr:"𝔓",pfr:"𝔭",Phi:"Φ",phi:"φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",Pi:"Π",pi:"π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plus:"+",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",prap:"⪷",Pr:"⪻",pr:"≺",prcue:"≼",precapprox:"⪷",prec:"≺",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",pre:"⪯",prE:"⪳",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportional:"∝",Proportion:"∷",propto:"∝",prsim:"≾",prurel:"⊰",Pscr:"𝒫",pscr:"𝓅",Psi:"Ψ",psi:"ψ",puncsp:" ",Qfr:"𝔔",qfr:"𝔮",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",Qscr:"𝒬",qscr:"𝓆",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",Racute:"Ŕ",racute:"ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarr:"→",Rarr:"↠",rArr:"⇒",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",Rarrtl:"⤖",rarrtl:"↣",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",Rcaron:"Ř",rcaron:"ř",Rcedil:"Ŗ",rcedil:"ŗ",rceil:"⌉",rcub:"}",Rcy:"Р",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",Re:"ℜ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",Rho:"Ρ",rho:"ρ",rhov:"ϱ",RightAngleBracket:"⟩",RightArrowBar:"⇥",rightarrow:"→",RightArrow:"→",Rightarrow:"⇒",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVectorBar:"⥕",RightDownVector:"⇂",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTeeArrow:"↦",RightTee:"⊢",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangleBar:"⧐",RightTriangle:"⊳",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVectorBar:"⥔",RightUpVector:"↾",RightVectorBar:"⥓",RightVector:"⇀",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"‏",rmoustache:"⎱",rmoust:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",Sacute:"Ś",sacute:"ś",sbquo:"‚",scap:"⪸",Scaron:"Š",scaron:"š",Sc:"⪼",sc:"≻",sccue:"≽",sce:"⪰",scE:"⪴",Scedil:"Ş",scedil:"ş",Scirc:"Ŝ",scirc:"ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",Scy:"С",scy:"с",sdotb:"⊡",sdot:"⋅",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",Sfr:"𝔖",sfr:"𝔰",sfrown:"⌢",sharp:"♯",SHCHcy:"Щ",shchcy:"щ",SHcy:"Ш",shcy:"ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"­",Sigma:"Σ",sigma:"σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",SOFTcy:"Ь",softcy:"ь",solbar:"⌿",solb:"⧄",sol:"/",Sopf:"𝕊",sopf:"𝕤",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squ:"□",squf:"▪",srarr:"→",Sscr:"𝒮",sscr:"𝓈",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",Star:"⋆",star:"☆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",subE:"⫅",sube:"⊆",subedot:"⫃",submult:"⫁",subnE:"⫋",subne:"⊊",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succapprox:"⪸",succ:"≻",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup1:"¹",sup2:"²",sup3:"³",sup:"⊃",Sup:"⋑",supdot:"⪾",supdsub:"⫘",supE:"⫆",supe:"⊇",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supne:"⊋",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",Tau:"Τ",tau:"τ",tbrk:"⎴",Tcaron:"Ť",tcaron:"ť",Tcedil:"Ţ",tcedil:"ţ",Tcy:"Т",tcy:"т",tdot:"⃛",telrec:"⌕",Tfr:"𝔗",tfr:"𝔱",there4:"∴",therefore:"∴",Therefore:"∴",Theta:"Θ",theta:"θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:"  ",ThinSpace:" ",thinsp:" ",thkap:"≈",thksim:"∼",THORN:"Þ",thorn:"þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",timesbar:"⨱",timesb:"⊠",times:"×",timesd:"⨰",tint:"∭",toea:"⤨",topbot:"⌶",topcir:"⫱",top:"⊤",Topf:"𝕋",topf:"𝕥",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",Tscr:"𝒯",tscr:"𝓉",TScy:"Ц",tscy:"ц",TSHcy:"Ћ",tshcy:"ћ",Tstrok:"Ŧ",tstrok:"ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",Uacute:"Ú",uacute:"ú",uarr:"↑",Uarr:"↟",uArr:"⇑",Uarrocir:"⥉",Ubrcy:"Ў",ubrcy:"ў",Ubreve:"Ŭ",ubreve:"ŭ",Ucirc:"Û",ucirc:"û",Ucy:"У",ucy:"у",udarr:"⇅",Udblac:"Ű",udblac:"ű",udhar:"⥮",ufisht:"⥾",Ufr:"𝔘",ufr:"𝔲",Ugrave:"Ù",ugrave:"ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",Umacr:"Ū",umacr:"ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",Uogon:"Ų",uogon:"ų",Uopf:"𝕌",uopf:"𝕦",UpArrowBar:"⤒",uparrow:"↑",UpArrow:"↑",Uparrow:"⇑",UpArrowDownArrow:"⇅",updownarrow:"↕",UpDownArrow:"↕",Updownarrow:"⇕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",Upsilon:"Υ",upsilon:"υ",UpTeeArrow:"↥",UpTee:"⊥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",Uring:"Ů",uring:"ů",urtri:"◹",Uscr:"𝒰",uscr:"𝓊",utdot:"⋰",Utilde:"Ũ",utilde:"ũ",utri:"▵",utrif:"▴",uuarr:"⇈",Uuml:"Ü",uuml:"ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",Vcy:"В",vcy:"в",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",veebar:"⊻",vee:"∨",Vee:"⋁",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",Vfr:"𝔙",vfr:"𝔳",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",Vopf:"𝕍",vopf:"𝕧",vprop:"∝",vrtri:"⊳",Vscr:"𝒱",vscr:"𝓋",vsubnE:"⫋︀",vsubne:"⊊︀",vsupnE:"⫌︀",vsupne:"⊋︀",Vvdash:"⊪",vzigzag:"⦚",Wcirc:"Ŵ",wcirc:"ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",Wfr:"𝔚",wfr:"𝔴",Wopf:"𝕎",wopf:"𝕨",wp:"℘",wr:"≀",wreath:"≀",Wscr:"𝒲",wscr:"𝓌",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",Xfr:"𝔛",xfr:"𝔵",xharr:"⟷",xhArr:"⟺",Xi:"Ξ",xi:"ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",Xopf:"𝕏",xopf:"𝕩",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",Xscr:"𝒳",xscr:"𝓍",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",Yacute:"Ý",yacute:"ý",YAcy:"Я",yacy:"я",Ycirc:"Ŷ",ycirc:"ŷ",Ycy:"Ы",ycy:"ы",yen:"¥",Yfr:"𝔜",yfr:"𝔶",YIcy:"Ї",yicy:"ї",Yopf:"𝕐",yopf:"𝕪",Yscr:"𝒴",yscr:"𝓎",YUcy:"Ю",yucy:"ю",yuml:"ÿ",Yuml:"Ÿ",Zacute:"Ź",zacute:"ź",Zcaron:"Ž",zcaron:"ž",Zcy:"З",zcy:"з",Zdot:"Ż",zdot:"ż",zeetrf:"ℨ",ZeroWidthSpace:"​",Zeta:"Ζ",zeta:"ζ",zfr:"𝔷",Zfr:"ℨ",ZHcy:"Ж",zhcy:"ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",Zscr:"𝒵",zscr:"𝓏",zwj:"‍",zwnj:"‌"},W=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/,Y={},$={};function X(e,u,t){var n,r,a,s,i,o="";for("string"!=typeof u&&(t=u,u=X.defaultChars),void 0===t&&(t=!0),i=function(e){var u,t,n=$[e];if(n)return n;for(n=$[e]=[],u=0;u<128;u++)t=String.fromCharCode(u),/^[0-9a-z]$/i.test(t)?n.push(t):n.push("%"+("0"+u.toString(16).toUpperCase()).slice(-2));for(u=0;u=55296&&a<=57343){if(a>=55296&&a<=56319&&n+1=56320&&s<=57343){o+=encodeURIComponent(e[n]+e[n+1]),n++;continue}o+="%EF%BF%BD"}else o+=encodeURIComponent(e[n]);return o}X.defaultChars=";/?:@&=+$,-_.!~*'()#",X.componentChars="-_.!~*'()";var ee=X,ue={};function te(e,u){var t;return"string"!=typeof u&&(u=te.defaultChars),t=function(e){var u,t,n=ue[e];if(n)return n;for(n=ue[e]=[],u=0;u<128;u++)t=String.fromCharCode(u),n.push(t);for(u=0;u=55296&&o<=57343?"���":String.fromCharCode(o),u+=6):240==(248&r)&&u+91114111?l+="����":(o-=65536,l+=String.fromCharCode(55296+(o>>10),56320+(1023&o))),u+=9):l+="�";return l}))}te.defaultChars=";/?:@&=+$,#",te.componentChars="";var ne=te;function re(){this.protocol=null,this.slashes=null,this.auth=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.pathname=null}var ae=/^([a-z0-9.+-]+:)/i,se=/:[0-9]*$/,ie=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,oe=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),le=["'"].concat(oe),De=["%","/","?",";","#"].concat(le),ce=["/","?","#"],Ae=/^[+a-z0-9A-Z_-]{0,63}$/,de=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,pe={javascript:!0,"javascript:":!0},Ee={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0};re.prototype.parse=function(e,u){var t,n,r,a,s,i=e;if(i=i.trim(),!u&&1===e.split("#").length){var o=ie.exec(i);if(o)return this.pathname=o[1],o[2]&&(this.search=o[2]),this}var l=ae.exec(i);if(l&&(r=(l=l[0]).toLowerCase(),this.protocol=l,i=i.substr(l.length)),(u||l||i.match(/^\/\/[^@\/]+@[^@\/]+/))&&(!(s="//"===i.substr(0,2))||l&&pe[l]||(i=i.substr(2),this.slashes=!0)),!pe[l]&&(s||l&&!Ee[l])){var D,c,A=-1;for(t=0;t127?C+="x":C+=g[F];if(!C.match(Ae)){var m=E.slice(0,t),f=E.slice(t+1),b=g.match(de);b&&(m.push(b[1]),f.unshift(b[2])),f.length&&(i=f.join(".")+i),this.hostname=m.join(".");break}}}}this.hostname.length>255&&(this.hostname=""),p&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}var _=i.indexOf("#");-1!==_&&(this.hash=i.substr(_),i=i.slice(0,_));var B=i.indexOf("?");return-1!==B&&(this.search=i.substr(B),i=i.slice(0,B)),i&&(this.pathname=i),Ee[r]&&this.hostname&&!this.pathname&&(this.pathname=""),this},re.prototype.parseHost=function(e){var u=se.exec(e);u&&(":"!==(u=u[0])&&(this.port=u.substr(1)),e=e.substr(0,e.length-u.length)),e&&(this.hostname=e)};Y.encode=ee,Y.decode=ne,Y.format=function(e){var u="";return u+=e.protocol||"",u+=e.slashes?"//":"",u+=e.auth?e.auth+"@":"",e.hostname&&-1!==e.hostname.indexOf(":")?u+="["+e.hostname+"]":u+=e.hostname||"",u+=e.port?":"+e.port:"",u+=e.pathname||"",(u+=e.search||"")+(e.hash||"")},Y.parse=function(e,u){if(e&&e instanceof re)return e;var t=new re;return t.parse(e,u),t};var ge={},Ce=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,Fe=/[\0-\x1F\x7F-\x9F]/,he=/[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/;ge.Any=Ce,ge.Cc=Fe,ge.Cf=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/,ge.P=W,ge.Z=he,function(e){var u=Object.prototype.hasOwnProperty;function t(e,t){return u.call(e,t)}function n(e){return!(e>=55296&&e<=57343||e>=64976&&e<=65007||65535==(65535&e)||65534==(65535&e)||e>=0&&e<=8||11===e||e>=14&&e<=31||e>=127&&e<=159||e>1114111)}function r(e){if(e>65535){var u=55296+((e-=65536)>>10),t=56320+(1023&e);return String.fromCharCode(u,t)}return String.fromCharCode(e)}var a=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,s=new RegExp(a.source+"|"+/&([a-z#][a-z0-9]{1,31});/gi.source,"gi"),i=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,o=J,l=/[&<>"]/,D=/[&<>"]/g,c={"&":"&","<":"<",">":">",'"':"""};function A(e){return c[e]}var d=/[.?*+^$[\]\\(){}|-]/g,p=W;e.lib={},e.lib.mdurl=Y,e.lib.ucmicro=ge,e.assign=function(e){var u=Array.prototype.slice.call(arguments,1);return u.forEach((function(u){if(u){if("object"!=typeof u)throw new TypeError(u+"must be object");Object.keys(u).forEach((function(t){e[t]=u[t]}))}})),e},e.isString=function(e){return"[object String]"===(u=e,Object.prototype.toString.call(u));var u},e.has=t,e.unescapeMd=function(e){return e.indexOf("\\")<0?e:e.replace(a,"$1")},e.unescapeAll=function(e){return e.indexOf("\\")<0&&e.indexOf("&")<0?e:e.replace(s,(function(e,u,a){return u||(s=e,D=0,t(o,l=a)?o[l]:35===l.charCodeAt(0)&&i.test(l)&&n(D="x"===l[1].toLowerCase()?parseInt(l.slice(2),16):parseInt(l.slice(1),10))?r(D):s);var s,l,D}))},e.isValidEntityCode=n,e.fromCodePoint=r,e.escapeHtml=function(e){return l.test(e)?e.replace(D,A):e},e.arrayReplaceAt=function(e,u,t){return[].concat(e.slice(0,u),t,e.slice(u+1))},e.isSpace=function(e){switch(e){case 9:case 32:return!0}return!1},e.isWhiteSpace=function(e){if(e>=8192&&e<=8202)return!0;switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1},e.isMdAsciiPunct=function(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}},e.isPunctChar=function(e){return p.test(e)},e.escapeRE=function(e){return e.replace(d,"\\$&")},e.normalizeReference=function(e){return e=e.trim().replace(/\s+/g," "),"Ṿ"==="ẞ".toLowerCase()&&(e=e.replace(/ẞ/g,"ß")),e.toLowerCase().toUpperCase()}}(V);var me={},fe=V.unescapeAll,be=V.unescapeAll;me.parseLinkLabel=function(e,u,t){var n,r,a,s,i=-1,o=e.posMax,l=e.pos;for(e.pos=u+1,n=1;e.pos32)return s;if(41===n){if(0===r)break;r--}u++}return a===u||0!==r||(s.str=fe(e.slice(a,u)),s.lines=0,s.pos=u,s.ok=!0),s},me.parseLinkTitle=function(e,u,t){var n,r,a=0,s=u,i={ok:!1,pos:0,lines:0,str:""};if(u>=t)return i;if(34!==(r=e.charCodeAt(u))&&39!==r&&40!==r)return i;for(u++,40===r&&(r=41);u"+ve(e[u].content)+""},ye.code_block=function(e,u,t,n,r){var a=e[u];return""+ve(e[u].content)+"\n"},ye.fence=function(e,u,t,n,r){var a,s,i,o,l,D=e[u],c=D.info?Be(D.info).trim():"",A="",d="";return c&&(A=(i=c.split(/(\s+)/g))[0],d=i.slice(2).join("")),0===(a=t.highlight&&t.highlight(D.content,A,d)||ve(D.content)).indexOf(""+a+"\n"):"
"+a+"
\n"},ye.image=function(e,u,t,n,r){var a=e[u];return a.attrs[a.attrIndex("alt")][1]=r.renderInlineAsText(a.children,t,n),r.renderToken(e,u,t)},ye.hardbreak=function(e,u,t){return t.xhtmlOut?"
\n":"
\n"},ye.softbreak=function(e,u,t){return t.breaks?t.xhtmlOut?"
\n":"
\n":"\n"},ye.text=function(e,u){return ve(e[u].content)},ye.html_block=function(e,u){return e[u].content},ye.html_inline=function(e,u){return e[u].content},ke.prototype.renderAttrs=function(e){var u,t,n;if(!e.attrs)return"";for(n="",u=0,t=e.attrs.length;u\n":">")},ke.prototype.renderInline=function(e,u,t){for(var n,r="",a=this.rules,s=0,i=e.length;s/i.test(e)}var Re=/\+-|\.\.|\?\?\?\?|!!!!|,,|--/,Te=/\((c|tm|r)\)/i,Le=/\((c|tm|r)\)/gi,Ue={c:"©",r:"®",tm:"™"};function ze(e,u){return Ue[u.toLowerCase()]}function qe(e){var u,t,n=0;for(u=e.length-1;u>=0;u--)"text"!==(t=e[u]).type||n||(t.content=t.content.replace(Le,ze)),"link_open"===t.type&&"auto"===t.info&&n--,"link_close"===t.type&&"auto"===t.info&&n++}function je(e){var u,t,n=0;for(u=e.length-1;u>=0;u--)"text"!==(t=e[u]).type||n||Re.test(t.content)&&(t.content=t.content.replace(/\+-/g,"±").replace(/\.{2,}/g,"…").replace(/([?!])…/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---(?=[^-]|$)/gm,"$1—").replace(/(^|\s)--(?=\s|$)/gm,"$1–").replace(/(^|[^-\s])--(?=[^-\s]|$)/gm,"$1–")),"link_open"===t.type&&"auto"===t.info&&n--,"link_close"===t.type&&"auto"===t.info&&n++}var Ke=V.isWhiteSpace,Qe=V.isPunctChar,Pe=V.isMdAsciiPunct,Ge=/['"]/,He=/['"]/g;function Ze(e,u,t){return e.slice(0,u)+t+e.slice(u+1)}function Ve(e,u){var t,n,r,a,s,i,o,l,D,c,A,d,p,E,g,C,F,h,m,f,b;for(m=[],t=0;t=0&&!(m[F].level<=o);F--);if(m.length=F+1,"text"===n.type){s=0,i=(r=n.content).length;e:for(;s=0)D=r.charCodeAt(a.index-1);else for(F=t-1;F>=0&&"softbreak"!==e[F].type&&"hardbreak"!==e[F].type;F--)if(e[F].content){D=e[F].content.charCodeAt(e[F].content.length-1);break}if(c=32,s=48&&D<=57&&(C=g=!1),g&&C&&(g=A,C=d),g||C){if(C)for(F=m.length-1;F>=0&&(l=m[F],!(m[F].level=0&&(t=this.attrs[u][1]),t},Je.prototype.attrJoin=function(e,u){var t=this.attrIndex(e);t<0?this.attrPush([e,u]):this.attrs[t][1]=this.attrs[t][1]+" "+u};var We=Je,Ye=We;function $e(e,u,t){this.src=e,this.env=t,this.tokens=[],this.inlineMode=!1,this.md=u}$e.prototype.Token=Ye;var Xe=$e,eu=Ne,uu=[["normalize",function(e){var u;u=(u=e.src.replace(Se,"\n")).replace(Me,"�"),e.src=u}],["block",function(e){var u;e.inlineMode?((u=new e.Token("inline","",0)).content=e.src,u.map=[0,1],u.children=[],e.tokens.push(u)):e.md.block.parse(e.src,e.md,e.env,e.tokens)}],["inline",function(e){var u,t,n,r=e.tokens;for(t=0,n=r.length;t=0;u--)if("link_close"!==(s=r[u]).type){if("html_inline"===s.type&&(F=s.content,/^\s]/i.test(F)&&d>0&&d--,Oe(s.content)&&d++),!(d>0)&&"text"===s.type&&e.md.linkify.test(s.content)){for(l=s.content,C=e.md.linkify.match(l),i=[],A=s.level,c=0,C.length>0&&0===C[0].index&&u>0&&"text_special"===r[u-1].type&&(C=C.slice(1)),o=0;oc&&((a=new e.Token("text","",0)).content=l.slice(c,D),a.level=A,i.push(a)),(a=new e.Token("link_open","a",1)).attrs=[["href",E]],a.level=A++,a.markup="linkify",a.info="auto",i.push(a),(a=new e.Token("text","",0)).content=g,a.level=A,i.push(a),(a=new e.Token("link_close","a",-1)).level=--A,a.markup="linkify",a.info="auto",i.push(a),c=C[o].lastIndex);c=0;u--)"inline"===e.tokens[u].type&&(Te.test(e.tokens[u].content)&&qe(e.tokens[u].children),Re.test(e.tokens[u].content)&&je(e.tokens[u].children))}],["smartquotes",function(e){var u;if(e.md.options.typographer)for(u=e.tokens.length-1;u>=0;u--)"inline"===e.tokens[u].type&&Ge.test(e.tokens[u].content)&&Ve(e.tokens[u].children,e)}],["text_join",function(e){var u,t,n,r,a,s,i=e.tokens;for(u=0,t=i.length;u=a)return-1;if((t=e.src.charCodeAt(r++))<48||t>57)return-1;for(;;){if(r>=a)return-1;if(!((t=e.src.charCodeAt(r++))>=48&&t<=57)){if(41===t||46===t)break;return-1}if(r-n>=10)return-1}return r`\\x00-\\x20]+|'[^']*'|\"[^\"]*\"))?)*\\s*\\/?>",gu="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",Cu=new RegExp("^(?:"+Eu+"|"+gu+"|\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e|<[?][\\s\\S]*?[?]>|]*>|)"),Fu=new RegExp("^(?:"+Eu+"|"+gu+")");pu.HTML_TAG_RE=Cu,pu.HTML_OPEN_CLOSE_TAG_RE=Fu;var hu=pu.HTML_OPEN_CLOSE_TAG_RE,mu=[[/^<(script|pre|style|textarea)(?=(\s|>|$))/i,/<\/(script|pre|style|textarea)>/i,!0],[/^/,!0],[/^<\?/,/\?>/,!0],[/^/,!0],[/^/,!0],[new RegExp("^|$))","i"),/^$/,!0],[new RegExp(hu.source+"\\s*$"),/^$/,!1]],fu=V.isSpace,bu=We,_u=V.isSpace;function Bu(e,u,t,n){var r,a,s,i,o,l,D,c;for(this.src=e,this.md=u,this.env=t,this.tokens=n,this.bMarks=[],this.eMarks=[],this.tShift=[],this.sCount=[],this.bsCount=[],this.blkIndent=0,this.line=0,this.lineMax=0,this.tight=!1,this.ddIndent=-1,this.listIndent=-1,this.parentType="root",this.level=0,this.result="",c=!1,s=i=l=D=0,o=(a=this.src).length;i0&&this.level++,this.tokens.push(n),n},Bu.prototype.isEmpty=function(e){return this.bMarks[e]+this.tShift[e]>=this.eMarks[e]},Bu.prototype.skipEmptyLines=function(e){for(var u=this.lineMax;eu;)if(!_u(this.src.charCodeAt(--e)))return e+1;return e},Bu.prototype.skipChars=function(e,u){for(var t=this.src.length;et;)if(u!==this.src.charCodeAt(--e))return e+1;return e},Bu.prototype.getLines=function(e,u,t,n){var r,a,s,i,o,l,D,c=e;if(e>=u)return"";for(l=new Array(u-e),r=0;ct?new Array(a-t+1).join(" ")+this.src.slice(i,o):this.src.slice(i,o)}return l.join("")},Bu.prototype.Token=bu;var vu=Bu,yu=Ne,ku=[["table",function(e,u,t,n){var r,a,s,i,o,l,D,c,A,d,p,E,g,C,F,h,m,f;if(u+2>t)return!1;if(l=u+1,e.sCount[l]=4)return!1;if((s=e.bMarks[l]+e.tShift[l])>=e.eMarks[l])return!1;if(124!==(m=e.src.charCodeAt(s++))&&45!==m&&58!==m)return!1;if(s>=e.eMarks[l])return!1;if(124!==(f=e.src.charCodeAt(s++))&&45!==f&&58!==f&&!ru(f))return!1;if(45===m&&ru(f))return!1;for(;s=4)return!1;if((D=su(a)).length&&""===D[0]&&D.shift(),D.length&&""===D[D.length-1]&&D.pop(),0===(c=D.length)||c!==d.length)return!1;if(n)return!0;for(C=e.parentType,e.parentType="table",h=e.md.block.ruler.getRules("blockquote"),(A=e.push("table_open","table",1)).map=E=[u,0],(A=e.push("thead_open","thead",1)).map=[u,u+1],(A=e.push("tr_open","tr",1)).map=[u,u+1],i=0;i=4)break;for((D=su(a)).length&&""===D[0]&&D.shift(),D.length&&""===D[D.length-1]&&D.pop(),l===u+2&&((A=e.push("tbody_open","tbody",1)).map=g=[u+2,0]),(A=e.push("tr_open","tr",1)).map=[l,l+1],i=0;i=4))break;r=++n}return e.line=r,(a=e.push("code_block","code",0)).content=e.getLines(u,r,4+e.blkIndent,!1)+"\n",a.map=[u,e.line],!0}],["fence",function(e,u,t,n){var r,a,s,i,o,l,D,c=!1,A=e.bMarks[u]+e.tShift[u],d=e.eMarks[u];if(e.sCount[u]-e.blkIndent>=4)return!1;if(A+3>d)return!1;if(126!==(r=e.src.charCodeAt(A))&&96!==r)return!1;if(o=A,(a=(A=e.skipChars(A,r))-o)<3)return!1;if(D=e.src.slice(o,A),s=e.src.slice(A,d),96===r&&s.indexOf(String.fromCharCode(r))>=0)return!1;if(n)return!0;for(i=u;!(++i>=t||(A=o=e.bMarks[i]+e.tShift[i])<(d=e.eMarks[i])&&e.sCount[i]=4||(A=e.skipChars(A,r))-o=4)return!1;if(62!==e.src.charCodeAt(v++))return!1;if(n)return!0;for(i=A=e.sCount[u]+1,32===e.src.charCodeAt(v)?(v++,i++,A++,r=!1,h=!0):9===e.src.charCodeAt(v)?(h=!0,(e.bsCount[u]+A)%4==3?(v++,i++,A++,r=!1):r=!0):h=!1,d=[e.bMarks[u]],e.bMarks[u]=v;v=y,C=[e.sCount[u]],e.sCount[u]=A-i,F=[e.tShift[u]],e.tShift[u]=v-e.bMarks[u],f=e.md.block.ruler.getRules("blockquote"),g=e.parentType,e.parentType="blockquote",c=u+1;c=(y=e.eMarks[c])));c++)if(62!==e.src.charCodeAt(v++)||_){if(l)break;for(m=!1,s=0,o=f.length;s=y,p.push(e.bsCount[c]),e.bsCount[c]=e.sCount[c]+1+(h?1:0),C.push(e.sCount[c]),e.sCount[c]=A-i,F.push(e.tShift[c]),e.tShift[c]=v-e.bMarks[c]}for(E=e.blkIndent,e.blkIndent=0,(b=e.push("blockquote_open","blockquote",1)).markup=">",b.map=D=[u,0],e.md.block.tokenize(e,u,c),(b=e.push("blockquote_close","blockquote",-1)).markup=">",e.lineMax=B,e.parentType=g,D[1]=e.line,s=0;s=4)return!1;if(42!==(r=e.src.charCodeAt(o++))&&45!==r&&95!==r)return!1;for(a=1;o=4)return!1;if(e.listIndent>=0&&e.sCount[u]-e.listIndent>=4&&e.sCount[u]=e.blkIndent&&(M=!0),(y=cu(e,u))>=0){if(D=!0,w=e.bMarks[u]+e.tShift[u],g=Number(e.src.slice(w,y-1)),M&&1!==g)return!1}else{if(!((y=Du(e,u))>=0))return!1;D=!1}if(M&&e.skipSpaces(y)>=e.eMarks[u])return!1;if(E=e.src.charCodeAt(y-1),n)return!0;for(p=e.tokens.length,D?(S=e.push("ordered_list_open","ol",1),1!==g&&(S.attrs=[["start",g]])):S=e.push("bullet_list_open","ul",1),S.map=d=[u,0],S.markup=String.fromCharCode(E),F=u,k=!1,N=e.md.block.ruler.getRules("list"),f=e.parentType,e.parentType="list";F=C?1:h-l)>4&&(o=1),i=l+o,(S=e.push("list_item_open","li",1)).markup=String.fromCharCode(E),S.map=c=[u,0],D&&(S.info=e.src.slice(w,y-1)),B=e.tight,_=e.tShift[u],b=e.sCount[u],m=e.listIndent,e.listIndent=e.blkIndent,e.blkIndent=i,e.tight=!0,e.tShift[u]=a-e.bMarks[u],e.sCount[u]=h,a>=C&&e.isEmpty(u+1)?e.line=Math.min(e.line+2,t):e.md.block.tokenize(e,u,t,!0),e.tight&&!k||(I=!1),k=e.line-u>1&&e.isEmpty(e.line-1),e.blkIndent=e.listIndent,e.listIndent=m,e.tShift[u]=_,e.sCount[u]=b,e.tight=B,(S=e.push("list_item_close","li",-1)).markup=String.fromCharCode(E),F=u=e.line,c[1]=F,a=e.bMarks[u],F>=t)break;if(e.sCount[F]=4)break;for(x=!1,s=0,A=N.length;s=4)return!1;if(91!==e.src.charCodeAt(f))return!1;for(;++f3||e.sCount[_]<0)){for(C=!1,l=0,D=F.length;l=4)return!1;if(!e.md.options.html)return!1;if(60!==e.src.charCodeAt(o))return!1;for(i=e.src.slice(o,l),r=0;r=4)return!1;if(35!==(r=e.src.charCodeAt(o))||o>=l)return!1;for(a=1,r=e.src.charCodeAt(++o);35===r&&o6||oo&&fu(e.src.charCodeAt(s-1))&&(l=s),e.line=u+1,(i=e.push("heading_open","h"+String(a),1)).markup="########".slice(0,a),i.map=[u,e.line],(i=e.push("inline","",0)).content=e.src.slice(o,l).trim(),i.map=[u,e.line],i.children=[],(i=e.push("heading_close","h"+String(a),-1)).markup="########".slice(0,a)),0))},["paragraph","reference","blockquote"]],["lheading",function(e,u,t){var n,r,a,s,i,o,l,D,c,A,d=u+1,p=e.md.block.ruler.getRules("paragraph");if(e.sCount[u]-e.blkIndent>=4)return!1;for(A=e.parentType,e.parentType="paragraph";d3)){if(e.sCount[d]>=e.blkIndent&&(o=e.bMarks[d]+e.tShift[d])<(l=e.eMarks[d])&&(45===(c=e.src.charCodeAt(o))||61===c)&&(o=e.skipChars(o,c),(o=e.skipSpaces(o))>=l)){D=61===c?1:2;break}if(!(e.sCount[d]<0)){for(r=!1,a=0,s=p.length;a3||e.sCount[o]<0)){for(n=!1,r=0,a=l.length;r=t))&&!(e.sCount[s]=o){e.line=t;break}for(n=0;n?@[]^_`{|}~-".split("").forEach((function(e){Ou[e.charCodeAt(0)]=1}));var Tu={};function Lu(e,u){var t,n,r,a,s,i=[],o=u.length;for(t=0;t=0;t--)95!==(n=u[t]).marker&&42!==n.marker||-1!==n.end&&(r=u[n.end],i=t>0&&u[t-1].end===n.end+1&&u[t-1].marker===n.marker&&u[t-1].token===n.token-1&&u[n.end+1].token===r.token+1,s=String.fromCharCode(n.marker),(a=e.tokens[n.token]).type=i?"strong_open":"em_open",a.tag=i?"strong":"em",a.nesting=1,a.markup=i?s+s:s,a.content="",(a=e.tokens[r.token]).type=i?"strong_close":"em_close",a.tag=i?"strong":"em",a.nesting=-1,a.markup=i?s+s:s,a.content="",i&&(e.tokens[u[t-1].token].content="",e.tokens[u[n.end+1].token].content="",t--))}Uu.tokenize=function(e,u){var t,n,r=e.pos,a=e.src.charCodeAt(r);if(u)return!1;if(95!==a&&42!==a)return!1;for(n=e.scanDelims(e.pos,42===a),t=0;t\x00-\x20]*)$/,Hu=pu.HTML_TAG_RE,Zu=J,Vu=V.has,Ju=V.isValidEntityCode,Wu=V.fromCodePoint,Yu=/^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i,$u=/^&([a-z][a-z0-9]{1,31});/i;function Xu(e,u){var t,n,r,a,s,i,o,l,D={},c=u.length;if(c){var A=0,d=-2,p=[];for(t=0;ts;n-=p[n]+1)if((a=u[n]).marker===r.marker&&a.open&&a.end<0&&(o=!1,(a.close||r.open)&&(a.length+r.length)%3==0&&(a.length%3==0&&r.length%3==0||(o=!0)),!o)){l=n>0&&!u[n-1].open?p[n-1]+1:0,p[t]=t-n+l,p[n]=l,r.open=!1,a.end=t,a.close=!1,i=-1,d=-2;break}-1!==i&&(D[r.marker][(r.open?3:0)+(r.length||0)%3]=i)}}}var et=We,ut=V.isWhiteSpace,tt=V.isPunctChar,nt=V.isMdAsciiPunct;function rt(e,u,t,n){this.src=e,this.env=t,this.md=u,this.tokens=n,this.tokens_meta=Array(n.length),this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache={},this.delimiters=[],this._prev_delimiters=[],this.backticks={},this.backticksScanned=!1,this.linkLevel=0}rt.prototype.pushPending=function(){var e=new et("text","",0);return e.content=this.pending,e.level=this.pendingLevel,this.tokens.push(e),this.pending="",e},rt.prototype.push=function(e,u,t){this.pending&&this.pushPending();var n=new et(e,u,t),r=null;return t<0&&(this.level--,this.delimiters=this._prev_delimiters.pop()),n.level=this.level,t>0&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],r={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(n),this.tokens_meta.push(r),n},rt.prototype.scanDelims=function(e,u){var t,n,r,a,s,i,o,l,D,c=e,A=!0,d=!0,p=this.posMax,E=this.src.charCodeAt(e);for(t=e>0?this.src.charCodeAt(e-1):32;c0||(t=e.pos)+3>e.posMax||58!==e.src.charCodeAt(t)||47!==e.src.charCodeAt(t+1)||47!==e.src.charCodeAt(t+2)||!(n=e.pending.match(Su))||(r=n[1],!(a=e.md.linkify.matchAtStart(e.src.slice(t-r.length)))||(s=(s=a.url).replace(/\*+$/,""),i=e.md.normalizeLink(s),!e.md.validateLink(i)||(u||(e.pending=e.pending.slice(0,-r.length),(o=e.push("link_open","a",1)).attrs=[["href",i]],o.markup="linkify",o.info="auto",(o=e.push("text","",0)).content=e.md.normalizeLinkText(s),(o=e.push("link_close","a",-1)).markup="linkify",o.info="auto"),e.pos+=s.length-r.length,0))))}],["newline",function(e,u){var t,n,r,a=e.pos;if(10!==e.src.charCodeAt(a))return!1;if(t=e.pending.length-1,n=e.posMax,!u)if(t>=0&&32===e.pending.charCodeAt(t))if(t>=1&&32===e.pending.charCodeAt(t-1)){for(r=t-1;r>=1&&32===e.pending.charCodeAt(r-1);)r--;e.pending=e.pending.slice(0,r),e.push("hardbreak","br",0)}else e.pending=e.pending.slice(0,-1),e.push("softbreak","br",0);else e.push("softbreak","br",0);for(a++;a=o)return!1;if(10===(t=e.src.charCodeAt(i))){for(u||e.push("hardbreak","br",0),i++;i=55296&&t<=56319&&i+1=56320&&n<=57343&&(a+=e.src[i+1],i++),r="\\"+a,u||(s=e.push("text_special","",0),t<256&&0!==Ou[t]?s.content=a:s.content=r,s.markup=r,s.info="escape"),e.pos=i+1,!0}],["backticks",function(e,u){var t,n,r,a,s,i,o,l,D=e.pos;if(96!==e.src.charCodeAt(D))return!1;for(t=D,D++,n=e.posMax;D=d)return!1;if(p=i,(o=e.md.helpers.parseLinkDestination(e.src,i,e.posMax)).ok){for(D=e.md.normalizeLink(o.str),e.md.validateLink(D)?i=o.pos:D="",p=i;i=d||41!==e.src.charCodeAt(i))&&(E=!0),i++}if(E){if(void 0===e.env.references)return!1;if(i=0?r=e.src.slice(p,i++):i=a+1):i=a+1,r||(r=e.src.slice(s,a)),!(l=e.env.references[qu(r)]))return e.pos=A,!1;D=l.href,c=l.title}return u||(e.pos=s,e.posMax=a,e.push("link_open","a",1).attrs=t=[["href",D]],c&&t.push(["title",c]),e.linkLevel++,e.md.inline.tokenize(e),e.linkLevel--,e.push("link_close","a",-1)),e.pos=i,e.posMax=d,!0}],["image",function(e,u){var t,n,r,a,s,i,o,l,D,c,A,d,p,E="",g=e.pos,C=e.posMax;if(33!==e.src.charCodeAt(e.pos))return!1;if(91!==e.src.charCodeAt(e.pos+1))return!1;if(i=e.pos+2,(s=e.md.helpers.parseLinkLabel(e,e.pos+1,!1))<0)return!1;if((o=s+1)=C)return!1;for(p=o,(D=e.md.helpers.parseLinkDestination(e.src,o,e.posMax)).ok&&(E=e.md.normalizeLink(D.str),e.md.validateLink(E)?o=D.pos:E=""),p=o;o=C||41!==e.src.charCodeAt(o))return e.pos=g,!1;o++}else{if(void 0===e.env.references)return!1;if(o=0?a=e.src.slice(p,o++):o=s+1):o=s+1,a||(a=e.src.slice(i,s)),!(l=e.env.references[Ku(a)]))return e.pos=g,!1;E=l.href,c=l.title}return u||(r=e.src.slice(i,s),e.md.inline.parse(r,e.md,e.env,d=[]),(A=e.push("image","img",0)).attrs=t=[["src",E],["alt",""]],A.children=d,A.content=r,c&&t.push(["title",c])),e.pos=o,e.posMax=C,!0}],["autolink",function(e,u){var t,n,r,a,s,i,o=e.pos;if(60!==e.src.charCodeAt(o))return!1;for(s=e.pos,i=e.posMax;;){if(++o>=i)return!1;if(60===(a=e.src.charCodeAt(o)))return!1;if(62===a)break}return t=e.src.slice(s+1,o),Gu.test(t)?(n=e.md.normalizeLink(t),!!e.md.validateLink(n)&&(u||((r=e.push("link_open","a",1)).attrs=[["href",n]],r.markup="autolink",r.info="auto",(r=e.push("text","",0)).content=e.md.normalizeLinkText(t),(r=e.push("link_close","a",-1)).markup="autolink",r.info="auto"),e.pos+=t.length+2,!0)):!!Pu.test(t)&&(n=e.md.normalizeLink("mailto:"+t),!!e.md.validateLink(n)&&(u||((r=e.push("link_open","a",1)).attrs=[["href",n]],r.markup="autolink",r.info="auto",(r=e.push("text","",0)).content=e.md.normalizeLinkText(t),(r=e.push("link_close","a",-1)).markup="autolink",r.info="auto"),e.pos+=t.length+2,!0))}],["html_inline",function(e,u){var t,n,r,a,s,i,o,l=e.pos;return!(!e.md.options.html||(r=e.posMax,60!==e.src.charCodeAt(l)||l+2>=r||33!==(t=e.src.charCodeAt(l+1))&&63!==t&&47!==t&&(i=t,o=32|i,!(o>=97&&o<=122))||!(n=e.src.slice(l).match(Hu))||(u||((a=e.push("html_inline","",0)).content=e.src.slice(l,l+n[0].length),s=a.content,/^\s]/i.test(s)&&e.linkLevel++,function(e){return/^<\/a\s*>/i.test(e)}(a.content)&&e.linkLevel--),e.pos+=n[0].length,0)))}],["entity",function(e,u){var t,n,r,a=e.pos,s=e.posMax;if(38!==e.src.charCodeAt(a))return!1;if(a+1>=s)return!1;if(35===e.src.charCodeAt(a+1)){if(n=e.src.slice(a).match(Yu))return u||(t="x"===n[1][0].toLowerCase()?parseInt(n[1].slice(1),16):parseInt(n[1],10),(r=e.push("text_special","",0)).content=Ju(t)?Wu(t):Wu(65533),r.markup=n[0],r.info="entity"),e.pos+=n[0].length,!0}else if((n=e.src.slice(a).match($u))&&Vu(Zu,n[1]))return u||((r=e.push("text_special","",0)).content=Zu[n[1]],r.markup=n[0],r.info="entity"),e.pos+=n[0].length,!0;return!1}]],ot=[["balance_pairs",function(e){var u,t=e.tokens_meta,n=e.tokens_meta.length;for(Xu(0,e.delimiters),u=0;u0&&n++,"text"===r[u].type&&u+1=a)break}else e.pending+=e.src[e.pos++]}e.pending&&e.pushPending()},lt.prototype.parse=function(e,u,t,n){var r,a,s,i=new this.State(e,u,t,n);for(this.tokenize(i),s=(a=this.ruler2.getRules("")).length,r=0;r=3&&":"===e[u-3]||u>=3&&"/"===e[u-3]?0:n.match(t.re.no_http)[0].length:0}},"mailto:":{validate:function(e,u,t){var n=e.slice(u);return t.re.mailto||(t.re.mailto=new RegExp("^"+t.re.src_email_name+"@"+t.re.src_host_strict,"i")),t.re.mailto.test(n)?n.match(t.re.mailto)[0].length:0}}},Ct="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф".split("|");function Ft(e){var u,t,n=e.re=(u=(u=e.__opts__)||{},(t={}).src_Any=Ce.source,t.src_Cc=Fe.source,t.src_Z=he.source,t.src_P=W.source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join("|"),t.src_ZCc=[t.src_Z,t.src_Cc].join("|"),t.src_pseudo_letter="(?:(?![><|]|"+t.src_ZPCc+")"+t.src_Any+")",t.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",t.src_auth="(?:(?:(?!"+t.src_ZCc+"|[@/\\[\\]()]).)+@)?",t.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",t.src_host_terminator="(?=$|[><|]|"+t.src_ZPCc+")(?!"+(u["---"]?"-(?!--)|":"-|")+"_|:\\d|\\.-|\\.(?!$|"+t.src_ZPCc+"))",t.src_path="(?:[/?#](?:(?!"+t.src_ZCc+"|[><|]|[()[\\]{}.,\"'?!\\-;]).|\\[(?:(?!"+t.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+t.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+t.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+t.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+t.src_ZCc+"|[']).)+\\'|\\'(?="+t.src_pseudo_letter+"|[-])|\\.{2,}[a-zA-Z0-9%/&]|\\.(?!"+t.src_ZCc+"|[.]|$)|"+(u["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+",(?!"+t.src_ZCc+"|$)|;(?!"+t.src_ZCc+"|$)|\\!+(?!"+t.src_ZCc+"|[!]|$)|\\?(?!"+t.src_ZCc+"|[?]|$))+|\\/)?",t.src_email_name='[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]*',t.src_xn="xn--[a-z0-9\\-]{1,59}",t.src_domain_root="(?:"+t.src_xn+"|"+t.src_pseudo_letter+"{1,63})",t.src_domain="(?:"+t.src_xn+"|(?:"+t.src_pseudo_letter+")|(?:"+t.src_pseudo_letter+"(?:-|"+t.src_pseudo_letter+"){0,61}"+t.src_pseudo_letter+"))",t.src_host="(?:(?:(?:(?:"+t.src_domain+")\\.)*"+t.src_domain+"))",t.tpl_host_fuzzy="(?:"+t.src_ip4+"|(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%)))",t.tpl_host_no_ip_fuzzy="(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%))",t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+t.src_ZPCc+"|>|$))",t.tpl_email_fuzzy='(^|[><|]|"|\\(|'+t.src_ZCc+")("+t.src_email_name+"@"+t.tpl_host_fuzzy_strict+")",t.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_fuzzy_strict+t.src_path+")",t.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_no_ip_fuzzy_strict+t.src_path+")",t),r=e.__tlds__.slice();function a(e){return e.replace("%TLDS%",n.src_tlds)}e.onCompile(),e.__tlds_replaced__||r.push("a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]"),r.push(n.src_xn),n.src_tlds=r.join("|"),n.email_fuzzy=RegExp(a(n.tpl_email_fuzzy),"i"),n.link_fuzzy=RegExp(a(n.tpl_link_fuzzy),"i"),n.link_no_ip_fuzzy=RegExp(a(n.tpl_link_no_ip_fuzzy),"i"),n.host_fuzzy_test=RegExp(a(n.tpl_host_fuzzy_test),"i");var s=[];function i(e,u){throw new Error('(LinkifyIt) Invalid schema "'+e+'": '+u)}e.__compiled__={},Object.keys(e.__schemas__).forEach((function(u){var t=e.__schemas__[u];if(null!==t){var n={validate:null,link:null};if(e.__compiled__[u]=n,"[object Object]"===At(t))return function(e){return"[object RegExp]"===At(e)}(t.validate)?n.validate=function(e){return function(u,t){var n=u.slice(t);return e.test(n)?n.match(e)[0].length:0}}(t.validate):dt(t.validate)?n.validate=t.validate:i(u,t),void(dt(t.normalize)?n.normalize=t.normalize:t.normalize?i(u,t):n.normalize=function(e,u){u.normalize(e)});!function(e){return"[object String]"===At(e)}(t)?i(u,t):s.push(u)}})),s.forEach((function(u){e.__compiled__[e.__schemas__[u]]&&(e.__compiled__[u].validate=e.__compiled__[e.__schemas__[u]].validate,e.__compiled__[u].normalize=e.__compiled__[e.__schemas__[u]].normalize)})),e.__compiled__[""]={validate:null,normalize:function(e,u){u.normalize(e)}};var o=Object.keys(e.__compiled__).filter((function(u){return u.length>0&&e.__compiled__[u]})).map(pt).join("|");e.re.schema_test=RegExp("(^|(?!_)(?:[><|]|"+n.src_ZPCc+"))("+o+")","i"),e.re.schema_search=RegExp("(^|(?!_)(?:[><|]|"+n.src_ZPCc+"))("+o+")","ig"),e.re.schema_at_start=RegExp("^"+e.re.schema_search.source,"i"),e.re.pretest=RegExp("("+e.re.schema_test.source+")|("+e.re.host_fuzzy_test.source+")|@","i"),function(e){e.__index__=-1,e.__text_cache__=""}(e)}function ht(e,u){var t=e.__index__,n=e.__last_index__,r=e.__text_cache__.slice(t,n);this.schema=e.__schema__.toLowerCase(),this.index=t+u,this.lastIndex=n+u,this.raw=r,this.text=r,this.url=r}function mt(e,u){var t=new ht(e,u);return e.__compiled__[t.schema].normalize(t,e),t}function ft(e,u){if(!(this instanceof ft))return new ft(e,u);var t;u||(t=e,Object.keys(t||{}).reduce((function(e,u){return e||Et.hasOwnProperty(u)}),!1)&&(u=e,e={})),this.__opts__=ct({},Et,u),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=ct({},gt,e),this.__compiled__={},this.__tlds__=Ct,this.__tlds_replaced__=!1,this.re={},Ft(this)}ft.prototype.add=function(e,u){return this.__schemas__[e]=u,Ft(this),this},ft.prototype.set=function(e){return this.__opts__=ct(this.__opts__,e),this},ft.prototype.test=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return!1;var u,t,n,r,a,s,i,o;if(this.re.schema_test.test(e))for((i=this.re.schema_search).lastIndex=0;null!==(u=i.exec(e));)if(r=this.testSchemaAt(e,u[2],i.lastIndex)){this.__schema__=u[2],this.__index__=u.index+u[1].length,this.__last_index__=u.index+u[0].length+r;break}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(o=e.search(this.re.host_fuzzy_test))>=0&&(this.__index__<0||o=0&&null!==(n=e.match(this.re.email_fuzzy))&&(a=n.index+n[1].length,s=n.index+n[0].length,(this.__index__<0||athis.__last_index__)&&(this.__schema__="mailto:",this.__index__=a,this.__last_index__=s)),this.__index__>=0},ft.prototype.pretest=function(e){return this.re.pretest.test(e)},ft.prototype.testSchemaAt=function(e,u,t){return this.__compiled__[u.toLowerCase()]?this.__compiled__[u.toLowerCase()].validate(e,t,this):0},ft.prototype.match=function(e){var u=0,t=[];this.__index__>=0&&this.__text_cache__===e&&(t.push(mt(this,u)),u=this.__last_index__);for(var n=u?e.slice(u):e;this.test(n);)t.push(mt(this,u)),n=n.slice(this.__last_index__),u+=this.__last_index__;return t.length?t:null},ft.prototype.matchAtStart=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return null;var u=this.re.schema_at_start.exec(e);if(!u)return null;var t=this.testSchemaAt(e,u[2],u[0].length);return t?(this.__schema__=u[2],this.__index__=u.index+u[1].length,this.__last_index__=u.index+u[0].length+t,mt(this,0)):null},ft.prototype.tlds=function(e,u){return e=Array.isArray(e)?e:[e],u?(this.__tlds__=this.__tlds__.concat(e).sort().filter((function(e,u,t){return e!==t[u-1]})).reverse(),Ft(this),this):(this.__tlds__=e.slice(),this.__tlds_replaced__=!0,Ft(this),this)},ft.prototype.normalize=function(e){e.schema||(e.url="http://"+e.url),"mailto:"!==e.schema||/^mailto:/i.test(e.url)||(e.url="mailto:"+e.url)},ft.prototype.onCompile=function(){};var bt=ft,_t=2147483647,Bt=/^xn--/,vt=/[^\x20-\x7E]/,yt=/[\x2E\u3002\uFF0E\uFF61]/g,kt={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},wt=Math.floor,xt=String.fromCharCode; -/*! https://mths.be/punycode v1.4.1 by @mathias */function Nt(e){throw new RangeError(kt[e])}function St(e,u){for(var t=e.length,n=[];t--;)n[t]=u(e[t]);return n}function Mt(e,u){var t=e.split("@"),n="";return t.length>1&&(n=t[0]+"@",e=t[1]),n+St((e=e.replace(yt,".")).split("."),u).join(".")}function It(e){for(var u,t,n=[],r=0,a=e.length;r=55296&&u<=56319&&r65535&&(u+=xt((e-=65536)>>>10&1023|55296),e=56320|1023&e),u+xt(e)})).join("")}function Rt(e,u){return e+22+75*(e<26)-((0!=u)<<5)}function Tt(e,u,t){var n=0;for(e=t?wt(e/700):e>>1,e+=wt(e/u);e>455;n+=36)e=wt(e/35);return wt(n+36*e/(e+38))}function Lt(e){var u,t,n,r,a,s,i,o,l,D,c,A=[],d=e.length,p=0,E=128,g=72;for((t=e.lastIndexOf("-"))<0&&(t=0),n=0;n=128&&Nt("not-basic"),A.push(e.charCodeAt(n));for(r=t>0?t+1:0;r=d&&Nt("invalid-input"),((o=(c=e.charCodeAt(r++))-48<10?c-22:c-65<26?c-65:c-97<26?c-97:36)>=36||o>wt((_t-p)/s))&&Nt("overflow"),p+=o*s,!(o<(l=i<=g?1:i>=g+26?26:i-g));i+=36)s>wt(_t/(D=36-l))&&Nt("overflow"),s*=D;g=Tt(p-a,u=A.length+1,0==a),wt(p/u)>_t-E&&Nt("overflow"),E+=wt(p/u),p%=u,A.splice(p++,0,E)}return Ot(A)}function Ut(e){var u,t,n,r,a,s,i,o,l,D,c,A,d,p,E,g=[];for(A=(e=It(e)).length,u=128,t=0,a=72,s=0;s=u&&cwt((_t-t)/(d=n+1))&&Nt("overflow"),t+=(i-u)*d,u=i,s=0;s_t&&Nt("overflow"),c==u){for(o=t,l=36;!(o<(D=l<=a?1:l>=a+26?26:l-a));l+=36)E=o-D,p=36-D,g.push(xt(Rt(D+E%p,0))),o=wt(E/p);g.push(xt(Rt(o,0))),a=Tt(t,d,n==r),t=0,++n}++t,++u}return g.join("")}function zt(e){return Mt(e,(function(e){return Bt.test(e)?Lt(e.slice(4).toLowerCase()):e}))}function qt(e){return Mt(e,(function(e){return vt.test(e)?"xn--"+Ut(e):e}))}var jt={decode:It,encode:Ot},Kt={version:"1.4.1",ucs2:jt,toASCII:qt,toUnicode:zt,encode:Ut,decode:Lt},Qt=V,Pt=me,Gt=we,Ht=nu,Zt=xu,Vt=Dt,Jt=bt,Wt=Y,Yt=function(e){if(e.__esModule)return e;var u=Object.defineProperty({},"__esModule",{value:!0});return Object.keys(e).forEach((function(t){var n=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(u,t,n.get?n:{enumerable:!0,get:function(){return e[t]}})})),u}(Object.freeze({__proto__:null,decode:Lt,encode:Ut,toUnicode:zt,toASCII:qt,version:"1.4.1",ucs2:jt,default:Kt})),$t={default:{options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}},zero:{options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["paragraph"]},inline:{rules:["text"],rules2:["balance_pairs","fragments_join"]}}},commonmark:{options:{html:!0,xhtmlOut:!0,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["blockquote","code","fence","heading","hr","html_block","lheading","list","reference","paragraph"]},inline:{rules:["autolink","backticks","emphasis","entity","escape","html_inline","image","link","newline","text"],rules2:["balance_pairs","emphasis","fragments_join"]}}}},Xt=/^(vbscript|javascript|file|data):/,en=/^data:image\/(gif|png|jpeg|webp);/;function un(e){var u=e.trim().toLowerCase();return!Xt.test(u)||!!en.test(u)}var tn=["http:","https:","mailto:"];function nn(e){var u=Wt.parse(e,!0);if(u.hostname&&(!u.protocol||tn.indexOf(u.protocol)>=0))try{u.hostname=Yt.toASCII(u.hostname)}catch(t){}return Wt.encode(Wt.format(u))}function rn(e){var u=Wt.parse(e,!0);if(u.hostname&&(!u.protocol||tn.indexOf(u.protocol)>=0))try{u.hostname=Yt.toUnicode(u.hostname)}catch(t){}return Wt.decode(Wt.format(u),Wt.decode.defaultChars+"%")}function an(e,u){if(!(this instanceof an))return new an(e,u);u||Qt.isString(e)||(u=e||{},e="default"),this.inline=new Vt,this.block=new Zt,this.core=new Ht,this.renderer=new Gt,this.linkify=new Jt,this.validateLink=un,this.normalizeLink=nn,this.normalizeLinkText=rn,this.utils=Qt,this.helpers=Qt.assign({},Pt),this.options={},this.configure(e),u&&this.set(u)}an.prototype.set=function(e){return Qt.assign(this.options,e),this},an.prototype.configure=function(e){var u,t=this;if(Qt.isString(e)&&!(e=$t[u=e]))throw new Error('Wrong `markdown-it` preset "'+u+'", check name');if(!e)throw new Error("Wrong `markdown-it` preset, can't be empty");return e.options&&t.set(e.options),e.components&&Object.keys(e.components).forEach((function(u){e.components[u].rules&&t[u].ruler.enableOnly(e.components[u].rules),e.components[u].rules2&&t[u].ruler2.enableOnly(e.components[u].rules2)})),this},an.prototype.enable=function(e,u){var t=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(u){t=t.concat(this[u].ruler.enable(e,!0))}),this),t=t.concat(this.inline.ruler2.enable(e,!0));var n=e.filter((function(e){return t.indexOf(e)<0}));if(n.length&&!u)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+n);return this},an.prototype.disable=function(e,u){var t=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(u){t=t.concat(this[u].ruler.disable(e,!0))}),this),t=t.concat(this.inline.ruler2.disable(e,!0));var n=e.filter((function(e){return t.indexOf(e)<0}));if(n.length&&!u)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+n);return this},an.prototype.use=function(e){var u=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,u),this},an.prototype.parse=function(e,u){if("string"!=typeof e)throw new Error("Input data should be a String");var t=new this.core.State(e,this,u);return this.core.process(t),t.tokens},an.prototype.render=function(e,u){return u=u||{},this.renderer.render(this.parse(e,u),this.options,u)},an.prototype.parseInline=function(e,u){var t=new this.core.State(e,this,u);return t.inlineMode=!0,this.core.process(t),t.tokens},an.prototype.renderInline=function(e,u){return u=u||{},this.renderer.render(this.parseInline(e,u),this.options,u)};var sn=an,on={exports:{}}; -/*! - Highlight.js v11.7.0 (git: 82688fad18) - (c) 2006-2022 undefined and other contributors - License: BSD-3-Clause - */function ln(e){return e instanceof Map?e.clear=e.delete=e.set=()=>{throw Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete=()=>{throw Error("set is read-only")}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach((u=>{var t=e[u];"object"!=typeof t||Object.isFrozen(t)||ln(t)})),e}on.exports=ln,on.exports.default=ln;class Dn{constructor(e){void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}}function cn(e){return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}function An(e,...u){const t=Object.create(null);for(const n in e)t[n]=e[n];return u.forEach((e=>{for(const u in e)t[u]=e[u]})),t}const dn=e=>!!e.scope||e.sublanguage&&e.language;class pn{constructor(e,u){this.buffer="",this.classPrefix=u.classPrefix,e.walk(this)}addText(e){this.buffer+=cn(e)}openNode(e){if(!dn(e))return;let u="";u=e.sublanguage?"language-"+e.language:((e,{prefix:u})=>{if(e.includes(".")){const t=e.split(".");return[`${u}${t.shift()}`,...t.map(((e,u)=>`${e}${"_".repeat(u+1)}`))].join(" ")}return`${u}${e}`})(e.scope,{prefix:this.classPrefix}),this.span(u)}closeNode(e){dn(e)&&(this.buffer+="")}value(){return this.buffer}span(e){this.buffer+=``}}const En=(e={})=>{const u={children:[]};return Object.assign(u,e),u};class gn{constructor(){this.rootNode=En(),this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){const u=En({scope:e});this.add(u),this.stack.push(u)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,u){return"string"==typeof u?e.addText(u):u.children&&(e.openNode(u),u.children.forEach((u=>this._walk(e,u))),e.closeNode(u)),e}static _collapse(e){"string"!=typeof e&&e.children&&(e.children.every((e=>"string"==typeof e))?e.children=[e.children.join("")]:e.children.forEach((e=>{gn._collapse(e)})))}}class Cn extends gn{constructor(e){super(),this.options=e}addKeyword(e,u){""!==e&&(this.openNode(u),this.addText(e),this.closeNode())}addText(e){""!==e&&this.add(e)}addSublanguage(e,u){const t=e.root;t.sublanguage=!0,t.language=u,this.add(t)}toHTML(){return new pn(this,this.options).value()}finalize(){return!0}}function Fn(e){return e?"string"==typeof e?e:e.source:null}function hn(e){return bn("(?=",e,")")}function mn(e){return bn("(?:",e,")*")}function fn(e){return bn("(?:",e,")?")}function bn(...e){return e.map((e=>Fn(e))).join("")}function _n(...e){return"("+((e=>{const u=e[e.length-1];return"object"==typeof u&&u.constructor===Object?(e.splice(e.length-1,1),u):{}})(e).capture?"":"?:")+e.map((e=>Fn(e))).join("|")+")"}function Bn(e){return RegExp(e.toString()+"|").exec("").length-1}const vn=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function yn(e,{joinWith:u}){let t=0;return e.map((e=>{t+=1;const u=t;let n=Fn(e),r="";for(;n.length>0;){const e=vn.exec(n);if(!e){r+=n;break}r+=n.substring(0,e.index),n=n.substring(e.index+e[0].length),"\\"===e[0][0]&&e[1]?r+="\\"+(Number(e[1])+u):(r+=e[0],"("===e[0]&&t++)}return r})).map((e=>`(${e})`)).join(u)}const kn="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",wn={begin:"\\\\[\\s\\S]",relevance:0},xn={scope:"string",begin:"'",end:"'",illegal:"\\n",contains:[wn]},Nn={scope:"string",begin:'"',end:'"',illegal:"\\n",contains:[wn]},Sn=(e,u,t={})=>{const n=An({scope:"comment",begin:e,end:u,contains:[]},t);n.contains.push({scope:"doctag",begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0});const r=_n("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/);return n.contains.push({begin:bn(/[ ]+/,"(",r,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),n},Mn=Sn("//","$"),In=Sn("/\\*","\\*/"),On=Sn("#","$");var Rn=Object.freeze({__proto__:null,MATCH_NOTHING_RE:/\b\B/,IDENT_RE:"[a-zA-Z]\\w*",UNDERSCORE_IDENT_RE:"[a-zA-Z_]\\w*",NUMBER_RE:"\\b\\d+(\\.\\d+)?",C_NUMBER_RE:kn,BINARY_NUMBER_RE:"\\b(0b[01]+)",RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",SHEBANG:(e={})=>{const u=/^#![ ]*\//;return e.binary&&(e.begin=bn(u,/.*\b/,e.binary,/\b.*/)),An({scope:"meta",begin:u,end:/$/,relevance:0,"on:begin":(e,u)=>{0!==e.index&&u.ignoreMatch()}},e)},BACKSLASH_ESCAPE:wn,APOS_STRING_MODE:xn,QUOTE_STRING_MODE:Nn,PHRASAL_WORDS_MODE:{begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},COMMENT:Sn,C_LINE_COMMENT_MODE:Mn,C_BLOCK_COMMENT_MODE:In,HASH_COMMENT_MODE:On,NUMBER_MODE:{scope:"number",begin:"\\b\\d+(\\.\\d+)?",relevance:0},C_NUMBER_MODE:{scope:"number",begin:kn,relevance:0},BINARY_NUMBER_MODE:{scope:"number",begin:"\\b(0b[01]+)",relevance:0},REGEXP_MODE:{begin:/(?=\/[^/\n]*\/)/,contains:[{scope:"regexp",begin:/\//,end:/\/[gimuy]*/,illegal:/\n/,contains:[wn,{begin:/\[/,end:/\]/,relevance:0,contains:[wn]}]}]},TITLE_MODE:{scope:"title",begin:"[a-zA-Z]\\w*",relevance:0},UNDERSCORE_TITLE_MODE:{scope:"title",begin:"[a-zA-Z_]\\w*",relevance:0},METHOD_GUARD:{begin:"\\.\\s*[a-zA-Z_]\\w*",relevance:0},END_SAME_AS_BEGIN:e=>Object.assign(e,{"on:begin":(e,u)=>{u.data._beginMatch=e[1]},"on:end":(e,u)=>{u.data._beginMatch!==e[1]&&u.ignoreMatch()}})});function Tn(e,u){"."===e.input[e.index-1]&&u.ignoreMatch()}function Ln(e,u){void 0!==e.className&&(e.scope=e.className,delete e.className)}function Un(e,u){u&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",e.__beforeBegin=Tn,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,void 0===e.relevance&&(e.relevance=0))}function zn(e,u){Array.isArray(e.illegal)&&(e.illegal=_n(...e.illegal))}function qn(e,u){if(e.match){if(e.begin||e.end)throw Error("begin & end are not supported with match");e.begin=e.match,delete e.match}}function jn(e,u){void 0===e.relevance&&(e.relevance=1)}const Kn=(e,u)=>{if(!e.beforeMatch)return;if(e.starts)throw Error("beforeMatch cannot be used with starts");const t=Object.assign({},e);Object.keys(e).forEach((u=>{delete e[u]})),e.keywords=t.keywords,e.begin=bn(t.beforeMatch,hn(t.begin)),e.starts={relevance:0,contains:[Object.assign(t,{endsParent:!0})]},e.relevance=0,delete t.beforeMatch},Qn=["of","and","for","in","not","or","if","then","parent","list","value"];function Pn(e,u,t="keyword"){const n=Object.create(null);return"string"==typeof e?r(t,e.split(" ")):Array.isArray(e)?r(t,e):Object.keys(e).forEach((t=>{Object.assign(n,Pn(e[t],u,t))})),n;function r(e,t){u&&(t=t.map((e=>e.toLowerCase()))),t.forEach((u=>{const t=u.split("|");n[t[0]]=[e,Gn(t[0],t[1])]}))}}function Gn(e,u){return u?Number(u):(t=e,Qn.includes(t.toLowerCase())?0:1);var t}const Hn={},Zn=e=>{console.error(e)},Vn=(e,...u)=>{console.log("WARN: "+e,...u)},Jn=(e,u)=>{Hn[`${e}/${u}`]||(console.log(`Deprecated as of ${e}. ${u}`),Hn[`${e}/${u}`]=!0)},Wn=Error();function Yn(e,u,{key:t}){let n=0;const r=e[t],a={},s={};for(let i=1;i<=u.length;i++)s[i+n]=r[i],a[i+n]=!0,n+=Bn(u[i-1]);e[t]=s,e[t]._emit=a,e[t]._multi=!0}function $n(e){var u;(u=e).scope&&"object"==typeof u.scope&&null!==u.scope&&(u.beginScope=u.scope,delete u.scope),"string"==typeof e.beginScope&&(e.beginScope={_wrap:e.beginScope}),"string"==typeof e.endScope&&(e.endScope={_wrap:e.endScope}),(e=>{if(Array.isArray(e.begin)){if(e.skip||e.excludeBegin||e.returnBegin)throw Zn("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),Wn;if("object"!=typeof e.beginScope||null===e.beginScope)throw Zn("beginScope must be object"),Wn;Yn(e,e.begin,{key:"beginScope"}),e.begin=yn(e.begin,{joinWith:""})}})(e),(e=>{if(Array.isArray(e.end)){if(e.skip||e.excludeEnd||e.returnEnd)throw Zn("skip, excludeEnd, returnEnd not compatible with endScope: {}"),Wn;if("object"!=typeof e.endScope||null===e.endScope)throw Zn("endScope must be object"),Wn;Yn(e,e.end,{key:"endScope"}),e.end=yn(e.end,{joinWith:""})}})(e)}function Xn(e){function u(u,t){return RegExp(Fn(u),"m"+(e.case_insensitive?"i":"")+(e.unicodeRegex?"u":"")+(t?"g":""))}class t{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,u){u.position=this.position++,this.matchIndexes[this.matchAt]=u,this.regexes.push([u,e]),this.matchAt+=Bn(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null);const e=this.regexes.map((e=>e[1]));this.matcherRe=u(yn(e,{joinWith:"|"}),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;const u=this.matcherRe.exec(e);if(!u)return null;const t=u.findIndex(((e,u)=>u>0&&void 0!==e)),n=this.matchIndexes[t];return u.splice(0,t),Object.assign(u,n)}}class n{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){if(this.multiRegexes[e])return this.multiRegexes[e];const u=new t;return this.rules.slice(e).forEach((([e,t])=>u.addRule(e,t))),u.compile(),this.multiRegexes[e]=u,u}resumingScanAtSamePosition(){return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,u){this.rules.push([e,u]),"begin"===u.type&&this.count++}exec(e){const u=this.getMatcher(this.regexIndex);u.lastIndex=this.lastIndex;let t=u.exec(e);if(this.resumingScanAtSamePosition())if(t&&t.index===this.lastIndex);else{const u=this.getMatcher(0);u.lastIndex=this.lastIndex+1,t=u.exec(e)}return t&&(this.regexIndex+=t.position+1,this.regexIndex===this.count&&this.considerAll()),t}}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains&&e.contains.includes("self"))throw Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return e.classNameAliases=An(e.classNameAliases||{}),function t(r,a){const s=r;if(r.isCompiled)return s;[Ln,qn,$n,Kn].forEach((e=>e(r,a))),e.compilerExtensions.forEach((e=>e(r,a))),r.__beforeBegin=null,[Un,zn,jn].forEach((e=>e(r,a))),r.isCompiled=!0;let i=null;return"object"==typeof r.keywords&&r.keywords.$pattern&&(r.keywords=Object.assign({},r.keywords),i=r.keywords.$pattern,delete r.keywords.$pattern),i=i||/\w+/,r.keywords&&(r.keywords=Pn(r.keywords,e.case_insensitive)),s.keywordPatternRe=u(i,!0),a&&(r.begin||(r.begin=/\B|\b/),s.beginRe=u(s.begin),r.end||r.endsWithParent||(r.end=/\B|\b/),r.end&&(s.endRe=u(s.end)),s.terminatorEnd=Fn(s.end)||"",r.endsWithParent&&a.terminatorEnd&&(s.terminatorEnd+=(r.end?"|":"")+a.terminatorEnd)),r.illegal&&(s.illegalRe=u(r.illegal)),r.contains||(r.contains=[]),r.contains=[].concat(...r.contains.map((e=>{return(u="self"===e?r:e).variants&&!u.cachedVariants&&(u.cachedVariants=u.variants.map((e=>An(u,{variants:null},e)))),u.cachedVariants?u.cachedVariants:er(u)?An(u,{starts:u.starts?An(u.starts):null}):Object.isFrozen(u)?An(u):u;var u}))),r.contains.forEach((e=>{t(e,s)})),r.starts&&t(r.starts,a),s.matcher=(e=>{const u=new n;return e.contains.forEach((e=>u.addRule(e.begin,{rule:e,type:"begin"}))),e.terminatorEnd&&u.addRule(e.terminatorEnd,{type:"end"}),e.illegal&&u.addRule(e.illegal,{type:"illegal"}),u})(s),s}(e)}function er(e){return!!e&&(e.endsWithParent||er(e.starts))}class ur extends Error{constructor(e,u){super(e),this.name="HTMLInjectionError",this.html=u}}const tr=cn,nr=An,rr=Symbol("nomatch");var ar=(e=>{const u=Object.create(null),t=Object.create(null),n=[];let r=!0;const a="Could not find the language '{}', did you forget to load/include a language module?",s={disableAutodetect:!0,name:"Plain text",contains:[]};let i={ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",cssSelector:"pre code",languages:null,__emitter:Cn};function o(e){return i.noHighlightRe.test(e)}function l(e,u,t){let n="",r="";"object"==typeof u?(n=e,t=u.ignoreIllegals,r=u.language):(Jn("10.7.0","highlight(lang, code, ...args) has been deprecated."),Jn("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"),r=e,n=u),void 0===t&&(t=!0);const a={code:n,language:r};F("before:highlight",a);const s=a.result?a.result:D(a.language,a.code,t);return s.code=a.code,F("after:highlight",s),s}function D(e,t,n,s){const o=Object.create(null);function l(){if(!B.keywords)return void y.addText(k);let e=0;B.keywordPatternRe.lastIndex=0;let u=B.keywordPatternRe.exec(k),t="";for(;u;){t+=k.substring(e,u.index);const r=f.case_insensitive?u[0].toLowerCase():u[0],a=(n=r,B.keywords[n]);if(a){const[e,n]=a;if(y.addText(t),t="",o[r]=(o[r]||0)+1,o[r]<=7&&(w+=n),e.startsWith("_"))t+=u[0];else{const t=f.classNameAliases[e]||e;y.addKeyword(u[0],t)}}else t+=u[0];e=B.keywordPatternRe.lastIndex,u=B.keywordPatternRe.exec(k)}var n;t+=k.substring(e),y.addText(t)}function A(){null!=B.subLanguage?(()=>{if(""===k)return;let e=null;if("string"==typeof B.subLanguage){if(!u[B.subLanguage])return void y.addText(k);e=D(B.subLanguage,k,!0,v[B.subLanguage]),v[B.subLanguage]=e._top}else e=c(k,B.subLanguage.length?B.subLanguage:null);B.relevance>0&&(w+=e.relevance),y.addSublanguage(e._emitter,e.language)})():l(),k=""}function d(e,u){let t=1;const n=u.length-1;for(;t<=n;){if(!e._emit[t]){t++;continue}const n=f.classNameAliases[e[t]]||e[t],r=u[t];n?y.addKeyword(r,n):(k=r,l(),k=""),t++}}function p(e,u){return e.scope&&"string"==typeof e.scope&&y.openNode(f.classNameAliases[e.scope]||e.scope),e.beginScope&&(e.beginScope._wrap?(y.addKeyword(k,f.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap),k=""):e.beginScope._multi&&(d(e.beginScope,u),k="")),B=Object.create(e,{parent:{value:B}}),B}function g(e,u,t){let n=((e,u)=>{const t=e&&e.exec(u);return t&&0===t.index})(e.endRe,t);if(n){if(e["on:end"]){const t=new Dn(e);e["on:end"](u,t),t.isMatchIgnored&&(n=!1)}if(n){for(;e.endsParent&&e.parent;)e=e.parent;return e}}if(e.endsWithParent)return g(e.parent,u,t)}function C(e){return 0===B.matcher.regexIndex?(k+=e[0],1):(S=!0,0)}function F(e){const u=e[0],n=t.substring(e.index),r=g(B,e,n);if(!r)return rr;const a=B;B.endScope&&B.endScope._wrap?(A(),y.addKeyword(u,B.endScope._wrap)):B.endScope&&B.endScope._multi?(A(),d(B.endScope,e)):a.skip?k+=u:(a.returnEnd||a.excludeEnd||(k+=u),A(),a.excludeEnd&&(k=u));do{B.scope&&y.closeNode(),B.skip||B.subLanguage||(w+=B.relevance),B=B.parent}while(B!==r.parent);return r.starts&&p(r.starts,e),a.returnEnd?0:u.length}let h={};function m(u,a){const s=a&&a[0];if(k+=u,null==s)return A(),0;if("begin"===h.type&&"end"===a.type&&h.index===a.index&&""===s){if(k+=t.slice(a.index,a.index+1),!r){const u=Error(`0 width match regex (${e})`);throw u.languageName=e,u.badRule=h.rule,u}return 1}if(h=a,"begin"===a.type)return(e=>{const u=e[0],t=e.rule,n=new Dn(t),r=[t.__beforeBegin,t["on:begin"]];for(const a of r)if(a&&(a(e,n),n.isMatchIgnored))return C(u);return t.skip?k+=u:(t.excludeBegin&&(k+=u),A(),t.returnBegin||t.excludeBegin||(k=u)),p(t,e),t.returnBegin?0:u.length})(a);if("illegal"===a.type&&!n){const e=Error('Illegal lexeme "'+s+'" for mode "'+(B.scope||"")+'"');throw e.mode=B,e}if("end"===a.type){const e=F(a);if(e!==rr)return e}if("illegal"===a.type&&""===s)return 1;if(N>1e5&&N>3*a.index)throw Error("potential infinite loop, way more iterations than matches");return k+=s,s.length}const f=E(e);if(!f)throw Zn(a.replace("{}",e)),Error('Unknown language: "'+e+'"');const b=Xn(f);let _="",B=s||b;const v={},y=new i.__emitter(i);(()=>{const e=[];for(let u=B;u!==f;u=u.parent)u.scope&&e.unshift(u.scope);e.forEach((e=>y.openNode(e)))})();let k="",w=0,x=0,N=0,S=!1;try{for(B.matcher.considerAll();;){N++,S?S=!1:B.matcher.considerAll(),B.matcher.lastIndex=x;const e=B.matcher.exec(t);if(!e)break;const u=m(t.substring(x,e.index),e);x=e.index+u}return m(t.substring(x)),y.closeAllNodes(),y.finalize(),_=y.toHTML(),{language:e,value:_,relevance:w,illegal:!1,_emitter:y,_top:B}}catch(M){if(M.message&&M.message.includes("Illegal"))return{language:e,value:tr(t),illegal:!0,relevance:0,_illegalBy:{message:M.message,index:x,context:t.slice(x-100,x+100),mode:M.mode,resultSoFar:_},_emitter:y};if(r)return{language:e,value:tr(t),illegal:!1,relevance:0,errorRaised:M,_emitter:y,_top:B};throw M}}function c(e,t){t=t||i.languages||Object.keys(u);const n=(e=>{const u={value:tr(e),illegal:!1,relevance:0,_top:s,_emitter:new i.__emitter(i)};return u._emitter.addText(e),u})(e),r=t.filter(E).filter(C).map((u=>D(u,e,!1)));r.unshift(n);const a=r.sort(((e,u)=>{if(e.relevance!==u.relevance)return u.relevance-e.relevance;if(e.language&&u.language){if(E(e.language).supersetOf===u.language)return 1;if(E(u.language).supersetOf===e.language)return-1}return 0})),[o,l]=a,c=o;return c.secondBest=l,c}function A(e){let u=null;const n=(e=>{let u=e.className+" ";u+=e.parentNode?e.parentNode.className:"";const t=i.languageDetectRe.exec(u);if(t){const u=E(t[1]);return u||(Vn(a.replace("{}",t[1])),Vn("Falling back to no-highlight mode for this block.",e)),u?t[1]:"no-highlight"}return u.split(/\s+/).find((e=>o(e)||E(e)))})(e);if(o(n))return;if(F("before:highlightElement",{el:e,language:n}),e.children.length>0&&(i.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),console.warn("https://github.com/highlightjs/highlight.js/wiki/security"),console.warn("The element with unescaped HTML:"),console.warn(e)),i.throwUnescapedHTML))throw new ur("One of your code blocks includes unescaped HTML.",e.innerHTML);u=e;const r=u.textContent,s=n?l(r,{language:n,ignoreIllegals:!0}):c(r);e.innerHTML=s.value,((e,u,n)=>{const r=u&&t[u]||n;e.classList.add("hljs"),e.classList.add("language-"+r)})(e,n,s.language),e.result={language:s.language,re:s.relevance,relevance:s.relevance},s.secondBest&&(e.secondBest={language:s.secondBest.language,relevance:s.secondBest.relevance}),F("after:highlightElement",{el:e,result:s,text:r})}let d=!1;function p(){"loading"!==document.readyState?document.querySelectorAll(i.cssSelector).forEach(A):d=!0}function E(e){return e=(e||"").toLowerCase(),u[e]||u[t[e]]}function g(e,{languageName:u}){"string"==typeof e&&(e=[e]),e.forEach((e=>{t[e.toLowerCase()]=u}))}function C(e){const u=E(e);return u&&!u.disableAutodetect}function F(e,u){const t=e;n.forEach((e=>{e[t]&&e[t](u)}))}"undefined"!=typeof window&&window.addEventListener&&window.addEventListener("DOMContentLoaded",(()=>{d&&p()}),!1),Object.assign(e,{highlight:l,highlightAuto:c,highlightAll:p,highlightElement:A,highlightBlock:e=>(Jn("10.7.0","highlightBlock will be removed entirely in v12.0"),Jn("10.7.0","Please use highlightElement now."),A(e)),configure:e=>{i=nr(i,e)},initHighlighting:()=>{p(),Jn("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")},initHighlightingOnLoad:()=>{p(),Jn("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.")},registerLanguage:(t,n)=>{let a=null;try{a=n(e)}catch(i){if(Zn("Language definition for '{}' could not be registered.".replace("{}",t)),!r)throw i;Zn(i),a=s}a.name||(a.name=t),u[t]=a,a.rawDefinition=n.bind(null,e),a.aliases&&g(a.aliases,{languageName:t})},unregisterLanguage:e=>{delete u[e];for(const u of Object.keys(t))t[u]===e&&delete t[u]},listLanguages:()=>Object.keys(u),getLanguage:E,registerAliases:g,autoDetection:C,inherit:nr,addPlugin:e=>{var u;(u=e)["before:highlightBlock"]&&!u["before:highlightElement"]&&(u["before:highlightElement"]=e=>{u["before:highlightBlock"](Object.assign({block:e.el},e))}),u["after:highlightBlock"]&&!u["after:highlightElement"]&&(u["after:highlightElement"]=e=>{u["after:highlightBlock"](Object.assign({block:e.el},e))}),n.push(e)}}),e.debugMode=()=>{r=!1},e.safeMode=()=>{r=!0},e.versionString="11.7.0",e.regex={concat:bn,lookahead:hn,either:_n,optional:fn,anyNumberOfTimes:mn};for(const h in Rn)"object"==typeof Rn[h]&&on.exports(Rn[h]);return Object.assign(e,Rn),e})({});const sr=e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z][A-Za-z0-9_-]*/}}),ir=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],or=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],lr=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],Dr=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],cr=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inline-size","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse(),Ar=lr.concat(Dr);var dr="\\.([0-9](_*[0-9])*)",pr="[0-9a-fA-F](_*[0-9a-fA-F])*",Er={className:"number",variants:[{begin:`(\\b([0-9](_*[0-9])*)((${dr})|\\.)?|(${dr}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`},{begin:`\\b([0-9](_*[0-9])*)((${dr})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{begin:`(${dr})[fFdD]?\\b`},{begin:"\\b([0-9](_*[0-9])*)[fFdD]\\b"},{begin:`\\b0[xX]((${pr})\\.?|(${pr})?\\.(${pr}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${pr})[lL]?\\b`},{begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],relevance:0};function gr(e,u,t){return-1===t?"":e.replace(u,(n=>gr(e,u,t-1)))}const Cr="[A-Za-z$_][0-9A-Za-z$_]*",Fr=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],hr=["true","false","null","undefined","NaN","Infinity"],mr=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],fr=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],br=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],_r=["arguments","this","super","console","window","document","localStorage","module","global"],Br=[].concat(br,mr,fr);function vr(e){const u=e.regex,t=Cr,n={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,u)=>{const t=e[0].length+e.index,n=e.input[t];if("<"===n||","===n)return void u.ignoreMatch();let r;">"===n&&(((e,{after:u})=>{const t="",v={match:[/const|var|let/,/\s+/,t,/\s*/,/=\s*/,/(async\s*)?/,u.lookahead(B)],keywords:"async",className:{1:"keyword",3:"title.function"},contains:[g]};return{name:"Javascript",aliases:["js","jsx","mjs","cjs"],keywords:r,exports:{PARAMS_CONTAINS:E,CLASS_REFERENCE:F},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),{label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,l,D,c,A,{match:/\$\d+/},i,F,{className:"attr",begin:t+u.lookahead(":"),relevance:0},v,{begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",relevance:0,contains:[A,e.REGEXP_MODE,{className:"function",begin:B,returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:r,contains:E}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:"<>",end:""},{match:/<[A-Za-z0-9\\._:-]+\s*\/>/},{begin:n.begin,"on:begin":n.isTrulyOpeningTag,end:n.end}],subLanguage:"xml",contains:[{begin:n.begin,end:n.end,skip:!0,contains:["self"]}]}]},h,{beginKeywords:"while if switch catch for"},{begin:"\\b(?!function)"+e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,label:"func.def",contains:[g,e.inherit(e.TITLE_MODE,{begin:t,className:"title.function"})]},{match:/\.\.\./,relevance:0},b,{match:"\\$"+t,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},contains:[g]},m,{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"},C,_,{match:/\$[(.]/}]}}const yr=e=>bn(/\b/,e,/\w$/.test(e)?/\b/:/\B/),kr=["Protocol","Type"].map(yr),wr=["init","self"].map(yr),xr=["Any","Self"],Nr=["actor","any","associatedtype","async","await",/as\?/,/as!/,"as","break","case","catch","class","continue","convenience","default","defer","deinit","didSet","distributed","do","dynamic","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","isolated","nonisolated","lazy","let","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],Sr=["false","nil","true"],Mr=["assignment","associativity","higherThan","left","lowerThan","none","right"],Ir=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warn_unqualified_access","#warning"],Or=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],Rr=_n(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),Tr=_n(Rr,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),Lr=bn(Rr,Tr,"*"),Ur=_n(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),zr=_n(Ur,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),qr=bn(Ur,zr,"*"),jr=bn(/[A-Z]/,zr,"*"),Kr=["autoclosure",bn(/convention\(/,_n("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",bn(/objc\(/,qr,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","resultBuilder","testable","UIApplicationMain","unknown","usableFromInline"],Qr=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"];var Pr=Object.freeze({__proto__:null,grmr_bash:e=>{const u=e.regex,t={},n={begin:/\$\{/,end:/\}/,contains:["self",{begin:/:-/,contains:[t]}]};Object.assign(t,{className:"variable",variants:[{begin:u.concat(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},n]});const r={className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},a={begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,className:"string"})]}},s={className:"string",begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,t,r]};r.contains.push(s);const i={begin:/\$?\(\(/,end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,t]},o=e.SHEBANG({binary:"(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)",relevance:10}),l={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{name:"Bash",aliases:["sh"],keywords:{$pattern:/\b[a-z][a-z0-9._-]+\b/,keyword:["if","then","else","elif","fi","for","while","in","do","done","case","esac","function"],literal:["true","false"],built_in:["break","cd","continue","eval","exec","exit","export","getopts","hash","pwd","readonly","return","shift","test","times","trap","umask","unset","alias","bind","builtin","caller","command","declare","echo","enable","help","let","local","logout","mapfile","printf","read","readarray","source","type","typeset","ulimit","unalias","set","shopt","autoload","bg","bindkey","bye","cap","chdir","clone","comparguments","compcall","compctl","compdescribe","compfiles","compgroups","compquote","comptags","comptry","compvalues","dirs","disable","disown","echotc","echoti","emulate","fc","fg","float","functions","getcap","getln","history","integer","jobs","kill","limit","log","noglob","popd","print","pushd","pushln","rehash","sched","setcap","setopt","stat","suspend","ttyctl","unfunction","unhash","unlimit","unsetopt","vared","wait","whence","where","which","zcompile","zformat","zftp","zle","zmodload","zparseopts","zprof","zpty","zregexparse","zsocket","zstyle","ztcp","chcon","chgrp","chown","chmod","cp","dd","df","dir","dircolors","ln","ls","mkdir","mkfifo","mknod","mktemp","mv","realpath","rm","rmdir","shred","sync","touch","truncate","vdir","b2sum","base32","base64","cat","cksum","comm","csplit","cut","expand","fmt","fold","head","join","md5sum","nl","numfmt","od","paste","ptx","pr","sha1sum","sha224sum","sha256sum","sha384sum","sha512sum","shuf","sort","split","sum","tac","tail","tr","tsort","unexpand","uniq","wc","arch","basename","chroot","date","dirname","du","echo","env","expr","factor","groups","hostid","id","link","logname","nice","nohup","nproc","pathchk","pinky","printenv","printf","pwd","readlink","runcon","seq","sleep","stat","stdbuf","stty","tee","test","timeout","tty","uname","unlink","uptime","users","who","whoami","yes"]},contains:[o,e.SHEBANG(),l,i,e.HASH_COMMENT_MODE,a,{match:/(\/[a-z._-]+)+/},s,{className:"",begin:/\\"/},{className:"string",begin:/'/,end:/'/},t]}},grmr_c:e=>{const u=e.regex,t=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),n="[a-zA-Z_]\\w*::",r="(decltype\\(auto\\)|"+u.optional(n)+"[a-zA-Z_]\\w*"+u.optional("<[^<>]+>")+")",a={className:"type",variants:[{begin:"\\b[a-z\\d_]*_t\\b"},{match:/\batomic_[a-z]{3,6}\b/}]},s={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},i={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},o={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(s,{className:"string"}),{className:"string",begin:/<.*?>/},t,e.C_BLOCK_COMMENT_MODE]},l={className:"title",begin:u.optional(n)+e.IDENT_RE,relevance:0},D=u.optional(n)+e.IDENT_RE+"\\s*\\(",c={keyword:["asm","auto","break","case","continue","default","do","else","enum","extern","for","fortran","goto","if","inline","register","restrict","return","sizeof","struct","switch","typedef","union","volatile","while","_Alignas","_Alignof","_Atomic","_Generic","_Noreturn","_Static_assert","_Thread_local","alignas","alignof","noreturn","static_assert","thread_local","_Pragma"],type:["float","double","signed","unsigned","int","short","long","char","void","_Bool","_Complex","_Imaginary","_Decimal32","_Decimal64","_Decimal128","const","static","complex","bool","imaginary"],literal:"true false NULL",built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr"},A=[o,a,t,e.C_BLOCK_COMMENT_MODE,i,s],d={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:c,contains:A.concat([{begin:/\(/,end:/\)/,keywords:c,contains:A.concat(["self"]),relevance:0}]),relevance:0},p={begin:"("+r+"[\\*&\\s]+)+"+D,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:c,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:"decltype\\(auto\\)",keywords:c,relevance:0},{begin:D,returnBegin:!0,contains:[e.inherit(l,{className:"title.function"})],relevance:0},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:c,relevance:0,contains:[t,e.C_BLOCK_COMMENT_MODE,s,i,a,{begin:/\(/,end:/\)/,keywords:c,relevance:0,contains:["self",t,e.C_BLOCK_COMMENT_MODE,s,i,a]}]},a,t,e.C_BLOCK_COMMENT_MODE,o]};return{name:"C",aliases:["h"],keywords:c,disableAutodetect:!0,illegal:"=]/,contains:[{beginKeywords:"final class struct"},e.TITLE_MODE]}]),exports:{preprocessor:o,strings:s,keywords:c}}},grmr_cpp:e=>{const u=e.regex,t=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),n="[a-zA-Z_]\\w*::",r="(?!struct)(decltype\\(auto\\)|"+u.optional(n)+"[a-zA-Z_]\\w*"+u.optional("<[^<>]+>")+")",a={className:"type",begin:"\\b[a-z\\d_]*_t\\b"},s={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},i={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},o={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(s,{className:"string"}),{className:"string",begin:/<.*?>/},t,e.C_BLOCK_COMMENT_MODE]},l={className:"title",begin:u.optional(n)+e.IDENT_RE,relevance:0},D=u.optional(n)+e.IDENT_RE+"\\s*\\(",c={type:["bool","char","char16_t","char32_t","char8_t","double","float","int","long","short","void","wchar_t","unsigned","signed","const","static"],keyword:["alignas","alignof","and","and_eq","asm","atomic_cancel","atomic_commit","atomic_noexcept","auto","bitand","bitor","break","case","catch","class","co_await","co_return","co_yield","compl","concept","const_cast|10","consteval","constexpr","constinit","continue","decltype","default","delete","do","dynamic_cast|10","else","enum","explicit","export","extern","false","final","for","friend","goto","if","import","inline","module","mutable","namespace","new","noexcept","not","not_eq","nullptr","operator","or","or_eq","override","private","protected","public","reflexpr","register","reinterpret_cast|10","requires","return","sizeof","static_assert","static_cast|10","struct","switch","synchronized","template","this","thread_local","throw","transaction_safe","transaction_safe_dynamic","true","try","typedef","typeid","typename","union","using","virtual","volatile","while","xor","xor_eq"],literal:["NULL","false","nullopt","nullptr","true"],built_in:["_Pragma"],_type_hints:["any","auto_ptr","barrier","binary_semaphore","bitset","complex","condition_variable","condition_variable_any","counting_semaphore","deque","false_type","future","imaginary","initializer_list","istringstream","jthread","latch","lock_guard","multimap","multiset","mutex","optional","ostringstream","packaged_task","pair","promise","priority_queue","queue","recursive_mutex","recursive_timed_mutex","scoped_lock","set","shared_future","shared_lock","shared_mutex","shared_timed_mutex","shared_ptr","stack","string_view","stringstream","timed_mutex","thread","true_type","tuple","unique_lock","unique_ptr","unordered_map","unordered_multimap","unordered_multiset","unordered_set","variant","vector","weak_ptr","wstring","wstring_view"]},A={className:"function.dispatch",relevance:0,keywords:{_hint:["abort","abs","acos","apply","as_const","asin","atan","atan2","calloc","ceil","cerr","cin","clog","cos","cosh","cout","declval","endl","exchange","exit","exp","fabs","floor","fmod","forward","fprintf","fputs","free","frexp","fscanf","future","invoke","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","labs","launder","ldexp","log","log10","make_pair","make_shared","make_shared_for_overwrite","make_tuple","make_unique","malloc","memchr","memcmp","memcpy","memset","modf","move","pow","printf","putchar","puts","realloc","scanf","sin","sinh","snprintf","sprintf","sqrt","sscanf","std","stderr","stdin","stdout","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","swap","tan","tanh","terminate","to_underlying","tolower","toupper","vfprintf","visit","vprintf","vsprintf"]},begin:u.concat(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,u.lookahead(/(<[^<>]+>|)\s*\(/))},d=[A,o,a,t,e.C_BLOCK_COMMENT_MODE,i,s],p={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:c,contains:d.concat([{begin:/\(/,end:/\)/,keywords:c,contains:d.concat(["self"]),relevance:0}]),relevance:0},E={className:"function",begin:"("+r+"[\\*&\\s]+)+"+D,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:c,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:"decltype\\(auto\\)",keywords:c,relevance:0},{begin:D,returnBegin:!0,contains:[l],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[s,i]},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:c,relevance:0,contains:[t,e.C_BLOCK_COMMENT_MODE,s,i,a,{begin:/\(/,end:/\)/,keywords:c,relevance:0,contains:["self",t,e.C_BLOCK_COMMENT_MODE,s,i,a]}]},a,t,e.C_BLOCK_COMMENT_MODE,o]};return{name:"C++",aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:c,illegal:"",keywords:c,contains:["self",a]},{begin:e.IDENT_RE+"::",keywords:c},{match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/],className:{1:"keyword",3:"title.class"}}])}},grmr_csharp:e=>{const u={keyword:["abstract","as","base","break","case","catch","class","const","continue","do","else","event","explicit","extern","finally","fixed","for","foreach","goto","if","implicit","in","interface","internal","is","lock","namespace","new","operator","out","override","params","private","protected","public","readonly","record","ref","return","scoped","sealed","sizeof","stackalloc","static","struct","switch","this","throw","try","typeof","unchecked","unsafe","using","virtual","void","volatile","while"].concat(["add","alias","and","ascending","async","await","by","descending","equals","from","get","global","group","init","into","join","let","nameof","not","notnull","on","or","orderby","partial","remove","select","set","unmanaged","value|0","var","when","where","with","yield"]),built_in:["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"],literal:["default","false","null","true"]},t=e.inherit(e.TITLE_MODE,{begin:"[a-zA-Z](\\.?\\w)*"}),n={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},r={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]},a=e.inherit(r,{illegal:/\n/}),s={className:"subst",begin:/\{/,end:/\}/,keywords:u},i=e.inherit(s,{illegal:/\n/}),o={className:"string",begin:/\$"/,end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/},e.BACKSLASH_ESCAPE,i]},l={className:"string",begin:/\$@"/,end:'"',contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},s]},D=e.inherit(l,{illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},i]});s.contains=[l,o,r,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,n,e.C_BLOCK_COMMENT_MODE],i.contains=[D,o,a,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,n,e.inherit(e.C_BLOCK_COMMENT_MODE,{illegal:/\n/})];const c={variants:[l,o,r,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},A={begin:"<",end:">",contains:[{beginKeywords:"in out"},t]},d=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",p={begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"],keywords:u,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0,contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{begin:"\x3c!--|--\x3e"},{begin:""}]}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#",end:"$",keywords:{keyword:"if else elif endif define undef warning error line region endregion pragma checksum"}},c,n,{beginKeywords:"class interface",relevance:0,end:/[{;=]/,illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"},t,A,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,contains:[t,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,contains:[t,A,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta",begin:"^\\s*\\[(?=[\\w])",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{className:"string",begin:/"/,end:/"/}]},{beginKeywords:"new return throw await else",relevance:0},{className:"function",begin:"("+d+"\\s+)+"+e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,end:/\s*[{;=]/,excludeEnd:!0,keywords:u,contains:[{beginKeywords:"public private protected static internal protected abstract async extern override unsafe virtual new sealed partial",relevance:0},{begin:e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,contains:[e.TITLE_MODE,A],relevance:0},{match:/\(\)/},{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:u,relevance:0,contains:[c,n,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},p]}},grmr_css:e=>{const u=e.regex,t=sr(e),n=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{name:"CSS",case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:"from to"},classNameAliases:{keyframePosition:"selector-tag"},contains:[t.BLOCK_COMMENT,{begin:/-(webkit|moz|ms|o)-(?=[a-z])/},t.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:"selector-class",begin:"\\.[a-zA-Z-][a-zA-Z0-9_-]*",relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{begin:":("+lr.join("|")+")"},{begin:":(:)?("+Dr.join("|")+")"}]},t.CSS_VARIABLE,{className:"attribute",begin:"\\b("+cr.join("|")+")\\b"},{begin:/:/,end:/[;}{]/,contains:[t.BLOCK_COMMENT,t.HEXCOLOR,t.IMPORTANT,t.CSS_NUMBER_MODE,...n,{begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri"},contains:[...n,{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},t.FUNCTION_DISPATCH]},{begin:u.lookahead(/@/),end:"[{;]",relevance:0,illegal:/:/,contains:[{className:"keyword",begin:/@-?\w[\w]*(-\w+)*/},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:"and or not only",attribute:or.join(" ")},contains:[{begin:/[a-z-]+(?=:)/,className:"attribute"},...n,t.CSS_NUMBER_MODE]}]},{className:"selector-tag",begin:"\\b("+ir.join("|")+")\\b"}]}},grmr_diff:e=>{const u=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:u.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:u.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}},grmr_go:e=>{const u={keyword:["break","case","chan","const","continue","default","defer","else","fallthrough","for","func","go","goto","if","import","interface","map","package","range","return","select","struct","switch","type","var"],type:["bool","byte","complex64","complex128","error","float32","float64","int8","int16","int32","int64","string","uint8","uint16","uint32","uint64","int","uint","uintptr","rune"],literal:["true","false","iota","nil"],built_in:["append","cap","close","complex","copy","imag","len","make","new","panic","print","println","real","recover","delete"]};return{name:"Go",aliases:["golang"],keywords:u,illegal:"{const u=e.regex;return{name:"GraphQL",aliases:["gql"],case_insensitive:!0,disableAutodetect:!1,keywords:{keyword:["query","mutation","subscription","type","input","schema","directive","interface","union","scalar","fragment","enum","on"],literal:["true","false","null"]},contains:[e.HASH_COMMENT_MODE,e.QUOTE_STRING_MODE,e.NUMBER_MODE,{scope:"punctuation",match:/[.]{3}/,relevance:0},{scope:"punctuation",begin:/[\!\(\)\:\=\[\]\{\|\}]{1}/,relevance:0},{scope:"variable",begin:/\$/,end:/\W/,excludeEnd:!0,relevance:0},{scope:"meta",match:/@\w+/,excludeEnd:!0},{scope:"symbol",begin:u.concat(/[_A-Za-z][_0-9A-Za-z]*/,u.lookahead(/\s*:/)),relevance:0}],illegal:[/[;<']/,/BEGIN/]}},grmr_ini:e=>{const u=e.regex,t={className:"number",relevance:0,variants:[{begin:/([+-]+)?[\d]+_[\d_]+/},{begin:e.NUMBER_RE}]},n=e.COMMENT();n.variants=[{begin:/;/,end:/$/},{begin:/#/,end:/$/}];const r={className:"variable",variants:[{begin:/\$[\w\d"][\w\d_]*/},{begin:/\$\{(.*?)\}/}]},a={className:"literal",begin:/\bon|off|true|false|yes|no\b/},s={className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:"'''",end:"'''",relevance:10},{begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"'},{begin:"'",end:"'"}]},i={begin:/\[/,end:/\]/,contains:[n,a,r,s,t,"self"],relevance:0},o=u.either(/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/);return{name:"TOML, also INI",aliases:["toml"],case_insensitive:!0,illegal:/\S/,contains:[n,{className:"section",begin:/\[+/,end:/\]+/},{begin:u.concat(o,"(\\s*\\.\\s*",o,")*",u.lookahead(/\s*=\s*[^#\s]/)),className:"attr",starts:{end:/$/,contains:[n,i,a,r,s,t]}}]}},grmr_java:e=>{const u=e.regex,t="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",n=t+gr("(?:<"+t+"~~~(?:\\s*,\\s*"+t+"~~~)*>)?",/~~~/g,2),r={keyword:["synchronized","abstract","private","var","static","if","const ","for","while","strictfp","finally","protected","import","native","final","void","enum","else","break","transient","catch","instanceof","volatile","case","assert","package","default","public","try","switch","continue","throws","protected","public","private","module","requires","exports","do","sealed","yield","permits"],literal:["false","true","null"],type:["char","boolean","long","float","int","byte","short","double"],built_in:["super","this"]},a={className:"meta",begin:"@"+t,contains:[{begin:/\(/,end:/\)/,contains:["self"]}]},s={className:"params",begin:/\(/,end:/\)/,keywords:r,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0};return{name:"Java",aliases:["jsp"],keywords:r,illegal:/<\/|#/,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{begin:/import java\.[a-z]+\./,keywords:"import",relevance:2},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{begin:/"""/,end:/"""/,className:"string",contains:[e.BACKSLASH_ESCAPE]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,t],className:{1:"keyword",3:"title.class"}},{match:/non-sealed/,scope:"keyword"},{begin:[u.concat(/(?!else)/,t),/\s+/,t,/\s+/,/=(?!=)/],className:{1:"type",3:"variable",5:"operator"}},{begin:[/record/,/\s+/,t],className:{1:"keyword",3:"title.class"},contains:[s,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"new throw return else",relevance:0},{begin:["(?:"+n+"\\s+)",e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{2:"title.function"},keywords:r,contains:[{className:"params",begin:/\(/,end:/\)/,keywords:r,relevance:0,contains:[a,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,Er,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},Er,a]}},grmr_javascript:vr,grmr_json:e=>{const u=["true","false","null"],t={scope:"literal",beginKeywords:u.join(" ")};return{name:"JSON",keywords:{literal:u},contains:[{className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},{match:/[{}[\],:]/,className:"punctuation",relevance:0},e.QUOTE_STRING_MODE,t,e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],illegal:"\\S"}},grmr_kotlin:e=>{const u={keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual",built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",literal:"true false null"},t={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@"},n={className:"subst",begin:/\$\{/,end:/\}/,contains:[e.C_NUMBER_MODE]},r={className:"variable",begin:"\\$"+e.UNDERSCORE_IDENT_RE},a={className:"string",variants:[{begin:'"""',end:'"""(?=[^"])',contains:[r,n]},{begin:"'",end:"'",illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/,contains:[e.BACKSLASH_ESCAPE,r,n]}]};n.contains.push(a);const s={className:"meta",begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UNDERSCORE_IDENT_RE+")?"},i={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/,end:/\)/,contains:[e.inherit(a,{className:"string"}),"self"]}]},o=Er,l=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),D={variants:[{className:"type",begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/,contains:[]}]},c=D;return c.variants[1].contains=[D],D.variants[1].contains=[c],{name:"Kotlin",aliases:["kt","kts"],keywords:u,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,l,{className:"keyword",begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol",begin:/@\w+/}]}},t,s,i,{className:"function",beginKeywords:"fun",end:"[(]|$",returnBegin:!0,excludeEnd:!0,keywords:u,relevance:5,contains:[{begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:"type",begin://,keywords:"reified",relevance:0},{className:"params",begin:/\(/,end:/\)/,endsParent:!0,keywords:u,relevance:0,contains:[{begin:/:/,end:/[=,\/]/,endsWithParent:!0,contains:[D,e.C_LINE_COMMENT_MODE,l],relevance:0},e.C_LINE_COMMENT_MODE,l,s,i,a,e.C_NUMBER_MODE]},l]},{begin:[/class|interface|trait/,/\s+/,e.UNDERSCORE_IDENT_RE],beginScope:{3:"title.class"},keywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0,illegal:"extends implements",contains:[{beginKeywords:"public protected internal private constructor"},e.UNDERSCORE_TITLE_MODE,{className:"type",begin://,excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,){\s]|$/,excludeBegin:!0,returnEnd:!0},s,i]},a,{className:"meta",begin:"^#!/usr/bin/env",end:"$",illegal:"\n"},o]}},grmr_less:e=>{const u=sr(e),t=Ar,n="([\\w-]+|@\\{[\\w-]+\\})",r=[],a=[],s=e=>({className:"string",begin:"~?"+e+".*?"+e}),i=(e,u,t)=>({className:e,begin:u,relevance:t}),o={$pattern:/[a-z-]+/,keyword:"and or not only",attribute:or.join(" ")},l={begin:"\\(",end:"\\)",contains:a,keywords:o,relevance:0};a.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,s("'"),s('"'),u.CSS_NUMBER_MODE,{begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]",excludeEnd:!0}},u.HEXCOLOR,l,i("variable","@@?[\\w-]+",10),i("variable","@\\{[\\w-]+\\}"),i("built_in","~?`[^`]*?`"),{className:"attribute",begin:"[\\w-]+\\s*:",end:":",returnBegin:!0,excludeEnd:!0},u.IMPORTANT,{beginKeywords:"and not"},u.FUNCTION_DISPATCH);const D=a.concat({begin:/\{/,end:/\}/,contains:r}),c={beginKeywords:"when",endsWithParent:!0,contains:[{beginKeywords:"and not"}].concat(a)},A={begin:n+"\\s*:",returnBegin:!0,end:/[;}]/,relevance:0,contains:[{begin:/-(webkit|moz|ms|o)-/},u.CSS_VARIABLE,{className:"attribute",begin:"\\b("+cr.join("|")+")\\b",end:/(?=:)/,starts:{endsWithParent:!0,illegal:"[<=$]",relevance:0,contains:a}}]},d={className:"keyword",begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{end:"[;{}]",keywords:o,returnEnd:!0,contains:a,relevance:0}},p={className:"variable",variants:[{begin:"@[\\w-]+\\s*:",relevance:15},{begin:"@[\\w-]+"}],starts:{end:"[;}]",returnEnd:!0,contains:D}},E={variants:[{begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:n,end:/\{/}],returnBegin:!0,returnEnd:!0,illegal:"[<='$\"]",relevance:0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,c,i("keyword","all\\b"),i("variable","@\\{[\\w-]+\\}"),{begin:"\\b("+ir.join("|")+")\\b",className:"selector-tag"},u.CSS_NUMBER_MODE,i("selector-tag",n,0),i("selector-id","#"+n),i("selector-class","\\."+n,0),i("selector-tag","&",0),u.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",begin:":("+lr.join("|")+")"},{className:"selector-pseudo",begin:":(:)?("+Dr.join("|")+")"},{begin:/\(/,end:/\)/,relevance:0,contains:D},{begin:"!important"},u.FUNCTION_DISPATCH]},g={begin:`[\\w-]+:(:)?(${t.join("|")})`,returnBegin:!0,contains:[E]};return r.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,d,p,g,A,E,c,u.FUNCTION_DISPATCH),{name:"Less",case_insensitive:!0,illegal:"[=>'/<($\"]",contains:r}},grmr_lua:e=>{const u="\\[=*\\[",t="\\]=*\\]",n={begin:u,end:t,contains:["self"]},r=[e.COMMENT("--(?!\\[=*\\[)","$"),e.COMMENT("--\\[=*\\[",t,{contains:[n],relevance:10})];return{name:"Lua",keywords:{$pattern:e.UNDERSCORE_IDENT_RE,literal:"true false nil",keyword:"and break do else elseif end for goto if in local not or repeat return then until while",built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove"},contains:r.concat([{className:"function",beginKeywords:"function",end:"\\)",contains:[e.inherit(e.TITLE_MODE,{begin:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{className:"params",begin:"\\(",endsWithParent:!0,contains:r}].concat(r)},e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string",begin:u,end:t,contains:[n],relevance:5}])}},grmr_makefile:e=>{const u={className:"variable",variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)",contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%{const u=e.regex,t=u.concat(/(?:[A-Z_a-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE3F\uDE40\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDF02\uDF04-\uDF10\uDF12-\uDF33\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F\uDC41-\uDC46]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD32\uDD50-\uDD52\uDD55\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]|\uD838[\uDC30-\uDC6D\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDCD0-\uDCEB\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF])/,u.optional(/(?:[\x2D\.0-9A-Z_a-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE3F\uDE40\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDF02\uDF04-\uDF10\uDF12-\uDF33\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F\uDC41-\uDC46]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD32\uDD50-\uDD52\uDD55\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]|\uD838[\uDC30-\uDC6D\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDCD0-\uDCEB\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF])*:/),/(?:[\x2D\.0-9A-Z_a-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE3F\uDE40\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDF02\uDF04-\uDF10\uDF12-\uDF33\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F\uDC41-\uDC46]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD32\uDD50-\uDD52\uDD55\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]|\uD838[\uDC30-\uDC6D\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDCD0-\uDCEB\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF])*/),n={className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},r={begin:/\s/,contains:[{className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]},a=e.inherit(r,{begin:/\(/,end:/\)/}),s=e.inherit(e.APOS_STRING_MODE,{className:"string"}),i=e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),o={endsWithParent:!0,illegal:/`]+/}]}]}]};return{name:"HTML, XML",aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],case_insensitive:!0,unicodeRegex:!0,contains:[{className:"meta",begin://,relevance:10,contains:[r,i,s,a,{begin:/\[/,end:/\]/,contains:[{className:"meta",begin://,contains:[r,a,i,s]}]}]},e.COMMENT(//,{relevance:10}),{begin://,relevance:10},n,{className:"meta",end:/\?>/,variants:[{begin:/<\?xml/,relevance:10,contains:[i]},{begin:/<\?[a-z][a-z0-9]+/}]},{className:"tag",begin:/)/,end:/>/,keywords:{name:"style"},contains:[o],starts:{end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",begin:/)/,end:/>/,keywords:{name:"script"},contains:[o],starts:{end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{className:"tag",begin:/<>|<\/>/},{className:"tag",begin:u.concat(//,/>/,/\s/)))),end:/\/?>/,contains:[{className:"name",begin:t,relevance:0,starts:o}]},{className:"tag",begin:u.concat(/<\//,u.lookahead(u.concat(t,/>/))),contains:[{className:"name",begin:t,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}},grmr_markdown:e=>{const u={begin:/<\/?[A-Za-z_]/,end:">",subLanguage:"xml",relevance:0},t={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0},{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,relevance:2},{begin:e.regex.concat(/\[.+?\]\(/,/[A-Za-z][A-Za-z0-9+.-]*/,/:\/\/.*?\)/),relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{begin:/\[.*?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{match:/\[(?=\])/},{className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0,returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[",end:"\\]",excludeBegin:!0,excludeEnd:!0}]},n={className:"strong",contains:[],variants:[{begin:/_{2}(?!\s)/,end:/_{2}/},{begin:/\*{2}(?!\s)/,end:/\*{2}/}]},r={className:"emphasis",contains:[],variants:[{begin:/\*(?![*\s])/,end:/\*/},{begin:/_(?![_\s])/,end:/_/,relevance:0}]},a=e.inherit(n,{contains:[]}),s=e.inherit(r,{contains:[]});n.contains.push(s),r.contains.push(a);let i=[u,t];return[n,r,a,s].forEach((e=>{e.contains=e.contains.concat(i)})),i=i.concat(n,r),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:i},{begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",contains:i}]}]},u,{className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)",end:"\\s+",excludeEnd:!0},n,r,{className:"quote",begin:"^>\\s+",contains:i,end:"$"},{className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},{begin:"^[-\\*]{3,}",end:"$"},t,{begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]}]}},grmr_objectivec:e=>{const u=/[a-zA-Z@][a-zA-Z0-9_]*/,t={$pattern:u,keyword:["@interface","@class","@protocol","@implementation"]};return{name:"Objective-C",aliases:["mm","objc","obj-c","obj-c++","objective-c++"],keywords:{"variable.language":["this","super"],$pattern:u,keyword:["while","export","sizeof","typedef","const","struct","for","union","volatile","static","mutable","if","do","return","goto","enum","else","break","extern","asm","case","default","register","explicit","typename","switch","continue","inline","readonly","assign","readwrite","self","@synchronized","id","typeof","nonatomic","IBOutlet","IBAction","strong","weak","copy","in","out","inout","bycopy","byref","oneway","__strong","__weak","__block","__autoreleasing","@private","@protected","@public","@try","@property","@end","@throw","@catch","@finally","@autoreleasepool","@synthesize","@dynamic","@selector","@optional","@required","@encode","@package","@import","@defs","@compatibility_alias","__bridge","__bridge_transfer","__bridge_retained","__bridge_retain","__covariant","__contravariant","__kindof","_Nonnull","_Nullable","_Null_unspecified","__FUNCTION__","__PRETTY_FUNCTION__","__attribute__","getter","setter","retain","unsafe_unretained","nonnull","nullable","null_unspecified","null_resettable","class","instancetype","NS_DESIGNATED_INITIALIZER","NS_UNAVAILABLE","NS_REQUIRES_SUPER","NS_RETURNS_INNER_POINTER","NS_INLINE","NS_AVAILABLE","NS_DEPRECATED","NS_ENUM","NS_OPTIONS","NS_SWIFT_UNAVAILABLE","NS_ASSUME_NONNULL_BEGIN","NS_ASSUME_NONNULL_END","NS_REFINED_FOR_SWIFT","NS_SWIFT_NAME","NS_SWIFT_NOTHROW","NS_DURING","NS_HANDLER","NS_ENDHANDLER","NS_VALUERETURN","NS_VOIDRETURN"],literal:["false","true","FALSE","TRUE","nil","YES","NO","NULL"],built_in:["dispatch_once_t","dispatch_queue_t","dispatch_sync","dispatch_async","dispatch_once"],type:["int","float","char","unsigned","signed","short","long","double","wchar_t","unichar","void","bool","BOOL","id|0","_Bool"]},illegal:"/,end:/$/,illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"class",begin:"("+t.keyword.join("|")+")\\b",end:/(\{|$)/,excludeEnd:!0,keywords:t,contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"\\."+e.UNDERSCORE_IDENT_RE,relevance:0}]}},grmr_perl:e=>{const u=e.regex,t=/[dualxmsipngr]{0,12}/,n={$pattern:/[\w.]+/,keyword:"abs accept alarm and atan2 bind binmode bless break caller chdir chmod chomp chop chown chr chroot close closedir connect continue cos crypt dbmclose dbmopen defined delete die do dump each else elsif endgrent endhostent endnetent endprotoent endpwent endservent eof eval exec exists exit exp fcntl fileno flock for foreach fork format formline getc getgrent getgrgid getgrnam gethostbyaddr gethostbyname gethostent getlogin getnetbyaddr getnetbyname getnetent getpeername getpgrp getpriority getprotobyname getprotobynumber getprotoent getpwent getpwnam getpwuid getservbyname getservbyport getservent getsockname getsockopt given glob gmtime goto grep gt hex if index int ioctl join keys kill last lc lcfirst length link listen local localtime log lstat lt ma map mkdir msgctl msgget msgrcv msgsnd my ne next no not oct open opendir or ord our pack package pipe pop pos print printf prototype push q|0 qq quotemeta qw qx rand read readdir readline readlink readpipe recv redo ref rename require reset return reverse rewinddir rindex rmdir say scalar seek seekdir select semctl semget semop send setgrent sethostent setnetent setpgrp setpriority setprotoent setpwent setservent setsockopt shift shmctl shmget shmread shmwrite shutdown sin sleep socket socketpair sort splice split sprintf sqrt srand stat state study sub substr symlink syscall sysopen sysread sysseek system syswrite tell telldir tie tied time times tr truncate uc ucfirst umask undef unless unlink unpack unshift untie until use utime values vec wait waitpid wantarray warn when while write x|0 xor y|0"},r={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:n},a={begin:/->\{/,end:/\}/},s={variants:[{begin:/\$\d/},{begin:u.concat(/[$%@](\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])")},{begin:/[$%@][^\s\w{]/,relevance:0}]},i=[e.BACKSLASH_ESCAPE,r,s],o=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],l=(e,n,r="\\1")=>{const a="\\1"===r?r:u.concat(r,n);return u.concat(u.concat("(?:",e,")"),n,/(?:\\.|[^\\\/])*?/,a,/(?:\\.|[^\\\/])*?/,r,t)},D=(e,n,r)=>u.concat(u.concat("(?:",e,")"),n,/(?:\\.|[^\\\/])*?/,r,t),c=[s,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{endsWithParent:!0}),a,{className:"string",contains:i,variants:[{begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[",end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*<",end:">",relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'",contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{begin:"-?\\w+\\s*=>",relevance:0}]},{className:"number",begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",relevance:0},{begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*",keywords:"split return print reverse grep",relevance:0,contains:[e.HASH_COMMENT_MODE,{className:"regexp",variants:[{begin:l("s|tr|y",u.either(...o,{capture:!0}))},{begin:l("s|tr|y","\\(","\\)")},{begin:l("s|tr|y","\\[","\\]")},{begin:l("s|tr|y","\\{","\\}")}],relevance:2},{className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{begin:D("(?:m|qr)?",/\//,/\//)},{begin:D("m|qr",u.either(...o,{capture:!0}),/\1/)},{begin:D("m|qr",/\(/,/\)/)},{begin:D("m|qr",/\[/,/\]/)},{begin:D("m|qr",/\{/,/\}/)}]}]},{className:"function",beginKeywords:"sub",end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$",subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}]}];return r.contains=c,a.contains=c,{name:"Perl",aliases:["pl","pm"],keywords:n,contains:c}},grmr_php:e=>{const u=e.regex,t=/(?![A-Za-z0-9])(?![$])/,n=u.concat(/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/,t),r=u.concat(/(\\?[A-Z][a-z0-9_\x7f-\xff]+|\\?[A-Z]+(?=[A-Z][a-z0-9_\x7f-\xff])){1,}/,t),a={scope:"variable",match:"\\$+"+n},s={scope:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/,end:/\}/}]},i=e.inherit(e.APOS_STRING_MODE,{illegal:null}),o="[ \t\n]",l={scope:"string",variants:[e.inherit(e.QUOTE_STRING_MODE,{illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(s)}),i,e.END_SAME_AS_BEGIN({begin:/<<<[ \t]*(\w+)\n/,end:/[ \t]*(\w+)\b/,contains:e.QUOTE_STRING_MODE.contains.concat(s)})]},D={scope:"number",variants:[{begin:"\\b0[bB][01]+(?:_[01]+)*\\b"},{begin:"\\b0[oO][0-7]+(?:_[0-7]+)*\\b"},{begin:"\\b0[xX][\\da-fA-F]+(?:_[\\da-fA-F]+)*\\b"},{begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:[eE][+-]?\\d+)?"}],relevance:0},c=["false","null","true"],A=["__CLASS__","__DIR__","__FILE__","__FUNCTION__","__COMPILER_HALT_OFFSET__","__LINE__","__METHOD__","__NAMESPACE__","__TRAIT__","die","echo","exit","include","include_once","print","require","require_once","array","abstract","and","as","binary","bool","boolean","break","callable","case","catch","class","clone","const","continue","declare","default","do","double","else","elseif","empty","enddeclare","endfor","endforeach","endif","endswitch","endwhile","enum","eval","extends","final","finally","float","for","foreach","from","global","goto","if","implements","instanceof","insteadof","int","integer","interface","isset","iterable","list","match|0","mixed","new","never","object","or","private","protected","public","readonly","real","return","string","switch","throw","trait","try","unset","use","var","void","while","xor","yield"],d=["Error|0","AppendIterator","ArgumentCountError","ArithmeticError","ArrayIterator","ArrayObject","AssertionError","BadFunctionCallException","BadMethodCallException","CachingIterator","CallbackFilterIterator","CompileError","Countable","DirectoryIterator","DivisionByZeroError","DomainException","EmptyIterator","ErrorException","Exception","FilesystemIterator","FilterIterator","GlobIterator","InfiniteIterator","InvalidArgumentException","IteratorIterator","LengthException","LimitIterator","LogicException","MultipleIterator","NoRewindIterator","OutOfBoundsException","OutOfRangeException","OuterIterator","OverflowException","ParentIterator","ParseError","RangeException","RecursiveArrayIterator","RecursiveCachingIterator","RecursiveCallbackFilterIterator","RecursiveDirectoryIterator","RecursiveFilterIterator","RecursiveIterator","RecursiveIteratorIterator","RecursiveRegexIterator","RecursiveTreeIterator","RegexIterator","RuntimeException","SeekableIterator","SplDoublyLinkedList","SplFileInfo","SplFileObject","SplFixedArray","SplHeap","SplMaxHeap","SplMinHeap","SplObjectStorage","SplObserver","SplPriorityQueue","SplQueue","SplStack","SplSubject","SplTempFileObject","TypeError","UnderflowException","UnexpectedValueException","UnhandledMatchError","ArrayAccess","BackedEnum","Closure","Fiber","Generator","Iterator","IteratorAggregate","Serializable","Stringable","Throwable","Traversable","UnitEnum","WeakReference","WeakMap","Directory","__PHP_Incomplete_Class","parent","php_user_filter","self","static","stdClass"],p={keyword:A,literal:(e=>{const u=[];return e.forEach((e=>{u.push(e),e.toLowerCase()===e?u.push(e.toUpperCase()):u.push(e.toLowerCase())})),u})(c),built_in:d},E=e=>e.map((e=>e.replace(/\|\d+$/,""))),g={variants:[{match:[/new/,u.concat(o,"+"),u.concat("(?!",E(d).join("\\b|"),"\\b)"),r],scope:{1:"keyword",4:"title.class"}}]},C=u.concat(n,"\\b(?!\\()"),F={variants:[{match:[u.concat(/::/,u.lookahead(/(?!class\b)/)),C],scope:{2:"variable.constant"}},{match:[/::/,/class/],scope:{2:"variable.language"}},{match:[r,u.concat(/::/,u.lookahead(/(?!class\b)/)),C],scope:{1:"title.class",3:"variable.constant"}},{match:[r,u.concat("::",u.lookahead(/(?!class\b)/))],scope:{1:"title.class"}},{match:[r,/::/,/class/],scope:{1:"title.class",3:"variable.language"}}]},h={scope:"attr",match:u.concat(n,u.lookahead(":"),u.lookahead(/(?!::)/))},m={relevance:0,begin:/\(/,end:/\)/,keywords:p,contains:[h,a,F,e.C_BLOCK_COMMENT_MODE,l,D,g]},f={relevance:0,match:[/\b/,u.concat("(?!fn\\b|function\\b|",E(A).join("\\b|"),"|",E(d).join("\\b|"),"\\b)"),n,u.concat(o,"*"),u.lookahead(/(?=\()/)],scope:{3:"title.function.invoke"},contains:[m]};m.contains.push(f);const b=[h,F,e.C_BLOCK_COMMENT_MODE,l,D,g];return{case_insensitive:!1,keywords:p,contains:[{begin:u.concat(/#\[\s*/,r),beginScope:"meta",end:/]/,endScope:"meta",keywords:{literal:c,keyword:["new","array"]},contains:[{begin:/\[/,end:/]/,keywords:{literal:c,keyword:["new","array"]},contains:["self",...b]},...b,{scope:"meta",match:r}]},e.HASH_COMMENT_MODE,e.COMMENT("//","$"),e.COMMENT("/\\*","\\*/",{contains:[{scope:"doctag",match:"@[A-Za-z]+"}]}),{match:/__halt_compiler\(\);/,keywords:"__halt_compiler",starts:{scope:"comment",end:e.MATCH_NOTHING_RE,contains:[{match:/\?>/,scope:"meta",endsParent:!0}]}},{scope:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?=/},{begin:/<\?/,relevance:.1},{begin:/\?>/}]},{scope:"variable.language",match:/\$this\b/},a,f,F,{match:[/const/,/\s/,n],scope:{1:"keyword",3:"variable.constant"}},g,{scope:"function",relevance:0,beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0,illegal:"[$%\\[]",contains:[{beginKeywords:"use"},e.UNDERSCORE_TITLE_MODE,{begin:"=>",endsParent:!0},{scope:"params",begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0,keywords:p,contains:["self",a,F,e.C_BLOCK_COMMENT_MODE,l,D]}]},{scope:"class",variants:[{beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait",illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/,contains:[e.inherit(e.UNDERSCORE_TITLE_MODE,{scope:"title.class"})]},{beginKeywords:"use",relevance:0,end:";",contains:[{match:/\b(as|const|function)\b/,scope:"keyword"},e.UNDERSCORE_TITLE_MODE]},l,D]}},grmr_php_template:e=>({name:"PHP template",subLanguage:"xml",contains:[{begin:/<\?(php|=)?/,end:/\?>/,subLanguage:"php",contains:[{begin:"/\\*",end:"\\*/",skip:!0},{begin:'b"',end:'"',skip:!0},{begin:"b'",end:"'",skip:!0},e.inherit(e.APOS_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0})]}]}),grmr_plaintext:e=>({name:"Plain text",aliases:["text","txt"],disableAutodetect:!0}),grmr_python:e=>{const u=e.regex,t=/(?:[A-Z_a-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037B-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFC5D\uFC64-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDF9\uFE71\uFE73\uFE77\uFE79\uFE7B\uFE7D\uFE7F-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFF9D\uFFA0-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE3F\uDE40\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDF02\uDF04-\uDF10\uDF12-\uDF33\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F\uDC41-\uDC46]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD32\uDD50-\uDD52\uDD55\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]|\uD838[\uDC30-\uDC6D\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDCD0-\uDCEB\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF])(?:[0-9A-Z_a-z\xAA\xB5\xB7\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037B-\u037D\u037F\u0386-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05EF-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u07FD\u0800-\u082D\u0840-\u085B\u0860-\u086A\u0870-\u0887\u0889-\u088E\u0898-\u08E1\u08E3-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u09FC\u09FE\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0AF9-\u0AFF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3C-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C5D\u0C60-\u0C63\u0C66-\u0C6F\u0C80-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDD\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1-\u0CF3\u0D00-\u0D0C\u0D0E-\u0D10\u0D12-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D54-\u0D57\u0D5F-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D81-\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECE\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1369-\u1371\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u1715\u171F-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u180F-\u1819\u1820-\u1878\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1ABF-\u1ACE\u1B00-\u1B4C\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CD0-\u1CD2\u1CD4-\u1CFA\u1D00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099\u309A\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA827\uA82C\uA840-\uA873\uA880-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA8FD-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFC5D\uFC64-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDF9\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFE71\uFE73\uFE77\uFE79\uFE7B\uFE7D\uFE7F-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDDFD\uDE80-\uDE9C\uDEA0-\uDED0\uDEE0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE38-\uDE3A\uDE3F\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE6\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD27\uDD30-\uDD39\uDE80-\uDEA9\uDEAB\uDEAC\uDEB0\uDEB1\uDEFD-\uDF1C\uDF27\uDF30-\uDF50\uDF70-\uDF85\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC00-\uDC46\uDC66-\uDC75\uDC7F-\uDCBA\uDCC2\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD00-\uDD34\uDD36-\uDD3F\uDD44-\uDD47\uDD50-\uDD73\uDD76\uDD80-\uDDC4\uDDC9-\uDDCC\uDDCE-\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE37\uDE3E-\uDE41\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEEA\uDEF0-\uDEF9\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3B-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF50\uDF57\uDF5D-\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC00-\uDC4A\uDC50-\uDC59\uDC5E-\uDC61\uDC80-\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDB5\uDDB8-\uDDC0\uDDD8-\uDDDD\uDE00-\uDE40\uDE44\uDE50-\uDE59\uDE80-\uDEB8\uDEC0-\uDEC9\uDF00-\uDF1A\uDF1D-\uDF2B\uDF30-\uDF39\uDF40-\uDF46]|\uD806[\uDC00-\uDC3A\uDCA0-\uDCE9\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD35\uDD37\uDD38\uDD3B-\uDD43\uDD50-\uDD59\uDDA0-\uDDA7\uDDAA-\uDDD7\uDDDA-\uDDE1\uDDE3\uDDE4\uDE00-\uDE3E\uDE47\uDE50-\uDE99\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC36\uDC38-\uDC40\uDC50-\uDC59\uDC72-\uDC8F\uDC92-\uDCA7\uDCA9-\uDCB6\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD36\uDD3A\uDD3C\uDD3D\uDD3F-\uDD47\uDD50-\uDD59\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD8E\uDD90\uDD91\uDD93-\uDD98\uDDA0-\uDDA9\uDEE0-\uDEF6\uDF00-\uDF10\uDF12-\uDF3A\uDF3E-\uDF42\uDF50-\uDF59\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F\uDC40-\uDC55]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDE70-\uDEBE\uDEC0-\uDEC9\uDED0-\uDEED\uDEF0-\uDEF4\uDF00-\uDF36\uDF40-\uDF43\uDF50-\uDF59\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF4F-\uDF87\uDF8F-\uDF9F\uDFE0\uDFE1\uDFE3\uDFE4\uDFF0\uDFF1]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD32\uDD50-\uDD52\uDD55\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9D\uDC9E]|\uD833[\uDF00-\uDF2D\uDF30-\uDF46]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]|\uD838[\uDC00-\uDC06\uDC08-\uDC18\uDC1B-\uDC21\uDC23\uDC24\uDC26-\uDC2A\uDC30-\uDC6D\uDC8F\uDD00-\uDD2C\uDD30-\uDD3D\uDD40-\uDD49\uDD4E\uDE90-\uDEAE\uDEC0-\uDEF9]|\uD839[\uDCD0-\uDCF9\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDCD0-\uDCD6\uDD00-\uDD4B\uDD50-\uDD59]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD83E[\uDFF0-\uDFF9]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF]|\uDB40[\uDD00-\uDDEF])*/,n=["and","as","assert","async","await","break","case","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","match","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"],r={$pattern:/[A-Za-z]\w+|__\w+__/,keyword:n,built_in:["__import__","abs","all","any","ascii","bin","bool","breakpoint","bytearray","bytes","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","exec","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip"],literal:["__debug__","Ellipsis","False","None","NotImplemented","True"],type:["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"]},a={className:"meta",begin:/^(>>>|\.\.\.) /},s={className:"subst",begin:/\{/,end:/\}/,keywords:r,illegal:/#/},i={begin:/\{\{/,relevance:0},o={className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a,i,s]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,a,i,s]},{begin:/([uU]|[rR])'/,end:/'/,relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,contains:[e.BACKSLASH_ESCAPE,i,s]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,i,s]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},l="[0-9](_?[0-9])*",D=`(\\b(${l}))?\\.(${l})|\\b(${l})\\.`,c="\\b|"+n.join("|"),A={className:"number",relevance:0,variants:[{begin:`(\\b(${l})|(${D}))[eE][+-]?(${l})[jJ]?(?=${c})`},{begin:`(${D})[jJ]?`},{begin:`\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?(?=${c})`},{begin:`\\b0[bB](_?[01])+[lL]?(?=${c})`},{begin:`\\b0[oO](_?[0-7])+[lL]?(?=${c})`},{begin:`\\b0[xX](_?[0-9a-fA-F])+[lL]?(?=${c})`},{begin:`\\b(${l})[jJ](?=${c})`}]},d={className:"comment",begin:u.lookahead(/# type:/),end:/$/,keywords:r,contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},p={className:"params",variants:[{className:"",begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:r,contains:["self",a,A,o,e.HASH_COMMENT_MODE]}]};return s.contains=[o,A,a],{name:"Python",aliases:["py","gyp","ipython"],unicodeRegex:!0,keywords:r,illegal:/(<\/|->|\?)|=>/,contains:[a,A,{begin:/\bself\b/},{beginKeywords:"if",relevance:0},o,d,e.HASH_COMMENT_MODE,{match:[/\bdef/,/\s+/,t],scope:{1:"keyword",3:"title.function"},contains:[p]},{variants:[{match:[/\bclass/,/\s+/,t,/\s*/,/\(\s*/,t,/\s*\)/]},{match:[/\bclass/,/\s+/,t]}],scope:{1:"keyword",3:"title.class",6:"title.class.inherited"}},{className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[A,p,o]}]}},grmr_python_repl:e=>({aliases:["pycon"],contains:[{className:"meta.prompt",starts:{end:/ |$/,starts:{end:"$",subLanguage:"python"}},variants:[{begin:/^>>>(?=[ ]|$)/},{begin:/^\.\.\.(?=[ ]|$)/}]}]}),grmr_r:e=>{const u=e.regex,t=/(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/,n=u.either(/0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/,/0[xX][0-9a-fA-F]+(?:[pP][+-]?\d+)?[Li]?/,/(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?[Li]?/),r=/[=!<>:]=|\|\||&&|:::?|<-|<<-|->>|->|\|>|[-+*\/?!$&|:<=>@^~]|\*\*/,a=u.either(/[()]/,/[{}]/,/\[\[/,/[[\]]/,/\\/,/,/);return{name:"R",keywords:{$pattern:t,keyword:"function if in break next repeat else for while",literal:"NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10",built_in:"LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm"},contains:[e.COMMENT(/#'/,/$/,{contains:[{scope:"doctag",match:/@examples/,starts:{end:u.lookahead(u.either(/\n^#'\s*(?=@[a-zA-Z]+)/,/\n^(?!#')/)),endsParent:!0}},{scope:"doctag",begin:"@param",end:/$/,contains:[{scope:"variable",variants:[{match:t},{match:/`(?:\\.|[^`\\])+`/}],endsParent:!0}]},{scope:"doctag",match:/@[a-zA-Z]+/},{scope:"keyword",match:/\\[a-zA-Z]+/}]}),e.HASH_COMMENT_MODE,{scope:"string",contains:[e.BACKSLASH_ESCAPE],variants:[e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\(/,end:/\)(-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\{/,end:/\}(-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\[/,end:/\](-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\(/,end:/\)(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\{/,end:/\}(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\[/,end:/\](-*)'/}),{begin:'"',end:'"',relevance:0},{begin:"'",end:"'",relevance:0}]},{relevance:0,variants:[{scope:{1:"operator",2:"number"},match:[r,n]},{scope:{1:"operator",2:"number"},match:[/%[^%]*%/,n]},{scope:{1:"punctuation",2:"number"},match:[a,n]},{scope:{2:"number"},match:[/[^a-zA-Z0-9._]|^/,n]}]},{scope:{3:"operator"},match:[t,/\s+/,/<-/,/\s+/]},{scope:"operator",relevance:0,variants:[{match:r},{match:/%[^%]*%/}]},{scope:"punctuation",relevance:0,match:a},{begin:"`",end:"`",contains:[{begin:/\\./}]}]}},grmr_ruby:e=>{const u=e.regex,t="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",n=u.either(/\b([A-Z]+[a-z0-9]+)+/,/\b([A-Z]+[a-z0-9]+)+[A-Z]+/),r=u.concat(n,/(::\w+)*/),a={"variable.constant":["__FILE__","__LINE__","__ENCODING__"],"variable.language":["self","super"],keyword:["alias","and","begin","BEGIN","break","case","class","defined","do","else","elsif","end","END","ensure","for","if","in","module","next","not","or","redo","require","rescue","retry","return","then","undef","unless","until","when","while","yield","include","extend","prepend","public","private","protected","raise","throw"],built_in:["proc","lambda","attr_accessor","attr_reader","attr_writer","define_method","private_constant","module_function"],literal:["true","false","nil"]},s={className:"doctag",begin:"@[A-Za-z]+"},i={begin:"#<",end:">"},o=[e.COMMENT("#","$",{contains:[s]}),e.COMMENT("^=begin","^=end",{contains:[s],relevance:10}),e.COMMENT("^__END__",e.MATCH_NOTHING_RE)],l={className:"subst",begin:/#\{/,end:/\}/,keywords:a},D={className:"string",contains:[e.BACKSLASH_ESCAPE,l],variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\(/,end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{begin:/%[qQwWx]?\{/,end:/\}/},{begin:/%[qQwWx]?/},{begin:/%[qQwWx]?\//,end:/\//},{begin:/%[qQwWx]?%/,end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\|/,end:/\|/},{begin:/\B\?(\\\d{1,3})/},{begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{begin:u.concat(/<<[-~]?'?/,u.lookahead(/(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/)),contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,contains:[e.BACKSLASH_ESCAPE,l]})]}]},c="[0-9](_?[0-9])*",A={className:"number",relevance:0,variants:[{begin:`\\b([1-9](_?[0-9])*|0)(\\.(${c}))?([eE][+-]?(${c})|r)?i?\\b`},{begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{begin:"\\b0(_?[0-7])+r?i?\\b"}]},d={variants:[{match:/\(\)/},{className:"params",begin:/\(/,end:/(?=\))/,excludeBegin:!0,endsParent:!0,keywords:a}]},p=[D,{variants:[{match:[/class\s+/,r,/\s+<\s+/,r]},{match:[/\b(class|module)\s+/,r]}],scope:{2:"title.class",4:"title.class.inherited"},keywords:a},{match:[/(include|extend)\s+/,r],scope:{2:"title.class"},keywords:a},{relevance:0,match:[r,/\.new[. (]/],scope:{1:"title.class"}},{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"},{relevance:0,match:n,scope:"title.class"},{match:[/def/,/\s+/,t],scope:{1:"keyword",3:"title.function"},contains:[d]},{begin:e.IDENT_RE+"::"},{className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol",begin:":(?!\\s)",contains:[D,{begin:t}],relevance:0},A,{className:"variable",begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{className:"params",begin:/\|/,end:/\|/,excludeBegin:!0,excludeEnd:!0,relevance:0,keywords:a},{begin:"("+e.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[{className:"regexp",contains:[e.BACKSLASH_ESCAPE,l],illegal:/\n/,variants:[{begin:"/",end:"/[a-z]*"},{begin:/%r\{/,end:/\}[a-z]*/},{begin:"%r\\(",end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}]}].concat(i,o),relevance:0}].concat(i,o);l.contains=p,d.contains=p;const E=[{begin:/^\s*=>/,starts:{end:"$",contains:p}},{className:"meta.prompt",begin:"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+[>*]|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])",starts:{end:"$",keywords:a,contains:p}}];return o.unshift(i),{name:"Ruby",aliases:["rb","gemspec","podspec","thor","irb"],keywords:a,illegal:/\/\*/,contains:[e.SHEBANG({binary:"ruby"})].concat(E).concat(o).concat(p)}},grmr_rust:e=>{const u=e.regex,t={className:"title.function.invoke",relevance:0,begin:u.concat(/\b/,/(?!let\b)/,e.IDENT_RE,u.lookahead(/\s*\(/))},n="([ui](8|16|32|64|128|size)|f(32|64))?",r=["drop ","Copy","Send","Sized","Sync","Drop","Fn","FnMut","FnOnce","ToOwned","Clone","Debug","PartialEq","PartialOrd","Eq","Ord","AsRef","AsMut","Into","From","Default","Iterator","Extend","IntoIterator","DoubleEndedIterator","ExactSizeIterator","SliceConcatExt","ToString","assert!","assert_eq!","bitflags!","bytes!","cfg!","col!","concat!","concat_idents!","debug_assert!","debug_assert_eq!","env!","panic!","file!","format!","format_args!","include_bytes!","include_str!","line!","local_data_key!","module_path!","option_env!","print!","println!","select!","stringify!","try!","unimplemented!","unreachable!","vec!","write!","writeln!","macro_rules!","assert_ne!","debug_assert_ne!"],a=["i8","i16","i32","i64","i128","isize","u8","u16","u32","u64","u128","usize","f32","f64","str","char","bool","Box","Option","Result","String","Vec"];return{name:"Rust",aliases:["rs"],keywords:{$pattern:e.IDENT_RE+"!?",type:a,keyword:["abstract","as","async","await","become","box","break","const","continue","crate","do","dyn","else","enum","extern","false","final","fn","for","if","impl","in","let","loop","macro","match","mod","move","mut","override","priv","pub","ref","return","self","Self","static","struct","super","trait","true","try","type","typeof","unsafe","unsized","use","virtual","where","while","yield"],literal:["true","false","Some","None","Ok","Err"],built_in:r},illegal:""},t]}},grmr_scss:e=>{const u=sr(e),t=Dr,n=lr,r="@[a-z-]+",a={className:"variable",begin:"(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b",relevance:0};return{name:"SCSS",case_insensitive:!0,illegal:"[=/|']",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,u.CSS_NUMBER_MODE,{className:"selector-id",begin:"#[A-Za-z0-9_-]+",relevance:0},{className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0},u.ATTRIBUTE_SELECTOR_MODE,{className:"selector-tag",begin:"\\b("+ir.join("|")+")\\b",relevance:0},{className:"selector-pseudo",begin:":("+n.join("|")+")"},{className:"selector-pseudo",begin:":(:)?("+t.join("|")+")"},a,{begin:/\(/,end:/\)/,contains:[u.CSS_NUMBER_MODE]},u.CSS_VARIABLE,{className:"attribute",begin:"\\b("+cr.join("|")+")\\b"},{begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{begin:/:/,end:/[;}{]/,relevance:0,contains:[u.BLOCK_COMMENT,a,u.HEXCOLOR,u.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,u.IMPORTANT,u.FUNCTION_DISPATCH]},{begin:"@(page|font-face)",keywords:{$pattern:r,keyword:"@page @font-face"}},{begin:"@",end:"[{;]",returnBegin:!0,keywords:{$pattern:/[a-z-]+/,keyword:"and or not only",attribute:or.join(" ")},contains:[{begin:r,className:"keyword"},{begin:/[a-z-]+(?=:)/,className:"attribute"},a,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,u.HEXCOLOR,u.CSS_NUMBER_MODE]},u.FUNCTION_DISPATCH]}},grmr_shell:e=>({name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta.prompt",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}),grmr_sql:e=>{const u=e.regex,t=e.COMMENT("--","$"),n=["true","false","unknown"],r=["bigint","binary","blob","boolean","char","character","clob","date","dec","decfloat","decimal","float","int","integer","interval","nchar","nclob","national","numeric","real","row","smallint","time","timestamp","varchar","varying","varbinary"],a=["abs","acos","array_agg","asin","atan","avg","cast","ceil","ceiling","coalesce","corr","cos","cosh","count","covar_pop","covar_samp","cume_dist","dense_rank","deref","element","exp","extract","first_value","floor","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","last_value","lead","listagg","ln","log","log10","lower","max","min","mod","nth_value","ntile","nullif","percent_rank","percentile_cont","percentile_disc","position","position_regex","power","rank","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","row_number","sin","sinh","sqrt","stddev_pop","stddev_samp","substring","substring_regex","sum","tan","tanh","translate","translate_regex","treat","trim","trim_array","unnest","upper","value_of","var_pop","var_samp","width_bucket"],s=["create table","insert into","primary key","foreign key","not null","alter table","add constraint","grouping sets","on overflow","character set","respect nulls","ignore nulls","nulls first","nulls last","depth first","breadth first"],i=a,o=["abs","acos","all","allocate","alter","and","any","are","array","array_agg","array_max_cardinality","as","asensitive","asin","asymmetric","at","atan","atomic","authorization","avg","begin","begin_frame","begin_partition","between","bigint","binary","blob","boolean","both","by","call","called","cardinality","cascaded","case","cast","ceil","ceiling","char","char_length","character","character_length","check","classifier","clob","close","coalesce","collate","collect","column","commit","condition","connect","constraint","contains","convert","copy","corr","corresponding","cos","cosh","count","covar_pop","covar_samp","create","cross","cube","cume_dist","current","current_catalog","current_date","current_default_transform_group","current_path","current_role","current_row","current_schema","current_time","current_timestamp","current_path","current_role","current_transform_group_for_type","current_user","cursor","cycle","date","day","deallocate","dec","decimal","decfloat","declare","default","define","delete","dense_rank","deref","describe","deterministic","disconnect","distinct","double","drop","dynamic","each","element","else","empty","end","end_frame","end_partition","end-exec","equals","escape","every","except","exec","execute","exists","exp","external","extract","false","fetch","filter","first_value","float","floor","for","foreign","frame_row","free","from","full","function","fusion","get","global","grant","group","grouping","groups","having","hold","hour","identity","in","indicator","initial","inner","inout","insensitive","insert","int","integer","intersect","intersection","interval","into","is","join","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","language","large","last_value","lateral","lead","leading","left","like","like_regex","listagg","ln","local","localtime","localtimestamp","log","log10","lower","match","match_number","match_recognize","matches","max","member","merge","method","min","minute","mod","modifies","module","month","multiset","national","natural","nchar","nclob","new","no","none","normalize","not","nth_value","ntile","null","nullif","numeric","octet_length","occurrences_regex","of","offset","old","omit","on","one","only","open","or","order","out","outer","over","overlaps","overlay","parameter","partition","pattern","per","percent","percent_rank","percentile_cont","percentile_disc","period","portion","position","position_regex","power","precedes","precision","prepare","primary","procedure","ptf","range","rank","reads","real","recursive","ref","references","referencing","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","release","result","return","returns","revoke","right","rollback","rollup","row","row_number","rows","running","savepoint","scope","scroll","search","second","seek","select","sensitive","session_user","set","show","similar","sin","sinh","skip","smallint","some","specific","specifictype","sql","sqlexception","sqlstate","sqlwarning","sqrt","start","static","stddev_pop","stddev_samp","submultiset","subset","substring","substring_regex","succeeds","sum","symmetric","system","system_time","system_user","table","tablesample","tan","tanh","then","time","timestamp","timezone_hour","timezone_minute","to","trailing","translate","translate_regex","translation","treat","trigger","trim","trim_array","true","truncate","uescape","union","unique","unknown","unnest","update","upper","user","using","value","values","value_of","var_pop","var_samp","varbinary","varchar","varying","versioning","when","whenever","where","width_bucket","window","with","within","without","year","add","asc","collation","desc","final","first","last","view"].filter((e=>!a.includes(e))),l={begin:u.concat(/\b/,u.either(...i),/\s*\(/),relevance:0,keywords:{built_in:i}};return{name:"SQL",case_insensitive:!0,illegal:/[{}]|<\//,keywords:{$pattern:/\b[\w\.]+/,keyword:((e,{exceptions:u,when:t}={})=>{const n=t;return u=u||[],e.map((e=>e.match(/\|\d+$/)||u.includes(e)?e:n(e)?e+"|0":e))})(o,{when:e=>e.length<3}),literal:n,type:r,built_in:["current_catalog","current_date","current_default_transform_group","current_path","current_role","current_schema","current_transform_group_for_type","current_user","session_user","system_time","system_user","current_time","localtime","current_timestamp","localtimestamp"]},contains:[{begin:u.either(...s),relevance:0,keywords:{$pattern:/[\w\.]+/,keyword:o.concat(s),literal:n,type:r}},{className:"type",begin:u.either("double precision","large object","with timezone","without timezone")},l,{className:"variable",begin:/@[a-z0-9]+/},{className:"string",variants:[{begin:/'/,end:/'/,contains:[{begin:/''/}]}]},{begin:/"/,end:/"/,contains:[{begin:/""/}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,{className:"operator",begin:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0}]}},grmr_swift:e=>{const u={match:/\s+/,relevance:0},t=e.COMMENT("/\\*","\\*/",{contains:["self"]}),n=[e.C_LINE_COMMENT_MODE,t],r={match:[/\./,_n(...kr,...wr)],className:{2:"keyword"}},a={match:bn(/\./,_n(...Nr)),relevance:0},s=Nr.filter((e=>"string"==typeof e)).concat(["_|0"]),i={variants:[{className:"keyword",match:_n(...Nr.filter((e=>"string"!=typeof e)).concat(xr).map(yr),...wr)}]},o={$pattern:_n(/\b\w+/,/#\w+/),keyword:s.concat(Ir),literal:Sr},l=[r,a,i],D=[{match:bn(/\./,_n(...Or)),relevance:0},{className:"built_in",match:bn(/\b/,_n(...Or),/(?=\()/)}],c={match:/->/,relevance:0},A=[c,{className:"operator",relevance:0,variants:[{match:Lr},{match:`\\.(\\.|${Tr})+`}]}],d="([0-9a-fA-F]_*)+",p={className:"number",relevance:0,variants:[{match:"\\b(([0-9]_*)+)(\\.(([0-9]_*)+))?([eE][+-]?(([0-9]_*)+))?\\b"},{match:`\\b0x(${d})(\\.(${d}))?([pP][+-]?(([0-9]_*)+))?\\b`},{match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},E=(e="")=>({className:"subst",variants:[{match:bn(/\\/,e,/[0\\tnr"']/)},{match:bn(/\\/,e,/u\{[0-9a-fA-F]{1,8}\}/)}]}),g=(e="")=>({className:"subst",match:bn(/\\/,e,/[\t ]*(?:[\r\n]|\r\n)/)}),C=(e="")=>({className:"subst",label:"interpol",begin:bn(/\\/,e,/\(/),end:/\)/}),F=(e="")=>({begin:bn(e,/"""/),end:bn(/"""/,e),contains:[E(e),g(e),C(e)]}),h=(e="")=>({begin:bn(e,/"/),end:bn(/"/,e),contains:[E(e),C(e)]}),m={className:"string",variants:[F(),F("#"),F("##"),F("###"),h(),h("#"),h("##"),h("###")]},f={match:bn(/`/,qr,/`/)},b=[f,{className:"variable",match:/\$\d+/},{className:"variable",match:`\\$${zr}+`}],_=[{match:/(@|#(un)?)available/,className:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:Qr,contains:[...A,p,m]}]}},{className:"keyword",match:bn(/@/,_n(...Kr))},{className:"meta",match:bn(/@/,qr)}],B={match:hn(/\b[A-Z]/),relevance:0,contains:[{className:"type",match:bn(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,zr,"+")},{className:"type",match:jr,relevance:0},{match:/[?!]+/,relevance:0},{match:/\.\.\./,relevance:0},{match:bn(/\s+&\s+/,hn(jr)),relevance:0}]},v={begin://,keywords:o,contains:[...n,...l,..._,c,B]};B.contains.push(v);const y={begin:/\(/,end:/\)/,relevance:0,keywords:o,contains:["self",{match:bn(qr,/\s*:/),keywords:"_|0",relevance:0},...n,...l,...D,...A,p,m,...b,..._,B]},k={begin://,contains:[...n,B]},w={begin:/\(/,end:/\)/,keywords:o,contains:[{begin:_n(hn(bn(qr,/\s*:/)),hn(bn(qr,/\s+/,qr,/\s*:/))),end:/:/,relevance:0,contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:qr}]},...n,...l,...A,p,m,..._,B,y],endsParent:!0,illegal:/["']/},x={match:[/func/,/\s+/,_n(f.match,qr,Lr)],className:{1:"keyword",3:"title.function"},contains:[k,w,u],illegal:[/\[/,/%/]},N={match:[/\b(?:subscript|init[?!]?)/,/\s*(?=[<(])/],className:{1:"keyword"},contains:[k,w,u],illegal:/\[|%/},S={match:[/operator/,/\s+/,Lr],className:{1:"keyword",3:"title"}},M={begin:[/precedencegroup/,/\s+/,jr],className:{1:"keyword",3:"title"},contains:[B],keywords:[...Mr,...Sr],end:/}/};for(const I of m.variants){const e=I.contains.find((e=>"interpol"===e.label));e.keywords=o;const u=[...l,...D,...A,p,m,...b];e.contains=[...u,{begin:/\(/,end:/\)/,contains:["self",...u]}]}return{name:"Swift",keywords:o,contains:[...n,x,N,{beginKeywords:"struct protocol class extension enum actor",end:"\\{",excludeEnd:!0,keywords:o,contains:[e.inherit(e.TITLE_MODE,{className:"title.class",begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),...l]},S,M,{beginKeywords:"import",end:/$/,contains:[...n],relevance:0},...l,...D,...A,p,m,...b,..._,B,y]}},grmr_typescript:e=>{const u=vr(e),t=["any","void","number","boolean","string","object","never","symbol","bigint","unknown"],n={beginKeywords:"namespace",end:/\{/,excludeEnd:!0,contains:[u.exports.CLASS_REFERENCE]},r={beginKeywords:"interface",end:/\{/,excludeEnd:!0,keywords:{keyword:"interface extends",built_in:t},contains:[u.exports.CLASS_REFERENCE]},a={$pattern:Cr,keyword:Fr.concat(["type","namespace","interface","public","private","protected","implements","declare","abstract","readonly","enum","override"]),literal:hr,built_in:Br.concat(t),"variable.language":_r},s={className:"meta",begin:"@[A-Za-z$_][0-9A-Za-z$_]*"},i=(e,u,t)=>{const n=e.contains.findIndex((e=>e.label===u));if(-1===n)throw Error("can not find mode to replace");e.contains.splice(n,1,t)};return Object.assign(u.keywords,a),u.exports.PARAMS_CONTAINS.push(s),u.contains=u.contains.concat([s,n,r]),i(u,"shebang",e.SHEBANG()),i(u,"use_strict",{className:"meta",relevance:10,begin:/^\s*['"]use strict['"]/}),u.contains.find((e=>"func.def"===e.label)).relevance=0,Object.assign(u,{name:"TypeScript",aliases:["ts","tsx"]}),u},grmr_vbnet:e=>{const u=e.regex,t=/\d{1,2}\/\d{1,2}\/\d{4}/,n=/\d{4}-\d{1,2}-\d{1,2}/,r=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,a=/\d{1,2}(:\d{1,2}){1,2}/,s={className:"literal",variants:[{begin:u.concat(/# */,u.either(n,t),/ *#/)},{begin:u.concat(/# */,a,/ *#/)},{begin:u.concat(/# */,r,/ *#/)},{begin:u.concat(/# */,u.either(n,t),/ +/,u.either(r,a),/ *#/)}]},i=e.COMMENT(/'''/,/$/,{contains:[{className:"doctag",begin:/<\/?/,end:/>/}]}),o=e.COMMENT(null,/$/,{variants:[{begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]});return{name:"Visual Basic .NET",aliases:["vb"],case_insensitive:!0,classNameAliases:{label:"symbol"},keywords:{keyword:"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield",built_in:"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort",type:"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort",literal:"true false nothing"},illegal:"//|\\{|\\}|endif|gosub|variant|wend|^\\$ ",contains:[{className:"string",begin:/"(""|[^/n])"C\b/},{className:"string",begin:/"/,end:/"/,illegal:/\n/,contains:[{begin:/""/}]},s,{className:"number",relevance:0,variants:[{begin:/\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/},{begin:/\b\d[\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\dA-F_]+((U?[SIL])|[%&])?/},{begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},{className:"label",begin:/^\w+:/},i,o,{className:"meta",begin:/[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/,end:/$/,keywords:{keyword:"const disable else elseif enable end externalsource if region then"},contains:[o]}]}},grmr_wasm:e=>{e.regex;const u=e.COMMENT(/\(;/,/;\)/);return u.contains.push("self"),{name:"WebAssembly",keywords:{$pattern:/[\w.]+/,keyword:["anyfunc","block","br","br_if","br_table","call","call_indirect","data","drop","elem","else","end","export","func","global.get","global.set","local.get","local.set","local.tee","get_global","get_local","global","if","import","local","loop","memory","memory.grow","memory.size","module","mut","nop","offset","param","result","return","select","set_global","set_local","start","table","tee_local","then","type","unreachable"]},contains:[e.COMMENT(/;;/,/$/),u,{match:[/(?:offset|align)/,/\s*/,/=/],className:{1:"keyword",3:"operator"}},{className:"variable",begin:/\$[\w_]+/},{match:/(\((?!;)|\))+/,className:"punctuation",relevance:0},{begin:[/(?:func|call|call_indirect)/,/\s+/,/\$[^\s)]+/],className:{1:"keyword",3:"title.function"}},e.QUOTE_STRING_MODE,{match:/(i32|i64|f32|f64)(?!\.)/,className:"type"},{className:"keyword",match:/\b(f32|f64|i32|i64)(?:\.(?:abs|add|and|ceil|clz|const|convert_[su]\/i(?:32|64)|copysign|ctz|demote\/f64|div(?:_[su])?|eqz?|extend_[su]\/i32|floor|ge(?:_[su])?|gt(?:_[su])?|le(?:_[su])?|load(?:(?:8|16|32)_[su])?|lt(?:_[su])?|max|min|mul|nearest|neg?|or|popcnt|promote\/f32|reinterpret\/[fi](?:32|64)|rem_[su]|rot[lr]|shl|shr_[su]|store(?:8|16|32)?|sqrt|sub|trunc(?:_[su]\/f(?:32|64))?|wrap\/i64|xor))\b/},{className:"number",relevance:0,match:/[+-]?\b(?:\d(?:_?\d)*(?:\.\d(?:_?\d)*)?(?:[eE][+-]?\d(?:_?\d)*)?|0x[\da-fA-F](?:_?[\da-fA-F])*(?:\.[\da-fA-F](?:_?[\da-fA-D])*)?(?:[pP][+-]?\d(?:_?\d)*)?)\b|\binf\b|\bnan(?::0x[\da-fA-F](?:_?[\da-fA-D])*)?\b/}]}},grmr_yaml:e=>{const u="true false yes no null",t="[\\w#;/?:@&=+$,.~*'()[\\]]+",n={className:"string",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,{className:"template-variable",variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]}]},r=e.inherit(n,{variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),a={end:",",endsWithParent:!0,excludeEnd:!0,keywords:u,relevance:0},s={begin:/\{/,end:/\}/,contains:[a],illegal:"\\n",relevance:0},i={begin:"\\[",end:"\\]",contains:[a],illegal:"\\n",relevance:0},o=[{className:"attr",variants:[{begin:"\\w[\\w :\\/.-]*:(?=[ \t]|$)"},{begin:'"\\w[\\w :\\/.-]*":(?=[ \t]|$)'},{begin:"'\\w[\\w :\\/.-]*':(?=[ \t]|$)"}]},{className:"meta",begin:"^---\\s*$",relevance:10},{className:"string",begin:"[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*"},{begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:"!\\w+!"+t},{className:"type",begin:"!<"+t+">"},{className:"type",begin:"!"+t},{className:"type",begin:"!!"+t},{className:"meta",begin:"&"+e.UNDERSCORE_IDENT_RE+"$"},{className:"meta",begin:"\\*"+e.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"-(?=[ ]|$)",relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:u,keywords:{literal:u}},{className:"number",begin:"\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b"},{className:"number",begin:e.C_NUMBER_RE+"\\b",relevance:0},s,i,n],l=[...o];return l.pop(),l.push(r),a.contains=l,{name:"YAML",case_insensitive:!0,aliases:["yml"],contains:o}}});const Gr=ar;for(const na of Object.keys(Pr)){const e=na.replace("grmr_","").replace("_","-");Gr.registerLanguage(e,Pr[na])}function Hr(e){for(var u={},t=e.split(","),n=0;ne?`
  • ${e}
  • `:"")).join(""),r=Zr.length;return Zr.push(e),`\n
    \n
    \n ${u||"plaintext"}\n 复制代码\n
    \n
      ${n}
    \n
    \n `}});const Jr=e({__name:"md-render",props:{content:{type:String,default:""}},setup(e){const D=e,c=u((()=>function(e){if(!e)return;return Vr.render(e||"")}(D.content))),A=e=>{let{attrs:u}=e.detail.node,{"data-copy-index":t,class:n,href:r}=u;r?window.open(r):"copy-btn"==n&&s({data:Zr[t],showToast:!1,success(){i({title:"复制成功",icon:"none"})}})};return(e,u)=>{const s=o,i=l;return t(),n(i,{class:"markdown-body"},{default:r((()=>[a(s,{class:"markdownRich",id:"markdown-content",nodes:c.value,onItemclick:A},null,8,["nodes"])])),_:1})}}},[["__scopeId","data-v-ea6dd010"]]),Wr=e({__name:"CollapseTransition",props:{show:Boolean,duration:{type:Number,default:300}},setup(e){const u=e,s=D({height:"0rpx",opacity:0,overflow:"hidden",transition:`all ${u.duration}ms ease`}),i=D(null);function o(){return new Promise((e=>{E().in(this?this:void 0).select(".content-inner").boundingClientRect((u=>{e((null==u?void 0:u.height)||0)})).exec()}))}return c((()=>u.show),(e=>{e?async function(){const e=await o();s.value={height:e+"px",opacity:1,overflow:"hidden",transition:`all ${u.duration}ms ease`},setTimeout((()=>{s.value.height="auto"}),u.duration)}():async function(){const e=await o();s.value={height:e+"px",opacity:1,overflow:"hidden",transition:"none"},await p(),requestAnimationFrame((()=>{s.value={height:"0rpx",opacity:0,overflow:"hidden",transition:`all ${u.duration}ms ease`}}))}()})),(e,u)=>{const o=l;return t(),n(o,{style:d(s.value),class:"collapse-wrapper"},{default:r((()=>[a(o,{ref_key:"contentRef",ref:i,class:"content-inner"},{default:r((()=>[A(e.$slots,"default",{},void 0,!0)])),_:3},512)])),_:3},8,["style"])}}},[["__scopeId","data-v-7d025871"]]),Yr=e({__name:"FadeView",props:{show:{type:Boolean,default:!1},duration:{type:Number,default:300}},setup(e){const u=e,a=D(u.show),s=D({opacity:u.show?1:0,transition:`opacity ${u.duration}ms ease`});return c((()=>u.show),(e=>{e?(a.value=!0,requestAnimationFrame((()=>{s.value.opacity=1}))):(s.value.opacity=0,setTimeout((()=>{a.value=!1}),u.duration))})),(e,u)=>{const i=l;return g((t(),n(i,{style:d(s.value),class:"fade-wrapper"},{default:r((()=>[A(e.$slots,"default",{},void 0,!0)])),_:3},8,["style"])),[[C,a.value]])}}},[["__scopeId","data-v-30a2d476"]]),$r=e({__name:"AudioWave",props:{background:{type:String,default:"linear-gradient(to right, #377dff, #9a60ff)"}},setup(e){const a=u((()=>new Array(20).fill(0))),s=e=>({width:"4rpx",height:"40rpx",background:"#fff",borderRadius:"2rpx",animation:`waveAnim 1200ms ease-in-out ${60*e%1200}ms infinite`,transformOrigin:"bottom center"});return(u,i)=>{const o=l;return t(),n(o,{class:"wave-container",style:d({background:e.background})},{default:r((()=>[(t(!0),F(h,null,m(a.value,((e,u)=>(t(),n(o,{key:u,class:"bar",style:d(s(u))},null,8,["style"])))),128))])),_:1},8,["style"])}}},[["__scopeId","data-v-cfdf3dbd"]]),Xr={__name:"fileIcon",props:{type:String},setup(e){const u=e.type;return(e,r)=>{const a=b;return"application/pdf"===f(u)?(t(),n(a,{key:0,src:f("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADIBAMAAABfdrOtAAAAD1BMVEUAAADrVFTrVFTpVFTqVFQeFwQuAAAABHRSTlMAQL+ATezaDQAAAsRJREFUeNrt21Fu4jAUhWE7ZgFJxQJK8AKikgUU8P7XNJ3B7S80ISLJPWql3vMC5SEfxyY3SluCx+PxeDyixO7JtOuJl/JsrquNXJ7PsBIZC1FVacqiDMLFooqyCFWkO3LJa6uk8jxSS78uRnYLkJDro2C1QNLKKmUJEsZVVeIypFY5m+87CKvbCs4SEKrIEKoM1p9gEKpclQhVpEikig4Je6qoEKooEapIkcDIFyINVXQII1+IMPKFCCNfh1DloEQY+UKEka9EqCJEGPlKhJEvRKiiRJiTQoSRr0SoIkUiI1+GMPIVCKGKEOGGRYYw8rVIoooMYU6aISU8rHK2Q9qZKkKEKlYI+0sY+UYIb5cw8q2QS1hWBWTjpjDyTRA2ZcHIB9myXlR5N0Bm3m1jhcwufLZAyGG6ihEyv2DZBCGnMJFkhJB+IuYIIY444ogjjjjiiCOO/Cjk+vXvEqdSc+al/OheaFyM1MTxEyFptEFIyiAczghBASGjDULyBBLzdqT+0J++Xj//O0bfH0/drR9ILmQhUp8NIUSQ+hpveyvCymUQ7uOSIVKGewQlWyAs+r6A0G9niLzfI1RJhsj59hyErRIhpP0oqFsutmpn+ekCuV+vxgBhXcYJ5BJCND0Zyx0CboVc2hDS/whH/3h462tWIZf+2NbXpxHrUQ/CcUY7pCl6JJVp5GyIdPkxsr8h3WcWI7H7m1PPMSeWy+o8+QVIPboWGbQIs0uOhJCECNcTIcK1TIhwLRMiXMtkCKuVdAh/OhllCIsVixY51IuyDOn7Y8etlj0SSBXFSCp6JGY98lKKFIld95bLPfKDf4HjiCOOOOKII4448muRxg55/V4k2SHDQyTaIW14GDtk3dc/7b4PvNN9gkkS7jvJutUijeAsEX2IL22YTRIWIaNyR1CEi0VO24wDxmy6DWmDx+PxeDya/AHR+ZgGd4fMhQAAAABJRU5ErkJggg=="),class:"file-icon"},null,8,["src"])):"application/msword"===f(u)||"application/vnd.openxmlformats-officedocument.wordprocessingml.document"===f(u)?(t(),n(a,{key:1,src:f("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADIBAMAAABfdrOtAAAAG1BMVEUAAAAYj/8YkP8Yj/8YkP////+MyP/F4/9SrP+ld8jZAAAABHRSTlMAgL9ARyeO/QAAA59JREFUeNrs2EFug0AQRFGwOQBIHMBKOAC2cwFw3f9MWWTxJaJIrWkq8qJrDfPm7xBdrVar1d5uzymwpPGhyMaUMSu0LWNcxGwpi+RLIcSfMkv6XAMPZVIkvSI3WRIpvaRQ7j2RMkhbCFnnhhReH2NI35LC68GnSGlAoldpT1m0RxFSjAgpRoQUI0KKESHFiJBiREgxIqQYEVKMCClOhBQjQooTIcWIkOJESDEipDgRUowIKU6EFCNCihMhxYiQ4kRIMSKkOBFSjAgpToQUI0KKEyHlTOQLJJDSjoxdICWL3LpASgoZQAIpjchFenWBlBRyFY8dU7II47TfKXmEO2+BlBwyBFLSyFXSvgZSGhFO0/Q87kHKCUivP7efgJDiR3onguJEUOYEkvsTvgSR1AoppJBCCimkkEIcyPM+/Uzap9TEAYev/ocsGw+Nlu2Hz1rP1v9Abh27iNmQQaZ9s19GuRGCQBi+Wh8oeIAVPABaD7DUPQBEj91Gf3cmErcJQ5M2cV6W/Mh8zLDA8HZBLsgFkUKG1cZ4kOfQtm7MtU9fAmlhlo9uAkTFrN80L4BgNPkDJde8BEKjzUvNiiCOksU85tq9HEKj33/QvAjiePZhljRZutwU2LT11p7gN3LtAx8VQG5KDauTjjLjd8930sZVi8UQlZAvZKY7a2mryiEKuYFDSpLlnd8WJZCEJCm2uAHRgQYTQAwWgBwCvPfdKkAatPRxd0T8+goQhbU1cMij6xGRHBI2CJ+1ZhBXDWIBiTnE/hakASRUgiAngCgGudWEICfpBNLVhORrUjOS8Bri/g/kbDP6ivtEo2X4sQJIQnR1IHf8ozp26QIGMJn4qHfoBMQATCa9tEJ+aTXs+F8EkPnpJ/FLFzOgUqhx5RBN1Y7ZY9LkOjx7+9JqxQ5Ty+a6Nt0wB9IStCXIylQ6skJe3Om2WgXZnZepPedKIHSL5EW44XMRQGhFU67xUKIA8qCHVs8CgWn2XTmExpJHF3OtK9gn02aHl6leY5lirj1qPrGXYVxybYl/9x1/Qb7at4MbAEEoBqAoDoA6gdEBTFhAtPvP5MUEjw2NieJ/Z2IFblAs5EshBYfPLzrhDi7zeEggrjZUie046RPJ4mXBHhX3D9R7O2chFlJPCJwESFzPXOCBxLWzBQ0T0gGH+O59Y9rZu7ZaCNSoJE0E5LCpcO/jQP5iCwXfrFfQnWZJYDdPMDvSoGTQfF9mXJ0xxphfOgEBFvKn3JOp5QAAAABJRU5ErkJggg=="),class:"file-icon"},null,8,["src"])):"application/vnd.ms-powerpoint"===f(u)||"application/vnd.openxmlformats-officedocument.presentationml.presentation"===f(u)?(t(),n(a,{key:2,src:f("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAVFBMVEUAAADybEDHUCjNSynvcEDxbEHaVzHvbEHya0DxbUHxbEDzbEDxbEH////NSyn4tqDcWDL+9vT0gFr+7ej1kXDydU3WVC/828/6yLj85Nv5v6z3o4gi6APzAAAADHRSTlMAQCDfEO/fgG/fkH8ijAYjAAAAnElEQVQ4y63OyxLCIAyFYar0ohIxYAX1/d/TmBWj5Gzafxg2+RjipGUMP00H13QJf92OjfChA66NGLpABQQiIFABgQoIVBhAxEObvALQsDdYkxwEImUirgkA4pIprzaIcleKNrh/N2HGIDwJg8TZBi/5oVK1AeXClJMNChHHNaAd9DVcchN4lwRA097AI+CddLbns9PmU388LjL8ADapKjebjxOEAAAAAElFTkSuQmCC"),class:"file-icon"},null,8,["src"])):"text/markdown"===f(u)?(t(),n(a,{key:3,src:f("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADIBAMAAABfdrOtAAAAKlBMVEUAAAAEXOMDSbcEXOMDW+MDVdQDW+P///8CSbaBrfFChOrA1vgDUs4CTsHEXxbRAAAABnRSTlMAgL9Av7/SSHhlAAAClklEQVR42uzPMQ4BYRiEYULUNGpXcAm1I4hiQ8IlpnISh7AXUDiUciLZ5tv8r0TMdFM9eSdZlmW/v9l2VdpyjLHrajuOQNZdcadNHenKiMrGtI7cyinzEUg5ZTECcQqJ6AuIU1BEPOIUFhGOOAVGRCNOoRHBiFNwRCziFB4RiziFR8QiTuERsYhTeEQs4hQeEYs4hUfEIk7hEbGIU3hELOIUHhGLOIVHxCJO4RGxiFN4RCziFB4RiTilLXIdREQiTmmKXIYRtUC8ZyHFCJdipK68BrevI/UdggQJEiRIkCBBggQJEiTIPyD3z3vu+/7RFHnzYgepDcNAFIZvKyF5H2HnHiN6gRrcvU3ry1XiRR4JLzMvWgUF5kv4mUCcytnHK1+uZofzVY9YII/xKisSE943QObbFQFJYxISMpT3HGQsn0nI8gnk2V3EREHGKIGDjFE8BxnHZA4ylk80RMsHEnKivCY5CMhfXz4XIBOQ/UAULrJ2UepMCjIhSusuFKSOEu3uKIjDoJaEhORWHhwH8aW8JiEhKE9GYlvHtXYnIQ7riPE0BOuI7jSkRmlJaEhEeQ+LhNQoO6YTEaxjoiJYx4CBLATriO40BOuI7jQE64jhFxKSntkEWcsgfGgg6KTHBJkwS6jfJN4RdygiFkib6HpkuoynRXhEwWxF4oUsNggyPzoEMI7YIMgsIxI0uw3ikESRLr2YIQdGK6LpnRmyXqN/zvO3/1lZ3kW2bft+DWyvbn+FhfwoKiA7E0EpoSMe2blITAsfcVk+gMT/du6gBAAQCKKosgZQLLIRrCLYP4MJ3NMgLPxf4N3nMJmGThAQEBAQEBAQEBCQPEjTIesH0p+I6ZDwdkPUDpAqMo6XIBuKphciovRd858HQqZ1OloAAAAASUVORK5CYII="),class:"file-icon"},null,8,["src"])):"text/plain"===f(u)?(t(),n(a,{key:4,src:f("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAAAQlBMVEUAAACnp/+nqP/r6+tDSFTp6enr6+unp/+rrbHq6uqnqP9DSFTT09P////T1P+9vv/p6f+XmZ/k5OSLjpTAwsVtcXruSI03AAAACXRSTlMAgL+/v4BAQL+5DcW0AAAD9klEQVR42tzUUVLDMAyEYZdsE5TlJSLc/6qkD+kwxAPYQ1Np/xt8s5bLb43jMNgZvZZHNg52VgvK47raeS28S1I7Nsguye3YIA+T2KktvEtSD7JBdknuQTbILsk9yA4hVCD/Lhns3BbuIfWJfIEQKhBCBUKoQAgVCKECIVQghAqEUIEQKhBCBUKoQAgVCKECIVQghAqEUIEQKhBCBUKoQAgVCKECIVQghAqEUIEQKhBCBUKoQAgVCKECIVQghAqEUIEQKhBCBUKoQAgVCKECIVQghAqEiAlZ2RxUIEREiLEjRIR8dEkCQlb2hHiQvkmIeJCVXSEcxJZOSThItyQcpFsSDrJR+n7heJCtdVneW3uNCNnyt9aCQsxVIOYqEHMViLkKxFwFYq4CMVeBmKtAzFUg5iqQv0pKoMbrtSpJB7lVo3hGSJXiKSFVSUpIVZISUoaKJCVktGOeEVKGmkQFYp4QMlotV4GYp4MUa5PskGm6PLXpCGmW3Bgv89O7HCCtklIuc4gOkEZJKXOMLgdImyTKIPM8HSBNkhLgQGqQZkmUl/XtbdmPuQrEXAVirgIxV4GYq0DMVSDmKpBPbu1ot0EYhgLocyz52sr/f+ykdcExSdiQWLeb+0aLaE5tqymi1F0gpe4CKXUXSKm7QErdBVLqXQjk25i7x2m+DOxBSKlTiGEV9W7BqhgZ+pl2qFexpyAhyRD/0adjuhgkiL0PUuoAgV4FJ+7UoTcu9QAkJAlityDIkPyivRNS6p3W8uEsWxfkGgJ5ChKSDBFEvpbfDk0iQRsL0oLzpeLQ5HFIqQmSsh5LgQ7LDtokw0g9Dyn3Ibm5MgRsEIvmyg42yFESJIjwQSx+2sIBQshREg8IhBEiUZJWEOOEoEmiIJyQmPc26ayQY95fItBC8sYMwguxHiLEkL4koIZIQIwbAm1xboj4FsOe/5gbM0S7ODEE2sdoIaY5tBDXHCeF4NgzthgnRF/pKuOUkFaQ16zQ3nxIN7K65uKDpBq4KukNOkHnSM1FBkm3rHNzcUHS95+biwrSF2RoLiII0pqH5uKBhKOL80Ew3SQaH2QxDGCFyDn+T4cdV8taPzGw2vDjzyACqNtc6NM3DL7cCEB+GUL/UM1HO3eQAkEIA1E0diglc/8DD71wGxgydMei/g0eiugiCrITRBBB8gQRRJA8QQTJ6zO+RwNZRcj69GhYEdJlSawK6TE+fa065KaM69XGZlQgPWOBTEGaBRaIk0AQgrQKwQGZwQFBUECmBwNkM/4K8ceLSv3/MhVEkJ8SRJBTyt4EJ+UsEGSX0JOigZhx7C2YcSyJpSFOCcYhgRmF5HYQUHzaLg/oe3y5z834AlqzllCyYM6WAAAAAElFTkSuQmCC"),class:"file-icon"},null,8,["src"])):"text/html"===f(u)?(t(),n(a,{key:5,src:f("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADIBAMAAABfdrOtAAAAJFBMVEUAAADp7e3wVUPq7u7vVETvVkLn6+vp7e3wVULtoZjrx8Lue23hoi/+AAAAB3RSTlMAgL+/QIBAoZdrkgAAAz1JREFUeNrt20Fu00AUxvGAKLBlxRax4gbdcoQKgcSWVdesJnE2CBllbB/Ak/oATuAAtprLITt2vjiu+uJ58yKK3lukaUb1T38nkWwnneno6PzD8/Lbm7Pno6fxzEyY2LPjegpi/VJuzSTEL+V6GoKU4M8IEK+UVxMRr5TbiYhXytuJCFJkkVjoxQUEKcJILI0gRRqJhRGkiCOxLIIUeSSWRZAij8SyCFLkkVgWQYo8EssiSJFHYlkEKfJILIkgRQap6RQ+4ugUPrKxZAofWVoyhY9ElkzhI8bRKXxkMSUFCDdFAjHrepRCI8z5rogiiiiiiCKKKKKIIv8X8icpByc/dR4eiaxNT84Vy3AINpqcnJWkwRCEDJHaIiUUsgGCB9JQCEJsPjpVLEMiCME4pIRBFgghUhiIQ8gohYEQIUhhIHQIUvgIQojA6QgdggUOQodghYEQIVhiIFQI1hgIFYJFBkKGYJWBUCFYZiBkCNaZyPyRELztmYgbh4xS2MjmQgi9uyomEp3zxJcshE6psbc8ETpliRAGghQihIEghQhhIEghQjgIUioihIEgJSNCWAhSiBAOghQihI0gZRzCQugUhPARpBAhHAQp45B7w0HolCXYUMj47M1BDXpimp3srUzuFBtIFQ7BVldDNDPhkcVueNmjyJ/qBRxFFFFEEUUUUUQRRRRR5Gkgz22AeaeIIo8j2dZ19+6L5jb93c62Hq5tbfu7J5L3XzdO9hdrji+qrEx0WGu40sz9kLL/Yv5qeDki2l/B3adUDdqsRX6IaQK6Dc1x9aalS9NllmGR7PgjgLJbTExYxJZHz0mJT1bCIsn6zhizLmyHLJq60Ai21VU5m8ojS5vLI1Fi5BGTSyMYLlLsmsklEcxDyF23x0SRon33r2QRlzePSyNp88qQRqwxCyuOVMYBkXmfuOanIopcAjHtgZ8TRYb/fXZDIFcsxJyHvOAhdYcQ88Bhar/F7LA/qn5zKQ78jkpm1HzokQoH3FHdH4NvbDtpv5bhOzp4Tn6RyOtDSlHbTunvZEW/tj6s7drbdTvdX/wgkSvLnpsZOV9ZAPaWUApC5FIQIq78nJ05Xz69953PMx2di85fMidGRzOFmtUAAAAASUVORK5CYII="),class:"file-icon"},null,8,["src"])):"application/vnd.ms-excel"===f(u)||"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"===f(u)?(t(),n(a,{key:6,src:f("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAAAP1BMVEUAAABGr1hEr1iDy5B0w4FFsFih16s0m0Kj16tFsFii16v///80nELR69V0xIKHyJE4oUiLzZY+p05TsGFtvXm1z58CAAAACXRSTlMAgEC/gL+AgEDXVeanAAAD10lEQVR42uzTUWrDMBCE4ViS3e4QnFjy/c9a14SEPhSypTajYf8LiI/RXn4ppXG0M8qXI0ujnRVekp4ZZjhOMtiZAZj2Zzt3GB6S3h07BKV/h+EgiZ0dHpLeBzE8Kp0P8oQsQ9+DGJ6S9I+Q0U4PeEl6/lmGIyTJzg94NXd8Ij8gyCoQZBUIsgoEWQWCSQWCSQWCogJBUYGgqEBQVCBLEoFsEhHIJhGBbBIRCLIKBFkFgqwCQVaBYFKBYFKBoKhAUFQgKCoQFBXIMohAsCQRyCYRgWwSEQhmFQiyCgRZBYLMDVkcEhUIJmbICo+EGNLgqfBCKnwSXsjNKWGFWINTwgrxTrIkUog1eCWkkHpzSzgh1uCWcEKqW5I5IX+RcEKsrm4JJ8Rqnb0STojVq3eUiRPyTWmzT0IKsXq/Xltb1/X2Zp+kkJ3i6YMWslGqCGS33N+MHPJ+Q0DICghbAWErIGwFhK2AsBUQtgLCVkDYCghbAWErIGwFhK2AsBUQtgLCVkC+2ruD3QaBGAigBIkDg+z//9zSXkbRyC1WJNcgz6ntkrIP42QDB7plIN0ykG4ZSLcMpFsG0i0D6ZaBdMtAumUg3TKQbhlItwykWwbSLQPplk8gDkQDHmwWxN3sOGPgK+sgOPfs4YD+FjO+EQzZRZDjO4HjwNtm9tcBeQ9qIQimeOQgdmjMqyCcAmKfQuJ6mOEMi+OVEOcuGfCME0joMBdYGYQ7df0TLkO4ufRYIUTbRCcWQ+JJgy+ogLBNZGIJSNQPZRBtEzbIdYhxe0kZRNuErBiSGCyD8JjaW4PcsiJsEzZIFoJgsACibQK+hSUgfHGQOgjbRBrk+ufIgYBSCGGb8NgmIFwxwndNHYRzFUdmrRXWpRjidCQgKtHClEI4mT0PUYoejnoIEpAEpQzCeXgSwjgsltQ3uyUgGkAkZRAWBJZ/+9U4RFL9gciVVgqigZylBRDuGFz75iAa/BOEhYDOOQ/R/1O5jIf+nIcw5RA2iKxl07OKv6WUQMDzmRK/H0RK8AOz+51a2hSWvRyEoMwohLBB4hrFkPhqkFVD2CD6xwTkQHB4qiB+fHwR2/VbiFv5EiXaocltBQ1k/Q7AHWa1i0Y98vHVRxOFDquzGuLhCOj6faoIbvMUQDhBxMb41ppUEhBGCYSUeCQ7GQdgFtzUnfvsA0lkIAO5SwbSLQPploF0y0C6ZSDdEkPW/VZ5DGR9CmSJs+03yrYszyjJ6ymQpg+3+awgmv02Wc484eR6NX26WNrR9cl1WUfbpyJmHZeyNqds63I1r8Yf8WRctTTEbNsaMb4At2WYT4AadJYAAAAASUVORK5CYII="),class:"file-icon"},null,8,["src"])):(t(),n(a,{key:7,src:f("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADIBAMAAABfdrOtAAAAG1BMVEUAAABIgP9If/9Ifv/O3f9Ifv+Lrv9qlv+txf/DmxrjAAAABHRSTlMAQL+ATezaDQAAAgdJREFUeNrtm0FOg0AYhVuN+2riXmu6Jza9AaEstXVKDwDUA5TCAdr02i4wmY380+F/FsT3XeDLzIMJf5g3IoQQQggBM75vxcTDMJ2ZtrwElzkejIo5yCGzVjiAllsDwJWLjfz3lnJjIDy5F6JnpUxEv5QFSrKWFgKj+YC5M98kh7wVu8Lul2u3qrA1ual5b5RYR3t29vmSItmEKjIbiiBJdZLIhtKcexIqqcN/E3PfaiUnMfmF3S0NSzH5GUYSi5I6sVCNKLG5I5LvUDK2r6KOjBJKKKGEEkqsJCpMI0mKkcSFkThCJEsjsodIMlmygUgKWZJAJMYBZiU9kGC263SN4CNZkqol7md4gzq78rKR6viXDkhKKKGEEkoooWSYkrj0Im8lKYwflf4L0k0CGoJkUv1XvZu9v8R489FTSaGQ6IYgdPBLbwlmCMK/jGG0K32o+ntAUkIJJZRQQgklw5TE59KDw2d4je+u9F8PQT9JOAQhh6CeBn+VISj23a+t+gezm7K/ByQllFBCCSWDkwznvvBohrxeLUuOWkd0wW30vVoiNlAeMZf3MyvpqoZwgylUyF2tMbIaEjgKVJXGcTb2CW5IvibXO9Zi30xfPLK5C6FACLosg9n90hN0V9DT9zLlfh4+lVUf6p+IpTyPnCxADpk5yiHn8to+8umkT4VvQgghhJCL+AIlbNeojhIVMAAAAABJRU5ErkJggg=="),class:"file-icon"},null,8,["src"]))}}};function ea(e){const u=D(!1),t=D(!1),n=D(!1),r=D(0),a=D(0),s=D(0),i=D(null),o=D(null),l=D(null),c=D(null),A=D([]),d=D(null),p=16e3,E=()=>{if(0!==A.value.length&&c.value&&c.value.readyState===WebSocket.OPEN)try{const e=4e3;let u=[],t=0;for(;A.value.length>0&&t0){const e=new Int16Array(t);let n=0;u.forEach((u=>{e.set(u,n),n+=u.length})),c.value.send(e.buffer)}}catch(e){console.error("发送音频数据时出错:",e)}},g=async()=>{var e;if(u.value&&!t.value){t.value=!0;try{d.value&&(clearInterval(d.value),d.value=null),(null==(e=c.value)?void 0:e.readyState)===WebSocket.OPEN&&(console.log("发送结束标记..."),c.value.send(JSON.stringify({action:"cancel"})),c.value.close()),console.log("清理资源..."),C(),console.log("录音已成功停止"),console.log("录音已取消")}catch(n){throw console.error("取消录音时出错:",n),n}finally{t.value=!1}}},C=()=>{d.value&&(clearInterval(d.value),d.value=null),o.value&&(console.log("正在停止媒体流..."),o.value.getTracks().forEach((e=>e.stop())),o.value=null),l.value&&(l.value.disconnect(),l.value.port.onmessage=null,l.value=null),i.value&&("closed"!==i.value.state&&i.value.close().catch((e=>{console.warn("关闭AudioContext时出错:",e)})),i.value=null),A.value=[],a.value=0,u.value=!1,n.value=!1};return _((()=>{u.value&&g()})),{isRecording:u,isStopping:t,isSocketConnected:n,recordingDuration:r,bufferPressure:a,currentInterval:s,startRecording:async()=>{var t;if(!u.value)try{r.value=0,A.value=[],a.value=0,s.value=300,console.log("正在初始化WebSocket连接..."),await(t=e,new Promise(((e,u)=>{c.value=new WebSocket(t),c.value.onopen=()=>{n.value=!0,console.log("WebSocket连接已建立"),e()},c.value.onerror=e=>{console.error("WebSocket连接错误:",e),u(e)},c.value.onclose=e=>{console.log(`WebSocket连接关闭,代码: ${e.code}, 原因: ${e.reason}`),n.value=!1,console.log("WebSocket连接已关闭")}}))),console.log("正在获取音频设备权限..."),o.value=await navigator.mediaDevices.getUserMedia({audio:{sampleRate:p,channelCount:1,echoCancellation:!1,noiseSuppression:!1,autoGainControl:!1},video:!1}),console.log("正在初始化音频上下文..."),i.value=new(window.AudioContext||window.webkitAudioContext)({sampleRate:p,latencyHint:"interactive"});const D=new Blob(["\n class AudioProcessor extends AudioWorkletProcessor {\n constructor(options) {\n super();\n this.sampleRate = options.processorOptions.sampleRate;\n this.samplesPerChunk = Math.floor(this.sampleRate * 0.1); // 每100ms的样本数\n this.buffer = new Int16Array(this.samplesPerChunk);\n this.index = 0;\n }\n \n process(inputs) {\n const input = inputs[0];\n if (input.length > 0) {\n const inputChannel = input[0];\n \n for (let i = 0; i < inputChannel.length; i++) {\n // 转换为16位PCM\n this.buffer[this.index++] = Math.max(-32768, Math.min(32767, inputChannel[i] * 32767));\n \n // 当缓冲区满时发送\n if (this.index >= this.samplesPerChunk) {\n this.port.postMessage({\n audioData: this.buffer.buffer,\n timestamp: Date.now()\n }, [this.buffer.buffer]);\n \n // 创建新缓冲区\n this.buffer = new Int16Array(this.samplesPerChunk);\n this.index = 0;\n }\n }\n }\n return true;\n }\n }\n \n registerProcessor('audio-processor', AudioProcessor);\n "],{type:"application/javascript"}),g=URL.createObjectURL(D);await i.value.audioWorklet.addModule(g),URL.revokeObjectURL(g),l.value=new AudioWorkletNode(i.value,"audio-processor",{numberOfInputs:1,numberOfOutputs:1,outputChannelCount:[1],processorOptions:{sampleRate:p}}),l.value.port.onmessage=e=>{e.data.audioData instanceof ArrayBuffer&&(A.value.push(e.data.audioData),A.value.length/20>.7&&E())};i.value.createMediaStreamSource(o.value).connect(l.value),l.value.connect(i.value.destination),d.value=setInterval(E,s.value),console.log("录音初始化完成,开始录制"),u.value=!0,console.log(`开始录音,采样率: ${i.value.sampleRate}Hz`)}catch(D){throw console.error("启动录音失败:",D),C(),D}},stopRecording:async()=>{var e;if(u.value&&!t.value){t.value=!0;try{d.value&&(clearInterval(d.value),d.value=null),A.value.length>0&&(console.log(`正在发送剩余 ${A.value.length} 个音频块...`),E()),(null==(e=c.value)?void 0:e.readyState)===WebSocket.OPEN&&(console.log("发送结束标记..."),c.value.send(JSON.stringify({action:"end",duration:r.value})),await new Promise((e=>{if(0===c.value.bufferedAmount)e();else{console.log(`等待 ${c.value.bufferedAmount} 字节数据发送...`);const u=setInterval((()=>{0===c.value.bufferedAmount&&(clearInterval(u),e())}),50)}})),console.log("正在关闭WebSocket连接..."),c.value.close()),C(),console.log("录音已停止并保存")}catch(n){throw console.error("停止录音时出错:",n),n}finally{t.value=!1}}},cancelRecording:g}}const ua=e({__name:"ai-paging",emits:["onConfirm"],setup(e,{expose:s,emit:i}){const{$api:o,navTo:c,throttle:A}=B("globalFunction"),d=i,{messages:g,isTyping:C,textInput:_,chatSessionID:P}=v(Z()),{isRecording:G,recognizedText:V,startRecording:J,stopRecording:W,cancelRecording:Y}=ea(K.vioceBaseURl),$=D([]),X=D(0),ee=D(!1),ue=D(!1),te=D([]);D(!1);const ne=D(!1),re=D("idle"),ae=D(0),se=y({uploadFileTips:"请根据以上附件,帮我推荐岗位。"});k((()=>{oe()}));const ie=()=>{const e=_.value;if(ue.value=!1,ee.value=!1,e.trim()){const u=()=>{const u=Q(te.value);te.value=[];const t={text:e,self:!0,displayText:e,files:u};Z().addMessage(t),Z().getStearm(e,u,oe).then((()=>{console.log(g),o.chatRequest("/guest",{sessionId:P.value},"POST").then((e=>{$.value=e.data,ee.value=!0,p((()=>{oe()}))})),oe()})),d("onConfirm",e),_.value="",oe()};P.value?u():Z().addTabel(e).then((e=>{u()}))}else te.value.length?o.msg("上传文件请输入想问的问题描述"):o.msg("请输入职位信息或描述")},oe=A((function(){p((()=>{try{setTimeout((()=>{const e=E();e.select(".scrollView").boundingClientRect(),e.select(".list-content").boundingClientRect(),e.exec((e=>{const u=e[0].height,t=e[1].height;if(t>u){const e=t-u;X.value=e}}))}),100)}catch(e){console.warn(e)}}))}),500);function le(e){return new RegExp("image").test(e)}function De(e){e.url?window.open(e.url):o.msg("文件地址丢失")}function ce(e){return te.value.length>=K.allowedFileNumber&&(o.msg(`最大上传文件数量 ${K.allowedFileNumber} 个`),!0)}function Ae(e="camera"){ce()||L({count:1,sizeType:["original","compressed"],sourceType:[e],success:function(e){const u=e.tempFilePaths,t=e.tempFiles[0];o.uploadFile(u[0],!0).then((e=>{e=JSON.parse(e),le(t.type)&&(te.value.push({url:e.msg,type:t.type,name:t.name}),_.value=se.uploadFileTips)}))}})}function de(e="camera"){ce()||U({count:1,success:e=>{const u=e.tempFilePaths,t=e.tempFiles[0],n=K.allowedFileTypes||[],r=o.formatFileSize(t.size);if(!n.includes(t.type))return o.msg("仅支持 txt md html word pdf ppt csv excel 格式类型");o.uploadFile(u[0],!0).then((e=>{e=JSON.parse(e),te.value.push({url:e.msg,type:t.type,name:t.name,size:r}),_.value=se.uploadFileTips}))}})}const pe=e=>{ae.value=e.touches[0].clientY,re.value="recording",ue.value=!1,J()},Ee=e=>{const u=e.touches[0].clientY;ae.value-u>100?re.value="cancel":re.value="recording"},ge=()=>{"cancel"===re.value?(console.log("取消发送"),Y()):(W(),console.log("发送语音")),re.value="idle"},Ce=()=>{W(),re.value="idle"},Fe=u((()=>{switch(re.value){case"recording":return"松手发送,上划取消";case"cancel":return"松手取消";default:return"按住说话"}})),he=u((()=>"cancel"===re.value?"#f54545":"recording"===re.value?"linear-gradient(to right, #377dff, #9a60ff)":"#f1f1f1"));function me(){ne.value=!ne.value}function fe(){ue.value=!ue.value}return s({scrollToBottom:oe,closeGuess:function(){ee.value=!1},colseFile:function(){ue.value=!1}}),(e,u)=>{const s=b,i=l,D=z,c=q,A=j,d=w(x("uni-icons"),H);return t(),n(i,{class:"chat-container"},{default:r((()=>[a(Yr,{show:!f(g).length,duration:600},{default:r((()=>[a(i,{class:"chat-background"},{default:r((()=>[a(s,{class:"backlogo",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATkAAAC+BAMAAAC8DWUWAAAAD1BMVEUAAABdcP2Acv5jbvpZcPttrzvVAAAABXRSTlMAGRMHDlnjuE0AAAcpSURBVHja7Z0NctpADIX5OwAIHwC1F4jbHgCa3P9MbSYUxZHxt/iJGaaDOpOWGT9WK2m/1RqHLh7LNjtbPK75brdfPKqtdn9t8ai2fPfuuHhQ69+9Oywe1J7ePb1rsKd3D2RP757eNdjTuwey/9i79Q/f7b69vtwi+e27b2+s0L37sTvba7Pk91nxHU4TY2Y3Be4Uwq4xGKc2hX/2Kf6ZThgwUhayhBWruMoH0buhYC9T88FgKPGzYjt1mvCPP+cxzn92g3hTaVz0vgslSkIBE8/xO7YW3VkS1qHGkwK8S3ZoX642mB9PbPVPYqRYjgYuoo02ou/aQweKzdCnGKj9jJ7t5WaGHa9PxD/WwWDp7dtp4hfRx08H8enfZc6KjefctNN4PYPlgxyBQtvJlgnlTqldxWWQWvYORRZrNv7e0jhpg9oK3nGW2pHnETgPDzvBO1p+MR6v2rypWyhU75jlHu/DPDGgP3hHcAiWtHUqy6jUpFC8Y554BATD7RE5UIB3yBPP4x2bi8FBgd7xSO2J8lRz0eVp3vFG4ecxvZvyznmD0b3bpLw2dAKXK20o81CAd2JibeqdYkZAIdW7U3YrFx5Xg4WCvFN5ElEhUaZeqXfLwQjJ1eNV7+wiPIPZQoHe6TyxiUTt7DqFKBQvEk8iEtcJkZMakSQ+3MaTnE5mig89YkXo9npiw9MDLfQ4VmRFDsZVwEMQUo6mDk59BA2aVsXWyadk0ycR/xI5KKzZ552buo5Vmky8hD5F2ShyivcQc1Doic0HRuw6AsYu3NQEnkDczicZWuuxWySFeA+cbYsFmxUlNh25fEjNO+3o6ujqyo5tCpQ+yqO6xLIdURu8C8XdeeITfcrmypr1rKhPbAxqk0zJeQ2FzhM2ZopHXkNx17JjQqxAcU+ecNexDvrmfaarKTteF1cPqX6tXENRn9gxO5DeQCHwBGyKKbEobHjc3N8/sQZ9SqzSLL0/T+DuSA8Kuex0pvgw0pYUEk8kplwsNwNdSWKV7eL0NWger0MhJVZgypIOwjpPFKbEbsGK+saTDqn5OpeYkpOi9ykRv0HPd6wrO7lPsRTwbRVPBKb452w6KKp5wkzJZkkhJlZmSmAvXh6qeCL2KZ7LLinqecLH2uyXgULgiXSsDc88FJVlJzDFQHHfxOL9lHwDq6vlyVymWOwScKxVEiswxUmh84SZwlXi8JFeadkxUyJqmS3VPJnPFE+HjKSoLjtO7SptFRY/97WJ7YSzT14cbrU82Z9m9inOCj2xx+X8PsWifw9FKU9e1jJTgiszCo+GjxftfYpfz20lT7aUeCqVyGt+TEBPLC2a0WUWNQcKkSd0IMqEQEUhTzi4mA6PTt6TQuMJF+Z4KUdetWMtL8n1jO3Cxhy7vfAYZ/OYMnjMezZTOG0KU3ysjTrW8YQXTtNS83T7vYYnKlNyj2dlPLmSWmaKhTegkHgyjymrqQcztmU8mcuU6IjhWCvwBNYOPiZg0u+N9ZgyhSk5r5YUGk8EppBC54nGFB/m1S6lV8iTdqaQgvuUeWOuZjDFh+vBkkLlicSUsdwmhc4TsQW1Wz6tnccJONYKz8srPNGZEk2egUKoJahRfkJ6WIDceGI46pjChSeMp/UpkVcLhcwTmSkTQO70jUJnSn4gz0Kh8URjSiiCxfCYgBCLtdSnWFLoPNGZ0viRnrIG9RbUB3uuRXo0nuhMsSv72VbiST1ThsjrZJ4U9SkOCq2IdKbsDBRqHDjekNpLXu1jZexFnui16qCo4UnhrTIPhcYTPbWrzGKOAie2nin5jkonB0FnSjaH7YILqJ4pEcFQyDFYvwmfJWNno0hylEWm2JebAwJPIMitTKlVvNCF+q2y+JYpAQzgXB4TjrWJx2438wRmITCFFVwKfJ3yW3qO3yYA84fQqUzxCQXzhEOn9yl2cXIuTzh0OiE8KaBMcRL3u/3OPOFJKMfa/DSo3TQVnAQwRYI/84QnITElzNP9FMyYsGKFPqX0g7u6PiUV3gYTw8guKjzPimX5RsHE2zQTryeecIgh+siUtNUm76jslqXe9RXd7lH3bt/4PY6eFFjt2nO0fJBhBVynetfRIXD6zA2JvZN3faOikVWnWu82jQq+rN679mHbyk7ILKSWvOPE6ms2M0Vds4t7erduU5zwqnoat4/bA0/qd7J4Q1b0UHZiF3C8+a7uoWUOHdQJGH9E0qTYNKak3Lu+SQEXaTju4K4uKogn9aeeqBVW9HCRtGi38GE63gvfwFoTT9uQWlKs4SKl8Dr6rJ8VJ04sp5YTm81Zwd+8zqnlxHJqQ8EoawcUr1hOLeeMM7IuDF3MlxUQOgweh46D13438khvpocu5suKvm3Ov9AhnmPmBUfl81Ud7dx6XmNgVIR7nJBecI7+U5HvE1edEqyl5L4mJQwMip/vl3U/8d04fO5vEX+2n29/x30dVfwBs+kDQ2oMEisAAAAASUVORK5CYII="}),a(i,{class:"back-rowTitle"},{default:r((()=>[N("嗨!欢迎使用青岛AI智能求职")])),_:1}),a(i,{class:"back-rowText"},{default:r((()=>[N(" 我可以根据您的简历和求职需求,帮你精准匹配青岛市互联网招聘信息,对比招聘信息的优缺点,提供面试指导等,请把你的任务交给我吧~ ")])),_:1}),a(i,{class:"back-rowh3"},{default:r((()=>[N("猜你所想")])),_:1}),a(i,{class:"back-rowmsg"},{default:r((()=>[N("我希望找青岛的IT行业岗位,薪资能否在12000以上?")])),_:1}),a(i,{class:"back-rowmsg"},{default:r((()=>[N("我有三年的工作经验,能否推荐一些适合我的青岛的国企 岗位?")])),_:1})])),_:1})])),_:1},8,["show"]),a(c,{class:"chat-list scrollView","scroll-top":X.value,"scroll-y":!0,"scroll-with-animation":""},{default:r((()=>[a(Yr,{show:f(g).length,duration:600},{default:r((()=>[a(i,{class:"chat-list list-content"},{default:r((()=>[(t(!0),F(h,null,m(f(g),((e,u)=>(t(),n(i,{key:u,id:"msg-"+u,class:S(["chat-item",{self:e.self}])},{default:r((()=>[e.self?(t(),n(D,{key:0,class:"message"},{default:r((()=>[e.files.length?(t(),n(i,{key:0,class:"msg-filecontent"},{default:r((()=>[(t(!0),F(h,null,m(e.files,((e,u)=>(t(),n(i,{class:"msg-files",key:u,onClick:u=>De(e)},{default:r((()=>[a(s,{class:"msg-file-icon",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAAAhCAMAAABp0ZInAAAAVFBMVEUAAABgYGBgYGBgYGBfX19gYGBgYGBgYGBjY2NgYGBfX19dXV1gYGBgYGBgYGBfX19gYGBgYGBfX19fX19gYGBgYGBhYWFgYGBgYGBhYWFgYGBgYGBu7ZQrAAAAG3RSTlMA9dc4L+uQFQvLJw/Rs6sb3qWASeaTIZXBdGUxlZAeAAABFUlEQVQ4y53U246EIAwGYDqKAoLgYQ76v/977sLQaAjsxfaCYvkCDVHFf6N758m27JBuqyPAxKxmfMP5KloSsqD1JfwqYVUFzWnyAJk0eQUMLaQj4ho1kI2I44MSOUavqzygjSqKETfuY/bXiW205R4N6I4+jMZcWGOeAoYb0iVKiyogMOpvaCqRysjUUC7sTdT/jeALJBkpCX1dZoEm7nyBTXkGmSYygC/Q80IcK+bvjtS3kdDYos2oqyNBGNPIO70ZjeIWwO8wghIiPKtIEKY0dk109XWAFkfg46hAYk1flnIA2kj0+aXrjrOvo3zn+v5oq0h4CafaiKMjhPzPOGUFcWsW2OdhcDugJ9GMIyDF46wu/wC7VxlT8Z+BgQAAAABJRU5ErkJggg=="}),a(D,{class:"msg-file-text"},{default:r((()=>[N(M(e.name||"附件"),1)])),_:2},1024)])),_:2},1032,["onClick"])))),128))])),_:2},1024)):I("",!0),N(" "+M(e.displayText),1)])),_:2},1024)):(t(),n(D,{key:1,class:S(["message",{messageNull:!e.displayText}])},{default:r((()=>[a(Jr,{content:e.displayText},null,8,["content"]),ee.value&&!e.self&&f(g).length-1===u&&e.displayText?(t(),n(i,{key:0,class:"guess"},{default:r((()=>[a(i,{class:"guess-top"},{default:r((()=>[a(s,{class:"guess-icon",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAaVBMVEUAAAD/rkb/rEf/o0D/rUf/rEb/rUf/q0X/rkf/rUf/pkD/rUf/rUf/rkf/rEX/rUb/rEb/rUb/rkf/rUb/rkb/rUf/rUT/rEf/rUH/rkb/rUb/rkb/rEf/rkf/rUb/rUb/rUf/sEb/rUcyFYZkAAAAInRSTlMAzkAI4PWfL06WENe5XyCrjIXAsXlFOnAapn9Z51Mox2k0MqTxPwAAAdhJREFUSMfFldm2gyAMRUGkzvNstbb+/0deY7pAClTvU8+TTdwhiQklP1PYFNlCaTmMTXgJcDK+CvGsOQXacv0Qbb8C7LYaFDA7kUb4jhskjuc5SeDi7yi1EvhG5RzyrDDG4xsRtR/FRTtjPIdR8GVMs2dgp6Z6cvDk5B8ej0MZxKi9oIfR7IaWcYAqY+0QCOQTi3w8Rs+XEqtKQzVw9IyPTXpofIOdukPaKvGAEdy9rFy5f0ioxE5zLbNE1NceK423H614ShSk2CwFzv6Kkfv+XYKjvCB1wyACSTdD5R2QJ0y0gmRQvUCi9w5UkUBmGCYFGTbLXSCKHNGyQUGCzdKZEHtiNVokQn2fSkTGlPLFx/cQgEeE8MNSbZ5CcPZ44LTIT7lMNQH14JdDK6LUikVLfCGqus02MRvBJixFUQhDNNqQEUYwNFpfZuIF8XLz5rm9iejBNYWWzYtS24U4E4MC8LitlpVruWBwJ0BBr+Sb78bY1kq8TflwExo4jjQjNhWrUQX5IsfVgejkX4l1XAV4zciZoKVjsmuEM04B7Ns7lQZ7daoMd1pu74nU/eu07bWvRiF7Xp8CeDFk3i7I8XkBmVdF9wuIpyIeudZlqZhcEcupUBGSH+kPJ0NO23oKybEAAAAASUVORK5CYII=",mode:""}),N(" 猜你所想 ")])),_:1}),a(i,{class:"gulist"},{default:r((()=>[(t(!0),F(h,null,m($.value,((e,u)=>(t(),n(i,{class:"guess-list",onClick:u=>(e=>{ee.value=!1,_.value=e,ie()})(e),key:u},{default:r((()=>[N(M(e),1)])),_:2},1032,["onClick"])))),128))])),_:2},1024)])),_:2},1024)):I("",!0)])),_:2},1032,["class"]))])),_:2},1032,["id","class"])))),128)),f(C)?(t(),n(i,{key:0,class:S({self:!0})},{default:r((()=>[a(D,{class:"message msg-loading"},{default:r((()=>[O("span",{class:"ai-loading"})])),_:1})])),_:1})):I("",!0)])),_:1})])),_:1},8,["show"])])),_:1},8,["scroll-top"]),"idle"!==re.value?(t(),n(i,{key:0,class:S(["vio_container",re.value])},{default:r((()=>[a(i,{class:"record-tip"},{default:r((()=>[N(M(Fe.value),1)])),_:1}),a($r,{background:he.value},null,8,["background"])])),_:1},8,["class"])):(t(),n(i,{key:1,class:"input-area"},{default:r((()=>[a(i,{class:"areatext"},{default:r((()=>[ne.value?(t(),n(i,{key:1,class:"input_vio",onTouchstart:pe,onTouchmove:Ee,onTouchend:ge,onTouchcancel:Ce,type:"default"},{default:r((()=>[N(" 按住说话 ")])),_:1})):(t(),n(A,{key:0,modelValue:f(_),"onUpdate:modelValue":u[0]||(u[0]=e=>R(_)?_.value=e:null),"placeholder-class":"inputplaceholder",class:"input",onConfirm:ie,disabled:f(C),"adjust-position":!1,placeholder:"请输入您的职位名称、薪资要求、岗位地址"},null,8,["modelValue","disabled"])),a(i,{class:"btn-box",onClick:fe},{default:r((()=>[a(s,{class:S(["send-btn",{"add-file-btn":ue.value}]),src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAAJ1BMVEUAAABcXGhaWmhZWWheXmhZWWhaWmhaWmhbW3BcXGZZWWhZWWZaWmjw9rxSAAAADHRSTlMAQN+QIL9wMBBQ0HAlhrLnAAAAU0lEQVQoz2OgKXA2wSKoc6gBQ4zxzBmBYS3IUSgIBNJnziQKggBE0OkMCggAC9qgCh7EJngSt3YOsPliUIvEB4PfaSfIjk2QIeYUAybgFGCgJQAAElBdZEj2cZAAAAAASUVORK5CYII="},null,8,["class"])])),_:1}),f(_)&&!f(C)?(t(),n(i,{key:2,class:"btn-box purple",onClick:ie},{default:r((()=>[a(s,{class:"send-btn",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAmBAMAAABE2sQuAAAALVBMVEUAAAD///////////////////////////////////////////////////////+hSKubAAAADnRSTlMA30Agf4Bg77+Qz6+fEPtt3TAAAAB/SURBVCjP5cyxDUBQFIXhKyLRK3RiBBYQI5hAtFbR28sKXkRD7gwOnnclV0vjlH++HPp+ftfomPOkYcJcasigGoJqCKqgUIExL5YKHHM29UkFRh6b4KQCM0S6Uw+Q9ghqrlgAHhF0dRLwiKCz++wHG6lNSWYj9scYPkU/rujFbS+WYGWn9pt3AAAAAElFTkSuQmCC"})])),_:1})):f(C)||ne.value?f(C)?(t(),n(i,{key:5,class:"btn-box"},{default:r((()=>[a(s,{class:"send-btn",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAmBAMAAABE2sQuAAAAKlBMVEUAAABaWmhcXGhcXGhaWmhaWmhbW2dZWWhZWWhaWmlcXGdaWmhQUHBaWmisrP6dAAAADXRSTlMA30Agf2Dvv5DPr58QfZJWpwAAAH9JREFUKM/lzEEKQFAUheErygKUmbIEFqBsQBnairmF2YIXE7p7cXjPu+qaMnGGf1+Hvl/YtzqWPGuYMdcaMqiGoBqCKihUYMqrowKnkk1jqcAkYBNZKrBApDsNAOmIoOaKFeAZQTcvAc8IuvjPYXSRupxkLmJ/jPFTDNOaXtwOT1pZgHfMFgkAAAAASUVORK5CYII="})])),_:1})):(t(),n(i,{key:4,class:"btn-box",onClick:me},{default:r((()=>[a(s,{class:"send-btn",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAqCAMAAADyHTlpAAAAM1BMVEUAAABaWmhaWmhcXGhaWmhaWmhaWmhaWmlcXHBaWmhaWmdbW2dZWWhaWmhaWmhaWmlaWmhBIFNaAAAAEHRSTlMA3yBAgKBgMBDQcO+/kFCvpjR6BgAAAPZJREFUOMvtkkuOxCAMRAsw/0Bz/9OOG8uMiEQWs5qW+q3eokJMGXz5H6RCTiRQx8QtKcFiEesYo7FYw5ITkC4W847QWyIUDjAO8FNoBpgLCFPMOnRMPCCSgSymH4+4RxtQn6NrgABcUwpA+h+3DyC3IRUPprHkdS2WRddCXHA3sSEk/I3o7E2SiyoOv9gss0rzpLP6xFLqnPWwgqLNNy3ywqHXS1urcjpjz9sytxXouKnuK/DnN4A+A7ICuURSmcfWjoWl1kWKL1J4WNLI4sNxL6PkV8QDfWw4nDF7NOPMuIEzdU8anCl7lPAAmbGoBc9Y5aMX/wNfRReld+9pFAAAAABJRU5ErkJggg=="})])),_:1})):(t(),n(i,{key:3,class:"btn-box",onClick:me},{default:r((()=>[a(s,{class:"send-btn",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACYAAAAmCAMAAACf4xmcAAAANlBMVEUAAABaWmhYWGhZWWhZWWhcXGhaWmdaWmhaWmhbW2laWmhgYGheXnBZWWhbW2ZaWmhaWmhaWmgjawFRAAAAEXRSTlMA3yC/cEDvz2AwgCAQoFCwkJugx5UAAADvSURBVDjLvVNJEsMgDAtbCGFp+P9nC6W1UhjMqdUpMyiSJcP2D5xZuDXL5Jz3Nc/lAuGXvFh5am2rKk8vaUHU8cLk1Ct7IEU+Ga83LzJyL6uWUDJy+pbwUUuZ1l9gMJ2cTQe5fdIJaQRyjf1+zE1O06D2uy9bxk1tOtJINXZXBLWUqgb8+xvxKVZSD7KNCchG00TDz50plWRGU8gV3o58jy4CkI6AHbVVXszV9NiWQr0DIiUIFH6Ew+U+5qv3ooq1M0uRBygYGcazKlztE7ojNFVwck9mkw69jGJjFGaybsdxxUqw5ODAYqGtktvP8AQCnhGxHDOUygAAAABJRU5ErkJggg=="})])),_:1}))])),_:1}),a(Wr,{show:ue.value},{default:r((()=>[a(i,{class:"area-file"},{default:r((()=>[a(i,{class:"file-card",onClick:Ae},{default:r((()=>[a(s,{class:"card-img",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADgAAAA4CAMAAACfWMssAAAAM1BMVEUAAABAQEBDQ0NDQ0NAQEBDQ0NDQ0NCQkJDQ0NAQEBCQkJDQ0NDQ0NDQ0NAQEBDQ0NDQ0PkqmkrAAAAEHRSTlMAQO+fEL+AYJAg33DQsDBQaVjKqQAAATBJREFUSMfl1dlqxDAMBdAr2fKaxf//te2EDiTxFMuihYG5bwmc2PKi4E/jqzslZjVc2iXFK93ebolKGO+wakvkG1QXuV2KXAjvFJ9Jme3MSLjpI/QczbXJOH+4pU1necjUDElAbqYQnA0mLDZY0Iz5FXKKRLSnMgdLxDNUJmDyOCWoYQDgg3BjORrOxip4uMrnp10FBbjsrgOQNDDfq0qA5zFcga07XwhjGIG1n3weQw//4h3KCDJAHdyBdQQLEF9N3/0b5GNR+2UVzeJw/zGUIYz9OXGq7RAg83XADLghPAqq979cLspDHq4OSX2tcjk3/DpxkUFJZE0PhmhsHdXYrGSyPa6ViGJiXXvUxw7ZCsXmFgQbDPBsghmotgG/E4wOqGWOccVPchRWKwkeH5IvWC6H7EDJU5sAAAAASUVORK5CYII="}),a(D,null,{default:r((()=>[N("拍照上传")])),_:1})])),_:1}),a(i,{class:"file-card",onClick:u[1]||(u[1]=e=>Ae("album"))},{default:r((()=>[a(s,{class:"card-img",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAA6CAMAAADWZboaAAAAM1BMVEUAAABBQUFCQkJCQkJDQ0NDQ0NCQkJAQEBDQ0NDQ0NAQEBBQUFDQ0NDQ0NDQ0NDQ0NDQ0PKixYDAAAAEHRSTlMAoGDfv0CAIJDvEDDPcFCvkHJAYwAAAOxJREFUSMft1s2ugyAQhuEPhpkB1B7u/2pP2lhtUonMtAsXfXeSPIn8JIBfl68KtcFm0VfJpRki3uXUbJVpo9SM0VPemjleabbTvNJgp+EqNPMUyUWX+6cWB014tDionBwuomO67xYfsSJcAe7RUrsrnisezQd0H4kHUrCWerRRlnS4Kl16lrppgJvqToONJrjp4qdqoETl7X9HaOIKoHKe14E4SgVbGnNKfwsGacRbg1TgpQFeWtRNBV5K6qYBbqpumuCmNEJTZ67xtPCF6+rzq5nt9Pb5MwRTMVLFFpMFFsZLKvMoJKn4dfX+AWNcYpNOIX6YAAAAAElFTkSuQmCC"}),a(D,null,{default:r((()=>[N("相册上传")])),_:1})])),_:1}),a(i,{class:"file-card",onClick:de},{default:r((()=>[a(s,{class:"card-img",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAA0CAMAAAD/uJueAAAANlBMVEUAAABAQEBCQkJDQ0NCQkJAQEBAQEBCQkJDQ0NDQ0NERERCQkJCQkJDQ0NCQkJDQ0NDQ0NDQ0N1cxmyAAAAEXRSTlMAIN/vXzAQgKC/f9BAkHCvUHt0dlUAAAGcSURBVEjH1ZTRgoQgCEUzTHHVKf//Z9dxINxYs9e5T1Qegbi6fK+cxbjG3Zr7VQHQUeihkPAO2usC36IDimjdhgSWqv0d/ZQ/gu2OKF4ICBgoMo8I8O+2jG8P4T8iX4iVN06traQAWpd7gmUljSawRi8iriW7IWE1sZhSZedEr9Bq1sTeE/rXoCZiLXYDIXp56n9ObK4zEo4JMN2X1yeKNLEqqb4SBthOshe4lq1UHRfCVGJVBA99l7nMiXiGOCCKFYLqZTtQhxsMiN41tkgSWqcJyS4hdYL83k0JQ0l4Ci7SUdHEcYaSxHIgxMbLlB0csHkvBAwIyvkewzolWJkmldp7RYiB9LF5SZLTA+YMhaB6DsrGjpVlEnZi03m6PxTBvWrEFk6zXQh1RQC9ctC+hkx36YDgk5b5YIusIkTILbg4JXp/J+qaBB3hFyUnf8rlDxEMJSVCKfQDySHktEyIJfF9wJoRfHHA8Zw4D2MWq1q4I8S2ZcXk6gbJQ2FiwoimBI9ExG6bMFhYMpo5dFYHIS0PlTyGHX1yy3fqF0UTNcAVqgonAAAAAElFTkSuQmCC"}),a(D,null,{default:r((()=>[N("文件上传")])),_:1})])),_:1})])),_:1})])),_:1},8,["show"]),te.value.length?(t(),n(i,{key:0,class:"area-uploadfiles"},{default:r((()=>[a(c,{class:"uploadfiles-scroll","scroll-x":"true"},{default:r((()=>[a(i,{class:"uploadfiles-list"},{default:r((()=>[(t(!0),F(h,null,m(te.value,((e,u)=>(t(),n(i,{class:S(["file-uploadsend",{"file-border":le(e.type)}]),key:u},{default:r((()=>[le(e.type)?(t(),n(s,{key:0,class:"file-iconImg",onClick:u=>De(e),src:e.url},null,8,["onClick","src"])):(t(),n(i,{key:1,class:"file-doc",onClick:u=>De(e)},{default:r((()=>[a(i,{style:{width:"100%"}},{default:r((()=>[a(i,{class:"filename-text"},{default:r((()=>[N(M(e.name),1)])),_:2},1024),a(i,{class:"filename-size"},{default:r((()=>[N(M(e.size),1)])),_:2},1024)])),_:2},1024),a(Xr,{type:e.type},null,8,["type"])])),_:2},1032,["onClick"])),a(i,{class:"file-del",catchtouchmove:"true",onClick:u=>(e=>{T({content:"确认删除文件?",success(u){u.confirm&&(te.value=te.value.filter((u=>u.url!==e.url)),te.value.length||_.value===se.uploadFileTips&&(_.value=""),o.msg("附件删除成功"))}})})(e)},{default:r((()=>[a(d,{type:"closeempty",color:"#4B4B4B",size:"10"})])),_:2},1032,["onClick"])])),_:2},1032,["class"])))),128))])),_:1})])),_:1})])),_:1})):I("",!0)])),_:1}))])),_:1})}}},[["__scopeId","data-v-c6407f80"]]),ta=e({__name:"chat",setup(e){const{$api:s,navTo:i,insertSortData:o}=B("globalFunction"),{isTyping:c,tabeList:A,chatSessionID:d}=v(Z()),E=D(!1);D(!1);const g=D(""),C=D(null),_=u((()=>{if(!g.value)return A.value;const e=A.value.filter((e=>!e.isTitle&&e.title.includes(g.value))),[u,t]=s.insertSortData(e);return u}));P((()=>{})),G((()=>{p((()=>{var e;null==(e=C.value)||e.colseFile()}))}));const y=()=>{E.value=!E.value},k=()=>{s.msg("新对话"),Z().addNewDialogue()};return(e,u)=>{const s=l,i=j,o=w(x("uni-icons"),H),D=q,c=b;return t(),n(s,{class:"container"},{default:r((()=>[E.value?(t(),n(s,{key:0,class:"overlay",onClick:y})):I("",!0),a(s,{class:S(["drawer",{open:E.value}])},{default:r((()=>[a(s,{class:"drawer-content"},{default:r((()=>[a(s,{class:"drawer-title"},{default:r((()=>[N("AI+")])),_:1}),a(D,{"scroll-y":"","show-scrollbar":!1,class:"chat-scroll"},{default:r((()=>[a(s,{class:"drawer-input-content"},{default:r((()=>[a(i,{class:"drawer-input",type:"text",modelValue:g.value,"onUpdate:modelValue":u[0]||(u[0]=e=>g.value=e),"placeholder-class":"input-placeholder",placeholder:"请输入搜索历史对话"},null,8,["modelValue"]),a(o,{class:"input-search",type:"search",size:"20"})])),_:1}),(t(!0),F(h,null,m(_.value,((e,u)=>(t(),n(s,{class:"drawer-rows",onClick:u=>(e=>{var u;e.sessionId&&(null==(u=C.value)||u.closeGuess(),Z().changeDialogue(e),y(),p((()=>{var e;null==(e=C.value)||e.scrollToBottom()})))})(e),key:e.id},{default:r((()=>[e.isTitle?(t(),n(s,{key:1,class:"drawer-row-title"},{default:r((()=>[N(M(e.title),1)])),_:2},1024)):(t(),n(s,{key:0,class:S(["drawer-row-list",{"drawer-row-active":e.sessionId===f(d)}])},{default:r((()=>[N(M(e.title),1)])),_:2},1032,["class"]))])),_:2},1032,["onClick"])))),128))])),_:1})])),_:1})])),_:1},8,["class"]),a(s,{class:S(["main-content",{shift:E.value}])},{default:r((()=>[O("header",{class:"head"},[a(s,{class:"main-header"},{default:r((()=>[a(c,{src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAkBAMAAAA5nnQEAAAAJFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmWAJHAAAAC3RSTlMAQCC/3++woJ8wEFEO9UcAAABSSURBVCjPYxiyYKUgOhCASDB570YHWxTAMsy7MYEBWIYVi4wDTj0NEHuyMSQ2KzCMAvIBkzWucGRHiy8EYEGLLwRgxqmHyRuRLtCllCBgsEUkALfuaZIAzMNIAAAAAElFTkSuQmCC",onClick:y}),a(s,{class:"title"},{default:r((()=>[N("青岛市岗位推荐")])),_:1}),a(c,{src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAMAAAC7IEhfAAAAM1BMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACjBUbJAAAAEHRSTlMA3yC/YICg7zDPcFBAkBCwv9GvYwAAAPpJREFUOMvdk9sOgyAMhjmUo+j6/k87obENbOCSJbvYd2FM+KT9sagfY3b4TNSITg2UPWkmGdoQEXWvRYsddiJmxKm49EI8c3j/qK/ee7iy0SbFMC0Hw4laf6AY/phJFKS+ZjWQXnfcqfmBYwPItUcAKFIZRk9S90XivUj5zFRMa1GKuaUoicr5gO1O5PV8I0qifxEji3U8t7m40czw9EzxiOjp/uFJWVVGkDkLZuJpalG2RB/fJHZY4QQOCa1dGwWnicAXQcyLQtUI9gS4FkHl0GlhPDmwTXC2s2w+JidG7KZB0lyUamvRGvWJGPLS4Z+ejLrneGinvuYJHpYYR7v40K0AAAAASUVORK5CYII=",onClick:k})])),_:1})]),a(s,{class:"chatmain-warpper"},{default:r((()=>[a(ua,{ref_key:"paging",ref:C},null,512)])),_:1})])),_:1},8,["class"])])),_:1})}}},[["__scopeId","data-v-613cbdaf"]]);export{ta as default}; diff --git a/unpackage/dist/build/web/assets/pages-index-index.DvjXu2Re.js b/unpackage/dist/build/web/assets/pages-index-index.DvjXu2Re.js deleted file mode 100644 index 8529671..0000000 --- a/unpackage/dist/build/web/assets/pages-index-index.DvjXu2Re.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as e,g as a,c as t,o as s,a as l,w as i,b as o,F as n,r,n as c,d as u,e as d,f as h,h as m,i as f,j as g,k as p,l as b,m as y,p as v,u as _,q as x,s as j,t as S,v as w,x as C,y as k,z as A,A as I,B as D,C as T,D as R,E as M,G as z,H as L,I as $,J as B,K as H,S as O}from"./index-DdiBakOJ.js";import{_ as X}from"./uni-icons.OqqMV__G.js";import{_ as N,a as P,b as E,s as V}from"./screening-job-requirements.BSt0qcms.js";import{_ as Q,a as U}from"./matchingDegree.C4MMzh2G.js";import{_ as F}from"./dict-Label.ot3xNx0t.js";import{_ as K}from"./expected-station.BpvqBSAB.js";import{_ as q}from"./custom-popup.ChzD6q8C.js";import{b as G}from"./BaseDBStore.RQrc3EQA.js";const W=e({props:{value:Array,column:{type:[String,Number],default:2},maxColumn:{type:[String,Number],default:5},columnSpace:{type:[String,Number],default:2},imageKey:{type:[String],default:"image"},hideImageKey:{type:[String],default:"hide"},seat:{type:[String,Number],default:2},listStyle:{type:Object}},data(){return{data:{list:this.value?this.value:[],column:this.column<2?2:this.column,columnSpace:this.columnSpace<=5?this.columnSpace:5,imageKey:this.imageKey,seat:this.seat},msg:0,listInitStyle:{"border-radius":"12rpx","margin-bottom":"20rpx","background-color":"#fff"},adds:[],isLoaded:!0,curIndex:0,isRefresh:!0,flag:!1,refreshDatas:[]}},computed:{w(){return 100/this.data.column-+this.data.columnSpace+"%"},m(){return(100-(100/this.data.column-+this.data.columnSpace).toFixed(5)*this.data.column)/(this.data.column-1)+"%"},s1(){return{...this.listInitStyle,...this.listStyle}}},created(){this.refresh()},methods:{loadImages(e=0){let t=0;const s=this.data.list.filter(((a,t)=>t>=e));for(let l=0;l{t++,t==s.length&&this.initValue(e)}})},refresh(){if(!this.isLoaded)return this.refreshDatas=this.value,!1;setTimeout((()=>{this.refreshDatas=[],this.isRefresh=!0,this.adds=[],this.data.list=this.value?this.value:[],this.data.column=this.column<2?2:this.column>=this.maxColumn?this.maxColumn:this.column,this.data.columnSpace=this.columnSpace<=5?this.columnSpace:5,this.data.imageKey=this.imageKey,this.data.seat=this.seat,this.curIndex=0;for(let e=1;e<=this.data.column;e++)this.data[`column_${e}_values`]=[],this.msg++;this.$nextTick((()=>{this.initValue(this.curIndex,"refresh==>")}))}),1)},columnValue(e){return this.data[`column_${e+1}_values`]},change(e){for(let a=0;a=0;l--)e[l][a]e[a]==t)),s[0]},getMinColumnHeight(){return new Promise((e=>{const a=[];for(let s=1;s<=this.data.column;s++){t().in(this).select(`#waterfalls_flow_column_${s}`).boundingClientRect((e=>{a.push({column:s,height:e.height})})).exec((()=>{this.data.column<=a.length&&e(this.getMin(a,"height"))}))}}))},async initValue(e,a){if(this.isLoaded=!1,e>=this.data.list.length||this.refreshDatas.length)return this.msg++,this.loaded(),!1;const t=await this.getMinColumnHeight(),s=this.data[`column_${t.column}_values`];this.data.list[e].column=t.column,s.push({...this.data.list[e],cIndex:s.length,index:e,o:0}),this.msg++},imgLoad(e,a){const t=e.index;e.o=1,this.$set(this.data[`column_${a}_values`],e.cIndex,JSON.parse(JSON.stringify(e))),this.initValue(t+1)},imgError(e,a){const t=e.index;e.o=1,e[this.data.imageKey]=null,this.$set(this.data[`column_${a}_values`],e.cIndex,JSON.parse(JSON.stringify(e))),this.initValue(t+1)},loaded(){if(this.refreshDatas.length)return this.isLoaded=!0,this.refresh(),!1;this.curIndex=this.data.list.length,this.adds.length?(this.data.list=this.adds[0],this.adds.splice(0,1),this.initValue(this.curIndex)):(this.data.list.length&&this.$emit("loaded"),this.isLoaded=!0,this.isRefresh=!1)},wapperClick(e){this.$emit("wapperClick",e)},imageClick(e){this.$emit("imageClick",e)}},watch:{value:{deep:!0,handler(e,a){setTimeout((()=>{this.$nextTick((()=>{if(this.isRefresh)return!1;if(this.isLoaded){if(e.length<=this.curIndex)return this.change(e);this.data.list=e,this.$nextTick((()=>{this.initValue(this.curIndex,"watch==>")}))}else this.adds.push(e)}))}),10)}},column(e){this.refresh()}}},[["render",function(e,a,t,v,_,x){const j=b,S=y;return s(),l(j,{class:"waterfalls-flow"},{default:i((()=>[(s(!0),o(n,null,r(_.data.column,((a,b)=>(s(),l(j,{key:b,class:"waterfalls-flow-column",id:`waterfalls_flow_column_${b+1}`,msg:_.msg,style:c({width:x.w,"margin-left":0==b?0:x.m})},{default:i((()=>[(s(!0),o(n,null,r(x.columnValue(b),((a,o)=>(s(),l(j,{class:u(["column-value",{"column-value-show":a.o}]),key:o,style:c([x.s1]),onClick:d((e=>x.wapperClick(a)),["stop"])},{default:i((()=>[1==_.data.seat?(s(),l(j,{key:0,class:"inner"},{default:i((()=>[h(e.$slots,"default",m(f(a)),void 0,!0)])),_:2},1024)):g("",!0),p(S,{class:u(["img",{"img-hide":1==a[t.hideImageKey]||1==a[t.hideImageKey]},{"img-error":!a[_.data.imageKey]}]),src:a[_.data.imageKey],mode:"widthFix",onLoad:e=>x.imgLoad(a,b+1),onError:e=>x.imgError(a,b+1),onClick:d((e=>x.imageClick(a)),["stop"])},null,8,["class","src","onLoad","onError","onClick"]),2==_.data.seat?(s(),l(j,{key:1,class:"inner"},{default:i((()=>[h(e.$slots,"default",m(f(a)),void 0,!0)])),_:2},1024)):g("",!0)])),_:2},1032,["class","style","onClick"])))),128))])),_:2},1032,["id","msg","style"])))),128))])),_:3})}],["__scopeId","data-v-6467e41e"]]),J=e({__name:"modifyExpectedPosition",props:{show:Boolean,jobList:Array},emits:["update:show"],setup(e,{emit:a}){const{$api:t,navTo:u,setCheckedNodes:d}=v("globalFunction"),{getUserResume:h}=_(),m=e,f=x(373),y=x(113),T=x(375),R=x(667),M=x(187.5),z=x(333.5);x(120),x([]);const L=a,$=x({}),B=j({jobTitleId:"",stations:[],visible:!1}),H=()=>{L("update:show",!1)};function O(){B.stations.length?B.visible=!0:t.createRequest("/app/common/jobTitle/treeselect",{},"GET").then((e=>{if($.value.jobTitleId){const a=$.value.jobTitleId.split(",").map((e=>Number(e)));d(e.data,a)}B.jobTitleId=$.value.jobTitleId,B.stations=e.data,B.visible=!0}))}function X(){t.createRequest("/app/user/resume",{jobTitleId:B.jobTitleId},"post").then((e=>{t.msg("完成"),B.visible=!1,h().then((()=>{initload()}))}))}function N(e){B.jobTitleId=e}function P(e){const a=Math.min(Math.max(15*m.jobList.length,130),.4*T.value),t=360/m.jobList.length,s=a+60*Math.random()-50,l=(t*e+20*Math.random()-10)*Math.PI/180;return{left:`calc(50% + ${Math.cos(l)*s}px)`,top:`calc(50% + ${Math.sin(l)*s}px)`,transform:"translate(-50%, -50%)"}}return S((()=>{$.value=_().userInfo,(()=>{const e=I();T.value=e.windowWidth,R.value=e.windowHeight,M.value=T.value/2,z.value=R.value/2-f.value/2})()})),(a,t)=>{const u=b,d=D,h=w(C("expected-station"),K),m=w(C("custom-popup"),q);return e.show?(s(),l(u,{key:0,class:"popup-container"},{default:i((()=>[p(u,{class:"popup-content"},{default:i((()=>[p(u,{class:"title"},{default:i((()=>[k("岗位推荐")])),_:1}),p(u,{class:"circle-content",style:c({height:2*f.value+"rpx"})},{default:i((()=>[p(u,{class:"tabs"},{default:i((()=>[p(u,{class:"circle",style:c({height:2*y.value+"rpx",width:2*y.value+"rpx"}),onClick:O},{default:i((()=>[k(" 搜一搜 ")])),_:1},8,["style"]),(s(!0),o(n,null,r(e.jobList,((e,a)=>(s(),l(u,{key:a,class:"tab",style:c(P(a)),onClick:a=>function(e){console.log(e)}(e)},{default:i((()=>[k(A(e.name),1)])),_:2},1032,["style","onClick"])))),128))])),_:1})])),_:1},8,["style"]),p(d,{class:"close-btn",onClick:H},{default:i((()=>[k("完成")])),_:1})])),_:1}),p(m,{"content-h":100,visible:B.visible,header:!1},{default:i((()=>[p(u,{class:"popContent"},{default:i((()=>[p(u,{class:"s-header"},{default:i((()=>[p(u,{class:"heade-lf",onClick:t[0]||(t[0]=e=>B.visible=!1)},{default:i((()=>[k("取消")])),_:1}),p(u,{class:"heade-ri",onClick:X},{default:i((()=>[k("确认")])),_:1})])),_:1}),p(u,{class:"sex-content fl_1"},{default:i((()=>[p(h,{search:!1,onOnChange:N,station:B.stations,max:5},null,8,["station"])])),_:1})])),_:1})])),_:1},8,["visible"])])),_:1})):g("",!0)}}},[["__scopeId","data-v-718c8687"]]),Y={cleanData:e=>Array.isArray(e)?e.filter((e=>Number(e.minSalary)>0&&Number(e.maxSalary)>0)):[],analyze:(e,a={verbose:!1})=>{if(!Array.isArray(e))throw new Error("Invalid jobs data format");const t=Y.cleanData(e);if(0===t.length)return{warning:"No valid job data available"};const s={salary:Y.analyzeSalaries(t),categories:Y.countCategories(t),experience:Y.analyzeExperience(t),areas:Y.analyzeAreas(t)};return a.verbose&&Y.printResults(s),s},analyzeSalaries:e=>{const a=e.reduce(((e,a)=>(e.totalMin+=a.minSalary,e.totalMax+=a.maxSalary,e.highPay+=a.maxSalary>=1e4?1:0,e)),{totalMin:0,totalMax:0,highPay:0});return{avgMin:Math.round(a.totalMin/e.length),avgMax:Math.round(a.totalMax/e.length),highPayRatio:Math.round(a.highPay/e.length*100)}},countCategories:e=>e.reduce(((e,a)=>(e[a.jobCategory]=(e[a.jobCategory]||0)+1,e)),{}),analyzeExperience:e=>e.reduce(((e,a)=>{const t=a.experIenceLabel||"未知";return e[t]=(e[t]||0)+1,e}),{}),analyzeAreas:e=>e.reduce(((e,a)=>{const t=a.jobLocationAreaCodeLabel||"未知";return e[t]=(e[t]||0)+1,e}),{}),printResults:e=>{console.log("【高薪岗位分析】"),console.log(`- 平均月薪范围:${e.salary.avgMin}k ~ ${e.salary.avgMax}k`),console.log(`- 月薪≥10k的岗位占比:${e.salary.highPayRatio}%`),console.log("\n【热门岗位类别】"),console.log(Object.entries(e.categories).sort(((e,a)=>a[1]-e[1])).map((([e,a])=>`- ${e} (${a}个)`)).join("\n")),console.log("\n【经验要求分布】"),console.log(Object.entries(e.experience).map((([e,a])=>`- ${e}: ${a}个`)).join("\n")),console.log("\n【工作地区分布】"),console.log(Object.entries(e.areas).sort(((e,a)=>a[1]-e[1])).map((([e,a])=>`- ${e}: ${a}个`)).join("\n"))},_mergeAllStats:e=>{const a={};return Object.entries(e.categories).forEach((([e,t])=>{a[`岗位:${e}`]=t})),Object.entries(e.areas).forEach((([e,t])=>{a[`地区:${e}`]=t})),Object.entries(e.experience).forEach((([e,t])=>{a[`经验:${e}`]=t})),a},printUnifiedResults:(e,a={log:!1})=>{const t=Y._mergeAllStats(e),s=Object.entries(t).sort(((e,a)=>a[1]-e[1]));return a.log&&(console.log("【全维度排序分析】"),console.log(s.map((([e,a])=>`- ${e}: ${a}个`)).join("\n"))),s}};const Z=new class{constructor(){this.conditions={},this.askHistory=new Map,this.cooldown=3e5}updateConditions(e){this.conditions=e}getCurrentTime(){return Date.now()}getNextQuestion(){const e=this.getCurrentTime(),a=Object.entries(this.conditions).sort(((e,a)=>a[1]-e[1]));for(const[t,s]of a){const a=this.askHistory.get(t);if(!a||e-a>=this.cooldown)return this.askHistory.set(t,e),t}return null}},ee=T("indexedDB",(()=>{const e=x("record"),a=x(200);return{addRecord:async function(t){return await G.db.getRecordCount(e.value)>=a.value&&(console.log(`⚠数据超过 ${a.value} 条,删除最早的一条...`),await G.db.deleteOldestRecord(e.value)),G.isDBReady||await G.initDB(),await G.db.add(e.value,t)},getRecord:async function(){return G.isDBReady||await G.initDB(),await G.db.getAll(e.value)},JobParameter:function(e){const a=R().dictLabel("experience",e.experience),t=R().dictLabel("area",e.jobLocationAreaCode);return{jobCategory:e.jobCategory,jobTitle:e.jobTitle,minSalary:e.minSalary,maxSalary:e.maxSalary,experience:e.experience,experIenceLabel:a,jobLocationAreaCode:e.jobLocationAreaCode,jobLocationAreaCodeLabel:t,createTime:Date.now()}},analyzer:function(e){const a=Y.analyze(e);return{result:a,sort:Y.printUnifiedResults(a)}}}})),ae=e({__name:"index",setup(e){const{$api:a,navTo:t,vacanciesTo:c,formatTotal:d}=v("globalFunction"),{userInfo:h}=M(_());R();const m=ee(),f=x(null),S=x(null),I=j({tabIndex:"all",search:""}),D=x([]),T=j({page:0,total:0,maxPage:2,pageSize:10,search:{order:0}}),K=x(""),q=x(!1),G=x(!1),Y=x([{name:"销售顾问",highlight:!0},{name:"销售管理",highlight:!0},{name:"销售工程师",highlight:!0},{name:"算法工程师",highlight:!1},{name:"生产经理",highlight:!1},{name:"市场策划",highlight:!1},{name:"商务服务",highlight:!1},{name:"客服",highlight:!1},{name:"创意总监",highlight:!1}]);function ae(e){T.search={order:T.search.order};for(const[a,t]of Object.entries(e))T.search[a]=t.join(",");re("refresh")}function te(e){T.search.order=e.value,re("refresh")}function se(){S.value.change("loading"),"all"===I.tabIndex?ne():re()}function le(){console.log("jobs"),G.value=!0}function ie(e){I.tabIndex=e,D.value=[],"all"===e?(T.search={},K.value="",ne("refresh")):(T.search.jobTitle=_().userInfo.jobTitle[e],K.value="",re("refresh"))}function oe(){I.tabIndex="-1",T.search={jobTitle:K.value},re("refresh")}function ne(e="add"){"refresh"===e&&(D.value=[],f.value&&f.value.refresh());let t={pageSize:T.pageSize,sessionId:_().seesionId,...T.search},s={recommend:!0,jobCategory:"",tip:"确认你的兴趣,为您推荐更多合适的岗位"};a.createRequest("/app/job/recommend",t).then((a=>{const{data:t,total:l}=a;T.total=0,"add"===e?m.getRecord().then((e=>{if(e.length){const a=m.analyzer(e),{sort:l,result:i}=a,o=Object.fromEntries(l.filter((e=>e[1]>1)));Z.updateConditions(o);const n=Z.getNextQuestion();n&&(s.jobCategory=n,t.unshift(s))}const a=ce(t);D.value.push(...a)})):D.value=ce(t),t.length{const{rows:t,total:s}=a;if("add"===e){const e=T.pageSize*(T.page-1),a=D.value.length,s=ce(t);D.value.splice(e,a,...s)}else D.value=ce(t);T.total=a.total,T.maxPage=Math.ceil(T.total/T.pageSize),t.length({...e,image:N,hide:!0})))}return z((()=>{ne("refresh")})),(e,a)=>{const v=b,_=H,x=w(C("uni-icons"),X),j=O,R=w(C("latestHotestStatus"),P),M=y,z=w(C("Salary-Expectation"),Q),Z=w(C("matchingDegree"),U),ee=w(C("custom-waterfalls-flow"),W),ne=w(C("loadmore"),E);return s(),l(v,{class:"app-container"},{default:i((()=>[p(v,{class:"index-AI"},{default:i((()=>[k("AI+就业服务程序")])),_:1}),p(v,{class:"index-option"},{default:i((()=>[p(v,{class:"option-left"},{default:i((()=>[p(v,{class:"left-item",onClick:a[0]||(a[0]=e=>L(t)("/pages/nearby/nearby"))},{default:i((()=>[k("附近")])),_:1}),p(v,{class:"left-item",onClick:a[1]||(a[1]=e=>L(t)("/packageA/pages/choiceness/choiceness"))},{default:i((()=>[k("精选")])),_:1}),p(v,{class:"left-item"},{default:i((()=>[k("职业图谱")])),_:1})])),_:1}),p(v,{class:"option-right"},{default:i((()=>[p(_,{class:"uni-input right-input","adjust-position":"false","confirm-type":"search",modelValue:K.value,"onUpdate:modelValue":a[2]||(a[2]=e=>K.value=e),onConfirm:oe},null,8,["modelValue"]),p(x,{class:"iconsearch",color:"#FFFFFF",type:"search",size:"20",onClick:oe})])),_:1})])),_:1}),p(v,{class:"tab-options"},{default:i((()=>[p(j,{"scroll-x":!0,"show-scrollbar":!1,class:"tab-scroll"},{default:i((()=>[p(v,{class:"tab-op-left"},{default:i((()=>[p(v,{class:u(["tab-list",{tabchecked:"all"===I.tabIndex}]),onClick:a[3]||(a[3]=e=>ie("all"))},{default:i((()=>[k(" 全部 ")])),_:1},8,["class"]),(s(!0),o(n,null,r(L(h).jobTitle,((e,a)=>(s(),l(v,{class:u(["tab-list",{tabchecked:I.tabIndex===a}]),key:a,onClick:e=>ie(a)},{default:i((()=>[k(A(e),1)])),_:2},1032,["class","onClick"])))),128))])),_:1})])),_:1}),p(v,{class:"tab-op-right"},{default:i((()=>[p(x,{type:"plusempty",style:{"margin-right":"10rpx"},size:"20",onClick:le}),p(v,{class:"tab-recommend"},{default:i((()=>[p(R,{onConfirm:te})])),_:1}),p(v,{class:"tab-filter",onClick:a[4]||(a[4]=e=>q.value=!0)},{default:i((()=>[$(p(v,{class:"tab-number"},{default:i((()=>[k(A(L(d)(T.total)),1)])),_:1},512),[[B,T.total]]),p(M,{class:"image",src:N})])),_:1})])),_:1})])),_:1}),p(j,{"scroll-y":!0,class:"falls-scroll",onScrolltolower:se},{default:i((()=>[p(v,{class:"falls"},{default:i((()=>[p(ee,{ref_key:"waterfallsFlowRef",ref:f,value:D.value},{default:i((e=>[e.recommend?(s(),l(v,{key:1,class:"item"},{default:i((()=>[p(v,{class:"recommend-card"},{default:i((()=>[p(v,{class:"card-content"},{default:i((()=>[p(v,{class:"recommend-card-title"},{default:i((()=>[k("在找「"+A(e.jobCategory)+"」工作吗?",1)])),_:2},1024),p(v,{class:"recommend-card-tip"},{default:i((()=>[k(A(e.tip),1)])),_:2},1024),p(v,{class:"recommend-card-controll"},{default:i((()=>[p(v,{class:"controll-yes",onClick:a=>{return t=e,void console.log(t);var t}},{default:i((()=>[k("是的")])),_:2},1032,["onClick"]),p(v,{class:"controll-no"},{default:i((()=>[k("不是")])),_:1})])),_:2},1024)])),_:2},1024)])),_:2},1024)])),_:2},1024)):(s(),l(v,{key:0,class:"item"},{default:i((()=>[p(v,{class:"falls-card",onClick:a=>function(e){if(e.jobCategory){const a=m.JobParameter(e);m.addRecord(a)}t(`/packageA/pages/post/post?jobId=${btoa(e.jobId)}`)}(e)},{default:i((()=>[p(v,{class:"falls-card-title"},{default:i((()=>[k(A(e.jobTitle),1)])),_:2},1024),p(v,{class:"falls-card-pay"},{default:i((()=>[p(v,{class:"pay-text"},{default:i((()=>[p(z,{"max-salary":e.maxSalary,"min-salary":e.minSalary,"is-month":!0},null,8,["max-salary","min-salary"])])),_:2},1024),e.isHot?(s(),l(M,{key:0,class:"flame",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAkCAMAAABCOMFYAAAA1VBMVEUAAAD9ZRf/dBD8XRT/aQj6Whj6WRz7XBn6UyH+aQb/cgH/aAj3Syz9Ywz5VB/6Vx71RTP/73L1RDb/iwD/gAD1SDD/fQD/cAH1Qzf/kAD8XRT/awL/pBH/8Xb/1lP7XBf/bAH/4mP/lwD0QzX/tCX/mAD/vzX/fQD/cgD1RDb/lgD/mQD/jwD/8Xb/dwD9YQ//bwD/fwD/aAX/hwD7Vxv4Tyf3SS71QzX/lgH/qib/5Wf/jwH/2lz/0E3/szD/wUr/ykL/jhL/oxH/62/+kyn/ox7/mR5/8BC9AAAALXRSTlMAIBCAn99fQO/v79+/v1Aw79/f39/Pz7evkI9v7s/Pz8+/v5+fn4+PgH9wUDDM0YLoAAABi0lEQVQ4y3XT6XKCMBQF4ESoS21rbd3tvm8xQKCyutv3f6SeS1Bw1PNHZ745NxeGsDy9cbtX5uxI+OUYeT7mn2PK1REuXf4iR7kNRM4O65mHgCsHterpHCxXXIrnetXSAT1xs3iNfTRlGuILVsgFrTGAbLxcRNdgzJDSSUNeWJpXodzJsiJvFJeRBjMdx0JG06kFzrHsSmlwGGEsVpblnO9UpTkkGo2mQszxr7vFBtCpmWSjQAiBH8ukkff0SgxX4shTQhWSIqec8bocQM9RTafaNqqYbBM/1PDYHMeiqtGOSSc2MVbDroyhmqESlFiBtZ5A07kwtYZROWfSDFWgdTnXDOWsvtWF0AmV0mWoicGESeQvM0425RIbUpXGBv5MZAlUqjV8ploTES4SQL63ZdHr7qaDY1HMX1ouQytUjcIdnZDWOUPe9zWg0R/6grSU8pMdXUM7TIdfR35QxDBSqsXZln0/Lh4bqY5GPbzvL/KTZ37U370N/PUm2eLTz/7t/X57vG02716+8t4/9HR08GZreH4AAAAASUVORK5CYII="})):g("",!0)])),_:2},1024),e.education?(s(),l(v,{key:0,class:"falls-card-education"},{default:i((()=>[p(F,{dictType:"education",value:e.education},null,8,["value"])])),_:2},1024)):g("",!0),e.experience?(s(),l(v,{key:1,class:"falls-card-experience"},{default:i((()=>[p(F,{dictType:"experience",value:e.experience},null,8,["value"])])),_:2},1024)):g("",!0),p(v,{class:"falls-card-company"},{default:i((()=>[k(A(e.companyName),1)])),_:2},1024),p(v,{class:"falls-card-company"},{default:i((()=>[k(" 青岛 "),p(F,{dictType:"area",value:e.jobLocationAreaCode},null,8,["value"])])),_:2},1024),p(v,{class:"falls-card-pepleNumber"},{default:i((()=>[p(v,null,{default:i((()=>[k(A(e.postingDate||"发布日期"),1)])),_:2},1024),p(v,null,{default:i((()=>[k(A(L(c)(e.vacancies)),1)])),_:2},1024)])),_:2},1024),p(v,{class:"falls-card-matchingrate"},{default:i((()=>[p(v,{class:""},{default:i((()=>[p(Z,{job:e},null,8,["job"])])),_:2},1024),p(x,{type:"star",size:"30"})])),_:2},1024)])),_:2},1032,["onClick"])])),_:2},1024))])),_:1},8,["value"]),p(ne,{ref_key:"loadmoreRef",ref:S},null,512)])),_:1})])),_:1}),p(V,{show:q.value,"onUpdate:show":a[5]||(a[5]=e=>q.value=e),onConfirm:ae},null,8,["show"]),p(J,{show:G.value,"onUpdate:show":a[6]||(a[6]=e=>G.value=e),jobList:Y.value},null,8,["show","jobList"])])),_:1})}}},[["__scopeId","data-v-8f5165b1"]]);export{ae as default}; diff --git a/unpackage/dist/build/web/assets/pages-login-login.9cW8csYq.js b/unpackage/dist/build/web/assets/pages-login-login.9cW8csYq.js deleted file mode 100644 index 141e154..0000000 --- a/unpackage/dist/build/web/assets/pages-login-login.9cW8csYq.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as a,o as e,a as s,w as t,k as l,e as o,f as c,M as n,N as u,l as d,p as f,u as i,D as r,q as A,s as b,G as p,v as F,x as v,n as _,H as g,y as k,b as m,r as C,F as T,O as x,m as w,B as y,P as h,Q as R,d as D,z as P}from"./index-DdiBakOJ.js";import{_ as z}from"./expected-station.BpvqBSAB.js";import"./uni-icons.OqqMV__G.js";const I=a({name:"tab",data:()=>({}),props:{current:{type:Number,default:0}}},[["render",function(a,f,i,r,A,b){const p=n,F=u,v=d;return e(),s(v,{class:"tab-container"},{default:t((()=>[l(v,{class:"uni-margin-wrap"},{default:t((()=>[l(F,{class:"swiper",current:i.current,circular:!1,"indicator-dots":!1,autoplay:!1,duration:500},{default:t((()=>[l(p,{onTouchmove:o((a=>!1),["stop"])},{default:t((()=>[c(a.$slots,"tab0",{},void 0,!0)])),_:3}),l(p,{onTouchmove:o((a=>!1),["stop"])},{default:t((()=>[c(a.$slots,"tab1",{},void 0,!0)])),_:3}),l(p,{onTouchmove:o((a=>!1),["stop"])},{default:t((()=>[c(a.$slots,"tab2",{},void 0,!0)])),_:3}),l(p,{onTouchmove:o((a=>!1),["stop"])},{default:t((()=>[c(a.$slots,"tab3",{},void 0,!0)])),_:3}),l(p,{onTouchmove:o((a=>!1),["stop"])},{default:t((()=>[c(a.$slots,"tab4",{},void 0,!0)])),_:3}),l(p,{onTouchmove:o((a=>!1),["stop"])},{default:t((()=>[c(a.$slots,"tab5",{},void 0,!0)])),_:3}),l(p,{onTouchmove:o((a=>!1),["stop"])},{default:t((()=>[c(a.$slots,"tab6",{},void 0,!0)])),_:3})])),_:3},8,["current"])])),_:3})])),_:3})}],["__scopeId","data-v-b9170ed9"]]),B=a({__name:"login",setup(a){const{statusBarHeight:o}=f("deviceInfo"),{$api:c,navTo:n}=f("globalFunction"),{loginSetToken:u,getUserResume:B}=i(),{getDictSelectOption:S,oneDictData:L}=r(),Q=A(0),O=[2,5,10,15,20,25,30,50,80,100],E=b({station:[],stationCateLog:1,ageList:[],lfsalay:[2,5,10,15,20,25,30,50],risalay:JSON.parse(JSON.stringify(O)),salayData:[0,0,0]}),M=b({sex:1,age:"0",education:"4",salaryMin:2e3,salaryMax:2e3,area:0,jobTitleId:""});function H(a){E.salayData=a.detail.value;const e=JSON.parse(JSON.stringify(O)),[s,t,l]=a.detail.value;E.risalay=e.slice(s,e.length),M.salaryMin=1e3*e[s],M.salaryMax=1e3*E.risalay[l]}function j(a){M.sex=a}function J(a){M.jobTitleId=a}function Y(){Q.value+=1}function N(){c.createRequest("/app/login",{username:"test",password:"test"},"post").then((a=>{c.msg("模拟帐号密码测试登录成功"),u(a.token).then((a=>{a.data.jobTitleId?(i().initSeesionId(),x({url:"/pages/index/index"})):Y()}))}))}function G(){c.createRequest("/app/user/resume",M,"post").then((a=>{c.msg("完成"),B(),x({url:"/pages/index/index"})}))}return p((a=>{S("age").then((a=>{E.ageList=a})),c.createRequest("/app/common/jobTitle/treeselect",{},"GET").then((a=>{E.station=a.data}))})),(a,c)=>{const n=d,u=w,f=y,i=h,r=R,A=F(v("expected-station"),z);return e(),s(n,{class:"container"},{default:t((()=>[l(n,{style:_({height:g(o)+"px"})},null,8,["style"]),l(I,{current:Q.value},{tab0:t((()=>[l(n,{class:"login-content"},{default:t((()=>[l(u,{class:"logo",src:"/app/assets/logo-Dqh0Ciz9.png"}),l(n,{class:"logo-title"},{default:t((()=>[k("就业")])),_:1})])),_:1}),l(n,{class:"btns"},{default:t((()=>[l(f,{class:"wxlogin",onClick:N},{default:t((()=>[k("登录")])),_:1}),l(n,{class:"wxaddress"},{default:t((()=>[k("青岛市公共就业和人才服务中心")])),_:1})])),_:1})])),tab1:t((()=>[l(n,{class:"tabtwo"},{default:t((()=>[l(n,{class:"tabtwo-top"},{default:t((()=>[l(n,{class:"color_FFFFFF fs_30"},{default:t((()=>[k("选择您的性别1/6")])),_:1}),l(n,{class:"color_D9D9D9"},{default:t((()=>[k("个人信息仅用于推送优质内容")])),_:1})])),_:1}),l(n,{class:"fl_box fl_justmiddle fl_1 fl_alstart"},{default:t((()=>[l(n,{class:"tabtwo-sex",onClick:c[0]||(c[0]=a=>j(1))},{default:t((()=>[l(u,{class:"sex-img",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALgAAAC4CAMAAABn7db1AAAAV1BMVEUAAAD////////////////////////////////////////////////////////////////xVc/0bNb3muP96vn2g9z4quf+9fz6v+393/b5ter71fP7yvB8rdp4AAAAEHRSTlMAIIDv379gQJ9wEM+QrzBQ2Ep0bQAABmRJREFUeNrUm9l2ozAQRAEJA7ZJShv7/3/nbA/KDDEjleTtPifxdafU3QfLRWbKz1PV9rWUAr8R8lLXbdU1H8WrUp6uvcQBl7r6fDX9pusFghB11xSvQdnVAlGI/lQWT6apalBcqie6n7015f6kujc1kulPBQlfbIEsyIeWvfTaGWgfpV62+MW7qf/Rfjt1n+3c3Lc9dgJ3Q/7VYV6uAR4h71P08xV353rO791IPADZvGG5/1Dl7YEXHPC6SY9sJvNkjNbqN9q5YZsRg+ieEZN1cOob3BIjf310TFajbqPNDDwwLh8SYYyLU/9BT48zP4lA7UF5MqiLxDlaIYxFeTKpVw/wXp2KQFvKPL/3aFQkA2Ge39tq5clb9Oqe3pOiWAjzrN6DIhkI84zeRtGYMPOX876T+Yn1zm8eNYlKwXrnNxcfEd6SOJcMQ+a9RaZOeWem2QKAXTdzNFYnBHA5B3pfEYC9bb2O+Itxux0qi3z7eYcQbs3LYcQ32OnGz+sRAXT5DuYQqO0ZdMIBDYm55IPi7OHvfB+YNVPMKz4oC3WeHbLEvKE3Kz2Tm+SCEJpj77NkC64tvQOPCECe0zshpgNvwnxID0sJouDemzUfk8Mi2YJbBDOzKa9Td0Jo5pU9C9lY0B3sVlzJDKJwXC+HOCe1cBgu4B7LvvMq6WRCH3YFbl8AwE/+ljxcGrGMZFbQphR82e/U0QzsP63kCw5Ht0LPSPYVtHzBcXSw+MYCT2TJW3Z+bCBY1T/MCKOiC77t5zXBSB6UfS8/sefKgcJxgduXXPKvSGHYPyN2BSfFN1BM1DDYL4k9QM7NFRQzLV5TRxMI6OLUvoJgzlRSQLwg8XdCj+cFbyRef03KO4mj+bqIv5N49TUpb3Q4UTNJgd4tGRRrylJf7noKIT6BYkvZHLrd9KFmNYXhxX1WBCIw91myBkQg/HPOcKY8ay2/1fuG2CGGWeVYVjZFn3Ef8hpRqBxZMWnjoI+POOAyZMXy796H/AMe8tFCNBP/8NF38k/Esar0kms+4v5z8gqRqPyP4DQiucafTcCkltzq5Gcz/W7DorLiEIVRqUmB/CmOaFzuB/sa0UQ2Ff/KfMksdRVh31YaRDOqvB9eacTzWXSIZ8j7ceGEeE5FhXhGlfMDWg2CqmhBsJDms1Z5Co62qMHg8l1C0GDoSfFVfYexhwFz9B2hPfXB/CFuwOkh+oL5AApZSFCM+tb1cBugzQfFiwtwWHULs43/WB/cL7fgEAVYpsPre9v6W8nO0+H1vQUs/xV//oVJWvypV1TvIg7zeG9enDfnvfOLwzzLG0Q7zPhVAx5RSKSxKIoJBPzkzP11Gp7Lj/buQEVxGAqj8J+kia21ehcZHXXf/zkXZCGLDtlOk4MV5jzBR7k6hTE3iragynE5nq22qMkWVPXQP25WX1RvLfqcT79ai3p5W9gy+ulsTfJKVtt8+sf1bI0adLB2XY4l+/Fm7drIWdMu168PW59u1rS9ZM27/D59/MM/fl6seZI6Q8pwAxolTQZEw6OknQHRcC8pGRANP0hyBkTD95IUDIiFBwn6dMLwmP8l3jgYPuQfITQOhm8kaMhZeJDuRQMi4ZNEDTkLT9I9Z0Ak3AmbFRQ+Fn4wWRkL95LEfCGycCdRs4LCR4maFRaelNta01i4k6hZQeGTcks/nr8qswXlSSm9r6wQ3s05hLpGeHqAb4M9t0a404xHvkJ4P+dY5Brhbs5B1BXC+zlHf9cId3MOW68Q3s9ZZbNGuFMOeNXC/uR7fd02WG0gvLQwa7DKWHjSQ8BLIgHvihuEqmLhrryKpyYUvqtZflQOhOflR8CwsPCNcsCwYHCv/7UdrSIK3tUssSuHwoOrWBtYjoUPygFjjsF3ygFjjsG7mmWk5VB45zS7fbAFMfDgGi/czbHwBKw4znFwL1FyFO4lSg7C0QXkIBxd+Q7C0SX7IBy91gCEoxdJoHDPXTlCwkNSoar3FhTe7SVIjsJHpxbtrBAB322xq6NIeL46ChgXsNGpZd7g8pj8XEj35lcAip/0uBFVAulhEJjzxhT8Vs/9XOX6zpfnNqcHn9l8LnXvMttPpWnVX4Dlxz5WqQsPG8/5can65ff9uzR996L/OLz8ov+/bYYYZqKn4eWP+qH9wcfi3HTTLq3lST+33wy+j3Hsgt0LXRen3qdDa/If7x6TfLRgjpsAAAAASUVORK5CYII="}),l(n,{class:"mar_top5"},{default:t((()=>[k("女")])),_:1}),1===M.sex?(e(),s(n,{key:0,class:"dot doted"})):(e(),s(n,{key:1,class:"dot"}))])),_:1}),l(n,{class:"tabtwo-sex",onClick:c[1]||(c[1]=a=>j(0))},{default:t((()=>[l(u,{class:"sex-img",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALgAAAC4CAMAAABn7db1AAAAY1BMVEUAAAD///////////////////////////////////////////////////////////////9HeOyjvPbo7v11mvFeie/R3fpSgO309/66zPiYs/WMqvOvxPfd5fyAovLG1flqkfB+2OiQAAAAEHRSTlMAIIDv379gQJ9wEM+QrzBQ2Ep0bQAABtNJREFUeNrtndm2oyAQRRWcjUkhzprh/7+y55GbFFCVBFf3fu91d1eOBSJixEx8ykTRpEki4SsyqdO0EGV+jEIlzg5NAg+oU3EKTT8vGwlWyLTMozCIy1SCE7LJ4ujN5CIFL2rxRvcKscbc31T3PAUyTRa9mEpIYCF5adljQ5tC8Sr1uIAv7E39m/bu1JFsE3hueywlPI3kjw4TXAN8qP6colcHeDqHit87T+AFJPkOy/0NwdsDa3hAuEkvJbwQWe4uJj847C4mnHE5JoAToHkm4S1I4jgqwIGA+qKLd0jmbt7hmLt6h2L+dm8AsVNvALFTbwCxU29n8wyCwWkkiiUEgzw6eCcQEA7zFl5v5Qn8oK4svQ8AEJK47fy8hC+EJA6ly4UZkriMHQIekjjUlcPIE5I4HvMcfhGSOOTIHf0fQQlJPKkcOmFI4o/DEsOfhCQOOUNH4afFxdMQ54StRcWhDG9u1SobcVmFdvPQKitxEPxXJt0bF7878hdAge6Ni0MRUsFbZS8OcTgFb5WLeBFMwf/2bh+LQxxIwQ1vQMRFGAU3vTFxWYUwaJreqDiIAGYppreFuHx/wU1vC/G/J4kNEOD0xsVTjkuT3xsXh4qeFH5vXPzPy7MGInRve/GUmBRebwdxyGkTcVZvJ3FBSgqrt5t4SkkKq7ejOMSEnsLp7SxeEkYfRm9X8V9ZkUCA7O0hLunrnHRvH3HIWZ5ATNe5XS/dF9Zlu54J3nbiP0Kegj/n7TKqv+mW62Tp7Sne0CI+LKO6RzdrC28/8e8hP3oGpB3VY9YB8/YV/9bJT+CBXkaF08+It7d45jdRmRbDEVU3vSniB69rsx2VPReNeHuJNx4zrPNNudEi3j7iyWdxcGNTzvTa9CaKg2tTmTrlwWh4k8VjtwFf94qBFujiJ6cB/zwyedPFM5duOLN508VFVNh7KzZvungRpSHlxF68sRbXnN508TSqGfrJbd3m4TPXbelGxJtJPLFdX77c7dHLMP01Rb8/tJ4ZxSXpEVP34S2DXu+NoROXuIzsgnJHe4A/wNUXLnGwE+8/DMkGD9AfTw4GIIKLY0HpNPavPMJCF0c74QIoundqLPziH+X1XkxQ8xEpOVUcuTJnQDDMuUtu0Q5Xwh83zLlKLvEBSJOKpkdSySkj52z2E3DgapYcGKjxSVZv3kKCC8tTenmKLo4PyIWJMvXmL0YnRW8kVqPg4Mj8jMuzQG/devoP3Zm/GRmBPQA6G3NvQEHTtgKZElvz3DiqNfL3lRx7VnghJPz+dEsDlSO2BDdy/MqaP+TY3qBJ/cUVfOiNqSWR2njKiV1XVp0MHYQuQCTFNulvPj0Fb+U9EBHYA/HWq1R4yIHICduCsPLM7CYzcTSO2OPCC1M76Hn7oUT3IHRe4z0ufgYSKfJInE+8453Zlr9tQtiVeP7bto89icsownYhdEFenA3+5ulqLKf4oVjFM3wz2cIzyZh4B6A4QrOy8YycA+uEvLbYMDnz/MWW9XZZWLx9qhXLyNHRfjgzKXhWRo7JyuS4ZIonBc/KjeNHnlmXhLLoFxXcY+H4mx2xqZhJwbNyVfSGqFmXshq7l8MnhmWo1SfieFKQ+UpHXiXWSjFOahPbl1A3RRiuqauPeMGj6l7Jp5GY0Jl3ZT+ObEveKVJEda84Z1iF/WuRgyJl9KIU57AZO7yI2inCM4mW8HAZLzhectwc96ZfmmbB8ZLj5rg3fcGzcDvKZlC4OT5foI+aZsHxxmIyIpUzN1fSW4ownc1eju/HWh47DD2yYcWZJHY+r6lF9lib6M5li5DXoGk1SewUqo5sEKK3wsThBCF8816/nI1sz8Z/k3uwNzkAOi833dfrT3l93YwNfEwd5eB5+FGL7LS+dd2tH5F95ATvpPI9bmpRBMjekPufYLfSvMczEBARRlUD2ZzfOyEcYkcz70neMiYeG9i+J99Qkg9q3Py8O3PApHdCPObk1zsWIJGwHEaqV+eYDEDA7RD1o4T7zL1buScgIWO+A3dbh3QPQCTjPOJYry/S5j+cWS/9C7Sfcxz2fHl4SbYTUHnaAeTTvPYf17odgM5zj3w/X5fu9luhb+s2TMDBSw7Zn/TwGa2Bj/1+1mCvH5IQ/+YnR9510GdyjKI9mtdxxMHrP2RU/dufjkLjEmRMLPpioDHZ+QfpdvwJwBckPc2jZ5H9oR5uMzGJn3WRSvFRSv5/ynXPH89lV5fipV9azpK9ZNsga4JugI/LXpOsKcWmt8fa1/rt3/uPs0Y65jot3/6h/+/kZSotpZvy7aX+i+NJpA9zkzSHLJRKmxzzUhRpWifye4WTJG0KkZ24lT8B0nOZgWyZ3w0AAAAASUVORK5CYII="}),l(n,{class:"mar_top5"},{default:t((()=>[k("男")])),_:1}),0===M.sex?(e(),s(n,{key:0,class:"dot doted"})):(e(),s(n,{key:1,class:"dot"}))])),_:1})])),_:1}),l(n,{class:"nextstep",onClick:Y},{default:t((()=>[k("下一步")])),_:1})])),_:1})])),tab2:t((()=>[l(n,{class:"tabtwo"},{default:t((()=>[l(n,{class:"tabtwo-top"},{default:t((()=>[l(n,{class:"color_FFFFFF fs_30"},{default:t((()=>[k("选择您的年龄断段2/6")])),_:1}),l(n,{class:"color_D9D9D9"},{default:t((()=>[k("个人信息仅用于推送优质内容")])),_:1})])),_:1}),l(n,{class:"fl_box fl_deri fl_almiddle"},{default:t((()=>[(e(!0),m(T,null,C(E.ageList,(a=>(e(),s(n,{class:D(["agebtn",{agebtned:a.value===M.age}]),key:a.value,onClick:e=>{return s=a.value,void(M.age=s);var s}},{default:t((()=>[k(P(a.label),1)])),_:2},1032,["class","onClick"])))),128))])),_:1}),l(n,{class:"fl_box fl_justmiddle"}),l(n,{class:"nextstep",onClick:Y},{default:t((()=>[k("下一步")])),_:1})])),_:1})])),tab3:t((()=>[l(n,{class:"tabtwo"},{default:t((()=>[l(n,{class:"tabtwo-top"},{default:t((()=>[l(n,{class:"color_FFFFFF fs_30"},{default:t((()=>[k("选择您的学历3/6")])),_:1}),l(n,{class:"color_D9D9D9"},{default:t((()=>[k("个人信息仅用于推送优质内容")])),_:1})])),_:1}),l(n,{class:"eduction-content"},{default:t((()=>[(e(!0),m(T,null,C(g(L)("education"),(a=>(e(),s(n,{class:D(["eductionbtn",{eductionbtned:a.value===M.education}]),onClick:e=>{return s=a.value,void(M.education=s);var s},key:a.value},{default:t((()=>[k(P(a.label),1)])),_:2},1032,["class","onClick"])))),128))])),_:1}),l(n,{class:"nextstep",onClick:Y},{default:t((()=>[k("下一步")])),_:1})])),_:1})])),tab4:t((()=>[l(n,{class:"tabtwo"},{default:t((()=>[l(n,{class:"tabtwo-top"},{default:t((()=>[l(n,{class:"color_FFFFFF fs_30"},{default:t((()=>[k("您期望的薪资范围4/6")])),_:1}),l(n,{class:"color_D9D9D9"},{default:t((()=>[k("个人信息仅用于推送优质内容")])),_:1})])),_:1}),l(n,{class:"salary"},{default:t((()=>[l(r,{"indicator-style":"height: 140rpx;",value:E.salayData,onChange:H,class:"picker-view"},{default:t((()=>[l(i,null,{default:t((()=>[(e(!0),m(T,null,C(E.lfsalay,((a,o)=>(e(),s(n,{class:"item",key:o},{default:t((()=>[l(n,{class:D(["item-child",{"item-childed":E.salayData[0]===o}])},{default:t((()=>[k(P(a)+"k ",1)])),_:2},1032,["class"])])),_:2},1024)))),128))])),_:1}),l(n,{class:"item-center"},{default:t((()=>[k("至")])),_:1}),l(i,null,{default:t((()=>[(e(!0),m(T,null,C(E.risalay,((a,o)=>(e(),s(n,{class:"item",key:o},{default:t((()=>[l(n,{class:D(["item-child",{"item-childed":E.salayData[2]===o}])},{default:t((()=>[k(P(a)+"k ",1)])),_:2},1032,["class"])])),_:2},1024)))),128))])),_:1})])),_:1},8,["value"])])),_:1}),l(n,{class:"fl_box fl_justmiddle"}),l(n,{class:"nextstep",onClick:Y},{default:t((()=>[k("下一步")])),_:1})])),_:1})])),tab5:t((()=>[l(n,{class:"tabtwo"},{default:t((()=>[l(n,{class:"tabtwo-top"},{default:t((()=>[l(n,{class:"color_FFFFFF fs_30"},{default:t((()=>[k("您期望的求职区域5/6")])),_:1}),l(n,{class:"color_D9D9D9"},{default:t((()=>[k("个人信息仅用于推送优质内容")])),_:1})])),_:1}),l(n,{class:"eduction-content"},{default:t((()=>[(e(!0),m(T,null,C(g(L)("area"),(a=>(e(),s(n,{class:D(["eductionbtn",{eductionbtned:a.value===M.area}]),key:a.value,onClick:e=>{return s=a.value,void(M.area=s);var s}},{default:t((()=>[k(P(a.label),1)])),_:2},1032,["class","onClick"])))),128))])),_:1}),l(n,{class:"nextstep",onClick:Y},{default:t((()=>[k("下一步")])),_:1})])),_:1})])),tab6:t((()=>[l(n,{class:"tabtwo sex-two"},{default:t((()=>[l(n,{class:"tabtwo-top mar_top25 mar_le25"},{default:t((()=>[l(n,{class:"color_FFFFFF fs_30"},{default:t((()=>[k("您的期望岗位6/6")])),_:1}),l(n,{class:"color_D9D9D9"},{default:t((()=>[k("个人信息仅用于推送优质内容")])),_:1})])),_:1}),l(n,{class:"sex-content fl_1"},{default:t((()=>[l(A,{onOnChange:J,station:E.station},null,8,["station"])])),_:1}),l(f,{class:"nextstep confirmStep",onClick:G},{default:t((()=>[k("完成")])),_:1})])),_:1})])),_:1},8,["current"])])),_:1})}}},[["__scopeId","data-v-b6f000c9"]]);export{B as default}; diff --git a/unpackage/dist/build/web/assets/pages-mine-mine.-YwdlJ99.js b/unpackage/dist/build/web/assets/pages-mine-mine.-YwdlJ99.js deleted file mode 100644 index 9a49e5d..0000000 --- a/unpackage/dist/build/web/assets/pages-mine-mine.-YwdlJ99.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as A,p as e,q as s,L as a,u as l,v as i,x as g,a as o,w as k,l as n,o as t,k as E,y as f,z as u,H as C,m as I}from"./index-DdiBakOJ.js";import{_ as r,a as c}from"./uni-popup.DSb2YJre.js";const Q=A({__name:"mine",setup(A){const{$api:Q,navTo:S}=e("globalFunction"),m=s({}),p=s({}),x=s(null);function U(){x.value.open()}function B(){x.value.close()}function D(){l().logOut()}a((()=>{m.value=l().userInfo,p.value=l().Completion}));return(A,e)=>{const s=n,a=I,l=i(g("uni-popup-dialog"),r),Q=i(g("uni-popup"),c);return t(),o(s,{class:"app-container"},{default:k((()=>[E(s,{class:"mine-AI"},{default:k((()=>[f("AI+就业服务程序")])),_:1}),E(s,{class:"mine-userinfo"},{default:k((()=>[E(s,{class:"userindo-head"},{default:k((()=>["0"===m.value.age?(t(),o(a,{key:0,class:"userindo-head-img",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAAApVBMVEUAAACf2fWg2vef1/fP4H3P336/3qWFrA6v29GZuirc5PDc0aHP33zL4Ia7z8y2z1faw5316eu81s+83vOnw1XyvHva4a30z4H4yZf71537zX783cX6x3Xw6O3r6O34x4vV4/C+5fnE4PL4+/ve8vv60KX86ur5wHP3unDw7fH51rn80ofu89PCzL+g2fbP4H386er3uXD7znd+pwH+/v633fP84MyXfRLjAAAALnRSTlMAgL9Av4DAz8/Av8BAz8/PwM/Pz8DP0M/AwNHPwN+goN/PoM/A37/Pv7ig38CgrnK3pQAABttJREFUeNrc11Fqg1AQhWHPzGNAJNBmCX3qD+3+F9eLNRgibZTozZ35d/Ax5wp2B+UuycYAsJJK3oXJXWb8k7XvcTdjbVLXZjeIuJgZsTlrZ2Yu47mauIsby8Jt7KoIblkyQk7slxGeookRnCLmAlPuGUEpbhyeebcs2jnqHMX5q1AUNyqmm32FXNXhRzEeFULirKl9ilhX6xJjbU1LnC21SxHbalXycgcoiQOUxAFK4gCF/ezeZ0kcYEkcYOHfxzUlcYCSOEBJHKAkDlASB/gmCA2X5CBgSRygID+Ej/MED2TMUgwLwJI4QBmGNeY5DgKWxAFed1jn0un9cxj6vmffqh3kfLp8T31NvQ1DpffueyEuBTH3URAzpq8wLu0zpx/qy2g1YSCIomR9FEQL1iRru08RsRBm8+D/f1oRLLdUdNLZuYuePzicO6uBBUR+49MlcD1gcSsCkIWShKABEUIVJYijBkQoKg0pyHK6Qwa+KoQgyKGLgOOKcSXOOUCfgW+U4B8EOW7Z5we8uycpmtUElFv3nVdQgnjMCmSFtWsSnsc+E02CQxB4WEVg4pekIXhgWbqJWxKeR5+5JuVB4GFfFlj5bKshvLtYFtUkuCxrVxoEbD2SNKxhQURn7SASnsDDPK5Q/qk+uYiA0cbCuiwE0cmAdiZIEggeCEIfF0RGE5MhCCeJuixCEEqSBU8EHvwk2FZgBekz4CWBCCtIOudKSQqW9TbpHKTN/6bgSBpSkE5EtpW2ZT+RnX4gcuFYZVvBfiKTSpQLsU4S8x+t5axhXThVEVkoJ2JfVpIfhoJt8UUmDQGxwrvVKCLmx3cQAZG/rWB8tJazDgSkGiKjtwg8QJsz95OXIgIPMJCv3fj67tRfwlsS99nyfrTgYY8yKnBEdA/QEt9fb5EveUh6FZFOFA7pJUQ6mUHLEAm2P/F3zuMs8xjSU4sgh85h2D6FSKdfue5yp8vxVFFkI529hoDYpj9l+pNsbCKjTUQkpv56Gl2UEmJsr8QoIjaR0SbyKUQ+Kop8t3dnrY0DQRCAddjWQUQwWvxm44uAYZk2aPP//9raxmxBpKjtds0w2t16yUMC4Ut1j0yOSX32mNoGMe1Ie/aY1rQj/zjEnT3GDeY/RDt/vUQ5ffkvGt327C37oJDs7C2fXiDhH4lrZ4TkLq7Z2vuBhD+3nC25EYLZimOy7BDMVhSTdYEkzhTMVhST5bRvYod+BVw7WzIjBJVEUkhq+tEbKomlEAPEayUfzprc9lNdHFxxHFnOvXiNyyaOZ8jrkIwL+XTWpIZf4fC377V7EZI7e5Y8x9LZkye3uBgkcBiSvA5pWZCWAMkikLzkSCl/alxzFp0BSRxTEt7hWDeb1TyHvRDMVngJHCxI4l5MS9hze6i35i1DPz+QlHtFQh1+rABBHEsS3uHoNzJ+rp9lbBifNvVw/Ua7DssABHGc7EHRGFvHia/bPvcfDznAIBaC2SINmGbZtI4Wvxewtvvld4jlFgpmIfxKsC7LHgKLwUoe5k7c3bauT6f15nSq6/3OIfxCkJwq2B0Ph1+9HI7H444M4VcCBAiD4WEyf3dSAaFheIXwKykbXYAsSsLZy6wEDBH0oeanSLOgF4JK7IprVo9D5JYFoRBmJQu557D68YhidS0EFHMh5EpK+ZNV13Uq5fpB7yKgkBxIbpwqpOp0SdFdUoi8SOFdb4ipQrquUyirortFFImpECSz1IG8d5rkR3fLfbaQkvIsRHJzHZisW4qROgCxl5JSLzNtZBCCUvp1QCoWCRxqDGOFFN2YBO8FxDhezBuxS+mnQ0DBoatApCQUgmRWByCQ9MYKEZsEDl1idACCFCts+RDEtCgZ8br1hSgQlII6ehBjJ3lileh94DHSlxxQRw9ikaTEq/xFhyBV1ekQhOfQ16R5BvIuUj0DaSgOSPQF0XcEp2w1DDEsPPEf7sGhQyqR7yRikuTEfwkjD0OKd8HYFRoEKQmDBYmhECn6dSCV8mRHGsVBkMChQVAHJAoEWSgOhkR0COoYoVQylpLogEQvpH/+oo4BiQ5pmA5IdAcgGKtxioynpDkg0SFIoX+1K6yIUgnPAQkcSiUjdeAghlWvBA6iRIdI1VVC+aCG54AEjoApmQ5IwkMa3WF+3SUBg0qyPGElDV8IIBlLAUkjQdNgrMgSCRZUkifk5BkmK1QarAczqYROkyVeMpfAeUvumTZlliATlsy+1DFVyjzxnvkAZXJ1DJYyVcYXypQZPikzdTkmQXm0jcjX/hlGxLU8zYiylosigsxnf4MCvVgVETHultnTiJi6sGJm8+iqGNDMRgkTMCTI29v8IrpF5PbmCvAn+A0ukRGJYNGb+QAAAABJRU5ErkJggg=="})):(t(),o(a,{key:1,class:"userindo-head-img",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAAAvVBMVEUAAACf2fWg2vef1/f++fne0qH4ysrcw5u80Mz30IH1vHre8vu+1s/65OS+5fn0s7P0tbXc4+72+/78153zs7P3y8v9/f372MH94cb+0YDXv8nv5+y83vP84tj1ubnutrn9yZX86ur839H95uHv6+/V4u/47O26zuH+2K7+0ofw7fHE3/H8zKH////+/v7837z91I78um/Y6fXW1K7P19bm6/Og2fb86er0s7P8um/+z3f+/v78xo633fP94s33De7oAAAANnRSTlMAgL9A0MDPwM/Pz8DPwM+/f8DPwEDAgMDPz8Dfz9/Pz8+/oM+f38/P39+4oKBAv6Cgv7jf29DMWgCWAAAHSElEQVR42tzYwWrjMBgE4Eg/JnHwLYc4h0KbXlIobMuCRM2y7/9Yq6QtQ1ZtLckaImkOy/b4MfPbblekiIhS+hLjcvmPcpFVNRFxAPNDdAUeAWE2Sq3KjABRLwaI6OhyZiYCRVqK6AWKJdFxlkIVN78Xn1HlxN4Z1VM+GZVTlEEqpoi5TqWUuVHV8jT+ZlW1lfJ9HVVRqAxfgo+wOldFL2W+jiokYbMqnxI6q9Il4XUULYmbVbmU2FmVKrm5w0kacThJIw4nacThJNU+dv+PbsThJA3s6kPSiMNJGnEYoxpxOEkjDidpxOEkhf3pKj0SBTEFp4lhnaMbcRijGjiQ90gDB/KeJoZ1jm7EYYxqYljnSBuFGKMbcXjjIg9rGIbOZX3OZmOyhl0IDH0/feTtM45DGBexECAAAYZw75RCBiAAubZsyJUoAgMQrxbevRMYgHgW3r0rAgMQQiuKVEjnCQDhlEIoBHWEQEBhVEKoAxCSJH8h/RQHQTa5K1k0q28EgLBKyVtIN81AeBLxIQQHICyJ/3oXggMQokS8QggOQFgSvxKGAxCmJFMhv6cQCFMiWSDDtBCCbLJsi/IeBIQqkQyFdFNGyDZDJZrkAIR4Jnr5sqZgCHVcsnRZXSjk/o06LlSiuY6XI7cSQMiFjPaNWQm2JRQHYi22Rbh3QBQXsrMW25rLom1pciEur8QrAYReCCohXYksWFZEIYRKkiHphZys5Vei00+kD32H2I+cqOeefiLh75DPULeV/BbpYi4d46JtS1gQOJA9E5J662GOAxSQUI5EESFwQEI7Ep340BqSHIHfXOtEiElIF+mAhHUkPMiT/TJ72rWLSUgf8rxKlqRBFAMCh587CkRRHlqH0f6Qh3vCY4sC2dmZ7PNDdH7I4ZedzcNz+ZCdDcrdn9wQbRKyhAFKsRCMKpDyfEPI0Pf9NJ1efMbTGE7Arfi1vB7dP9v1mgjB+2O015TDDorIPF73cjpam/TNFQPprn/vG8fdJeNfi6Rq9uccHy8/JH0+rqLqwE3TAojLlgCBgw3Ze4efdVrdzCc6CbLNDIGDD7n+FFvng8CBWIQBiR+XLhDyr7v7bU0bisIAbpI5/8RdNWhf1GBXah3U/YGyXQNZv//XWpSNh1KTJzfnnFT2vGgphZYfzzk1iXBL7rP4tRZ3ID+OZnkg9/AiyITcyGrmK7n1ldyPzCCwn63f9NqLQ/hk2c/WfdjTCEASz0Mekijm8i29FgSThUyORvlMruslkGHj+wXGk4XZkj/XmpAHcFaThbSBDIJWBBkeTfKz4z1jm4fYs8uQ5dEgm7EyhD/o9f5okBc/7bQkcQVJOq3I0HuDSjbejztBIkBCV8RbVPICyOtwSJUgCBwGlWx8lWmXJWnzPvusBmJQiT9lbAUZ1jp8rus4+HNG4UsSnyFROMRXUR+upf+baQAEK0K3fVJbSJWdnmPvq9QOF4XwbW9y+FgPkuOnjkKXJBnwJZldciCPmoMFSSBkAEj7FZn4V1mqOmrXZEQmC0tCIXDoSuBo6mRKIHxJmuYKErmDSchk8dkiDkhkDioZs0IwW3yyJjPviUTugGTKZgsQPlukDkikDloKmSwyW8PGOpD8Xvj6wSmjhusTPltMgWykr+eeDdi4YbL4bJ1O0ZjNCIOMFxkrmvFoNJ3WH+KhfrLkS3Apu9zLExucRHUI25RHr5HI5ByRZehUyWN1aulhr9kGT2R3ylm+obsBhioElajV0mDZQ6HqQCW6yQ+b+wtV5F43UT9n+z4/756eNvt99fHXc27xG8zPAnRplpVvkqWp0y7ErhLnYLiYNFUsxKoShgBGvRAkVlbYW2xOzPzyVAbm061qIUgsYdwVH4IhRSGiaB5iCkbRCQKKpBB5JWDUQ9bb7boeAorcgSQCRh1kXVRZ10EElET5eMPbomiEbM/fq4FAIixEPlx3hQakuNPZdCTpMlaS0UIp4kJ4JXysGpcdjjpIuCTSPCbXoQ5A2gYQxAkGSzBc7kOhDCnT8ELkw+VKfUhbSUwRkHCHAaStROG4dThsIJDwweKJWjkAkf/VAqR0AQ65pOQQOKpsW0Mg4Q75mmQBkOKcAEhGF11NkpYBkG0QhEuSMEhCHO0hD7hEaQMhC6/6L2FKAiH3IxxSOuLQkaQEQsMhGXGIJHDYQ8qUOuSS0hCCOOKQS9J+IBlxCCRwGEIQp+mApH9IpumABI4GyMfgvIUgTscBCYGI0gTJ9ByQwGEOQZymA5L+IZnAwa67yj4hqCTRcaCUtEcIKonh0JKUvUAQjJWuxPUNcaoOLEraNyTDemgmynqCIPHAJDd9Q260BaD0Cfn+TR8AiTHEvg5QbCH2dUByYwuxZ4BiDLFngGIE4cuhTzGCcIY+xQKyG7xHFgtdx9xuN7hFkbEavGsW8/9Bcc5KapkvroHB1oV3cT2Kf8WEI65ioi4XM2+NuL4q3lQDTg1hcfUGZFVxqsyrFFVOn09fr8wIfwCV9M7KxZf6ygAAAABJRU5ErkJggg=="}))])),_:1}),E(s,{class:"userinfo-ls"},{default:k((()=>{return[E(s,{class:"userinfo-ls-name"},{default:k((()=>[f(u(m.value.name||"暂无用户名"),1)])),_:1}),(A=p.value,parseFloat(A)<90?(t(),o(s,{key:0,class:"userinfo-ls-resume"},{default:k((()=>[f(" 简历完成度 "+u(p.value)+",建议优化 ",1)])),_:1})):(t(),o(s,{key:1,class:"userinfo-ls-resume"},{default:k((()=>[f("简历完成度 "+u(p.value),1)])),_:1})))];var A})),_:1})])),_:1}),E(s,{class:"mine-tab"},{default:k((()=>[E(s,{class:"tab-item",onClick:e[0]||(e[0]=A=>C(S)("/packageA/pages/myResume/myResume"))},{default:k((()=>[E(a,{class:"item-img",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAABACAMAAAB83JS9AAAANlBMVEUAAABHeO1IeOtIeOlHeOxIeOxIeOxHeOxHee1HeOxHeuxHee1Hee1LgO9HeexHeexGeexHeOx9ZXz+AAAAEXRSTlMA30Agn2CAv3CQMO/PEO+vUIbbZsEAAAEhSURBVEjH5dXbrsIgEIXhGc7QI+//stutSRUY7SqJscbvyps/kOkE6WJyfsivDd6SIHFGsG7L6kS81ZxRvkptxikq+HogJqzqierG1Z0U4YoTAx3RjBDXX1I7v2Tda0FVqaEr5ZHtsEV6u67LmEhE5aEho+I9tdtWgtSWpqNbabZ020oU0/bj35gPKFP+4jRqSQDSkWRLf2qACweSqPNO+JfSwQgWRlJNkon3U0+yuJ/OE4lG4MIcrMCf9+N8KGUJlK4k0fNbV4L7n7VskhbEE3+ct6bcn8b+ND1Jx2AF5jElJ6Y8kcg/puR6F/HCcpvOwIt4lda1eZsWIxjyXfPe4er/bNxIhZBxppkCrJ6jgktHNTujZUsjo/KKZGpHui3pH7cbo44yLzMQAAAAAElFTkSuQmCC"}),E(s,{class:"item-text"},{default:k((()=>[f("我的简历")])),_:1})])),_:1}),E(s,{class:"tab-item",onClick:e[1]||(e[1]=A=>C(S)("/packageA/pages/collection/collection"))},{default:k((()=>[E(a,{class:"item-img",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAA0CAMAAADsb9tqAAAAOVBMVEUAAAD/Skr/UFD/SEj/S0v/Skr/UFD/Skr/S0v/Skr/Skr/Skr/Skr/Skr/Skr/TEz/S0v/Skr/SkrZGTfNAAAAEnRSTlMA3xAg758gYL+QgM+vMO9AcFDA9eGtAAABGklEQVRIx6WWW3LDIAxFrwQY83Bss//FtuNJqwYbp1LOrzhzeQgGCBxD8a35OeyMV9Y003elhDjhzFrbH4IMAWd/rgicWkf6Sd4OcSgv1E7QMYLrZUVM3y54LMBEg8qTScxuhJjXrtR7qAwrfKihGQhHaDOxSqiWWULVMKJV3VCtakCxqgRvVR9oZj5QP5kwWdViP5wZyapm7FZ1B9t7GLP55mCzqREAe60lL0w2PjDWWIeDbAo1xtIz1LDJEb/M2jMVnNdOV4jq6QpJc2UE3XIrepgUHdjhSL9F4upNcfWmuGpT3HJnFocbuI7NwLgnjzvhLdFfiT7iHzhSLLNn/GF8T3wJphUKXBCzMnREkkgtnGSValzOC8Z8AfQ5lq0G7QVnAAAAAElFTkSuQmCC"}),E(s,{class:"item-text"},{default:k((()=>[f("我的收藏")])),_:1})])),_:1}),E(s,{class:"tab-item",onClick:e[2]||(e[2]=A=>C(S)("/packageA/pages/browseJob/browseJob"))},{default:k((()=>[E(a,{class:"item-img",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAAAwCAMAAACFQszZAAAAOVBMVEUAAAATxn0YyoATxXwTxn0UxXwTxn0TxXwTxnwTxXwTxX0Qx4ASxn4Yx4ATxH0SxnwTxXwSxXwTxXwvAx4ZAAAAEnRSTlMA3xCAn0CvYL/P7yAwIO+QUHCOYEMPAAABqUlEQVRIx61W7ZLDIAgMQsRovsr7P+zdtLl4DUKTafanOMuuAto5KIyUYJZfzJAirmN3HYFpFgWIPF2i6ZOYiHxaDM7iAnj6jqYC8LMpkFMA9uVEOQ2aLssBY7m3eFAUEvbhKbXHQUexbYs0zVvOUW9YWjxDW7pvfQifeWLwL6My+TyLdY4+U9Q8BkiVgZsHqtYViXCteQfn7lY5ohwbZt7rr2Q5YL+UCawk478IjKb8YNmGsvG89W/emIKSFF8B1m3UVgqbu0Xa5kAM02Rk7nXbtQXJJkgHtsPIKsBNQem1/aGJHkYFCFRB2kE0I6QjXNnVWSextFIrku4hGlrWyLSWzAi3DnswDxstrdC8/rxVsFgt2BDkFaR2QE5B1nU9jAq0W5C0ICNzDlvT5lbTTmDNtnB5jGilhum8TzH6W8HQWS3I3kg/jNq+jlpLvj/SNRZdpP5zhCd5INzzQEK56ckujuoKGtXH0lbtf2uG+q1JOor3fLRy35koJDa0LQ+ss9v/Ph/oUamG8VAYvqSp4GjTJG3KlxWhoYU4dNcxrhgT5CcDJEIuzuYf4BCG3gt6Dc4AAAAASUVORK5CYII="}),E(s,{class:"item-text"},{default:k((()=>[f("我的浏览")])),_:1})])),_:1}),E(s,{class:"tab-item",onClick:e[3]||(e[3]=A=>C(S)("/packageA/pages/Intendedposition/Intendedposition"))},{default:k((()=>[E(a,{class:"item-img",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA2CAMAAAC/bkrSAAAAM1BMVEUAAAD/rUj/r0j/rUf/rkf/rUj/rkf/rkf/rUf/rkj/rUf/r0v/rUf/rUf/rEb/r0f/rUcb86vIAAAAEHRSTlMAgCDfn2Dvv5BAcBDPr1AwbNBwMAAAAQ9JREFUSMfNlkGOwyAMRQEbDIa0vv9pJxoWzchOgExV9a0i0ItDPgI7i8qUxKLl4E4oIOd424lyCVpOSHJNNiSSEUEX6hPkOxwPMJyUYrVc9emgxrPsJNexZ0UNY3/XCf5dUghh+5XCi0upMokJ4NOQxnsHq5bGe6dVLY33DhoSyojyR4q4I0PwKHmZIx2lJJP8W+I7kosbESxK/fkjUkHEtij5Oz8CPpZTvpUT03fn5L2nRYm/NKd8I6cAstNczQ1gplwpDwZ1nE1TlqVeqHDPaRaozj1kjW13HKwYifp6pnMqz9cFR9M5HagIczlZ9++6FMcOKKmOJbzbRa33awbl2mrOJMBinU4kuxqobvcHt/x6MmnFgu4AAAAASUVORK5CYII="}),E(s,{class:"item-text"},{default:k((()=>[f("意向岗位")])),_:1})])),_:1})])),_:1}),E(s,{class:"mine-options"},{default:k((()=>[E(s,{class:"mine-options-item"},{default:k((()=>[f("实名认证")])),_:1}),E(s,{class:"mine-options-item"},{default:k((()=>[f("素质测评")])),_:1}),E(s,{class:"mine-options-item"},{default:k((()=>[f("AI面试")])),_:1}),E(s,{class:"mine-options-item"},{default:k((()=>[f("通知与提醒")])),_:1}),E(s,{class:"mine-logout",onClick:U},{default:k((()=>[f("退出登录")])),_:1})])),_:1}),E(Q,{ref_key:"popup",ref:x,type:"dialog"},{default:k((()=>[E(l,{mode:"base",title:"确定退出登录吗?",type:"info",duration:2e3,"before-close":!0,onConfirm:D,onClose:B})])),_:1},512)])),_:1})}}},[["__scopeId","data-v-ca607a35"]]);export{Q as default}; diff --git a/unpackage/dist/build/web/assets/pages-msglog-msglog.c84QA3Rn.js b/unpackage/dist/build/web/assets/pages-msglog-msglog.c84QA3Rn.js deleted file mode 100644 index 134dfa4..0000000 --- a/unpackage/dist/build/web/assets/pages-msglog-msglog.c84QA3Rn.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as a,s,G as l,a as t,w as c,l as e,o as d,k as i,y as A,d as f,m as r,M as u,N as n}from"./index-DdiBakOJ.js";const o="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADIBAMAAABfdrOtAAAAIVBMVEUAAAD/3fH/3/P/3/P/3vLqi7run8b0tNb6yuX2vtzyr9G1anHtAAAABHRSTlMAgL9ARyeO/QAABGlJREFUeNrtnF9u00AQxtM4B3CDD+AaH8A0OUBtT2l4j2MfIIngPRUcwP1zgAoJnhEPnBJKSkaRdj37Z8Z1K74L/DTft+M43p0dWSiYTZMkBSiS5PTNSELBaQJHSk4zbkQCCp2FjIhZAhrlXJjgHDp0xlNGCp0qQrYyJIsJiDIwGTkGUgQZKGfKCVgolGQgRdQrpMgzIM+sIRFYK3dgiFPOwUlv3RaWYPipKyQXNAtVCpqFCm3MEjZsDl4qjc2SNizyheSChaBCyUKwFLoQ+VJSDkjRzRgDi2K5QlAFmYh0KhEXJCcKkS4l4oPk0oVgKfTjV+ZhDKwSdAsV+8Z+3zpGHxgj7jZVVe+AUqaATEwZ76u/Iimxh1uLaq8VECo8Yr+unlSTreLcJFfVQVT6pfND/hIhS8ovL7cwFTu/JvZu0X5d0GuLhqzt+jEA80hQDdmPbpHcWEFia7cwd0zeahGDDKQg3LKF0It44gapACwWcSQFyV0igU1l0o0oIhIeSOYQCVSWkBgjkYOUDpCFLaRwiOTKFgKZPeTyGAK0Yvvcb6whpX3u186Q1HVxrSz+2dnnjhBamWfutTlk7BxJbf52P3FtRYTQyUeublWNOSS1fASjluYfDlzWFr530cpcft9RO24IFoJqjf88TmwTQQE75LZCGTY8vrFEtmYh5P5IOvNKY8hiU5Fa7bRrOPVmoHY6iC+DXm+jUeDLoJ9mmaZNFo9JKrrQybBQDfm+fdSvFheWqRoVRPlr8mG71ye6EJMGjZWQn9snPWAhpmpVkImyECzFFrJWtLwKcrs9CH+qPEIpR/NOSGsbSbVSQSJlJIdQXgwkN4BsfCHFKP0P0ah+NZBGBQFvCP1W+TIh6z4gu1cDaVWQlBkCPfTJqg9I/WogTR+QJRC/jHKQOS9k91yQkhvSAvEGyQEBJWQsD4mZIbUaciIPCZkhjRoSsEKWmi84rJC1Znsj9YPQvVjIQnA3aM4JaTWQCSdE9ylqzAhZ9QGpdXuNASOk6QOy1O4CpnyQtfbj85yGeLWJNAS3f8d8EP3WRkBCvNokZIbUHVvMKRek6dg4m9MQj9dHDgi9uPYay0HwlETABek8ipHyQGp1JBiKPGTMA1mqc1eH8vUYcuOX+0FaSGsDIc51RsTHZ49IUJOuz+gL/1ZU7ZYfID9w78/5JQKVqv1qwdyvnS4SolMeLHaCPoI+Es3j6/7bH7WHPUbSsJWSAaHVwb67z5360hodtI1AQDlx2JJFFwJnq+ljtik/o5A7744qRc+io1vifuXEfAv72sJ+ZFYmObOBbsn7FfY+UCE/GiI/5CI/riM/eCQ/QtXTMJj8WNvzD+gxjRoOYWiSZfxzGIOsDCO5QxkuZhmTFjasGNLoOmEYfWuBsGHF0C5GcL7iYXiXVYheu4EKrClFJnfdCjKGeqkLUoZyCQ565UCJJBlIEWSgpgZ9jgznYlKijNmIQ1PRMuhkEiyDATNVIrKXd3HbXu9O/11BdzazIfwG2cbUbHV14zsAAAAASUVORK5CYII=",Q=a({__name:"msglog",setup(a){const Q=s({current:0,all:[{}]});function g(a){const s=a.detail.current;Q.current=s}function m(a){Q.current=a}return l((()=>{})),(a,s)=>{const l=e,I=r,C=u,S=n;return d(),t(l,{class:"app-container"},{default:c((()=>[i(l,{class:"msg-AI"},{default:c((()=>[A("AI+就业服务程序")])),_:1}),i(l,{class:"msg-tab"},{default:c((()=>[i(l,{class:f(["msg-tab-item",{actived:0===Q.current}]),onClick:s[0]||(s[0]=a=>m(0))},{default:c((()=>[A("全部")])),_:1},8,["class"]),i(l,{class:f(["msg-tab-item",{actived:1===Q.current}]),onClick:s[1]||(s[1]=a=>m(1))},{default:c((()=>[A("未读")])),_:1},8,["class"])])),_:1}),i(l,{class:"msg-list"},{default:c((()=>[i(S,{class:"swiper",current:Q.current,onChange:g},{default:c((()=>[i(C,{class:"list"},{default:c((()=>[i(l,{class:"list-card"},{default:c((()=>[i(l,{class:"card-img"},{default:c((()=>[i(I,{class:"card-img-flame",src:o})])),_:1}),i(l,{class:"card-info"},{default:c((()=>[i(l,{class:"info-title"},{default:c((()=>[A("今日推荐")])),_:1}),i(l,{class:"info-text"},{default:c((()=>[A("这里有9个职位很适合你,快来看看吧")])),_:1})])),_:1}),i(l,{class:"card-time"},{default:c((()=>[A("刚才")])),_:1})])),_:1})])),_:1}),i(C,{class:"list"},{default:c((()=>[i(l,{class:"list-card"},{default:c((()=>[i(l,{class:"card-img"},{default:c((()=>[i(I,{class:"card-img-flame",src:o})])),_:1}),i(l,{class:"card-info"},{default:c((()=>[i(l,{class:"info-title"},{default:c((()=>[A("今日推荐")])),_:1}),i(l,{class:"info-text"},{default:c((()=>[A("这里有9个职位很适合你,快来看看吧")])),_:1})])),_:1}),i(l,{class:"card-time"},{default:c((()=>[A("刚才")])),_:1})])),_:1})])),_:1})])),_:1},8,["current"])])),_:1})])),_:1})}}},[["__scopeId","data-v-6119d1bb"]]);export{Q as default}; diff --git a/unpackage/dist/build/web/assets/pages-nearby-nearby.eqZuVs-i.js b/unpackage/dist/build/web/assets/pages-nearby-nearby.eqZuVs-i.js deleted file mode 100644 index 06d0e83..0000000 --- a/unpackage/dist/build/web/assets/pages-nearby-nearby.eqZuVs-i.js +++ /dev/null @@ -1 +0,0 @@ -import{p as e,o as t,b as a,z as i,H as s,C as l,q as n,R as o,T as r,_ as u,A as d,c as h,a as c,w as g,k as m,n as f,e as p,j as b,y as v,f as x,l as w,m as y,U as _,V as S,W as A,s as k,G as T,t as C,v as I,x as z,I as D,J as M,F as R,r as W,X as L,S as j,D as V,L as F,u as H,d as B,Y as U,N as E,M as P}from"./index-DdiBakOJ.js";import{a as N,b as O,_ as Y,s as X}from"./screening-job-requirements.BSt0qcms.js";import{_ as Q,a as K}from"./matchingDegree.C4MMzh2G.js";import{_ as q}from"./uni-icons.OqqMV__G.js";import{_ as J}from"./dict-Label.ot3xNx0t.js";const G={__name:"convert-distance",props:["alat","along","blat","blong"],setup(l){const{haversine:n,getDistanceFromLatLonInKm:o}=e("globalFunction"),{alat:r,along:u,blat:d,blong:h}=l,c=o(r,u,d,h);return(e,l)=>(t(),a("span",{style:{"padding-left":"16rpx"}},i(function(e){const{km:t,m:a}=e;return r||u?t>1?t.toFixed(2)+"km":a.toFixed(2)+"m":"--km"}(s(c))),1))}},Z=l("location",(()=>{const e=n(""),t=n("");return{getLocation:function(){return new Promise(((a,i)=>{o({type:"wgs84",altitude:!0,isHighAccuracy:!0,enableHighAccuracy:!0,timeout:1e4,success:function(i){const s={longitude:120.382665,latitude:36.066938};e.value=s.longitude,t.value=s.latitude,r("用户位置获取成功"),a(s)},fail:function(i){const s={longitude:120.382665,latitude:36.066938};e.value=s.longitude,t.value=s.latitude,r("用户位置获取失败,使用模拟定位"),a(s)},complete:function(e){console.warn("getUserLocation"+JSON.stringify(e))}})}))},longitude:function(){return e.value},latitude:function(){return t.value}}}));const $=u({created(){const e=d();this.px2rpx=750/e.screenWidth,this.screenWidth=e.screenWidth,this.screenHeight=e.screenHeight},mounted(){this.updateRect(),this.mmax=this.valueFormat(this.max,!1),this.percent=Math.abs((this.valueFormat(this.value)-this.min)/(this.mmax-this.min)),this.subPercent=Math.abs((this.valueFormat(this.subValue,!0)-this.min)/(this.mmax-this.min)),this.reverse?"vertical"!=this.direction?this.handleX=(1-this.percent)*this.barMaxLength:this.handleY=this.percent*this.barMaxLength:"vertical"!=this.direction?this.handleX=this.percent*this.barMaxLength:this.handleY=(1-this.percent)*this.barMaxLength,"test"==this.bpname&&console.log(this.mainInfo)},props:{bpname:{type:String,default:""},width:{type:String,default:"300px"},strokeWidth:{type:String,default:"30px"},backgroundColor:{type:String,default:"rgba(0,0,0,0)"},noActiveColor:{type:String,default:"#00ffff"},activeColor:{type:String,default:"#0000ff"},subActiveColor:{type:String,default:"#ffaaaa"},handleColor:{type:String,default:"#ffff00"},infoColor:{type:String,default:"#000000"},borderRadius:{type:String,default:"5px"},barBorderRadius:{type:String,default:"5px"},isActiveCircular:{type:Boolean,default:!1},handleWidth:{type:String,default:"50px"},handleHeight:{type:String,default:"40px"},handleBorderRadius:{type:String,default:"5px"},handleImgUrl:{type:String,default:""},disabled:{type:Boolean,default:!1},direction:{type:String,default:"horizontal"},infoEndText:{type:String,default:""},infoFontSize:{type:String,default:"18px"},showInfo:{type:Boolean,default:!0},infoContent:{type:String,default:"value"},infoAlign:{type:String,default:"right"},max:{type:Number,default:100},min:{type:Number,default:0},value:{type:Number,default:0},subValue:{type:Number,default:0},step:{type:Number,default:1},subStep:{type:Number,default:1},continuous:{type:Boolean,default:!0},subContinuous:{type:Boolean,default:!0},reverse:{type:Boolean,default:!1},widgetPos:{type:String,default:"top"},widgetHeight:{type:[String,Number],default:"40px"},widgetWidth:{type:[String,Number],default:"50px"},widgetBorderRadius:{type:[String,Number],default:"5px"},widgetOpacity:{type:[String,Number],default:1},widgetOffset:{type:[String,Number],default:"0px"},widgetUrl:{type:String,default:""},widgetAngle:{type:[String,Number],default:0}},data:()=>({handleX:50,handleY:0,px2rpx:1,percent:0,subPercent:0,mainInfo:{left:0,top:0,bottom:0,right:0},touchState:!1,screenHeight:0,screenWidth:0,msubValue:0,moveable:!0,lastTouchTime:0,mmax:100}),watch:{value(e,t){this.touchState||(e=this.valueSetBoundary(e),this.percent=Math.abs((e-this.min)/(this.mmax-this.min)))},showValue(e,t){if(!this.continuous){let t;this.reverse?"vertical"!=this.direction?(t=Math.abs(1-(e-this.min)/(this.mmax-this.min)),this.handleX=t*this.barMaxLength):(t=Math.abs((e-this.min)/(this.mmax-this.min)),this.handleY=t*this.barMaxLength):"vertical"!=this.direction?(t=Math.abs((e-this.min)/(this.mmax-this.min)),this.handleX=t*this.barMaxLength):(t=1-Math.abs((e-this.min)/(this.mmax-this.min)),this.handleY=t*this.barMaxLength)}this.$emit("change",{bpname:this.bpname,type:"change",value:this.showValue,subValue:this.msubValue}),this.$emit("valuechange",{bpname:this.bpname,type:"valuechange",value:this.showValue,subValue:this.msubValue})},percent(e,t){this.continuous&&(this.reverse?"vertical"!=this.direction?this.handleX=(1-e)*this.barMaxLength:this.handleY=e*this.barMaxLength:"vertical"!=this.direction?this.handleX=e*this.barMaxLength:this.handleY=(1-e)*this.barMaxLength)},subValue(e,t){e=this.valueSetBoundary(e),this.subContinuous?this.msubValue=e:this.msubValue=this.valueFormat(e,!0),this.subPercent=Math.abs((e-this.min)/(this.mmax-this.min)),this.$emit("change",{bpname:this.bpname,type:"change",value:this.showValue,subValue:this.msubValue}),this.$emit("subvaluechange",{bpname:this.bpname,type:"subvaluechange",value:this.showValue,subValue:this.msubValue})},max(e,t){this.mmax=this.valueFormat(e,!1)}},computed:{bpWidth(){return"vertical"==this.direction?this.maxHeight()[2]:this.sizeDeal(this.width)[2]},bpHeight(){return"vertical"==this.direction?this.sizeDeal(this.width)[2]:this.maxHeight()[2]},mareaWidth(){if("vertical"==this.direction)return this.maxHeight()[2];return this.sizeDeal(this.width)[0]-this.textWidth()+"px"},mareaHeight(){if("vertical"==this.direction){return this.sizeDeal(this.width)[0]-this.textWidth()+"px"}return this.maxHeight()[2]},mareaLeft(){return this.showValueState()&&"left"==this.infoAlign?this.textWidth()+"px":0},barMaxHeight(){if("vertical"==this.direction){let e=this.sizeDeal(this.width)[0],t=this.sizeDeal(this.handleWidth);return e-this.textWidth()-t[0]+"px"}return this.sizeDeal(this.strokeWidth)[2]},barMaxWidth(){if("vertical"==this.direction)return this.sizeDeal(this.strokeWidth)[2];let e=this.sizeDeal(this.width)[0],t=this.sizeDeal(this.handleWidth);return e-this.textWidth()-t[0]+"px"},barMaxLeft(){return this.showValueState()&&"left"==this.infoAlign?this.textWidth()+this.sizeDeal(this.handleWidth)[0]/2+"px":"vertical"!=this.direction?this.sizeDeal(this.handleWidth)[0]/2+"px":(this.maxHeight()[0]-this.sizeDeal(this.strokeWidth)[0])/2+"px"},activeRight(){return this.reverse?0:"unset"},activeLeft(){return this.reverse?"unset":0},activeTop(){return this.reverse?0:"unset"},activeBottom(){return this.reverse?"unset":0},barActiveWidth(){if("vertical"==this.direction)return this.sizeDeal(this.strokeWidth)[2];let e;return e=this.continuous?this.percent:Math.abs((this.showValue-this.min)/(this.mmax-this.min)),this.barMaxLength*e+"px"},barActiveHeight(){if("vertical"==this.direction){let e;return e=this.continuous?this.percent:Math.abs((this.showValue-this.min)/(this.mmax-this.min)),this.barMaxLength*e+"px"}return this.sizeDeal(this.strokeWidth)[2]},subActiveTop(){return this.reverse?0:"unset"},subActiveBottom(){return this.reverse?"unset":0},subActiveRight(){return this.reverse?0:"unset"},subActiveLeft(){return this.reverse?"unset":0},barSubActiveWidth(){return"vertical"==this.direction?this.sizeDeal(this.strokeWidth)[2]:this.subContinuous?this.barMaxLength*this.subPercent+"px":this.barMaxLength*Math.abs((this.msubValue-this.min)/(this.mmax-this.min))+"px"},barSubActiveHeight(){if("vertical"==this.direction){if(this.subContinuous)return this.barMaxLength*this.subPercent+"px";this.barMaxLength,Math.abs((this.msubValue-this.min)/(this.mmax-this.min))}return this.sizeDeal(this.strokeWidth)[2]},mhandleWidth(){return"vertical"==this.direction?this.sizeDeal(this.handleHeight)[2]:this.sizeDeal(this.handleWidth)[2]},mhandleHeight(){return"vertical"==this.direction?this.sizeDeal(this.handleWidth)[2]:this.sizeDeal(this.handleHeight)[2]},mhandleTop(){if("vertical"==this.direction)return 0;{let e=this.sizeDeal(this.handleHeight)[0];return this.maxHeight()[0]/2-e/2+"px"}},showValue(){return this.valueFormat(this.percent*(this.mmax-this.min)+this.min)},textHeight(){let e=this.sizeDeal(this.infoFontSize);return 1.2*e[0]+e[1]},valueLeft(){if("left"==this.infoAlign)return 0;if("center"==this.infoAlign){return this.sizeDeal(this.width)[0]/2-this.valueWidth()/2+"px"}if("right"==this.infoAlign){return this.sizeDeal(this.width)[0]-this.textWidth()+"px"}return 0},barMaxLength(){let e=this.sizeDeal(this.width)[0],t=this.sizeDeal(this.handleWidth);return e-this.textWidth()-t[0]},mwidgetWidth(){return this.sizeDeal(this.widgetWidth)[2]},mwidgetHeight(){return this.sizeDeal(this.widgetHeight)[2]},moffset(){let e=this.sizeDeal(this.widgetOffset);switch(this.widgetPos){case"top":case"bottom":return this.sizeDeal(this.mhandleHeight)[0]+e[0]+"px";case"right":case"left":return this.sizeDeal(this.mhandleWidth)[0]+e[0]+"px"}return 0},mwidgetBorderRadius(){return this.sizeDeal(this.widgetBorderRadius)[2]},mwidgetAngle(){return"rotate("+Number(this.widgetAngle)+"deg)"}},methods:{prevent(e){console.log(1)},updateRect(){h().in(this).select(".bing-progress").boundingClientRect((e=>{this.mainInfo.top=e.top,this.mainInfo.left=e.left,this.mainInfo.bottom=e.bottom,this.mainInfo.right=e.right})).exec()},touchstart(e){if(!this.disabled){if(this.updateRect(),this.mainInfo.top>this.screenHeight)return void this.$emit("dragstart",{bpname:this.bpname,type:"dragstart",value:this.showValue,subValue:this.msubValue});this.touchState=!0;let t=e.changedTouches[0];this.handleMove(t),this.$emit("dragstart",{bpname:this.bpname,type:"dragstart",value:this.showValue,subValue:this.msubValue})}},touchmove(e){if(!this.disabled){let t=e.changedTouches[0];this.handleMove(t),this.$emit("dragging",{bpname:this.bpname,type:"dragging",value:this.showValue,subValue:this.msubValue})}},touchend(e){if(!this.disabled){let t=e.changedTouches[0];this.handleMove(t),this.touchState=!1,this.$emit("dragend",{bpname:this.bpname,type:"dragend",value:this.showValue,subValue:this.msubValue})}},handleMove(e){this.sizeDeal(this.width)[0];let t,a=this.sizeDeal(this.handleWidth);t="vertical"!=this.direction?"left"==this.infoAlign?(e.pageX-this.mainInfo.left-this.textWidth()-a[0]/2)/this.barMaxLength:(e.pageX-this.mainInfo.left-a[0]/2)/this.barMaxLength:1-(e.clientY-this.mainInfo.top-a[0]/2)/this.barMaxLength,t=t>0?t:0,t=t<1?t:1,this.reverse?this.percent=1-t:this.percent=t},showValueState(){return!("vertical"==this.direction||!this.showInfo||"left"!=this.infoAlign&&"right"!=this.infoAlign)},valueSetBoundary(e){return e=this.mmax>this.min?(e=ethis.min?e:this.min:(e=e>this.mmax?e:this.mmax)this.min.toString().length?this.mmax.toString().length:this.min.toString().length)+this.stepInfo()[1])+this.infoEndText.length)*this.sizeDeal(this.infoFontSize)[0];return Number(e.toFixed(2))}return 0},valueWidth(){let e=(.7*((this.mmax.toString().length>this.min.toString().length?this.mmax.toString().length:this.min.toString().length)+this.stepInfo()[1])+this.infoEndText.length)*this.sizeDeal(this.infoFontSize)[0];return Number(e.toFixed(2))},maxHeight(){let e=[];if("vertical"!=this.direction){this.infoEndText.match(/[^\x00-\xff]/g)?e.push(1.1*this.sizeDeal(this.infoFontSize)[0]):e.push(this.sizeDeal(this.infoFontSize)[0])}return e.push(this.sizeDeal(this.strokeWidth)[0]),e.push(this.sizeDeal(this.handleHeight)[0]),e.sort((function(e,t){return t-e})),[e[0],"px",e[0]+"px"]},sizeDeal(e){let t=Number.isNaN(parseFloat(e))?0:parseFloat(e),a=e.toString().replace(/[0-9\.]/g,"");return"rpx"==a?(t/=this.px2rpx,a="px"):"vw"==a?(a="px",t=t/100*this.screenWidth):"vh"==a?(a="px",t=t/100*this.screenHeight):a="px",[t,a,t+a]}}},[["render",function(e,a,s,l,n,o){const r=w,u=y,d=_,h=S,k=A;return t(),c(r,{class:"bing-progress",style:f({width:o.bpWidth,height:o.bpHeight,borderRadius:s.borderRadius,backgroundColor:s.backgroundColor,flexDirection:"vertical"!=s.direction?"row":"column"})},{default:g((()=>[m(r,{class:"bp-bar_max",style:f({width:o.barMaxWidth,height:o.barMaxHeight,backgroundColor:s.noActiveColor,borderRadius:s.barBorderRadius,flexDirection:"vertical"!=s.direction?"row":"column",left:o.barMaxLeft})},{default:g((()=>[m(r,{class:"bp-bar_sub_active",style:f({width:o.barSubActiveWidth,height:o.barSubActiveHeight,backgroundColor:s.subActiveColor,top:o.subActiveTop,bottom:o.subActiveBottom,left:o.subActiveLeft,right:o.subActiveRight,borderRadius:s.isActiveCircular?s.barBorderRadius:0})},null,8,["style"]),m(r,{class:"bp-bar_active",style:f({width:o.barActiveWidth,height:o.barActiveHeight,backgroundColor:s.activeColor,top:o.activeTop,bottom:o.activeBottom,left:o.activeLeft,right:o.activeRight,borderRadius:s.isActiveCircular?s.barBorderRadius:0})},null,8,["style"])])),_:1},8,["style"]),m(k,{id:"bp-marea",class:"bp-marea",onTouchmove:p(o.touchmove,["stop","prevent"]),onTouchstart:p(o.touchstart,["stop","prevent"]),onTouchcancel:o.touchend,onTouchend:o.touchend,style:f({width:o.mareaWidth,height:o.mareaHeight,left:o.mareaLeft})},{default:g((()=>[m(h,{id:"bp-mview",class:"bp-mview",direction:"vertical"==s.direction?"vertical":"horizontal",animation:!1,disabled:!0,x:n.handleX,y:n.handleY,friction:"10",damping:"100",style:f({width:o.mhandleWidth,height:o.mhandleHeight,backgroundColor:s.handleColor,borderRadius:s.handleBorderRadius,fontSize:s.infoFontSize,top:o.mhandleTop})},{default:g((()=>[m(r,{id:"bp-handle",class:"bp-handle",style:f({fontSize:s.infoFontSize,width:o.mhandleWidth,height:o.mhandleHeight,borderRadius:s.handleBorderRadius})},{default:g((()=>[s.handleImgUrl?(t(),c(u,{key:0,class:"bp-handle-img",src:s.handleImgUrl,style:f({fontSize:s.infoFontSize,width:o.mhandleWidth,height:o.mhandleHeight,borderRadius:s.handleBorderRadius})},null,8,["src","style"])):b("",!0),""==s.handleImgUrl&&"handle"==s.infoAlign&&s.showInfo?(t(),c(d,{key:1,class:"bp-handle-text",style:f({fontSize:s.infoFontSize,color:s.infoColor,width:o.mhandleWidth,height:o.textHeight,borderRadius:"20px"})},{default:g((()=>[v(i("subValue"==s.infoContent?n.msubValue:o.showValue)+i(s.infoEndText),1)])),_:1},8,["style"])):b("",!0),"top"==s.widgetPos&&s.widgetUrl?(t(),c(u,{key:2,class:"bp-handle-widget",src:s.widgetUrl,style:f({flexDirection:"column",borderRadius:o.mwidgetBorderRadius,bottom:o.moffset,width:o.mwidgetWidth,height:o.mwidgetHeight,opacity:s.widgetOpacity,transform:o.mwidgetAngle})},null,8,["src","style"])):b("",!0),"right"==s.widgetPos&&s.widgetUrl?(t(),c(u,{key:3,class:"bp-handle-widget",src:s.widgetUrl,style:f({flexDirection:"row",borderRadius:o.mwidgetBorderRadius,left:o.moffset,width:o.mwidgetWidth,height:o.mwidgetHeight,opacity:s.widgetOpacity,transform:o.mwidgetAngle})},null,8,["src","style"])):b("",!0),"bottom"==s.widgetPos&&s.widgetUrl?(t(),c(u,{key:4,class:"bp-handle-widget",src:s.widgetUrl,style:f({flexDirection:"column",borderRadius:o.mwidgetBorderRadius,top:o.moffset,width:o.mwidgetWidth,height:o.mwidgetHeight,opacity:s.widgetOpacity,transform:o.mwidgetAngle})},null,8,["src","style"])):b("",!0),"left"==s.widgetPos&&s.widgetUrl?(t(),c(u,{key:5,class:"bp-handle-widget",src:s.widgetUrl,style:f({flexDirection:"row",borderRadius:o.mwidgetBorderRadius,right:o.moffset,width:o.mwidgetWidth,height:o.mwidgetHeight,opacity:s.widgetOpacity,transform:o.mwidgetAngle})},null,8,["src","style"])):b("",!0),"top"==s.widgetPos&&""==s.widgetUrl?(t(),c(r,{key:6,class:"bp-handle-widget",style:f({flexDirection:"column",borderRadius:o.mwidgetBorderRadius,bottom:o.moffset,width:o.mwidgetWidth,height:o.mwidgetHeight,opacity:s.widgetOpacity,transform:o.mwidgetAngle})},{default:g((()=>[x(e.$slots,"default",{},void 0,!0)])),_:3},8,["style"])):b("",!0),"right"==s.widgetPos&&""==s.widgetUrl?(t(),c(r,{key:7,class:"bp-handle-widget",style:f({flexDirection:"row",borderRadius:o.mwidgetBorderRadius,left:o.moffset,width:o.mwidgetWidth,height:o.mwidgetHeight,opacity:s.widgetOpacity,transform:o.mwidgetAngle})},{default:g((()=>[x(e.$slots,"default",{},void 0,!0)])),_:3},8,["style"])):b("",!0),"bottom"==s.widgetPos&&""==s.widgetUrl?(t(),c(r,{key:8,class:"bp-handle-widget",style:f({flexDirection:"column",borderRadius:o.mwidgetBorderRadius,top:o.moffset,width:o.mwidgetWidth,height:o.mwidgetHeight,opacity:s.widgetOpacity,transform:o.mwidgetAngle})},{default:g((()=>[x(e.$slots,"default",{},void 0,!0)])),_:3},8,["style"])):b("",!0),"left"==s.widgetPos&&""==s.widgetUrl?(t(),c(r,{key:9,class:"bp-handle-widget",style:f({flexDirection:"row",borderRadius:o.mwidgetBorderRadius,right:o.moffset,width:o.mwidgetWidth,height:o.mwidgetHeight,opacity:s.widgetOpacity,transform:o.mwidgetAngle})},{default:g((()=>[x(e.$slots,"default",{},void 0,!0)])),_:3},8,["style"])):b("",!0)])),_:3},8,["style"])])),_:3},8,["direction","x","y","style"])])),_:3},8,["onTouchmove","onTouchstart","onTouchcancel","onTouchend","style"]),o.showValueState()||"center"==s.infoAlign&&"vertical"!=s.direction&&s.showInfo?(t(),c(d,{key:0,class:"bp-value",style:f({color:s.infoColor,fontSize:s.infoFontSize,left:o.valueLeft,width:o.valueWidth()+"px"})},{default:g((()=>[v(i("subValue"==s.infoContent?n.msubValue:o.showValue)+i(s.infoEndText),1)])),_:1},8,["style"])):b("",!0)])),_:3},8,["style"])}],["__scopeId","data-v-a8b3cf26"]]),ee=u({__name:"one",emits:["onFilter"],setup(l,{expose:o,emit:r}){const{getLocation:u,longitude:d,latitude:h}=Z(),{$api:x,navTo:_,debounce:S,vacanciesTo:A,customSystem:V,formatTotal:F}=e("globalFunction"),H=r;n();const B=n(),U=n([]),E=n([]),P=n([{id:1,position:{left:V.systemInfo.screenWidth-50,top:180,width:30,height:30},iconPath:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAAANlBMVEUAAAAsLCwtLS0tLS0wMDAsLCwwMDAsLCwuLi4tLS0sLCwsLCwwMDAsLCwtLS0tLS0tLS0sLCyQgYp1AAAAEXRSTlMAQGDwEOAg0HBQwIAwkKCwn9UaGJMAAASeSURBVHja7JpbkuMgDEUFiLdf7H+zU9Xj6iSjTBMTAXaa82/sa+lKAhsGg8FgMBgMBoPB4IMRAj4Bp1JSDi6PT194uDoqfaHh4pi0g3BtRNq5uuGHkLMxhJyNIeRsfIKQScgYbdqxMUoxwbVAEVednqLXKK7R5FFuOmXQmzy5GONCepHgDJwUdDodQrszxkVsqYDtbMVM6lSIlnAe/sq4vJQfZKhw6yNBnVuKeC7DLlKYfzu7EW6xz6X09gquibI68dOIIp7W6BWhI06RZFok5mctlAu9UkIvTCBdzr8+NHp6tYEuSJUeULM5Nv2aWZ0hKFuu8lAh+Yo3Q2uMJe+yQAi1mTXQFK8eZEQs31hhfFzLQ0MkqZzFQmgNb2gUSXrZm1tdr1sroTafkWPPjnO6Y4MmbCSjS4RQ17VWspEawyIEjG2lhOpYWI+DcGmpRBJTcgjJL95PBxVyJiX+zuaixkmjuLO8h2oYddMx1Tkyne5uYaAWluhgFEKVWCCwFyxR7xDbV5+FJTEiq5D8ffgNIut+VpB1bRJIH6wlBG6dMQA7jniwnhC09ZILVVm4p7QzlaWxQuBlLe1Taae0867AiiguiXPpZXU+Puq0oxGOgeHLtIcvu92xTgsRBRfPs3xnrJM1ArJCM9YKIZEFNYSxTkr+gERoSPwOyaUDUiMkumBB1mHCMvcQDY3RvL1kaR0QmtMLMIDfDoHmKM5/VB3nfq10UHGciWqgOYbRnqZkj8O/mzN8meWhA5Ivt0IPq1O7B7aatUAXFq66Jfs0EXp/f5Y30jsjNNmINCbwFGBkqBpMVRMv/v8x0xPEtAPd4NnUrWRH0BzL4lJNakZzFha39+si1O3wBlN3r9+5feJYxEA5kxATx/gtOAYEyJH5iUlHhFI4hpT47ugrFPl8WjwARwYh4R2PvZvjoVyIETt2X8OK/zBlj9huKMxYifL8IbDgN788M+YDmn+luKUDaP9a3T5GyGd3vqXZdAz/krcOInMOybvEpYOoV1rHUeaXlxKZke4A5vcI+dPe2eY2CANRcAlB4Aocc//Lts0PSgUJEQKzHr25wSoQ/LE7D/NocV52C80Ff79x3GDX2Myd8UEELVGOWzT2ThaNRyzjGw/LeMzGCrPVtcsPGmffNR0HoQ7oMEemmENszLWCNbsWKf4uejhXb5jL0Kuvpx/TEwFpGHiohQPXVINpc+I0nnloBazvas701S7bl93APO0hWrWUQ5v8OWMXmEGY2WhSKHs0CTMsxhnfwwxUckZcMUPH8zHwdHYhae2mVYP5WFWC2QCRV3B0IhzBy/nKnbCp3JEECaqlMlvYvI4ThaW85smYQ90WLQPxfJletCzEs/WGg2VgKZwMxQonOQpQjpR1qcntCtXk/jAwxMUglfSq3Pv2eSE3N3Lv6UeZU6fPdOvJk279lQD/qzwB/ptIgtStRhIkp5EEoJAIUGzHs5R23EnrqYxfqjjuIHpMtoKEDYHin6Zoke1Arug9kIsUkfZHX4X/oXWhuNA6Vx3QKkSF+EaFeEOFeAMTa44JmudE/1tXP09UCVSlv+hCCCGEEEII8Y5vyoFFetQ9yloAAAAASUVORK5CYII="}]),X=n(null),ee=k({page:0,total:100,maxPage:2,pageSize:10,search:{radius:1,order:0}}),te=n(!1),ae=n([]),ie=k({progressWidth:"200px"});function se(){ue(),X.value.change("loading")}function le(e){if(1===e.detail.controlId)ne()}function ne(){u().then((e=>{U.value=[{latitude:e.latitude,longitude:e.longitude,iconPath:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADYAAABOCAMAAABc6hVDAAAAXVBMVEUAAACJvdISx3wRvnhyv8JgwbQ6w5osxI9RwaogxYcSxn0Sx3wSxnxGwqETxnwTxnwTxn0TxnwTxX4TxnwTx30Sxn0Sxn0SxX0SxX0Sxn0Sxn0SxnwSxnwTyH4RzH4gTuwPAAAAHnRSTlMAsvENvsjf6tD1NeDT16talXYiuRmiQSlpwYH46E4LWE2XAAACPElEQVRYw+2W2ZqiMBCFYyAbCQFkUbD7vP9jTtAeEasUem7Hcyn+qTXni+CUFecYJCBDPBeZ2KVjFT0e5GPVbUJF/QXA6dKqJFsaN5N18RY69RIwNj88KLcGkP3pJZQ1CdILs5A6gU32oqh2gTiwZQMOHk4dXko5+IFSlYRZQnEBDWRFqAv0YUMalydukIRiOTmsGu8pxXP+uFBZC3PYJYN2mUMDl+/DcofmnqKEOuyUgvybZs8Xxkuj/tleiXw/lkPetqUmwfaE6zwbLFfWKvYDvrqEVVzzlcFVRnFDqBIWYZlEINu+byWYAixiGjWTo4GcjtcCGglDs/SZKOBorFDcTSLQeA6FOMPQiSbqztFdMDiLHiX5tREPmsi5JaIIsKTBK9fovp6LtwiC5KAQxUqR/kMKQD2fVa+xGvYZwz9ie5KkmORa4lctyTzXksgM4LzyNHYADdkCtfKZo4clW9Rwy2UwHu/UCEO/F9x1yx18lV3rqjwc+QzfCdHCMr6NUDdNHcA4vEUrBN3lWdbhKjcfybbsyDuQKrUuFe9Bc+XkDmyoRH+7UaTqDV8efrbnd/YamQvMi7/6NcxezKBetjVA700xZCufKfd1URbrNYfdpixQiZUaoNyONXsa4fRWXWi2Hyb8s4RqCG8SLTE7PKuuBlzJPdWsA+rXr8phTKB+tjKdoHEQ7/TdXhJptFV5krLaJObSfostFVOQeJAMUyF26VRNcQxAGONUncSvlEl5W78P9sE+2Af7r7E/JM8yI9ZsVnYAAAAASUVORK5CYII="}],E.value=[{latitude:e.latitude,longitude:e.longitude,radius:1e3,fillColor:"#00b8002e"}],ue("refresh")}))}function oe(e){const t=1+e.value;ee.search.radius=t,E.value=[{latitude:h(),longitude:d(),radius:1e3*t,fillColor:"#00b8002e"}],re("refresh")}T((()=>{})),C((()=>{x.msg("使用模拟定位"),ne()}));let re=S(ue,500);function ue(e="add"){"add"===e&&ee.page{const{rows:a,total:i}=t;if("add"===e){const e=ee.pageSize*(ee.page-1),t=ae.value.length,i=a;ae.value.splice(e,t,...i)}else ae.value=a;ee.total=t.total,ee.maxPage=Math.ceil(ee.total/ee.pageSize),a.length{const n=L,o=w,r=I(z("latestHotestStatus"),N),u=y,x=I(z("Salary-Expectation"),Q),S=I(z("matchingDegree"),K),k=I(z("uni-icons"),q),T=I(z("convert-distance"),G),C=I(z("loadmore"),O),V=j;return t(),c(V,{"scroll-y":!0,class:"nearby-scroll",onScrolltolower:se},{default:g((()=>[m(o,{class:"nearby-map",onTouchmove:l[0]||(l[0]=p((()=>{}),["stop","prevent"]))},{default:g((()=>[m(n,{style:{width:"100%",height:"300px"},latitude:s(h)(),longitude:s(d)(),markers:U.value,circles:E.value,controls:P.value,onControltap:le},null,8,["latitude","longitude","markers","circles","controls"])])),_:1}),m(o,{class:"nearby-list"},{default:g((()=>[m(o,{class:"list-head",onTouchmove:l[2]||(l[2]=p((()=>{}),["stop","prevent"]))},{default:g((()=>[m(o,{class:"tab-options"},{default:g((()=>[m(o,{class:"tab-scroll",ref_key:"progress",ref:B},{default:g((()=>[m(o,{class:"tab-scr-d",style:f(`width: ${ie.progressWidth}`)},{default:g((()=>[m(o,{class:""},{default:g((()=>[v("1km")])),_:1}),m(o,{class:""},{default:g((()=>[v("5km")])),_:1}),m(o,{class:""},{default:g((()=>[v("10km")])),_:1})])),_:1},8,["style"]),m($,{strokeWidth:"7px",max:10,activeColor:"#13C57C",handleWidth:"10px",handleHeight:"10px",handleBorderRadius:"5px",handleColor:"#4778EC",onChange:oe,showInfo:!1,width:ie.progressWidth},null,8,["width"])])),_:1},512),m(o,{class:"tab-op-right"},{default:g((()=>[m(o,{class:"tab-recommend"},{default:g((()=>[m(r,{onConfirm:de})])),_:1}),m(o,{class:"tab-filter",onClick:l[1]||(l[1]=e=>H("onFilter",0))},{default:g((()=>[D(m(o,{class:"tab-number"},{default:g((()=>[v(i(s(F)(ee.total)),1)])),_:1},512),[[M,ee.total]]),m(u,{class:"image",src:Y})])),_:1})])),_:1})])),_:1})])),_:1}),m(o,{class:"one-cards"},{default:g((()=>[(t(!0),a(R,null,W(ae.value,((e,a)=>(t(),c(o,{class:"card-box",key:e.jobId,onClick:t=>{return a=e.jobId,void _(`/packageA/pages/post/post?jobId=${btoa(a)}`);var a}},{default:g((()=>[m(o,{class:"box-row mar_top0"},{default:g((()=>[m(o,{class:"row-left"},{default:g((()=>[v(i(e.jobTitle),1)])),_:2},1024),m(o,{class:"row-right"},{default:g((()=>[m(x,{"max-salary":e.maxSalary,"min-salary":e.minSalary},null,8,["max-salary","min-salary"])])),_:2},1024)])),_:2},1024),m(o,{class:"box-row"},{default:g((()=>[m(o,{class:"row-left"},{default:g((()=>[e.education?(t(),c(o,{key:0,class:"row-tag"},{default:g((()=>[m(J,{dictType:"education",value:e.education},null,8,["value"])])),_:2},1024)):b("",!0),e.experience?(t(),c(o,{key:1,class:"row-tag"},{default:g((()=>[m(J,{dictType:"experience",value:e.experience},null,8,["value"])])),_:2},1024)):b("",!0)])),_:2},1024)])),_:2},1024),m(o,{class:"box-row mar_top0"},{default:g((()=>[m(o,{class:"row-item mineText"},{default:g((()=>[v(i(e.postingDate||"发布日期"),1)])),_:2},1024),m(o,{class:"row-item mineText"},{default:g((()=>[v(i(s(A)(e.vacancies)),1)])),_:2},1024),m(o,{class:"row-item mineText textblue"},{default:g((()=>[m(S,{job:e},null,8,["job"])])),_:2},1024),m(o,{class:"row-item"},{default:g((()=>[m(k,{type:"star",size:"28"})])),_:1})])),_:2},1024),m(o,{class:"box-row"},{default:g((()=>[m(o,{class:"row-left mineText"},{default:g((()=>[v(i(e.companyName),1)])),_:2},1024),m(o,{class:"row-right mineText"},{default:g((()=>[v(" 青岛 "),m(J,{dictType:"area",value:e.jobLocationAreaCode},null,8,["value"]),m(T,{alat:e.latitude,along:e.longitude,blat:s(h)(),blong:s(d)()},null,8,["alat","along","blat","blong"])])),_:2},1024)])),_:2},1024)])),_:2},1032,["onClick"])))),128))])),_:1})])),_:1}),m(C,{ref_key:"loadmoreRef",ref:X},null,512)])),_:1})}}},[["__scopeId","data-v-bd732364"]]),te=u({__name:"two",emits:["onFilter"],setup(l,{expose:o,emit:r}){const{getLocation:u,longitude:d,latitude:h}=Z(),{getDictSelectOption:f,oneDictData:x}=V(),{$api:_,navTo:S,vacanciesTo:A,formatTotal:T}=e("globalFunction"),C=r,L=k({tabIndex:"all",tabBxText:"buxianquyu"}),U=n(!1),E=k({area:0}),P=n(null),X=n({}),$=k({page:0,total:0,maxPage:2,pageSize:10,search:{order:0}}),ee=n([]);function te(){se(),P.value.change("loading")}function ae(e){L.tabIndex=e,$.search.jobTitle="all"===e?"":H().userInfo.jobTitle[e],se("refresh")}function ie(e,t){E.area=e,se("refresh")}function se(e="add"){"add"===e&&$.page<$.maxPage&&($.page+=1),"refresh"===e&&($.page=1,$.maxPage=2);let t={current:$.page,pageSize:$.pageSize,countyIds:[E.area],...$.search};E.area===L.tabBxText&&(t.countyIds=[]),_.createRequest("/app/job/countyJob",t,"POST").then((t=>{const{rows:a,total:i}=t;if("add"===e){const e=$.pageSize*($.page-1),t=ee.value.length,i=a;ee.value.splice(e,t,...i)}else ee.value=a;$.total=t.total,$.maxPage=Math.ceil($.total/$.pageSize),a.length<$.pageSize?P.value.change("noMore"):P.value.change("more")}))}function le(e){$.search.order=e.value,se("refresh")}return F((()=>{X.value=H().userInfo})),o({loadData:async function(){try{if(U.value)return;const e=x("area")[0];E.area=e.value,se("refresh"),U.value=!0}catch(e){throw U.value=!1,e}},handleFilterConfirm:function(e){$.search={order:$.search.order};for(const[t,a]of Object.entries(e))$.search[t]=a.join(",");se("refresh")}}),(e,l)=>{const n=w,o=j,r=I(z("uni-icons"),q),u=I(z("latestHotestStatus"),N),f=y,_=I(z("Salary-Expectation"),Q),k=I(z("matchingDegree"),K),V=I(z("convert-distance"),G),F=I(z("loadmore"),O);return t(),c(o,{"scroll-y":!0,class:"nearby-scroll",onScrolltolower:te},{default:g((()=>[m(n,{class:"two-head"},{default:g((()=>[(t(!0),a(R,null,W(s(x)("area"),((e,a)=>(t(),c(n,{class:B(["head-item",{active:e.value===E.area}]),key:e.value,onClick:t=>ie(e.value)},{default:g((()=>[v(i(e.label),1)])),_:2},1032,["class","onClick"])))),128)),m(n,{class:B(["head-item",{active:L.tabBxText===E.area}]),onClick:l[0]||(l[0]=t=>ie(L.tabBxText,e.item))},{default:g((()=>[v(" 不限区域 ")])),_:1},8,["class"])])),_:1}),m(n,{class:"nearby-list"},{default:g((()=>[m(n,{class:"list-head",onTouchmove:l[4]||(l[4]=p((()=>{}),["stop","prevent"]))},{default:g((()=>[m(n,{class:"tab-options"},{default:g((()=>[m(o,{"scroll-x":!0,"show-scrollbar":!1,class:"tab-scroll",onTouchmove:l[2]||(l[2]=p((()=>{}),["stop"]))},{default:g((()=>[m(n,{class:"tab-op-left"},{default:g((()=>[m(n,{class:B(["tab-list",{tabchecked:"all"===L.tabIndex}]),onClick:l[1]||(l[1]=e=>ae("all"))},{default:g((()=>[v(" 全部 ")])),_:1},8,["class"]),(t(!0),a(R,null,W(X.value.jobTitle,((e,a)=>(t(),c(n,{class:B(["tab-list",{tabchecked:L.tabIndex===a}]),onClick:e=>ae(a),key:a},{default:g((()=>[v(i(e),1)])),_:2},1032,["class","onClick"])))),128))])),_:1})])),_:1}),m(n,{class:"tab-op-right"},{default:g((()=>[m(r,{type:"plusempty",style:{"margin-right":"10rpx"},size:"20"}),m(n,{class:"tab-recommend"},{default:g((()=>[m(u,{onConfirm:le})])),_:1}),m(n,{class:"tab-filter",onClick:l[3]||(l[3]=e=>C("onFilter",1))},{default:g((()=>[D(m(n,{class:"tab-number"},{default:g((()=>[v(i(s(T)($.total)),1)])),_:1},512),[[M,$.total]]),m(f,{class:"image",src:Y})])),_:1})])),_:1})])),_:1})])),_:1}),m(n,{class:"one-cards"},{default:g((()=>[(t(!0),a(R,null,W(ee.value,((e,a)=>(t(),c(n,{class:"card-box",key:e.jobId,onClick:t=>{return a=e.jobId,void S(`/packageA/pages/post/post?jobId=${btoa(a)}`);var a}},{default:g((()=>[m(n,{class:"box-row mar_top0"},{default:g((()=>[m(n,{class:"row-left"},{default:g((()=>[v(i(e.jobTitle),1)])),_:2},1024),m(n,{class:"row-right"},{default:g((()=>[m(_,{"max-salary":e.maxSalary,"min-salary":e.minSalary},null,8,["max-salary","min-salary"])])),_:2},1024)])),_:2},1024),m(n,{class:"box-row"},{default:g((()=>[m(n,{class:"row-left"},{default:g((()=>[e.education?(t(),c(n,{key:0,class:"row-tag"},{default:g((()=>[m(J,{dictType:"education",value:e.education},null,8,["value"])])),_:2},1024)):b("",!0),e.experience?(t(),c(n,{key:1,class:"row-tag"},{default:g((()=>[m(J,{dictType:"experience",value:e.experience},null,8,["value"])])),_:2},1024)):b("",!0)])),_:2},1024)])),_:2},1024),m(n,{class:"box-row mar_top0"},{default:g((()=>[m(n,{class:"row-item mineText"},{default:g((()=>[v(i(e.postingDate||"发布日期"),1)])),_:2},1024),m(n,{class:"row-item mineText"},{default:g((()=>[v(i(s(A)(e.vacancies)),1)])),_:2},1024),m(n,{class:"row-item mineText textblue"},{default:g((()=>[m(k,{job:e},null,8,["job"])])),_:2},1024),m(n,{class:"row-item"},{default:g((()=>[m(r,{type:"star",size:"28"})])),_:1})])),_:2},1024),m(n,{class:"box-row"},{default:g((()=>[m(n,{class:"row-left mineText"},{default:g((()=>[v(i(e.companyName),1)])),_:2},1024),m(n,{class:"row-right mineText"},{default:g((()=>[v(" 青岛 "),m(J,{dictType:"area",value:e.jobLocationAreaCode},null,8,["value"]),m(V,{alat:e.latitude,along:e.longitude,blat:s(h)(),blong:s(d)()},null,8,["alat","along","blat","blong"])])),_:2},1024)])),_:2},1024)])),_:2},1032,["onClick"])))),128))])),_:1})])),_:1}),m(F,{ref_key:"loadmoreRef",ref:P},null,512)])),_:1})}}},[["__scopeId","data-v-71795ae6"]]),ae=u({__name:"three",emits:["onFilter"],setup(l,{expose:o,emit:r}){const{$api:u,navTo:d,vacanciesTo:h,formatTotal:f}=e("globalFunction"),{getLocation:x,longitude:_,latitude:S}=Z(),A=r,C=n([]),L=n(!1),V=n([]),E=n({}),P=k({subwayList:[],subwayStart:{},subwayEnd:{},value:0,subwayId:0,downup:!0,dont:0,dontObj:{},tabIndex:"all"}),X=k({page:0,total:0,maxPage:2,pageSize:10,search:{order:0}}),$=n([]),ee=n(null);function te(){le(),ee.value.change("loading")}function ae(e){P.tabIndex=e,X.search.jobTitle="all"===e?"":H().userInfo.jobTitle[e],le("refresh")}function ie(e){if(e){return V.value.filter((t=>t.value===e))[0].text}return""}function se(e){const t=V.value[e.detail.value],a=P.subwayList.filter((e=>e.lineId===t.value))[0];C.value=a,P.value=e.detail.value,P.subwayId=a.lineId;const i=a.subwayStationList;P.downup=!0,i.length&&(P.dont=0,P.dontObj=i[0],P.subwayStart=i[0],P.subwayEnd=i[i.length-1])}function le(e="add"){"add"===e&&X.page{const{rows:a,total:i}=t;if("add"===e){const e=X.pageSize*(X.page-1),t=$.value.length,i=a;$.value.splice(e,t,...i)}else $.value=a;X.total=t.total,X.maxPage=Math.ceil(X.total/X.pageSize),a.length{u.createRequest("/app/common/subway").then((e=>{P.subwayList=e.data,C.value=e.data[0],P.subwayId=e.data[0].lineId,P.value=0,P.dont=0,V.value=e.data.map((e=>({text:e.lineName,value:e.lineId})));const t=e.data[0].subwayStationList;t.length&&(P.dont=0,P.dontObj=t[0],P.subwayStart=t[0],P.subwayEnd=t[t.length-1])}))})),F((()=>{E.value=H().userInfo})),o({loadData:async function(){try{if(L.value)return;le("refresh"),L.value=!0}catch(e){throw L.value=!1,e}},handleFilterConfirm:function(e){X.search={order:X.search.order};for(const[t,a]of Object.entries(e))X.search[t]=a.join(",");le("refresh")}}),(e,l)=>{const n=w,o=I(z("uni-icons"),q),r=U,u=j,x=I(z("latestHotestStatus"),N),k=y,T=I(z("Salary-Expectation"),Q),L=I(z("matchingDegree"),K),F=I(z("convert-distance"),G),H=I(z("loadmore"),O);return t(),c(u,{"scroll-y":!0,class:"nearby-scroll",onScrolltolower:te},{default:g((()=>[m(n,{class:"three-head",onTouchmove:l[2]||(l[2]=p((()=>{}),["stop","prevent"]))},{default:g((()=>[m(u,{class:"scroll-head","scroll-x":!0,"show-scrollbar":!1},{default:g((()=>[m(n,{class:"metro"},{default:g((()=>[m(n,{class:"metro-one"},{default:g((()=>[m(r,{class:"one-picker",onChange:se,onCancel:l[0]||(l[0]=e=>P.downup=!0),onClick:l[1]||(l[1]=e=>P.downup=!1),value:P.value,"range-key":"text",range:V.value},{default:g((()=>[m(n,{class:"one-picker"},{default:g((()=>[m(n,{class:"uni-input"},{default:g((()=>[v(i(ie(P.subwayId)),1)])),_:1}),P.downup?(t(),c(o,{key:0,type:"down",size:"16"})):(t(),c(o,{key:1,type:"up",size:"16"}))])),_:1})])),_:1},8,["value","range"])])),_:1}),m(n,{class:"metro-two"},{default:g((()=>[v(i(P.subwayStart.stationName)+"-"+i(P.subwayEnd.stationName),1)])),_:1}),m(n,{class:"metro-three"},{default:g((()=>[m(n,{class:"three-background"},{default:g((()=>[m(n,{class:"three-items"},{default:g((()=>[(t(!0),a(R,null,W(C.value.subwayStationList,((e,a)=>(t(),c(n,{class:"three-item",onClick:t=>function(e,t){console.log(e,t),P.dont=t,P.dontObj=e,le("refresh")}(e,a),key:a},{default:g((()=>[m(n,{class:B(["item-dont",{dontstart:0===a,dontend:a===C.value.subwayStationList.length-1,donted:a===P.dont}])},null,8,["class"]),m(n,{class:"item-text"},{default:g((()=>[v(i(e.stationName),1)])),_:2},1024)])),_:2},1032,["onClick"])))),128))])),_:1})])),_:1})])),_:1})])),_:1})])),_:1})])),_:1}),m(n,{class:"nearby-list"},{default:g((()=>[m(n,{class:"list-head",onTouchmove:l[6]||(l[6]=p((()=>{}),["stop","prevent"]))},{default:g((()=>[m(n,{class:"tab-options"},{default:g((()=>[m(u,{"scroll-x":!0,"show-scrollbar":!1,class:"tab-scroll",onTouchmove:l[4]||(l[4]=p((()=>{}),["stop"]))},{default:g((()=>[m(n,{class:"tab-op-left"},{default:g((()=>[m(n,{class:B(["tab-list",{tabchecked:"all"===P.tabIndex}]),onClick:l[3]||(l[3]=e=>ae("all"))},{default:g((()=>[v(" 全部 ")])),_:1},8,["class"]),(t(!0),a(R,null,W(E.value.jobTitle,((e,a)=>(t(),c(n,{class:B(["tab-list",{tabchecked:P.tabIndex===a}]),key:a,onClick:e=>ae(a)},{default:g((()=>[v(i(e),1)])),_:2},1032,["class","onClick"])))),128))])),_:1})])),_:1}),m(n,{class:"tab-op-right"},{default:g((()=>[m(o,{type:"plusempty",style:{"margin-right":"10rpx"},size:"20"}),m(n,{class:"tab-recommend"},{default:g((()=>[m(x,{onConfirm:ne})])),_:1}),m(n,{class:"tab-filter",onClick:l[5]||(l[5]=e=>A("onFilter",2))},{default:g((()=>[D(m(n,{class:"tab-number"},{default:g((()=>[v(i(s(f)(X.total)),1)])),_:1},512),[[M,X.total]]),m(k,{class:"image",src:Y})])),_:1})])),_:1})])),_:1})])),_:1}),m(n,{class:"one-cards"},{default:g((()=>[(t(!0),a(R,null,W($.value,((e,a)=>(t(),c(n,{class:"card-box",key:e.jobId,onClick:t=>{return a=e.jobId,void d(`/packageA/pages/post/post?jobId=${btoa(a)}`);var a}},{default:g((()=>[m(n,{class:"box-row mar_top0"},{default:g((()=>[m(n,{class:"row-left"},{default:g((()=>[v(i(e.jobTitle),1)])),_:2},1024),m(n,{class:"row-right"},{default:g((()=>[m(T,{"max-salary":e.maxSalary,"min-salary":e.minSalary},null,8,["max-salary","min-salary"])])),_:2},1024)])),_:2},1024),m(n,{class:"box-row"},{default:g((()=>[m(n,{class:"row-left"},{default:g((()=>[e.education?(t(),c(n,{key:0,class:"row-tag"},{default:g((()=>[m(J,{dictType:"education",value:e.education},null,8,["value"])])),_:2},1024)):b("",!0),e.experience?(t(),c(n,{key:1,class:"row-tag"},{default:g((()=>[m(J,{dictType:"experience",value:e.experience},null,8,["value"])])),_:2},1024)):b("",!0)])),_:2},1024)])),_:2},1024),m(n,{class:"box-row mar_top0"},{default:g((()=>[m(n,{class:"row-item mineText"},{default:g((()=>[v(i(e.postingDate||"发布日期"),1)])),_:2},1024),m(n,{class:"row-item mineText"},{default:g((()=>[v(i(s(h)(e.vacancies)),1)])),_:2},1024),m(n,{class:"row-item mineText textblue"},{default:g((()=>[m(L,{job:e},null,8,["job"])])),_:2},1024),m(n,{class:"row-item"},{default:g((()=>[m(o,{type:"star",size:"28"})])),_:1})])),_:2},1024),m(n,{class:"box-row"},{default:g((()=>[m(n,{class:"row-left mineText"},{default:g((()=>[v(i(e.companyName),1)])),_:2},1024),m(n,{class:"row-right mineText"},{default:g((()=>[v(" 青岛 "),m(J,{dictType:"area",value:e.jobLocationAreaCode},null,8,["value"]),m(F,{alat:e.latitude,along:e.longitude,blat:s(S)(),blong:s(_)()},null,8,["alat","along","blat","blong"])])),_:2},1024)])),_:2},1024)])),_:2},1032,["onClick"])))),128))])),_:1})])),_:1}),m(H,{ref_key:"loadmoreRef",ref:ee},null,512)])),_:1})}}},[["__scopeId","data-v-f455b44e"]]),ie=u({__name:"four",emits:["onFilter"],setup(l,{expose:o,emit:r}){V();const{$api:u,navTo:d,vacanciesTo:h,formatTotal:f}=e("globalFunction"),{getLocation:x,longitude:_,latitude:S}=Z(),A=r,C=k({tabIndex:"all",comlist:[],comId:0});k({area:0,areaInfo:{}});const L=n(null),U=n({}),E=n(!1),P=k({page:0,total:0,maxPage:2,pageSize:10,search:{order:0}}),X=n([]);function $(){te(),L.value.change("loading")}function ee(e){C.tabIndex=e,P.search.jobTitle="all"===e?"":H().userInfo.jobTitle[e],te("refresh")}function te(e="add"){"add"===e&&P.page{const{rows:a,total:i}=t;if("add"===e){const e=P.pageSize*(P.page-1),t=X.value.length,i=a;X.value.splice(e,t,...i)}else X.value=a;P.total=t.total,P.maxPage=Math.ceil(P.total/P.pageSize),a.length{U.value=H().userInfo})),T((()=>{u.createRequest("/app/common/commercialArea").then((e=>{e.data.length&&(C.comlist=e.data,C.areaInfo=e.data[0],C.comId=e.data[0].commercialAreaId)}))})),o({loadData:async function(){try{if(E.value)return;te("refresh"),E.value=!0}catch(e){throw E.value=!1,e}},handleFilterConfirm:function(e){P.search={order:P.search.order};for(const[t,a]of Object.entries(e))P.search[t]=a.join(",");te("refresh")}}),(e,l)=>{const n=w,o=j,r=I(z("uni-icons"),q),u=I(z("latestHotestStatus"),N),x=y,k=I(z("Salary-Expectation"),Q),T=I(z("matchingDegree"),K),V=I(z("convert-distance"),G),F=I(z("loadmore"),O);return t(),c(o,{"scroll-y":!0,class:"nearby-scroll",onScrolltolower:$},{default:g((()=>[m(n,{class:"two-head"},{default:g((()=>[(t(!0),a(R,null,W(C.comlist,((e,a)=>(t(),c(n,{class:B(["head-item",{active:C.comId===e.commercialAreaId}]),key:e.commercialAreaId,onClick:t=>{return a=e,C.areaInfo=a,C.comId=a.commercialAreaId,void te("refresh");var a}},{default:g((()=>[v(i(e.commercialAreaName),1)])),_:2},1032,["class","onClick"])))),128))])),_:1}),m(n,{class:"nearby-list"},{default:g((()=>[m(n,{class:"list-head",onTouchmove:l[3]||(l[3]=p((()=>{}),["stop","prevent"]))},{default:g((()=>[m(n,{class:"tab-options"},{default:g((()=>[m(o,{"scroll-x":!0,"show-scrollbar":!1,class:"tab-scroll",onTouchmove:l[1]||(l[1]=p((()=>{}),["stop"]))},{default:g((()=>[m(n,{class:"tab-op-left"},{default:g((()=>[m(n,{class:B(["tab-list",{tabchecked:"all"===C.tabIndex}]),onClick:l[0]||(l[0]=e=>ee("all"))},{default:g((()=>[v(" 全部 ")])),_:1},8,["class"]),(t(!0),a(R,null,W(U.value.jobTitle,((e,a)=>(t(),c(n,{class:B(["tab-list",{tabchecked:C.tabIndex===a}]),onClick:e=>ee(a),key:a},{default:g((()=>[v(i(e),1)])),_:2},1032,["class","onClick"])))),128))])),_:1})])),_:1}),m(n,{class:"tab-op-right"},{default:g((()=>[m(r,{type:"plusempty",style:{"margin-right":"10rpx"},size:"20"}),m(n,{class:"tab-recommend"},{default:g((()=>[m(u,{onConfirm:ae})])),_:1}),m(n,{class:"tab-filter",onClick:l[2]||(l[2]=e=>A("onFilter",3))},{default:g((()=>[D(m(n,{class:"tab-number"},{default:g((()=>[v(i(s(f)(P.total)),1)])),_:1},512),[[M,P.total]]),m(x,{class:"image",src:Y})])),_:1})])),_:1})])),_:1})])),_:1}),m(n,{class:"one-cards"},{default:g((()=>[(t(!0),a(R,null,W(X.value,((e,a)=>(t(),c(n,{class:"card-box",key:e.jobId,onClick:t=>{return a=e.jobId,void d(`/packageA/pages/post/post?jobId=${btoa(a)}`);var a}},{default:g((()=>[m(n,{class:"box-row mar_top0"},{default:g((()=>[m(n,{class:"row-left"},{default:g((()=>[v(i(e.jobTitle),1)])),_:2},1024),m(n,{class:"row-right"},{default:g((()=>[m(k,{"max-salary":e.maxSalary,"min-salary":e.minSalary},null,8,["max-salary","min-salary"])])),_:2},1024)])),_:2},1024),m(n,{class:"box-row"},{default:g((()=>[m(n,{class:"row-left"},{default:g((()=>[e.education?(t(),c(n,{key:0,class:"row-tag"},{default:g((()=>[m(J,{dictType:"education",value:e.education},null,8,["value"])])),_:2},1024)):b("",!0),e.experience?(t(),c(n,{key:1,class:"row-tag"},{default:g((()=>[m(J,{dictType:"experience",value:e.experience},null,8,["value"])])),_:2},1024)):b("",!0)])),_:2},1024)])),_:2},1024),m(n,{class:"box-row mar_top0"},{default:g((()=>[m(n,{class:"row-item mineText"},{default:g((()=>[v(i(e.postingDate||"发布日期"),1)])),_:2},1024),m(n,{class:"row-item mineText"},{default:g((()=>[v(i(s(h)(e.vacancies)),1)])),_:2},1024),m(n,{class:"row-item mineText textblue"},{default:g((()=>[m(T,{job:e},null,8,["job"])])),_:2},1024),m(n,{class:"row-item"},{default:g((()=>[m(r,{type:"star",size:"28"})])),_:1})])),_:2},1024),m(n,{class:"box-row"},{default:g((()=>[m(n,{class:"row-left mineText"},{default:g((()=>[v(i(e.companyName),1)])),_:2},1024),m(n,{class:"row-right mineText"},{default:g((()=>[v(" 青岛 "),m(J,{dictType:"area",value:e.jobLocationAreaCode},null,8,["value"]),m(V,{alat:e.latitude,along:e.longitude,blat:s(S)(),blong:s(_)()},null,8,["alat","along","blat","blong"])])),_:2},1024)])),_:2},1024)])),_:2},1032,["onClick"])))),128))])),_:1})])),_:1}),m(F,{ref_key:"loadmoreRef",ref:L},null,512)])),_:1})}}},[["__scopeId","data-v-611e9007"]]),se=u({__name:"nearby",setup(i){e("globalFunction");const s=k([!1,!1,!1,!1]),l=[n(null),n(null),n(null),n(null)],o=[ee,te,ae,ie],r=n(0),u=n(!1),d=n(!1),h=n(!1),f=n(!1),p=k({current:0,all:[{}]});function b(e){var t;null==(t=l[r.value].value)||t.handleFilterConfirm(e)}function x(e){switch(r.value=e,e){case 0:u.value=!0;break;case 1:d.value=!0;break;case 2:h.value=!0;break;case 3:f.value=!0}}C((()=>{S(p.current)}));function y(e){const t=e.detail.current;p.current=t,S(t)}function _(e){p.current=e,S(e)}function S(e){var t;s[e]||(null==(t=l[e].value)||t.loadData(),s[e]=!0)}return(e,i)=>{const s=w,n=P,r=E;return t(),c(s,{class:"app-container"},{default:g((()=>[m(s,{class:"nearby-head"},{default:g((()=>[m(s,{class:B(["head-item",{actived:0===p.current}]),onClick:i[0]||(i[0]=e=>_(0))},{default:g((()=>[v("附近工作")])),_:1},8,["class"]),m(s,{class:B(["head-item",{actived:1===p.current}]),onClick:i[1]||(i[1]=e=>_(1))},{default:g((()=>[v("区县工作")])),_:1},8,["class"]),m(s,{class:B(["head-item",{actived:2===p.current}]),onClick:i[2]||(i[2]=e=>_(2))},{default:g((()=>[v("地铁周边")])),_:1},8,["class"]),m(s,{class:B(["head-item",{actived:3===p.current}]),onClick:i[3]||(i[3]=e=>_(3))},{default:g((()=>[v("商圈附近")])),_:1},8,["class"])])),_:1}),m(s,{class:"nearby-content"},{default:g((()=>[m(r,{class:"swiper",current:p.current,onChange:y},{default:g((()=>[(t(),a(R,null,W(4,((e,a)=>m(n,{class:"swiper-item",key:a},{default:g((()=>[(t(),c(z(o[a]),{onOnFilter:x,ref_for:!0,ref:e=>((e,t)=>{e&&(l[t].value=e)})(e,a)},null,544))])),_:2},1024))),64))])),_:1},8,["current"])])),_:1}),m(X,{area:!1,show:u.value,"onUpdate:show":i[4]||(i[4]=e=>u.value=e),onConfirm:b},null,8,["show"]),m(X,{area:!1,show:d.value,"onUpdate:show":i[5]||(i[5]=e=>d.value=e),onConfirm:b},null,8,["show"]),m(X,{area:!1,show:h.value,"onUpdate:show":i[6]||(i[6]=e=>h.value=e),onConfirm:b},null,8,["show"]),m(X,{area:!1,show:f.value,"onUpdate:show":i[7]||(i[7]=e=>f.value=e),onConfirm:b},null,8,["show"])])),_:1})}}},[["__scopeId","data-v-97e41799"]]);export{se as default}; diff --git a/unpackage/dist/build/web/assets/post-DThTcaRL.css b/unpackage/dist/build/web/assets/post-DThTcaRL.css deleted file mode 100644 index 63f117a..0000000 --- a/unpackage/dist/build/web/assets/post-DThTcaRL.css +++ /dev/null @@ -1 +0,0 @@ -[data-v-57ea6143] .amap-logo,[data-v-57ea6143] .amap-copyright{opacity:0!important}.container[data-v-57ea6143]{display:flex;flex-direction:column;background-color:#f8f8f8}.job-header[data-v-57ea6143]{padding:.625rem 1.25rem;background-color:#fff;margin-bottom:.3125rem}.job-header .job-title[data-v-57ea6143]{font-size:1.71875rem;font-weight:700;color:#333;margin-bottom:.3125rem}.job-header .job-info[data-v-57ea6143]{display:flex;justify-content:space-between;margin-bottom:.3125rem}.job-header .job-info .salary[data-v-57ea6143]{color:#3b82f6;font-size:1.3125rem;font-weight:700}.job-header .job-info .views[data-v-57ea6143]{font-size:.75rem;color:#999}.job-header .location-info[data-v-57ea6143]{font-size:.75rem;color:#666}.job-header .location-info .location[data-v-57ea6143],.job-header .location-info .source[data-v-57ea6143],.job-header .location-info .date[data-v-57ea6143]{margin-right:.3125rem;margin-top:.625rem}.job-header .location-info .source[data-v-57ea6143]{margin-left:.9375rem}.job-details[data-v-57ea6143]{background-color:#fff;padding:.625rem 1.25rem;margin-bottom:.3125rem}.job-details .details-title[data-v-57ea6143]{font-size:1.28125rem;font-weight:700;margin-bottom:.46875rem}.job-details .tags[data-v-57ea6143]{display:flex;gap:.3125rem;margin:.46875rem 0}.job-details .tags .tag[data-v-57ea6143]{background-color:#3b82f6;color:#fff;padding:.15625rem .46875rem;border-radius:.46875rem;font-size:.6875rem}.job-details .description[data-v-57ea6143]{font-size:.75rem;line-height:1.125rem;color:#333}.company-info[data-v-57ea6143]{background-color:#fff;padding:.625rem 1.25rem;margin-bottom:9.375rem}.company-info .company-name[data-v-57ea6143]{font-size:.875rem;font-weight:700;margin-bottom:.3125rem}.company-info .company-details[data-v-57ea6143]{font-size:.75rem;color:#666}.company-info .company-map[data-v-57ea6143]{height:10.625rem;width:100%;background:#e8e8e8;margin-top:.3125rem;border-radius:.5rem;overflow:hidden}.footer[data-v-57ea6143]{position:fixed;bottom:calc(var(--status-bar-height) + var(--window-bottom));left:0;width:calc(100% - 1.25rem);padding:.625rem;background-color:#fff;text-align:center;display:flex;align-items:center}.footer .apply-btn[data-v-57ea6143]{flex:1;background-color:#22c55e;color:#fff;border-radius:.9375rem;font-size:1rem;margin-right:.9375rem}.footer .btned[data-v-57ea6143]{background-color:#666} diff --git a/unpackage/dist/build/web/assets/screening-job-requirements.BSt0qcms.js b/unpackage/dist/build/web/assets/screening-job-requirements.BSt0qcms.js deleted file mode 100644 index d51d59b..0000000 --- a/unpackage/dist/build/web/assets/screening-job-requirements.BSt0qcms.js +++ /dev/null @@ -1 +0,0 @@ -import{q as e,o as t,a as n,w as o,k as a,y as l,z as c,l as s,Y as i,A as d,Z as u,_ as r,b as A,n as m,$ as h,j as f,m as w,U as v,a0 as k,v as y,x as p,D as g,s as E,a1 as x,F as I,r as D,d as R,S as b,a2 as M,a3 as G,a4 as J,B}from"./index-DdiBakOJ.js";import{_ as C}from"./uni-icons.OqqMV__G.js";const Z={__name:"latestHotestStatus",emits:["confirm","close"],setup(d,{emit:u}){const r=e(0),A=u,m=e([{value:0,text:"推荐"},{value:1,text:"最热"},{value:2,text:"最新发布"}]);function h(e){const t=e.detail.value;r.value=t;const n=m.value.filter((e=>e.value===t))[0];A("confirm",n)}return(e,d)=>{const u=s,A=i;return t(),n(u,null,{default:o((()=>[a(A,{"range-key":"text",onChange:h,value:r.value,range:m.value},{default:o((()=>[a(u,{class:"uni-input"},{default:o((()=>[l(c(m.value[r.value].text),1)])),_:1})])),_:1},8,["value","range"])])),_:1})}}},N={en:{"uni-load-more.contentdown":"Pull up to show more","uni-load-more.contentrefresh":"loading...","uni-load-more.contentnomore":"No more data"},"zh-Hans":{"uni-load-more.contentdown":"上拉显示更多","uni-load-more.contentrefresh":"正在加载...","uni-load-more.contentnomore":"没有更多数据了"},"zh-Hant":{"uni-load-more.contentdown":"上拉顯示更多","uni-load-more.contentrefresh":"正在加載...","uni-load-more.contentnomore":"沒有更多數據了"}};let T;setTimeout((()=>{T=d().platform}),16);const{t:z}=u(N);const j=r({name:"UniLoadMore",emits:["clickLoadMore"],props:{status:{type:String,default:"more"},showIcon:{type:Boolean,default:!0},iconType:{type:String,default:"auto"},iconSize:{type:Number,default:24},color:{type:String,default:"#777777"},contentText:{type:Object,default:()=>({contentdown:"",contentrefresh:"",contentnomore:""})},showText:{type:Boolean,default:!0}},data:()=>({webviewHide:!1,platform:T,imgBase64:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzlBMzU3OTlEOUM0MTFFOUI0NTZDNERBQURBQzI4RkUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzlBMzU3OUFEOUM0MTFFOUI0NTZDNERBQURBQzI4RkUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDOUEzNTc5N0Q5QzQxMUU5QjQ1NkM0REFBREFDMjhGRSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDOUEzNTc5OEQ5QzQxMUU5QjQ1NkM0REFBREFDMjhGRSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pt+ALSwAAA6CSURBVHja1FsLkFZVHb98LM+F5bHL8khA1iSeiyQBCRM+YGqKUnnJTDLGI0BGZlKDIU2MMglUiDApEZvSsZnQtBRJtKwQNKQMFYeRDR10WOLd8ljYXdh+v8v5fR3Od+797t1dnOnO/Ofce77z+J//+b/P+ZqtXbs2sJ9MJhNUV1cHJ06cCJo3bx7EPc2aNcvpy7pWrVoF+/fvDyoqKoI2bdoE9fX1F7TjN8a+EXBn/fkfvw942Tf+wYMHg9mzZwfjxo0LDhw4EPa1x2MbFw/fOGfPng1qa2tzcCkILsLDydq2bRsunpOTMM7TD/W/tZDZhPdeKD+yGxHhdu3aBV27dg3OnDlzMVANMheLAO3btw8KCwuDmpoaX5OxbgUIMEq7K8IcPnw4KCsrC/r37x8cP378/4cAXAB3vqSkJMuiDhTkw+XcuXNhOWbMmKBly5YhUT8xArhyFvP0BfwRsAuwxJZJsm/nzp2DTp06he/OU+cZ64K6o0ePBkOHDg2GDx8e6gEbJ5Q/NHNuAJQ1hgBeHUDlR7nVTkY8rQAvAi4z34vR/mPs1FoRsaCgIJThI0eOBC1atEiFGGV+5MiRoS45efJkqFjJFXV1dQuA012m2WcwTw98fy6CqBdsaiIO4CScrGPHjvk4odhavPquRtFWXEC25VgkREKOCh/qDSq+vn37htzD/mZTOmOc5U7zKzBPEedygWshcDyWvs30igAbU+6oyMgJBCFhwQE0fccxN60Ay9iebbjoDh06hMowjQxT4fXq1SskArmHZpkArvixp/kWzHdMeArExSJEaiXIjjRjRJ4DaAGWpibLzXN3Fm1vA5teBgh3j1Rv3bp1YgKwPdmf2p9zcyNYYgPKMfY0T5f5nNYdw158nJ8QawW4CLKwiOBSEgO/hok2eBydR+3dYH+PLxA5J8Vv0KBBwenTp0P2JWAx6+yFEBfs8lMY+y0SWMBNI9E4ThKi58VKTg3FQZS1RQF1cz27eC0QHMu+3E0SkUowjhVt5VdaWhp07949ZHv2Qd1EjDXM2cla1M0nl3GxAs3J9yREzyTdFVKVFOaE9qRA8GM0WebRuo9JGZKA7Mv2SeS/Z8+eoQ9BArMfFrLGo6jvxbhHbJZnKX2Rzz1O7QhJJ9Cs2ZMaWIyq/zhdeqPNfIoHd58clIQD+JSXl4dKlyIAuBdVXZwFVWKspSSoxE++h8x4k3uCnEhE4I5KwRiFWGOU0QWKiCYLbdoRMRKAu2kQ9vkfLU6dOhX06NEjlH+yMRZSinnuyWnYosVcji8CEA/6Cg2JF+IIUBqnGKUTCNwtwBN4f89RiK1R96DEgO2o0NDmtEdvVFdVVYV+P3UAPUEs6GFwV3PHmXkD4vh74iDFJysVI/MlaQhwKeBNTLYX5VuA8T4/gZxA4MRGFxDB6R7OmYPfyykGRJbyie+XnGYnQIC/coH9+vULiYrxrkL9ZA9+0ykaHIfEpM7ge8TiJ2CsHYwyMfafAF1yCGBHYIbCVDjDjKt7BeB51D+LgQa6OkG7IDYEEtvQ7lnXLKLtLdLuJBpE4gPUXcW2+PkZwOex+4cGDhwYDBkyRL7/HFcEwUGPo/8uWRUpYnfxGHco8HkewLHLyYmAawAPuIFZxhOpDfJQ8gbUv41yORAptMWBNr6oqMhWird5+u+iHmBb2nhjDV7HWBNQTgK8y11l5NetWzc5ULscAtSj7nbNI0skhWeUZCc0W4nyH/jO4Vz0u1IeYhbk4AiwM6tjxIWByHsoZ9qcIBPJd/y+DwPfBESOmCa/QF3WiZHucLlEDpNxcNhmheEOPgdQNx6/VZFQzFZ5TN08AHXQt2Ii3EdyFuUsPtTcGPhW5iMiCNELvz+Gdn9huG4HUJaW/w3g0wxV0XaG7arG2WeKiUWYM4Y7GO5ezshTARbbWGw/DvXkpp/ivVvE0JVoMxN4rpGzJMhE5Pl+xlATsDIqikP9F9D2z3h9nOksEUFhK+qO4rcPkoalMQ/HqJLIyb3F3JdjrCcw1yZ8joyJLR5gCo54etlag7qIoeNh1N1BRYj3DTFJ0elotxPlVzkGuYAmL0VSJVGAJA41c4Z6A3BzTLfn0HYwYKEI6CUAMzZEWvLsIcQOo1AmmyyM72nHJCfYsogflGV6jEk9vyQZXSuq6w4c16NsGcGZbwOPr+H1RkOk2LEzjNepxQkihHSCQ4ynAYNRx2zMKV92CQMWqj8J0BRE8EShxRFN6YrfCRhC0x3r/Zm4IbQCcmJoV0kMamllccR6FjHqUC5F2R/wS2dcymOlfAKOS4KmzQb5cpNC2MC7JhVn5wjXoJ44rYhLh8n0eXOCorJxa7POjbSlCGVczr34/RsAmrcvo9s+wGp3tzVhntxiXiJ4nvEYb4FJkf0O8HocAePmLvCxnL0AORraVekJk6TYjDabRVXfRE2lCN1h6ZQRN1+InUbsCpKwoBZHh0dODN9JBCUffItXxEavTQkUtnfTVAplCWL3JISz29h4NjotnuSsQKJCk8dF+kJR6RARjrqFVmfPnj3ZbK8cIJ0msd6jgHPGtfVTQ8VLmlvh4mct9sobRmPic0DyDQQnx/NlfYUgyz59+oScsH379pAwXABD32nTpoUHIToESeI5mnbE/UqDdyLcafEBf2MCqgC7NwxIbMREJQ0g4D4sfJwnD+AmRrII05cfMWJE+L1169bQr+fip06dGp4oJ83lmYd5wj/EmMa4TaHivo4EeCguYZBnkB5g2aWA69OIEnUHOaGysjIYMGBAMGnSpODYsWPZwCpFmm4lNq+4gSLQA7jcX8DwtjEyRC8wjabnXEx9kfWnTJkSJkAo90xpJVV+FmcVNeYAF5zWngS4C4O91MBxmAv8blLEpbjI5sz9MTdAhcgkCT1RO8mZkAjfiYpTEvStAS53Uw1vAiUGgZ3GpuQEYvoiBqlIan7kSDHnTwJQFNiPu0+5VxCVYhcZIjNrdXUDdp+Eq5AZ3Gkg8QAyVZRZIk4Tl4QAbF9cXJxNYZMAtAokgs4BrNxEpCtteXg7DDTMDKYNSuQdKsnJBek7HxewvxaosWxLYXtw+cJp18217wql4aKCfBNoEu0O5VU+PhctJ0YeXD4C6JQpyrlpSLTojpGGGN5YwNziChdIZLk4lvLcFJ9jMX3QdiImY9bmGQU+TRUL5CHITTRlgF8D9ouD1MfmLoEPl5xokIumZ2cfgMpHt47IW9N64Hsh7wQYYjyIugWuF5fCqYncXRd5vPMWyizzvhi/32+nvG0dZc9vR6fZOu0md5e+uC408FvKSIOZwXlGvxPv95izA2Vtvg1xKFWARI+vMX66HUhpQQb643uW1bSjuTWyw2SBvDrBvjFic1eGGlz5esq3ko9uSIlBRqPuFcCv8F4WIcN12nVaBd0SaYwI6PDDImR11JkqgHcPmQssjxIn6bUshygDFJUTxPMpHk+jfjPgupgdnYV2R/g7xSjtpah8RJBewhwf0gGK6XI92u4wXFEU40afJ4DN4h5LcAd+40HI3JgJecuT0c062W0i2hQJUTcxan3/CMW1PF2K6bbA+Daz4xRs1D3Br1Cm0OihKCqizW78/nXAF/G5TXrEcVzaNMH6CyMswqsAHqDyDLEyou8lwOXnKF8DjI6KjV3KzMBiXkDH8ij/H214J5A596ekrZ3F0zXlWeL7+P5eUrNo3/QwC15uxthuzidy7DzKRwEDaAViiDgKbTbz7CJnzo0bN7pIfIiid8SuPwn25o3QCmpnyjlZkyxPP8EomCJzrGb7GJMx7tNsq4MT2xMUYaiErZOluTzKsnz3gwCeCZyVRZJfYplNEokEjwrPtxlxjeYAk+F1F74VAzPxQRNYYdtpOUvWs8J1sGhBJMNsb7igN8plJs1eSmLIhLKE4rvaCX27gOhLpLOsIzJ7qn/i+wZzcvSOZ23/du8TZjwV8zHIXoP4R3ifBxiFz1dcVpa3aPntPE+c6TmIWE9EtcMmAcPdWAhYhAXxcLOQi9L1WhD1Sc8p1d2oL7XGiRKp8F4A2i8K/nfI+y/gsTDJ/YC/8+AD5Uh04KHiGl+cIFPnBDDrPMjwRGkLXyxO4VGbfQWnDH2v0bVWE3C9QOXlepbgjEfIJQI6XDG3z5ahD9cw2pS78ipB85wyScNTvsVzlzzhL8/jRrnmVjfFJK/m3m4nj9vbgQTguT8XZTjsm672R5uJKEaQmBI/c58gyus8ZDagLpEVSJBIyHp4jn++xqPV71OgQgJYEWOtZ/haxRtKmWOBu8xdBLftWltsY84zE6WIEy/eIOWL+BaayMx+KHtL7EAkqdNDLiEXmEMUHniedtJqg9HmZtfvt26vNi0BdG3Ft3g8ZOf7PAu59TxtzivLNIekyi+wD1i8CuUiD9FXAa8C+/xS3JPmZnomyc7H+fb4/Se0bk41Fel621r4cgVxbq91V4jVqwB7HTe2M7jgB+QWHavZkDRPmZcASoZEmBx6i75bGjPcMdL4/VKGFAGWZkGzPG0XAbdL9A81G5LOmUnC9hHKJeO7dcUMjblSl12867ElFTtaGl20xvvLGPdVz/8TVuU7y0x1PG7vtNg24oz9Uo/Z412++VFWI7Fcog9tu9Lm6gvRmIPv9x1xmQAu6RDkXtbOtlGEmpgD5Nvnyc0dcv0EE6cfdi1HmhMf9wDF3k3gtRvEedhxjpgfqPb9PU9iEJHnyOUA7bQUXh6kq/D7l2iTjWv7XOD530BDr8jIrus+srXjt4MzumJMHuTsBa63YKE1+RR5lBjEikCCnWKWiHdzOgKO+nRIBAF88za/IFmJ3eMZov4CYxGBabcpGL8EYx+SeMXJeRwHNsV/h+vdxeuhEpN3ZyNY78Gm2fknJxVGhyjixPiQvVkNzT1elD9Py/aTAL64Hb9vcYmC9zfdXdT/C1LeGbg4rnBaAihDFJH12W5ulfNCNe/xTsP3bp8ikzJs5BF+5PNfAQYAPaseTdsEcaYAAAAASUVORK5CYII="}),computed:{iconSnowWidth(){return 2*(Math.floor(this.iconSize/24)||1)},contentdownText(){return this.contentText.contentdown||z("uni-load-more.contentdown")},contentrefreshText(){return this.contentText.contentrefresh||z("uni-load-more.contentrefresh")},contentnomoreText(){return this.contentText.contentnomore||z("uni-load-more.contentnomore")}},mounted(){},methods:{onClick(){this.$emit("clickLoadMore",{detail:{status:this.status}})}}},[["render",function(e,i,d,u,r,k){const y=w,p=s,g=v;return t(),n(p,{class:"uni-load-more",onClick:k.onClick},{default:o((()=>[!r.webviewHide&&("circle"===d.iconType||"auto"===d.iconType&&"android"===r.platform)&&"loading"===d.status&&d.showIcon?(t(),A("svg",{key:0,width:"24",height:"24",viewBox:"25 25 50 50",style:m({width:d.iconSize+"px",height:d.iconSize+"px"}),class:"uni-load-more__img uni-load-more__img--android-H5"},[h("circle",{cx:"50",cy:"50",r:"20",fill:"none",style:m({color:d.color}),"stroke-width":3},null,4)],4)):!r.webviewHide&&"loading"===d.status&&d.showIcon?(t(),n(p,{key:1,style:m({width:d.iconSize+"px",height:d.iconSize+"px"}),class:"uni-load-more__img uni-load-more__img--ios-H5"},{default:o((()=>[a(y,{src:r.imgBase64,mode:"widthFix"},null,8,["src"])])),_:1},8,["style"])):f("",!0),d.showText?(t(),n(g,{key:2,class:"uni-load-more__text",style:m({color:d.color})},{default:o((()=>[l(c("more"===d.status?k.contentdownText:"loading"===d.status?k.contentrefreshText:k.contentnomoreText),1)])),_:1},8,["style"])):f("",!0)])),_:1},8,["onClick"])}],["__scopeId","data-v-7690a0fc"]]);const S=r({name:"loadmore",data:()=>({status:"more",statusTypes:[{value:"more",text:"加载前",checked:!0},{value:"loading",text:"加载中",checked:!1},{value:"noMore",text:"没有更多",checked:!1}],contentText:{contentdown:"查看更多",contentrefresh:"加载中",contentnomore:"没有更多"}}),methods:{change(e){this.status=e},clickLoadMore(e){k({icon:"none",title:"当前状态:"+e.detail.status})}}},[["render",function(e,l,c,i,d,u){const r=y(p("uni-load-more"),j),A=s;return t(),n(A,{class:"more"},{default:o((()=>[a(r,{iconType:"circle",status:d.status},null,8,["status"])])),_:1})}]]),V="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAjCAMAAADL21gSAAAAM1BMVEUAAAB0dHTr6+tqamp+fn6IiIimpqa5ubmwsLDX19ecnJz19fXh4eHNzc2SkpLDw8NgYGAOXbV+AAAAEHRSTlMA3yDvz7+QcIBAoBAwUK9ghw9d0wAAALtJREFUOMu9kVEShSAIRVFDU6vH/lf7ihwZo7Svzk+ix4aLABYd9djs7jga4CxsNASBxjiWoAOffy0NeC+5N1IYOwHAH98Zbpn4rK5WbZT7npfWnK+omA9nKkU8CpOvTuBt25Tp4izFqaQzREGaoAWEzDuxdfQ9x/9W4VtWSSLh7/P6NrwGZaa/Nti1eawNiaMHwysJr2kk+EzKYykmHkBPikhMepIcVab8JCEVTIBHrGEFI/SwyRh/o/wBjp0f+D1zAEIAAAAASUVORK5CYII=",H=r({__name:"screening-job-requirements",props:{show:Boolean,title:{type:String,default:"筛选"},area:{type:Boolean,default:!0}},emits:["confirm","close","update:show"],setup(i,{emit:d}){const{getTransformChildren:u}=g(),r=i,m=d,h=e(""),w=E({}),k=e([]);x((()=>{const e=[u("education","学历要求"),u("experience","工作经验"),u("scale","公司规模")];r.area&&e.push(u("area","区域")),k.value=e,h.value="education"}));const Z=()=>{Object.keys(w).forEach((e=>{w[e]=[]}))};function N(){m("confirm",w),T()}const T=()=>{m("update:show",!1),m("close")};return(e,d)=>{const u=y(p("uni-icons"),C),r=v,m=s,g=b,E=M,x=G,z=J,j=B;return i.show?(t(),n(m,{key:0,class:"modal-mask"},{default:o((()=>[a(m,{class:"modal-container"},{default:o((()=>[a(m,{class:"modal-header"},{default:o((()=>[a(r,{class:"back-btn",onClick:T},{default:o((()=>[a(u,{type:"left",size:"24"})])),_:1}),a(r,{class:"modal-title"},{default:o((()=>[l(c(i.title),1)])),_:1}),a(m,{class:"back-btn"})])),_:1}),a(m,{class:"content-wrapper"},{default:o((()=>[a(g,{class:"filter-nav","scroll-y":""},{default:o((()=>[(t(!0),A(I,null,D(k.value,((e,a)=>(t(),n(m,{key:a,class:R(["nav-item",{active:h.value===e.key}]),onClick:t=>{return n=e.key,void(h.value=n);var n}},{default:o((()=>[l(c(e.label),1)])),_:2},1032,["class","onClick"])))),128))])),_:1}),a(g,{class:"filter-content","scroll-into-view":h.value,"scroll-y":""},{default:o((()=>[(t(!0),A(I,null,D(k.value,((e,s)=>(t(),n(m,{key:s,class:"content-item"},{default:o((()=>[a(m,{class:"item-title",id:e.key},{default:o((()=>[l(c(e.label),1)])),_:2},1032,["id"]),a(z,{class:"check-content",onChange:t=>((e,t)=>{w[e]=t.detail.value.map(String)})(e.key,t)},{default:o((()=>[(t(!0),A(I,null,D(e.options,(s=>{var i;return t(),n(x,{key:s.value,class:R(["checkbox-item",{checkedstyle:null==(i=w[e.key])?void 0:i.includes(String(s.value))}])},{default:o((()=>{var t;return[a(E,{style:{display:"none"},value:String(s.value),checked:null==(t=w[e.key])?void 0:t.includes(String(s.value))},null,8,["value","checked"]),a(r,{class:"option-label"},{default:o((()=>[l(c(s.label),1)])),_:2},1024)]})),_:2},1032,["class"])})),128))])),_:2},1032,["onChange"])])),_:2},1024)))),128))])),_:1},8,["scroll-into-view"])])),_:1}),a(m,{class:"modal-footer"},{default:o((()=>[a(j,{class:"footer-btn",type:"default",onClick:Z},{default:o((()=>[l("清除")])),_:1}),a(j,{class:"footer-btn",type:"primary",onClick:N},{default:o((()=>[l("确认")])),_:1})])),_:1})])),_:1})])),_:1})):f("",!0)}}},[["__scopeId","data-v-56e8df2d"]]);export{V as _,Z as a,S as b,H as s}; diff --git a/unpackage/dist/build/web/assets/uni-icons.OqqMV__G.js b/unpackage/dist/build/web/assets/uni-icons.OqqMV__G.js deleted file mode 100644 index 9c86da5..0000000 --- a/unpackage/dist/build/web/assets/uni-icons.OqqMV__G.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as o,o as n,a as s,w as c,f as l,n as e,d as i,U as d}from"./index-DdiBakOJ.js";const a=[{font_class:"arrow-down",unicode:""},{font_class:"arrow-left",unicode:""},{font_class:"arrow-right",unicode:""},{font_class:"arrow-up",unicode:""},{font_class:"auth",unicode:""},{font_class:"auth-filled",unicode:""},{font_class:"back",unicode:""},{font_class:"bars",unicode:""},{font_class:"calendar",unicode:""},{font_class:"calendar-filled",unicode:""},{font_class:"camera",unicode:""},{font_class:"camera-filled",unicode:""},{font_class:"cart",unicode:""},{font_class:"cart-filled",unicode:""},{font_class:"chat",unicode:""},{font_class:"chat-filled",unicode:""},{font_class:"chatboxes",unicode:""},{font_class:"chatboxes-filled",unicode:""},{font_class:"chatbubble",unicode:""},{font_class:"chatbubble-filled",unicode:""},{font_class:"checkbox",unicode:""},{font_class:"checkbox-filled",unicode:""},{font_class:"checkmarkempty",unicode:""},{font_class:"circle",unicode:""},{font_class:"circle-filled",unicode:""},{font_class:"clear",unicode:""},{font_class:"close",unicode:""},{font_class:"closeempty",unicode:""},{font_class:"cloud-download",unicode:""},{font_class:"cloud-download-filled",unicode:""},{font_class:"cloud-upload",unicode:""},{font_class:"cloud-upload-filled",unicode:""},{font_class:"color",unicode:""},{font_class:"color-filled",unicode:""},{font_class:"compose",unicode:""},{font_class:"contact",unicode:""},{font_class:"contact-filled",unicode:""},{font_class:"down",unicode:""},{font_class:"bottom",unicode:""},{font_class:"download",unicode:""},{font_class:"download-filled",unicode:""},{font_class:"email",unicode:""},{font_class:"email-filled",unicode:""},{font_class:"eye",unicode:""},{font_class:"eye-filled",unicode:""},{font_class:"eye-slash",unicode:""},{font_class:"eye-slash-filled",unicode:""},{font_class:"fire",unicode:""},{font_class:"fire-filled",unicode:""},{font_class:"flag",unicode:""},{font_class:"flag-filled",unicode:""},{font_class:"folder-add",unicode:""},{font_class:"folder-add-filled",unicode:""},{font_class:"font",unicode:""},{font_class:"forward",unicode:""},{font_class:"gear",unicode:""},{font_class:"gear-filled",unicode:""},{font_class:"gift",unicode:""},{font_class:"gift-filled",unicode:""},{font_class:"hand-down",unicode:""},{font_class:"hand-down-filled",unicode:""},{font_class:"hand-up",unicode:""},{font_class:"hand-up-filled",unicode:""},{font_class:"headphones",unicode:""},{font_class:"heart",unicode:""},{font_class:"heart-filled",unicode:""},{font_class:"help",unicode:""},{font_class:"help-filled",unicode:""},{font_class:"home",unicode:""},{font_class:"home-filled",unicode:""},{font_class:"image",unicode:""},{font_class:"image-filled",unicode:""},{font_class:"images",unicode:""},{font_class:"images-filled",unicode:""},{font_class:"info",unicode:""},{font_class:"info-filled",unicode:""},{font_class:"left",unicode:""},{font_class:"link",unicode:""},{font_class:"list",unicode:""},{font_class:"location",unicode:""},{font_class:"location-filled",unicode:""},{font_class:"locked",unicode:""},{font_class:"locked-filled",unicode:""},{font_class:"loop",unicode:""},{font_class:"mail-open",unicode:""},{font_class:"mail-open-filled",unicode:""},{font_class:"map",unicode:""},{font_class:"map-filled",unicode:""},{font_class:"map-pin",unicode:""},{font_class:"map-pin-ellipse",unicode:""},{font_class:"medal",unicode:""},{font_class:"medal-filled",unicode:""},{font_class:"mic",unicode:""},{font_class:"mic-filled",unicode:""},{font_class:"micoff",unicode:""},{font_class:"micoff-filled",unicode:""},{font_class:"minus",unicode:""},{font_class:"minus-filled",unicode:""},{font_class:"more",unicode:""},{font_class:"more-filled",unicode:""},{font_class:"navigate",unicode:""},{font_class:"navigate-filled",unicode:""},{font_class:"notification",unicode:""},{font_class:"notification-filled",unicode:""},{font_class:"paperclip",unicode:""},{font_class:"paperplane",unicode:""},{font_class:"paperplane-filled",unicode:""},{font_class:"person",unicode:""},{font_class:"person-filled",unicode:""},{font_class:"personadd",unicode:""},{font_class:"personadd-filled",unicode:""},{font_class:"personadd-filled-copy",unicode:""},{font_class:"phone",unicode:""},{font_class:"phone-filled",unicode:""},{font_class:"plus",unicode:""},{font_class:"plus-filled",unicode:""},{font_class:"plusempty",unicode:""},{font_class:"pulldown",unicode:""},{font_class:"pyq",unicode:""},{font_class:"qq",unicode:""},{font_class:"redo",unicode:""},{font_class:"redo-filled",unicode:""},{font_class:"refresh",unicode:""},{font_class:"refresh-filled",unicode:""},{font_class:"refreshempty",unicode:""},{font_class:"reload",unicode:""},{font_class:"right",unicode:""},{font_class:"scan",unicode:""},{font_class:"search",unicode:""},{font_class:"settings",unicode:""},{font_class:"settings-filled",unicode:""},{font_class:"shop",unicode:""},{font_class:"shop-filled",unicode:""},{font_class:"smallcircle",unicode:""},{font_class:"smallcircle-filled",unicode:""},{font_class:"sound",unicode:""},{font_class:"sound-filled",unicode:""},{font_class:"spinner-cycle",unicode:""},{font_class:"staff",unicode:""},{font_class:"staff-filled",unicode:""},{font_class:"star",unicode:""},{font_class:"star-filled",unicode:""},{font_class:"starhalf",unicode:""},{font_class:"trash",unicode:""},{font_class:"trash-filled",unicode:""},{font_class:"tune",unicode:""},{font_class:"tune-filled",unicode:""},{font_class:"undo",unicode:""},{font_class:"undo-filled",unicode:""},{font_class:"up",unicode:""},{font_class:"top",unicode:""},{font_class:"upload",unicode:""},{font_class:"upload-filled",unicode:""},{font_class:"videocam",unicode:""},{font_class:"videocam-filled",unicode:""},{font_class:"vip",unicode:""},{font_class:"vip-filled",unicode:""},{font_class:"wallet",unicode:""},{font_class:"wallet-filled",unicode:""},{font_class:"weibo",unicode:""},{font_class:"weixin",unicode:""}];const t=o({name:"UniIcons",emits:["click"],props:{type:{type:String,default:""},color:{type:String,default:"#333333"},size:{type:[Number,String],default:16},customPrefix:{type:String,default:""},fontFamily:{type:String,default:""}},data:()=>({icons:a}),computed:{unicode(){let o=this.icons.find((o=>o.font_class===this.type));return o?o.unicode:""},iconSize(){return"number"==typeof(o=this.size)||/^[0-9]*$/g.test(o)?o+"px":o;var o},styleObj(){return""!==this.fontFamily?`color: ${this.color}; font-size: ${this.iconSize}; font-family: ${this.fontFamily};`:`color: ${this.color}; font-size: ${this.iconSize};`}},methods:{_onClick(){this.$emit("click")}}},[["render",function(o,a,t,f,u,_){const r=d;return n(),s(r,{style:e(_.styleObj),class:i(["uni-icons",["uniui-"+t.type,t.customPrefix,t.customPrefix?t.type:""]]),onClick:_._onClick},{default:c((()=>[l(o.$slots,"default",{},void 0,!0)])),_:3},8,["style","class","onClick"])}],["__scopeId","data-v-1320ff52"]]);export{t as _}; diff --git a/unpackage/dist/build/web/assets/uni-popup.DSb2YJre.js b/unpackage/dist/build/web/assets/uni-popup.DSb2YJre.js deleted file mode 100644 index 9b442d2..0000000 --- a/unpackage/dist/build/web/assets/uni-popup.DSb2YJre.js +++ /dev/null @@ -1 +0,0 @@ -import{Z as t,_ as e,o as i,a as s,w as o,k as a,d as n,y as l,z as r,f as h,j as p,U as u,l as c,K as d,ao as m,I as f,J as g,n as y,v as k,x as b,ap as C,A as w}from"./index-DdiBakOJ.js";const T={data:()=>({}),created(){this.popup=this.getParent()},methods:{getParent(t="uniPopup"){let e=this.$parent,i=e.$options.name;for(;i!==t;){if(e=e.$parent,!e)return!1;i=e.$options.name}return e}}},x={en:{"uni-popup.cancel":"cancel","uni-popup.ok":"ok","uni-popup.placeholder":"pleace enter","uni-popup.title":"Hint","uni-popup.shareTitle":"Share to"},"zh-Hans":{"uni-popup.cancel":"取消","uni-popup.ok":"确定","uni-popup.placeholder":"请输入","uni-popup.title":"提示","uni-popup.shareTitle":"分享到"},"zh-Hant":{"uni-popup.cancel":"取消","uni-popup.ok":"確定","uni-popup.placeholder":"請輸入","uni-popup.title":"提示","uni-popup.shareTitle":"分享到"}},{t:$}=t(x);const S=e({name:"uniPopupDialog",mixins:[T],emits:["confirm","close","update:modelValue","input"],props:{inputType:{type:String,default:"text"},showClose:{type:Boolean,default:!0},modelValue:{type:[Number,String],default:""},placeholder:{type:[String,Number],default:""},type:{type:String,default:"error"},mode:{type:String,default:"base"},title:{type:String,default:""},content:{type:String,default:""},beforeClose:{type:Boolean,default:!1},cancelText:{type:String,default:""},confirmText:{type:String,default:""},maxlength:{type:Number,default:-1},focus:{type:Boolean,default:!0}},data:()=>({dialogType:"error",val:""}),computed:{okText(){return this.confirmText||$("uni-popup.ok")},closeText(){return this.cancelText||$("uni-popup.cancel")},placeholderText(){return this.placeholder||$("uni-popup.placeholder")},titleText(){return this.title||$("uni-popup.title")}},watch:{type(t){this.dialogType=t},mode(t){"input"===t&&(this.dialogType="info")},value(t){-1!=this.maxlength&&"input"===this.mode?this.val=t.slice(0,this.maxlength):this.val=t},val(t){this.$emit("update:modelValue",t)}},created(){this.popup.disableMask(),"input"===this.mode?(this.dialogType="info",this.val=this.value,this.val=this.modelValue):this.dialogType=this.type},methods:{onOk(){"input"===this.mode?this.$emit("confirm",this.val):this.$emit("confirm"),this.beforeClose||this.popup.close()},closeDialog(){this.$emit("close"),this.beforeClose||this.popup.close()},close(){this.popup.close()}}},[["render",function(t,e,m,f,g,y){const k=u,b=c,C=d;return i(),s(b,{class:"uni-popup-dialog"},{default:o((()=>[a(b,{class:"uni-dialog-title"},{default:o((()=>[a(k,{class:n(["uni-dialog-title-text",["uni-popup__"+g.dialogType]])},{default:o((()=>[l(r(y.titleText),1)])),_:1},8,["class"])])),_:1}),"base"===m.mode?(i(),s(b,{key:0,class:"uni-dialog-content"},{default:o((()=>[h(t.$slots,"default",{},(()=>[a(k,{class:"uni-dialog-content-text"},{default:o((()=>[l(r(m.content),1)])),_:1})]),!0)])),_:3})):(i(),s(b,{key:1,class:"uni-dialog-content"},{default:o((()=>[h(t.$slots,"default",{},(()=>[a(C,{class:"uni-dialog-input",maxlength:m.maxlength,modelValue:g.val,"onUpdate:modelValue":e[0]||(e[0]=t=>g.val=t),type:m.inputType,placeholder:y.placeholderText,focus:m.focus},null,8,["maxlength","modelValue","type","placeholder","focus"])]),!0)])),_:3})),a(b,{class:"uni-dialog-button-group"},{default:o((()=>[m.showClose?(i(),s(b,{key:0,class:"uni-dialog-button",onClick:y.closeDialog},{default:o((()=>[a(k,{class:"uni-dialog-button-text"},{default:o((()=>[l(r(y.closeText),1)])),_:1})])),_:1},8,["onClick"])):p("",!0),a(b,{class:n(["uni-dialog-button",m.showClose?"uni-border-left":""]),onClick:y.onOk},{default:o((()=>[a(k,{class:"uni-dialog-button-text uni-button-color"},{default:o((()=>[l(r(y.okText),1)])),_:1})])),_:1},8,["class","onClick"])])),_:1})])),_:3})}],["__scopeId","data-v-19f0223c"]]);class _{constructor(t,e){this.options=t,this.animation=m({...t}),this.currentStepAnimates={},this.next=0,this.$=e}_nvuePushAnimates(t,e){let i=this.currentStepAnimates[this.next],s={};if(s=i||{styles:{},config:{}},v.includes(t)){s.styles.transform||(s.styles.transform="");let i="";"rotate"===t&&(i="deg"),s.styles.transform+=`${t}(${e+i}) `}else s.styles[t]=`${e}`;this.currentStepAnimates[this.next]=s}_animateRun(t={},e={}){let i=this.$.$refs.ani.ref;if(i)return new Promise(((s,o)=>{nvueAnimation.transition(i,{styles:t,...e},(t=>{s()}))}))}_nvueNextAnimate(t,e=0,i){let s=t[e];if(s){let{styles:o,config:a}=s;this._animateRun(o,a).then((()=>{e+=1,this._nvueNextAnimate(t,e,i)}))}else this.currentStepAnimates={},"function"==typeof i&&i(),this.isEnd=!0}step(t={}){return this.animation.step(t),this}run(t){this.$.animationData=this.animation.export(),this.$.timer=setTimeout((()=>{"function"==typeof t&&t()}),this.$.durationTime)}}const v=["matrix","matrix3d","rotate","rotate3d","rotateX","rotateY","rotateZ","scale","scale3d","scaleX","scaleY","scaleZ","skew","skewX","skewY","translate","translate3d","translateX","translateY","translateZ"];function P(t,e){if(e)return clearTimeout(e.timer),new _(t,e)}v.concat(["opacity","backgroundColor"],["width","height","left","right","top","bottom"]).forEach((t=>{_.prototype[t]=function(...e){return this.animation[t](...e),this}}));const A=e({name:"uniTransition",emits:["click","change"],props:{show:{type:Boolean,default:!1},modeClass:{type:[Array,String],default:()=>"fade"},duration:{type:Number,default:300},styles:{type:Object,default:()=>({})},customClass:{type:String,default:""},onceRender:{type:Boolean,default:!1}},data:()=>({isShow:!1,transform:"",opacity:1,animationData:{},durationTime:300,config:{}}),watch:{show:{handler(t){t?this.open():this.isShow&&this.close()},immediate:!0}},computed:{stylesObject(){let t={...this.styles,"transition-duration":this.duration/1e3+"s"},e="";for(let i in t){e+=this.toLine(i)+":"+t[i]+";"}return e},transformStyles(){return"transform:"+this.transform+";opacity:"+this.opacity+";"+this.stylesObject}},created(){this.config={duration:this.duration,timingFunction:"ease",transformOrigin:"50% 50%",delay:0},this.durationTime=this.duration},methods:{init(t={}){t.duration&&(this.durationTime=t.duration),this.animation=P(Object.assign(this.config,t),this)},onClick(){this.$emit("click",{detail:this.isShow})},step(t,e={}){if(this.animation){for(let e in t)try{"object"==typeof t[e]?this.animation[e](...t[e]):this.animation[e](t[e])}catch(i){console.error(`方法 ${e} 不存在`)}return this.animation.step(e),this}},run(t){this.animation&&this.animation.run(t)},open(){clearTimeout(this.timer),this.transform="",this.isShow=!0;let{opacity:t,transform:e}=this.styleInit(!1);void 0!==t&&(this.opacity=t),this.transform=e,this.$nextTick((()=>{this.timer=setTimeout((()=>{this.animation=P(this.config,this),this.tranfromInit(!1).step(),this.animation.run(),this.$emit("change",{detail:this.isShow})}),20)}))},close(t){this.animation&&this.tranfromInit(!0).step().run((()=>{this.isShow=!1,this.animationData=null,this.animation=null;let{opacity:t,transform:e}=this.styleInit(!1);this.opacity=t||1,this.transform=e,this.$emit("change",{detail:this.isShow})}))},styleInit(t){let e={transform:""},i=(t,i)=>{"fade"===i?e.opacity=this.animationType(t)[i]:e.transform+=this.animationType(t)[i]+" "};return"string"==typeof this.modeClass?i(t,this.modeClass):this.modeClass.forEach((e=>{i(t,e)})),e},tranfromInit(t){let e=(t,e)=>{let i=null;"fade"===e?i=t?0:1:(i=t?"-100%":"0","zoom-in"===e&&(i=t?.8:1),"zoom-out"===e&&(i=t?1.2:1),"slide-right"===e&&(i=t?"100%":"0"),"slide-bottom"===e&&(i=t?"100%":"0")),this.animation[this.animationMode()[e]](i)};return"string"==typeof this.modeClass?e(t,this.modeClass):this.modeClass.forEach((i=>{e(t,i)})),this.animation},animationType:t=>({fade:t?0:1,"slide-top":`translateY(${t?"0":"-100%"})`,"slide-right":`translateX(${t?"0":"100%"})`,"slide-bottom":`translateY(${t?"0":"100%"})`,"slide-left":`translateX(${t?"0":"-100%"})`,"zoom-in":`scaleX(${t?1:.8}) scaleY(${t?1:.8})`,"zoom-out":`scaleX(${t?1:1.2}) scaleY(${t?1:1.2})`}),animationMode:()=>({fade:"opacity","slide-top":"translateY","slide-right":"translateX","slide-bottom":"translateY","slide-left":"translateX","zoom-in":"scale","zoom-out":"scale"}),toLine:t=>t.replace(/([A-Z])/g,"-$1").toLowerCase()}},[["render",function(t,e,a,l,r,p){const u=c;return f((i(),s(u,{ref:"ani",animation:r.animationData,class:n(a.customClass),style:y(p.transformStyles),onClick:p.onClick},{default:o((()=>[h(t.$slots,"default")])),_:3},8,["animation","class","style","onClick"])),[[g,r.isShow]])}]]);const R=e({name:"uniPopup",components:{keypress:{name:"Keypress",props:{disable:{type:Boolean,default:!1}},mounted(){const t={esc:["Esc","Escape"],tab:"Tab",enter:"Enter",space:[" ","Spacebar"],up:["Up","ArrowUp"],left:["Left","ArrowLeft"],right:["Right","ArrowRight"],down:["Down","ArrowDown"],delete:["Backspace","Delete","Del"]};document.addEventListener("keyup",(e=>{if(this.disable)return;const i=Object.keys(t).find((i=>{const s=e.key,o=t[i];return o===s||Array.isArray(o)&&o.includes(s)}));i&&setTimeout((()=>{this.$emit(i,{})}),0)}))},render:()=>{}}},emits:["change","maskClick"],props:{animation:{type:Boolean,default:!0},type:{type:String,default:"center"},isMaskClick:{type:Boolean,default:null},maskClick:{type:Boolean,default:null},backgroundColor:{type:String,default:"none"},safeArea:{type:Boolean,default:!0},maskBackgroundColor:{type:String,default:"rgba(0, 0, 0, 0.4)"},borderRadius:{type:String}},watch:{type:{handler:function(t){this.config[t]&&this[this.config[t]](!0)},immediate:!0},isDesktop:{handler:function(t){this.config[t]&&this[this.config[this.type]](!0)},immediate:!0},maskClick:{handler:function(t){this.mkclick=t},immediate:!0},isMaskClick:{handler:function(t){this.mkclick=t},immediate:!0},showPopup(t){document.getElementsByTagName("body")[0].style.overflow=t?"hidden":"visible"}},data(){return{duration:300,ani:[],showPopup:!1,showTrans:!1,popupWidth:0,popupHeight:0,config:{top:"top",bottom:"bottom",center:"center",left:"left",right:"right",message:"top",dialog:"center",share:"bottom"},maskClass:{position:"fixed",bottom:0,top:0,left:0,right:0,backgroundColor:"rgba(0, 0, 0, 0.4)"},transClass:{backgroundColor:"transparent",borderRadius:this.borderRadius||"0",position:"fixed",left:0,right:0},maskShow:!0,mkclick:!0,popupstyle:"top"}},computed:{getStyles(){let t={backgroundColor:this.bg};return this.borderRadius,t=Object.assign(t,{borderRadius:this.borderRadius}),t},isDesktop(){return this.popupWidth>=500&&this.popupHeight>=500},bg(){return""===this.backgroundColor||"none"===this.backgroundColor?"transparent":this.backgroundColor}},mounted(){(()=>{const{windowWidth:t,windowHeight:e,windowTop:i,safeArea:s,screenHeight:o,safeAreaInsets:a}=w();this.popupWidth=t,this.popupHeight=e+(i||0),s&&this.safeArea?this.safeAreaInsets=a.bottom:this.safeAreaInsets=0})()},unmounted(){this.setH5Visible()},activated(){this.setH5Visible(!this.showPopup)},deactivated(){this.setH5Visible(!0)},created(){null===this.isMaskClick&&null===this.maskClick?this.mkclick=!0:this.mkclick=null!==this.isMaskClick?this.isMaskClick:this.maskClick,this.animation?this.duration=300:this.duration=0,this.messageChild=null,this.clearPropagation=!1,this.maskClass.backgroundColor=this.maskBackgroundColor},methods:{setH5Visible(t=!0){document.getElementsByTagName("body")[0].style.overflow=t?"visible":"hidden"},closeMask(){this.maskShow=!1},disableMask(){this.mkclick=!1},clear(t){t.stopPropagation(),this.clearPropagation=!0},open(t){if(this.showPopup)return;t&&-1!==["top","center","bottom","left","right","message","dialog","share"].indexOf(t)||(t=this.type),this.config[t]?(this[this.config[t]](),this.$emit("change",{show:!0,type:t})):console.error("缺少类型:",t)},close(t){this.showTrans=!1,this.$emit("change",{show:!1,type:this.type}),clearTimeout(this.timer),this.timer=setTimeout((()=>{this.showPopup=!1}),300)},touchstart(){this.clearPropagation=!1},onTap(){this.clearPropagation?this.clearPropagation=!1:(this.$emit("maskClick"),this.mkclick&&this.close())},top(t){this.popupstyle=this.isDesktop?"fixforpc-top":"top",this.ani=["slide-top"],this.transClass={position:"fixed",left:0,right:0,backgroundColor:this.bg,borderRadius:this.borderRadius||"0"},t||(this.showPopup=!0,this.showTrans=!0,this.$nextTick((()=>{this.showPoptrans(),this.messageChild&&"message"===this.type&&this.messageChild.timerClose()})))},bottom(t){this.popupstyle="bottom",this.ani=["slide-bottom"],this.transClass={position:"fixed",left:0,right:0,bottom:0,paddingBottom:this.safeAreaInsets+"px",backgroundColor:this.bg,borderRadius:this.borderRadius||"0"},t||this.showPoptrans()},center(t){this.popupstyle="center",this.ani=["zoom-out","fade"],this.transClass={position:"fixed",display:"flex",flexDirection:"column",bottom:0,left:0,right:0,top:0,justifyContent:"center",alignItems:"center",borderRadius:this.borderRadius||"0"},t||this.showPoptrans()},left(t){this.popupstyle="left",this.ani=["slide-left"],this.transClass={position:"fixed",left:0,bottom:0,top:0,backgroundColor:this.bg,borderRadius:this.borderRadius||"0",display:"flex",flexDirection:"column"},t||this.showPoptrans()},right(t){this.popupstyle="right",this.ani=["slide-right"],this.transClass={position:"fixed",bottom:0,right:0,top:0,backgroundColor:this.bg,borderRadius:this.borderRadius||"0",display:"flex",flexDirection:"column"},t||this.showPoptrans()},showPoptrans(){this.$nextTick((()=>{this.showPopup=!0,this.showTrans=!0}))}}},[["render",function(t,e,l,r,u,d){const m=k(b("uni-transition"),A),f=c,g=C("keypress");return u.showPopup?(i(),s(f,{key:0,class:n(["uni-popup",[u.popupstyle,d.isDesktop?"fixforpc-z-index":""]])},{default:o((()=>[a(f,{onTouchstart:d.touchstart},{default:o((()=>[u.maskShow?(i(),s(m,{key:"1",name:"mask","mode-class":"fade",styles:u.maskClass,duration:u.duration,show:u.showTrans,onClick:d.onTap},null,8,["styles","duration","show","onClick"])):p("",!0),a(m,{key:"2","mode-class":u.ani,name:"content",styles:u.transClass,duration:u.duration,show:u.showTrans,onClick:d.onTap},{default:o((()=>[a(f,{class:n(["uni-popup__wrapper",[u.popupstyle]]),style:y(d.getStyles),onClick:d.clear},{default:o((()=>[h(t.$slots,"default",{},void 0,!0)])),_:3},8,["style","class","onClick"])])),_:3},8,["mode-class","styles","duration","show","onClick"])])),_:3},8,["onTouchstart"]),u.maskShow?(i(),s(g,{key:0,onEsc:d.onTap},null,8,["onEsc"])):p("",!0)])),_:3},8,["class"])):p("",!0)}],["__scopeId","data-v-fc99ec19"]]);export{S as _,R as a}; diff --git a/unpackage/dist/build/web/index.html b/unpackage/dist/build/web/index.html index d39b9bd..3c35172 100644 --- a/unpackage/dist/build/web/index.html +++ b/unpackage/dist/build/web/index.html @@ -5,28 +5,31 @@ 青岛智慧就业服务 - - - + + - - + + --> + + -
    \ No newline at end of file diff --git a/unpackage/dist/build/web/static/.DS_Store b/unpackage/dist/build/web/static/.DS_Store index df51d4e..7468997 100644 Binary files a/unpackage/dist/build/web/static/.DS_Store and b/unpackage/dist/build/web/static/.DS_Store differ diff --git a/unpackage/dist/build/web/static/icon/.DS_Store b/unpackage/dist/build/web/static/icon/.DS_Store index a3e2b80..6c82460 100644 Binary files a/unpackage/dist/build/web/static/icon/.DS_Store and b/unpackage/dist/build/web/static/icon/.DS_Store differ diff --git a/unpackage/dist/build/web/static/icon/send3.png b/unpackage/dist/build/web/static/icon/send3.png index d4c7758..4f888f6 100644 Binary files a/unpackage/dist/build/web/static/icon/send3.png and b/unpackage/dist/build/web/static/icon/send3.png differ diff --git a/unpackage/dist/build/web/static/tabbar/.DS_Store b/unpackage/dist/build/web/static/tabbar/.DS_Store index d350365..7af0996 100644 Binary files a/unpackage/dist/build/web/static/tabbar/.DS_Store and b/unpackage/dist/build/web/static/tabbar/.DS_Store differ diff --git a/unpackage/dist/build/web/static/tabbar/mine.png b/unpackage/dist/build/web/static/tabbar/mine.png index 59fd151..d785078 100644 Binary files a/unpackage/dist/build/web/static/tabbar/mine.png and b/unpackage/dist/build/web/static/tabbar/mine.png differ diff --git a/unpackage/dist/build/web/static/tabbar/mined.png b/unpackage/dist/build/web/static/tabbar/mined.png index 7416719..7b00998 100644 Binary files a/unpackage/dist/build/web/static/tabbar/mined.png and b/unpackage/dist/build/web/static/tabbar/mined.png differ