@xcpcio/board-app 0.50.5 → 0.51.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/404.html +1 -1
- package/dist/assets/Board-3491f2da.css +1 -0
- package/dist/assets/Board-c1aec925.js +1 -0
- package/dist/assets/DataSourceInput.vue_vue_type_script_setup_true_lang-8706f2ab.js +1 -0
- package/dist/assets/{TheInput.vue_vue_type_script_setup_true_lang-0b1911d1.js → TheInput.vue_vue_type_script_setup_true_lang-765c2b3c.js} +1 -1
- package/dist/assets/_...all_-a8e69cef.js +1 -0
- package/dist/assets/_...all_-c5b455bb.js +6 -0
- package/dist/assets/_name_-60a93f5f.js +1 -0
- package/dist/assets/{about-4a433ea5.js → about-490ee0d7.js} +2 -2
- package/dist/assets/{board-f8e9ecf7.js → board-d69a45e8.js} +1 -1
- package/dist/assets/{board-layout-7625af01.js → board-layout-bd329ecf.js} +1 -1
- package/dist/assets/{headless-77e6e1cb.js → headless-9c707fd4.js} +1 -1
- package/dist/assets/home-b6c236a6.js +1 -0
- package/dist/assets/index-2b0627dc.js +1 -0
- package/dist/assets/{index-9e50cecb.js → index-301db79b.js} +1 -1
- package/dist/assets/index-5d2848e0.js +236 -0
- package/dist/assets/index-6c2171b3.js +1 -0
- package/dist/assets/index-9dd86d68.css +5 -0
- package/dist/assets/{index-layout-b1dd3cba.js → index-layout-834eb607.js} +1 -1
- package/dist/assets/pagination-57c59553.js +3 -0
- package/dist/assets/query-f5d987d0.js +1 -0
- package/dist/assets/test-f10f3f09.js +1 -0
- package/dist/assets/{user-8377cff8.js → user-c00215bb.js} +1 -1
- package/dist/assets/virtual_pwa-register-7b8b4a68.js +1 -0
- package/dist/assets/workbox-window.prod.es5-c46a1faa.js +2 -0
- package/dist/index.html +1 -1
- package/dist/sw.js +1 -1
- package/dist/{workbox-b8d87ee1.js → workbox-86deb690.js} +1 -1
- package/package.json +46 -46
- package/src/auto-imports.d.ts +19 -312
- package/src/components/board/Modal.vue +3 -3
- package/src/components/board/OptionsModal.vue +1 -1
- package/src/components/board/ProblemInfoModal.vue +1 -1
- package/src/components/board/Progress.less +1 -1
- package/src/components/board/Progress.vue +1 -1
- package/src/components/board/ReactionVideoModal.vue +75 -0
- package/src/components/board/StandingsAnnotate.vue +1 -1
- package/src/components/board/SubmissionsTable.vue +50 -1
- package/src/components/board/SubmissionsTableModal.vue +1 -1
- package/src/components/board/TeamInfoModal.vue +1 -1
- package/src/components/board/TeamProblemBlock.vue +1 -1
- package/src/components/board/TeamUI.vue +1 -1
- package/src/components/rating/RatingInfoModal.vue +1 -1
- package/src/components/rating/RatingUserUI.vue +1 -1
- package/src/components.d.ts +1 -0
- package/dist/assets/Board-24564942.css +0 -1
- package/dist/assets/Board-4efe6491.js +0 -1
- package/dist/assets/DataSourceInput.vue_vue_type_script_setup_true_lang-927cd5d1.js +0 -1
- package/dist/assets/_...all_-18077ad5.js +0 -6
- package/dist/assets/_...all_-e5b6fada.js +0 -1
- package/dist/assets/_name_-f19044a0.js +0 -1
- package/dist/assets/home-7046d49d.js +0 -1
- package/dist/assets/index-0c6bc501.js +0 -1
- package/dist/assets/index-432be1fe.js +0 -1
- package/dist/assets/index-e6cdf581.css +0 -5
- package/dist/assets/index-fe0ee4c1.js +0 -274
- package/dist/assets/pagination-1c199e71.js +0 -3
- package/dist/assets/query-b44be24d.js +0 -1
- package/dist/assets/test-98dba3c4.js +0 -1
- package/dist/assets/virtual_pwa-register-3c3577d6.js +0 -1
- package/dist/assets/workbox-window.prod.es5-a7b12eab.js +0 -2
|
@@ -3,7 +3,7 @@ import { MultiSelect } from "vue-search-select";
|
|
|
3
3
|
|
|
4
4
|
import type { Rank, SelectOptionItem, Submissions } from "@xcpcio/core";
|
|
5
5
|
import { Submission } from "@xcpcio/core";
|
|
6
|
-
import type { SubmissionStatus } from "@xcpcio/types";
|
|
6
|
+
import type { SubmissionReaction, SubmissionStatus } from "@xcpcio/types";
|
|
7
7
|
import { SubmissionStatusToString } from "@xcpcio/types";
|
|
8
8
|
|
|
9
9
|
import { Pagination } from "~/composables/pagination";
|
|
@@ -249,6 +249,18 @@ function getProblemLabelColorStyle(s: Submission) {
|
|
|
249
249
|
color: p.balloonColor.color,
|
|
250
250
|
};
|
|
251
251
|
}
|
|
252
|
+
|
|
253
|
+
const showVideoModal = ref(false);
|
|
254
|
+
const currentSubmissionReaction = ref(null as unknown as SubmissionReaction);
|
|
255
|
+
|
|
256
|
+
function openVideoModal(submissionReaction: SubmissionReaction) {
|
|
257
|
+
currentSubmissionReaction.value = submissionReaction;
|
|
258
|
+
showVideoModal.value = true;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
function closeVideoModal() {
|
|
262
|
+
showVideoModal.value = false;
|
|
263
|
+
}
|
|
252
264
|
</script>
|
|
253
265
|
|
|
254
266
|
<template>
|
|
@@ -256,6 +268,17 @@ function getProblemLabelColorStyle(s: Submission) {
|
|
|
256
268
|
<div
|
|
257
269
|
mx-auto w-full
|
|
258
270
|
>
|
|
271
|
+
<div
|
|
272
|
+
v-if="showVideoModal"
|
|
273
|
+
flex justify-start items-start
|
|
274
|
+
>
|
|
275
|
+
<ReactionVideoModal
|
|
276
|
+
:is-open="showVideoModal"
|
|
277
|
+
:submission-reaction="currentSubmissionReaction"
|
|
278
|
+
@close="closeVideoModal"
|
|
279
|
+
/>
|
|
280
|
+
</div>
|
|
281
|
+
|
|
259
282
|
<div
|
|
260
283
|
relative overflow-hidden
|
|
261
284
|
bg-white dark:bg-gray-800
|
|
@@ -405,6 +428,13 @@ function getProblemLabelColorStyle(s: Submission) {
|
|
|
405
428
|
>
|
|
406
429
|
Submit Time
|
|
407
430
|
</th>
|
|
431
|
+
<th
|
|
432
|
+
v-if="rank.contest.options.submissionEnableActionField"
|
|
433
|
+
scope="col"
|
|
434
|
+
class="px-4 py-3"
|
|
435
|
+
>
|
|
436
|
+
Action
|
|
437
|
+
</th>
|
|
408
438
|
</tr>
|
|
409
439
|
</thead>
|
|
410
440
|
|
|
@@ -484,6 +514,25 @@ function getProblemLabelColorStyle(s: Submission) {
|
|
|
484
514
|
</Tooltip>
|
|
485
515
|
</div>
|
|
486
516
|
</td>
|
|
517
|
+
|
|
518
|
+
<td
|
|
519
|
+
v-if="rank.contest.options.submissionEnableActionField"
|
|
520
|
+
class="whitespace-nowrap px-4 py-2 text-gray-900 dark:text-white"
|
|
521
|
+
>
|
|
522
|
+
<Tooltip>
|
|
523
|
+
<div
|
|
524
|
+
v-if="s.reaction"
|
|
525
|
+
flex items-center justify-start
|
|
526
|
+
text-lg
|
|
527
|
+
cursor-pointer
|
|
528
|
+
i-material-symbols-slow-motion-video
|
|
529
|
+
@click="openVideoModal(s.reaction)"
|
|
530
|
+
/>
|
|
531
|
+
<template #popper>
|
|
532
|
+
Reaction Video
|
|
533
|
+
</template>
|
|
534
|
+
</Tooltip>
|
|
535
|
+
</td>
|
|
487
536
|
</tr>
|
|
488
537
|
</template>
|
|
489
538
|
</tbody>
|
package/src/components.d.ts
CHANGED
|
@@ -41,6 +41,7 @@ declare module 'vue' {
|
|
|
41
41
|
RatingInfoModal: typeof import('./components/rating/RatingInfoModal.vue')['default']
|
|
42
42
|
RatingTable: typeof import('./components/rating/RatingTable.vue')['default']
|
|
43
43
|
RatingUserUI: typeof import('./components/rating/RatingUserUI.vue')['default']
|
|
44
|
+
ReactionVideoModal: typeof import('./components/board/ReactionVideoModal.vue')['default']
|
|
44
45
|
RightArrowIcon: typeof import('./components/icon/RightArrowIcon.vue')['default']
|
|
45
46
|
RouterLink: typeof import('vue-router')['RouterLink']
|
|
46
47
|
RouterView: typeof import('vue-router')['RouterView']
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.list-enter-active[data-v-c5c85310]{transition:all 2s ease}.list-leave-active[data-v-c5c85310]{transition:all .75s ease}.list-enter-from[data-v-c5c85310],.list-leave-to[data-v-c5c85310]{opacity:0;transform:translate(-30px)}.item[data-vss-custom-attr=PENDING]{color:var(--theme-status-pending)!important}.item[data-vss-custom-attr=WAITING]{color:var(--theme-status-waiting)!important}.item[data-vss-custom-attr=PREPARING]{color:var(--theme-status-preparing)!important}.item[data-vss-custom-attr=COMPILING]{color:var(--theme-status-compiling)!important}.item[data-vss-custom-attr=RUNNING],.item[data-vss-custom-attr=JUDGING]{color:var(--theme-status-running)!important}.item[data-vss-custom-attr=FROZEN]{color:var(--theme-status-pending)!important}.item[data-vss-custom-attr=ACCEPTED],.item[data-vss-custom-attr=CORRECT]{color:var(--theme-status-accepted)!important}.item[data-vss-custom-attr=PARTIALLY_CORRECT]{color:var(--theme-status-partially-correct)!important}.item[data-vss-custom-attr=REJECTED],.item[data-vss-custom-attr=WRONG_ANSWER],.item[data-vss-custom-attr=NO_OUTPUT]{color:var(--theme-status-wrong-answer)!important}.item[data-vss-custom-attr=COMPILATION_ERROR],.item[data-vss-custom-attr=PRESENTATION_ERROR]{color:var(--theme-status-compilation-error)!important}.item[data-vss-custom-attr=RUNTIME_ERROR]{color:var(--theme-status-runtime-error)!important}.item[data-vss-custom-attr=TIME_LIMIT_EXCEEDED]{color:var(--theme-status-time-limit-exceeded)!important}.item[data-vss-custom-attr=MEMORY_LIMIT_EXCEEDED]{color:var(--theme-status-memory-limit-exceeded)!important}.item[data-vss-custom-attr=OUTPUT_LIMIT_EXCEEDED],.item[data-vss-custom-attr=IDLENESS_LIMIT_EXCEEDED]{color:var(--theme-status-output-limit-exceeded)!important}.item[data-vss-custom-attr=HACKED]{color:var(--theme-status-wrong-answer)!important}.item[data-vss-custom-attr=JUDGEMENT_FAILED]{color:var(--theme-status-judgement-failed)!important}.item[data-vss-custom-attr=CONFIGURATION_ERROR]{color:var(--theme-status-configuration-error)!important}.item[data-vss-custom-attr=FILE_ERROR]{color:var(--theme-status-file-error)!important}.item[data-vss-custom-attr=SYSTEM_ERROR]{color:var(--theme-status-system-error)!important}.item[data-vss-custom-attr=CANCELED]{color:var(--theme-status-canceled)!important}.item[data-vss-custom-attr=SKIPPED]{color:var(--theme-status-skipped)!important}.item[data-vss-custom-attr=SECURITY_VIOLATED],.item[data-vss-custom-attr=DENIAL_OF_JUDGEMENT]{color:var(--theme-status-judgement-failed)!important}.item[data-vss-custom-attr=UNKNOWN]{color:var(--theme-status-unknown)!important}.item[data-vss-custom-attr=UNDEFINED]{color:var(--theme-status-undefined)!important}.PENDING[data-v-72257074]{color:var(--theme-status-pending)}.WAITING[data-v-72257074]{color:var(--theme-status-waiting)}.PREPARING[data-v-72257074]{color:var(--theme-status-preparing)}.COMPILING[data-v-72257074]{color:var(--theme-status-compiling)}.RUNNING[data-v-72257074],.JUDGING[data-v-72257074]{color:var(--theme-status-running)}.FROZEN[data-v-72257074]{color:var(--theme-status-pending)}.ACCEPTED[data-v-72257074],.CORRECT[data-v-72257074]{color:var(--theme-status-accepted)}.PARTIALLY_CORRECT[data-v-72257074]{color:var(--theme-status-partially-correct)}.REJECTED[data-v-72257074],.WRONG_ANSWER[data-v-72257074],.NO_OUTPUT[data-v-72257074]{color:var(--theme-status-wrong-answer)}.COMPILATION_ERROR[data-v-72257074],.PRESENTATION_ERROR[data-v-72257074]{color:var(--theme-status-compilation-error)}.RUNTIME_ERROR[data-v-72257074]{color:var(--theme-status-runtime-error)}.TIME_LIMIT_EXCEEDED[data-v-72257074]{color:var(--theme-status-time-limit-exceeded)}.MEMORY_LIMIT_EXCEEDED[data-v-72257074]{color:var(--theme-status-memory-limit-exceeded)}.OUTPUT_LIMIT_EXCEEDED[data-v-72257074],.IDLENESS_LIMIT_EXCEEDED[data-v-72257074]{color:var(--theme-status-output-limit-exceeded)}.HACKED[data-v-72257074]{color:var(--theme-status-wrong-answer)}.JUDGEMENT_FAILED[data-v-72257074]{color:var(--theme-status-judgement-failed)}.CONFIGURATION_ERROR[data-v-72257074]{color:var(--theme-status-configuration-error)}.FILE_ERROR[data-v-72257074]{color:var(--theme-status-file-error)}.SYSTEM_ERROR[data-v-72257074]{color:var(--theme-status-system-error)}.CANCELED[data-v-72257074]{color:var(--theme-status-canceled)}.SKIPPED[data-v-72257074]{color:var(--theme-status-skipped)}.SECURITY_VIOLATED[data-v-72257074],.DENIAL_OF_JUDGEMENT[data-v-72257074]{color:var(--theme-status-judgement-failed)}.UNKNOWN[data-v-72257074]{color:var(--theme-status-unknown)}.UNDEFINED[data-v-72257074]{color:var(--theme-status-undefined)}table.standings[data-v-198c3ef3]{text-align:center;border:none;margin:0;padding:0}.loading[data-v-198c3ef3]{display:flex;align-items:center;justify-content:center;height:80vh}img[data-v-198c3ef3]{border:0!important}table[data-v-198c3ef3]{border-collapse:separate!important}td[data-v-198c3ef3]{box-sizing:content-box!important;padding:1px!important}tr.head[data-v-198c3ef3]{background-color:#eee}tr.team[data-v-198c3ef3]{height:2.5em}.hover[data-v-198c3ef3]{cursor:pointer}td.stnd[data-v-198c3ef3]{font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}.dark td.stnd[data-v-198c3ef3]{border-color:#fff}td.stndact[data-v-198c3ef3]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.frost[data-v-198c3ef3]{background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.gold[data-v-198c3ef3]{background-color:#fff566;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.goldact[data-v-198c3ef3]{color:#00f;background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.silver[data-v-198c3ef3]{background-color:#ffadd2;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.silveract[data-v-198c3ef3]{color:#00f;background-color:#aaa;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.bronze[data-v-198c3ef3]{background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.bronzeact[data-v-198c3ef3]{color:#00f;background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.unofficial[data-v-198c3ef3]{background-color:#fff;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.honorable[data-v-198c3ef3]{background-color:#e6f7ff;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.first-solve[data-v-198c3ef3]{background-color:#3db03d;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.incorrect[data-v-198c3ef3]{background-color:#ffd0d0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.correct[data-v-198c3ef3]{background-color:#e1ffb5;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.unattempted[data-v-198c3ef3]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}.dark td.unattempted[data-v-198c3ef3]{color:#fff}th.success[data-v-198c3ef3]{background-color:#a0f0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.title[data-v-198c3ef3],td.title[data-v-198c3ef3]{background-color:#f5f5d5;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.tried[data-v-198c3ef3]{background-color:#ffa0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.pending[data-v-198c3ef3]{background-color:#c8d6fa;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.upsolved[data-v-198c3ef3]{font-size:12px;border-width:0px;border-color:#000;margin:1px;color:red}td.virtual[data-v-198c3ef3]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.alive[data-v-198c3ef3]{color:red;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.empty[data-v-198c3ef3]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}th.stnd[data-v-198c3ef3]{font-size:12px;border-width:0px;border-color:#000;margin:1px}td.o01[data-v-198c3ef3]{background-color:#004080}tr.solver[data-v-198c3ef3]{background-color:#f0c0a0}tr.statistics-0[data-v-198c3ef3]{background-color:#95de64}tr.statistics-1[data-v-198c3ef3]{background-color:#b7eb8f}td.o00[data-v-198c3ef3]{background-color:#004080}td.stand00[data-v-198c3ef3]{background-color:#e0e0ff}td.stand01[data-v-198c3ef3]{background-color:#e8e8ff}td.stand10[data-v-198c3ef3]{background-color:#f8f8f8}td.stand11[data-v-198c3ef3]{background-color:#f2f2f2}tr.filter-team[data-v-198c3ef3]{background-color:#ffffe0}tr.cfres01[data-v-198c3ef3]{background-color:#ffffb0}table.matches[data-v-198c3ef3]{table-layout:fixed}td.match[data-v-198c3ef3]{height:6em;width:2em}.coderTextRed[data-v-198c3ef3],.coderTextYellow[data-v-198c3ef3],.coderTextViolet[data-v-198c3ef3],.coderTextBlue[data-v-198c3ef3],.coderTextGreen[data-v-198c3ef3],.coderTextGray[data-v-198c3ef3],.coderTextOrange[data-v-198c3ef3]{font-weight:700;background-color:transparent}.coderTextRed[data-v-198c3ef3]:link,.coderTextYellow[data-v-198c3ef3]:link,.coderTextViolet[data-v-198c3ef3]:link,.coderTextBlue[data-v-198c3ef3]:link,.coderTextGreen[data-v-198c3ef3]:link,.coderTextGray[data-v-198c3ef3]:link,.coderTextOrange[data-v-198c3ef3]:link,.coderTextWhite[data-v-198c3ef3]:link,.coderTextBlack[data-v-198c3ef3]:link,.coderTextRed[data-v-198c3ef3]:visited,.coderTextYellow[data-v-198c3ef3]:visited,.coderTextViolet[data-v-198c3ef3]:visited,.coderTextBlue[data-v-198c3ef3]:visited,.coderTextGreen[data-v-198c3ef3]:visited,.coderTextGray[data-v-198c3ef3]:visited,.coderTextOrange[data-v-198c3ef3]:visited,.coderTextWhite[data-v-198c3ef3]:visited,.coderTextBlack[data-v-198c3ef3]:visited{text-decoration:none}.coderTextRed[data-v-198c3ef3]:hover,.coderTextYellow[data-v-198c3ef3]:hover,.coderTextViolet[data-v-198c3ef3]:hover,.coderTextBlue[data-v-198c3ef3]:hover,.coderTextGreen[data-v-198c3ef3]:hover,.coderTextGray[data-v-198c3ef3]:hover,.coderTextOrange[data-v-198c3ef3]:hover,.coderTextWhite[data-v-198c3ef3]:hover,.coderTextBlack[data-v-198c3ef3]:hover,.coderTextRed[data-v-198c3ef3]:active,.coderTextYellow[data-v-198c3ef3]:active,.coderTextViolet[data-v-198c3ef3]:active,.coderTextBlue[data-v-198c3ef3]:active,.coderTextGreen[data-v-198c3ef3]:active,.coderTextGray[data-v-198c3ef3]:active,.coderTextOrange[data-v-198c3ef3]:active,.coderTextWhite[data-v-198c3ef3]:active,.coderTextBlack[data-v-198c3ef3]:active{text-decoration:underline}.coderTextOrange[data-v-198c3ef3],.coderTextOrange[data-v-198c3ef3]:link,.coderTextOrange[data-v-198c3ef3]:visited,.coderTextOrange[data-v-198c3ef3]:hover,.coderTextOrange[data-v-198c3ef3]:active{color:#f90}.coderTextRed[data-v-198c3ef3],.coderTextRed[data-v-198c3ef3]:link,.coderTextRed[data-v-198c3ef3]:visited,.coderTextRed[data-v-198c3ef3]:hover,.coderTextRed[data-v-198c3ef3]:active{color:#e00}.coderTextYellow[data-v-198c3ef3],.coderTextYellow[data-v-198c3ef3]:link,.coderTextYellow[data-v-198c3ef3]:visited,.coderTextYellow[data-v-198c3ef3]:hover,.coderTextYellow[data-v-198c3ef3]:active{color:#dc0}.coderTextViolet[data-v-198c3ef3],.coderTextViolet[data-v-198c3ef3]:link,.coderTextViolet[data-v-198c3ef3]:visited,.coderTextViolet[data-v-198c3ef3]:hover,.coderTextViolet[data-v-198c3ef3]:active{color:#a0a}.coderTextBlue[data-v-198c3ef3],.coderTextBlue[data-v-198c3ef3]:link,.coderTextBlue[data-v-198c3ef3]:visited,.coderTextBlue[data-v-198c3ef3]:hover,.coderTextBlue[data-v-198c3ef3]:active{color:#66f}.coderTextGreen[data-v-198c3ef3],.coderTextGreen[data-v-198c3ef3]:link,.coderTextGreen[data-v-198c3ef3]:visited,.coderTextGreen[data-v-198c3ef3]:hover,.coderTextGreen[data-v-198c3ef3]:active{color:#00a900}.coderTextGray[data-v-198c3ef3],.coderTextGray[data-v-198c3ef3]:link,.coderTextGray[data-v-198c3ef3]:visited,.coderTextGray[data-v-198c3ef3]:hover,.coderTextGray[data-v-198c3ef3]:active{color:#999}.coderTextWhite[data-v-198c3ef3],.coderTextWhite[data-v-198c3ef3]:link,.coderTextWhite[data-v-198c3ef3]:visited,.coderTextWhite[data-v-198c3ef3]:hover,.coderTextWhite[data-v-198c3ef3]:active{color:#fff}.coderTextBlack[data-v-198c3ef3],.coderTextBlack[data-v-198c3ef3]:link,.coderTextBlack[data-v-198c3ef3]:visited,.coderTextBlack[data-v-198c3ef3]:hover,.coderTextBlack[data-v-198c3ef3]:active{color:#000}s[data-v-198c3ef3]{font-size:10px;font-style:normal;font-weight:700;text-decoration:none}.announce[data-v-198c3ef3]{padding:0 8px;float:right;width:50%;border:1px solid #004080;margin-left:8px}p.nmessage[data-v-198c3ef3]{text-align:justify}a[data-v-198c3ef3]{color:#004080}td.topmenu a[data-v-198c3ef3]{color:#fff;text-decoration:none;cursor:hand}td.topmenu a[data-v-198c3ef3]:hover{color:silver}td.topmenu[data-v-198c3ef3]{text-align:center;font-weight:700;font-style:oblique}td.topmenu div[data-v-198c3ef3]{background-color:#004080;height:25px;padding-top:2px}td.menuleft a[data-v-198c3ef3]{color:#fff;text-decoration:none;cursor:hand}td.menuleft a[data-v-198c3ef3]:hover{color:silver}td.menuleft[data-v-198c3ef3]{font-weight:700;font-size:16px;color:#640d00;font-style:oblique;text-align:left}td.menuleft div[data-v-198c3ef3]{padding:4px 8px;white-space:nowrap;background-color:#004080;text-align:center}td.newsselectcontainer[data-v-198c3ef3]{height:25px;width:190px}td.newsselectcontainer form[data-v-198c3ef3]{margin:0}td.newsselectcontainer select[data-v-198c3ef3]{background-color:#004080;color:#fff;width:140px;font-style:oblique;font-weight:700}.newsselectbtn[data-v-198c3ef3]{background-color:#004080;color:#fff;width:42px;height:23px;font-weight:700}.menuleftblock[data-v-198c3ef3]{border:1px solid #004080}.memorial[data-v-198c3ef3]{padding:0 8px;border:2px solid #000000}.menu[data-v-198c3ef3]{z-index:1000;font-size:1em;height:2em}.menu ul[data-v-198c3ef3]{padding:0;margin:0;list-style-type:none;height:2em;background:#004080}.menu ul ul[data-v-198c3ef3]{width:15em}.menu ul li[data-v-198c3ef3]{float:left;height:2em;line-height:2em}.menu ul ul li[data-v-198c3ef3]{display:block;width:12em;height:auto;position:relative;line-height:1em}.menu a[data-v-198c3ef3],.menu a[data-v-198c3ef3]:visited{display:block;float:left;height:100%;font-size:1em;text-decoration:none;color:#fff;background:#004080;padding:0 3em;text-align:center;font-weight:700;font-style:oblique}.menu ul ul a[data-v-198c3ef3],.menu ul ul a[data-v-198c3ef3]:visited{display:block;background:#004080;color:#fff;width:12em;height:100%;border:1px solid #fff;line-height:1em;padding:.5em 1em;text-align:center;font-weight:700;font-style:oblique}.menu ul table ul a[data-v-198c3ef3],.menu ul table ul a[data-v-198c3ef3]:visited{width:14em;width:12em}.menu table[data-v-198c3ef3]{position:absolute;left:0;top:0;font-size:1em;z-index:-1}.menu ul ul table[data-v-198c3ef3]{left:-1px}.menu ul ul table ul.left[data-v-198c3ef3]{margin-left:2px}.menu li[data-v-198c3ef3]:hover,* html .menu a[data-v-198c3ef3]:hover{position:relative}.menu ul ul ul a[data-v-198c3ef3],.menu ul ul ul a[data-v-198c3ef3]:visited,.menu ul ul ul ul a[data-v-198c3ef3],.menu ul ul ul ul a[data-v-198c3ef3]:visited,.menu ul :hover a.sub1[data-v-198c3ef3],.menu ul ul :hover a.sub2[data-v-198c3ef3]{background:#004080}.menu a[data-v-198c3ef3]:hover{color:silver;background:#014181}.menu :hover>a[data-v-198c3ef3]{color:silver;background:#014181}.menu ul ul a[data-v-198c3ef3]:hover{color:silver;background:#014181}.menu ul ul :hover>a[data-v-198c3ef3]{color:silver;background:#014181}.menu ul ul ul a[data-v-198c3ef3]:hover{color:silver;background:#014181}.menu ul ul ul :hover>a[data-v-198c3ef3]{color:silver;background:#014181}.menu ul ul ul ul a[data-v-198c3ef3]:hover{color:silver;background:#014181}.menu ul ul[data-v-198c3ef3]{visibility:hidden;position:absolute;height:0;top:2em;left:0;width:14em}.menu ul ul ul[data-v-198c3ef3]{left:14em;top:0;width:14em}.menu ul ul ul.left[data-v-198c3ef3]{left:-14em}.menu ul li:hover ul[data-v-198c3ef3],.menu ul a:hover ul[data-v-198c3ef3]{visibility:visible;height:auto;padding-bottom:3em}.menu ul :hover ul ul[data-v-198c3ef3],.menu ul :hover ul :hover ul ul[data-v-198c3ef3]{visibility:hidden}.menu ul :hover ul :hover ul[data-v-198c3ef3],.menu ul :hover ul :hover ul :hover ul[data-v-198c3ef3]{visibility:visible}.lmenu[data-v-198c3ef3]{height:150px;font-size:90%}.lmenu ul[data-v-198c3ef3]{position:relative;z-index:500;padding:0;margin:0;list-style-type:none;width:15em}.lmenu li[data-v-198c3ef3]{color:#fff;height:2.6em;text-align:center;font-weight:700;font-style:oblique;float:left}.lmenu li div[data-v-198c3ef3]{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;text-indent:.5em;border:1px solid #fff;color:#004080;height:2.6em;float:left}.lmenu table[data-v-198c3ef3]{position:absolute;border-collapse:collapse;top:0;left:0;z-index:100;font-size:1em}.lmenu a[data-v-198c3ef3],.lmenu a[data-v-198c3ef3]:visited{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;color:#fff;background:#004080;text-indent:.5em;border:1px solid #fff}* html .lmenu a[data-v-198c3ef3],* html .menu a[data-v-198c3ef3]:visited{width:150em;width:14.9em}* html .lmenu a[data-v-198c3ef3]:hover{color:silver;background:#014181;position:relative}.lmenu li[data-v-198c3ef3]:hover{position:relative}.lmenu a[data-v-198c3ef3]:active,.lmenu a[data-v-198c3ef3]:focus{color:silver;background:#004080}.lmenu li:hover>a[data-v-198c3ef3]{color:silver;background:#014181}.lmenu li ul[data-v-198c3ef3]{visibility:hidden;position:absolute;top:-3em;left:10em;padding:3em}.lmenu li:hover>ul[data-v-198c3ef3]{visibility:visible}.lmenu ul a:hover ul ul[data-v-198c3ef3],.lmenu ul a:hover ul a:hover ul ul[data-v-198c3ef3],.lmenu ul a:hover ul a:hover ul a:hover ul ul[data-v-198c3ef3]{visibility:hidden}.lmenu ul a:hover ul[data-v-198c3ef3],.lmenu ul a:hover ul a:hover ul[data-v-198c3ef3],.lmenu ul a:hover ul a:hover ul a:hover ul[data-v-198c3ef3],.lmenu ul a:hover ul a:hover ul a:hover ul a:hover ul[data-v-198c3ef3]{visibility:visible}table.standings[data-v-61916fae]{text-align:center;border:none;margin:0;padding:0}.loading[data-v-61916fae]{display:flex;align-items:center;justify-content:center;height:80vh}img[data-v-61916fae]{border:0!important}table[data-v-61916fae]{border-collapse:separate!important}td[data-v-61916fae]{box-sizing:content-box!important;padding:1px!important}tr.head[data-v-61916fae]{background-color:#eee}tr.team[data-v-61916fae]{height:2.5em}.hover[data-v-61916fae]{cursor:pointer}td.stnd[data-v-61916fae]{font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}.dark td.stnd[data-v-61916fae]{border-color:#fff}td.stndact[data-v-61916fae]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.frost[data-v-61916fae]{background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.gold[data-v-61916fae]{background-color:#fff566;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.goldact[data-v-61916fae]{color:#00f;background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.silver[data-v-61916fae]{background-color:#ffadd2;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.silveract[data-v-61916fae]{color:#00f;background-color:#aaa;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.bronze[data-v-61916fae]{background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.bronzeact[data-v-61916fae]{color:#00f;background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.unofficial[data-v-61916fae]{background-color:#fff;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.honorable[data-v-61916fae]{background-color:#e6f7ff;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.first-solve[data-v-61916fae]{background-color:#3db03d;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.incorrect[data-v-61916fae]{background-color:#ffd0d0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.correct[data-v-61916fae]{background-color:#e1ffb5;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.unattempted[data-v-61916fae]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}.dark td.unattempted[data-v-61916fae]{color:#fff}th.success[data-v-61916fae]{background-color:#a0f0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.title[data-v-61916fae],td.title[data-v-61916fae]{background-color:#f5f5d5;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.tried[data-v-61916fae]{background-color:#ffa0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.pending[data-v-61916fae]{background-color:#c8d6fa;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.upsolved[data-v-61916fae]{font-size:12px;border-width:0px;border-color:#000;margin:1px;color:red}td.virtual[data-v-61916fae]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.alive[data-v-61916fae]{color:red;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.empty[data-v-61916fae]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}th.stnd[data-v-61916fae]{font-size:12px;border-width:0px;border-color:#000;margin:1px}td.o01[data-v-61916fae]{background-color:#004080}tr.solver[data-v-61916fae]{background-color:#f0c0a0}tr.statistics-0[data-v-61916fae]{background-color:#95de64}tr.statistics-1[data-v-61916fae]{background-color:#b7eb8f}td.o00[data-v-61916fae]{background-color:#004080}td.stand00[data-v-61916fae]{background-color:#e0e0ff}td.stand01[data-v-61916fae]{background-color:#e8e8ff}td.stand10[data-v-61916fae]{background-color:#f8f8f8}td.stand11[data-v-61916fae]{background-color:#f2f2f2}tr.filter-team[data-v-61916fae]{background-color:#ffffe0}tr.cfres01[data-v-61916fae]{background-color:#ffffb0}table.matches[data-v-61916fae]{table-layout:fixed}td.match[data-v-61916fae]{height:6em;width:2em}.coderTextRed[data-v-61916fae],.coderTextYellow[data-v-61916fae],.coderTextViolet[data-v-61916fae],.coderTextBlue[data-v-61916fae],.coderTextGreen[data-v-61916fae],.coderTextGray[data-v-61916fae],.coderTextOrange[data-v-61916fae]{font-weight:700;background-color:transparent}.coderTextRed[data-v-61916fae]:link,.coderTextYellow[data-v-61916fae]:link,.coderTextViolet[data-v-61916fae]:link,.coderTextBlue[data-v-61916fae]:link,.coderTextGreen[data-v-61916fae]:link,.coderTextGray[data-v-61916fae]:link,.coderTextOrange[data-v-61916fae]:link,.coderTextWhite[data-v-61916fae]:link,.coderTextBlack[data-v-61916fae]:link,.coderTextRed[data-v-61916fae]:visited,.coderTextYellow[data-v-61916fae]:visited,.coderTextViolet[data-v-61916fae]:visited,.coderTextBlue[data-v-61916fae]:visited,.coderTextGreen[data-v-61916fae]:visited,.coderTextGray[data-v-61916fae]:visited,.coderTextOrange[data-v-61916fae]:visited,.coderTextWhite[data-v-61916fae]:visited,.coderTextBlack[data-v-61916fae]:visited{text-decoration:none}.coderTextRed[data-v-61916fae]:hover,.coderTextYellow[data-v-61916fae]:hover,.coderTextViolet[data-v-61916fae]:hover,.coderTextBlue[data-v-61916fae]:hover,.coderTextGreen[data-v-61916fae]:hover,.coderTextGray[data-v-61916fae]:hover,.coderTextOrange[data-v-61916fae]:hover,.coderTextWhite[data-v-61916fae]:hover,.coderTextBlack[data-v-61916fae]:hover,.coderTextRed[data-v-61916fae]:active,.coderTextYellow[data-v-61916fae]:active,.coderTextViolet[data-v-61916fae]:active,.coderTextBlue[data-v-61916fae]:active,.coderTextGreen[data-v-61916fae]:active,.coderTextGray[data-v-61916fae]:active,.coderTextOrange[data-v-61916fae]:active,.coderTextWhite[data-v-61916fae]:active,.coderTextBlack[data-v-61916fae]:active{text-decoration:underline}.coderTextOrange[data-v-61916fae],.coderTextOrange[data-v-61916fae]:link,.coderTextOrange[data-v-61916fae]:visited,.coderTextOrange[data-v-61916fae]:hover,.coderTextOrange[data-v-61916fae]:active{color:#f90}.coderTextRed[data-v-61916fae],.coderTextRed[data-v-61916fae]:link,.coderTextRed[data-v-61916fae]:visited,.coderTextRed[data-v-61916fae]:hover,.coderTextRed[data-v-61916fae]:active{color:#e00}.coderTextYellow[data-v-61916fae],.coderTextYellow[data-v-61916fae]:link,.coderTextYellow[data-v-61916fae]:visited,.coderTextYellow[data-v-61916fae]:hover,.coderTextYellow[data-v-61916fae]:active{color:#dc0}.coderTextViolet[data-v-61916fae],.coderTextViolet[data-v-61916fae]:link,.coderTextViolet[data-v-61916fae]:visited,.coderTextViolet[data-v-61916fae]:hover,.coderTextViolet[data-v-61916fae]:active{color:#a0a}.coderTextBlue[data-v-61916fae],.coderTextBlue[data-v-61916fae]:link,.coderTextBlue[data-v-61916fae]:visited,.coderTextBlue[data-v-61916fae]:hover,.coderTextBlue[data-v-61916fae]:active{color:#66f}.coderTextGreen[data-v-61916fae],.coderTextGreen[data-v-61916fae]:link,.coderTextGreen[data-v-61916fae]:visited,.coderTextGreen[data-v-61916fae]:hover,.coderTextGreen[data-v-61916fae]:active{color:#00a900}.coderTextGray[data-v-61916fae],.coderTextGray[data-v-61916fae]:link,.coderTextGray[data-v-61916fae]:visited,.coderTextGray[data-v-61916fae]:hover,.coderTextGray[data-v-61916fae]:active{color:#999}.coderTextWhite[data-v-61916fae],.coderTextWhite[data-v-61916fae]:link,.coderTextWhite[data-v-61916fae]:visited,.coderTextWhite[data-v-61916fae]:hover,.coderTextWhite[data-v-61916fae]:active{color:#fff}.coderTextBlack[data-v-61916fae],.coderTextBlack[data-v-61916fae]:link,.coderTextBlack[data-v-61916fae]:visited,.coderTextBlack[data-v-61916fae]:hover,.coderTextBlack[data-v-61916fae]:active{color:#000}s[data-v-61916fae]{font-size:10px;font-style:normal;font-weight:700;text-decoration:none}.announce[data-v-61916fae]{padding:0 8px;float:right;width:50%;border:1px solid #004080;margin-left:8px}p.nmessage[data-v-61916fae]{text-align:justify}a[data-v-61916fae]{color:#004080}td.topmenu a[data-v-61916fae]{color:#fff;text-decoration:none;cursor:hand}td.topmenu a[data-v-61916fae]:hover{color:silver}td.topmenu[data-v-61916fae]{text-align:center;font-weight:700;font-style:oblique}td.topmenu div[data-v-61916fae]{background-color:#004080;height:25px;padding-top:2px}td.menuleft a[data-v-61916fae]{color:#fff;text-decoration:none;cursor:hand}td.menuleft a[data-v-61916fae]:hover{color:silver}td.menuleft[data-v-61916fae]{font-weight:700;font-size:16px;color:#640d00;font-style:oblique;text-align:left}td.menuleft div[data-v-61916fae]{padding:4px 8px;white-space:nowrap;background-color:#004080;text-align:center}td.newsselectcontainer[data-v-61916fae]{height:25px;width:190px}td.newsselectcontainer form[data-v-61916fae]{margin:0}td.newsselectcontainer select[data-v-61916fae]{background-color:#004080;color:#fff;width:140px;font-style:oblique;font-weight:700}.newsselectbtn[data-v-61916fae]{background-color:#004080;color:#fff;width:42px;height:23px;font-weight:700}.menuleftblock[data-v-61916fae]{border:1px solid #004080}.memorial[data-v-61916fae]{padding:0 8px;border:2px solid #000000}.menu[data-v-61916fae]{z-index:1000;font-size:1em;height:2em}.menu ul[data-v-61916fae]{padding:0;margin:0;list-style-type:none;height:2em;background:#004080}.menu ul ul[data-v-61916fae]{width:15em}.menu ul li[data-v-61916fae]{float:left;height:2em;line-height:2em}.menu ul ul li[data-v-61916fae]{display:block;width:12em;height:auto;position:relative;line-height:1em}.menu a[data-v-61916fae],.menu a[data-v-61916fae]:visited{display:block;float:left;height:100%;font-size:1em;text-decoration:none;color:#fff;background:#004080;padding:0 3em;text-align:center;font-weight:700;font-style:oblique}.menu ul ul a[data-v-61916fae],.menu ul ul a[data-v-61916fae]:visited{display:block;background:#004080;color:#fff;width:12em;height:100%;border:1px solid #fff;line-height:1em;padding:.5em 1em;text-align:center;font-weight:700;font-style:oblique}.menu ul table ul a[data-v-61916fae],.menu ul table ul a[data-v-61916fae]:visited{width:14em;width:12em}.menu table[data-v-61916fae]{position:absolute;left:0;top:0;font-size:1em;z-index:-1}.menu ul ul table[data-v-61916fae]{left:-1px}.menu ul ul table ul.left[data-v-61916fae]{margin-left:2px}.menu li[data-v-61916fae]:hover,* html .menu a[data-v-61916fae]:hover{position:relative}.menu ul ul ul a[data-v-61916fae],.menu ul ul ul a[data-v-61916fae]:visited,.menu ul ul ul ul a[data-v-61916fae],.menu ul ul ul ul a[data-v-61916fae]:visited,.menu ul :hover a.sub1[data-v-61916fae],.menu ul ul :hover a.sub2[data-v-61916fae]{background:#004080}.menu a[data-v-61916fae]:hover{color:silver;background:#014181}.menu :hover>a[data-v-61916fae]{color:silver;background:#014181}.menu ul ul a[data-v-61916fae]:hover{color:silver;background:#014181}.menu ul ul :hover>a[data-v-61916fae]{color:silver;background:#014181}.menu ul ul ul a[data-v-61916fae]:hover{color:silver;background:#014181}.menu ul ul ul :hover>a[data-v-61916fae]{color:silver;background:#014181}.menu ul ul ul ul a[data-v-61916fae]:hover{color:silver;background:#014181}.menu ul ul[data-v-61916fae]{visibility:hidden;position:absolute;height:0;top:2em;left:0;width:14em}.menu ul ul ul[data-v-61916fae]{left:14em;top:0;width:14em}.menu ul ul ul.left[data-v-61916fae]{left:-14em}.menu ul li:hover ul[data-v-61916fae],.menu ul a:hover ul[data-v-61916fae]{visibility:visible;height:auto;padding-bottom:3em}.menu ul :hover ul ul[data-v-61916fae],.menu ul :hover ul :hover ul ul[data-v-61916fae]{visibility:hidden}.menu ul :hover ul :hover ul[data-v-61916fae],.menu ul :hover ul :hover ul :hover ul[data-v-61916fae]{visibility:visible}.lmenu[data-v-61916fae]{height:150px;font-size:90%}.lmenu ul[data-v-61916fae]{position:relative;z-index:500;padding:0;margin:0;list-style-type:none;width:15em}.lmenu li[data-v-61916fae]{color:#fff;height:2.6em;text-align:center;font-weight:700;font-style:oblique;float:left}.lmenu li div[data-v-61916fae]{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;text-indent:.5em;border:1px solid #fff;color:#004080;height:2.6em;float:left}.lmenu table[data-v-61916fae]{position:absolute;border-collapse:collapse;top:0;left:0;z-index:100;font-size:1em}.lmenu a[data-v-61916fae],.lmenu a[data-v-61916fae]:visited{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;color:#fff;background:#004080;text-indent:.5em;border:1px solid #fff}* html .lmenu a[data-v-61916fae],* html .menu a[data-v-61916fae]:visited{width:150em;width:14.9em}* html .lmenu a[data-v-61916fae]:hover{color:silver;background:#014181;position:relative}.lmenu li[data-v-61916fae]:hover{position:relative}.lmenu a[data-v-61916fae]:active,.lmenu a[data-v-61916fae]:focus{color:silver;background:#004080}.lmenu li:hover>a[data-v-61916fae]{color:silver;background:#014181}.lmenu li ul[data-v-61916fae]{visibility:hidden;position:absolute;top:-3em;left:10em;padding:3em}.lmenu li:hover>ul[data-v-61916fae]{visibility:visible}.lmenu ul a:hover ul ul[data-v-61916fae],.lmenu ul a:hover ul a:hover ul ul[data-v-61916fae],.lmenu ul a:hover ul a:hover ul a:hover ul ul[data-v-61916fae]{visibility:hidden}.lmenu ul a:hover ul[data-v-61916fae],.lmenu ul a:hover ul a:hover ul[data-v-61916fae],.lmenu ul a:hover ul a:hover ul a:hover ul[data-v-61916fae],.lmenu ul a:hover ul a:hover ul a:hover ul a:hover ul[data-v-61916fae]{visibility:visible}table.standings[data-v-4eb7108c]{text-align:center;border:none;margin:0;padding:0}.loading[data-v-4eb7108c]{display:flex;align-items:center;justify-content:center;height:80vh}img[data-v-4eb7108c]{border:0!important}table[data-v-4eb7108c]{border-collapse:separate!important}td[data-v-4eb7108c]{box-sizing:content-box!important;padding:1px!important}tr.head[data-v-4eb7108c]{background-color:#eee}tr.team[data-v-4eb7108c]{height:2.5em}.hover[data-v-4eb7108c]{cursor:pointer}td.stnd[data-v-4eb7108c]{font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}.dark td.stnd[data-v-4eb7108c]{border-color:#fff}td.stndact[data-v-4eb7108c]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.frost[data-v-4eb7108c]{background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.gold[data-v-4eb7108c]{background-color:#fff566;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.goldact[data-v-4eb7108c]{color:#00f;background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.silver[data-v-4eb7108c]{background-color:#ffadd2;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.silveract[data-v-4eb7108c]{color:#00f;background-color:#aaa;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.bronze[data-v-4eb7108c]{background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.bronzeact[data-v-4eb7108c]{color:#00f;background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.unofficial[data-v-4eb7108c]{background-color:#fff;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.honorable[data-v-4eb7108c]{background-color:#e6f7ff;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.first-solve[data-v-4eb7108c]{background-color:#3db03d;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.incorrect[data-v-4eb7108c]{background-color:#ffd0d0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.correct[data-v-4eb7108c]{background-color:#e1ffb5;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.unattempted[data-v-4eb7108c]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}.dark td.unattempted[data-v-4eb7108c]{color:#fff}th.success[data-v-4eb7108c]{background-color:#a0f0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.title[data-v-4eb7108c],td.title[data-v-4eb7108c]{background-color:#f5f5d5;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.tried[data-v-4eb7108c]{background-color:#ffa0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.pending[data-v-4eb7108c]{background-color:#c8d6fa;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.upsolved[data-v-4eb7108c]{font-size:12px;border-width:0px;border-color:#000;margin:1px;color:red}td.virtual[data-v-4eb7108c]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.alive[data-v-4eb7108c]{color:red;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.empty[data-v-4eb7108c]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}th.stnd[data-v-4eb7108c]{font-size:12px;border-width:0px;border-color:#000;margin:1px}td.o01[data-v-4eb7108c]{background-color:#004080}tr.solver[data-v-4eb7108c]{background-color:#f0c0a0}tr.statistics-0[data-v-4eb7108c]{background-color:#95de64}tr.statistics-1[data-v-4eb7108c]{background-color:#b7eb8f}td.o00[data-v-4eb7108c]{background-color:#004080}td.stand00[data-v-4eb7108c]{background-color:#e0e0ff}td.stand01[data-v-4eb7108c]{background-color:#e8e8ff}td.stand10[data-v-4eb7108c]{background-color:#f8f8f8}td.stand11[data-v-4eb7108c]{background-color:#f2f2f2}tr.filter-team[data-v-4eb7108c]{background-color:#ffffe0}tr.cfres01[data-v-4eb7108c]{background-color:#ffffb0}table.matches[data-v-4eb7108c]{table-layout:fixed}td.match[data-v-4eb7108c]{height:6em;width:2em}.coderTextRed[data-v-4eb7108c],.coderTextYellow[data-v-4eb7108c],.coderTextViolet[data-v-4eb7108c],.coderTextBlue[data-v-4eb7108c],.coderTextGreen[data-v-4eb7108c],.coderTextGray[data-v-4eb7108c],.coderTextOrange[data-v-4eb7108c]{font-weight:700;background-color:transparent}.coderTextRed[data-v-4eb7108c]:link,.coderTextYellow[data-v-4eb7108c]:link,.coderTextViolet[data-v-4eb7108c]:link,.coderTextBlue[data-v-4eb7108c]:link,.coderTextGreen[data-v-4eb7108c]:link,.coderTextGray[data-v-4eb7108c]:link,.coderTextOrange[data-v-4eb7108c]:link,.coderTextWhite[data-v-4eb7108c]:link,.coderTextBlack[data-v-4eb7108c]:link,.coderTextRed[data-v-4eb7108c]:visited,.coderTextYellow[data-v-4eb7108c]:visited,.coderTextViolet[data-v-4eb7108c]:visited,.coderTextBlue[data-v-4eb7108c]:visited,.coderTextGreen[data-v-4eb7108c]:visited,.coderTextGray[data-v-4eb7108c]:visited,.coderTextOrange[data-v-4eb7108c]:visited,.coderTextWhite[data-v-4eb7108c]:visited,.coderTextBlack[data-v-4eb7108c]:visited{text-decoration:none}.coderTextRed[data-v-4eb7108c]:hover,.coderTextYellow[data-v-4eb7108c]:hover,.coderTextViolet[data-v-4eb7108c]:hover,.coderTextBlue[data-v-4eb7108c]:hover,.coderTextGreen[data-v-4eb7108c]:hover,.coderTextGray[data-v-4eb7108c]:hover,.coderTextOrange[data-v-4eb7108c]:hover,.coderTextWhite[data-v-4eb7108c]:hover,.coderTextBlack[data-v-4eb7108c]:hover,.coderTextRed[data-v-4eb7108c]:active,.coderTextYellow[data-v-4eb7108c]:active,.coderTextViolet[data-v-4eb7108c]:active,.coderTextBlue[data-v-4eb7108c]:active,.coderTextGreen[data-v-4eb7108c]:active,.coderTextGray[data-v-4eb7108c]:active,.coderTextOrange[data-v-4eb7108c]:active,.coderTextWhite[data-v-4eb7108c]:active,.coderTextBlack[data-v-4eb7108c]:active{text-decoration:underline}.coderTextOrange[data-v-4eb7108c],.coderTextOrange[data-v-4eb7108c]:link,.coderTextOrange[data-v-4eb7108c]:visited,.coderTextOrange[data-v-4eb7108c]:hover,.coderTextOrange[data-v-4eb7108c]:active{color:#f90}.coderTextRed[data-v-4eb7108c],.coderTextRed[data-v-4eb7108c]:link,.coderTextRed[data-v-4eb7108c]:visited,.coderTextRed[data-v-4eb7108c]:hover,.coderTextRed[data-v-4eb7108c]:active{color:#e00}.coderTextYellow[data-v-4eb7108c],.coderTextYellow[data-v-4eb7108c]:link,.coderTextYellow[data-v-4eb7108c]:visited,.coderTextYellow[data-v-4eb7108c]:hover,.coderTextYellow[data-v-4eb7108c]:active{color:#dc0}.coderTextViolet[data-v-4eb7108c],.coderTextViolet[data-v-4eb7108c]:link,.coderTextViolet[data-v-4eb7108c]:visited,.coderTextViolet[data-v-4eb7108c]:hover,.coderTextViolet[data-v-4eb7108c]:active{color:#a0a}.coderTextBlue[data-v-4eb7108c],.coderTextBlue[data-v-4eb7108c]:link,.coderTextBlue[data-v-4eb7108c]:visited,.coderTextBlue[data-v-4eb7108c]:hover,.coderTextBlue[data-v-4eb7108c]:active{color:#66f}.coderTextGreen[data-v-4eb7108c],.coderTextGreen[data-v-4eb7108c]:link,.coderTextGreen[data-v-4eb7108c]:visited,.coderTextGreen[data-v-4eb7108c]:hover,.coderTextGreen[data-v-4eb7108c]:active{color:#00a900}.coderTextGray[data-v-4eb7108c],.coderTextGray[data-v-4eb7108c]:link,.coderTextGray[data-v-4eb7108c]:visited,.coderTextGray[data-v-4eb7108c]:hover,.coderTextGray[data-v-4eb7108c]:active{color:#999}.coderTextWhite[data-v-4eb7108c],.coderTextWhite[data-v-4eb7108c]:link,.coderTextWhite[data-v-4eb7108c]:visited,.coderTextWhite[data-v-4eb7108c]:hover,.coderTextWhite[data-v-4eb7108c]:active{color:#fff}.coderTextBlack[data-v-4eb7108c],.coderTextBlack[data-v-4eb7108c]:link,.coderTextBlack[data-v-4eb7108c]:visited,.coderTextBlack[data-v-4eb7108c]:hover,.coderTextBlack[data-v-4eb7108c]:active{color:#000}s[data-v-4eb7108c]{font-size:10px;font-style:normal;font-weight:700;text-decoration:none}.announce[data-v-4eb7108c]{padding:0 8px;float:right;width:50%;border:1px solid #004080;margin-left:8px}p.nmessage[data-v-4eb7108c]{text-align:justify}a[data-v-4eb7108c]{color:#004080}td.topmenu a[data-v-4eb7108c]{color:#fff;text-decoration:none;cursor:hand}td.topmenu a[data-v-4eb7108c]:hover{color:silver}td.topmenu[data-v-4eb7108c]{text-align:center;font-weight:700;font-style:oblique}td.topmenu div[data-v-4eb7108c]{background-color:#004080;height:25px;padding-top:2px}td.menuleft a[data-v-4eb7108c]{color:#fff;text-decoration:none;cursor:hand}td.menuleft a[data-v-4eb7108c]:hover{color:silver}td.menuleft[data-v-4eb7108c]{font-weight:700;font-size:16px;color:#640d00;font-style:oblique;text-align:left}td.menuleft div[data-v-4eb7108c]{padding:4px 8px;white-space:nowrap;background-color:#004080;text-align:center}td.newsselectcontainer[data-v-4eb7108c]{height:25px;width:190px}td.newsselectcontainer form[data-v-4eb7108c]{margin:0}td.newsselectcontainer select[data-v-4eb7108c]{background-color:#004080;color:#fff;width:140px;font-style:oblique;font-weight:700}.newsselectbtn[data-v-4eb7108c]{background-color:#004080;color:#fff;width:42px;height:23px;font-weight:700}.menuleftblock[data-v-4eb7108c]{border:1px solid #004080}.memorial[data-v-4eb7108c]{padding:0 8px;border:2px solid #000000}.menu[data-v-4eb7108c]{z-index:1000;font-size:1em;height:2em}.menu ul[data-v-4eb7108c]{padding:0;margin:0;list-style-type:none;height:2em;background:#004080}.menu ul ul[data-v-4eb7108c]{width:15em}.menu ul li[data-v-4eb7108c]{float:left;height:2em;line-height:2em}.menu ul ul li[data-v-4eb7108c]{display:block;width:12em;height:auto;position:relative;line-height:1em}.menu a[data-v-4eb7108c],.menu a[data-v-4eb7108c]:visited{display:block;float:left;height:100%;font-size:1em;text-decoration:none;color:#fff;background:#004080;padding:0 3em;text-align:center;font-weight:700;font-style:oblique}.menu ul ul a[data-v-4eb7108c],.menu ul ul a[data-v-4eb7108c]:visited{display:block;background:#004080;color:#fff;width:12em;height:100%;border:1px solid #fff;line-height:1em;padding:.5em 1em;text-align:center;font-weight:700;font-style:oblique}.menu ul table ul a[data-v-4eb7108c],.menu ul table ul a[data-v-4eb7108c]:visited{width:14em;width:12em}.menu table[data-v-4eb7108c]{position:absolute;left:0;top:0;font-size:1em;z-index:-1}.menu ul ul table[data-v-4eb7108c]{left:-1px}.menu ul ul table ul.left[data-v-4eb7108c]{margin-left:2px}.menu li[data-v-4eb7108c]:hover,* html .menu a[data-v-4eb7108c]:hover{position:relative}.menu ul ul ul a[data-v-4eb7108c],.menu ul ul ul a[data-v-4eb7108c]:visited,.menu ul ul ul ul a[data-v-4eb7108c],.menu ul ul ul ul a[data-v-4eb7108c]:visited,.menu ul :hover a.sub1[data-v-4eb7108c],.menu ul ul :hover a.sub2[data-v-4eb7108c]{background:#004080}.menu a[data-v-4eb7108c]:hover{color:silver;background:#014181}.menu :hover>a[data-v-4eb7108c]{color:silver;background:#014181}.menu ul ul a[data-v-4eb7108c]:hover{color:silver;background:#014181}.menu ul ul :hover>a[data-v-4eb7108c]{color:silver;background:#014181}.menu ul ul ul a[data-v-4eb7108c]:hover{color:silver;background:#014181}.menu ul ul ul :hover>a[data-v-4eb7108c]{color:silver;background:#014181}.menu ul ul ul ul a[data-v-4eb7108c]:hover{color:silver;background:#014181}.menu ul ul[data-v-4eb7108c]{visibility:hidden;position:absolute;height:0;top:2em;left:0;width:14em}.menu ul ul ul[data-v-4eb7108c]{left:14em;top:0;width:14em}.menu ul ul ul.left[data-v-4eb7108c]{left:-14em}.menu ul li:hover ul[data-v-4eb7108c],.menu ul a:hover ul[data-v-4eb7108c]{visibility:visible;height:auto;padding-bottom:3em}.menu ul :hover ul ul[data-v-4eb7108c],.menu ul :hover ul :hover ul ul[data-v-4eb7108c]{visibility:hidden}.menu ul :hover ul :hover ul[data-v-4eb7108c],.menu ul :hover ul :hover ul :hover ul[data-v-4eb7108c]{visibility:visible}.lmenu[data-v-4eb7108c]{height:150px;font-size:90%}.lmenu ul[data-v-4eb7108c]{position:relative;z-index:500;padding:0;margin:0;list-style-type:none;width:15em}.lmenu li[data-v-4eb7108c]{color:#fff;height:2.6em;text-align:center;font-weight:700;font-style:oblique;float:left}.lmenu li div[data-v-4eb7108c]{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;text-indent:.5em;border:1px solid #fff;color:#004080;height:2.6em;float:left}.lmenu table[data-v-4eb7108c]{position:absolute;border-collapse:collapse;top:0;left:0;z-index:100;font-size:1em}.lmenu a[data-v-4eb7108c],.lmenu a[data-v-4eb7108c]:visited{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;color:#fff;background:#004080;text-indent:.5em;border:1px solid #fff}* html .lmenu a[data-v-4eb7108c],* html .menu a[data-v-4eb7108c]:visited{width:150em;width:14.9em}* html .lmenu a[data-v-4eb7108c]:hover{color:silver;background:#014181;position:relative}.lmenu li[data-v-4eb7108c]:hover{position:relative}.lmenu a[data-v-4eb7108c]:active,.lmenu a[data-v-4eb7108c]:focus{color:silver;background:#004080}.lmenu li:hover>a[data-v-4eb7108c]{color:silver;background:#014181}.lmenu li ul[data-v-4eb7108c]{visibility:hidden;position:absolute;top:-3em;left:10em;padding:3em}.lmenu li:hover>ul[data-v-4eb7108c]{visibility:visible}.lmenu ul a:hover ul ul[data-v-4eb7108c],.lmenu ul a:hover ul a:hover ul ul[data-v-4eb7108c],.lmenu ul a:hover ul a:hover ul a:hover ul ul[data-v-4eb7108c]{visibility:hidden}.lmenu ul a:hover ul[data-v-4eb7108c],.lmenu ul a:hover ul a:hover ul[data-v-4eb7108c],.lmenu ul a:hover ul a:hover ul a:hover ul[data-v-4eb7108c],.lmenu ul a:hover ul a:hover ul a:hover ul a:hover ul[data-v-4eb7108c]{visibility:visible}table.standings[data-v-6d613751]{text-align:center;border:none;margin:0;padding:0}.loading[data-v-6d613751]{display:flex;align-items:center;justify-content:center;height:80vh}img[data-v-6d613751]{border:0!important}table[data-v-6d613751]{border-collapse:separate!important}td[data-v-6d613751]{box-sizing:content-box!important;padding:1px!important}tr.head[data-v-6d613751]{background-color:#eee}tr.team[data-v-6d613751]{height:2.5em}.hover[data-v-6d613751]{cursor:pointer}td.stnd[data-v-6d613751]{font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}.dark td.stnd[data-v-6d613751]{border-color:#fff}td.stndact[data-v-6d613751]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.frost[data-v-6d613751]{background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.gold[data-v-6d613751]{background-color:#fff566;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.goldact[data-v-6d613751]{color:#00f;background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.silver[data-v-6d613751]{background-color:#ffadd2;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.silveract[data-v-6d613751]{color:#00f;background-color:#aaa;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.bronze[data-v-6d613751]{background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.bronzeact[data-v-6d613751]{color:#00f;background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.unofficial[data-v-6d613751]{background-color:#fff;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.honorable[data-v-6d613751]{background-color:#e6f7ff;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.first-solve[data-v-6d613751]{background-color:#3db03d;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.incorrect[data-v-6d613751]{background-color:#ffd0d0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.correct[data-v-6d613751]{background-color:#e1ffb5;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.unattempted[data-v-6d613751]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}.dark td.unattempted[data-v-6d613751]{color:#fff}th.success[data-v-6d613751]{background-color:#a0f0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.title[data-v-6d613751],td.title[data-v-6d613751]{background-color:#f5f5d5;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.tried[data-v-6d613751]{background-color:#ffa0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.pending[data-v-6d613751]{background-color:#c8d6fa;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.upsolved[data-v-6d613751]{font-size:12px;border-width:0px;border-color:#000;margin:1px;color:red}td.virtual[data-v-6d613751]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.alive[data-v-6d613751]{color:red;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.empty[data-v-6d613751]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}th.stnd[data-v-6d613751]{font-size:12px;border-width:0px;border-color:#000;margin:1px}td.o01[data-v-6d613751]{background-color:#004080}tr.solver[data-v-6d613751]{background-color:#f0c0a0}tr.statistics-0[data-v-6d613751]{background-color:#95de64}tr.statistics-1[data-v-6d613751]{background-color:#b7eb8f}td.o00[data-v-6d613751]{background-color:#004080}td.stand00[data-v-6d613751]{background-color:#e0e0ff}td.stand01[data-v-6d613751]{background-color:#e8e8ff}td.stand10[data-v-6d613751]{background-color:#f8f8f8}td.stand11[data-v-6d613751]{background-color:#f2f2f2}tr.filter-team[data-v-6d613751]{background-color:#ffffe0}tr.cfres01[data-v-6d613751]{background-color:#ffffb0}table.matches[data-v-6d613751]{table-layout:fixed}td.match[data-v-6d613751]{height:6em;width:2em}.coderTextRed[data-v-6d613751],.coderTextYellow[data-v-6d613751],.coderTextViolet[data-v-6d613751],.coderTextBlue[data-v-6d613751],.coderTextGreen[data-v-6d613751],.coderTextGray[data-v-6d613751],.coderTextOrange[data-v-6d613751]{font-weight:700;background-color:transparent}.coderTextRed[data-v-6d613751]:link,.coderTextYellow[data-v-6d613751]:link,.coderTextViolet[data-v-6d613751]:link,.coderTextBlue[data-v-6d613751]:link,.coderTextGreen[data-v-6d613751]:link,.coderTextGray[data-v-6d613751]:link,.coderTextOrange[data-v-6d613751]:link,.coderTextWhite[data-v-6d613751]:link,.coderTextBlack[data-v-6d613751]:link,.coderTextRed[data-v-6d613751]:visited,.coderTextYellow[data-v-6d613751]:visited,.coderTextViolet[data-v-6d613751]:visited,.coderTextBlue[data-v-6d613751]:visited,.coderTextGreen[data-v-6d613751]:visited,.coderTextGray[data-v-6d613751]:visited,.coderTextOrange[data-v-6d613751]:visited,.coderTextWhite[data-v-6d613751]:visited,.coderTextBlack[data-v-6d613751]:visited{text-decoration:none}.coderTextRed[data-v-6d613751]:hover,.coderTextYellow[data-v-6d613751]:hover,.coderTextViolet[data-v-6d613751]:hover,.coderTextBlue[data-v-6d613751]:hover,.coderTextGreen[data-v-6d613751]:hover,.coderTextGray[data-v-6d613751]:hover,.coderTextOrange[data-v-6d613751]:hover,.coderTextWhite[data-v-6d613751]:hover,.coderTextBlack[data-v-6d613751]:hover,.coderTextRed[data-v-6d613751]:active,.coderTextYellow[data-v-6d613751]:active,.coderTextViolet[data-v-6d613751]:active,.coderTextBlue[data-v-6d613751]:active,.coderTextGreen[data-v-6d613751]:active,.coderTextGray[data-v-6d613751]:active,.coderTextOrange[data-v-6d613751]:active,.coderTextWhite[data-v-6d613751]:active,.coderTextBlack[data-v-6d613751]:active{text-decoration:underline}.coderTextOrange[data-v-6d613751],.coderTextOrange[data-v-6d613751]:link,.coderTextOrange[data-v-6d613751]:visited,.coderTextOrange[data-v-6d613751]:hover,.coderTextOrange[data-v-6d613751]:active{color:#f90}.coderTextRed[data-v-6d613751],.coderTextRed[data-v-6d613751]:link,.coderTextRed[data-v-6d613751]:visited,.coderTextRed[data-v-6d613751]:hover,.coderTextRed[data-v-6d613751]:active{color:#e00}.coderTextYellow[data-v-6d613751],.coderTextYellow[data-v-6d613751]:link,.coderTextYellow[data-v-6d613751]:visited,.coderTextYellow[data-v-6d613751]:hover,.coderTextYellow[data-v-6d613751]:active{color:#dc0}.coderTextViolet[data-v-6d613751],.coderTextViolet[data-v-6d613751]:link,.coderTextViolet[data-v-6d613751]:visited,.coderTextViolet[data-v-6d613751]:hover,.coderTextViolet[data-v-6d613751]:active{color:#a0a}.coderTextBlue[data-v-6d613751],.coderTextBlue[data-v-6d613751]:link,.coderTextBlue[data-v-6d613751]:visited,.coderTextBlue[data-v-6d613751]:hover,.coderTextBlue[data-v-6d613751]:active{color:#66f}.coderTextGreen[data-v-6d613751],.coderTextGreen[data-v-6d613751]:link,.coderTextGreen[data-v-6d613751]:visited,.coderTextGreen[data-v-6d613751]:hover,.coderTextGreen[data-v-6d613751]:active{color:#00a900}.coderTextGray[data-v-6d613751],.coderTextGray[data-v-6d613751]:link,.coderTextGray[data-v-6d613751]:visited,.coderTextGray[data-v-6d613751]:hover,.coderTextGray[data-v-6d613751]:active{color:#999}.coderTextWhite[data-v-6d613751],.coderTextWhite[data-v-6d613751]:link,.coderTextWhite[data-v-6d613751]:visited,.coderTextWhite[data-v-6d613751]:hover,.coderTextWhite[data-v-6d613751]:active{color:#fff}.coderTextBlack[data-v-6d613751],.coderTextBlack[data-v-6d613751]:link,.coderTextBlack[data-v-6d613751]:visited,.coderTextBlack[data-v-6d613751]:hover,.coderTextBlack[data-v-6d613751]:active{color:#000}s[data-v-6d613751]{font-size:10px;font-style:normal;font-weight:700;text-decoration:none}.announce[data-v-6d613751]{padding:0 8px;float:right;width:50%;border:1px solid #004080;margin-left:8px}p.nmessage[data-v-6d613751]{text-align:justify}a[data-v-6d613751]{color:#004080}td.topmenu a[data-v-6d613751]{color:#fff;text-decoration:none;cursor:hand}td.topmenu a[data-v-6d613751]:hover{color:silver}td.topmenu[data-v-6d613751]{text-align:center;font-weight:700;font-style:oblique}td.topmenu div[data-v-6d613751]{background-color:#004080;height:25px;padding-top:2px}td.menuleft a[data-v-6d613751]{color:#fff;text-decoration:none;cursor:hand}td.menuleft a[data-v-6d613751]:hover{color:silver}td.menuleft[data-v-6d613751]{font-weight:700;font-size:16px;color:#640d00;font-style:oblique;text-align:left}td.menuleft div[data-v-6d613751]{padding:4px 8px;white-space:nowrap;background-color:#004080;text-align:center}td.newsselectcontainer[data-v-6d613751]{height:25px;width:190px}td.newsselectcontainer form[data-v-6d613751]{margin:0}td.newsselectcontainer select[data-v-6d613751]{background-color:#004080;color:#fff;width:140px;font-style:oblique;font-weight:700}.newsselectbtn[data-v-6d613751]{background-color:#004080;color:#fff;width:42px;height:23px;font-weight:700}.menuleftblock[data-v-6d613751]{border:1px solid #004080}.memorial[data-v-6d613751]{padding:0 8px;border:2px solid #000000}.menu[data-v-6d613751]{z-index:1000;font-size:1em;height:2em}.menu ul[data-v-6d613751]{padding:0;margin:0;list-style-type:none;height:2em;background:#004080}.menu ul ul[data-v-6d613751]{width:15em}.menu ul li[data-v-6d613751]{float:left;height:2em;line-height:2em}.menu ul ul li[data-v-6d613751]{display:block;width:12em;height:auto;position:relative;line-height:1em}.menu a[data-v-6d613751],.menu a[data-v-6d613751]:visited{display:block;float:left;height:100%;font-size:1em;text-decoration:none;color:#fff;background:#004080;padding:0 3em;text-align:center;font-weight:700;font-style:oblique}.menu ul ul a[data-v-6d613751],.menu ul ul a[data-v-6d613751]:visited{display:block;background:#004080;color:#fff;width:12em;height:100%;border:1px solid #fff;line-height:1em;padding:.5em 1em;text-align:center;font-weight:700;font-style:oblique}.menu ul table ul a[data-v-6d613751],.menu ul table ul a[data-v-6d613751]:visited{width:14em;width:12em}.menu table[data-v-6d613751]{position:absolute;left:0;top:0;font-size:1em;z-index:-1}.menu ul ul table[data-v-6d613751]{left:-1px}.menu ul ul table ul.left[data-v-6d613751]{margin-left:2px}.menu li[data-v-6d613751]:hover,* html .menu a[data-v-6d613751]:hover{position:relative}.menu ul ul ul a[data-v-6d613751],.menu ul ul ul a[data-v-6d613751]:visited,.menu ul ul ul ul a[data-v-6d613751],.menu ul ul ul ul a[data-v-6d613751]:visited,.menu ul :hover a.sub1[data-v-6d613751],.menu ul ul :hover a.sub2[data-v-6d613751]{background:#004080}.menu a[data-v-6d613751]:hover{color:silver;background:#014181}.menu :hover>a[data-v-6d613751]{color:silver;background:#014181}.menu ul ul a[data-v-6d613751]:hover{color:silver;background:#014181}.menu ul ul :hover>a[data-v-6d613751]{color:silver;background:#014181}.menu ul ul ul a[data-v-6d613751]:hover{color:silver;background:#014181}.menu ul ul ul :hover>a[data-v-6d613751]{color:silver;background:#014181}.menu ul ul ul ul a[data-v-6d613751]:hover{color:silver;background:#014181}.menu ul ul[data-v-6d613751]{visibility:hidden;position:absolute;height:0;top:2em;left:0;width:14em}.menu ul ul ul[data-v-6d613751]{left:14em;top:0;width:14em}.menu ul ul ul.left[data-v-6d613751]{left:-14em}.menu ul li:hover ul[data-v-6d613751],.menu ul a:hover ul[data-v-6d613751]{visibility:visible;height:auto;padding-bottom:3em}.menu ul :hover ul ul[data-v-6d613751],.menu ul :hover ul :hover ul ul[data-v-6d613751]{visibility:hidden}.menu ul :hover ul :hover ul[data-v-6d613751],.menu ul :hover ul :hover ul :hover ul[data-v-6d613751]{visibility:visible}.lmenu[data-v-6d613751]{height:150px;font-size:90%}.lmenu ul[data-v-6d613751]{position:relative;z-index:500;padding:0;margin:0;list-style-type:none;width:15em}.lmenu li[data-v-6d613751]{color:#fff;height:2.6em;text-align:center;font-weight:700;font-style:oblique;float:left}.lmenu li div[data-v-6d613751]{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;text-indent:.5em;border:1px solid #fff;color:#004080;height:2.6em;float:left}.lmenu table[data-v-6d613751]{position:absolute;border-collapse:collapse;top:0;left:0;z-index:100;font-size:1em}.lmenu a[data-v-6d613751],.lmenu a[data-v-6d613751]:visited{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;color:#fff;background:#004080;text-indent:.5em;border:1px solid #fff}* html .lmenu a[data-v-6d613751],* html .menu a[data-v-6d613751]:visited{width:150em;width:14.9em}* html .lmenu a[data-v-6d613751]:hover{color:silver;background:#014181;position:relative}.lmenu li[data-v-6d613751]:hover{position:relative}.lmenu a[data-v-6d613751]:active,.lmenu a[data-v-6d613751]:focus{color:silver;background:#004080}.lmenu li:hover>a[data-v-6d613751]{color:silver;background:#014181}.lmenu li ul[data-v-6d613751]{visibility:hidden;position:absolute;top:-3em;left:10em;padding:3em}.lmenu li:hover>ul[data-v-6d613751]{visibility:visible}.lmenu ul a:hover ul ul[data-v-6d613751],.lmenu ul a:hover ul a:hover ul ul[data-v-6d613751],.lmenu ul a:hover ul a:hover ul a:hover ul ul[data-v-6d613751]{visibility:hidden}.lmenu ul a:hover ul[data-v-6d613751],.lmenu ul a:hover ul a:hover ul[data-v-6d613751],.lmenu ul a:hover ul a:hover ul a:hover ul[data-v-6d613751],.lmenu ul a:hover ul a:hover ul a:hover ul a:hover ul[data-v-6d613751]{visibility:visible}table.standings[data-v-84f25c40]{text-align:center;border:none;margin:0;padding:0}.loading[data-v-84f25c40]{display:flex;align-items:center;justify-content:center;height:80vh}img[data-v-84f25c40]{border:0!important}table[data-v-84f25c40]{border-collapse:separate!important}td[data-v-84f25c40]{box-sizing:content-box!important;padding:1px!important}tr.head[data-v-84f25c40]{background-color:#eee}tr.team[data-v-84f25c40]{height:2.5em}.hover[data-v-84f25c40]{cursor:pointer}td.stnd[data-v-84f25c40]{font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}.dark td.stnd[data-v-84f25c40]{border-color:#fff}td.stndact[data-v-84f25c40]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.frost[data-v-84f25c40]{background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.gold[data-v-84f25c40]{background-color:#fff566;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.goldact[data-v-84f25c40]{color:#00f;background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.silver[data-v-84f25c40]{background-color:#ffadd2;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.silveract[data-v-84f25c40]{color:#00f;background-color:#aaa;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.bronze[data-v-84f25c40]{background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.bronzeact[data-v-84f25c40]{color:#00f;background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.unofficial[data-v-84f25c40]{background-color:#fff;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.honorable[data-v-84f25c40]{background-color:#e6f7ff;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.first-solve[data-v-84f25c40]{background-color:#3db03d;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.incorrect[data-v-84f25c40]{background-color:#ffd0d0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.correct[data-v-84f25c40]{background-color:#e1ffb5;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.unattempted[data-v-84f25c40]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}.dark td.unattempted[data-v-84f25c40]{color:#fff}th.success[data-v-84f25c40]{background-color:#a0f0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.title[data-v-84f25c40],td.title[data-v-84f25c40]{background-color:#f5f5d5;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.tried[data-v-84f25c40]{background-color:#ffa0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.pending[data-v-84f25c40]{background-color:#c8d6fa;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.upsolved[data-v-84f25c40]{font-size:12px;border-width:0px;border-color:#000;margin:1px;color:red}td.virtual[data-v-84f25c40]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.alive[data-v-84f25c40]{color:red;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.empty[data-v-84f25c40]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}th.stnd[data-v-84f25c40]{font-size:12px;border-width:0px;border-color:#000;margin:1px}td.o01[data-v-84f25c40]{background-color:#004080}tr.solver[data-v-84f25c40]{background-color:#f0c0a0}tr.statistics-0[data-v-84f25c40]{background-color:#95de64}tr.statistics-1[data-v-84f25c40]{background-color:#b7eb8f}td.o00[data-v-84f25c40]{background-color:#004080}td.stand00[data-v-84f25c40]{background-color:#e0e0ff}td.stand01[data-v-84f25c40]{background-color:#e8e8ff}td.stand10[data-v-84f25c40]{background-color:#f8f8f8}td.stand11[data-v-84f25c40]{background-color:#f2f2f2}tr.filter-team[data-v-84f25c40]{background-color:#ffffe0}tr.cfres01[data-v-84f25c40]{background-color:#ffffb0}table.matches[data-v-84f25c40]{table-layout:fixed}td.match[data-v-84f25c40]{height:6em;width:2em}.coderTextRed[data-v-84f25c40],.coderTextYellow[data-v-84f25c40],.coderTextViolet[data-v-84f25c40],.coderTextBlue[data-v-84f25c40],.coderTextGreen[data-v-84f25c40],.coderTextGray[data-v-84f25c40],.coderTextOrange[data-v-84f25c40]{font-weight:700;background-color:transparent}.coderTextRed[data-v-84f25c40]:link,.coderTextYellow[data-v-84f25c40]:link,.coderTextViolet[data-v-84f25c40]:link,.coderTextBlue[data-v-84f25c40]:link,.coderTextGreen[data-v-84f25c40]:link,.coderTextGray[data-v-84f25c40]:link,.coderTextOrange[data-v-84f25c40]:link,.coderTextWhite[data-v-84f25c40]:link,.coderTextBlack[data-v-84f25c40]:link,.coderTextRed[data-v-84f25c40]:visited,.coderTextYellow[data-v-84f25c40]:visited,.coderTextViolet[data-v-84f25c40]:visited,.coderTextBlue[data-v-84f25c40]:visited,.coderTextGreen[data-v-84f25c40]:visited,.coderTextGray[data-v-84f25c40]:visited,.coderTextOrange[data-v-84f25c40]:visited,.coderTextWhite[data-v-84f25c40]:visited,.coderTextBlack[data-v-84f25c40]:visited{text-decoration:none}.coderTextRed[data-v-84f25c40]:hover,.coderTextYellow[data-v-84f25c40]:hover,.coderTextViolet[data-v-84f25c40]:hover,.coderTextBlue[data-v-84f25c40]:hover,.coderTextGreen[data-v-84f25c40]:hover,.coderTextGray[data-v-84f25c40]:hover,.coderTextOrange[data-v-84f25c40]:hover,.coderTextWhite[data-v-84f25c40]:hover,.coderTextBlack[data-v-84f25c40]:hover,.coderTextRed[data-v-84f25c40]:active,.coderTextYellow[data-v-84f25c40]:active,.coderTextViolet[data-v-84f25c40]:active,.coderTextBlue[data-v-84f25c40]:active,.coderTextGreen[data-v-84f25c40]:active,.coderTextGray[data-v-84f25c40]:active,.coderTextOrange[data-v-84f25c40]:active,.coderTextWhite[data-v-84f25c40]:active,.coderTextBlack[data-v-84f25c40]:active{text-decoration:underline}.coderTextOrange[data-v-84f25c40],.coderTextOrange[data-v-84f25c40]:link,.coderTextOrange[data-v-84f25c40]:visited,.coderTextOrange[data-v-84f25c40]:hover,.coderTextOrange[data-v-84f25c40]:active{color:#f90}.coderTextRed[data-v-84f25c40],.coderTextRed[data-v-84f25c40]:link,.coderTextRed[data-v-84f25c40]:visited,.coderTextRed[data-v-84f25c40]:hover,.coderTextRed[data-v-84f25c40]:active{color:#e00}.coderTextYellow[data-v-84f25c40],.coderTextYellow[data-v-84f25c40]:link,.coderTextYellow[data-v-84f25c40]:visited,.coderTextYellow[data-v-84f25c40]:hover,.coderTextYellow[data-v-84f25c40]:active{color:#dc0}.coderTextViolet[data-v-84f25c40],.coderTextViolet[data-v-84f25c40]:link,.coderTextViolet[data-v-84f25c40]:visited,.coderTextViolet[data-v-84f25c40]:hover,.coderTextViolet[data-v-84f25c40]:active{color:#a0a}.coderTextBlue[data-v-84f25c40],.coderTextBlue[data-v-84f25c40]:link,.coderTextBlue[data-v-84f25c40]:visited,.coderTextBlue[data-v-84f25c40]:hover,.coderTextBlue[data-v-84f25c40]:active{color:#66f}.coderTextGreen[data-v-84f25c40],.coderTextGreen[data-v-84f25c40]:link,.coderTextGreen[data-v-84f25c40]:visited,.coderTextGreen[data-v-84f25c40]:hover,.coderTextGreen[data-v-84f25c40]:active{color:#00a900}.coderTextGray[data-v-84f25c40],.coderTextGray[data-v-84f25c40]:link,.coderTextGray[data-v-84f25c40]:visited,.coderTextGray[data-v-84f25c40]:hover,.coderTextGray[data-v-84f25c40]:active{color:#999}.coderTextWhite[data-v-84f25c40],.coderTextWhite[data-v-84f25c40]:link,.coderTextWhite[data-v-84f25c40]:visited,.coderTextWhite[data-v-84f25c40]:hover,.coderTextWhite[data-v-84f25c40]:active{color:#fff}.coderTextBlack[data-v-84f25c40],.coderTextBlack[data-v-84f25c40]:link,.coderTextBlack[data-v-84f25c40]:visited,.coderTextBlack[data-v-84f25c40]:hover,.coderTextBlack[data-v-84f25c40]:active{color:#000}s[data-v-84f25c40]{font-size:10px;font-style:normal;font-weight:700;text-decoration:none}.announce[data-v-84f25c40]{padding:0 8px;float:right;width:50%;border:1px solid #004080;margin-left:8px}p.nmessage[data-v-84f25c40]{text-align:justify}a[data-v-84f25c40]{color:#004080}td.topmenu a[data-v-84f25c40]{color:#fff;text-decoration:none;cursor:hand}td.topmenu a[data-v-84f25c40]:hover{color:silver}td.topmenu[data-v-84f25c40]{text-align:center;font-weight:700;font-style:oblique}td.topmenu div[data-v-84f25c40]{background-color:#004080;height:25px;padding-top:2px}td.menuleft a[data-v-84f25c40]{color:#fff;text-decoration:none;cursor:hand}td.menuleft a[data-v-84f25c40]:hover{color:silver}td.menuleft[data-v-84f25c40]{font-weight:700;font-size:16px;color:#640d00;font-style:oblique;text-align:left}td.menuleft div[data-v-84f25c40]{padding:4px 8px;white-space:nowrap;background-color:#004080;text-align:center}td.newsselectcontainer[data-v-84f25c40]{height:25px;width:190px}td.newsselectcontainer form[data-v-84f25c40]{margin:0}td.newsselectcontainer select[data-v-84f25c40]{background-color:#004080;color:#fff;width:140px;font-style:oblique;font-weight:700}.newsselectbtn[data-v-84f25c40]{background-color:#004080;color:#fff;width:42px;height:23px;font-weight:700}.menuleftblock[data-v-84f25c40]{border:1px solid #004080}.memorial[data-v-84f25c40]{padding:0 8px;border:2px solid #000000}.menu[data-v-84f25c40]{z-index:1000;font-size:1em;height:2em}.menu ul[data-v-84f25c40]{padding:0;margin:0;list-style-type:none;height:2em;background:#004080}.menu ul ul[data-v-84f25c40]{width:15em}.menu ul li[data-v-84f25c40]{float:left;height:2em;line-height:2em}.menu ul ul li[data-v-84f25c40]{display:block;width:12em;height:auto;position:relative;line-height:1em}.menu a[data-v-84f25c40],.menu a[data-v-84f25c40]:visited{display:block;float:left;height:100%;font-size:1em;text-decoration:none;color:#fff;background:#004080;padding:0 3em;text-align:center;font-weight:700;font-style:oblique}.menu ul ul a[data-v-84f25c40],.menu ul ul a[data-v-84f25c40]:visited{display:block;background:#004080;color:#fff;width:12em;height:100%;border:1px solid #fff;line-height:1em;padding:.5em 1em;text-align:center;font-weight:700;font-style:oblique}.menu ul table ul a[data-v-84f25c40],.menu ul table ul a[data-v-84f25c40]:visited{width:14em;width:12em}.menu table[data-v-84f25c40]{position:absolute;left:0;top:0;font-size:1em;z-index:-1}.menu ul ul table[data-v-84f25c40]{left:-1px}.menu ul ul table ul.left[data-v-84f25c40]{margin-left:2px}.menu li[data-v-84f25c40]:hover,* html .menu a[data-v-84f25c40]:hover{position:relative}.menu ul ul ul a[data-v-84f25c40],.menu ul ul ul a[data-v-84f25c40]:visited,.menu ul ul ul ul a[data-v-84f25c40],.menu ul ul ul ul a[data-v-84f25c40]:visited,.menu ul :hover a.sub1[data-v-84f25c40],.menu ul ul :hover a.sub2[data-v-84f25c40]{background:#004080}.menu a[data-v-84f25c40]:hover{color:silver;background:#014181}.menu :hover>a[data-v-84f25c40]{color:silver;background:#014181}.menu ul ul a[data-v-84f25c40]:hover{color:silver;background:#014181}.menu ul ul :hover>a[data-v-84f25c40]{color:silver;background:#014181}.menu ul ul ul a[data-v-84f25c40]:hover{color:silver;background:#014181}.menu ul ul ul :hover>a[data-v-84f25c40]{color:silver;background:#014181}.menu ul ul ul ul a[data-v-84f25c40]:hover{color:silver;background:#014181}.menu ul ul[data-v-84f25c40]{visibility:hidden;position:absolute;height:0;top:2em;left:0;width:14em}.menu ul ul ul[data-v-84f25c40]{left:14em;top:0;width:14em}.menu ul ul ul.left[data-v-84f25c40]{left:-14em}.menu ul li:hover ul[data-v-84f25c40],.menu ul a:hover ul[data-v-84f25c40]{visibility:visible;height:auto;padding-bottom:3em}.menu ul :hover ul ul[data-v-84f25c40],.menu ul :hover ul :hover ul ul[data-v-84f25c40]{visibility:hidden}.menu ul :hover ul :hover ul[data-v-84f25c40],.menu ul :hover ul :hover ul :hover ul[data-v-84f25c40]{visibility:visible}.lmenu[data-v-84f25c40]{height:150px;font-size:90%}.lmenu ul[data-v-84f25c40]{position:relative;z-index:500;padding:0;margin:0;list-style-type:none;width:15em}.lmenu li[data-v-84f25c40]{color:#fff;height:2.6em;text-align:center;font-weight:700;font-style:oblique;float:left}.lmenu li div[data-v-84f25c40]{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;text-indent:.5em;border:1px solid #fff;color:#004080;height:2.6em;float:left}.lmenu table[data-v-84f25c40]{position:absolute;border-collapse:collapse;top:0;left:0;z-index:100;font-size:1em}.lmenu a[data-v-84f25c40],.lmenu a[data-v-84f25c40]:visited{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;color:#fff;background:#004080;text-indent:.5em;border:1px solid #fff}* html .lmenu a[data-v-84f25c40],* html .menu a[data-v-84f25c40]:visited{width:150em;width:14.9em}* html .lmenu a[data-v-84f25c40]:hover{color:silver;background:#014181;position:relative}.lmenu li[data-v-84f25c40]:hover{position:relative}.lmenu a[data-v-84f25c40]:active,.lmenu a[data-v-84f25c40]:focus{color:silver;background:#004080}.lmenu li:hover>a[data-v-84f25c40]{color:silver;background:#014181}.lmenu li ul[data-v-84f25c40]{visibility:hidden;position:absolute;top:-3em;left:10em;padding:3em}.lmenu li:hover>ul[data-v-84f25c40]{visibility:visible}.lmenu ul a:hover ul ul[data-v-84f25c40],.lmenu ul a:hover ul a:hover ul ul[data-v-84f25c40],.lmenu ul a:hover ul a:hover ul a:hover ul ul[data-v-84f25c40]{visibility:hidden}.lmenu ul a:hover ul[data-v-84f25c40],.lmenu ul a:hover ul a:hover ul[data-v-84f25c40],.lmenu ul a:hover ul a:hover ul a:hover ul[data-v-84f25c40],.lmenu ul a:hover ul a:hover ul a:hover ul a:hover ul[data-v-84f25c40]{visibility:visible}.second-level-menu-item[data-v-714a998b]{height:18px;background:#333;position:relative;display:flex;justify-content:center;align-items:center;color:#fff;font-size:14px;font-weight:700;-webkit-transition:.7s;transition:.7s;cursor:pointer;margin:2px 4px!important;padding:4px!important;box-sizing:content-box!important;border-radius:3px}.second-level-menu-item[data-v-714a998b]:hover,.second-level-menu-item-current[data-v-714a998b]{background:#f30}table.standings[data-v-54297ce8]{text-align:center;border:none;margin:0;padding:0}.loading[data-v-54297ce8]{display:flex;align-items:center;justify-content:center;height:80vh}img[data-v-54297ce8]{border:0!important}table[data-v-54297ce8]{border-collapse:separate!important}td[data-v-54297ce8]{box-sizing:content-box!important;padding:1px!important}tr.head[data-v-54297ce8]{background-color:#eee}tr.team[data-v-54297ce8]{height:2.5em}.hover[data-v-54297ce8]{cursor:pointer}td.stnd[data-v-54297ce8]{font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}.dark td.stnd[data-v-54297ce8]{border-color:#fff}td.stndact[data-v-54297ce8]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.frost[data-v-54297ce8]{background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.gold[data-v-54297ce8]{background-color:#fff566;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.goldact[data-v-54297ce8]{color:#00f;background-color:#fea;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.silver[data-v-54297ce8]{background-color:#ffadd2;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.silveract[data-v-54297ce8]{color:#00f;background-color:#aaa;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.bronze[data-v-54297ce8]{background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.bronzeact[data-v-54297ce8]{color:#00f;background-color:#f0c0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.unofficial[data-v-54297ce8]{background-color:#fff;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.honorable[data-v-54297ce8]{background-color:#e6f7ff;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.first-solve[data-v-54297ce8]{background-color:#3db03d;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.incorrect[data-v-54297ce8]{background-color:#ffd0d0;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.correct[data-v-54297ce8]{background-color:#e1ffb5;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.unattempted[data-v-54297ce8]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}.dark td.unattempted[data-v-54297ce8]{color:#fff}th.success[data-v-54297ce8]{background-color:#a0f0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.title[data-v-54297ce8],td.title[data-v-54297ce8]{background-color:#f5f5d5;font-size:12px;border-width:0px;border-color:#000;margin:1px}th.tried[data-v-54297ce8]{background-color:#ffa0a0;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.pending[data-v-54297ce8]{background-color:#c8d6fa;font-size:12px;border-width:0px;border-color:#000;margin:1px;font-weight:700}td.upsolved[data-v-54297ce8]{font-size:12px;border-width:0px;border-color:#000;margin:1px;color:red}td.virtual[data-v-54297ce8]{color:#00f;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.alive[data-v-54297ce8]{color:red;font-size:12px;border-width:0px;border-color:#000;margin:1px}td.empty[data-v-54297ce8]{background-color:var(--global-background);font-size:12px;border-width:0px;border-color:#000;margin:1px}th.stnd[data-v-54297ce8]{font-size:12px;border-width:0px;border-color:#000;margin:1px}td.o01[data-v-54297ce8]{background-color:#004080}tr.solver[data-v-54297ce8]{background-color:#f0c0a0}tr.statistics-0[data-v-54297ce8]{background-color:#95de64}tr.statistics-1[data-v-54297ce8]{background-color:#b7eb8f}td.o00[data-v-54297ce8]{background-color:#004080}td.stand00[data-v-54297ce8]{background-color:#e0e0ff}td.stand01[data-v-54297ce8]{background-color:#e8e8ff}td.stand10[data-v-54297ce8]{background-color:#f8f8f8}td.stand11[data-v-54297ce8]{background-color:#f2f2f2}tr.filter-team[data-v-54297ce8]{background-color:#ffffe0}tr.cfres01[data-v-54297ce8]{background-color:#ffffb0}table.matches[data-v-54297ce8]{table-layout:fixed}td.match[data-v-54297ce8]{height:6em;width:2em}.coderTextRed[data-v-54297ce8],.coderTextYellow[data-v-54297ce8],.coderTextViolet[data-v-54297ce8],.coderTextBlue[data-v-54297ce8],.coderTextGreen[data-v-54297ce8],.coderTextGray[data-v-54297ce8],.coderTextOrange[data-v-54297ce8]{font-weight:700;background-color:transparent}.coderTextRed[data-v-54297ce8]:link,.coderTextYellow[data-v-54297ce8]:link,.coderTextViolet[data-v-54297ce8]:link,.coderTextBlue[data-v-54297ce8]:link,.coderTextGreen[data-v-54297ce8]:link,.coderTextGray[data-v-54297ce8]:link,.coderTextOrange[data-v-54297ce8]:link,.coderTextWhite[data-v-54297ce8]:link,.coderTextBlack[data-v-54297ce8]:link,.coderTextRed[data-v-54297ce8]:visited,.coderTextYellow[data-v-54297ce8]:visited,.coderTextViolet[data-v-54297ce8]:visited,.coderTextBlue[data-v-54297ce8]:visited,.coderTextGreen[data-v-54297ce8]:visited,.coderTextGray[data-v-54297ce8]:visited,.coderTextOrange[data-v-54297ce8]:visited,.coderTextWhite[data-v-54297ce8]:visited,.coderTextBlack[data-v-54297ce8]:visited{text-decoration:none}.coderTextRed[data-v-54297ce8]:hover,.coderTextYellow[data-v-54297ce8]:hover,.coderTextViolet[data-v-54297ce8]:hover,.coderTextBlue[data-v-54297ce8]:hover,.coderTextGreen[data-v-54297ce8]:hover,.coderTextGray[data-v-54297ce8]:hover,.coderTextOrange[data-v-54297ce8]:hover,.coderTextWhite[data-v-54297ce8]:hover,.coderTextBlack[data-v-54297ce8]:hover,.coderTextRed[data-v-54297ce8]:active,.coderTextYellow[data-v-54297ce8]:active,.coderTextViolet[data-v-54297ce8]:active,.coderTextBlue[data-v-54297ce8]:active,.coderTextGreen[data-v-54297ce8]:active,.coderTextGray[data-v-54297ce8]:active,.coderTextOrange[data-v-54297ce8]:active,.coderTextWhite[data-v-54297ce8]:active,.coderTextBlack[data-v-54297ce8]:active{text-decoration:underline}.coderTextOrange[data-v-54297ce8],.coderTextOrange[data-v-54297ce8]:link,.coderTextOrange[data-v-54297ce8]:visited,.coderTextOrange[data-v-54297ce8]:hover,.coderTextOrange[data-v-54297ce8]:active{color:#f90}.coderTextRed[data-v-54297ce8],.coderTextRed[data-v-54297ce8]:link,.coderTextRed[data-v-54297ce8]:visited,.coderTextRed[data-v-54297ce8]:hover,.coderTextRed[data-v-54297ce8]:active{color:#e00}.coderTextYellow[data-v-54297ce8],.coderTextYellow[data-v-54297ce8]:link,.coderTextYellow[data-v-54297ce8]:visited,.coderTextYellow[data-v-54297ce8]:hover,.coderTextYellow[data-v-54297ce8]:active{color:#dc0}.coderTextViolet[data-v-54297ce8],.coderTextViolet[data-v-54297ce8]:link,.coderTextViolet[data-v-54297ce8]:visited,.coderTextViolet[data-v-54297ce8]:hover,.coderTextViolet[data-v-54297ce8]:active{color:#a0a}.coderTextBlue[data-v-54297ce8],.coderTextBlue[data-v-54297ce8]:link,.coderTextBlue[data-v-54297ce8]:visited,.coderTextBlue[data-v-54297ce8]:hover,.coderTextBlue[data-v-54297ce8]:active{color:#66f}.coderTextGreen[data-v-54297ce8],.coderTextGreen[data-v-54297ce8]:link,.coderTextGreen[data-v-54297ce8]:visited,.coderTextGreen[data-v-54297ce8]:hover,.coderTextGreen[data-v-54297ce8]:active{color:#00a900}.coderTextGray[data-v-54297ce8],.coderTextGray[data-v-54297ce8]:link,.coderTextGray[data-v-54297ce8]:visited,.coderTextGray[data-v-54297ce8]:hover,.coderTextGray[data-v-54297ce8]:active{color:#999}.coderTextWhite[data-v-54297ce8],.coderTextWhite[data-v-54297ce8]:link,.coderTextWhite[data-v-54297ce8]:visited,.coderTextWhite[data-v-54297ce8]:hover,.coderTextWhite[data-v-54297ce8]:active{color:#fff}.coderTextBlack[data-v-54297ce8],.coderTextBlack[data-v-54297ce8]:link,.coderTextBlack[data-v-54297ce8]:visited,.coderTextBlack[data-v-54297ce8]:hover,.coderTextBlack[data-v-54297ce8]:active{color:#000}s[data-v-54297ce8]{font-size:10px;font-style:normal;font-weight:700;text-decoration:none}.announce[data-v-54297ce8]{padding:0 8px;float:right;width:50%;border:1px solid #004080;margin-left:8px}p.nmessage[data-v-54297ce8]{text-align:justify}a[data-v-54297ce8]{color:#004080}td.topmenu a[data-v-54297ce8]{color:#fff;text-decoration:none;cursor:hand}td.topmenu a[data-v-54297ce8]:hover{color:silver}td.topmenu[data-v-54297ce8]{text-align:center;font-weight:700;font-style:oblique}td.topmenu div[data-v-54297ce8]{background-color:#004080;height:25px;padding-top:2px}td.menuleft a[data-v-54297ce8]{color:#fff;text-decoration:none;cursor:hand}td.menuleft a[data-v-54297ce8]:hover{color:silver}td.menuleft[data-v-54297ce8]{font-weight:700;font-size:16px;color:#640d00;font-style:oblique;text-align:left}td.menuleft div[data-v-54297ce8]{padding:4px 8px;white-space:nowrap;background-color:#004080;text-align:center}td.newsselectcontainer[data-v-54297ce8]{height:25px;width:190px}td.newsselectcontainer form[data-v-54297ce8]{margin:0}td.newsselectcontainer select[data-v-54297ce8]{background-color:#004080;color:#fff;width:140px;font-style:oblique;font-weight:700}.newsselectbtn[data-v-54297ce8]{background-color:#004080;color:#fff;width:42px;height:23px;font-weight:700}.menuleftblock[data-v-54297ce8]{border:1px solid #004080}.memorial[data-v-54297ce8]{padding:0 8px;border:2px solid #000000}.menu[data-v-54297ce8]{z-index:1000;font-size:1em;height:2em}.menu ul[data-v-54297ce8]{padding:0;margin:0;list-style-type:none;height:2em;background:#004080}.menu ul ul[data-v-54297ce8]{width:15em}.menu ul li[data-v-54297ce8]{float:left;height:2em;line-height:2em}.menu ul ul li[data-v-54297ce8]{display:block;width:12em;height:auto;position:relative;line-height:1em}.menu a[data-v-54297ce8],.menu a[data-v-54297ce8]:visited{display:block;float:left;height:100%;font-size:1em;text-decoration:none;color:#fff;background:#004080;padding:0 3em;text-align:center;font-weight:700;font-style:oblique}.menu ul ul a[data-v-54297ce8],.menu ul ul a[data-v-54297ce8]:visited{display:block;background:#004080;color:#fff;width:12em;height:100%;border:1px solid #fff;line-height:1em;padding:.5em 1em;text-align:center;font-weight:700;font-style:oblique}.menu ul table ul a[data-v-54297ce8],.menu ul table ul a[data-v-54297ce8]:visited{width:14em;width:12em}.menu table[data-v-54297ce8]{position:absolute;left:0;top:0;font-size:1em;z-index:-1}.menu ul ul table[data-v-54297ce8]{left:-1px}.menu ul ul table ul.left[data-v-54297ce8]{margin-left:2px}.menu li[data-v-54297ce8]:hover,* html .menu a[data-v-54297ce8]:hover{position:relative}.menu ul ul ul a[data-v-54297ce8],.menu ul ul ul a[data-v-54297ce8]:visited,.menu ul ul ul ul a[data-v-54297ce8],.menu ul ul ul ul a[data-v-54297ce8]:visited,.menu ul :hover a.sub1[data-v-54297ce8],.menu ul ul :hover a.sub2[data-v-54297ce8]{background:#004080}.menu a[data-v-54297ce8]:hover{color:silver;background:#014181}.menu :hover>a[data-v-54297ce8]{color:silver;background:#014181}.menu ul ul a[data-v-54297ce8]:hover{color:silver;background:#014181}.menu ul ul :hover>a[data-v-54297ce8]{color:silver;background:#014181}.menu ul ul ul a[data-v-54297ce8]:hover{color:silver;background:#014181}.menu ul ul ul :hover>a[data-v-54297ce8]{color:silver;background:#014181}.menu ul ul ul ul a[data-v-54297ce8]:hover{color:silver;background:#014181}.menu ul ul[data-v-54297ce8]{visibility:hidden;position:absolute;height:0;top:2em;left:0;width:14em}.menu ul ul ul[data-v-54297ce8]{left:14em;top:0;width:14em}.menu ul ul ul.left[data-v-54297ce8]{left:-14em}.menu ul li:hover ul[data-v-54297ce8],.menu ul a:hover ul[data-v-54297ce8]{visibility:visible;height:auto;padding-bottom:3em}.menu ul :hover ul ul[data-v-54297ce8],.menu ul :hover ul :hover ul ul[data-v-54297ce8]{visibility:hidden}.menu ul :hover ul :hover ul[data-v-54297ce8],.menu ul :hover ul :hover ul :hover ul[data-v-54297ce8]{visibility:visible}.lmenu[data-v-54297ce8]{height:150px;font-size:90%}.lmenu ul[data-v-54297ce8]{position:relative;z-index:500;padding:0;margin:0;list-style-type:none;width:15em}.lmenu li[data-v-54297ce8]{color:#fff;height:2.6em;text-align:center;font-weight:700;font-style:oblique;float:left}.lmenu li div[data-v-54297ce8]{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;text-indent:.5em;border:1px solid #fff;color:#004080;height:2.6em;float:left}.lmenu table[data-v-54297ce8]{position:absolute;border-collapse:collapse;top:0;left:0;z-index:100;font-size:1em}.lmenu a[data-v-54297ce8],.lmenu a[data-v-54297ce8]:visited{display:block;text-decoration:none;height:2.5em;line-height:2.5em;width:15em;color:#fff;background:#004080;text-indent:.5em;border:1px solid #fff}* html .lmenu a[data-v-54297ce8],* html .menu a[data-v-54297ce8]:visited{width:150em;width:14.9em}* html .lmenu a[data-v-54297ce8]:hover{color:silver;background:#014181;position:relative}.lmenu li[data-v-54297ce8]:hover{position:relative}.lmenu a[data-v-54297ce8]:active,.lmenu a[data-v-54297ce8]:focus{color:silver;background:#004080}.lmenu li:hover>a[data-v-54297ce8]{color:silver;background:#014181}.lmenu li ul[data-v-54297ce8]{visibility:hidden;position:absolute;top:-3em;left:10em;padding:3em}.lmenu li:hover>ul[data-v-54297ce8]{visibility:visible}.lmenu ul a:hover ul ul[data-v-54297ce8],.lmenu ul a:hover ul a:hover ul ul[data-v-54297ce8],.lmenu ul a:hover ul a:hover ul a:hover ul ul[data-v-54297ce8]{visibility:hidden}.lmenu ul a:hover ul[data-v-54297ce8],.lmenu ul a:hover ul a:hover ul[data-v-54297ce8],.lmenu ul a:hover ul a:hover ul a:hover ul[data-v-54297ce8],.lmenu ul a:hover ul a:hover ul a:hover ul a:hover ul[data-v-54297ce8]{visibility:visible}.title[data-v-52fb84f5]{--scroll-bar: 0;font-variant:tabular-nums;line-height:1.5715;box-sizing:border-box;position:relative;overflow:hidden;text-align:center}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{g as et,_ as $t,y as me,h as wt,P as pe,a as fe}from"./pagination-1c199e71.js";import{g as P,h as g,i as I,U as Z,o as a,c as d,d as e,t as v,j as t,G as nt,b as k,w as N,k as b,l as _t,V as _e,W as ve,X as ge,N as j,Y as he,P as it,Z as jt,$ as Tt,n as J,A as rt,v as V,O as be,a0 as Gt,a1 as W,a2 as ye,a3 as Vt,F as L,s as H,a4 as zt,a as Y,M as xe,a5 as pt,a6 as ke,a7 as Xt,a8 as Wt,a9 as Ft,aa as we,ab as $e,ac as Yt,ad as Bt,D,T as q,ae as vt,af as gt,ag as qt,u as Se,ah as Te,ai as Ct,aj as Kt,S as Ce,ak as Ie,p as Me,al as Pt,z as Oe,am as ze,B as Fe,I as Be,J as Pe,an as Ae,ao as De,E as Le,ap as Ne,aq as Ee,ar as He,L as Re,as as Ue,at as je,au as Ge}from"./index-fe0ee4c1.js";import{_ as Qt}from"./TheInput.vue_vue_type_script_setup_true_lang-0b1911d1.js";import{a as Zt,u as Ve}from"./query-b44be24d.js";const Xe={"ml-4":"","mt-2":""},We={"ml-4":"","mt-2":"",grid:"","grid-cols-6":"","gap-y-4":""},Ye=e("div",{flex:"","items-center":"","text-sm":""}," Name: ",-1),qe={flex:"","items-center":"","w-full":"","col-span-5":""},Ke=e("div",null," Refresh Name ",-1),Qe={key:0,flex:"","items-center":"","text-sm":""},Ze={key:1,flex:"","items-center":"","w-full":"","col-span-5":""},Je=e("div",{"text-sm":"",flex:"","items-center":""}," Team: ",-1),tn={flex:"","items-center":"","w-full":"","col-span-5":""},en=P({__name:"GiantsOptions",props:{rank:null,orgOptions:null,teamsOptions:null,giants:null},emits:["update:giants"],setup(p,{emit:r}){const s=p,c=g({get(){return s.giants},set(n){r("update:giants",n)}}),u=I(c.value.filterOrganizations);function m(n,i){u.value=n,c.value.setFilterOrganizations(n)}const l=I(c.value.filterTeams);function f(n,i){l.value=n,c.value.setFilterTeams(n)}const h=g(()=>`${c.value.type===Z.BLUE?"Blue":"Red"} Team`),o=g(()=>c.value.type===Z.BLUE?"#0000FF":"#FF0000");return(n,i)=>{const _=Qt,y=_t;return a(),d("div",Xe,[e("div",{flex:"","text-sm":"",style:nt({color:t(o)})},v(t(h)),5),e("div",We,[Ye,e("div",qe,[k(_,{modelValue:t(c).name,"onUpdate:modelValue":i[0]||(i[0]=$=>t(c).name=$),"text-align":"left"},null,8,["modelValue"]),k(y,null,{popper:N(()=>[Ke]),default:N(()=>[e("div",{"i-material-symbols-refresh":"","cursor-pointer":"",btn:"","text-2xl":"","ml-2":"",onClick:i[1]||(i[1]=$=>t(c).refreshName())})]),_:1})]),p.rank.contest.organization?(a(),d("div",Qe,v(p.rank.contest.organization)+": ",1)):b("",!0),p.rank.contest.organization?(a(),d("div",Ze,[k(t(et),{options:p.orgOptions,"selected-options":t(u),onSelect:m},null,8,["options","selected-options"])])):b("",!0),Je,e("div",tn,[k(t(et),{options:p.teamsOptions,"selected-options":t(l),onSelect:f},null,8,["options","selected-options"])])])])}}}),nn={relative:"","inline-flex":"","items-center":"","cursor-pointer":""},sn=e("div",{class:"w-11 h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 rounded-full peer dark:bg-gray-700 peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all dark:border-gray-600 peer-checked:bg-blue-600"},null,-1),on=P({__name:"TheCheckbox",props:{modelValue:{type:Boolean}},emits:["update:modelValue"],setup(p){const{modelValue:r}=_e("modelValue");return(s,c)=>(a(),d("label",nn,[ve(e("input",{"onUpdate:modelValue":c[0]||(c[0]=u=>j(r)?r.value=u:null),type:"checkbox",class:"sr-only peer"},null,512),[[ge,t(r)]]),sn,he(s.$slots,"default")]))}});function an(){return`filter-organizations-${it().path}`}function ln(){return`filter-teams-${it().path}`}function rn(){const r=`filter-organizations-${it().path}`;return jt(r,[])}function cn(){const r=`filter-teams-${it().path}`;return jt(r,[])}const un={"w-full":"","font-bold":"","font-mono":"","text-base":"",flex:"","flex-col":"","gap-4":"","items-center":"","justify-center":""},dn={flex:"","flex-col":"","w-full":""},mn=e("div",{flex:""}," Filter ",-1),pn={"ml-8":"","mt-2":"",grid:"","grid-cols-6":"","gap-y-4":""},fn={key:0,flex:"","items-center":"","text-sm":""},_n={key:1,flex:"","items-center":"","w-full":"","col-span-5":""},vn=e("div",{"text-sm":"",flex:"","items-center":""}," Team: ",-1),gn={flex:"","items-center":"","w-full":"","col-span-5":""},hn={flex:"","flex-col":"","w-full":""},bn=e("div",{flex:""}," Battle of Giants ",-1),yn={"ml-4":"","mt-2":""},xn={grid:"","grid-cols-8":"","items-center":""},kn=e("span",{"text-sm":"","font-medium":"","text-gray-900":"","dark:text-gray-300":""}," Enable ",-1),wn=e("span",{"text-sm":"","font-medium":"","text-gray-900":"","dark:text-gray-300":""}," Equal Teams ",-1),$n=e("span",{"text-sm":"","font-medium":"","text-gray-900":"","dark:text-gray-300":""}," Persist ",-1),Sn=e("span",{"text-sm":"","font-medium":"","text-gray-900":"","dark:text-gray-300":""}," TopX ",-1),Tn={flex:"","flex-col":"","w-full":""},Cn=e("div",{flex:""}," Feature ",-1),In={"ml-4":"","mt-2":""},Mn={flex:"","flex-row":""},On=e("span",{"ml-3":"","text-sm":"","font-medium":"","text-gray-900":"","dark:text-gray-300":""}," Submission Queue ",-1),zn={"w-full":"",flex:"","flex-row-reverse":"","items-center":"","gap-x-4":""},Fn=P({__name:"OptionsModal",props:{isHidden:{type:Boolean},rank:null,rankOptions:null},emits:["update:isHidden","update:rankOptions"],setup(p,{emit:r}){const s=p,c=Tt.cloneDeep(s.rankOptions),{t:u}=J(),m=g({get(){return s.isHidden},set(F){r("update:isHidden",F)}}),l=g({get(){return s.rankOptions},set(F){r("update:rankOptions",F)}}),f=g(()=>s.rank),h=g(()=>u("type_menu.options")),o=I(!1);function n(){o.value=!0}function i(){o.value=!1}function _(F){o.value&&F.stopPropagation()}const y=g(()=>f.value.organizations.map(M=>({value:M,text:M}))),$=I(l.value.filterOrganizations);function C(F,M){$.value=F,l.value.setFilterOrganizations(F)}const S=g(()=>f.value.originTeams.map(M=>({value:M.id,text:M.organization?`${M.name} - ${M.organization}`:M.name}))),w=I(l.value.filterTeams);function A(F,M){w.value=F,l.value.setFilterTeams(F)}const E=Zt();function K(){l.value.battleOfGiants.persist?E.value=l.value.battleOfGiants.ToBase64():E.value=void 0}rt(()=>l.value.battleOfGiants.persist,()=>{K()});async function ct(){l.value.setSelf(c),await Gt(),K(),m.value=!0}const st=an(),tt=ln();function ut(){localStorage.setItem(st,JSON.stringify($.value)),localStorage.setItem(tt,JSON.stringify(w.value)),K(),m.value=!0}return(F,M)=>{const X=on,dt=Qt,at=en,O=$t;return a(),V(O,{isHidden:t(m),"onUpdate:isHidden":M[5]||(M[5]=x=>j(m)?m.value=x:null),title:t(h),width:"w-200",mt:"mt-4"},{default:N(()=>[e("div",un,[e("div",dn,[mn,e("div",pn,[t(f).contest.organization?(a(),d("div",fn,v(t(f).contest.organization)+": ",1)):b("",!0),t(f).contest.organization?(a(),d("div",_n,[k(t(et),{options:t(y),"selected-options":t($),onSelect:C,onCompositionstart:n,onCompositionend:i,onKeydownCapture:be(_,["delete"])},null,8,["options","selected-options","onKeydownCapture"])])):b("",!0),vn,e("div",gn,[k(t(et),{options:t(S),"selected-options":t(w),onSelect:A},null,8,["options","selected-options"])])])]),e("div",hn,[bn,e("div",yn,[e("div",xn,[kn,k(X,{modelValue:t(l).battleOfGiants.enable,"onUpdate:modelValue":M[0]||(M[0]=x=>t(l).battleOfGiants.enable=x)},null,8,["modelValue"]),wn,k(X,{modelValue:t(l).battleOfGiants.equalTeams,"onUpdate:modelValue":M[1]||(M[1]=x=>t(l).battleOfGiants.equalTeams=x)},null,8,["modelValue"]),$n,k(X,{modelValue:t(l).battleOfGiants.persist,"onUpdate:modelValue":M[2]||(M[2]=x=>t(l).battleOfGiants.persist=x)},null,8,["modelValue"]),Sn,k(dt,{modelValue:t(l).battleOfGiants.topX,"onUpdate:modelValue":M[3]||(M[3]=x=>t(l).battleOfGiants.topX=x),"text-align":"left","text-type":"number"},null,8,["modelValue"])])]),k(at,{rank:t(f),"org-options":t(y),"teams-options":t(S),giants:t(l).battleOfGiants.blueTeam},null,8,["rank","org-options","teams-options","giants"]),k(at,{rank:t(f),"org-options":t(y),"teams-options":t(S),giants:t(l).battleOfGiants.redTeam},null,8,["rank","org-options","teams-options","giants"])]),e("div",Tn,[Cn,e("div",In,[e("div",Mn,[k(X,{modelValue:t(l).enableAnimatedSubmissions,"onUpdate:modelValue":M[4]||(M[4]=x=>t(l).enableAnimatedSubmissions=x)},{default:N(()=>[On]),_:1},8,["modelValue"])])])]),e("div",zn,[e("button",{type:"submit",class:"text-white bg-primary-700 hover:bg-primary-800 focus:ring-4 focus:outline-none focus:ring-primary-300 px-5 py-2.5 text-center dark:bg-primary-600 dark:hover:bg-primary-700 dark:focus:ring-primary-800","font-medium":"","text-sm":"","rounded-md":"",onClick:ut},v(t(u)("button.confirm")),1),e("button",{type:"reset",class:"py-2.5 px-5 text-gray-900 focus:outline-none bg-white border border-gray-200 hover:bg-gray-100 hover:text-primary-700 focus:z-10 focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-600 dark:hover:text-white dark:hover:bg-gray-700","font-medium":"","text-sm":"","rounded-md":"",onClick:ct},v(t(u)("button.cancel")),1)])])]),_:1},8,["isHidden","title"])}}});function Bn(p){const r={backgroundColor:"#fff",color:"#000"};if(p.awards.includes(W.GOLD))return r.backgroundColor="#fff566",r;if(p.awards.includes(W.SILVER))return r.backgroundColor="#ffadd2",r;if(p.awards.includes(W.BRONZE))return r.backgroundColor="#f0c0a0",r;if(p.awards.includes(W.HONORABLE))return r.backgroundColor="#e6f7ff",r}function Pn(p){return p.isFirstSolved?"#3db03d":p.isAccepted()?"#e1ffb5":p.isPending()?"#c8d6fa":"#ffd0d0"}var ft=(p=>(p[p.SUBMISSION_STATUS=0]="SUBMISSION_STATUS",p[p.SUBMIT_TIMESTAMP=1]="SUBMIT_TIMESTAMP",p))(ft||{});const An={"h-7":"","w-124":"","text-gray-200":"","font-mono":"",flex:"","flex-row":"","justify-center":"","items-center":"",class:"bg-resolver-bg-zero"},Dn={"h-full":"","w-92":"","pl-1":"",truncate:""},Ln={"h-full":"","w-4":""},Nn=P({__name:"AnimatedSubmissionBlock",props:{item:null,lastBlockDisplayType:null},setup(p){const r=p,s=g(()=>r.item);function c(){const u=s.value.submission;if(r.lastBlockDisplayType===ft.SUBMISSION_STATUS)return ye[u.status];if(r.lastBlockDisplayType===ft.SUBMIT_TIMESTAMP)return u.timestampToMinute}return(u,m)=>(a(),d("div",An,[e("div",{"h-full":"","w-10":"",style:nt(t(Bn)(t(s).team)),flex:"","justify-center":"","items-center":""},[e("div",null,v(t(s).team.rank),1)],4),e("div",Dn,v(t(s).displayName),1),e("div",Ln,v(t(s).team.solvedProblemNum),1),e("div",{"h-full":"","w-6":"","border-b-3":"",flex:"","justify-center":"",style:nt({borderColor:t(s).problem.balloonColor.background_color})},v(t(s).problem.label),5),e("div",{"h-full":"","w-12":"",flex:"","justify-center":"","font-sans":"","font-medium":"","text-zinc-800":"",style:nt({backgroundColor:("getStandingsStatusColor"in u?u.getStandingsStatusColor:t(Pn))(t(s).submission)})},v(c()),5)]))}}),En={absolute:"",fixed:"","z-99":"","bottom-4":"","left-4":"","opacity-80":""},Hn={flex:"","flex-col":""},Rn={flex:"","flex-col":"","mt-6":""},Un=P({__name:"AnimatedSubmissionsModal",props:{rank:{}},setup(p){const r=p,s=g(()=>r.rank),c=g(()=>{const l=s.value.getSubmissions().sort(Vt.compare).reverse();let f=0;const h=10,o=[];let n=0;const i=6,_=[];for(let y=0;y<l.length&&(n<i||f<h);y++){const $=l[y],C=$.teamId,S=$.problemId,w=s.value.teamsMap.get(C);if(!w||s.value.filterTeamByOrg(w))continue;const A=s.value.contest.problemsMap.get(S);if(!A)continue;let E=w.name;w.organization&&(E=`${w.organization} - ${E}`);const K={submission:$,team:w,problem:A,displayName:E};f<h&&(o.push(K),++f),$.isSolved&&n<i&&(_.push(K),++n)}return _.reverse(),o.reverse(),{acceptedRes:_,allRes:o}}),u=g(()=>c.value.acceptedRes),m=g(()=>c.value.allRes);return(l,f)=>{const h=Nn;return a(),d("div",En,[e("div",Hn,[e("div",null,[k(zt,{name:"list",tag:"ul"},{default:N(()=>[(a(!0),d(L,null,H(t(u),o=>(a(),d("div",{key:o.submission.id},[k(h,{item:o,"last-block-display-type":t(ft).SUBMIT_TIMESTAMP},null,8,["item","last-block-display-type"])]))),128))]),_:1})])]),e("div",Rn,[e("div",null,[k(zt,{name:"list",tag:"ul"},{default:N(()=>[(a(!0),d(L,null,H(t(m),o=>(a(),d("div",{key:o.submission.id},[e("div",null,[k(h,{item:o,"last-block-display-type":t(ft).SUBMISSION_STATUS},null,8,["item","last-block-display-type"])])]))),128))]),_:1})])])])}}});const jn=Y(Un,[["__scopeId","data-v-c5c85310"]]),Gn={"w-full":"",flex:"","mt-4":"","gap-4":""},Vn={btn:"",title:"Submissions",disabled:"true"},Xn={"w-full":"",flex:"","mt-4":"","gap-4":""},Wn=["href"],Yn=P({__name:"Utility",setup(p){const{t:r}=J(),s=it(),c=xe(),u=g(()=>`https://resolver.xcpcio.com/resolver?xcpcio-data-source=${s.path}`);function m(){c.push(`/balloon/?data-source=${s.path}`)}function l(){c.push(`/countdown/?data-source=${s.path}`)}return(f,h)=>(a(),d(L,null,[e("div",Gn,[e("button",{btn:"",title:"Balloon",onClick:m},v(t(r)("type_menu.balloon")),1),e("button",Vn,v(t(r)("type_menu.submissions")),1)]),e("div",Xn,[e("a",{btn:"",href:t(u),target:"_blank",title:"Resolver"},v(t(r)("type_menu.resolver")),9,Wn),e("button",{btn:"",title:"Countdown",onClick:l},v(t(r)("type_menu.countdown")),1)])],64))}});var Jt={exports:{}};(function(p,r){(function(s,c){c()})(pt,function(){function s(o,n){return typeof n>"u"?n={autoBom:!1}:typeof n!="object"&&(console.warn("Deprecated: Expected third argument to be a object"),n={autoBom:!n}),n.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(o.type)?new Blob(["\uFEFF",o],{type:o.type}):o}function c(o,n,i){var _=new XMLHttpRequest;_.open("GET",o),_.responseType="blob",_.onload=function(){h(_.response,n,i)},_.onerror=function(){console.error("could not download file")},_.send()}function u(o){var n=new XMLHttpRequest;n.open("HEAD",o,!1);try{n.send()}catch{}return 200<=n.status&&299>=n.status}function m(o){try{o.dispatchEvent(new MouseEvent("click"))}catch{var n=document.createEvent("MouseEvents");n.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),o.dispatchEvent(n)}}var l=typeof window=="object"&&window.window===window?window:typeof self=="object"&&self.self===self?self:typeof pt=="object"&&pt.global===pt?pt:void 0,f=l.navigator&&/Macintosh/.test(navigator.userAgent)&&/AppleWebKit/.test(navigator.userAgent)&&!/Safari/.test(navigator.userAgent),h=l.saveAs||(typeof window!="object"||window!==l?function(){}:"download"in HTMLAnchorElement.prototype&&!f?function(o,n,i){var _=l.URL||l.webkitURL,y=document.createElement("a");n=n||o.name||"download",y.download=n,y.rel="noopener",typeof o=="string"?(y.href=o,y.origin===location.origin?m(y):u(y.href)?c(o,n,i):m(y,y.target="_blank")):(y.href=_.createObjectURL(o),setTimeout(function(){_.revokeObjectURL(y.href)},4e4),setTimeout(function(){m(y)},0))}:"msSaveOrOpenBlob"in navigator?function(o,n,i){if(n=n||o.name||"download",typeof o!="string")navigator.msSaveOrOpenBlob(s(o,i),n);else if(u(o))c(o,n,i);else{var _=document.createElement("a");_.href=o,_.target="_blank",setTimeout(function(){m(_)})}}:function(o,n,i,_){if(_=_||open("","_blank"),_&&(_.document.title=_.document.body.innerText="downloading..."),typeof o=="string")return c(o,n,i);var y=o.type==="application/octet-stream",$=/constructor/i.test(l.HTMLElement)||l.safari,C=/CriOS\/[\d]+/.test(navigator.userAgent);if((C||y&&$||f)&&typeof FileReader<"u"){var S=new FileReader;S.onloadend=function(){var E=S.result;E=C?E:E.replace(/^data:[^;]*;/,"data:attachment/file;"),_?_.location.href=E:location=E,_=null},S.readAsDataURL(o)}else{var w=l.URL||l.webkitURL,A=w.createObjectURL(o);_?_.location=A:location.href=A,_=null,setTimeout(function(){w.revokeObjectURL(A)},4e4)}});l.saveAs=h.saveAs=h,p.exports=h})})(Jt);var qn=Jt.exports;const At=ke(qn);var Kn=setTimeout;function Qn(p,r){var s=r.useCachedSetTimeout?Kn:setTimeout;return new Promise(function(c){s(c,p)})}function Zn(p){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},s=r.useCachedSetTimeout,c=Qn(p,{useCachedSetTimeout:s});function u(m){return c.then(function(){return m})}return u.then=function(){return c.then.apply(c,arguments)},u.catch=Promise.resolve().catch,u}const Jn={flex:"","flex-col":""},ts={"w-160":"","font-bold":""},es={"mt-8":""},ns={key:0,flex:"","flex-row":"","justify-center":"","gap-4":""},ss=["disabled"],os=["disabled"],as={key:1,flex:"","justify-center":""},ls=["disabled"],rs={key:2,flex:"","justify-center":""},is=["disabled"],cs=P({__name:"Export",props:{rank:null},setup(p){const r=p,s=Xt.useToast(),{copy:c,isSupported:u}=Wt(),m=g(()=>r.rank),l=I({value:"cf-dat",text:"Codeforces Gym Ghost(dat)"}),f=I([{value:"cf-dat",text:"Codeforces Gym Ghost(dat)"},{value:"general-xlsx",text:"Excel Table(xlsx)"},{value:"icpc-standings-csv",text:"ICPC Standings(csv)"}]),h=I({CfDatDownload:!1,CfDatCopy:!1,GeneralXLSXDownload:!1,ICPCStandingsCsvDownload:!1});async function o(){await Gt(),await Zn(16)}async function n(){h.value.CfDatDownload=!0,await o();const C=new Ft().convert(m.value),S=new Blob([C],{type:"text/plain;charset=utf-8"});At.saveAs(S,"contest.dat"),h.value.CfDatDownload=!1}async function i(){if(!u.value){s.warning("clipboard is not supported");return}h.value.CfDatCopy=!0,await o();const C=new Ft().convert(m.value);c(C),h.value.CfDatCopy=!1,s.success("Copy Success")}async function _(){h.value.GeneralXLSXDownload=!0,await o(),new we().convertAndWrite(m.value,`${m.value.contest.name}.xlsx`),h.value.GeneralXLSXDownload=!1}async function y(){h.value.ICPCStandingsCsvDownload=!0,await o();const C=new $e().convert(m.value),S=new Blob([C],{type:"text/csv;charset=utf-8"});At.saveAs(S,"standings.csv"),h.value.ICPCStandingsCsvDownload=!1}return($,C)=>(a(),d("div",Jn,[e("div",ts,[k(t(me),{modelValue:t(l),"onUpdate:modelValue":C[0]||(C[0]=S=>j(l)?l.value=S:null),options:t(f),placeholder:"Export Type"},null,8,["modelValue","options"])]),e("div",es,[t(l).value==="cf-dat"?(a(),d("div",ns,[e("button",{disabled:t(h).CfDatDownload,btn:"",onClick:n}," Download ",8,ss),e("button",{disabled:t(h).CfDatCopy,btn:"",onClick:i}," Copy to Clipboard ",8,os)])):b("",!0),t(l).value==="general-xlsx"?(a(),d("div",as,[e("button",{disabled:t(h).GeneralXLSXDownload,btn:"",onClick:_}," Download ",8,ls)])):b("",!0),t(l).value==="icpc-standings-csv"?(a(),d("div",rs,[e("button",{disabled:t(h).ICPCStandingsCsvDownload,btn:"",onClick:y}," Download ",8,is)])):b("",!0)])]))}});function It(p,r,s,c,u,m){return{colors:m,chart:window.innerWidth<992?{type:"bar",backgroundColor:"transparent"}:{type:"column",backgroundColor:"transparent",height:"420px"},title:{text:p},xAxis:{categories:c,labels:{style:{fontSize:"16px"}},title:{text:r,style:{fontSize:"16px"}}},yAxis:{min:0,title:{text:s,style:{fontSize:"16px",height:"320px"}},stackLabels:{enabled:!0,style:{fontSize:"16px"}}},tooltip:{enabled:!0,headerFormat:"",pointFormat:"{series.name}:{point.y}"},plotOptions:{bar:{stacking:"normal"},column:{stacking:"normal"}},credits:{enabled:!1},series:u}}function us(p){const r=[];p.contest.problems.forEach((m,l)=>{r.push({problem_id:m.label,index:l,solved:m.statistics.acceptedNum})}),r.sort((m,l)=>m.solved>l.solved?-1:m.solved<l.solved?1:m.index<l.index?-1:m.index>l.index?1:0);const{cat:s,series:c,colors:u}=(()=>{const m=[],l=[];return r.forEach(o=>{m.push(o.problem_id),l.push(o.solved)}),{cat:m,series:[{name:"队伍数",showInLegend:!1,data:l}],colors:["rgb(124, 181, 236)"]}})();return It("题目通过数","题目编号","通过数",s,c,u)}function ds(p){const r=p.rankStatistics.teamSolvedNum.map((m,l)=>({index:l,cnt:m})),{cat:s,series:c,colors:u}=(()=>{const m=[],l=[];return r.forEach(o=>{m.push(o.index),l.push(o.cnt)}),{cat:m,series:[{name:"队伍数",showInLegend:!1,data:l}],colors:["rgb(124, 181, 236)"]}})();return It("队伍过题数","过题数","队伍数",s,c,u)}function ms(p){const{cat:r,series:s,colors:c}=(()=>{const u=[],m=[],l=[],f=[];return p.contest.problems.forEach(n=>{m.push(n.statistics.acceptedNum),l.push(n.statistics.rejectedNum),f.push(n.statistics.pendingNum),u.push(n.label)}),{cat:u,series:[{name:"Accepted",showInLegend:!1,data:m},{name:"Rejected",showInLegend:!1,data:l},{name:"Pending",showInLegend:!1,data:f}],colors:["#E1FFB5","#FFD0D0","#C8D6FA"]}})();return It("提交分类","题目编号","提交数",r,s,c)}function ps(p,r){const s=r.placeChartPoints.map(u=>{var m,l;return{x:u.timePoint,y:u.rank,showX:Yt(u.timePoint),lastSolved:(m=u.lastSolvedProblem)!=null&&m.label?`Last Solved Problem ${(l=u.lastSolvedProblem)==null?void 0:l.label}`:""}});return{chart:{type:"spline"},title:{text:"排名变化趋势图"},series:[{showInLegend:!1,allowPointSelect:!1,name:"rank",type:"spline",data:s,marker:{symbol:"circle",radius:4,lineWidth:2,fillColor:"yellow",lineColor:"yellow"}}],xAxis:[{allowDecimals:!1,title:{text:"Time(min)"},crosshair:!0}],yAxis:[{allowDecimals:!1,title:{text:"Place"},reversed:!0,gridLineWidth:1}],plotOptions:{line:{color:"#efbc47",dataLabels:{enabled:!1},enableMouseTracking:!0,marker:{enabled:!0,fillColor:"#fff566"}}},tooltip:{enabled:!0,headerFormat:"",pointFormat:"Time: {point.showX} <br/> Place: {point.y} <br/> {point.lastSolved}"},credits:{enabled:!1},exporting:{enabled:!0},navigation:{menuItemStyle:{fontSize:"10px"}}}}const fs={class:"w-full",flex:"","flex-col":""},_s={class:"sm:w-full md:w-[92%]","mx-auto":"","px-4":"","py-4":"","lg:px-6":"","lg:py-6":""},vs={grid:"","grid-cols-3":"","gap-10":"","space-y-0":""},gs={class:"mx-auto w-[16rem]","p-6":"","xl:p-8":"",flex:"","flex-col":"",border:"","border-gray-100":"","dark:border-gray-600":"","text-center":"","test-gray-900":"","bg-white":"","dark:bg-gray-800":"","dark:text-white":"",shadow:"","rounded-md":""},hs={"mb-4":"","text-2xl":"","font-semibold":""},bs={class:"my-8 flex items-baseline justify-center"},ys={class:"mr-2 text-5xl font-extrabold"},xs={"mt-8":"","gap-8":"",flex:"","flex-col":""},ks=P({__name:"Statistics",props:{rank:null},setup(p){const r=p,{t:s}=J(),c=g(()=>r.rank);function u(){const m=[];return m.push({title:"standings.statistics.head_data.problems",data:c.value.contest.problems.length}),m.push({title:"standings.statistics.head_data.teams",data:c.value.teams.length}),m.push({title:"standings.statistics.head_data.submissions",data:c.value.getSubmissions().length}),m}return(m,l)=>(a(),d("div",fs,[e("section",null,[e("div",_s,[e("div",vs,[(a(!0),d(L,null,H(u(),f=>(a(),d("div",{key:f.title},[e("div",gs,[e("h3",hs,v(t(s)(f.title)),1),e("div",bs,[e("span",ys,v(f.data),1)])])]))),128))])])]),e("div",xs,[e("div",null,[k(t(wt.Chart),{options:("getSubmitChart"in m?m.getSubmitChart:t(ms))(t(c))},null,8,["options"])]),e("div",null,[k(t(wt.Chart),{options:("getProblemChart"in m?m.getProblemChart:t(us))(t(c))},null,8,["options"])]),e("div",null,[k(t(wt.Chart),{options:("getTeamChart"in m?m.getTeamChart:t(ds))(t(c))},null,8,["options"])])])]))}});const ht=p=>(vt("data-v-72257074"),p=p(),gt(),p),ws={"mx-auto":"","w-full":""},$s={"space-y-3":"",flex:"","flex-col":"","px-4":"","py-3":"","lg:flex-row":"","lg:items-center":"","lg:justify-between":"","lg:space-x-4":"","lg:space-y-0":""},Ss={flex:"","flex-shrink-0":"","flex-col":"","md:flex-row":"","md:items-center":"","lg:justify-end":"","space-y-3":"","md:space-x-3":"","md:space-y-0":""},Ts={key:0,"w-48":""},Cs={key:1,"w-48":""},Is={key:2,"w-68":""},Ms={key:3,"w-48":""},Os={key:4},zs=ht(()=>e("div",{"i-material-symbols-search":"","mr-1":"","h-5":"","w-5":""},null,-1)),Fs={class:"overflow-x-auto"},Bs={class:"w-full text-left text-sm text-gray-500 dark:text-gray-400","font-medium":"","font-mono":""},Ps={class:"bg-gray-50 text-xs uppercase text-gray-700 dark:bg-gray-700 dark:text-gray-400"},As=ht(()=>e("th",{scope:"col",class:"px-4 py-3"}," Problem ",-1)),Ds={key:0,scope:"col",class:"px-4 py-3"},Ls=ht(()=>e("th",{scope:"col",class:"px-4 py-3"}," Team ",-1)),Ns=ht(()=>e("th",{scope:"col",class:"px-4 py-3"}," Status ",-1)),Es={key:1,scope:"col",class:"px-4 py-3"},Hs={key:2,scope:"col",class:"px-4 py-3"},Rs={key:3,scope:"col",class:"px-4 py-3"},Us=ht(()=>e("th",{scope:"col",class:"px-4 py-3"}," Submit Time ",-1)),js={"px-4":"","py-2":""},Gs={key:0,class:"whitespace-nowrap px-4 py-2 text-gray-900 dark:text-white"},Vs={class:"whitespace-nowrap px-4 py-2 text-gray-900 dark:text-white"},Xs={key:1,class:"whitespace-nowrap px-4 py-2 text-gray-900 dark:text-white"},Ws={flex:"","items-center":""},Ys={key:2,class:"whitespace-nowrap px-4 py-2 text-gray-900 dark:text-white"},qs={key:3,class:"whitespace-nowrap px-4 py-2 text-gray-900 dark:text-white"},Ks={flex:"","items-center":""},Qs={class:"whitespace-nowrap px-4 py-2 text-gray-900 dark:text-white"},Zs={flex:"","items-center":""},Js=P({__name:"SubmissionsTable",props:{rank:null,submissions:null,pageSize:null,removeBorder:{type:Boolean},enableFilter:null},setup(p){const r=p,s=g(()=>r.rank),c=g(()=>r.enableFilter),u=g(()=>{if(!c.value)return!1;for(const[O,x]of Object.entries(c.value))if(x===!0)return!0;return!1}),m=I({orgNames:[],teamIds:[],languages:[],statuses:[]}),l=g(()=>s.value.organizations.map(x=>({value:x,text:x}))),f=I([]),h=I({});function o(O,x){f.value=O,h.value=x}const n=g(()=>s.value.originTeams.map(x=>({value:x.id,text:x.organization?`${x.name} - ${x.organization}`:x.name}))),i=I([]),_=I({});function y(O,x){i.value=O,_.value=x}const $=g(()=>s.value.languages.map(B=>({value:B,text:B}))),C=I([]),S=I({});function w(O,x){C.value=O,S.value=x}const A=g(()=>s.value.statuses.map(B=>({value:B,text:Bt[B]}))),E=I([]),K=I({});function ct(O,x){E.value=O,K.value=x}function st(O){return O.value.toString()}const tt=g(()=>r.submissions.filter(x=>{const B=m.value;if(B.orgNames.length===0&&B.teamIds.length===0&&B.languages.length===0&&B.statuses.length===0)return!0;if(B.teamIds.length>0){for(const R of B.teamIds)if(R===x.teamId)return!0}if(B.orgNames.length>0){const R=s.value.teamsMap.get(x.teamId);for(const lt of B.orgNames)if(lt===(R==null?void 0:R.organization))return!0}if(B.languages.length>0){for(const R of B.languages)if(R===x.language)return!0}if(B.statuses.length>0){for(const R of B.statuses)if(R===x.status)return!0}return!1}).sort(Vt.compare).reverse());function ut(){const O={orgNames:[],teamIds:[],languages:[],statuses:[]};O.orgNames=f.value.map(x=>x.value),O.teamIds=i.value.map(x=>x.value),O.languages=C.value.map(x=>x.value),O.statuses=E.value.map(x=>x.value),m.value=O}const F=I(new pe);F.value.currentPage=0,F.value.pageSize=r.pageSize??16,F.value.totalSize=tt.value.length,rt(tt,()=>{F.value.totalSize=tt.value.length,F.value.currentPage>=F.value.totalPage&&(F.value.currentPage=F.value.totalPage-1)});const M=g(()=>tt.value.slice(F.value.currentLeft,F.value.currentRight)),X=I(!1);function dt(O){const x="bg-primary-100 text-primary-800 dark:bg-primary-900 dark:text-primary-300",B=O.problemId,R=s.value.contest.problemsMap.get(B);if(R==null||!R.balloonColor)return x}function at(O){const x=O.problemId,B=s.value.contest.problemsMap.get(x);if(!(B==null||!B.balloonColor))return{backgroundColor:B.balloonColor.background_color,color:B.balloonColor.color}}return(O,x)=>{var lt,bt,yt,xt;const B=_t,R=fe;return a(),d("section",null,[e("div",ws,[e("div",{relative:"","overflow-hidden":"","bg-white":"","dark:bg-gray-800":"",class:D({"shadow-md":r.removeBorder!==!0,"sm:rounded-sm":r.removeBorder!==!0})},[e("div",$s,[e("div",Ss,[t(s).contest.organization&&((lt=t(c))!=null&<.organization)?(a(),d("div",Ts,[k(t(et),{options:t(l),"selected-options":t(f),placeholder:t(s).contest.organization,onSelect:o},null,8,["options","selected-options","placeholder"])])):b("",!0),(bt=t(c))!=null&&bt.team?(a(),d("div",Cs,[k(t(et),{options:t(n),"selected-options":t(i),placeholder:"Team",onSelect:y},null,8,["options","selected-options"])])):b("",!0),(yt=t(c))!=null&&yt.status?(a(),d("div",Is,[k(t(et),{options:t(A),"selected-options":t(E),placeholder:"Status","custom-attr":st,onSelect:ct},null,8,["options","selected-options"])])):b("",!0),(xt=t(c))!=null&&xt.language&&t($).length>0?(a(),d("div",Ms,[k(t(et),{options:t($),"selected-options":t(C),placeholder:"Language",onSelect:w},null,8,["options","selected-options"])])):b("",!0),t(u)?(a(),d("div",Os,[e("button",{type:"button",class:"flex flex-shrink-0 items-center justify-center border border-gray-200 rounded-lg bg-white px-3 py-2 text-sm font-medium text-gray-900 focus:z-10 dark:border-gray-600 dark:bg-gray-800 hover:bg-gray-100 dark:text-gray-400 hover:text-primary-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:hover:bg-gray-700 dark:hover:text-white dark:focus:ring-gray-700",onClick:ut},[zs,q(" Filter ")])])):b("",!0)])]),e("div",Fs,[e("table",Bs,[e("thead",Ps,[e("tr",null,[As,t(s).contest.organization?(a(),d("th",Ds,v(t(s).contest.organization),1)):b("",!0),Ls,Ns,t(s).contest.options.submissionHasTimeField?(a(),d("th",Es," Time ")):b("",!0),t(X)?(a(),d("th",Hs," Memory ")):b("",!0),t(s).contest.options.submissionHasLanguageField?(a(),d("th",Rs," Answer ")):b("",!0),Us])]),e("tbody",null,[(a(!0),d(L,null,H(t(M),G=>{var mt,T,z;return a(),d("tr",{key:G.id,class:"border-b dark:border-gray-600 hover:bg-gray-100 dark:hover:bg-gray-700"},[e("td",js,[e("span",{class:D(["rounded px-2 py-0.5 text-sm",[dt(G)]]),style:nt(at(G))},v((mt=t(s).contest.problemsMap.get(G.problemId))==null?void 0:mt.label),7)]),t(s).contest.organization?(a(),d("td",Gs,v((T=t(s).teamsMap.get(G.teamId))==null?void 0:T.organization),1)):b("",!0),e("td",Vs,v((z=t(s).teamsMap.get(G.teamId))==null?void 0:z.name),1),e("td",{scope:"row",class:D([G.status.toString()]),"whitespace-nowrap":"","px-4":"","py-2":"",flex:"","items-center":"","font-bold":""},v(t(Bt)[G.status]),3),t(s).contest.options.submissionHasTimeField?(a(),d("td",Xs,[e("div",Ws,v(`${G.time??0} ms`),1)])):b("",!0),t(X)?(a(),d("td",Ys," 0.47 ")):b("",!0),t(s).contest.options.submissionHasLanguageField?(a(),d("td",qs,[e("div",Ks,v(G.language),1)])):b("",!0),e("td",Qs,[e("div",Zs,[k(B,null,{popper:N(()=>[q(v(G.timestampDisplayFormatWithMilliSecond),1)]),default:N(()=>[q(v(G.timestampDisplayFormatWithSecond)+" ",1)]),_:2},1024)])])])}),128))])])]),k(R,{pagination:t(F),"onUpdate:pagination":x[0]||(x[0]=G=>j(F)?F.value=G:null)},null,8,["pagination"])],2)])])}}});const St=Y(Js,[["__scopeId","data-v-72257074"]]),Mt=p=>(vt("data-v-198c3ef3"),p=p(),gt(),p),to={class:"statistics-0"},eo=["colspan"],no={class:"stnd"},so={class:"statistics-1"},oo=["colspan"],ao={class:"stnd"},lo=Mt(()=>e("br",null,null,-1)),ro={class:"statistics-0"},io=["colspan"],co={class:"stnd"},uo=Mt(()=>e("br",null,null,-1)),mo={class:"statistics-1"},po=["colspan"],fo={class:"stnd"},_o=Mt(()=>e("br",null,null,-1)),vo={class:"statistics-0"},go=["colspan"],ho={class:"stnd"},bo={class:"statistics-1"},yo=["colspan"],xo={class:"stnd"},ko={class:"statistics-0"},wo=["colspan"],$o={class:"stnd"},So=P({__name:"BottomStatistics",props:{rank:null},setup(p){const r=p,{t:s}=J(),c=g(()=>r.rank);function u(){let n=3;return c.value.contest.organization&&n++,c.value.contest.badge&&n++,n}function m(n){return n.submittedNum===0?"NaN":`${Math.floor(n.attemptedNum*100/n.submittedNum)}%`}function l(n){return n.submittedNum===0?"NaN":`${Math.floor(n.acceptedNum*100/n.submittedNum)}%`}function f(n){return n.attemptedNum===0?"NaN":`${n.dirt}%`}function h(n){return n.firstSolveSubmissions.length===0?"Null":`${n.firstSolveSubmissions[0].timestampToMinute}`}function o(n){return n.lastSolveSubmissions.length===0?"Null":`${n.lastSolveSubmissions[0].timestampToMinute}`}return(n,i)=>(a(),d(L,null,[e("tr",to,[e("td",{class:"empty",colspan:u()},null,8,eo),e("td",no,[e("b",null,v(t(s)("standings.statistics.submitted")),1)]),(a(!0),d(L,null,H(t(c).contest.problems,_=>(a(),d("td",{key:_.id,class:"stnd"},[e("b",null,v(_.statistics.submittedNum),1)]))),128))]),e("tr",so,[e("td",{class:"empty",colspan:u()},null,8,oo),e("td",ao,[e("b",null,v(t(s)("standings.statistics.attempted")),1)]),(a(!0),d(L,null,H(t(c).contest.problems,_=>(a(),d("td",{key:_.id,class:"stnd"},[e("b",null,v(_.statistics.attemptedNum),1),lo,e("b",null," ("+v(m(_.statistics))+") ",1)]))),128))]),e("tr",ro,[e("td",{class:"empty",colspan:u()},null,8,io),e("td",co,[e("b",null,v(t(s)("standings.statistics.accepted")),1)]),(a(!0),d(L,null,H(t(c).contest.problems,_=>(a(),d("td",{key:_.id,class:"stnd"},[e("b",null,v(_.statistics.acceptedNum),1),uo,e("b",null," ("+v(l(_.statistics))+") ",1)]))),128))]),e("tr",mo,[e("td",{class:"empty",colspan:u()},null,8,po),e("td",fo,[e("b",null,v(t(s)("standings.statistics.dirt")),1)]),(a(!0),d(L,null,H(t(c).contest.problems,_=>(a(),d("td",{key:_.id,class:"stnd"},[e("b",null,v(_.statistics.attemptedNum-_.statistics.acceptedNum),1),_o,e("b",null," ("+v(f(_.statistics))+") ",1)]))),128))]),e("tr",vo,[e("td",{class:"empty",colspan:u()},null,8,go),e("td",ho,[e("b",null,v(t(s)("standings.statistics.se")),1)]),(a(!0),d(L,null,H(t(c).contest.problems,_=>(a(),d("td",{key:_.id,class:"stnd"},[e("b",null,v(_.statistics.se.toFixed(2)),1)]))),128))]),e("tr",bo,[e("td",{class:"empty",colspan:u()},null,8,yo),e("td",xo,[e("b",null,v(t(s)("standings.statistics.first_solved")),1)]),(a(!0),d(L,null,H(t(c).contest.problems,_=>(a(),d("td",{key:_.id,class:"stnd"},[e("b",null,v(h(_.statistics)),1)]))),128))]),e("tr",ko,[e("td",{class:"empty",colspan:u()},null,8,wo),e("td",$o,[e("b",null,v(t(s)("standings.statistics.last_solved")),1)]),(a(!0),d(L,null,H(t(c).contest.problems,_=>(a(),d("td",{key:_.id,class:"stnd"},[e("b",null,v(o(_.statistics)),1)]))),128))])],64))}});const To=Y(So,[["__scopeId","data-v-198c3ef3"]]),Co={"w-full":"","font-bold":"","font-mono":"",flex:"","items-center":"","justify-center":"",class:"mt-[-12px]"},Io=P({__name:"SubmissionsTableModal",props:{isHidden:{type:Boolean},rank:null,team:null,p:null},emits:["update:isHidden"],setup(p,{emit:r}){const s=p,c=g({get(){return s.isHidden},set(h){r("update:isHidden",h)}}),u=g(()=>s.rank),m=g(()=>s.team),l=g(()=>s.p),f=g(()=>`${m.value.name} - ${l.value.problem.label}`);return(h,o)=>{const n=St,i=$t;return a(),V(i,{isHidden:t(c),"onUpdate:isHidden":o[0]||(o[0]=_=>j(c)?c.value=_:null),title:t(f)},{default:N(()=>[e("div",Co,[k(n,{"w-full":"",rank:t(u),submissions:t(l).submissions,"page-size":8,"remove-border":!0},null,8,["rank","submissions"])])]),_:1},8,["isHidden","title"])}}}),Mo=P({__name:"TeamProblemBlock",props:{rank:null,team:null,p:null},setup(p){const r=p,s=I(!0);function c(){s.value=!1}const u=g(()=>r.rank),m=g(()=>r.team),l=g(()=>r.p);function f(n){return n.isSolved?"+":n.isWrongAnswer?"-":n.isPending?`? ${n.pendingCount}`:""}function h(n){let i="";return n.isUnSubmitted||(i+=`${n.failedCount+Number(n.isSolved)}`),(n.isSolved&&u.value.contest.statusTimeDisplay.correct||n.isPending&&u.value.contest.statusTimeDisplay.pending||n.isWrongAnswer&&u.value.contest.statusTimeDisplay.incorrect)&&(i+=`/${Math.floor(n.lastSubmitTimestamp/60)}`),i}function o(n){return n.isFirstSolved?"first-solve":n.isSolved?"correct":n.isWrongAnswer?"incorrect":n.isPending?"pending":"unattempted"}return(n,i)=>{const _=Io;return a(),d("td",{class:D(["stnd",[o(t(l))]])},[e("div",{"cursor-pointer":"",flex:"","flex-col":"","justify-center":"","items-center":"",onClick:c},[e("div",null,v(f(t(l))),1),e("div",null,v(h(t(l))),1)]),e("div",null,[t(s)?b("",!0):(a(),V(_,{key:0,isHidden:t(s),"onUpdate:isHidden":i[0]||(i[0]=y=>j(s)?s.value=y:null),rank:t(u),team:t(m),p:t(l)},null,8,["isHidden","rank","team","p"]))])],2)}}});const Oo=Y(Mo,[["__scopeId","data-v-61916fae"]]),zo={"text-gray-900":"","dark:text-white":"","text-xl":"","font-mono":"","font-semibold":"",italic:"",flex:"","flex-col":"","gap-2":"","justify-center":"","items-center":""},Fo={flex:"","flex-col":"","items-start":"","gap-y-2":""},Bo={key:0},Po={key:1},Ao={key:2,flex:"","flex-col":"","gap-2":""},Do={key:3},Lo=P({__name:"TeamAwards",props:{team:null,rank:null},setup(p){const r=p,s=g(()=>r.team),c=g(()=>r.rank),u=g(()=>r.team.problemStatistics.filter(f=>!!f.isFirstSolved).map(f=>f.problem.label).join(",")),m=g(()=>{const f=r.team.awards;return f.includes(W.GOLD)?{text:"Gold"}:f.includes(W.SILVER)?{text:"Silver"}:f.includes(W.BRONZE)?{text:"Bronze"}:f.includes(W.HONORABLE)?{text:"Honorable"}:null}),l=g(()=>{let f=s.value.rank;return c.value.contest.organization&&(f=s.value.organizationRank),f===1?"1st Place":f===2?"2nd Place":f===3?"3rd Place":""});return(f,h)=>(a(),d("div",zo,[e("div",Fo,[t(m)?(a(),d("div",Bo,v(t(m).text)+" Medalist ",1)):b("",!0),t(l).length>0?(a(),d("div",Po,v(t(l)),1)):b("",!0),t(u).length?(a(),d("div",Ao,[e("div",null," First Solved Problem "+v(t(u)),1)])):b("",!0),t(s).solvedProblemNum>0?(a(),d("div",Do," Solved "+v(t(s).solvedProblemNum)+" "+v(t(s).solvedProblemNum>1?"Problems":"Problem"),1)):b("",!0)])]))}}),No={role:"group","inline-flex":"","flex-col":"","w-full":"","md:w-auto":"","md:flex-row":"","rounded-md":"","shadow-sm":""},Eo=["onClick"],te=P({__name:"ModalMenu",props:{currentType:null,types:null},emits:["update:currentType"],setup(p,{emit:r}){const s=p,{t:c}=J(),u=g({get(){return s.currentType},set(f){r("update:currentType",f)}});function m(f){u.value=f}const l=g(()=>s.types.length);return(f,h)=>(a(),d("div",No,[(a(!0),d(L,null,H(s.types,(o,n)=>(a(),d("button",{key:o,type:"button","px-4":"","py-2":"","my-2":"","text-sm":"","font-medium":"","text-gray-900":"","bg-white":"","dark:bg-gray-700":"","dark:text-white":"","border-gray-200":"","dark:border-gray-600":"","hover:bg-gray-100":"","dark:hover:bg-gray-600":"","hover:text-primary-700":"","dark:hover:text-white":"","focus:z-10":"","focus:ring-2":"","focus:ring-primary-700":"","focus:text-primary-700":"","dark:focus:ring-primary-500":"","dark:focus:text-white":"",class:D({"rounded-t-lg md:rounded-tr-none md:rounded-l-lg":n===0,"rounded-b-lg md:rounded-bl-none md:rounded-r-lg mr-2":n+1===t(l),border:n===0||n+1===t(l),"border-t border-x md:border-x-0 md:border-b":n>0&&n+1<t(l),"md:border-r-0":n===0,"md:border-l":n>0,"z-10 ring-2 ring-primary-700 text-primary-700 dark:ring-primary-600 dark:text-white":t(u)===o}),onClick:i=>m(o)},v(t(c)(`type_menu.${o}`)),11,Eo))),128))]))}}),Ho=["src"],ee=P({__name:"Badge",props:{image:null,widthClass:null},setup(p){const r=p,s=g(()=>r.image),c=g(()=>r.widthClass?r.widthClass:"h-8 w-8");return(u,m)=>t(s).base64?(a(),d("img",{key:0,src:t(qt)(t(s)),alt:"badge",class:D([t(c)])},null,10,Ho)):b("",!0)}}),Ro={"w-full":"","max-w-screen-xl":"","px-4":"","mx-auto":"","lg:px-12":""},Uo={relative:"","overflow-hidden":"","bg-white":"","dark:bg-gray-800":""},jo={flex:"","flex-col":"","items-center":"","justify-between":"","md:flex-row":"","space-y-3":"","md:space-y-0":""},Go={flex:"","flex-row":"","space-x-3":""},Vo={"text-gray-900":"","dark:text-white":"","text-2xl":"","font-sans":"","font-semibold":"",italic:""},Xo={flex:"","flex-col":"","justify-start":"","items-start":""},Wo={"w-full":"","font-bold":"","font-mono":"",flex:"","items-center":"","justify-center":""},Yo={key:0,"w-full":"",class:"mt-[-12px]"},qo={key:1,"w-full":""},Ko={key:2,"w-full":""},Dt="submissions",Lt="statistics",Nt="awards",Qo=P({__name:"TeamInfoModal",props:{isHidden:{type:Boolean},rank:null,team:null},emits:["update:isHidden"],setup(p,{emit:r}){const s=p,c=g({get(){return s.isHidden},set(o){r("update:isHidden",o)}}),u=I("submissions"),m=g(()=>s.rank),l=g(()=>s.team),f=g(()=>{let o="";return m.value.contest.organization&&l.value.organization.length>0&&(o+=`${l.value.organization} - `),o+=`${l.value.name}`,l.value.members&&(o+=` - ${l.value.members}`),l.value.coach&&(o+=` - ${l.value.coach}(coach)`),o}),h=[Dt,Lt,Nt];return(o,n)=>{const i=ee,_=_t,y=te,$=St,C=Lo,S=$t;return a(),V(S,{isHidden:t(c),"onUpdate:isHidden":n[1]||(n[1]=w=>j(c)?c.value=w:null)},{header:N(()=>[e("div",Ro,[e("div",Uo,[e("div",jo,[e("div",Go,[t(l).badge?(a(),V(i,{key:0,image:t(l).badge,"width-class":"h-8 w-8"},null,8,["image"])):b("",!0),k(_,null,{popper:N(()=>[e("div",Xo,[e("div",null," TeamID: "+v(t(l).id),1)])]),default:N(()=>[e("h3",Vo,v(t(f)),1)]),_:1})]),k(y,{"current-type":t(u),"onUpdate:currentType":n[0]||(n[0]=w=>j(u)?u.value=w:null),types:h},null,8,["current-type"])])])])]),default:N(()=>[e("div",Wo,[t(u)===Dt?(a(),d("div",Yo,[k($,{"w-full":"",rank:t(m),submissions:t(l).submissions,"page-size":8,"remove-border":!0},null,8,["rank","submissions"])])):b("",!0),t(u)===Lt?(a(),d("div",qo,[k(t(wt.Chart),{options:("getTeamPlaceChart"in o?o.getTeamPlaceChart:t(ps))(t(m),t(l))},null,8,["options"])])):b("",!0),t(u)===Nt?(a(),d("div",Ko,[k(C,{team:t(l),rank:t(m)},null,8,["team","rank"])])):b("",!0)])]),_:1},8,["isHidden"])}}}),Zo={},Jo={class:"color-gray-700 dark:color-gray-200"},ta=e("svg",{t:"1685666543416",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"3736",width:"16",height:"16"},[e("path",{d:"M661.333333 662.613333c0.213333 82.133333 28.8 169.386667 64 169.386667v170.666667H298.666667v-170.666667c35.2 0 63.786667-87.253333 64-169.386667a176.256 176.256 0 0 1 21.333333-1.28h21.333333c0 35.413333 47.786667 64 106.666667 64s106.666667-28.586667 106.666667-64h21.333333a176.256 176.256 0 0 1 21.333333 1.28z",fill:"#F3596B","p-id":"3737"}),e("path",{d:"M810.666667 832v170.666667h-85.333334v-170.666667c-35.2 0-63.786667-87.253333-64-169.386667A170.666667 170.666667 0 0 1 810.666667 832zM362.666667 662.613333c-0.213333 82.133333-28.8 169.386667-64 169.386667v170.666667h-85.333334v-170.666667a170.666667 170.666667 0 0 1 149.333334-169.386667z",fill:"#FFD0AA","p-id":"3738"}),e("path",{d:"M704 320v-85.333333c0-94.293333-97.706667-170.666667-192-170.666667a42.794667 42.794667 0 0 1 42.666667-42.666667h128a128 128 0 0 1 128 128v234.666667s0 85.333333 85.333333 85.333333c0 0-93.226667 134.613333-228.48 6.186667a166.229333 166.229333 0 0 0 13.866667-49.066667L682.666667 426.666667h21.333333a42.666667 42.666667 0 0 0 0-85.333334h-21.333333v-21.333333z",fill:"#FFCA6B","p-id":"3739"}),e("path",{d:"M704 234.666667H320c0-94.293333 97.706667-170.666667 192-170.666667s192 76.373333 192 170.666667z",fill:"#FFCA6B","p-id":"3740"}),e("path",{d:"M704 234.666667v85.333333H320v-85.333333h384z",fill:"#F3596B","p-id":"3741"}),e("path",{d:"M746.666667 384a42.794667 42.794667 0 0 1-42.666667 42.666667h-21.333333l-1.28-0.213334A172.8 172.8 0 0 0 682.666667 405.333333v-64h21.333333a42.794667 42.794667 0 0 1 42.666667 42.666667zM341.333333 405.333333a172.8 172.8 0 0 0 1.28 21.12L341.333333 426.666667h-21.333333a42.666667 42.666667 0 0 1 0-85.333334h21.333333zM618.666667 661.333333c0 35.413333-47.786667 64-106.666667 64s-106.666667-28.586667-106.666667-64a42.794667 42.794667 0 0 0 42.666667-42.666666v-55.04a171.712 171.712 0 0 0 128 0V618.666667a42.794667 42.794667 0 0 0 42.666667 42.666666z",fill:"#FFD0AA","p-id":"3742"}),e("path",{d:"M682.666667 341.333333v64a172.8 172.8 0 0 1-1.28 21.12 166.229333 166.229333 0 0 1-13.866667 49.066667A170.474667 170.474667 0 0 1 576 563.626667 170.538667 170.538667 0 0 1 341.333333 405.333333v-85.333333h341.333334z",fill:"#FFD0AA","p-id":"3743"}),e("path",{d:"M810.666667 1024H213.333333a21.333333 21.333333 0 0 1-21.333333-21.333333v-170.666667a192.213333 192.213333 0 0 1 192-192h21.333333a21.333333 21.333333 0 0 0 21.333334-21.333333v-64h42.666666v64a64 64 0 0 1-64 64h-21.333333a149.504 149.504 0 0 0-149.333333 149.333333v149.333333h554.666666v-149.333333a149.504 149.504 0 0 0-149.333333-149.333333h-21.333333a64 64 0 0 1-64-64v-64h42.666666v64a21.333333 21.333333 0 0 0 21.333334 21.333333h21.333333a192.213333 192.213333 0 0 1 192 192v170.666667a21.333333 21.333333 0 0 1-21.333333 21.333333z",fill:"#2A3244","p-id":"3744"}),e("path",{d:"M512 597.333333a192.234667 192.234667 0 0 1-192-192v-85.333333a21.333333 21.333333 0 0 1 21.333333-21.333333h341.333334a21.333333 21.333333 0 0 1 21.333333 21.333333v85.333333a192.234667 192.234667 0 0 1-192 192z m-149.333333-256v64a149.333333 149.333333 0 0 0 298.666666 0v-64z",fill:"#2A3244","p-id":"3745"}),e("path",{d:"M704 448h-21.333333v-42.666667h21.333333a21.333333 21.333333 0 0 0 0-42.666666h-21.333333v-42.666667h21.333333a64 64 0 0 1 0 128zM341.333333 448h-21.333333a64 64 0 0 1 0-128h21.333333v42.666667h-21.333333a21.333333 21.333333 0 0 0 0 42.666666h21.333333z",fill:"#2A3244","p-id":"3746"}),e("path",{d:"M704 341.333333H320a21.333333 21.333333 0 0 1-21.333333-21.333333v-85.333333a21.333333 21.333333 0 0 1 21.333333-21.333334h384a21.333333 21.333333 0 0 1 21.333333 21.333334v85.333333a21.333333 21.333333 0 0 1-21.333333 21.333333z m-362.666667-42.666666h341.333334v-42.666667H341.333333z",fill:"#2A3244","p-id":"3747"}),e("path",{d:"M725.333333 234.666667h-42.666666c0-84.096-91.733333-149.333333-170.666667-149.333334s-170.666667 65.237333-170.666667 149.333334h-42.666666c0-109.888 112.618667-192 213.333333-192s213.333333 82.112 213.333333 192z",fill:"#2A3244","p-id":"3748"}),e("path",{d:"M783.616 552.32c-46.122667 0-92.266667-22.805333-137.365333-67.904l30.165333-30.165333c39.701333 39.701333 78.613333 58.389333 115.648 55.018666a114.282667 114.282667 0 0 0 60.8-26.026666A105.92 105.92 0 0 1 789.333333 384V149.333333a106.794667 106.794667 0 0 0-106.666666-106.666666h-128a21.333333 21.333333 0 0 0-21.333334 21.333333h-42.666666a64 64 0 0 1 64-64h128a149.504 149.504 0 0 1 149.333333 149.333333v234.666667a60.842667 60.842667 0 0 0 64 64 21.333333 21.333333 0 0 1 17.536 33.472 174.72 174.72 0 0 1-117.333333 70.250667 130.133333 130.133333 0 0 1-12.586667 0.597333zM512 746.666667c-71.765333 0-128-37.482667-128-85.333334h42.666667c0 20.138667 36.48 42.666667 85.333333 42.666667s85.333333-22.528 85.333333-42.666667h42.666667c0 47.850667-56.234667 85.333333-128 85.333334zM746.666667 1002.666667h-42.666667v-154.709334c-43.968-23.274667-64-117.333333-64-186.624h42.666667c0 85.333333 29.866667 148.842667 42.666666 149.333334a22.08 22.08 0 0 1 21.333334 21.333333zM320 1002.666667h-42.666667v-170.666667a21.333333 21.333333 0 0 1 21.333334-21.333333c12.8-0.490667 42.666667-64 42.666666-149.333334h42.666667c0 69.354667-20.032 163.349333-64 186.624z",fill:"#2A3244","p-id":"3749"})],-1),ea=[ta];function na(p,r){return a(),d("div",Jo,ea)}const sa=Y(Zo,[["render",na]]),oa={},aa={class:"color-gray-700 dark:color-gray-200"},la=e("svg",{t:"1685845881484",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4847",width:"16",height:"16"},[e("path",{d:"M785.352203 933.397493c-4.074805 0-8.151657-0.970094-11.833513-3.007497l-261.311471-142.488225L250.942821 930.388972c-8.343015 4.559852-18.527982 3.8814-26.28669-1.599428-7.760754-5.5279-11.640108-14.987343-10.088776-24.347524l47.578622-285.365306L72.563154 429.470355c-6.594185-6.547113-8.971325-16.295128-6.110161-25.122167 2.814092-8.850575 10.379395-15.397688 19.546172-16.949021l285.512662-47.577598 118.529557-236.989529c4.172019-8.391111 12.803607-13.701047 22.165836-13.701047 9.359158 0 17.992793 5.309936 22.163789 13.701047l118.529557 236.989529 285.511639 47.577598c9.217942 1.551332 16.73208 8.051373 19.593244 16.949021 2.813069 8.875135 0.48607 18.575054-6.109138 25.122167L762.264369 619.077737l47.577598 285.365306c1.50119 9.360182-2.37714 18.819624-10.087753 24.347524C795.487028 931.797042 790.394033 933.397493 785.352203 933.397493zM512.206196 734.747153c4.073782 0 8.196683 0.968048 11.880585 3.006474l228.379431 124.545574-41.268916-247.634983c-1.308809-7.90504 1.257643-16.005532 6.932899-21.63167l164.55787-164.555823-250.398934-41.709961c-7.855922-1.308809-14.549368-6.304589-18.140149-13.408381l-101.942787-203.915249","p-id":"4848"})],-1),ra=[la];function ia(p,r){return a(),d("div",aa,ra)}const ca=Y(oa,[["render",ia]]),ua=p=>(vt("data-v-4eb7108c"),p=p(),gt(),p),da={key:1,class:"empty flex items-center justify-center"},ma={flex:""},pa={"float-left":"","pl-2":"","font-serif":""},fa={key:0},_a={"flex-1":""},va=ua(()=>e("div",{"float-right":""},null,-1)),ga=P({__name:"TeamUI",props:{ix:null,rank:null,team:null,isFilter:{type:Boolean},giantsType:null},setup(p){const r=p,s=I(null),c=Se(s),u=I(!0);function m(){u.value=!1}const l=g(()=>r.rank),f=g(()=>r.team);function h(n,i=!1){if(i){if(n.awards.includes(W.GOLD))return"gold";if(n.awards.includes(W.SILVER))return"silver";if(n.awards.includes(W.BRONZE))return"bronze";if(n.awards.includes(W.HONORABLE))return"honorable"}if(r.giantsType!==void 0)switch(r.giantsType){case Z.BLUE:return"bg-blue-400";case Z.RED:return"bg-red-400"}if(r.isFilter)return"filter-team";const _=(l.value.rankStatistics.getTeamSolvedNumIndex(n.solvedProblemNum)-1)%2,y=r.ix%2;return`stand${_}${y}`}function o(){return c.value||r.ix<32}return(n,i)=>{const _=ee,y=ca,$=sa,C=Qo,S=Oo;return a(),d("tr",{ref_key:"el",ref:s,class:D(["h-10",[r.isFilter?"filter-team":"",r.giantsType!==void 0?h(r.team):""]])},[o()?(a(),d("td",{key:0,class:D(["stnd",[h(t(f),!0)]])},v(t(f).rank),3)):b("",!0),t(l).contest.badge&&t(f).badge&&o()?(a(),d("td",da,[k(_,{image:t(f).badge,"width-class":"h-8 w-8"},null,8,["image"])])):b("",!0),t(l).contest.organization&&o()?(a(),d("td",{key:2,class:D(["stnd",[h(t(f))]])},[e("div",ma,[e("div",pa,[t(f).organizationRank>-1?(a(),d("div",fa,v(t(f).organizationRank),1)):b("",!0)]),e("div",_a,v(t(f).organization),1),va])],2)):b("",!0),o()?(a(),d("td",{key:3,class:D(["stnd",[h(t(f))]])},[e("div",{"cursor-pointer":"",onClick:m},[e("span",null,v(t(f).name),1),t(f).group.includes("unofficial")?(a(),V(y,{key:0,"inline-block":""})):b("",!0),t(f).group.includes("girl")?(a(),V($,{key:1,"inline-block":""})):b("",!0)]),e("div",null,[t(u)?b("",!0):(a(),V(C,{key:0,isHidden:t(u),"onUpdate:isHidden":i[0]||(i[0]=w=>j(u)?u.value=w:null),rank:t(l),team:t(f)},null,8,["isHidden","rank","team"]))])],2)):b("",!0),o()?(a(),d("td",{key:4,class:D(["stnd",[h(t(f))]])},v(t(f).solvedProblemNum),3)):b("",!0),o()?(a(),d("td",{key:5,class:D(["stnd",[h(t(f))]])},v(t(f).penaltyToMinute),3)):b("",!0),(a(!0),d(L,null,H(t(f).problemStatistics,w=>(a(),d(L,{key:w.problem.id},[o()?(a(),V(S,{key:0,rank:t(l),team:t(f),p:w},null,8,["rank","team","p"])):b("",!0)],64))),128)),o()?(a(),d("td",{key:6,class:D(["stnd",[h(t(f))]])},v(`${t(f).dirt}%`),3)):b("",!0),o()?(a(),d("td",{key:7,class:D(["stnd",[h(t(f))]])},v(`${t(f).se.toFixed(2)}`),3)):b("",!0)],2)}}});const ha=Y(ga,[["__scopeId","data-v-4eb7108c"]]),ba={"w-full":"","max-w-screen-xl":"","px-4":"","mx-auto":"","lg:px-12":""},ya={relative:"","overflow-hidden":"","bg-white":"","dark:bg-gray-800":""},xa={flex:"","flex-col":"","items-center":"","justify-between":"","md:flex-row":"","space-y-3":"","md:space-y-0":""},ka={flex:"","flex-row":"","space-x-3":""},wa={"text-gray-900":"","dark:text-white":"","text-2xl":"","font-sans":"","font-semibold":"",italic:""},$a={"w-full":"","font-bold":"","font-mono":"",flex:"","items-center":"","justify-center":""},Sa={key:0,"w-full":"",class:"mt-[-12px]"},Ta={key:1,"w-full":""},Ca={key:2,"w-full":""},Et="submissions",Ht="statistics",Rt="awards",Ia=P({__name:"ProblemInfoModal",props:{isHidden:{type:Boolean},rank:null,problem:null},emits:["update:isHidden"],setup(p,{emit:r}){const s=p,c=g({get(){return s.isHidden},set(n){r("update:isHidden",n)}}),u=I("submissions"),m=g(()=>s.rank),l=g(()=>s.problem),f=g(()=>`Problem ${l.value.label}`),h=g(()=>m.value.getSubmissions().filter(n=>n.problemId===l.value.id)),o=[Et,Ht,Rt];return(n,i)=>{const _=te,y=St,$=$t;return a(),V($,{isHidden:t(c),"onUpdate:isHidden":i[1]||(i[1]=C=>j(c)?c.value=C:null)},{header:N(()=>[e("div",ba,[e("div",ya,[e("div",xa,[e("div",ka,[e("h3",wa,v(t(f)),1)]),k(_,{"current-type":t(u),"onUpdate:currentType":i[0]||(i[0]=C=>j(u)?u.value=C:null),types:o},null,8,["current-type"])])])])]),default:N(()=>[e("div",$a,[t(u)===Et?(a(),d("div",Sa,[k(y,{"w-full":"",rank:t(m),submissions:t(h),"page-size":8,"remove-border":!0,"enable-filter":{organization:!0,team:!0,language:!0,status:!0}},null,8,["rank","submissions"])])):b("",!0),t(u)===Ht?(a(),d("div",Ta)):b("",!0),t(u)===Rt?(a(),d("div",Ca)):b("",!0)])]),_:1},8,["isHidden"])}}}),Ma=P({__name:"ProblemBlock",props:{rank:null,problem:null},setup(p){const r=p,s=I(!0);function c(){s.value=!1}const u=g(()=>r.rank),m=g(()=>r.problem),l=g(()=>m.value.balloonColor);return(f,h)=>{const o=Ia;return a(),d("th",{key:t(m).id,class:"success","text-center":"",style:nt([{width:"3rem"},{"background-color":t(l).background_color,color:t(l).color}])},[e("div",{"cursor-pointer":"",flex:"","flex-col":"","justify-center":"","items-center":"",onClick:c},[e("div",null,v(t(m).label),1),e("div",null,v(t(m).statistics.acceptedNum),1)]),e("div",null,[t(s)?b("",!0):(a(),V(o,{key:0,"is-hidden":t(s),"onUpdate:isHidden":h[0]||(h[0]=n=>j(s)?s.value=n:null),rank:t(u),problem:t(m)},null,8,["is-hidden","rank","problem"]))])],4)}}});const Oa=Y(Ma,[["__scopeId","data-v-6d613751"]]),za={"text-8xl":"","font-mono":"",flex:"","justify-center":"","items-center":""},Fa={flex:"","justify-end":"","items-center":"","text-blue-400":""},Ba={flex:"","flex-col":"","items-center":"","justify-center":"","ml-4":""},Pa={"text-6xl":""},Aa={"text-4xl":""},Da=e("div",{flex:"","justify-center":"","items-center":"","ml-4":"","mr-4":""}," : ",-1),La={flex:"","justify-start":"","items-center":"","text-red-400":""},Na={flex:"","flex-col":"","items-center":"","justify-center":"","mr-4":""},Ea={"text-6xl":""},Ha={"text-4xl":""},Ra=P({__name:"GiantsScoreBoard",props:{battleOfGiants:null},setup(p){const r=p,s=g(()=>r.battleOfGiants);return(c,u)=>(a(),d("div",null,[e("div",za,[e("div",Fa,[e("div",null,v(t(s).blueTeam.name),1),e("div",Ba,[e("div",Pa,v(t(s).blueTeam.totalSolvedProblemNum),1),e("div",Aa,v(t(s).blueTeam.totalPenaltyToString),1)])]),Da,e("div",La,[e("div",Na,[e("div",Ea,v(t(s).redTeam.totalSolvedProblemNum),1),e("div",Ha,v(t(s).redTeam.totalPenaltyToString),1)]),e("div",null,v(t(s).redTeam.name),1)])])]))}}),ne=p=>(vt("data-v-84f25c40"),p=p(),gt(),p),Ua={key:0,"mb-4":""},ja={class:"standings","font-mono":"","dark:text-gray-700":""},Ga={class:"sticky top-0 z-99"},Va={class:"title",style:{width:"3rem"}},Xa={key:0,class:"title",style:{width:"2rem"}},Wa={class:"title",style:{width:"3rem"}},Ya={class:"title",style:{width:"4rem"}},qa={class:"title",style:{width:"2.5rem"}},Ka=ne(()=>e("div",null,[q(" number of submits on the "),e("br"),q(" all solved problems / number "),e("br"),q(" of the solved problems ")],-1)),Qa={class:"title",style:{width:"2.5rem"}},Za=ne(()=>e("div",null,[q(' "average hardness". '),e("br"),q(" Problem, solved by N teams out of M, "),e("br"),q(" have hardness (M-N)/M. ")],-1)),Ja=P({__name:"Standings",props:{rank:{}},setup(p){const r=p,{t:s}=J(),c=g(()=>r.rank),u=g(()=>r.rank.teams),m=g(()=>r.rank.options),l=g(()=>r.rank.teams.filter(i=>!!(r.rank.organizations&&r.rank.options.filterOrganizationMap.has(i.organization)||r.rank.options.filterTeamMap.has(i.id)))),f=g(()=>{const n=m.value.battleOfGiants,i=n.blueTeam,_=n.redTeam;i.teams=[],_.teams=[];let y=0,$=0;for(const S of r.rank.teams){const w=(()=>i.filterOrganizationMap.has(S.organization)||i.filterTeamMap.has(S.id)?y>=n.topX?null:(y++,Z.BLUE):_.filterOrganizationMap.has(S.organization)||_.filterTeamMap.has(S.id)?$>=n.topX?null:($++,Z.RED):null)();if(w!==null&&(w===Z.BLUE?i.teams.push(S):_.teams.push(S),y===n.topX&&$===n.topX))break}if(n.equalTeams){for(;i.teams.length<_.teams.length;)_.teams.pop();for(;_.teams.length<i.teams.length;)i.teams.pop()}const C=[...i.teams.map(S=>({team:S,giantsType:Z.BLUE})),..._.teams.map(S=>({team:S,giantsType:Z.RED}))];return C.sort((S,w)=>Te.compare(S.team,w.team)),C}),h=g(()=>{let n=0;return c.value.teams.forEach(i=>{n=Math.max(n,i.organization.length)}),n}),o=g(()=>{let n=0;return c.value.teams.forEach(i=>{n=Math.max(n,i.name.length)}),n});return(n,i)=>{const _=Ra,y=Oa,$=_t,C=ha,S=To;return a(),d("div",null,[t(m).battleOfGiants.enable?(a(),d("div",Ua,[k(_,{"battle-of-giants":t(m).battleOfGiants},null,8,["battle-of-giants"])])):b("",!0),e("div",null,[e("table",ja,[e("thead",Ga,[e("tr",null,[e("th",Va,v(t(s)("standings.place")),1),t(c).contest.badge?(a(),d("th",Xa,v(t(c).contest.badge),1)):b("",!0),t(c).contest.organization?(a(),d("th",{key:1,class:"title",style:nt({width:`${Math.min(32,Math.ceil(t(h)*1.1))}rem`})},v(t(c).contest.organization),5)):b("",!0),e("th",{class:"title",style:nt({width:`${Math.min(32,Math.ceil(t(o)*1))}rem`})},v(t(s)("standings.team")),5),e("th",Wa,v(t(s)("standings.solved")),1),e("th",Ya,v(t(s)("standings.penalty")),1),(a(!0),d(L,null,H(t(c).contest.problems,w=>(a(),V(y,{key:`problem-block-${w.id}`,rank:t(c),problem:w},null,8,["rank","problem"]))),128)),e("th",qa,[k($,{placement:"top"},{popper:N(()=>[Ka]),default:N(()=>[e("div",null,v(t(s)("standings.dirt")),1)]),_:1})]),e("th",Qa,[k($,{placement:"top"},{popper:N(()=>[Za]),default:N(()=>[e("div",null,v(t(s)("standings.se")),1)]),_:1})])])]),e("tbody",null,[t(m).battleOfGiants.enable?(a(!0),d(L,{key:0},H(t(f),(w,A)=>(a(),V(C,{key:`giant-team-${w.team.id}`,ix:A,rank:t(c),team:w.team,"giants-type":w.giantsType},null,8,["ix","rank","team","giants-type"]))),128)):b("",!0),(a(!0),d(L,null,H(t(l),(w,A)=>(a(),V(C,{key:`filter-${w.id}`,ix:A,rank:t(c),team:w,"is-filter":!0},null,8,["ix","rank","team"]))),128)),(a(!0),d(L,null,H(t(u),(w,A)=>(a(),V(C,{key:w.id,ix:A,rank:t(c),team:w},null,8,["ix","rank","team"]))),128)),k(S,{rank:t(c)},null,8,["rank"])])])])])}}});const tl=Y(Ja,[["__scopeId","data-v-84f25c40"]]),el={"font-mono":"",flex:""},nl=["onClick"],sl=["href"],ol={key:1},al=P({__name:"SecondLevelMenu",props:{items:null,currentItem:null,queryParamName:null,reverseOrder:{type:Boolean},onChange:{type:Function}},emits:["update:currentItem"],setup(p,{emit:r}){const s=p,c=g(()=>{var i;for(const _ of s.items)if(_.isDefault)return _.keyword;return(i=s.items)==null?void 0:i[0].keyword}),u=Ct(s.queryParamName,c.value,{transform:String}),m=g({get(){return s.currentItem},set(i){r("update:currentItem",i)}}),{t:l,locale:f}=J();function h(i){return i.title?l(i.title):i.titles?i.titles.get(f.value)??i.titles.get(i.defaultLang):""}function o(i){return m.value===i.keyword}function n(i){s.onChange&&s.onChange(i.keyword),!(i.link||i.isModal)&&(m.value=i.keyword,u.value=i.keyword)}return Kt(()=>{(()=>{var i;((i=u.value)==null?void 0:i.length)>0&&((()=>{for(const _ of s.items)if(_.titles){for(const[y,$]of _.titles)if(u.value===$){u.value=_.keyword;return}}})(),m.value=u.value,s.onChange&&s.onChange(u.value))})()}),(i,_)=>(a(),d("div",el,[e("div",{class:D(["mr-[-4px]",{"flex-row-reverse":s.reverseOrder}]),flex:""},[(a(!0),d(L,null,H(s.items,y=>(a(),d("div",{key:y.keyword,class:D(["second-level-menu-item",[o(y)?"second-level-menu-item-current":""]]),onClick:$=>n(y)},[e("div",null,[y.link?(a(),d("a",{key:0,href:y.link,target:"_blank",title:"Resolver"},v(h(y)),9,sl)):b("",!0),y.link?b("",!0):(a(),d("div",ol,v(h(y)),1))])],10,nl))),128))],2)]))}});const ll=Y(al,[["__scopeId","data-v-714a998b"]]);const rl={},il={class:"flex items-center justify-center dark:text-black"},cl=Ce('<table data-v-54297ce8><tbody data-v-54297ce8><tr data-v-54297ce8><td class="gold" data-v-54297ce8> Gold </td><td class="silver" data-v-54297ce8> Silver </td><td class="bronze" data-v-54297ce8> Bronze </td><td class="honorable" data-v-54297ce8> Honorable </td><td class="first-solve" data-v-54297ce8> First to solve problem </td><td class="correct" data-v-54297ce8> Solved problem </td><td class="incorrect" data-v-54297ce8> Attempted problem </td><td class="pending" data-v-54297ce8> Pending judgement </td></tr></tbody></table>',1),ul=[cl];function dl(p,r){return a(),d("div",il,ul)}const ml=Y(rl,[["render",dl],["__scopeId","data-v-54297ce8"]]),pl={flex:""},fl=e("div",null,[e("div",{"i-material-symbols-info-outline":"","text-lg":""})],-1),_l={flex:""},vl=e("div",{class:"border-l-[1px] border-r-[1px]","mx-2":"","h-6":"","border-color-black":"","dark:border-color-white":""},null,-1),gl={flex:""},hl=P({__name:"BoardTab",props:{rank:{}},setup(p){const r=p,s=g(()=>r.rank),{t:c}=J(),u=Xt.useToast(),{copy:m,isSupported:l}=Wt();let f=null;const h=I(null),o=I(null);function n(){return window?l.value?!0:(u.warning("clipboard is not supported"),f==null||f.hide(),!1):!1}function i(){u.success("copy success"),f==null||f.hide()}function _(){n()&&(m(window.location.href),i())}function y(){if(!n())return;const $=`<iframe src="${window.location.href}" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 720px"></iframe>`;m($),i()}return Kt(()=>{if(h.value&&o.value){const $={placement:"right",triggerType:"click",offsetSkidding:32,offsetDistance:5,delay:300};f=new Ie(h.value,o.value,$)}}),($,C)=>{const S=_t;return a(),d("div",pl,[e("div",null,[k(S,{"w-inherit":""},{popper:N(()=>{var w;return[e("div",_l,[e("div",null,v(t(c)("standings.options.calculation_of_penalty"))+": "+v(t(c)(`standings.options.${(w=t(s).contest.options)==null?void 0:w.calculationOfPenalty}`)),1)])]}),default:N(()=>[fl]),_:1})]),vl,e("div",gl,[e("div",{ref_key:"dropdownTriggerEl",ref:o,"i-material-symbols-share":"","text-lg":"","cursor-pointer":""},null,512),e("div",{ref_key:"dropdownTargetEl",ref:h,class:"z-9999 hidden divide-y divide-gray-100 rounded shadow w-36","bg-white":"","dark:bg-gray-700":""},[e("ul",{class:"py-2 text-sm text-gray-700 dark:text-gray-200"},[e("li",null,[e("div",{class:"block px-4 py-2 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white","cursor-pointer":"",onClick:_}," Copy Page Link ")]),e("li",null,[e("div",{class:"block px-4 py-2 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white","cursor-pointer":"",onClick:y}," Copy Page Code ")])])],512)])])}}}),bl=p=>(vt("data-v-52fb84f5"),p=p(),gt(),p),yl={key:0},xl={key:0},kl={key:0},wl={class:"max-w-[92%]"},$l=["src"],Sl={class:"max-w-[92%]"},Tl={class:"w-[92%]"},Cl={class:"flex font-bold font-mono"},Il={class:"float-left"},Ml={class:"pl-0.5"},Ol={class:"flex-1"},zl={class:"float-right"},Fl={class:"pl-0.5"},Bl={class:"mt-2"},Pl={class:"mt-2 flex font-bold font-mono"},Al={class:"float-left"},Dl={class:"flex-1"},Ll={class:"float-right"},Nl={class:"mt-4 flex"},El={class:"float-left"},Hl=bl(()=>e("div",{class:"flex-1"},null,-1)),Rl={class:"float-right"},Ul={class:"w-[92%]",flex:"","justify-center":""},jl={key:0},Gl={key:1,class:"sm:w-full xl:w-[92%]"},Vl={key:2,class:"sm:w-full xl:w-[92%]"},Xl={key:3},Wl={key:4},Yl={key:2},Ut="sm:w-[1280px] xl:w-screen",kt="sm:w-[1260px] xl:w-screen",ql=P({__name:"Board",props:{dataSourceUrl:null},setup(p){const r=p,s=it(),c=Me(Pt),{t:u}=J(),m=I(!1),l=I({}),f=I([]),h=I([]),o=I({}),n=Oe(),i=I(new ze),_=I(!1);(()=>{const T=rn(),z=cn();T.value.length>0&&i.value.setFilterOrganizations(T.value),z.value.length>0&&i.value.setFilterTeams(z.value)})(),(()=>{const T=Zt();T.value!==null&&T.value!==void 0&&i.value.battleOfGiants.FromBase64(T.value)})();const y=I("all");function $(T){T!==i.value.group&&i.value.setGroup(T)}(()=>{const T=Ct("group","all",{transform:String});y.value=T.value,i.value.setGroup(T.value)})();const C=Ct("replay-start-time",0,{transform:Number}),S=I(!1);function w(T={force:!1}){if(_.value&&T.force===!1||S.value===!0)return;S.value=!0;const z=new Re(l.value,f.value,h.value);z.options=Tt.cloneDeep(i.value),z.setReplayTime(C.value),z.buildRank(),o.value=z,S.value=!1}const{data:A,isError:E,error:K,refetch:ct}=Ve(r.dataSourceUrl??s.path,n);rt(A,async()=>{var T,z,U;A.value===null||A.value===void 0||(l.value=Fe((T=A.value)==null?void 0:T.contest),c.value=`${l.value.name} | ${Pt}`,f.value=Be((z=A.value)==null?void 0:z.teams),h.value=Pe((U=A.value)==null?void 0:U.submissions),!i.value.enableFilterSubmissionsByTimestamp&&(w(),m.value=!0))});function st(){m.value!==!1&&w()}rt(i.value,()=>{if(!o.value.options.isNeedReBuildRank(i.value)){o.value.options=Tt.cloneDeep(i.value);return}st()});{let T=function(){C.value===0?z():(st(),U())};const{pause:z,resume:U}=Ae(()=>{st()},1e3);T(),rt(C,()=>{T()})}const tt=I([{title:"type_menu.rank",keyword:"rank",isDefault:!0},{title:"type_menu.submissions",keyword:"submissions"},{title:"type_menu.statistics",keyword:"statistics"},{title:"type_menu.export",keyword:"export"},{title:"type_menu.utility",keyword:"utility"},{title:"type_menu.options",keyword:"options",isModal:!0}]),ut=g(()=>o.value.contest.group),F=g(()=>{const T=Array();for(const[z,U]of ut.value){const ot={titles:U.names,defaultLang:U.defaultLang,keyword:z,isDefault:U.isDefault};T.push(ot)}return T}),M=I("rank"),X=I(!0);function dt(T){T==="options"&&(X.value=!1)}function at(){const T=document.documentElement.scrollHeight||document.body.scrollHeight,z=document.documentElement.scrollTop||document.body.scrollTop,U=window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight;return T-z===U}let O=null;function x(){O!==null&&clearInterval(O)}De("S",T=>{if(_.value=!_.value,_.value===!0){let U=0,ot="DOWN";O=setInterval(()=>{if(ot==="DOWN"){if(at()){ot="UP",w({force:!0});return}U+=2}else{if(U===0){ot="DOWN",w({force:!0});return}U-=2}window.scrollTo({top:U,behavior:"smooth"})},64)}else x()},{dedupe:!1});const B=g(()=>{const T=o.value.contest.getStartTime().format("YYYY-MM-DD HH:mm:ss");return`${u("standings.start_time")}${u("common.colon")}${T}`}),R=g(()=>{const T=o.value.contest.getEndTime().format("YYYY-MM-DD HH:mm:ss");return`${u("standings.end_time")}${u("common.colon")}${T}`}),lt=g(()=>{const T=o.value.contest.getContestElapsedTime(n.value);return`${u("standings.elapsed")}${u("common.colon")}${T}`}),bt=g(()=>{const T=o.value.contest.getContestRemainingTime(n.value);return`${u("standings.remaining")}${u("common.colon")}${T}`}),yt=g(()=>o.value.options.enableFilterSubmissionsByTimestamp?Le.PAUSED:o.value.contest.getContestState(n.value)),xt=g(()=>Yt(o.value.options.timestamp)),G=Ue(()=>{ct()},30*1e3),mt=Ne();return rt(mt,()=>{mt.value!=="hidden"&&G()}),Ee(()=>{x()}),(T,z)=>{const U=hl,ot=je,se=Ge,oe=ml,Ot=ll,ae=tl,le=St,re=ks,ie=cs,ce=Yn,ue=jn,de=Fn;return a(),d("div",null,[t(m)?b("",!0):(a(),d("div",yl,[e("div",{class:D([Ut]),flex:"","flex-col":"","gap-4":"","justify-center":"","items-center":""},[e("div",null,v(t(u)("common.loading"))+"... ",1),t(E)?(a(),d("div",xl,v(t(K)),1)):b("",!0)],2)])),t(m)?(a(),d("div",{key:1,class:D([Ut]),flex:"","flex-col":"","justify-center":"","items-center":""},[t(o).contest.banner?(a(),d("div",kl,[e("div",{class:D([kt]),flex:"","justify-center":"","items-center":""},[e("div",wl,[e("img",{src:t(qt)(t(o).contest.banner,`${"DATA_HOST"in T?T.DATA_HOST:t(He)}${t(s).path.slice(1)}`),alt:"banner"},null,8,$l)])],2)])):b("",!0),!t(o).contest.banner||t(o).contest.banner&&t(o).contest.bannerMode==="ALL"?(a(),d("div",{key:1,class:D(["title",[kt]]),flex:"","justify-center":"","text-center":"","text-3xl":"","font-normal":"","font-serif":"","mb-2":""},[e("div",Sl,v(t(o).contest.name),1)],2)):b("",!0),e("div",null,[k(U,{rank:t(o)},null,8,["rank"])]),e("div",{class:D([kt]),"mt-2":"",flex:"","flex-row":"","justify-center":""},[e("div",Tl,[e("div",Cl,[e("div",Il,[q(v(t(B)),1),e("sup",Ml,v(t(o).contest.getStartTime().format("z")),1)]),e("div",Ol,[k(ot,{state:t(yt),"pending-time":t(o).contest.getContestPendingTime(t(n)),"paused-time":t(xt)},null,8,["state","pending-time","paused-time"])]),e("div",zl,[q(v(t(R)),1),e("sup",Fl,v(t(o).contest.endTime.format("z")),1)])]),e("div",Bl,[k(se,{"rank-options":t(i),"onUpdate:rankOptions":z[0]||(z[0]=Q=>j(i)?i.value=Q:null),width:t(o).contest.getContestProgressRatio(t(n)),state:t(o).contest.getContestState(t(n)),"need-scroll":!0,rank:t(o),"elapsed-time":t(o).contest.getContestElapsedTime(t(n))},null,8,["rank-options","width","state","rank","elapsed-time"])]),e("div",Pl,[e("div",Al,v(t(lt)),1),e("div",Dl,[k(oe)]),e("div",Ll,v(t(bt)),1)]),e("div",Nl,[e("div",El,[k(Ot,{"current-item":t(y),"onUpdate:currentItem":z[1]||(z[1]=Q=>j(y)?y.value=Q:null),items:t(F),"query-param-name":"group","on-change":$},null,8,["current-item","items"])]),Hl,e("div",Rl,[k(Ot,{"current-item":t(M),"onUpdate:currentItem":z[2]||(z[2]=Q=>j(M)?M.value=Q:null),items:t(tt),"reverse-order":!0,"query-param-name":"type","on-change":dt},null,8,["current-item","items"])])])])],2),e("div",{"mt-4":"",class:D([kt]),flex:"","justify-center":""},[e("div",Ul,[t(M)==="rank"?(a(),d("div",jl,[k(ae,{rank:t(o)},null,8,["rank"])])):b("",!0),t(M)==="submissions"?(a(),d("div",Gl,[k(le,{"w-full":"",rank:t(o),submissions:t(o).getSubmissions(),"enable-filter":{organization:!0,team:!0,language:!0,status:!0}},null,8,["rank","submissions"])])):b("",!0),t(M)==="statistics"?(a(),d("div",Vl,[k(re,{rank:t(o)},null,8,["rank"])])):b("",!0),t(M)==="export"?(a(),d("div",Xl,[k(ie,{rank:t(o)},null,8,["rank"])])):b("",!0),t(M)==="utility"?(a(),d("div",Wl,[k(ce,{rank:t(o)},null,8,["rank"])])):b("",!0)])],2),t(i).enableAnimatedSubmissions?(a(),d("div",Yl,[k(ue,{rank:t(o)},null,8,["rank"])])):b("",!0),t(X)?b("",!0):(a(),V(de,{key:3,"is-hidden":t(X),"onUpdate:isHidden":z[3]||(z[3]=Q=>j(X)?X.value=Q:null),"rank-options":t(i),"onUpdate:rankOptions":z[4]||(z[4]=Q=>j(i)?i.value=Q:null),rank:t(o)},null,8,["is-hidden","rank-options","rank"]))],2)):b("",!0)])}}});const tr=Y(ql,[["__scopeId","data-v-52fb84f5"]]);export{tr as _};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{_ as p}from"./TheInput.vue_vue_type_script_setup_true_lang-0b1911d1.js";import{g as _,n as f,i as h,P as g,M as b,j as o,o as v,c as S,d as t,b as x,N as y,O as U,t as l,k as V}from"./index-fe0ee4c1.js";import{g as k}from"./query-b44be24d.js";const w={key:0,class:"flex flex-col items-center"},D={"w-128":""},I=t("div",{"py-2":""},null,-1),N=["disabled"],r="Data Source URL",P=_({__name:"DataSourceInput",setup(R){const{t:u}=f(),a=k(),e=h(a.value),c=g(),d=b();function s(){d.push(`${c.fullPath}/?data-source=${e.value.trim()}`)}return(B,n)=>{const i=p;return o(a).length===0?(v(),S("div",w,[t("div",D,[x(i,{modelValue:o(e),"onUpdate:modelValue":n[0]||(n[0]=m=>y(e)?e.value=m:null),"w-full":"",placeholder:r,autocomplete:"false",onKeydown:U(s,["enter"])},null,8,["modelValue","onKeydown"]),t("label",{class:"hidden",for:"input"},l(r))]),I,t("div",null,[t("button",{"m-3":"","text-sm":"",btn:"",disabled:o(e).length===0,onClick:s},l(o(u)("button.go")),9,N)])])):V("",!0)}}});export{P as _};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import{h as j,_ as M,P as A,g as D,a as O}from"./pagination-1c199e71.js";import{g as R,h,o as p,c as f,b as _,w as k,d as e,t as x,j as n,aU as I,aV as F,D as L,l as N,v as C,N as z,i as y,k as T,A as P,T as E,F as V,s as G,n as W,p as B,R as H,q as Y,aW as q,x as J,P as X}from"./index-fe0ee4c1.js";const K={"text-md":""},Q=R({__name:"RatingBadge",props:{rating:null},setup(c){const i=c,t=h(()=>i.rating);return(d,r)=>{const a=N;return p(),f("div",null,[_(a,null,{popper:k(()=>[e("div",K,x(n(I)[n(F).getRatingLevel(n(t))]),1)]),default:k(()=>[e("div",{"font-mono":"","font-bold":"",class:L(n(F).getRatingLevelClass(n(t)))},x(n(t)),3)]),_:1})])}}});function Z(c,i){const t=i-c;return i>c?`+${t.toString()}`:t.toString()}function ee(c){const i=[];{let r=0;for(const a of c.ratingHistories){const o={};o.x=a.contestTime.unix()*1e3,o.y=a.rating,o.diffRating=Z(r,a.rating),o.rank=a.rank,o.contestName=a.contestName,o.link=`/board/${a.contestID}`,o.contestTime=a.contestTime.format("YYYY-MM-DD HH:mm:ss"),o.teamName=a.teamName,o.ratingTitle=I[F.getRatingLevel(a.rating)],i.push(o),r=a.rating}}let t=[1200,1400,1600,1900,2100,2300,2400,2600,3e3];{let a=Math.max(0,c.minRating-100),o=c.maxRating+100;for(let s=0;s<t.length;++s)if(t[s]>o){o=t[s];break}for(let s=t.length-1;s>=0;--s)if(t[s]<a){a=t[s];break}a<1200&&(t=[a,...t]),o>3e3&&t.push(o),t=t.filter(s=>s>=a&&s<=o)}return{chart:{type:"line",height:"408px"},title:{text:null},xAxis:{tickWidth:0,gridLineWidth:.4,minRange:30*24*60*60*1e3,type:"datetime",showFirstLabel:!0,showLastLabel:!0,dateTimeLabelFormats:{month:"%b %Y"}},yAxis:{showEmpty:!1,showFirstLabel:!1,showLastLabel:!1,tickPositions:t,tickWidth:0,gridLineWidth:.6,labels:{enabled:!0,format:"{value}"},title:{text:null},plotBands:[{from:0,to:1199,color:"#CCCCCC"},{from:1200,to:1399,color:"#98FA87"},{from:1400,to:1599,color:"#90DABD"},{from:1600,to:1899,color:"#A9ACF9"},{from:1900,to:2099,color:"#EF91F9"},{from:2100,to:2299,color:"#F7CD91"},{from:2300,to:2399,color:"#F5BD67"},{from:2400,to:2599,color:"#Ef7F7B"},{from:2600,to:2999,color:"#EB483F"},{from:3e3,to:1061109567,color:"#9C1E14"}]},credits:{enabled:!1},plotOptions:{line:{color:"#ffec3d",dataLabels:{enabled:!1},enableMouseTracking:!0,marker:{enabled:!0,fillColor:"#fffb8f"}}},tooltip:{enabled:!0,headerFormat:"",useHTML:!0,shared:!0,shadow:!0,followPointer:!1,followTouchMove:!1,pointFormat:`= {point.y} ({point.diffRating}), {point.ratingTitle}
|
|
2
|
-
<br/>Rank: {point.rank}
|
|
3
|
-
<br/>TeamName: {point.teamName}
|
|
4
|
-
<br/>ContestTime: {point.contestTime}
|
|
5
|
-
<br/><a href="{point.link}">{point.contestName}</a>
|
|
6
|
-
<br/>`},series:[{showInLegend:!1,allowPointSelect:!0,data:i}]}}const te={"w-full":"","max-w-screen-xl":"","mx-auto":"","px-4":"","lg:px-8":""},ne={relative:"","overflow-hidden":"","bg-white":"","dark:bg-gray-800":""},oe={flex:"","flex-col":"","items-center":"","justify-between":"","md:flex-row":"","space-y-3":"","md:space-y-0":""},ae={flex:"","flex-row":"","space-x-3":""},se={"text-gray-900":"","dark:text-white":"","text-2xl":"","font-sans":"","font-semibold":"",italic:""},re={flex:"","flex-col":"","justify-start":"","items-start":""},ie={"w-full":"","font-bold":"","font-mono":"",flex:"","items-center":"","justify-center":""},le={"w-full":""},ce=R({__name:"RatingInfoModal",props:{isHidden:{type:Boolean},ratingUser:null},emits:["update:isHidden"],setup(c,{emit:i}){const t=c,d=h({get(){return t.isHidden},set(o){i("update:isHidden",o)}}),r=h(()=>t.ratingUser),a=h(()=>{let o="";return r.value.organization.length>0&&(o+=`${r.value.organization} - `),o+=`${r.value.name}`,r.value.members.length>0&&(o+=` - ${r.value.members.map(s=>s.name).join(",")}`),r.value.coaches.length>0&&(o+=` - ${r.value.coaches.map(s=>s.name).join(",")}(coach)`),o});return(o,s)=>{const g=N,v=M;return p(),C(v,{isHidden:n(d),"onUpdate:isHidden":s[0]||(s[0]=l=>z(d)?d.value=l:null),width:"w-278"},{header:k(()=>[e("div",te,[e("div",ne,[e("div",oe,[e("div",ae,[_(g,null,{popper:k(()=>[e("div",re,[e("div",null," TeamID: "+x(n(r).id),1)])]),default:k(()=>[e("h3",se,x(n(a)),1)]),_:1})])])])])]),default:k(()=>[e("div",ie,[e("div",le,[_(n(j.Chart),{options:("getRatingGraphOptions"in o?o.getRatingGraphOptions:n(ee))(n(r))},null,8,["options"])])])]),_:1},8,["isHidden"])}}}),de={class:"border-b dark:border-gray-600 hover:bg-gray-100 dark:hover:bg-gray-700"},ue={class:"whitespace-nowrap px-4 py-2 text-gray-900 dark:text-white"},ge={class:"whitespace-nowrap px-4 py-2 text-gray-900 dark:text-white"},pe={class:"whitespace-nowrap px-4 py-2 text-gray-900 dark:text-white"},me={class:"whitespace-nowrap px-4 py-2 text-gray-900 dark:text-white"},fe={class:"whitespace-nowrap px-4 py-2 text-gray-900 dark:text-white"},he=R({__name:"RatingUserUI",props:{ix:null,ratingUser:null},setup(c){const i=c,t=h(()=>i.ratingUser),d=y(!0);function r(){d.value=!1}return(a,o)=>{const s=ce,g=Q;return p(),f("tr",de,[e("td",ue,x(n(t).organization),1),e("td",null,[e("div",{class:L(["whitespace-nowrap px-4 py-2 text-gray-900 dark:text-white",n(F).getRatingLevelClass(n(t).rating)]),"cursor-pointer":"",onClick:r},x(n(t).name),3),e("div",null,[n(d)?T("",!0):(p(),C(s,{key:0,isHidden:n(d),"onUpdate:isHidden":o[0]||(o[0]=v=>z(d)?d.value=v:null),"rating-user":n(t)},null,8,["isHidden","rating-user"]))])]),e("td",ge,x(n(t).members.map(v=>v.name.trim()).join(" ")),1),e("td",pe,[_(g,{rating:n(t).rating},null,8,["rating"])]),e("td",me,[_(g,{rating:n(t).maxRating},null,8,["rating"])]),e("td",fe,[_(g,{rating:n(t).minRating},null,8,["rating"])])])}}}),_e={"mx-auto":"","w-full":""},xe={"space-y-3":"",flex:"","flex-col":"","px-4":"","py-3":"","lg:flex-row":"","lg:items-center":"","lg:justify-between":"","lg:space-x-4":"","lg:space-y-0":""},ve={flex:"","flex-shrink-0":"","flex-col":"","md:flex-row":"","md:items-center":"","lg:justify-end":"","space-y-3":"","md:space-x-3":"","md:space-y-0":""},ye={"w-108":""},be=e("div",{"i-material-symbols-search":"","mr-1":"","h-5":"","w-5":""},null,-1),we={class:"overflow-x-auto"},ke={class:"w-full text-left text-sm text-gray-500 dark:text-gray-400","font-medium":"","font-mono":""},Re=e("thead",{"text-xs":"","bg-gray-50":"","text-gray-700":"","dark:bg-gray-700":"","dark:text-gray-400":""},[e("tr",null,[e("th",{scope:"col",class:"px-4 py-3","w-68":""}," Organization "),e("th",{scope:"col",class:"px-4 py-3","w-128":""}," TeamName "),e("th",{scope:"col",class:"px-4 py-3","w-68":""}," Members "),e("th",{scope:"col",class:"px-4 py-3"}," Rating "),e("th",{scope:"col",class:"px-4 py-3"}," MaxRating "),e("th",{scope:"col",class:"px-4 py-3"}," MinRating ")])],-1),$e=R({__name:"RatingTable",props:{rating:null,pageSize:null,removeBorder:{type:Boolean}},setup(c){const i=c,t=h(()=>i.rating),d=y({organizations:[],members:[]}),r=h(()=>{let m=t.value.users.map(u=>u.organization);return m=Array.from(new Set(m)),m.map(u=>({value:u,text:u}))}),a=y([]),o=y({});function s(m,u){a.value=m,o.value=u}const g=h(()=>t.value.users.filter(u=>{const b=d.value;if(b.organizations.length===0&&b.members.length===0)return!0;for(const $ of b.organizations)if($===u.organization)return!0;for(const $ of b.members)for(const w of u.members)if($===w.name)return!0;return!1}));function v(){const m={organizations:[],members:[]};m.organizations=a.value.map(u=>u.value),d.value=m}const l=y(new A);l.value.currentPage=0,l.value.pageSize=i.pageSize??20,l.value.totalSize=g.value.length,P(g,()=>{l.value.totalSize=g.value.length,l.value.currentPage>=l.value.totalPage&&(l.value.currentPage=l.value.totalPage-1)});const S=h(()=>g.value.slice(l.value.currentLeft,l.value.currentRight));return(m,u)=>{const b=he,$=O;return p(),f("section",null,[e("div",_e,[e("div",{relative:"","overflow-hidden":"","bg-white":"","dark:bg-gray-800":"",class:L({"shadow-md":i.removeBorder!==!0,"sm:rounded-sm":i.removeBorder!==!0})},[e("div",xe,[e("div",ve,[e("div",ye,[_(n(D),{options:n(r),"selected-options":n(a),placeholder:"Organization",onSelect:s},null,8,["options","selected-options"])]),e("div",null,[e("button",{type:"button",class:"flex flex-shrink-0 items-center justify-center border border-gray-200 rounded-lg bg-white px-3 py-2 text-sm font-medium text-gray-900 focus:z-10 dark:border-gray-600 dark:bg-gray-800 hover:bg-gray-100 dark:text-gray-400 hover:text-primary-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:hover:bg-gray-700 dark:hover:text-white dark:focus:ring-gray-700",onClick:v},[be,E(" Filter ")])])])]),e("div",we,[e("table",ke,[Re,e("tbody",null,[(p(!0),f(V,null,G(n(S),(w,U)=>(p(),C(b,{key:w.id,ix:U,"rating-user":w},null,8,["ix","rating-user"]))),128))])])]),_($,{pagination:n(l),"onUpdate:pagination":u[0]||(u[0]=w=>z(l)?l.value=w:null)},null,8,["pagination"])],2)])])}}}),Te={class:"sm:w-[1024px] lg:w-screen","lg:of-x-hidden":"",flex:"","flex-col":"","justify-center":"","items-center":""},Fe={key:0,"mt-4":"","mb-4":"",class:"sm:w-[1000px] lg:w-screen",flex:"","justify-center":"","items-center":""},Le={key:0},Ce={key:1},ze={key:1,flex:"","flex-col":"","justify-center":"","items-center":""},Se={"text-4xl":"","font-medium":"","font-serif":""},Be={"mt-4":""},He=R({__name:"Rating",props:{id:null},setup(c){const i=c,t=h(()=>i.id);function d(){return`${J.value}${t.value}/rating.json`}const r=y(d()),a=y({}),{t:o}=W();B(H);const{error:s,isFetching:g,isFinished:v}=Y(r,{refetch:!0,afterFetch:l=>(a.value=q.fromJSON(l.data),B(`${a.value.name} | ${H}`),l)}).get();return(l,S)=>{const m=$e;return p(),f("div",Te,[e("div",null,[n(g)||n(s)?(p(),f("div",Fe,[n(g)?(p(),f("div",Le,x(n(o)("common.loading"))+"... ",1)):T("",!0),n(s)?(p(),f("div",Ce,x(n(s)),1)):T("",!0)])):T("",!0),n(v)?(p(),f("div",ze,[e("div",Se,x(n(a).name),1),e("div",Be,[_(m,{rating:n(a),"remove-border":!0},null,8,["rating"])])])):T("",!0)])])}}}),Ue=R({__name:"[...all]",setup(c){const t=X().path.split("/").pop();return(d,r)=>{const a=He;return p(),f("div",null,[_(a,{id:n(t)},null,8,["id"])])}}});export{Ue as default};
|