@lf_maple/koishi-plugin-phi-plugin-full 0.1.80
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/LICENSE +22 -0
- package/core/.github/ISSUE_TEMPLATE/bug.yaml +133 -0
- package/core/.github/ISSUE_TEMPLATE/config.yml +1 -0
- package/core/.github/ISSUE_TEMPLATE/enhancement.yml +44 -0
- package/core/.vscode/c_cpp_properties.json +18 -0
- package/core/.vscode/launch.json +24 -0
- package/core/.vscode/settings.json +59 -0
- package/core/CHANGELOG.md +184 -0
- package/core/LICENSE +674 -0
- package/core/README.md +330 -0
- package/core/README_en.md +285 -0
- package/core/apps/Dan.js +129 -0
- package/core/apps/RankList.js +322 -0
- package/core/apps/aliasProposal.js +223 -0
- package/core/apps/apiSetting.js +592 -0
- package/core/apps/b19.js +1329 -0
- package/core/apps/botClient.js +64 -0
- package/core/apps/chart.js +692 -0
- package/core/apps/guessGame/guessIll.js +821 -0
- package/core/apps/guessGame/guessLetter.js +831 -0
- package/core/apps/guessGame/guessTips.js +254 -0
- package/core/apps/guessGame/letterGameUtils.js +74 -0
- package/core/apps/guessGame.js +214 -0
- package/core/apps/help.js +117 -0
- package/core/apps/manage.js +288 -0
- package/core/apps/market.js +243 -0
- package/core/apps/money.js +1064 -0
- package/core/apps/phisong.js +1418 -0
- package/core/apps/session.js +664 -0
- package/core/apps/setting.js +468 -0
- package/core/apps/update.js +541 -0
- package/core/apps/user.js +968 -0
- package/core/components/Config.js +249 -0
- package/core/components/Data.js +304 -0
- package/core/components/FileWatcherRegistry.js +102 -0
- package/core/components/Logger.js +11 -0
- package/core/components/ProcessCleanup.js +113 -0
- package/core/components/Version.js +56 -0
- package/core/components/YamlReader.js +157 -0
- package/core/components/baseClass.js +287 -0
- package/core/components/common.js +47 -0
- package/core/components/index.js +13 -0
- package/core/components/platform/index.js +79 -0
- package/core/components/platform/koishi.js +800 -0
- package/core/components/platform/koishiDatabaseRedis.js +391 -0
- package/core/components/platform/memoryRedis.js +209 -0
- package/core/components/platform/types.d.ts +272 -0
- package/core/components/platform/yunzai.js +604 -0
- package/core/components/segment.js +4 -0
- package/core/config/config//350/277/231/351/207/214/346/230/257/351/205/215/347/275/256/346/226/207/344/273/266/347/233/256/345/275/225.txt +0 -0
- package/core/config/default_config/banGroup.yaml +14 -0
- package/core/config/default_config/config.yaml +159 -0
- package/core/config/default_config/nickconfig.yaml +6 -0
- package/core/config/default_config/otherinfo.yaml +51 -0
- package/core/guoba.support.js +597 -0
- package/core/index.js +85 -0
- package/core/lib/AES.js +40 -0
- package/core/lib/Base64.js +22 -0
- package/core/lib/ByteReader.js +168 -0
- package/core/lib/GameProgress.js +37 -0
- package/core/lib/GameRecord.js +47 -0
- package/core/lib/GameSettings.js +24 -0
- package/core/lib/GameUser.js +19 -0
- package/core/lib/Level.js +6 -0
- package/core/lib/LevelRecord.js +9 -0
- package/core/lib/PhigrosUser.js +135 -0
- package/core/lib/SaveManager.js +117 -0
- package/core/lib/Summary.js +47 -0
- package/core/lib/TapTap/CompleteQRCodeData.js +27 -0
- package/core/lib/TapTap/LCHelper.js +81 -0
- package/core/lib/TapTap/TapTapHelper.js +170 -0
- package/core/lib/TapTap/getQRcode.js +61 -0
- package/core/lib/Util.js +30 -0
- package/core/lib/getQRcode.js +73 -0
- package/core/lib/http.js +105 -0
- package/core/model/README.md +3 -0
- package/core/model/api/aliasProposalService.js +151 -0
- package/core/model/api/apiVersion.js +67 -0
- package/core/model/api/autoSeekApi.js +165 -0
- package/core/model/api/botApiAuth.js +208 -0
- package/core/model/api/botSyncService.js +78 -0
- package/core/model/api/gameRecordPayload.js +24 -0
- package/core/model/api/makeRequest.js +1004 -0
- package/core/model/api/makeRequestFnc.js +17 -0
- package/core/model/api/phiApiClient.js +53 -0
- package/core/model/api/phiApiErrors.js +121 -0
- package/core/model/filesystem/getFile.js +256 -0
- package/core/model/filesystem/path.js +84 -0
- package/core/model/game/Chart.js +57 -0
- package/core/model/game/LevelRecordInfo.js +109 -0
- package/core/model/game/SongsInfo.js +46 -0
- package/core/model/game/b30Analysis.js +93 -0
- package/core/model/game/chartParser/Chart.js +23 -0
- package/core/model/game/chartParser/JudgeLine.js +38 -0
- package/core/model/game/chartParser/base/JudgeLineEvent.js +99 -0
- package/core/model/game/chartParser/base/Note.js +44 -0
- package/core/model/game/chartParser/base/SpeedEvent.js +25 -0
- package/core/model/game/chartParser/base/baseType.js +2 -0
- package/core/model/game/constNum.js +215 -0
- package/core/model/game/fCompute.js +711 -0
- package/core/model/game/getChartTag.js +140 -0
- package/core/model/game/getComment.js +132 -0
- package/core/model/game/getInfo.js +1069 -0
- package/core/model/game/getRksRank.js +77 -0
- package/core/model/game/markdown.js +77 -0
- package/core/model/integrations/Vika.js +103 -0
- package/core/model/integrations/getInfoFromTap.js +80 -0
- package/core/model/render/getPic.js +79 -0
- package/core/model/render/picmodle.js +496 -0
- package/core/model/render/progress-bar.js +44 -0
- package/core/model/render/puppeteer.js +431 -0
- package/core/model/render/renderPressureHistory.js +71 -0
- package/core/model/render/send.js +94 -0
- package/core/model/save/Save.js +953 -0
- package/core/model/save/analyzeSaveHistory.js +413 -0
- package/core/model/save/getBackup.js +328 -0
- package/core/model/save/getSave.js +90 -0
- package/core/model/save/getSaveFromApi.js +46 -0
- package/core/model/save/saveHistory.js +586 -0
- package/core/model/save/scoreHistory.js +101 -0
- package/core/model/theme/catalog.js +192 -0
- package/core/model/theme/installGuard.js +275 -0
- package/core/model/theme/installLock.js +174 -0
- package/core/model/theme/installer.js +398 -0
- package/core/model/theme/manager.js +408 -0
- package/core/model/theme/marketClient.js +294 -0
- package/core/model/theme/paths.js +42 -0
- package/core/model/theme/policy.js +54 -0
- package/core/model/theme/recovery.js +167 -0
- package/core/model/theme/useService.js +187 -0
- package/core/model/type/aliasProposal.d.ts +45 -0
- package/core/model/type/type.js +420 -0
- package/core/model/user/apiPermission.js +62 -0
- package/core/model/user/getBanGroup.js +120 -0
- package/core/model/user/getNotes.js +48 -0
- package/core/model/user/pluginData.js +101 -0
- package/core/model/user/userCredentialStore.js +154 -0
- package/core/model/user/userCredentials.js +860 -0
- package/core/package.json +60 -0
- package/core/resources/0608badSave/save.json +1 -0
- package/core/resources/LICENSE +201 -0
- package/core/resources/html/analyzeSaveHistory/analyzeSaveHistory.art +220 -0
- package/core/resources/html/analyzeSaveHistory/analyzeSaveHistory.css +345 -0
- package/core/resources/html/analyzeSaveHistory/analyzeSaveHistory.html +434 -0
- package/core/resources/html/arcgrosB19/arcgros.png +0 -0
- package/core/resources/html/arcgrosB19/arcgrosB19-orz.html +276 -0
- package/core/resources/html/arcgrosB19/arcgrosB19.art +168 -0
- package/core/resources/html/arcgrosB19/arcgrosB19.css +637 -0
- package/core/resources/html/atlas/atlas-orz.html +313 -0
- package/core/resources/html/atlas/atlas.art +194 -0
- package/core/resources/html/atlas/atlas.css +695 -0
- package/core/resources/html/avatar/-SURREALISM-.png +0 -0
- package/core/resources/html/avatar/Alkaid.png +0 -0
- package/core/resources/html/avatar/Aphasia.png +0 -0
- package/core/resources/html/avatar/Artificial Existence.png +0 -0
- package/core/resources/html/avatar/Bonus Time.png +0 -0
- package/core/resources/html/avatar/Burn.png +0 -0
- package/core/resources/html/avatar/Cereris1.png +0 -0
- package/core/resources/html/avatar/Cereris2.png +0 -0
- package/core/resources/html/avatar/Cereris3.png +0 -0
- package/core/resources/html/avatar/Christmas -2019.png +0 -0
- package/core/resources/html/avatar/Cipher1.png +0 -0
- package/core/resources/html/avatar/Class Memories.png +0 -0
- package/core/resources/html/avatar/Credits.png +0 -0
- package/core/resources/html/avatar/Dash.png +0 -0
- package/core/resources/html/avatar/Dlyrotz.png +0 -0
- package/core/resources/html/avatar/Doppelganger1.png +0 -0
- package/core/resources/html/avatar/Doppelganger2.png +0 -0
- package/core/resources/html/avatar/Drop it.png +0 -0
- package/core/resources/html/avatar/Energy Synergy Matrix1.png +0 -0
- package/core/resources/html/avatar/Energy Synergy Matrix2.png +0 -0
- package/core/resources/html/avatar/Energy Synergy Matrix3.png +0 -0
- package/core/resources/html/avatar/Engine x Start!! (melody mix).png +0 -0
- package/core/resources/html/avatar/Engine x Start!! extra 1 -by cycats.png +0 -0
- package/core/resources/html/avatar/Eradication Catastrophe.png +0 -0
- package/core/resources/html/avatar/FULi AUTO SHOOTER extra 1 -by cycats.png +0 -0
- package/core/resources/html/avatar/FULi AUTO SHOOTER.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/264-Special1.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/264-Special2.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2641.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2642.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2643.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2644.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2645.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2646.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2647.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2648.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2649.png +0 -0
- package/core/resources/html/avatar/Find_Me.png +0 -0
- package/core/resources/html/avatar/Geopelia 1 -by cycats.png +0 -0
- package/core/resources/html/avatar/Geopelia 2 -by cycats.png +0 -0
- package/core/resources/html/avatar/Geopelia 3 -by /344/275/225/345/221/265.png +0 -0
- package/core/resources/html/avatar/Geopelia in WEPLAY -by /346/265/267/344/272/247.png +0 -0
- package/core/resources/html/avatar/Gino-AprilFool.png +0 -0
- package/core/resources/html/avatar/Glaciaxion.png +0 -0
- package/core/resources/html/avatar/HumaN.png +0 -0
- package/core/resources/html/avatar/Indelible Scar.png +0 -0
- package/core/resources/html/avatar/Introduction.png +0 -0
- package/core/resources/html/avatar/Khronostasis Katharsis.png +0 -0
- package/core/resources/html/avatar/MARENOL.png +0 -0
- package/core/resources/html/avatar/Marenol extra 1 -by /345/226/265n/350/221/265.png +0 -0
- package/core/resources/html/avatar/Non-Melodic Ragez (MUG Edit).png +0 -0
- package/core/resources/html/avatar/Non-Melodic Ragez extra 1 -by cycats.png +0 -0
- package/core/resources/html/avatar/Oblivion +0 -0
- package/core/resources/html/avatar/OblivionPHIN.png +0 -0
- package/core/resources/html/avatar/Para.png +0 -0
- package/core/resources/html/avatar/Pixel Rebelz1.png +0 -0
- package/core/resources/html/avatar/Pixel Rebelz2.png +0 -0
- package/core/resources/html/avatar/Pixel Rebelz3.png +0 -0
- package/core/resources/html/avatar/RIPPER extra 1 -by cycats.png +0 -0
- package/core/resources/html/avatar/RIPPER extra 2 -by /344/275/225/345/221/265.png +0 -0
- package/core/resources/html/avatar/Sein.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-Special.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-Special2.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-/346/231/256/351/200/232.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-/346/233/262/347/273/230Ver.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/351/270/240-Special.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/351/270/240-/346/231/256/351/200/232.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/351/270/240-/346/233/262/347/273/230Ver.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/351/270/240/345/222/214/346/260/264/351/235/222-Special.png +0 -0
- package/core/resources/html/avatar/Snow Desert.png +0 -0
- package/core/resources/html/avatar/Sparkle New Life.png +0 -0
- package/core/resources/html/avatar/Sultan Rage.png +0 -0
- package/core/resources/html/avatar/Winter /342/206/221cube/342/206/223.png +0 -0
- package/core/resources/html/avatar/Xenolith.png +0 -0
- package/core/resources/html/avatar/[PRAW].png +0 -0
- package/core/resources/html/avatar/dB doll.png +0 -0
- package/core/resources/html/avatar/ripper.png +0 -0
- package/core/resources/html/avatar//343/202/202/343/201/272/343/202/202/343/201/2721.png +0 -0
- package/core/resources/html/avatar//343/202/202/343/201/272/343/202/202/343/201/2722.png +0 -0
- package/core/resources/html/avatar//344/270/207/345/220/250/345/214/277/345/220/215/344/277/241.png +0 -0
- package/core/resources/html/avatar//344/272/221/345/245/263/345/255/251 extra 1 -by /345/276/241/345/235/202/346/236/234/345/255/220.png +0 -0
- package/core/resources/html/avatar//344/272/221/345/245/263/345/255/251.png +0 -0
- package/core/resources/html/avatar//345/205/211.png +0 -0
- package/core/resources/html/avatar//345/274/200/345/277/203/347/227/2051.png +0 -0
- package/core/resources/html/avatar//345/274/200/345/277/203/347/227/2052.png +0 -0
- package/core/resources/html/avatar//346/260/264/351/235/222-/344/270/200/345/221/250/345/271/264/347/233/270/350/201/232.png +0 -0
- package/core/resources/html/avatar//346/267/267/344/271/261-Confusion.png +0 -0
- package/core/resources/html/avatar//347/213/202/345/226/234/350/230/255/350/210/2361.png +0 -0
- package/core/resources/html/avatar//347/213/202/345/226/234/350/230/255/350/210/2362.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/201-Special.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/2011.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/2012.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/2013.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/2014.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/2015.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/2016.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/2017.png +0 -0
- package/core/resources/html/avatar//347/233/217/350/214/227-Special.png +0 -0
- package/core/resources/html/avatar//347/233/217/350/214/2271.png +0 -0
- package/core/resources/html/avatar//347/233/217/350/214/2272.png +0 -0
- package/core/resources/html/avatar//347/233/217/350/214/2273.png +0 -0
- package/core/resources/html/avatar//350/217/257/347/201/257/347/210/2611.png +0 -0
- package/core/resources/html/avatar//350/217/257/347/201/257/347/210/2612.png +0 -0
- package/core/resources/html/avatar//350/220/244/347/201/253/350/231/253/343/201/256/346/200/2501.png +0 -0
- package/core/resources/html/avatar//350/220/244/347/201/253/350/231/253/343/201/256/346/200/2502.png +0 -0
- package/core/resources/html/avatar//351/235/222/350/212/275-Special.png +0 -0
- package/core/resources/html/avatar//351/235/222/350/212/275.png +0 -0
- package/core/resources/html/avatar//351/243/216/345/261/277.png +0 -0
- package/core/resources/html/avatar//351/270/240-AprilFool.png +0 -0
- package/core/resources/html/avatar//351/270/240-/344/270/200/345/221/250/345/271/264/347/233/270/350/201/232.png +0 -0
- package/core/resources/html/b19/b19.art +490 -0
- package/core/resources/html/b19/b19.css +1261 -0
- package/core/resources/html/b19/b19666.art +350 -0
- package/core/resources/html/b19/b19666.css +1409 -0
- package/core/resources/html/b19/b19666.html +481 -0
- package/core/resources/html/b19/b19title.css +120 -0
- package/core/resources/html/b19/best19.html +853 -0
- package/core/resources/html/b19/dss2-orz.html +428 -0
- package/core/resources/html/b19/dss2.art +298 -0
- package/core/resources/html/b19/dss2.css +776 -0
- package/core/resources/html/b19/res/666.jpeg +0 -0
- package/core/resources/html/chap/chap-orz.html +93 -0
- package/core/resources/html/chap/chap.art +87 -0
- package/core/resources/html/chap/chap.css +365 -0
- package/core/resources/html/chartImg/chartImg.art +169 -0
- package/core/resources/html/chartImg/chartImg.css +439 -0
- package/core/resources/html/chartImg/echarts-wordcloud.min.js +3 -0
- package/core/resources/html/chartImg/echarts.js +85796 -0
- package/core/resources/html/chartImg/img/Drag.png +0 -0
- package/core/resources/html/chartImg/img/DragHL.png +0 -0
- package/core/resources/html/chartImg/img/Flick.png +0 -0
- package/core/resources/html/chartImg/img/FlickHL.png +0 -0
- package/core/resources/html/chartImg/img/Hold.png +0 -0
- package/core/resources/html/chartImg/img/HoldHL.png +0 -0
- package/core/resources/html/chartImg/img/Hold_End.png +0 -0
- package/core/resources/html/chartImg/img/Hold_Head.png +0 -0
- package/core/resources/html/chartImg/img/Hold_HeadHL.png +0 -0
- package/core/resources/html/chartImg/img/Tap.png +0 -0
- package/core/resources/html/chartImg/img/TapHL.png +0 -0
- package/core/resources/html/chartInfo/chartInfo-orz.html +250 -0
- package/core/resources/html/chartInfo/chartInfo.art +222 -0
- package/core/resources/html/chartInfo/chartInfo.css +265 -0
- package/core/resources/html/chartInfo/echarts-wordcloud.min.js +3 -0
- package/core/resources/html/chartInfo/echarts.js +85796 -0
- package/core/resources/html/clg/clg-orz.html +218 -0
- package/core/resources/html/clg/clg.art +88 -0
- package/core/resources/html/clg/clg.css +230 -0
- package/core/resources/html/clg/demo.jpg +0 -0
- package/core/resources/html/common/common.css +319 -0
- package/core/resources/html/common/css/playerInfo.css +136 -0
- package/core/resources/html/common/font/Aldrich-Regular.ttf +0 -0
- package/core/resources/html/common/font/HIMALAYA.TTF +0 -0
- package/core/resources/html/common/font/NotoColorEmoji-Regular.ttf +0 -0
- package/core/resources/html/common/font/NotoSans-Regular.ttf +0 -0
- package/core/resources/html/common/font/NotoSansArabic.ttf +0 -0
- package/core/resources/html/common/font/NotoSansCanadianAboriginal.ttf +0 -0
- package/core/resources/html/common/font/NotoSansJP.ttf +0 -0
- package/core/resources/html/common/font/NotoSansKannada.ttf +0 -0
- package/core/resources/html/common/font/NotoSansMath-Regular.ttf +0 -0
- package/core/resources/html/common/font/NotoSansSymbols2.ttf +0 -0
- package/core/resources/html/common/font/phi.ttf +0 -0
- package/core/resources/html/common/font//345/220/236/345/274/245/346/201/260/344/277/212.ttf +0 -0
- package/core/resources/html/common/layout/default.art +324 -0
- package/core/resources/html/common/layout/elem.art +21 -0
- package/core/resources/html/common/theme/snow/snow.css +17 -0
- package/core/resources/html/common/theme/snow/snow.js +19 -0
- package/core/resources/html/common/theme/star/star.js +201 -0
- package/core/resources/html/common/theme/topText/topText.css +15 -0
- package/core/resources/html/common/theme/topText/topText.js +30 -0
- package/core/resources/html/difficultyHistory/difficultyHistory-orz.html +361 -0
- package/core/resources/html/difficultyHistory/difficultyHistory.art +102 -0
- package/core/resources/html/difficultyHistory/difficultyHistory.css +205 -0
- package/core/resources/html/guess/guess-orz.html +50 -0
- package/core/resources/html/guess/guess.art +51 -0
- package/core/resources/html/guess/guess.css +33 -0
- package/core/resources/html/help/help-orz.html +73 -0
- package/core/resources/html/help/help.art +84 -0
- package/core/resources/html/help/help.css +266 -0
- package/core/resources/html/historyB30/historyB30-orz.html +168 -0
- package/core/resources/html/historyB30/historyB30.art +143 -0
- package/core/resources/html/historyB30/historyB30.css +270 -0
- package/core/resources/html/ill/ill-orz.html +21 -0
- package/core/resources/html/ill/ill.art +23 -0
- package/core/resources/html/ill/ill.css +79 -0
- package/core/resources/html/jrrp/ShineAfter.removebg.png +0 -0
- package/core/resources/html/jrrp/jrrp-orz.html +68 -0
- package/core/resources/html/jrrp/jrrp.art +58 -0
- package/core/resources/html/jrrp/jrrp.css +251 -0
- package/core/resources/html/list/list-orz.html +35 -0
- package/core/resources/html/list/list.art +67 -0
- package/core/resources/html/list/list.css +259 -0
- package/core/resources/html/lvsco/demo.jpg +0 -0
- package/core/resources/html/lvsco/lvsco-orz.html +334 -0
- package/core/resources/html/lvsco/lvsco.art +314 -0
- package/core/resources/html/lvsco/lvsco.css +706 -0
- package/core/resources/html/market/detail.art +44 -0
- package/core/resources/html/market/market.art +86 -0
- package/core/resources/html/market/market.css +64 -0
- package/core/resources/html/newSong/newSong.art +34 -0
- package/core/resources/html/newSong/newSong.css +48 -0
- package/core/resources/html/newSong/newSong.html +23 -0
- package/core/resources/html/newnotice/newnotice.art +47 -0
- package/core/resources/html/newnotice/newnotice.css +83 -0
- package/core/resources/html/otherimg/0.png +0 -0
- package/core/resources/html/otherimg/1.png +0 -0
- package/core/resources/html/otherimg/2.png +0 -0
- package/core/resources/html/otherimg/3.png +0 -0
- package/core/resources/html/otherimg/4.png +0 -0
- package/core/resources/html/otherimg/5.png +0 -0
- package/core/resources/html/otherimg/A.png +0 -0
- package/core/resources/html/otherimg/B.png +0 -0
- package/core/resources/html/otherimg/C.png +0 -0
- package/core/resources/html/otherimg/F.png +0 -0
- package/core/resources/html/otherimg/FC.png +0 -0
- package/core/resources/html/otherimg/NEW.png +0 -0
- package/core/resources/html/otherimg/Phigros_Icon_3.0.0.png +0 -0
- package/core/resources/html/otherimg/S.png +0 -0
- package/core/resources/html/otherimg/Star1.png +0 -0
- package/core/resources/html/otherimg/Star2.png +0 -0
- package/core/resources/html/otherimg/V.png +0 -0
- package/core/resources/html/otherimg/callback.png +0 -0
- package/core/resources/html/otherimg/chapHelp.png +0 -0
- package/core/resources/html/otherimg/dan_code.png +0 -0
- package/core/resources/html/otherimg/data.png +0 -0
- package/core/resources/html/otherimg/helpDoc.png +0 -0
- package/core/resources/html/otherimg/nickSuggest.png +0 -0
- package/core/resources/html/otherimg/phi.png +0 -0
- package/core/resources/html/otherimg/phigros.png +0 -0
- package/core/resources/html/otherimg/snow1.png +0 -0
- package/core/resources/html/otherimg/snow2.png +0 -0
- package/core/resources/html/otherimg/snow3.png +0 -0
- package/core/resources/html/otherimg/snow4.png +0 -0
- package/core/resources/html/otherimg/title.png +0 -0
- package/core/resources/html/rand/rand-orz.html +62 -0
- package/core/resources/html/rand/rand.art +59 -0
- package/core/resources/html/rand/rand.css +257 -0
- package/core/resources/html/rankingList/rankingList-orz.html +456 -0
- package/core/resources/html/rankingList/rankingList.art +171 -0
- package/core/resources/html/rankingList/rankingList.css +570 -0
- package/core/resources/html/rankingList-old/rankingList-orz.html +300 -0
- package/core/resources/html/rankingList-old/rankingList.art +89 -0
- package/core/resources/html/rankingList-old/rankingList.css +265 -0
- package/core/resources/html/score/score-orz.html +625 -0
- package/core/resources/html/score/score.art +249 -0
- package/core/resources/html/score/score.css +435 -0
- package/core/resources/html/score/scoreOld-orz.html +128 -0
- package/core/resources/html/score/scoreOld.art +230 -0
- package/core/resources/html/score/scoreOld.css +475 -0
- package/core/resources/html/score/scoreRankList-orz.html +613 -0
- package/core/resources/html/score/scoreRankList.art +231 -0
- package/core/resources/html/score/scoreRankList.css +197 -0
- package/core/resources/html/setting/setting-orz.html +123 -0
- package/core/resources/html/setting/setting.art +72 -0
- package/core/resources/html/setting/setting.css +170 -0
- package/core/resources/html/setting/userSetting-orz.html +132 -0
- package/core/resources/html/setting/userSetting.art +48 -0
- package/core/resources/html/setting/userSetting.css +160 -0
- package/core/resources/html/sign/sign-orz.html +262 -0
- package/core/resources/html/sign/sign.art +163 -0
- package/core/resources/html/sign/sign.css +706 -0
- package/core/resources/html/suggest/suggest.art +271 -0
- package/core/resources/html/suggest/suggest.css +300 -0
- package/core/resources/html/table/table-orz.html +228 -0
- package/core/resources/html/table/table.art +163 -0
- package/core/resources/html/table/table.css +401 -0
- package/core/resources/html/tasks/tasks-orz.html +83 -0
- package/core/resources/html/tasks/tasks.art +118 -0
- package/core/resources/html/tasks/tasks.css +334 -0
- package/core/resources/html/update/update-orz.html +735 -0
- package/core/resources/html/update/update.art +259 -0
- package/core/resources/html/update/update.css +676 -0
- package/core/resources/html/userinfo/userinfo-old-orz.html +408 -0
- package/core/resources/html/userinfo/userinfo-old.art +233 -0
- package/core/resources/html/userinfo/userinfo-old.css +466 -0
- package/core/resources/html/userinfo/userinfo-orz.html +543 -0
- package/core/resources/html/userinfo/userinfo.art +288 -0
- package/core/resources/html/userinfo/userinfo.css +757 -0
- package/core/resources/info/DLC/arc.json +412 -0
- package/core/resources/info/DLC/chunithm.json +1172 -0
- package/core/resources/info/DLC/dynamix.json +455 -0
- package/core/resources/info/DLC/fanshi.json +132 -0
- package/core/resources/info/DLC/lanota.json +412 -0
- package/core/resources/info/DLC/maimai.json +1110 -0
- package/core/resources/info/DLC/orz.json +158 -0
- package/core/resources/info/DLC/rizline.json +40 -0
- package/core/resources/info/DLC/rotaeno.json +159 -0
- package/core/resources/info/DLC/ryceam.json +53 -0
- package/core/resources/info/avatar.txt +109 -0
- package/core/resources/info/chaplist.yaml +102 -0
- package/core/resources/info/help/api.json +83 -0
- package/core/resources/info/help.json +436 -0
- package/core/resources/info/info.csv +315 -0
- package/core/resources/info/infolist.json +1758 -0
- package/core/resources/info/jrrp.json +92 -0
- package/core/resources/info/nicklist.yaml +2373 -0
- package/core/resources/info/notesInfo.json +1 -0
- package/core/resources/info/notice.json +11 -0
- package/core/resources/info/oldInfo/100/change.csv +218 -0
- package/core/resources/info/oldInfo/100/info.json +7 -0
- package/core/resources/info/oldInfo/101/change.csv +218 -0
- package/core/resources/info/oldInfo/101/info.json +7 -0
- package/core/resources/info/oldInfo/102/change.csv +223 -0
- package/core/resources/info/oldInfo/102/info.json +7 -0
- package/core/resources/info/oldInfo/103/change.csv +224 -0
- package/core/resources/info/oldInfo/103/info.json +7 -0
- package/core/resources/info/oldInfo/104/change.csv +225 -0
- package/core/resources/info/oldInfo/104/info.json +7 -0
- package/core/resources/info/oldInfo/105/change.csv +228 -0
- package/core/resources/info/oldInfo/105/info.json +7 -0
- package/core/resources/info/oldInfo/106/change.csv +229 -0
- package/core/resources/info/oldInfo/106/info.json +7 -0
- package/core/resources/info/oldInfo/108/change.csv +233 -0
- package/core/resources/info/oldInfo/108/info.json +7 -0
- package/core/resources/info/oldInfo/109/change.csv +235 -0
- package/core/resources/info/oldInfo/109/info.json +7 -0
- package/core/resources/info/oldInfo/110/change.csv +235 -0
- package/core/resources/info/oldInfo/110/info.json +7 -0
- package/core/resources/info/oldInfo/111/change.csv +242 -0
- package/core/resources/info/oldInfo/111/info.json +7 -0
- package/core/resources/info/oldInfo/112/change.csv +242 -0
- package/core/resources/info/oldInfo/112/info.json +7 -0
- package/core/resources/info/oldInfo/113/change.csv +244 -0
- package/core/resources/info/oldInfo/113/info.json +7 -0
- package/core/resources/info/oldInfo/115/change.csv +247 -0
- package/core/resources/info/oldInfo/115/info.json +7 -0
- package/core/resources/info/oldInfo/116/change.csv +249 -0
- package/core/resources/info/oldInfo/116/info.json +7 -0
- package/core/resources/info/oldInfo/118/change.csv +252 -0
- package/core/resources/info/oldInfo/118/info.json +7 -0
- package/core/resources/info/oldInfo/119/change.csv +255 -0
- package/core/resources/info/oldInfo/119/info.json +7 -0
- package/core/resources/info/oldInfo/120/change.csv +255 -0
- package/core/resources/info/oldInfo/120/info.json +7 -0
- package/core/resources/info/oldInfo/121/change.csv +257 -0
- package/core/resources/info/oldInfo/121/info.json +7 -0
- package/core/resources/info/oldInfo/122/change.csv +260 -0
- package/core/resources/info/oldInfo/122/info.json +7 -0
- package/core/resources/info/oldInfo/123/change.csv +260 -0
- package/core/resources/info/oldInfo/123/info.json +7 -0
- package/core/resources/info/oldInfo/124/change.csv +262 -0
- package/core/resources/info/oldInfo/124/info.json +7 -0
- package/core/resources/info/oldInfo/125/change.csv +266 -0
- package/core/resources/info/oldInfo/125/info.json +7 -0
- package/core/resources/info/oldInfo/126/change.csv +269 -0
- package/core/resources/info/oldInfo/126/info.json +7 -0
- package/core/resources/info/oldInfo/127/change.csv +270 -0
- package/core/resources/info/oldInfo/127/info.json +7 -0
- package/core/resources/info/oldInfo/128/change.csv +273 -0
- package/core/resources/info/oldInfo/128/info.json +7 -0
- package/core/resources/info/oldInfo/129/change.csv +274 -0
- package/core/resources/info/oldInfo/129/info.json +7 -0
- package/core/resources/info/oldInfo/130/change.csv +275 -0
- package/core/resources/info/oldInfo/130/info.json +7 -0
- package/core/resources/info/oldInfo/131/change.csv +278 -0
- package/core/resources/info/oldInfo/131/info.json +7 -0
- package/core/resources/info/oldInfo/132/change.csv +280 -0
- package/core/resources/info/oldInfo/132/info.json +7 -0
- package/core/resources/info/oldInfo/133/change.csv +284 -0
- package/core/resources/info/oldInfo/133/info.json +7 -0
- package/core/resources/info/oldInfo/134/change.csv +286 -0
- package/core/resources/info/oldInfo/134/info.json +7 -0
- package/core/resources/info/oldInfo/135/change.csv +290 -0
- package/core/resources/info/oldInfo/135/info.json +7 -0
- package/core/resources/info/oldInfo/136/change.csv +290 -0
- package/core/resources/info/oldInfo/136/info.json +7 -0
- package/core/resources/info/oldInfo/137/change.csv +293 -0
- package/core/resources/info/oldInfo/137/info.json +7 -0
- package/core/resources/info/oldInfo/138/change.csv +295 -0
- package/core/resources/info/oldInfo/138/info.json +7 -0
- package/core/resources/info/oldInfo/139/change.csv +295 -0
- package/core/resources/info/oldInfo/139/info.json +7 -0
- package/core/resources/info/oldInfo/140/change.csv +298 -0
- package/core/resources/info/oldInfo/140/info.json +7 -0
- package/core/resources/info/oldInfo/141/change.csv +300 -0
- package/core/resources/info/oldInfo/141/info.json +7 -0
- package/core/resources/info/oldInfo/142/change.csv +302 -0
- package/core/resources/info/oldInfo/142/info.json +7 -0
- package/core/resources/info/oldInfo/143/change.csv +303 -0
- package/core/resources/info/oldInfo/143/info.json +7 -0
- package/core/resources/info/oldInfo/144/change.csv +303 -0
- package/core/resources/info/oldInfo/144/info.json +7 -0
- package/core/resources/info/oldInfo/145/change.csv +305 -0
- package/core/resources/info/oldInfo/145/info.json +7 -0
- package/core/resources/info/oldInfo/146/change.csv +305 -0
- package/core/resources/info/oldInfo/146/info.json +7 -0
- package/core/resources/info/oldInfo/148/change.csv +307 -0
- package/core/resources/info/oldInfo/148/info.json +7 -0
- package/core/resources/info/oldInfo/149/change.csv +307 -0
- package/core/resources/info/oldInfo/149/info.json +7 -0
- package/core/resources/info/oldInfo/151/change.csv +309 -0
- package/core/resources/info/oldInfo/151/info.json +7 -0
- package/core/resources/info/oldInfo/152/change.csv +312 -0
- package/core/resources/info/oldInfo/152/info.json +7 -0
- package/core/resources/info/oldInfo/153/change.csv +313 -0
- package/core/resources/info/oldInfo/153/info.json +7 -0
- package/core/resources/info/oldInfo/154/change.csv +315 -0
- package/core/resources/info/oldInfo/154/info.json +7 -0
- package/core/resources/info/oldInfo/92/change.csv +204 -0
- package/core/resources/info/oldInfo/92/info.json +7 -0
- package/core/resources/info/oldInfo/93/change.csv +206 -0
- package/core/resources/info/oldInfo/93/info.json +7 -0
- package/core/resources/info/oldInfo/94/change.csv +209 -0
- package/core/resources/info/oldInfo/94/info.json +7 -0
- package/core/resources/info/oldInfo/95/change.csv +211 -0
- package/core/resources/info/oldInfo/95/info.json +7 -0
- package/core/resources/info/oldInfo/96/change.csv +216 -0
- package/core/resources/info/oldInfo/96/info.json +7 -0
- package/core/resources/info/oldInfo/98/change.csv +216 -0
- package/core/resources/info/oldInfo/98/info.json +7 -0
- package/core/resources/info/oldInfo/99/change.csv +217 -0
- package/core/resources/info/oldInfo/99/info.json +7 -0
- package/core/resources/info/oldNotesInfo.json +1 -0
- package/core/resources/info/sentences.json +1 -0
- package/core/resources/info/spinfo.json +362 -0
- package/core/resources/info/tips.txt +278 -0
- package/core/resources/otherill//351/233/252/351/231/215SP.png +0 -0
- package/core/resources/song-select.html +535 -0
- package/core/resources/themes/README.md +24 -0
- package/core/resources/themes/milthm/A.png +0 -0
- package/core/resources/themes/milthm/B.png +0 -0
- package/core/resources/themes/milthm/C.png +0 -0
- package/core/resources/themes/milthm/F.png +0 -0
- package/core/resources/themes/milthm/FC.png +0 -0
- package/core/resources/themes/milthm/S.png +0 -0
- package/core/resources/themes/milthm/V.png +0 -0
- package/core/resources/themes/milthm/arcgrosB19.css +36 -0
- package/core/resources/themes/milthm/b19.art +464 -0
- package/core/resources/themes/milthm/b19.css +1314 -0
- package/core/resources/themes/milthm/bg.png +0 -0
- package/core/resources/themes/milthm/clg.css +37 -0
- package/core/resources/themes/milthm/difficultyHistory.css +42 -0
- package/core/resources/themes/milthm/font.ttf +0 -0
- package/core/resources/themes/milthm/help.css +36 -0
- package/core/resources/themes/milthm/historyB30.css +48 -0
- package/core/resources/themes/milthm/info.yaml +45 -0
- package/core/resources/themes/milthm/list.css +39 -0
- package/core/resources/themes/milthm/phi.png +0 -0
- package/core/resources/themes/milthm/setting.css +37 -0
- package/core/resources/themes/milthm/sign.css +81 -0
- package/core/resources/themes/milthm/suggest.css +40 -0
- package/core/resources/themes/milthm/table.css +54 -0
- package/core/resources/themes/milthm/update.css +68 -0
- package/core/tests/aliasProposalService.test.js +82 -0
- package/core/tests/apiAccountDeletion.test.js +125 -0
- package/core/tests/apiPermission.test.js +44 -0
- package/core/tests/apiVersion.test.js +55 -0
- package/core/tests/b30Analysis.test.js +38 -0
- package/core/tests/backgroundIllustration.test.js +21 -0
- package/core/tests/botApiAuthRecovery.test.js +148 -0
- package/core/tests/botSyncService.test.js +42 -0
- package/core/tests/fileWatcherRegistry.test.js +44 -0
- package/core/tests/gameRecordPayload.test.js +34 -0
- package/core/tests/guessLetter.test.js +79 -0
- package/core/tests/makeRequestHandling.test.js +118 -0
- package/core/tests/marketOverflow.test.js +31 -0
- package/core/tests/platformTemplateCache.test.js +92 -0
- package/core/tests/pluginDataThemePreference.test.js +36 -0
- package/core/tests/processCleanup.test.js +58 -0
- package/core/tests/puppeteerShutdown.test.js +17 -0
- package/core/tests/renderPressureHistory.test.js +59 -0
- package/core/tests/saveStats.test.js +26 -0
- package/core/tests/themeInstallGuard.test.js +289 -0
- package/core/tests/themeManager.test.js +625 -0
- package/core/tests/themeManagerInit.test.js +11 -0
- package/core/tests/themeMarket.test.js +855 -0
- package/core/tests/themePageRouting.test.js +431 -0
- package/core/tests/themePolicy.test.js +28 -0
- package/core/tests/themeStorageRecovery.test.js +192 -0
- package/core/tests/userCredentialModuleBoundaries.test.js +41 -0
- package/core/tests/userCredentials.test.js +285 -0
- package/core/tsconfig.json +32 -0
- package/core/types/vendor.d.ts +14 -0
- package/lib/index.cjs +358 -0
- package/lib/index.d.cts +182 -0
- package/lib/index.d.ts +182 -0
- package/lib/index.js +320 -0
- package/package.json +74 -0
- package/readme.md +3 -0
|
@@ -0,0 +1,853 @@
|
|
|
1
|
+
<head>
|
|
2
|
+
<link rel="stylesheet" href="./b19.css" />
|
|
3
|
+
</head>
|
|
4
|
+
|
|
5
|
+
<body id="body">
|
|
6
|
+
<div class="background">
|
|
7
|
+
<img src="../../original_ill/illBlur/996.李化禹.png" alt="曲绘-模糊" id="bkg" />
|
|
8
|
+
</div>
|
|
9
|
+
<div class="title">
|
|
10
|
+
<div class="playerInfo">
|
|
11
|
+
<div class="blackBlock clip-box"></div>
|
|
12
|
+
<div class="avatar clip-box">
|
|
13
|
+
<img src="../avatar/-SURREALISM-.png" alt="{{gameuser.avatar}}" />
|
|
14
|
+
</div>
|
|
15
|
+
<div class="playerId">
|
|
16
|
+
<p>就是不会告诉你</p>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="rks clip-box">
|
|
19
|
+
<p>14.0000</p>
|
|
20
|
+
</div>
|
|
21
|
+
<div class="clgBox">
|
|
22
|
+
<div class="Challenge">
|
|
23
|
+
<img src="../otherimg/5.png" alt="Challenge" />
|
|
24
|
+
<p>54</p>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="date">
|
|
28
|
+
<p>2025 Feb.02 00:00:00</p>
|
|
29
|
+
</div>
|
|
30
|
+
<div class="dataBox clip-box">
|
|
31
|
+
<img src="../otherimg/data.png" alt="data" />
|
|
32
|
+
<p>114PB 514GB</p>
|
|
33
|
+
</div>
|
|
34
|
+
<div class="spInfo colorful-background clip-box">
|
|
35
|
+
<p>AP only</p>
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
<div class="recordInfo clip-box">
|
|
39
|
+
<div class="whiteLine clip-box"></div>
|
|
40
|
+
<div class="sheet">
|
|
41
|
+
<div class="row">
|
|
42
|
+
<div class="poz">
|
|
43
|
+
<p>\</p>
|
|
44
|
+
</div>
|
|
45
|
+
<div class="poz">
|
|
46
|
+
<p>AT</p>
|
|
47
|
+
</div>
|
|
48
|
+
<div class="poz">
|
|
49
|
+
<p>IN</p>
|
|
50
|
+
</div>
|
|
51
|
+
<div class="poz">
|
|
52
|
+
<p>HD</p>
|
|
53
|
+
</div>
|
|
54
|
+
<div class="poz">
|
|
55
|
+
<p>EZ</p>
|
|
56
|
+
</div>
|
|
57
|
+
</div>
|
|
58
|
+
<div class="row">
|
|
59
|
+
<div class="poz">
|
|
60
|
+
<p>C</p>
|
|
61
|
+
</div>
|
|
62
|
+
<div class="poz">
|
|
63
|
+
<p>111</p>
|
|
64
|
+
</div>
|
|
65
|
+
<div class="poz">
|
|
66
|
+
<p>222</p>
|
|
67
|
+
</div>
|
|
68
|
+
<div class="poz">
|
|
69
|
+
<p>333</p>
|
|
70
|
+
</div>
|
|
71
|
+
<div class="poz">
|
|
72
|
+
<p>444</p>
|
|
73
|
+
</div>
|
|
74
|
+
</div>
|
|
75
|
+
<div class="row">
|
|
76
|
+
<div class="poz">
|
|
77
|
+
<p>FC</p>
|
|
78
|
+
</div>
|
|
79
|
+
<div class="poz">
|
|
80
|
+
<p>111</p>
|
|
81
|
+
</div>
|
|
82
|
+
<div class="poz">
|
|
83
|
+
<p>222</p>
|
|
84
|
+
</div>
|
|
85
|
+
<div class="poz">
|
|
86
|
+
<p>333</p>
|
|
87
|
+
</div>
|
|
88
|
+
<div class="poz">
|
|
89
|
+
<p>444</p>
|
|
90
|
+
</div>
|
|
91
|
+
</div>
|
|
92
|
+
<div class="row">
|
|
93
|
+
<div class="poz">
|
|
94
|
+
<p>Phi</p>
|
|
95
|
+
</div>
|
|
96
|
+
<div class="poz">
|
|
97
|
+
<p>111</p>
|
|
98
|
+
</div>
|
|
99
|
+
<div class="poz">
|
|
100
|
+
<p>222</p>
|
|
101
|
+
</div>
|
|
102
|
+
<div class="poz">
|
|
103
|
+
<p>333</p>
|
|
104
|
+
</div>
|
|
105
|
+
<div class="poz">
|
|
106
|
+
<p>444</p>
|
|
107
|
+
</div>
|
|
108
|
+
</div>
|
|
109
|
+
</div>
|
|
110
|
+
</div>
|
|
111
|
+
</div>
|
|
112
|
+
<div class="b19">
|
|
113
|
+
<div class="Nosignal">
|
|
114
|
+
<div class="border_corner border_corner_left_top"></div>
|
|
115
|
+
<div class="border_corner border_corner_right_top"></div>
|
|
116
|
+
<div class="border_corner border_corner_left_bottom"></div>
|
|
117
|
+
<div class="border_corner border_corner_right_bottom"></div>
|
|
118
|
+
<div class="line"></div>
|
|
119
|
+
<div class="timeout">
|
|
120
|
+
<p>TIME_OUT</p>
|
|
121
|
+
</div>
|
|
122
|
+
<div class="client">
|
|
123
|
+
<p>>>> PhigrOS Client Finding Phi.song</p>
|
|
124
|
+
</div>
|
|
125
|
+
<div class="sqrt"></div>
|
|
126
|
+
</div>
|
|
127
|
+
|
|
128
|
+
<div class="song phi_song">
|
|
129
|
+
<div class="ill-box">
|
|
130
|
+
<div class="num clip-box">
|
|
131
|
+
<p>Phi</p>
|
|
132
|
+
</div>
|
|
133
|
+
<div class="ill clip-box">
|
|
134
|
+
<img src="../../original_ill/ill/Shadow.SumaiLightvs姜米條.png" alt="ill" />
|
|
135
|
+
</div>
|
|
136
|
+
<div class="rank-AT clip-box">
|
|
137
|
+
<div class="org">
|
|
138
|
+
<p>AT 14.5</p>
|
|
139
|
+
</div>
|
|
140
|
+
<div class="rel">
|
|
141
|
+
<p>14.50</p>
|
|
142
|
+
</div>
|
|
143
|
+
</div>
|
|
144
|
+
</div>
|
|
145
|
+
<div class="info-AT">
|
|
146
|
+
<div class="songname">
|
|
147
|
+
<p name="pvis">Shadow</p>
|
|
148
|
+
</div>
|
|
149
|
+
<div class="songinfo">
|
|
150
|
+
<div class="Rating">
|
|
151
|
+
<img src="../otherimg/phi.png" alt="Rating" />
|
|
152
|
+
</div>
|
|
153
|
+
<div class="chengji">
|
|
154
|
+
<div class="score">
|
|
155
|
+
<p>1000000</p>
|
|
156
|
+
</div>
|
|
157
|
+
<div class="line"></div>
|
|
158
|
+
<div class="acc-box">
|
|
159
|
+
<div class="acc">
|
|
160
|
+
<p>100.00%</p>
|
|
161
|
+
</div>
|
|
162
|
+
<div class="suggest">
|
|
163
|
+
<p>>> 100.00%</p>
|
|
164
|
+
</div>
|
|
165
|
+
</div>
|
|
166
|
+
</div>
|
|
167
|
+
</div>
|
|
168
|
+
</div>
|
|
169
|
+
</div>
|
|
170
|
+
|
|
171
|
+
<div class="song">
|
|
172
|
+
<div class="ill-box">
|
|
173
|
+
<div class="num clip-box">
|
|
174
|
+
<p>#2</p>
|
|
175
|
+
</div>
|
|
176
|
+
<div class="ill clip-box">
|
|
177
|
+
<img src="../../original_ill/ill/Shadow.SumaiLightvs姜米條.png" alt="ill" />
|
|
178
|
+
</div>
|
|
179
|
+
<div class="rank-HD clip-box">
|
|
180
|
+
<div class="org">
|
|
181
|
+
<p>HD 14.5</p>
|
|
182
|
+
</div>
|
|
183
|
+
<div class="rel">
|
|
184
|
+
<p>14.50</p>
|
|
185
|
+
</div>
|
|
186
|
+
</div>
|
|
187
|
+
</div>
|
|
188
|
+
<div class="info-HD">
|
|
189
|
+
<div class="songname">
|
|
190
|
+
<p name="pvis">Shadow</p>
|
|
191
|
+
</div>
|
|
192
|
+
<div class="songinfo">
|
|
193
|
+
<div class="Rating">
|
|
194
|
+
<img src="../otherimg/phi.png" alt="Rating" />
|
|
195
|
+
</div>
|
|
196
|
+
<div class="chengji">
|
|
197
|
+
<div class="score">
|
|
198
|
+
<p>1000000</p>
|
|
199
|
+
</div>
|
|
200
|
+
<div class="line"></div>
|
|
201
|
+
<div class="acc-box">
|
|
202
|
+
<div class="acc">
|
|
203
|
+
<p>100.00%</p>
|
|
204
|
+
</div>
|
|
205
|
+
<div class="suggest">
|
|
206
|
+
<div class="suggest-tip"></div>
|
|
207
|
+
<p>100.00%</p>
|
|
208
|
+
</div>
|
|
209
|
+
</div>
|
|
210
|
+
<div class="accAvggu accLower clip-box">
|
|
211
|
+
<div class="accAvgLine clip-box"></div>
|
|
212
|
+
<svg viewBox="0 0 1024 1024">
|
|
213
|
+
<path
|
|
214
|
+
d="M564.8 465.184l4.192 3.904 274.72 274.752a32 32 0 0 1 0 45.248l-22.624 22.624a32 32 0 0 1-45.248 0l-263.456-263.392-263.424 263.392a32 32 0 0 1-42.24 2.656l-3.008-2.656-22.624-22.624a32 32 0 0 1 0-45.248l274.784-274.752a80 80 0 0 1 108.96-3.904z m0-256l4.192 3.904 274.72 274.752a32 32 0 0 1 0 45.248l-22.624 22.624a32 32 0 0 1-45.248 0l-263.456-263.392-263.424 263.392a32 32 0 0 1-42.24 2.656l-3.008-2.656-22.624-22.624a32 32 0 0 1 0-45.248l274.784-274.752a80 80 0 0 1 108.96-3.904z"
|
|
215
|
+
fill="#333333"
|
|
216
|
+
p-id="1589"
|
|
217
|
+
></path>
|
|
218
|
+
</svg>
|
|
219
|
+
<p>Avg: 99.0000%</p>
|
|
220
|
+
</div>
|
|
221
|
+
</div>
|
|
222
|
+
</div>
|
|
223
|
+
</div>
|
|
224
|
+
<div class="accAvg accLower clip-box">
|
|
225
|
+
<div class="accAvgLine clip-box"></div>
|
|
226
|
+
<p>Dif</p>
|
|
227
|
+
<svg viewBox="0 0 1024 1024">
|
|
228
|
+
<path
|
|
229
|
+
d="M564.8 465.184l4.192 3.904 274.72 274.752a32 32 0 0 1 0 45.248l-22.624 22.624a32 32 0 0 1-45.248 0l-263.456-263.392-263.424 263.392a32 32 0 0 1-42.24 2.656l-3.008-2.656-22.624-22.624a32 32 0 0 1 0-45.248l274.784-274.752a80 80 0 0 1 108.96-3.904z m0-256l4.192 3.904 274.72 274.752a32 32 0 0 1 0 45.248l-22.624 22.624a32 32 0 0 1-45.248 0l-263.456-263.392-263.424 263.392a32 32 0 0 1-42.24 2.656l-3.008-2.656-22.624-22.624a32 32 0 0 1 0-45.248l274.784-274.752a80 80 0 0 1 108.96-3.904z"
|
|
230
|
+
fill="#333333"
|
|
231
|
+
p-id="1589"
|
|
232
|
+
></path>
|
|
233
|
+
</svg>
|
|
234
|
+
<p>0.1   RKS</p>
|
|
235
|
+
<svg viewBox="0 0 1024 1024">
|
|
236
|
+
<path
|
|
237
|
+
d="M564.8 465.184l4.192 3.904 274.72 274.752a32 32 0 0 1 0 45.248l-22.624 22.624a32 32 0 0 1-45.248 0l-263.456-263.392-263.424 263.392a32 32 0 0 1-42.24 2.656l-3.008-2.656-22.624-22.624a32 32 0 0 1 0-45.248l274.784-274.752a80 80 0 0 1 108.96-3.904z m0-256l4.192 3.904 274.72 274.752a32 32 0 0 1 0 45.248l-22.624 22.624a32 32 0 0 1-45.248 0l-263.456-263.392-263.424 263.392a32 32 0 0 1-42.24 2.656l-3.008-2.656-22.624-22.624a32 32 0 0 1 0-45.248l274.784-274.752a80 80 0 0 1 108.96-3.904z"
|
|
238
|
+
fill="#333333"
|
|
239
|
+
p-id="1589"
|
|
240
|
+
></path>
|
|
241
|
+
</svg>
|
|
242
|
+
<p>0.1</p>
|
|
243
|
+
</div>
|
|
244
|
+
</div>
|
|
245
|
+
<div class="song">
|
|
246
|
+
<div class="ill-box">
|
|
247
|
+
<div class="num clip-box">
|
|
248
|
+
<p>#2</p>
|
|
249
|
+
</div>
|
|
250
|
+
<div class="ill clip-box">
|
|
251
|
+
<img src="../../original_ill/ill/Shadow.SumaiLightvs姜米條.png" alt="ill" />
|
|
252
|
+
</div>
|
|
253
|
+
<div class="rank-HD clip-box">
|
|
254
|
+
<div class="org">
|
|
255
|
+
<p>HD 14.5</p>
|
|
256
|
+
</div>
|
|
257
|
+
<div class="rel">
|
|
258
|
+
<p>14.50</p>
|
|
259
|
+
</div>
|
|
260
|
+
</div>
|
|
261
|
+
</div>
|
|
262
|
+
<div class="info-HD">
|
|
263
|
+
<div class="songname">
|
|
264
|
+
<p name="pvis">Shadow</p>
|
|
265
|
+
</div>
|
|
266
|
+
<div class="songinfo">
|
|
267
|
+
<div class="Rating">
|
|
268
|
+
<img src="../otherimg/phi.png" alt="Rating" />
|
|
269
|
+
</div>
|
|
270
|
+
<div class="chengji">
|
|
271
|
+
<div class="score">
|
|
272
|
+
<p>1000000</p>
|
|
273
|
+
</div>
|
|
274
|
+
<div class="line"></div>
|
|
275
|
+
<div class="acc-box">
|
|
276
|
+
<div class="acc">
|
|
277
|
+
<p>100.00%</p>
|
|
278
|
+
</div>
|
|
279
|
+
<div class="suggest">
|
|
280
|
+
<div class="suggest-tip"></div>
|
|
281
|
+
<p>100.00%</p>
|
|
282
|
+
</div>
|
|
283
|
+
</div>
|
|
284
|
+
</div>
|
|
285
|
+
</div>
|
|
286
|
+
</div>
|
|
287
|
+
<div class="accAvg accHigher clip-box">
|
|
288
|
+
<div class="accAvgLine clip-box"></div>
|
|
289
|
+
<svg viewBox="0 0 1024 1024">
|
|
290
|
+
<path
|
|
291
|
+
d="M564.8 465.184l4.192 3.904 274.72 274.752a32 32 0 0 1 0 45.248l-22.624 22.624a32 32 0 0 1-45.248 0l-263.456-263.392-263.424 263.392a32 32 0 0 1-42.24 2.656l-3.008-2.656-22.624-22.624a32 32 0 0 1 0-45.248l274.784-274.752a80 80 0 0 1 108.96-3.904z m0-256l4.192 3.904 274.72 274.752a32 32 0 0 1 0 45.248l-22.624 22.624a32 32 0 0 1-45.248 0l-263.456-263.392-263.424 263.392a32 32 0 0 1-42.24 2.656l-3.008-2.656-22.624-22.624a32 32 0 0 1 0-45.248l274.784-274.752a80 80 0 0 1 108.96-3.904z"
|
|
292
|
+
fill="#333333"
|
|
293
|
+
p-id="1589"
|
|
294
|
+
></path>
|
|
295
|
+
</svg>
|
|
296
|
+
<p>Avg: 99.0000%</p>
|
|
297
|
+
</div>
|
|
298
|
+
</div>
|
|
299
|
+
<div class="song">
|
|
300
|
+
<div class="ill-box">
|
|
301
|
+
<div class="num clip-box">
|
|
302
|
+
<p>#2</p>
|
|
303
|
+
</div>
|
|
304
|
+
<div class="ill clip-box">
|
|
305
|
+
<img src="../../original_ill/ill/Shadow.SumaiLightvs姜米條.png" alt="ill" />
|
|
306
|
+
</div>
|
|
307
|
+
<div class="rank-HD clip-box">
|
|
308
|
+
<div class="org">
|
|
309
|
+
<p>HD 14.5</p>
|
|
310
|
+
</div>
|
|
311
|
+
<div class="rel">
|
|
312
|
+
<p>14.50</p>
|
|
313
|
+
</div>
|
|
314
|
+
</div>
|
|
315
|
+
</div>
|
|
316
|
+
<div class="info-HD">
|
|
317
|
+
<div class="songname">
|
|
318
|
+
<p name="pvis">Shadow</p>
|
|
319
|
+
</div>
|
|
320
|
+
<div class="songinfo">
|
|
321
|
+
<div class="Rating">
|
|
322
|
+
<img src="../otherimg/phi.png" alt="Rating" />
|
|
323
|
+
</div>
|
|
324
|
+
<div class="chengji">
|
|
325
|
+
<div class="score">
|
|
326
|
+
<p>1000000</p>
|
|
327
|
+
</div>
|
|
328
|
+
<div class="line"></div>
|
|
329
|
+
<div class="acc-box">
|
|
330
|
+
<div class="acc">
|
|
331
|
+
<p>100.00%</p>
|
|
332
|
+
</div>
|
|
333
|
+
<div class="suggest">
|
|
334
|
+
<div class="suggest-tip"></div>
|
|
335
|
+
<p>100.00%</p>
|
|
336
|
+
</div>
|
|
337
|
+
</div>
|
|
338
|
+
</div>
|
|
339
|
+
</div>
|
|
340
|
+
</div>
|
|
341
|
+
<div class="accAvg accHyper clip-box">
|
|
342
|
+
<div class="accAvgLine clip-box"></div>
|
|
343
|
+
<svg viewBox="0 0 1024 1024">
|
|
344
|
+
<path
|
|
345
|
+
d="M564.8 465.184l4.192 3.904 274.72 274.752a32 32 0 0 1 0 45.248l-22.624 22.624a32 32 0 0 1-45.248 0l-263.456-263.392-263.424 263.392a32 32 0 0 1-42.24 2.656l-3.008-2.656-22.624-22.624a32 32 0 0 1 0-45.248l274.784-274.752a80 80 0 0 1 108.96-3.904z m0-256l4.192 3.904 274.72 274.752a32 32 0 0 1 0 45.248l-22.624 22.624a32 32 0 0 1-45.248 0l-263.456-263.392-263.424 263.392a32 32 0 0 1-42.24 2.656l-3.008-2.656-22.624-22.624a32 32 0 0 1 0-45.248l274.784-274.752a80 80 0 0 1 108.96-3.904z"
|
|
346
|
+
fill="#333333"
|
|
347
|
+
p-id="1589"
|
|
348
|
+
></path>
|
|
349
|
+
</svg>
|
|
350
|
+
<p>Avg: 99.0000%</p>
|
|
351
|
+
</div>
|
|
352
|
+
</div>
|
|
353
|
+
<div class="song">
|
|
354
|
+
<div class="ill-box">
|
|
355
|
+
<div class="num clip-box">
|
|
356
|
+
<p>#2</p>
|
|
357
|
+
</div>
|
|
358
|
+
<div class="ill clip-box">
|
|
359
|
+
<img src="../../original_ill/ill/Shadow.SumaiLightvs姜米條.png" alt="ill" />
|
|
360
|
+
</div>
|
|
361
|
+
<div class="rank-HD clip-box">
|
|
362
|
+
<div class="org">
|
|
363
|
+
<p>HD 14.5</p>
|
|
364
|
+
</div>
|
|
365
|
+
<div class="rel">
|
|
366
|
+
<p>14.50</p>
|
|
367
|
+
</div>
|
|
368
|
+
</div>
|
|
369
|
+
</div>
|
|
370
|
+
<div class="info-HD">
|
|
371
|
+
<div class="songname">
|
|
372
|
+
<p name="pvis">Shadow</p>
|
|
373
|
+
</div>
|
|
374
|
+
<div class="songinfo">
|
|
375
|
+
<div class="Rating">
|
|
376
|
+
<img src="../otherimg/phi.png" alt="Rating" />
|
|
377
|
+
</div>
|
|
378
|
+
<div class="chengji">
|
|
379
|
+
<div class="score">
|
|
380
|
+
<p>1000000</p>
|
|
381
|
+
</div>
|
|
382
|
+
<div class="line"></div>
|
|
383
|
+
<div class="acc-box">
|
|
384
|
+
<div class="acc">
|
|
385
|
+
<p>100.00%</p>
|
|
386
|
+
</div>
|
|
387
|
+
<div class="suggest">
|
|
388
|
+
<div class="suggest-tip"></div>
|
|
389
|
+
<p>100.00%</p>
|
|
390
|
+
</div>
|
|
391
|
+
</div>
|
|
392
|
+
</div>
|
|
393
|
+
</div>
|
|
394
|
+
</div>
|
|
395
|
+
<div class="accAvg accFinished clip-box">
|
|
396
|
+
<div class="accAvgLine clip-box"></div>
|
|
397
|
+
<svg viewBox="0 0 1024 1024">
|
|
398
|
+
<path
|
|
399
|
+
d="M892.064 261.888a31.936 31.936 0 0 0-45.216 1.472L421.664 717.248l-220.448-185.216a32 32 0 1 0-41.152 48.992l243.648 204.704a31.872 31.872 0 0 0 20.576 7.488 31.808 31.808 0 0 0 23.36-10.112L893.536 307.136a32 32 0 0 0-1.472-45.248z"
|
|
400
|
+
p-id="5526"
|
|
401
|
+
></path>
|
|
402
|
+
</svg>
|
|
403
|
+
<p>Avg: 99.0000%</p>
|
|
404
|
+
</div>
|
|
405
|
+
</div>
|
|
406
|
+
|
|
407
|
+
<div class="over_flow">
|
|
408
|
+
<div class="flow_line_box_l">
|
|
409
|
+
<div class="flow_line"></div>
|
|
410
|
+
<div class="flow_line"></div>
|
|
411
|
+
<div class="flow_line"></div>
|
|
412
|
+
<div class="flow_line"></div>
|
|
413
|
+
<div class="flow_line"></div>
|
|
414
|
+
<div class="flow_line"></div>
|
|
415
|
+
</div>
|
|
416
|
+
<p><i>OVER FLOW</i></p>
|
|
417
|
+
<div class="flow_line_box_r">
|
|
418
|
+
<div class="flow_line"></div>
|
|
419
|
+
<div class="flow_line"></div>
|
|
420
|
+
<div class="flow_line"></div>
|
|
421
|
+
<div class="flow_line"></div>
|
|
422
|
+
<div class="flow_line"></div>
|
|
423
|
+
<div class="flow_line"></div>
|
|
424
|
+
</div>
|
|
425
|
+
</div>
|
|
426
|
+
</div>
|
|
427
|
+
|
|
428
|
+
<div class="over_flow">
|
|
429
|
+
<div class="flow_line_box_l">
|
|
430
|
+
<div class="flow_line"></div>
|
|
431
|
+
<div class="flow_line"></div>
|
|
432
|
+
<div class="flow_line"></div>
|
|
433
|
+
<div class="flow_line"></div>
|
|
434
|
+
<div class="flow_line"></div>
|
|
435
|
+
<div class="flow_line"></div>
|
|
436
|
+
</div>
|
|
437
|
+
<p><i>B30 统计分析</i></p>
|
|
438
|
+
<div class="flow_line_box_r">
|
|
439
|
+
<div class="flow_line"></div>
|
|
440
|
+
<div class="flow_line"></div>
|
|
441
|
+
<div class="flow_line"></div>
|
|
442
|
+
<div class="flow_line"></div>
|
|
443
|
+
<div class="flow_line"></div>
|
|
444
|
+
<div class="flow_line"></div>
|
|
445
|
+
</div>
|
|
446
|
+
</div>
|
|
447
|
+
|
|
448
|
+
<div class="b30-analysis-row">
|
|
449
|
+
<section class="analysis-panel tag-analysis-panel clip-box">
|
|
450
|
+
<div class="analysis-panel-head">
|
|
451
|
+
<div>
|
|
452
|
+
<p class="analysis-kicker">CHART PROFILE</p>
|
|
453
|
+
<p class="analysis-title">谱面标签能力</p>
|
|
454
|
+
</div>
|
|
455
|
+
<p class="analysis-meta">有效票 286</p>
|
|
456
|
+
</div>
|
|
457
|
+
<div class="tag-analysis-body">
|
|
458
|
+
<div class="tag-analysis-content">
|
|
459
|
+
<div class="tag-radar-column">
|
|
460
|
+
<div class="tag-radar-title">
|
|
461
|
+
<span></span>
|
|
462
|
+
<p>分类汇总</p>
|
|
463
|
+
</div>
|
|
464
|
+
<svg class="tag-radar" viewBox="0 0 200 184" aria-label="分类标签能力雷达图">
|
|
465
|
+
<polygon
|
|
466
|
+
class="tag-radar-grid"
|
|
467
|
+
points="100,78.3 113.1,82.4 108.1,97.1 91.9,97.1 86.9,82.4"
|
|
468
|
+
></polygon>
|
|
469
|
+
<polygon
|
|
470
|
+
class="tag-radar-grid"
|
|
471
|
+
points="100,64.5 126.2,73.8 116.2,109.8 83.8,109.8 73.8,73.8"
|
|
472
|
+
></polygon>
|
|
473
|
+
<polygon
|
|
474
|
+
class="tag-radar-grid"
|
|
475
|
+
points="100,50.8 139.2,65.2 124.2,122.4 75.8,122.4 60.8,65.2"
|
|
476
|
+
></polygon>
|
|
477
|
+
<polygon
|
|
478
|
+
class="tag-radar-grid"
|
|
479
|
+
points="100,37 152.3,75 132.3,136.5 67.7,136.5 47.7,75"
|
|
480
|
+
></polygon>
|
|
481
|
+
<line class="tag-radar-axis" x1="100" y1="92" x2="100" y2="37"></line>
|
|
482
|
+
<line class="tag-radar-axis" x1="100" y1="92" x2="152.3" y2="75"></line>
|
|
483
|
+
<line class="tag-radar-axis" x1="100" y1="92" x2="132.3" y2="136.5"></line>
|
|
484
|
+
<line class="tag-radar-axis" x1="100" y1="92" x2="67.7" y2="136.5"></line>
|
|
485
|
+
<line class="tag-radar-axis" x1="100" y1="92" x2="47.7" y2="75"></line>
|
|
486
|
+
<polygon
|
|
487
|
+
class="tag-radar-shape"
|
|
488
|
+
points="100,51.5 144.5,77.5 117.8,116.5 79,119.5 76.5,84.4"
|
|
489
|
+
></polygon>
|
|
490
|
+
<circle class="tag-radar-point" cx="100" cy="51.5" r="2.3"></circle>
|
|
491
|
+
<circle class="tag-radar-point" cx="144.5" cy="77.5" r="2.3"></circle>
|
|
492
|
+
<circle class="tag-radar-point" cx="117.8" cy="116.5" r="2.3"></circle>
|
|
493
|
+
<circle class="tag-radar-point" cx="79" cy="119.5" r="2.3"></circle>
|
|
494
|
+
<circle class="tag-radar-point" cx="76.5" cy="84.4" r="2.3"></circle>
|
|
495
|
+
<text class="tag-radar-label" x="100" y="14" text-anchor="middle">
|
|
496
|
+
<tspan x="100">读谱</tspan>
|
|
497
|
+
<tspan class="tag-radar-score" x="100" dy="10">15.72</tspan>
|
|
498
|
+
</text>
|
|
499
|
+
<text class="tag-radar-label" x="174" y="67" text-anchor="start">
|
|
500
|
+
<tspan x="174">硬抗</tspan>
|
|
501
|
+
<tspan class="tag-radar-score" x="174" dy="10">15.94</tspan>
|
|
502
|
+
</text>
|
|
503
|
+
<text class="tag-radar-label" x="145" y="160" text-anchor="start">
|
|
504
|
+
<tspan x="145">拆谱</tspan>
|
|
505
|
+
<tspan class="tag-radar-score" x="145" dy="10">15.38</tspan>
|
|
506
|
+
</text>
|
|
507
|
+
<text class="tag-radar-label" x="55" y="160" text-anchor="end">
|
|
508
|
+
<tspan x="55">定位</tspan>
|
|
509
|
+
<tspan class="tag-radar-score" x="55" dy="10">15.51</tspan>
|
|
510
|
+
</text>
|
|
511
|
+
<text class="tag-radar-label" x="26" y="67" text-anchor="end">
|
|
512
|
+
<tspan x="26">多指</tspan>
|
|
513
|
+
<tspan class="tag-radar-score" x="26" dy="10">15.12</tspan>
|
|
514
|
+
</text>
|
|
515
|
+
</svg>
|
|
516
|
+
</div>
|
|
517
|
+
<div class="tag-ranking-column">
|
|
518
|
+
<div class="tag-ranking-group strong-tags">
|
|
519
|
+
<div class="tag-column-title">
|
|
520
|
+
<span></span>
|
|
521
|
+
<p>擅长词条</p>
|
|
522
|
+
</div>
|
|
523
|
+
<div class="tag-result-row">
|
|
524
|
+
<p class="tag-rank">1</p>
|
|
525
|
+
<p class="tag-name">长纵连</p>
|
|
526
|
+
<p class="tag-rks">15.94</p>
|
|
527
|
+
</div>
|
|
528
|
+
<div class="tag-result-row">
|
|
529
|
+
<p class="tag-rank">2</p>
|
|
530
|
+
<p class="tag-name">快交互</p>
|
|
531
|
+
<p class="tag-rks">15.82</p>
|
|
532
|
+
</div>
|
|
533
|
+
<div class="tag-result-row">
|
|
534
|
+
<p class="tag-rank">3</p>
|
|
535
|
+
<p class="tag-name">差速</p>
|
|
536
|
+
<p class="tag-rks">15.71</p>
|
|
537
|
+
</div>
|
|
538
|
+
</div>
|
|
539
|
+
<div class="tag-ranking-group weak-tags">
|
|
540
|
+
<div class="tag-column-title">
|
|
541
|
+
<span></span>
|
|
542
|
+
<p>薄弱词条</p>
|
|
543
|
+
</div>
|
|
544
|
+
<div class="tag-result-row">
|
|
545
|
+
<p class="tag-rank">1</p>
|
|
546
|
+
<p class="tag-name">拍砖</p>
|
|
547
|
+
<p class="tag-rks">14.86</p>
|
|
548
|
+
</div>
|
|
549
|
+
<div class="tag-result-row">
|
|
550
|
+
<p class="tag-rank">2</p>
|
|
551
|
+
<p class="tag-name">楼梯</p>
|
|
552
|
+
<p class="tag-rks">15.03</p>
|
|
553
|
+
</div>
|
|
554
|
+
<div class="tag-result-row">
|
|
555
|
+
<p class="tag-rank">3</p>
|
|
556
|
+
<p class="tag-name">锁手</p>
|
|
557
|
+
<p class="tag-rks">15.17</p>
|
|
558
|
+
</div>
|
|
559
|
+
</div>
|
|
560
|
+
</div>
|
|
561
|
+
</div>
|
|
562
|
+
</div>
|
|
563
|
+
<div class="tag-analysis-tip">
|
|
564
|
+
<p>当前谱面标签统计量较小,可以前往 https://www.phib19.top 或使用 /settap 指令进行投票哦!</p>
|
|
565
|
+
</div>
|
|
566
|
+
</section>
|
|
567
|
+
|
|
568
|
+
<section class="analysis-panel histogram-panel clip-box">
|
|
569
|
+
<div class="analysis-panel-head">
|
|
570
|
+
<div>
|
|
571
|
+
<p class="analysis-kicker">RKS DISTRIBUTION</p>
|
|
572
|
+
<p class="analysis-title">等效 RKS 直方图</p>
|
|
573
|
+
</div>
|
|
574
|
+
<div class="histogram-summary">
|
|
575
|
+
<p>平均 RKS</p>
|
|
576
|
+
<p>15.4287</p>
|
|
577
|
+
</div>
|
|
578
|
+
</div>
|
|
579
|
+
<div class="histogram-chart">
|
|
580
|
+
<div class="histogram-y-label">等效单曲 RKS</div>
|
|
581
|
+
<div class="histogram-plot">
|
|
582
|
+
<div class="histogram-scale">
|
|
583
|
+
<div class="histogram-grid-line" style="bottom: 0%">
|
|
584
|
+
<p>14.80</p>
|
|
585
|
+
</div>
|
|
586
|
+
<div class="histogram-grid-line" style="bottom: 25%">
|
|
587
|
+
<p>15.20</p>
|
|
588
|
+
</div>
|
|
589
|
+
<div class="histogram-grid-line" style="bottom: 50%">
|
|
590
|
+
<p>15.60</p>
|
|
591
|
+
</div>
|
|
592
|
+
<div class="histogram-grid-line" style="bottom: 75%">
|
|
593
|
+
<p>16.00</p>
|
|
594
|
+
</div>
|
|
595
|
+
<div class="histogram-grid-line" style="bottom: 100%">
|
|
596
|
+
<p>16.40</p>
|
|
597
|
+
</div>
|
|
598
|
+
<div class="average-marker" style="bottom: 39.3%">
|
|
599
|
+
<p>AVG 15.4287</p>
|
|
600
|
+
</div>
|
|
601
|
+
</div>
|
|
602
|
+
<div class="histogram-bars">
|
|
603
|
+
<div class="histogram-slot">
|
|
604
|
+
<div class="histogram-bar-area">
|
|
605
|
+
<div class="histogram-bar phi-bar" style="height: 82%"></div>
|
|
606
|
+
</div>
|
|
607
|
+
<p class="histogram-slot-label">P1</p>
|
|
608
|
+
</div>
|
|
609
|
+
<div class="histogram-slot">
|
|
610
|
+
<div class="histogram-bar-area">
|
|
611
|
+
<div class="histogram-bar phi-bar" style="height: 75%"></div>
|
|
612
|
+
</div>
|
|
613
|
+
<p class="histogram-slot-label">P2</p>
|
|
614
|
+
</div>
|
|
615
|
+
<div class="histogram-slot">
|
|
616
|
+
<div class="histogram-bar-area">
|
|
617
|
+
<div class="histogram-bar phi-bar" style="height: 69%"></div>
|
|
618
|
+
</div>
|
|
619
|
+
<p class="histogram-slot-label">P3</p>
|
|
620
|
+
</div>
|
|
621
|
+
<div class="histogram-slot">
|
|
622
|
+
<div class="histogram-bar-area">
|
|
623
|
+
<div class="histogram-bar best-bar" style="height: 66%"></div>
|
|
624
|
+
</div>
|
|
625
|
+
<p class="histogram-slot-label">B1</p>
|
|
626
|
+
</div>
|
|
627
|
+
<div class="histogram-slot">
|
|
628
|
+
<div class="histogram-bar-area">
|
|
629
|
+
<div class="histogram-bar best-bar" style="height: 64%"></div>
|
|
630
|
+
</div>
|
|
631
|
+
<p class="histogram-slot-label">B2</p>
|
|
632
|
+
</div>
|
|
633
|
+
<div class="histogram-slot">
|
|
634
|
+
<div class="histogram-bar-area">
|
|
635
|
+
<div class="histogram-bar best-bar" style="height: 62%"></div>
|
|
636
|
+
</div>
|
|
637
|
+
<p class="histogram-slot-label">B3</p>
|
|
638
|
+
</div>
|
|
639
|
+
<div class="histogram-slot">
|
|
640
|
+
<div class="histogram-bar-area">
|
|
641
|
+
<div class="histogram-bar best-bar" style="height: 60%"></div>
|
|
642
|
+
</div>
|
|
643
|
+
<p class="histogram-slot-label">B4</p>
|
|
644
|
+
</div>
|
|
645
|
+
<div class="histogram-slot">
|
|
646
|
+
<div class="histogram-bar-area">
|
|
647
|
+
<div class="histogram-bar best-bar" style="height: 58%"></div>
|
|
648
|
+
</div>
|
|
649
|
+
<p class="histogram-slot-label">B5</p>
|
|
650
|
+
</div>
|
|
651
|
+
<div class="histogram-slot">
|
|
652
|
+
<div class="histogram-bar-area">
|
|
653
|
+
<div class="histogram-bar best-bar" style="height: 56%"></div>
|
|
654
|
+
</div>
|
|
655
|
+
<p class="histogram-slot-label">B6</p>
|
|
656
|
+
</div>
|
|
657
|
+
<div class="histogram-slot">
|
|
658
|
+
<div class="histogram-bar-area">
|
|
659
|
+
<div class="histogram-bar best-bar" style="height: 54%"></div>
|
|
660
|
+
</div>
|
|
661
|
+
<p class="histogram-slot-label">B7</p>
|
|
662
|
+
</div>
|
|
663
|
+
<div class="histogram-slot">
|
|
664
|
+
<div class="histogram-bar-area">
|
|
665
|
+
<div class="histogram-bar best-bar" style="height: 52%"></div>
|
|
666
|
+
</div>
|
|
667
|
+
<p class="histogram-slot-label">B8</p>
|
|
668
|
+
</div>
|
|
669
|
+
<div class="histogram-slot">
|
|
670
|
+
<div class="histogram-bar-area">
|
|
671
|
+
<div class="histogram-bar best-bar" style="height: 50%"></div>
|
|
672
|
+
</div>
|
|
673
|
+
<p class="histogram-slot-label">B9</p>
|
|
674
|
+
</div>
|
|
675
|
+
<div class="histogram-slot">
|
|
676
|
+
<div class="histogram-bar-area">
|
|
677
|
+
<div class="histogram-bar best-bar" style="height: 48%"></div>
|
|
678
|
+
</div>
|
|
679
|
+
<p class="histogram-slot-label">B10</p>
|
|
680
|
+
</div>
|
|
681
|
+
<div class="histogram-slot">
|
|
682
|
+
<div class="histogram-bar-area">
|
|
683
|
+
<div class="histogram-bar best-bar" style="height: 46%"></div>
|
|
684
|
+
</div>
|
|
685
|
+
<p class="histogram-slot-label">B11</p>
|
|
686
|
+
</div>
|
|
687
|
+
<div class="histogram-slot">
|
|
688
|
+
<div class="histogram-bar-area">
|
|
689
|
+
<div class="histogram-bar best-bar" style="height: 44%"></div>
|
|
690
|
+
</div>
|
|
691
|
+
<p class="histogram-slot-label">B12</p>
|
|
692
|
+
</div>
|
|
693
|
+
<div class="histogram-slot">
|
|
694
|
+
<div class="histogram-bar-area">
|
|
695
|
+
<div class="histogram-bar best-bar" style="height: 42%"></div>
|
|
696
|
+
</div>
|
|
697
|
+
<p class="histogram-slot-label">B13</p>
|
|
698
|
+
</div>
|
|
699
|
+
<div class="histogram-slot">
|
|
700
|
+
<div class="histogram-bar-area">
|
|
701
|
+
<div class="histogram-bar best-bar" style="height: 40%"></div>
|
|
702
|
+
</div>
|
|
703
|
+
<p class="histogram-slot-label">B14</p>
|
|
704
|
+
</div>
|
|
705
|
+
<div class="histogram-slot">
|
|
706
|
+
<div class="histogram-bar-area">
|
|
707
|
+
<div class="histogram-bar best-bar" style="height: 38%"></div>
|
|
708
|
+
</div>
|
|
709
|
+
<p class="histogram-slot-label">B15</p>
|
|
710
|
+
</div>
|
|
711
|
+
<div class="histogram-slot">
|
|
712
|
+
<div class="histogram-bar-area">
|
|
713
|
+
<div class="histogram-bar best-bar" style="height: 36%"></div>
|
|
714
|
+
</div>
|
|
715
|
+
<p class="histogram-slot-label">B16</p>
|
|
716
|
+
</div>
|
|
717
|
+
<div class="histogram-slot">
|
|
718
|
+
<div class="histogram-bar-area">
|
|
719
|
+
<div class="histogram-bar best-bar" style="height: 34%"></div>
|
|
720
|
+
</div>
|
|
721
|
+
<p class="histogram-slot-label">B17</p>
|
|
722
|
+
</div>
|
|
723
|
+
<div class="histogram-slot">
|
|
724
|
+
<div class="histogram-bar-area">
|
|
725
|
+
<div class="histogram-bar best-bar" style="height: 32%"></div>
|
|
726
|
+
</div>
|
|
727
|
+
<p class="histogram-slot-label">B18</p>
|
|
728
|
+
</div>
|
|
729
|
+
<div class="histogram-slot">
|
|
730
|
+
<div class="histogram-bar-area">
|
|
731
|
+
<div class="histogram-bar best-bar" style="height: 30%"></div>
|
|
732
|
+
</div>
|
|
733
|
+
<p class="histogram-slot-label">B19</p>
|
|
734
|
+
</div>
|
|
735
|
+
<div class="histogram-slot">
|
|
736
|
+
<div class="histogram-bar-area">
|
|
737
|
+
<div class="histogram-bar best-bar" style="height: 28%"></div>
|
|
738
|
+
</div>
|
|
739
|
+
<p class="histogram-slot-label">B20</p>
|
|
740
|
+
</div>
|
|
741
|
+
<div class="histogram-slot">
|
|
742
|
+
<div class="histogram-bar-area">
|
|
743
|
+
<div class="histogram-bar best-bar" style="height: 26%"></div>
|
|
744
|
+
</div>
|
|
745
|
+
<p class="histogram-slot-label">B21</p>
|
|
746
|
+
</div>
|
|
747
|
+
<div class="histogram-slot">
|
|
748
|
+
<div class="histogram-bar-area">
|
|
749
|
+
<div class="histogram-bar best-bar" style="height: 24%"></div>
|
|
750
|
+
</div>
|
|
751
|
+
<p class="histogram-slot-label">B22</p>
|
|
752
|
+
</div>
|
|
753
|
+
<div class="histogram-slot">
|
|
754
|
+
<div class="histogram-bar-area">
|
|
755
|
+
<div class="histogram-bar best-bar" style="height: 22%"></div>
|
|
756
|
+
</div>
|
|
757
|
+
<p class="histogram-slot-label">B23</p>
|
|
758
|
+
</div>
|
|
759
|
+
<div class="histogram-slot">
|
|
760
|
+
<div class="histogram-bar-area">
|
|
761
|
+
<div class="histogram-bar best-bar" style="height: 20%"></div>
|
|
762
|
+
</div>
|
|
763
|
+
<p class="histogram-slot-label">B24</p>
|
|
764
|
+
</div>
|
|
765
|
+
<div class="histogram-slot">
|
|
766
|
+
<div class="histogram-bar-area">
|
|
767
|
+
<div class="histogram-bar best-bar" style="height: 18%"></div>
|
|
768
|
+
</div>
|
|
769
|
+
<p class="histogram-slot-label">B25</p>
|
|
770
|
+
</div>
|
|
771
|
+
<div class="histogram-slot">
|
|
772
|
+
<div class="histogram-bar-area">
|
|
773
|
+
<div class="histogram-bar best-bar" style="height: 16%"></div>
|
|
774
|
+
</div>
|
|
775
|
+
<p class="histogram-slot-label">B26</p>
|
|
776
|
+
</div>
|
|
777
|
+
<div class="histogram-slot">
|
|
778
|
+
<div class="histogram-bar-area">
|
|
779
|
+
<div class="histogram-bar best-bar" style="height: 14%"></div>
|
|
780
|
+
</div>
|
|
781
|
+
<p class="histogram-slot-label">B27</p>
|
|
782
|
+
</div>
|
|
783
|
+
</div>
|
|
784
|
+
</div>
|
|
785
|
+
</div>
|
|
786
|
+
<div class="histogram-legend">
|
|
787
|
+
<p><span class="legend-dot phi-dot"></span>P1-P3</p>
|
|
788
|
+
<p><span class="legend-dot best-dot"></span>B1-B27</p>
|
|
789
|
+
<p>30 个有效槽位</p>
|
|
790
|
+
</div>
|
|
791
|
+
</section>
|
|
792
|
+
</div>
|
|
793
|
+
|
|
794
|
+
<div class="createdbox">
|
|
795
|
+
<div class="phi-plugin">
|
|
796
|
+
<p>{{_plugin}}</p>
|
|
797
|
+
</div>
|
|
798
|
+
<div class="ver">
|
|
799
|
+
<p>v0.9.4</p>
|
|
800
|
+
</div>
|
|
801
|
+
</div>
|
|
802
|
+
|
|
803
|
+
<div class="copyright">
|
|
804
|
+
<p>*Phi-Plugin不是Phigros官方项目,与南京鸽游网络有限公司及Phigros官方不存在授权、合作或运营关系。
|
|
805
|
+
</p>
|
|
806
|
+
</div>
|
|
807
|
+
|
|
808
|
+
<!-- 曲目名称自适应name-box的宽度 -->
|
|
809
|
+
<script>
|
|
810
|
+
function adjustFontSize() {
|
|
811
|
+
//获取p元素
|
|
812
|
+
let a = document.getElementsByName("pvis")
|
|
813
|
+
for (let i = 0; i < a.length; ++i) {
|
|
814
|
+
let songName = a[i]
|
|
815
|
+
|
|
816
|
+
if (!songName) continue
|
|
817
|
+
|
|
818
|
+
/*调整曲目名称字体大小*/
|
|
819
|
+
let parentElement = songName.parentElement
|
|
820
|
+
let maxFontSize = 100 //设置最大字体大小
|
|
821
|
+
songName.style.fontSize = maxFontSize + "px"
|
|
822
|
+
|
|
823
|
+
// 如果字体宽度大于父元素宽度,则减小字体大小
|
|
824
|
+
let fontSize = maxFontSize
|
|
825
|
+
songName.style.fontSize = fontSize + "px"
|
|
826
|
+
|
|
827
|
+
// 使用倍增算法快速减小字体大小
|
|
828
|
+
while (
|
|
829
|
+
songName.scrollWidth > parentElement.offsetWidth ||
|
|
830
|
+
songName.scrollHeight > parentElement.offsetHeight
|
|
831
|
+
) {
|
|
832
|
+
fontSize = Math.floor(fontSize / 2)
|
|
833
|
+
songName.style.fontSize = fontSize + "px"
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
// 逐步增加字体大小,找到最合适的大小
|
|
837
|
+
while (
|
|
838
|
+
songName.scrollWidth <= parentElement.offsetWidth &&
|
|
839
|
+
songName.scrollHeight <= parentElement.offsetHeight &&
|
|
840
|
+
fontSize < maxFontSize
|
|
841
|
+
) {
|
|
842
|
+
fontSize += 1
|
|
843
|
+
songName.style.fontSize = fontSize + "px"
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
// 回退到合适的字体大小
|
|
847
|
+
songName.style.fontSize = fontSize - 1 + "px"
|
|
848
|
+
}
|
|
849
|
+
}
|
|
850
|
+
window.onload = adjustFontSize
|
|
851
|
+
window.onresize = adjustFontSize
|
|
852
|
+
</script>
|
|
853
|
+
</body>
|