nonebot-plugin-osubot 6.22.3__py3-none-any.whl → 6.26.4__py3-none-any.whl
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.
- nonebot_plugin_osubot/api.py +12 -7
- nonebot_plugin_osubot/config.py +10 -10
- nonebot_plugin_osubot/draw/bmap.py +20 -22
- nonebot_plugin_osubot/draw/bp.py +3 -13
- nonebot_plugin_osubot/draw/catch_preview.py +2 -16
- nonebot_plugin_osubot/draw/echarts.py +8 -1
- nonebot_plugin_osubot/draw/info.py +59 -207
- nonebot_plugin_osubot/draw/info_templates/index.html +507 -0
- nonebot_plugin_osubot/draw/info_templates/output.css +2 -0
- nonebot_plugin_osubot/draw/map.py +9 -11
- nonebot_plugin_osubot/draw/osu_preview.py +50 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/css/style.css +258 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/README.md +109 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.js +3 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.js.map +1 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.worker.js +3 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.worker.js.map +1 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/beatmap.js +211 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/hitobject.js +29 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/point.js +55 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/scroll.js +45 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/timingpoint.js +35 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/LegacyRandom.js +81 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/PalpableCatchHitObject.js +53 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/bananashower.js +33 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/catch.js +211 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/fruit.js +21 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/juicestream.js +176 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/hitnote.js +21 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/holdnote.js +37 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/mania.js +164 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/preview.js +61 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/bezier2.js +33 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/catmullcurve.js +34 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/centripetalcatmullrom.js +30 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/circumstancedcircle.js +47 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/curve.js +25 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/curvetype.js +17 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/equaldistancemulticurve.js +70 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/linearbezier.js +40 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/hitcircle.js +85 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/slider.js +120 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/spinner.js +56 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/standard.js +170 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/donkat.js +40 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/drumroll.js +34 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/shaker.js +58 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/taiko.js +120 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/js/util.js +61 -0
- nonebot_plugin_osubot/draw/osu_preview_templates/pic.html +110 -0
- nonebot_plugin_osubot/draw/rating.py +6 -3
- nonebot_plugin_osubot/draw/score.py +23 -81
- nonebot_plugin_osubot/draw/taiko_preview.py +14 -13
- nonebot_plugin_osubot/draw/templates/bpa_chart.html +1 -1
- nonebot_plugin_osubot/draw/utils.py +162 -16
- nonebot_plugin_osubot/file.py +184 -31
- nonebot_plugin_osubot/mania/__init__.py +9 -10
- nonebot_plugin_osubot/matcher/__init__.py +2 -0
- nonebot_plugin_osubot/matcher/bp_analyze.py +14 -9
- nonebot_plugin_osubot/matcher/guess.py +250 -294
- nonebot_plugin_osubot/matcher/map_convert.py +21 -13
- nonebot_plugin_osubot/matcher/medal.py +1 -1
- nonebot_plugin_osubot/matcher/osudl.py +5 -4
- nonebot_plugin_osubot/matcher/pr.py +0 -4
- nonebot_plugin_osubot/matcher/preview.py +10 -3
- nonebot_plugin_osubot/matcher/recommend.py +7 -12
- nonebot_plugin_osubot/mods.py +62 -61
- nonebot_plugin_osubot/network/first_response.py +1 -1
- nonebot_plugin_osubot/osufile/mods/AP.png +0 -0
- nonebot_plugin_osubot/osufile/mods/CL.png +0 -0
- nonebot_plugin_osubot/osufile/mods/DT.png +0 -0
- nonebot_plugin_osubot/osufile/mods/EZ.png +0 -0
- nonebot_plugin_osubot/osufile/mods/FI.png +0 -0
- nonebot_plugin_osubot/osufile/mods/FL.png +0 -0
- nonebot_plugin_osubot/osufile/mods/HD.png +0 -0
- nonebot_plugin_osubot/osufile/mods/HR.png +0 -0
- nonebot_plugin_osubot/osufile/mods/HT.png +0 -0
- nonebot_plugin_osubot/osufile/mods/MR.png +0 -0
- nonebot_plugin_osubot/osufile/mods/NC.png +0 -0
- nonebot_plugin_osubot/osufile/mods/NF.png +0 -0
- nonebot_plugin_osubot/osufile/mods/PF.png +0 -0
- nonebot_plugin_osubot/osufile/mods/RX.png +0 -0
- nonebot_plugin_osubot/osufile/mods/SD.png +0 -0
- nonebot_plugin_osubot/osufile/mods/SO.png +0 -0
- nonebot_plugin_osubot/osufile/mods/TD.png +0 -0
- nonebot_plugin_osubot/osufile/mods/V2.png +0 -0
- nonebot_plugin_osubot/pp.py +7 -0
- nonebot_plugin_osubot/schema/__init__.py +0 -2
- nonebot_plugin_osubot/schema/beatmapsets.py +42 -0
- nonebot_plugin_osubot/schema/draw_info.py +54 -0
- nonebot_plugin_osubot/schema/score.py +1 -0
- nonebot_plugin_osubot/schema/user.py +1 -0
- {nonebot_plugin_osubot-6.22.3.dist-info → nonebot_plugin_osubot-6.26.4.dist-info}/METADATA +18 -17
- {nonebot_plugin_osubot-6.22.3.dist-info → nonebot_plugin_osubot-6.26.4.dist-info}/RECORD +95 -55
- nonebot_plugin_osubot-6.26.4.dist-info/WHEEL +4 -0
- nonebot_plugin_osubot/data/osu/1849145.osz +0 -0
- nonebot_plugin_osubot/data/osu/1849145.zip +0 -0
- nonebot_plugin_osubot/draw/templates/t.html +0 -58
- nonebot_plugin_osubot/schema/sayo_beatmap.py +0 -59
- nonebot_plugin_osubot-6.22.3.dist-info/WHEEL +0 -4
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
nonebot_plugin_osubot/__init__.py,sha256=Q-mTTnOIdKiKG6JrVm-kqpPrAhOP9lWyiKHNRqA7gpc,1478
|
|
2
|
-
nonebot_plugin_osubot/api.py,sha256=
|
|
2
|
+
nonebot_plugin_osubot/api.py,sha256=I_T7Bl89qFbxF7VdzhYrV_RL1SyCLqrdDmK6EQvStRk,16568
|
|
3
3
|
nonebot_plugin_osubot/beatmap_stats_moder.py,sha256=mNNTufc-gvO4NdYa3TnealSZI4-LBoiTlb599SeLBck,2915
|
|
4
|
-
nonebot_plugin_osubot/config.py,sha256=
|
|
5
|
-
nonebot_plugin_osubot/data/osu/1849145.osz,sha256=enbHOvDu6ZkvQBM7gtvgZBY-r0a7z87pG62Xm9hXUSI,6933013
|
|
6
|
-
nonebot_plugin_osubot/data/osu/1849145.zip,sha256=k957Du9QVliv1rt6ku3sKDoTIOeyJkFtUqufXzD4WLE,6933013
|
|
4
|
+
nonebot_plugin_osubot/config.py,sha256=g8iqhNmyBLNolYB_ZogmKaNAjXASMVpwKOYDYdHh0Dk,301
|
|
7
5
|
nonebot_plugin_osubot/database/__init__.py,sha256=7CDo9xU_DGLQ6uTj_mU_Px92phg_DMU5mP6WvgOxFLY,101
|
|
8
6
|
nonebot_plugin_osubot/database/models.py,sha256=VF_MxR70eRbiIHtqWjpE_Vea4xR38X0RJiQIO96mjsY,1595
|
|
9
7
|
nonebot_plugin_osubot/draw/__init__.py,sha256=dRELA2Vi4gTe8v48q0iHXLDOEj7Unk-_ChDXJp3qkhg,265
|
|
10
|
-
nonebot_plugin_osubot/draw/bmap.py,sha256=
|
|
11
|
-
nonebot_plugin_osubot/draw/bp.py,sha256=
|
|
12
|
-
nonebot_plugin_osubot/draw/catch_preview.py,sha256=
|
|
8
|
+
nonebot_plugin_osubot/draw/bmap.py,sha256=AfOCYVFPtjrrUaqTi-zfl5c3_lCQvIF1XoV31H5a4ko,5123
|
|
9
|
+
nonebot_plugin_osubot/draw/bp.py,sha256=HP6vgAUunEb-zQmqWm_hO-SLrf8InM4nX6HF8-xcJxs,8594
|
|
10
|
+
nonebot_plugin_osubot/draw/catch_preview.py,sha256=PvbxneF9QGSIyHqjDF9CunbNonPtdmeo7lSpTqv-q80,965
|
|
13
11
|
nonebot_plugin_osubot/draw/catch_preview_templates/css/style.css,sha256=2I1VwycLhKJMxwjHj19zAV6MBkFMLu_qLunpoiRlGlM,3919
|
|
14
12
|
nonebot_plugin_osubot/draw/catch_preview_templates/js/beatmap/beatmap.js,sha256=xh6RUz3D40-HJHu0KGqac_eAIHGoAR12bF58V9ft7iQ,5784
|
|
15
13
|
nonebot_plugin_osubot/draw/catch_preview_templates/js/beatmap/hitobject.js,sha256=q9b2KA2qHkWkkGzEq1Djk5RwVr538E0B22jNIIU9n84,736
|
|
@@ -39,55 +37,96 @@ nonebot_plugin_osubot/draw/catch_preview_templates/js/util.js,sha256=XveUlX-d0vr
|
|
|
39
37
|
nonebot_plugin_osubot/draw/catch_preview_templates/js/viewbox.js,sha256=RPsUyoKNAQub2n7oUGwWyFppZu0iVuy6DD5gggQZS3E,1641
|
|
40
38
|
nonebot_plugin_osubot/draw/catch_preview_templates/js/zip.min.js,sha256=pQmrVxuGCMeLS-XS3QsVhzjwap28fr9Ya083uPlg1sM,86405
|
|
41
39
|
nonebot_plugin_osubot/draw/catch_preview_templates/pic.html,sha256=jwPxxyYFLGpbD29h8u_j3LBY33ya7BS2R_t95EldAmk,3092
|
|
42
|
-
nonebot_plugin_osubot/draw/echarts.py,sha256=
|
|
43
|
-
nonebot_plugin_osubot/draw/info.py,sha256=
|
|
44
|
-
nonebot_plugin_osubot/draw/
|
|
40
|
+
nonebot_plugin_osubot/draw/echarts.py,sha256=0fmfxKdnGUe7FKKb_7kS6Qj_PyrUZHUam7altC0WyKg,1142
|
|
41
|
+
nonebot_plugin_osubot/draw/info.py,sha256=KcSwa8QWq7RKoeqezeZy_XFQ3dR1gBLlEAPwlLCrU4E,4915
|
|
42
|
+
nonebot_plugin_osubot/draw/info_templates/index.html,sha256=gW8UzQm8w-FAGLwMuBoSOIeChzwx945BX9dwYFS4SMo,31577
|
|
43
|
+
nonebot_plugin_osubot/draw/info_templates/output.css,sha256=QqvWEr36SY2mYsOHNKmTDJJOZKdlspnPbaD7s2cVclk,8049
|
|
44
|
+
nonebot_plugin_osubot/draw/map.py,sha256=Z0IKhUj0FyvyVmZROCwVRVSCt50ca6al9jZBZkp56hg,8640
|
|
45
45
|
nonebot_plugin_osubot/draw/match_history.py,sha256=GBJl6lAA27U7NSMC2isEzD_YsoIPAeG6ijDu7Oflcl0,997
|
|
46
|
-
nonebot_plugin_osubot/draw/
|
|
47
|
-
nonebot_plugin_osubot/draw/
|
|
46
|
+
nonebot_plugin_osubot/draw/osu_preview.py,sha256=2rc3Py7rQsFfLvva_T9cd6gnIrB81eNEgK-IhJY1Ih0,2053
|
|
47
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/css/style.css,sha256=neIW9iHRsinAW-eE-Q7NNqFIIEV8W7XgHLqEou0aTeE,3684
|
|
48
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/README.md,sha256=0XvSRA6fweAVQBrl9DcSKIYxxTKJpO-N8Wb4ePPj1Ow,4136
|
|
49
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.js,sha256=qLERBxuzsSPDAuYYLAHWs1UPk6S2JzmLB8RoddhAkLs,13451
|
|
50
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.js.map,sha256=1Hg6tubanG4YHx_ezCr88Kkcf-po-RxFm2ovxXt8h-Q,29120
|
|
51
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.worker.js,sha256=yp4wSFV-wF1hnhi4NAPNNmnIiTnl-i1gNM52JdRFlw0,16636
|
|
52
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/gif.js/gif.worker.js.map,sha256=gasS_2E9Lp3sbSC0PtRd70pW7BzYqw7lMcC65aD2k2M,55277
|
|
53
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/beatmap.js,sha256=xra2zaBmCtlw-_4uhZM_ipvk_CaakOYIeygREIHDmEM,5338
|
|
54
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/hitobject.js,sha256=q9b2KA2qHkWkkGzEq1Djk5RwVr538E0B22jNIIU9n84,736
|
|
55
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/point.js,sha256=AXybWPbpUypXCVdz_Vqdk8HjEgDQd6cT-360gGmrCas,1035
|
|
56
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/scroll.js,sha256=wR9dkpKabP1TyMssfs8i2WLUxyR_ZX7RRc7KLXUjoXo,1833
|
|
57
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/beatmap/timingpoint.js,sha256=boHMAQOT-860VOi-jQIrq4cwKgCo1kZvNDy0bzUxZLE,803
|
|
58
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/LegacyRandom.js,sha256=HDiks3FCVQBtVK5VzN7YV9Ekkk_WHYi0fPk3-XCQaj8,2155
|
|
59
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/PalpableCatchHitObject.js,sha256=KJ8dKV-bJttDO6O2wOwQC2mN4oDHHXT_LVJ3iQNsH_M,1787
|
|
60
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/bananashower.js,sha256=BREF62ns4usHR78z9ME1QJHKSX98WLKDv3DI0fJmUsI,922
|
|
61
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/catch.js,sha256=FZOUQsxrdJbUYTLM1EZQf7pjZt3HN04SE-Tr-xxr8u4,7752
|
|
62
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/fruit.js,sha256=ABvFMbmXP0t5wACUhSVbu8sVJ845mWJ9sWiQJtMV5co,437
|
|
63
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/catch/juicestream.js,sha256=DA1336uMGG5HY8hXLcCcnfFGu-YyURdxHTtCQ5pqBDU,7011
|
|
64
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/hitnote.js,sha256=VH0R-1BNes9FzXPj3p3XT7PI0DIiEstPeb2nouoIYHk,711
|
|
65
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/holdnote.js,sha256=wv4hqedZ9457f00cuPRGuo8IbSBqJq3-Qksz_mnAPXA,1162
|
|
66
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/mania/mania.js,sha256=hVYBqgzAvm99v4l7cmcgi70YjeY5c3B6BnmG66OG_FQ,4593
|
|
67
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/preview.js,sha256=lgZ-kGpQOPe-pgvWOWzNuoCF9IHfWYYqrTfxW1QkVeg,1760
|
|
68
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/bezier2.js,sha256=J3wvdScuhYCngTvZ3vg9ld6yoDE09ht5g4Etsp4bJkE,955
|
|
69
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/catmullcurve.js,sha256=aGmfIAONuOoy87W5Pyl1X8ifr3w6W9mkM_AENmZRUF0,932
|
|
70
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/centripetalcatmullrom.js,sha256=bndps8pDX4JMEbqLxIVb-aO7IoHHXnT8-jkWJnLlfq0,1203
|
|
71
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/circumstancedcircle.js,sha256=qf7wZMH3-thilEoB1Grrhr9W-U-JIClRNkhZh2RzGTY,1558
|
|
72
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/curve.js,sha256=mWs8BuYnMoSFYnbqz7UZtC4UfHNu86x8BEF0oVQomMo,646
|
|
73
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/curvetype.js,sha256=y3uiQSz1BjGIhIMn4fNlplPRGqxozHOuIa8jN-G06Vs,496
|
|
74
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/equaldistancemulticurve.js,sha256=U8sjoBG1ETEa9vlToqc32hyQYj41KrcRVvEdxnD-uGo,2280
|
|
75
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/curve/linearbezier.js,sha256=sGe0u0Aqwh8R4y2BP91Dsz1MfhvtvTrrOVMV_gYsQhY,1075
|
|
76
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/hitcircle.js,sha256=afjTLJhZjL2ZMR9IAuRaW7Y93QQumHHmZ3zN_P7mf0c,2452
|
|
77
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/slider.js,sha256=rgUE4dWpl0IMK5BPhpnlRWjNdzQP1HxF2O4VcthzIVw,3886
|
|
78
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/spinner.js,sha256=mq6ZIQnwLnbB68MDxTLhYB2w-Pdmoe_YlcAL6SmmX-M,1725
|
|
79
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/standard/standard.js,sha256=l7-v3lr5DQ4XRsHBOkHAREDv6nXaYlw8UtNEQyeupek,5052
|
|
80
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/donkat.js,sha256=VMxWauRgovuV__2F-lL2kKZvpM6mZ_wUwd3IMSdMG_M,945
|
|
81
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/drumroll.js,sha256=3FjBLFOmqHKqPyeuAu4IRQw86mGkuAjCiBreq5cOqOg,945
|
|
82
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/shaker.js,sha256=oueLYtlQCDBpBv_JNwJz_RY6PbDCBbd837NeF8o82T8,1900
|
|
83
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/taiko/taiko.js,sha256=TEOiZydvVlGabGebv2V6kSfikc5-S2oUmbwhFfvDxPk,3296
|
|
84
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/js/util.js,sha256=XveUlX-d0vrUnXaGbR8y428s6Nw2zhDR235pFko_MxM,1504
|
|
85
|
+
nonebot_plugin_osubot/draw/osu_preview_templates/pic.html,sha256=q8FgImgnH-FOPRGMtecD6DwN1B-iiLX1SLM-vMQFXy8,4285
|
|
86
|
+
nonebot_plugin_osubot/draw/rating.py,sha256=LqoefqBCJsv6KXbDQsuNsohiNnzmWufwIPq2wpCjHoc,20634
|
|
87
|
+
nonebot_plugin_osubot/draw/score.py,sha256=qV9hglzn9QlgjAzyYij4g2uEsbBF-XAGTHNkmThOVVg,27329
|
|
48
88
|
nonebot_plugin_osubot/draw/static.py,sha256=wdlzNO3xyiauKiMLr_h-B9uAsFU7fX_Y-fOusYKZP3k,4132
|
|
49
|
-
nonebot_plugin_osubot/draw/taiko_preview.py,sha256=
|
|
50
|
-
nonebot_plugin_osubot/draw/templates/bpa_chart.html,sha256=
|
|
89
|
+
nonebot_plugin_osubot/draw/taiko_preview.py,sha256=X2hzWewMfH_0wFLBBtAALrXwT55pdytIu7215p0Gfws,11414
|
|
90
|
+
nonebot_plugin_osubot/draw/templates/bpa_chart.html,sha256=J0YbxM2_iGHIgLKs6qBbL-wdmNJ4Fc4FAQcc22RDuD8,7019
|
|
51
91
|
nonebot_plugin_osubot/draw/templates/echarts.min.js,sha256=IF32ooP8NPIzQg_fs7lVHpwG92JcCPE1TZAEyFSgGZU,1022939
|
|
52
92
|
nonebot_plugin_osubot/draw/templates/mod_chart.html,sha256=Iz71KM5v9z_Rt2vqJ5WIZumRIHgDfcGIUmWGvVGZ-nQ,1508
|
|
53
93
|
nonebot_plugin_osubot/draw/templates/pp_rank_line_chart.html,sha256=Gyf-GR8ZBlWQTks0TlB3M8EWUBMVwiUaesFAmDISxLo,1417
|
|
54
|
-
nonebot_plugin_osubot/draw/
|
|
55
|
-
nonebot_plugin_osubot/draw/utils.py,sha256=6QDbByPQZCxI0k_i5MsExyWZ-sHgJUw6nEWLv85IgLY,15826
|
|
94
|
+
nonebot_plugin_osubot/draw/utils.py,sha256=yx3UdQFuISVeY6mpSRSr6KXjFMx2v6fTjZq_aivGcQE,21094
|
|
56
95
|
nonebot_plugin_osubot/exceptions.py,sha256=N_FsEk-9Eu2QnuznhdfWn6OoyA1HH73Q7bUaY89gVi0,40
|
|
57
|
-
nonebot_plugin_osubot/file.py,sha256=
|
|
96
|
+
nonebot_plugin_osubot/file.py,sha256=SEf92_4vce87-wwPOxm3PJ2wwi2lYokGK7AjgWBKMtI,9220
|
|
58
97
|
nonebot_plugin_osubot/info/__init__.py,sha256=I7YlMQiuHExEeJWqyzZb2I-Vl2uql3Py2LdhSH2Z9N0,136
|
|
59
98
|
nonebot_plugin_osubot/info/bg.py,sha256=Icua4bS38k0c-WbLUjhfS4IXOF83bgyu_oa2HwX4ZEQ,1541
|
|
60
99
|
nonebot_plugin_osubot/info/bind.py,sha256=b2ua625hbYym7rpb-kLBB-VDP5YWFdmT5RweM58ggWw,4934
|
|
61
|
-
nonebot_plugin_osubot/mania/__init__.py,sha256=
|
|
62
|
-
nonebot_plugin_osubot/matcher/__init__.py,sha256=
|
|
100
|
+
nonebot_plugin_osubot/mania/__init__.py,sha256=t5-24nd2FiZTKvMFvNg8ZV9Lp_OFSHjhj_gWUV3s1es,5560
|
|
101
|
+
nonebot_plugin_osubot/matcher/__init__.py,sha256=0f2_aeiBos3evT9eZRRh73Z0gpdwRcH8XpzUP6jbq-0,1369
|
|
63
102
|
nonebot_plugin_osubot/matcher/bind.py,sha256=QQJc2S7XFo5tu4CPloIET6fKaeiQixgb8M7QvULV6E0,2834
|
|
64
103
|
nonebot_plugin_osubot/matcher/bp.py,sha256=GidJfuZ9lJ7LwMq126DDOwMksNUOz4Bkab83OlKg8t8,3983
|
|
65
|
-
nonebot_plugin_osubot/matcher/bp_analyze.py,sha256=
|
|
104
|
+
nonebot_plugin_osubot/matcher/bp_analyze.py,sha256=xi40HVOcTvmHWR4WNLm706126CulfpV5UP0500FNiD8,4159
|
|
66
105
|
nonebot_plugin_osubot/matcher/getbg.py,sha256=Ar2yIST556MYRxzuXCLSDAMAmESRENN1fCty-kdH7PI,699
|
|
67
|
-
nonebot_plugin_osubot/matcher/guess.py,sha256=
|
|
106
|
+
nonebot_plugin_osubot/matcher/guess.py,sha256=1PSbtRwTOAEYXudt8I7AgvSi5WbY_wKOaSDsEgWdsEE,19956
|
|
68
107
|
nonebot_plugin_osubot/matcher/history.py,sha256=ZYkVJHdXuVJmhovRhwxFdqNp0o2uJJOACAZhhutyS3w,1577
|
|
69
108
|
nonebot_plugin_osubot/matcher/info.py,sha256=8CJHTOMTx_nzJ4ZwXo6ZfBwCuO3DtLprRX7jnMtPilk,858
|
|
70
109
|
nonebot_plugin_osubot/matcher/map.py,sha256=sFpOoFv63y-NOkCJhE6aW0DRYDl_8SoQOPsdq50QxT0,1404
|
|
71
|
-
nonebot_plugin_osubot/matcher/map_convert.py,sha256=
|
|
110
|
+
nonebot_plugin_osubot/matcher/map_convert.py,sha256=oklwbbcrEuous-mtHgGN3bN3PkDqKb95XXjIMSEp5Yk,6343
|
|
72
111
|
nonebot_plugin_osubot/matcher/match.py,sha256=uyrm8I_WgHK2ya1q46AUxNk_cQiKKh7GKlUzrrG1o7w,472
|
|
73
|
-
nonebot_plugin_osubot/matcher/medal.py,sha256=
|
|
112
|
+
nonebot_plugin_osubot/matcher/medal.py,sha256=LZf8hlXGHy8mdK2l97SsYCChfYYovEDBGNbUPO3AOsw,2967
|
|
74
113
|
nonebot_plugin_osubot/matcher/mu.py,sha256=l3Ebz47o46EvN2nvo9-zzQI4CTaLMcd5XW0qljqSGIM,445
|
|
75
114
|
nonebot_plugin_osubot/matcher/osu_help.py,sha256=64rOkYEOETvU8AF__0xLZjVRs3cTac0D1XEultPK_kM,728
|
|
76
|
-
nonebot_plugin_osubot/matcher/osudl.py,sha256=
|
|
77
|
-
nonebot_plugin_osubot/matcher/pr.py,sha256=
|
|
78
|
-
nonebot_plugin_osubot/matcher/preview.py,sha256=
|
|
115
|
+
nonebot_plugin_osubot/matcher/osudl.py,sha256=aItoFVYgozZHINpBuWv38syixtTOtaTtyBpWKZo94uI,1091
|
|
116
|
+
nonebot_plugin_osubot/matcher/pr.py,sha256=xGjQvEJHmIZkq9luu8TtbjBB8FykGI4Wzi_-eXghOjQ,4951
|
|
117
|
+
nonebot_plugin_osubot/matcher/preview.py,sha256=22zNjRdpwxbmIsyZQlUE-qXQBCQCfP_2WobGP7nZZh4,2314
|
|
79
118
|
nonebot_plugin_osubot/matcher/rank.py,sha256=sFEim3cR_vswzLmbagjqy-ypolcprAxQpawiSEcFqEI,3619
|
|
80
119
|
nonebot_plugin_osubot/matcher/rating.py,sha256=JY1Q1ELU3Y1FhQ7kVWVkgVsYEVxkAcxjsoMcwC_u234,450
|
|
81
|
-
nonebot_plugin_osubot/matcher/recommend.py,sha256=
|
|
120
|
+
nonebot_plugin_osubot/matcher/recommend.py,sha256=4R8rzxi-tC7aCb__64KzAKZo_-ginSb_U0HWK6xaRmI,2528
|
|
82
121
|
nonebot_plugin_osubot/matcher/score.py,sha256=Nk6dpDlszKJKdboTSQRBf-wMGioHIPqKSVWrnT0Xbns,1212
|
|
83
122
|
nonebot_plugin_osubot/matcher/update.py,sha256=MHpxoJmU0hKW82XuM9YpyCxUUjjiNKwejnRgYwueR4Q,3168
|
|
84
123
|
nonebot_plugin_osubot/matcher/update_mode.py,sha256=0Wy6Y1-rN7XcqBZyo37mYFdixq-4HxCwZftUaiYhZqE,1602
|
|
85
124
|
nonebot_plugin_osubot/matcher/url_match.py,sha256=opx4DYSQ83tk0qlMOBirl4TC49WXHgMZ04lMr9NCHNs,746
|
|
86
125
|
nonebot_plugin_osubot/matcher/utils.py,sha256=gWmNa31wUxcY_PNSNLy348x5_7sTY9ttMKH-5V5jkuE,4304
|
|
87
|
-
nonebot_plugin_osubot/mods.py,sha256=
|
|
126
|
+
nonebot_plugin_osubot/mods.py,sha256=4k1o01sVXLaiqyr2SqgJ5PlNwN8ZMkB9OpiigXr5gks,1493
|
|
88
127
|
nonebot_plugin_osubot/network/__init__.py,sha256=WOijcd81yhnpGKYeiDIOxbBDVI12GHPRGoOFfxrUuQk,61
|
|
89
128
|
nonebot_plugin_osubot/network/auto_retry.py,sha256=vDfYGbEVPF6WZLYXmRVkNvaxf6_6RyIqEAcA7TRwV_k,565
|
|
90
|
-
nonebot_plugin_osubot/network/first_response.py,sha256=
|
|
129
|
+
nonebot_plugin_osubot/network/first_response.py,sha256=jIYIF476aIUgpIcN08Wo8tXiwu0paNebCcaTuRPmlS4,924
|
|
91
130
|
nonebot_plugin_osubot/network/manager.py,sha256=x0GI1cFv3m3ZIS4oNJed197PaRo8_Vut_2J7m9ySV30,858
|
|
92
131
|
nonebot_plugin_osubot/osufile/Best Performance.png,sha256=qBNeZcym5vIqyE23K62ohjVBEPCjlNP9wQgXaT20XyY,704
|
|
93
132
|
nonebot_plugin_osubot/osufile/History Score.jpg,sha256=yv3-GaJ7sBAbAPMFlUeoyg1PzMhv31Ip5bC4H0qJfSA,836
|
|
@@ -358,24 +397,24 @@ nonebot_plugin_osubot/osufile/mods/6K.png,sha256=umRQwUCqGtRxL1J0OK4fEfPgda-sKTy
|
|
|
358
397
|
nonebot_plugin_osubot/osufile/mods/7K.png,sha256=zkeacf2WSDywv0zt4QCVTa4A54wbLI5_APvQZhnd0qY,970
|
|
359
398
|
nonebot_plugin_osubot/osufile/mods/8K.png,sha256=-NFuLd08N-7NiDV-blOprSP56Xx5kLBusmyvYVPdXKE,1045
|
|
360
399
|
nonebot_plugin_osubot/osufile/mods/9K.png,sha256=jMgg_a16eRrVV-a8wx4cTHyD9BozUzwibOhNIG4dQ-Y,1368
|
|
361
|
-
nonebot_plugin_osubot/osufile/mods/AP.png,sha256=
|
|
362
|
-
nonebot_plugin_osubot/osufile/mods/CL.png,sha256=
|
|
363
|
-
nonebot_plugin_osubot/osufile/mods/DT.png,sha256=
|
|
364
|
-
nonebot_plugin_osubot/osufile/mods/EZ.png,sha256=
|
|
365
|
-
nonebot_plugin_osubot/osufile/mods/FI.png,sha256=
|
|
366
|
-
nonebot_plugin_osubot/osufile/mods/FL.png,sha256=
|
|
367
|
-
nonebot_plugin_osubot/osufile/mods/HD.png,sha256=
|
|
368
|
-
nonebot_plugin_osubot/osufile/mods/HR.png,sha256=
|
|
369
|
-
nonebot_plugin_osubot/osufile/mods/HT.png,sha256=
|
|
370
|
-
nonebot_plugin_osubot/osufile/mods/MR.png,sha256=
|
|
371
|
-
nonebot_plugin_osubot/osufile/mods/NC.png,sha256=
|
|
372
|
-
nonebot_plugin_osubot/osufile/mods/NF.png,sha256=
|
|
373
|
-
nonebot_plugin_osubot/osufile/mods/PF.png,sha256=
|
|
374
|
-
nonebot_plugin_osubot/osufile/mods/RX.png,sha256=
|
|
375
|
-
nonebot_plugin_osubot/osufile/mods/SD.png,sha256=
|
|
376
|
-
nonebot_plugin_osubot/osufile/mods/SO.png,sha256=
|
|
377
|
-
nonebot_plugin_osubot/osufile/mods/TD.png,sha256=
|
|
378
|
-
nonebot_plugin_osubot/osufile/mods/V2.png,sha256=
|
|
400
|
+
nonebot_plugin_osubot/osufile/mods/AP.png,sha256=Fr1ip8Mxp-4FGInKRNSaEh-UOjjwBmFOn622P3bh7Js,1777
|
|
401
|
+
nonebot_plugin_osubot/osufile/mods/CL.png,sha256=d6umxTJ9Ukxr6qpuK0C_K49eDXpIupk_gLvmCyLulcQ,1595
|
|
402
|
+
nonebot_plugin_osubot/osufile/mods/DT.png,sha256=SKG0ueXlp1LkNBN7jYZLqFgFgAellleag_OTmCq7u_Q,1621
|
|
403
|
+
nonebot_plugin_osubot/osufile/mods/EZ.png,sha256=2v8urESIhNVuYHwfpw2DHjC2VuvuOo_fd0QIV6YpWSY,1303
|
|
404
|
+
nonebot_plugin_osubot/osufile/mods/FI.png,sha256=NPBvNd12oE4zrXtqfmK6swxJ-qe5Ao38edBldzCDnfM,1249
|
|
405
|
+
nonebot_plugin_osubot/osufile/mods/FL.png,sha256=CKx3ITzByhbJ4uDNoZ6c7RpjNcJlicI879pTVTLxvRY,1288
|
|
406
|
+
nonebot_plugin_osubot/osufile/mods/HD.png,sha256=67aJOk_HMuRpwRVu3bTsGOxRAGaMj218YYoQSYxw-RA,2159
|
|
407
|
+
nonebot_plugin_osubot/osufile/mods/HR.png,sha256=OwDFQTPbQIIwxymwGgyoGCS3RTkzPt0tdtk4238CnHc,1389
|
|
408
|
+
nonebot_plugin_osubot/osufile/mods/HT.png,sha256=I7E8Y87rtfsKzto_clVf4GiIu7CHYrP7FGmeZi89oKU,1404
|
|
409
|
+
nonebot_plugin_osubot/osufile/mods/MR.png,sha256=ksEwedL_bEBm34VIBt9IDfBFuB20VBn3C3F4sfyrhTs,1290
|
|
410
|
+
nonebot_plugin_osubot/osufile/mods/NC.png,sha256=CWo_Xkdmgsp1YOi-TamevcNdpYgq_1lAVDXZ5cGFqEQ,1365
|
|
411
|
+
nonebot_plugin_osubot/osufile/mods/NF.png,sha256=7C6rZp7ZbAo1SUC3uHUrd73OY_2Mn7KpofCM4SmGBG0,1634
|
|
412
|
+
nonebot_plugin_osubot/osufile/mods/PF.png,sha256=XbJt5JnqRUktT0kLXkCn6Iv9sLj1TFycQRsOmGnJjRE,1304
|
|
413
|
+
nonebot_plugin_osubot/osufile/mods/RX.png,sha256=tc6MTF1oDcji1P_wuEZjGORa4Ah3GaCQLM9ABatNg00,1265
|
|
414
|
+
nonebot_plugin_osubot/osufile/mods/SD.png,sha256=FQaNUkSCt92kAeEo5GVG4neWMN0TUdC637g8FMWbjuw,1695
|
|
415
|
+
nonebot_plugin_osubot/osufile/mods/SO.png,sha256=Fiz7A8x0MklH9PUsMz9vX9GYOp1p7o9pCcdhsZSmEkI,1512
|
|
416
|
+
nonebot_plugin_osubot/osufile/mods/TD.png,sha256=rWej0qHVNPxQJOztx_AYacYhJHnFlddO8X3xGwSLReQ,1498
|
|
417
|
+
nonebot_plugin_osubot/osufile/mods/V2.png,sha256=pyXx83YcJaimJL6i3DfrX8XdJ_3UmL8RgtP6ua0v7wM,1205
|
|
379
418
|
nonebot_plugin_osubot/osufile/pfm_ctb.png,sha256=9JJu8J1gR_nQhb1EWOuJUOjNitYK_gcH6MRGiYtvsGI,53451
|
|
380
419
|
nonebot_plugin_osubot/osufile/pfm_mania.png,sha256=PKlAezcKALo0UMnrYvTCL3pd-oJNEU76qLVPhfDLFdk,52208
|
|
381
420
|
nonebot_plugin_osubot/osufile/pfm_std.png,sha256=ts7e7IUeoalLuw0Pww0X3trXUpZwnWRsOqdQ1RzcdFM,57032
|
|
@@ -397,17 +436,18 @@ nonebot_plugin_osubot/osufile/work/stardiff.png,sha256=mBPOspsqNr1FkDolzTpnyIz-8
|
|
|
397
436
|
nonebot_plugin_osubot/osufile/work/stars.png,sha256=zifMmxxjOGzSZAm1tr-3ky_yy18p1bbjgkl3zYRMcp4,305
|
|
398
437
|
nonebot_plugin_osubot/osufile/work/stars_expertplus.png,sha256=cmfpErs-flPxHEhVmS9H8vy8H7mrChvV_Q4A77oSVFY,517
|
|
399
438
|
nonebot_plugin_osubot/osufile/work/suppoter.png,sha256=4V4eNhB8_8KIXsQ1jzFyHUkicKPb5LPehoIcri4h8E4,16061
|
|
400
|
-
nonebot_plugin_osubot/pp.py,sha256=
|
|
401
|
-
nonebot_plugin_osubot/schema/__init__.py,sha256=
|
|
439
|
+
nonebot_plugin_osubot/pp.py,sha256=zLKyiNcCFTaH3OE5deiqLxkQeVK261AXQ4d8uqc-3qA,3472
|
|
440
|
+
nonebot_plugin_osubot/schema/__init__.py,sha256=iC4BTSW_uPyH5-1xk3ByYa5kCicnOFWqxhuTmQKn2ik,411
|
|
402
441
|
nonebot_plugin_osubot/schema/alphaosu.py,sha256=7cJLIwl4X-dshYsXMi8hHgcp7Ly6BiI3pqwXENhMaX0,693
|
|
403
442
|
nonebot_plugin_osubot/schema/basemodel.py,sha256=aZI1rdOHx-kmMXohazq1s5tYdtR-2WRzfYQATmWd6a4,99
|
|
404
443
|
nonebot_plugin_osubot/schema/beatmap.py,sha256=UnobfZEHq1V2HG-A4j3BECubO-dB1JzTMA2_QIXttNM,1960
|
|
444
|
+
nonebot_plugin_osubot/schema/beatmapsets.py,sha256=rEbkmZHYXqmRtg9CyV0hzxc5kZFGm9OWoOv_laYripQ,780
|
|
445
|
+
nonebot_plugin_osubot/schema/draw_info.py,sha256=qb8oUFM8B7m6R8l2iPSvb1G1TGPQIB50ta3j8MZw_lU,1450
|
|
405
446
|
nonebot_plugin_osubot/schema/match.py,sha256=lR3pGNVR9K_5GZAdOLG6Ki-W3fwJvgMlNhYOzKNE3lg,494
|
|
406
447
|
nonebot_plugin_osubot/schema/ppysb/__init__.py,sha256=JK2Z4n44gUJPVKdETMJYJ5uIw-4a8T50y6j5n-YrlYM,1375
|
|
407
|
-
nonebot_plugin_osubot/schema/
|
|
408
|
-
nonebot_plugin_osubot/schema/
|
|
409
|
-
nonebot_plugin_osubot/schema/user.py,sha256=sxNmqymG_kIVuGuzfchSv9UML6NPG70cqo2_h5xDIpM,2250
|
|
448
|
+
nonebot_plugin_osubot/schema/score.py,sha256=o32jKDESzFwOFPZnzjKqxNIj0MPUL9mFvBqgaZARHac,3269
|
|
449
|
+
nonebot_plugin_osubot/schema/user.py,sha256=kORcHXn9guZ3WQJ4rfCFwOu6pe0c7lbebnSBZqm6cBg,2298
|
|
410
450
|
nonebot_plugin_osubot/utils/__init__.py,sha256=pyv8XxBcCOeQVDj1E4dgvktzcefgQXfKBlarsYGx1sg,815
|
|
411
|
-
nonebot_plugin_osubot-6.
|
|
412
|
-
nonebot_plugin_osubot-6.
|
|
413
|
-
nonebot_plugin_osubot-6.
|
|
451
|
+
nonebot_plugin_osubot-6.26.4.dist-info/WHEEL,sha256=DpNsHFUm_gffZe1FgzmqwuqiuPC6Y-uBCzibcJcdupM,78
|
|
452
|
+
nonebot_plugin_osubot-6.26.4.dist-info/METADATA,sha256=v4NuVSAPHzHqtExeHl0TK_aQOAULUpm5vU0QDEtoeoI,4539
|
|
453
|
+
nonebot_plugin_osubot-6.26.4.dist-info/RECORD,,
|
|
Binary file
|
|
Binary file
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
<head>
|
|
2
|
-
<meta charset="UTF-8">
|
|
3
|
-
<title>Awesome-pyecharts</title>
|
|
4
|
-
<script type="text/javascript" src="./echarts.min.js"></script>
|
|
5
|
-
</head>
|
|
6
|
-
<body >
|
|
7
|
-
<div id="1" class="chart-container" style="width:900px; height:500px; "></div>
|
|
8
|
-
<script>
|
|
9
|
-
const chart = echarts.init(
|
|
10
|
-
document.getElementById('1'), 'white', {renderer: 'canvas'}
|
|
11
|
-
);
|
|
12
|
-
const option = {
|
|
13
|
-
"animation": false,
|
|
14
|
-
title: {
|
|
15
|
-
text: 'title',
|
|
16
|
-
left: 'center' // 标题水平居中
|
|
17
|
-
},
|
|
18
|
-
xAxis: {
|
|
19
|
-
type: 'category',
|
|
20
|
-
data: ['2023-09-10', '2023-09-11', '2023-09-12', '2023-09-13', '2023-09-14', '2023-09-15', '2023-09-16', '2023-09-17', '2023-09-18', '2023-09-19', '2023-09-20', '2023-09-21', '2023-09-22', '2023-09-23', '2023-09-24', '2023-09-25', '2023-09-26', '2023-09-27', '2023-09-28', '2023-09-29', '2023-09-30', '2023-10-01', '2023-10-02', '2023-10-03', '2023-10-04', '2023-10-05', '2023-10-06', '2023-10-07', '2023-10-08', '2023-10-09', '2023-10-10', '2023-10-11', '2023-10-12', '2023-10-13', '2023-10-14', '2023-10-15', '2023-10-16', '2023-10-17', '2023-10-18', '2023-10-19', '2023-10-20', '2023-10-21', '2023-10-22', '2023-10-23', '2023-10-24', '2023-10-25', '2023-10-26', '2023-11-04', '2023-11-05', '2023-11-06', '2023-11-07', '2023-11-08', '2023-11-09', '2023-11-10', '2023-11-11', '2023-11-14', '2023-11-15', '2023-11-16', '2023-11-17', '2023-11-18', '2023-11-19', '2023-11-21', '2023-11-22', '2023-11-23', '2023-11-24', '2023-11-25', '2023-11-26', '2023-11-27', '2023-11-28', '2023-11-29', '2023-11-30', '2023-12-01', '2023-12-02', '2023-12-03', '2023-12-04', '2023-12-05', '2023-12-06', '2023-12-07', '2023-12-08', '2023-12-10', '2023-12-11', '2023-12-13', '2023-12-14', '2023-12-15', '2023-12-16', '2023-12-17', '2023-12-18', '2023-12-19', '2023-12-20', '2023-12-21', '2023-12-22', '2023-12-23', '2023-12-24', '2023-12-25', '2023-12-26', '2023-12-27', '2023-12-28', '2023-12-29', '2023-12-30', '2023-12-31', '2024-01-02', '2024-01-03', '2024-01-04', '2024-01-05', '2024-01-06', '2024-01-07', '2024-01-08', '2024-01-09', '2024-01-10', '2024-01-12', '2024-01-13', '2024-01-14', '2024-01-15', '2024-01-16', '2024-01-17', '2024-01-18', '2024-01-19', '2024-01-20', '2024-01-21', '2024-01-23', '2024-01-24', '2024-01-25', '2024-01-26', '2024-01-27', '2024-01-28', '2024-01-29', '2024-01-30', '2024-01-31', '2024-02-01', '2024-02-02', '2024-02-03', '2024-02-04', '2024-02-05', '2024-02-06', '2024-02-07', '2024-02-08', '2024-02-09', '2024-02-10', '2024-02-11', '2024-02-12', '2024-02-13', '2024-02-14', '2024-02-15', '2024-02-16', '2024-02-17', '2024-02-18', '2024-02-19', '2024-02-20', '2024-02-21', '2024-02-22', '2024-02-23', '2024-02-24', '2024-02-25', '2024-02-26', '2024-02-27', '2024-02-28', '2024-03-01', '2024-03-03', '2024-03-03', '2024-03-04', '2024-03-05', '2024-03-06', '2024-03-07', '2024-03-08', '2024-03-09', '2024-03-10', '2024-03-11', '2024-03-12', '2024-03-13', '2024-03-14', '2024-03-15', '2024-03-16', '2024-03-17', '2024-03-18', '2024-03-19', '2024-03-20', '2024-03-21', '2024-03-22', '2024-03-23', '2024-03-24', '2024-03-25', '2024-03-26', '2024-03-27', '2024-03-28', '2024-03-29', '2024-03-30', '2024-03-31', '2024-04-01', '2024-04-02', '2024-04-03', '2024-04-04', '2024-04-05', '2024-04-06', '2024-04-07', '2024-04-08', '2024-04-09', '2024-04-10', '2024-04-11', '2024-04-12', '2024-04-13', '2024-04-14', '2024-04-15', '2024-04-17', '2024-04-18', '2024-04-19', '2024-04-20', '2024-04-21', '2024-04-22', '2024-04-23', '2024-04-25', '2024-04-26', '2024-04-27', '2024-04-28', '2024-04-29', '2024-04-30', '2024-05-01', '2024-05-02', '2024-05-03', '2024-05-04', '2024-05-05', '2024-05-06', '2024-05-07', '2024-05-08', '2024-05-09', '2024-05-10', '2024-05-11', '2024-05-12', '2024-05-13', '2024-05-14', '2024-05-15', '2024-05-16', '2024-05-17', '2024-05-18', '2024-05-19', '2024-05-20', '2024-05-21', '2024-05-22', '2024-05-23', '2024-05-24', '2024-05-25', '2024-05-26', '2024-05-27', '2024-05-28', '2024-05-29', '2024-06-08', '2024-06-09', '2024-06-10', '2024-06-11', '2024-06-12', '2024-06-13', '2024-06-14', '2024-06-15', '2024-06-16', '2024-06-17', '2024-06-18', '2024-06-19', '2024-06-20', '2024-06-21', '2024-06-22', '2024-06-23', '2024-06-24', '2024-06-25', '2024-06-26', '2024-06-27', '2024-06-28', '2024-06-29', '2024-06-30', '2024-07-01', '2024-07-02', '2024-07-03', '2024-07-04', '2024-07-05', '2024-07-06', '2024-07-07', '2024-07-08', '2024-07-09', '2024-07-10', '2024-07-11', '2024-07-12', '2024-07-13', '2024-07-14', '2024-07-15', '2024-07-16', '2024-07-17', '2024-07-18', '2024-07-19', '2024-07-20', '2024-07-21', '2024-07-22', '2024-07-23', '2024-07-24', '2024-07-25', '2024-07-26', '2024-07-27', '2024-07-28', '2024-07-29', '2024-07-30', '2024-07-31', '2024-08-01', '2024-08-02', '2024-08-03', '2024-08-04', '2024-08-05', '2024-08-06', '2024-08-07', '2024-08-08', '2024-08-09', '2024-08-10', '2024-08-11', '2024-08-12', '2024-08-13', '2024-08-14', '2024-08-15', '2024-08-16', '2024-08-17', '2024-08-18', '2024-08-19', '2024-08-20', '2024-08-21', '2024-08-23', '2024-08-25', '2024-08-26', '2024-08-27', '2024-08-28', '2024-08-29', '2024-08-30']
|
|
21
|
-
},
|
|
22
|
-
yAxis: [{
|
|
23
|
-
type: 'value',
|
|
24
|
-
scale: true,
|
|
25
|
-
name: 'pp'
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
type: 'value',
|
|
29
|
-
scale: true,
|
|
30
|
-
alignTicks: true,
|
|
31
|
-
inverse: true,
|
|
32
|
-
nameLocation: 'start',
|
|
33
|
-
name: 'rank'
|
|
34
|
-
}],
|
|
35
|
-
legend: {
|
|
36
|
-
top: 30,
|
|
37
|
-
left: 'center',
|
|
38
|
-
data: ['pp', 'rank']
|
|
39
|
-
},
|
|
40
|
-
series: [
|
|
41
|
-
{
|
|
42
|
-
name: 'pp',
|
|
43
|
-
type: 'line',
|
|
44
|
-
data: [35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 35.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 63.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 217.0, 279.0, 502.0, 502.0, 502.0, 502.0, 502.0, 594.0, 645.0, 675.0, 711.0, 711.0, 734.0, 734.0, 760.0, 760.0, 760.0, 760.0, 760.0, 760.0, 760.0, 760.0, 760.0, 760.0, 760.0, 760.0, 760.0, 760.0, 760.0, 773.0, 773.0, 773.0, 780.0, 780.0, 780.0, 780.0, 780.0, 786.0, 786.0, 786.0, 786.0, 786.0, 846.0, 846.0, 846.0, 846.0, 846.0, 846.0, 846.0, 846.0, 846.0, 846.0, 846.0, 884.0, 884.0, 884.0, 884.0, 884.0, 884.0, 884.0, 884.0, 884.0, 884.0, 901.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0, 918.0],
|
|
45
|
-
yAxisIndex: 0,
|
|
46
|
-
connectNulls: true
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
name: 'rank',
|
|
50
|
-
type: 'line',
|
|
51
|
-
data: [597621, 598017, 598412, 598767, 599153, 599495, 599903, 600412, 600872, 601316, 601679, 602046, 602400, 602790, 603231, 603760, 604147, 604497, 604820, 605196, 605577, 606022, 606488, 606853, 607191, 607557, 607913, 608261, 608681, 609189, 609639, 610012, 610323, 610642, 610970, 611454, 611952, 612305, 612572, 612889, 613222, 613566, 614023, 614580, 614970, 615316, 615640, 618935, 619325, 619730, 620037, 620351, 620701, 621013, 621284, 622414, 622694, 622977, 623326, 623619, 623980, 624757, 625055, 625356, 625664, 625971, 626366, 626791, 627138, 627423, 627712, 628022, 628337, 628720, 629199, 629589, 629898, 630255, 630600, 631390, 631936, 633019, 633590, 634155, 634735, 635357, 636031, 636623, 637181, 637746, 638261, 638809, 638605, 639212, 639770, 640255, 640827, 641344, 641896, 642430, 643496, 643933, 644375, 644850, 644850, 645880, 646435, 646927, 647343, 648158, 648600, 649131, 649686, 650155, 650600, 651045, 651475, 651957, 652499, 653539, 653971, 654374, 654812, 655251, 655682, 656172, 656601, 657000, 657822, 658591, 659287, 660112, 660941, 661668, 662235, 662789, 663393, 664001, 664666, 665370, 666053, 666615, 667178, 667714, 668259, 668887, 669565, 670199, 670736, 671250, 671776, 672296, 672932, 672932, 674074, 674503, 675478, 676604, 676604, 677239, 677775, 678202, 678720, 679203, 679741, 680402, 681106, 681673, 682155, 682631, 683145, 683670, 684280, 684917, 685457, 685457, 701150, 701651, 702135, 702795, 703522, 704087, 704631, 705183, 705739, 706353, 707034, 707670, 708247, 708749, 709234, 709779, 710305, 710950, 711583, 712212, 712710, 713224, 713735, 714246, 714922, 715662, 716697, 717180, 717673, 718171, 718757, 719415, 719919, 720831, 721296, 721774, 722332, 722973, 723572, 724099, 724663, 725187, 725693, 726334, 726995, 727524, 722529, 723092, 723640, 724227, 724924, 725686, 726264, 726868, 517992, 473344, 364793, 365036, 365375, 365644, 365934, 333701, 317654, 309231, 299124, 299380, 293440, 293604, 288836, 289058, 289313, 289520, 289718, 289897, 290101, 290283, 290491, 290714, 290904, 291090, 291279, 291481, 291701, 288439, 288649, 288876, 287321, 287500, 287716, 287924, 288139, 286780, 286979, 287181, 287349, 287536, 272991, 273177, 273370, 273535, 273713, 273880, 274026, 274197, 274394, 274601, 274776, 266252, 266401, 266549, 266721, 266909, 267071, 267252, 267425, 267610, 267803, 264244, 260838, 261041, 261208, 261373, 261565, 261748, 261950, 262150, 262353, 262457, 262622, 262785, 262954, 263153, 263354, 263533, 263696, 263858, 264027, 264196, 264371, 264534, 264743, 264946, 265108, 265452, 265827, 266022, 266220, 266373, 266559, 266726],
|
|
52
|
-
yAxisIndex: 1,
|
|
53
|
-
connectNulls: true
|
|
54
|
-
}
|
|
55
|
-
]};
|
|
56
|
-
chart.setOption(option);
|
|
57
|
-
</script>
|
|
58
|
-
</body>
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
from typing import Optional
|
|
2
|
-
|
|
3
|
-
from .basemodel import Base
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class BidData(Base):
|
|
7
|
-
bid: int
|
|
8
|
-
mode: int
|
|
9
|
-
version: str
|
|
10
|
-
length: int
|
|
11
|
-
CS: float
|
|
12
|
-
AR: float
|
|
13
|
-
OD: float
|
|
14
|
-
HP: float
|
|
15
|
-
star: float
|
|
16
|
-
aim: float
|
|
17
|
-
speed: float
|
|
18
|
-
hit300window: float
|
|
19
|
-
pp: float
|
|
20
|
-
pp_aim: float
|
|
21
|
-
pp_speed: float
|
|
22
|
-
pp_acc: float
|
|
23
|
-
circles: int
|
|
24
|
-
sliders: int
|
|
25
|
-
spinners: int
|
|
26
|
-
maxcombo: int
|
|
27
|
-
playcount: int
|
|
28
|
-
passcount: int
|
|
29
|
-
bg: str
|
|
30
|
-
audio: str
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
class MapInfo(Base):
|
|
34
|
-
sid: int
|
|
35
|
-
local_update: int
|
|
36
|
-
bids_amount: int
|
|
37
|
-
approved: int
|
|
38
|
-
title: str
|
|
39
|
-
artist: str
|
|
40
|
-
titleU: str
|
|
41
|
-
artistU: str
|
|
42
|
-
creator: str
|
|
43
|
-
creator_id: int
|
|
44
|
-
source: str
|
|
45
|
-
last_update: int
|
|
46
|
-
approved_date: int
|
|
47
|
-
bpm: float
|
|
48
|
-
favourite_count: int
|
|
49
|
-
video: int
|
|
50
|
-
storyboard: int
|
|
51
|
-
tags: str
|
|
52
|
-
language: int
|
|
53
|
-
genre: int
|
|
54
|
-
bid_data: list[BidData]
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
class SayoBeatmap(Base):
|
|
58
|
-
status: int
|
|
59
|
-
data: Optional[MapInfo] = None
|