@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.
Files changed (629) hide show
  1. package/LICENSE +22 -0
  2. package/core/.github/ISSUE_TEMPLATE/bug.yaml +133 -0
  3. package/core/.github/ISSUE_TEMPLATE/config.yml +1 -0
  4. package/core/.github/ISSUE_TEMPLATE/enhancement.yml +44 -0
  5. package/core/.vscode/c_cpp_properties.json +18 -0
  6. package/core/.vscode/launch.json +24 -0
  7. package/core/.vscode/settings.json +59 -0
  8. package/core/CHANGELOG.md +184 -0
  9. package/core/LICENSE +674 -0
  10. package/core/README.md +330 -0
  11. package/core/README_en.md +285 -0
  12. package/core/apps/Dan.js +129 -0
  13. package/core/apps/RankList.js +322 -0
  14. package/core/apps/aliasProposal.js +223 -0
  15. package/core/apps/apiSetting.js +592 -0
  16. package/core/apps/b19.js +1329 -0
  17. package/core/apps/botClient.js +64 -0
  18. package/core/apps/chart.js +692 -0
  19. package/core/apps/guessGame/guessIll.js +821 -0
  20. package/core/apps/guessGame/guessLetter.js +831 -0
  21. package/core/apps/guessGame/guessTips.js +254 -0
  22. package/core/apps/guessGame/letterGameUtils.js +74 -0
  23. package/core/apps/guessGame.js +214 -0
  24. package/core/apps/help.js +117 -0
  25. package/core/apps/manage.js +288 -0
  26. package/core/apps/market.js +243 -0
  27. package/core/apps/money.js +1064 -0
  28. package/core/apps/phisong.js +1418 -0
  29. package/core/apps/session.js +664 -0
  30. package/core/apps/setting.js +468 -0
  31. package/core/apps/update.js +541 -0
  32. package/core/apps/user.js +968 -0
  33. package/core/components/Config.js +249 -0
  34. package/core/components/Data.js +304 -0
  35. package/core/components/FileWatcherRegistry.js +102 -0
  36. package/core/components/Logger.js +11 -0
  37. package/core/components/ProcessCleanup.js +113 -0
  38. package/core/components/Version.js +56 -0
  39. package/core/components/YamlReader.js +157 -0
  40. package/core/components/baseClass.js +287 -0
  41. package/core/components/common.js +47 -0
  42. package/core/components/index.js +13 -0
  43. package/core/components/platform/index.js +79 -0
  44. package/core/components/platform/koishi.js +800 -0
  45. package/core/components/platform/koishiDatabaseRedis.js +391 -0
  46. package/core/components/platform/memoryRedis.js +209 -0
  47. package/core/components/platform/types.d.ts +272 -0
  48. package/core/components/platform/yunzai.js +604 -0
  49. package/core/components/segment.js +4 -0
  50. 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
  51. package/core/config/default_config/banGroup.yaml +14 -0
  52. package/core/config/default_config/config.yaml +159 -0
  53. package/core/config/default_config/nickconfig.yaml +6 -0
  54. package/core/config/default_config/otherinfo.yaml +51 -0
  55. package/core/guoba.support.js +597 -0
  56. package/core/index.js +85 -0
  57. package/core/lib/AES.js +40 -0
  58. package/core/lib/Base64.js +22 -0
  59. package/core/lib/ByteReader.js +168 -0
  60. package/core/lib/GameProgress.js +37 -0
  61. package/core/lib/GameRecord.js +47 -0
  62. package/core/lib/GameSettings.js +24 -0
  63. package/core/lib/GameUser.js +19 -0
  64. package/core/lib/Level.js +6 -0
  65. package/core/lib/LevelRecord.js +9 -0
  66. package/core/lib/PhigrosUser.js +135 -0
  67. package/core/lib/SaveManager.js +117 -0
  68. package/core/lib/Summary.js +47 -0
  69. package/core/lib/TapTap/CompleteQRCodeData.js +27 -0
  70. package/core/lib/TapTap/LCHelper.js +81 -0
  71. package/core/lib/TapTap/TapTapHelper.js +170 -0
  72. package/core/lib/TapTap/getQRcode.js +61 -0
  73. package/core/lib/Util.js +30 -0
  74. package/core/lib/getQRcode.js +73 -0
  75. package/core/lib/http.js +105 -0
  76. package/core/model/README.md +3 -0
  77. package/core/model/api/aliasProposalService.js +151 -0
  78. package/core/model/api/apiVersion.js +67 -0
  79. package/core/model/api/autoSeekApi.js +165 -0
  80. package/core/model/api/botApiAuth.js +208 -0
  81. package/core/model/api/botSyncService.js +78 -0
  82. package/core/model/api/gameRecordPayload.js +24 -0
  83. package/core/model/api/makeRequest.js +1004 -0
  84. package/core/model/api/makeRequestFnc.js +17 -0
  85. package/core/model/api/phiApiClient.js +53 -0
  86. package/core/model/api/phiApiErrors.js +121 -0
  87. package/core/model/filesystem/getFile.js +256 -0
  88. package/core/model/filesystem/path.js +84 -0
  89. package/core/model/game/Chart.js +57 -0
  90. package/core/model/game/LevelRecordInfo.js +109 -0
  91. package/core/model/game/SongsInfo.js +46 -0
  92. package/core/model/game/b30Analysis.js +93 -0
  93. package/core/model/game/chartParser/Chart.js +23 -0
  94. package/core/model/game/chartParser/JudgeLine.js +38 -0
  95. package/core/model/game/chartParser/base/JudgeLineEvent.js +99 -0
  96. package/core/model/game/chartParser/base/Note.js +44 -0
  97. package/core/model/game/chartParser/base/SpeedEvent.js +25 -0
  98. package/core/model/game/chartParser/base/baseType.js +2 -0
  99. package/core/model/game/constNum.js +215 -0
  100. package/core/model/game/fCompute.js +711 -0
  101. package/core/model/game/getChartTag.js +140 -0
  102. package/core/model/game/getComment.js +132 -0
  103. package/core/model/game/getInfo.js +1069 -0
  104. package/core/model/game/getRksRank.js +77 -0
  105. package/core/model/game/markdown.js +77 -0
  106. package/core/model/integrations/Vika.js +103 -0
  107. package/core/model/integrations/getInfoFromTap.js +80 -0
  108. package/core/model/render/getPic.js +79 -0
  109. package/core/model/render/picmodle.js +496 -0
  110. package/core/model/render/progress-bar.js +44 -0
  111. package/core/model/render/puppeteer.js +431 -0
  112. package/core/model/render/renderPressureHistory.js +71 -0
  113. package/core/model/render/send.js +94 -0
  114. package/core/model/save/Save.js +953 -0
  115. package/core/model/save/analyzeSaveHistory.js +413 -0
  116. package/core/model/save/getBackup.js +328 -0
  117. package/core/model/save/getSave.js +90 -0
  118. package/core/model/save/getSaveFromApi.js +46 -0
  119. package/core/model/save/saveHistory.js +586 -0
  120. package/core/model/save/scoreHistory.js +101 -0
  121. package/core/model/theme/catalog.js +192 -0
  122. package/core/model/theme/installGuard.js +275 -0
  123. package/core/model/theme/installLock.js +174 -0
  124. package/core/model/theme/installer.js +398 -0
  125. package/core/model/theme/manager.js +408 -0
  126. package/core/model/theme/marketClient.js +294 -0
  127. package/core/model/theme/paths.js +42 -0
  128. package/core/model/theme/policy.js +54 -0
  129. package/core/model/theme/recovery.js +167 -0
  130. package/core/model/theme/useService.js +187 -0
  131. package/core/model/type/aliasProposal.d.ts +45 -0
  132. package/core/model/type/type.js +420 -0
  133. package/core/model/user/apiPermission.js +62 -0
  134. package/core/model/user/getBanGroup.js +120 -0
  135. package/core/model/user/getNotes.js +48 -0
  136. package/core/model/user/pluginData.js +101 -0
  137. package/core/model/user/userCredentialStore.js +154 -0
  138. package/core/model/user/userCredentials.js +860 -0
  139. package/core/package.json +60 -0
  140. package/core/resources/0608badSave/save.json +1 -0
  141. package/core/resources/LICENSE +201 -0
  142. package/core/resources/html/analyzeSaveHistory/analyzeSaveHistory.art +220 -0
  143. package/core/resources/html/analyzeSaveHistory/analyzeSaveHistory.css +345 -0
  144. package/core/resources/html/analyzeSaveHistory/analyzeSaveHistory.html +434 -0
  145. package/core/resources/html/arcgrosB19/arcgros.png +0 -0
  146. package/core/resources/html/arcgrosB19/arcgrosB19-orz.html +276 -0
  147. package/core/resources/html/arcgrosB19/arcgrosB19.art +168 -0
  148. package/core/resources/html/arcgrosB19/arcgrosB19.css +637 -0
  149. package/core/resources/html/atlas/atlas-orz.html +313 -0
  150. package/core/resources/html/atlas/atlas.art +194 -0
  151. package/core/resources/html/atlas/atlas.css +695 -0
  152. package/core/resources/html/avatar/-SURREALISM-.png +0 -0
  153. package/core/resources/html/avatar/Alkaid.png +0 -0
  154. package/core/resources/html/avatar/Aphasia.png +0 -0
  155. package/core/resources/html/avatar/Artificial Existence.png +0 -0
  156. package/core/resources/html/avatar/Bonus Time.png +0 -0
  157. package/core/resources/html/avatar/Burn.png +0 -0
  158. package/core/resources/html/avatar/Cereris1.png +0 -0
  159. package/core/resources/html/avatar/Cereris2.png +0 -0
  160. package/core/resources/html/avatar/Cereris3.png +0 -0
  161. package/core/resources/html/avatar/Christmas -2019.png +0 -0
  162. package/core/resources/html/avatar/Cipher1.png +0 -0
  163. package/core/resources/html/avatar/Class Memories.png +0 -0
  164. package/core/resources/html/avatar/Credits.png +0 -0
  165. package/core/resources/html/avatar/Dash.png +0 -0
  166. package/core/resources/html/avatar/Dlyrotz.png +0 -0
  167. package/core/resources/html/avatar/Doppelganger1.png +0 -0
  168. package/core/resources/html/avatar/Doppelganger2.png +0 -0
  169. package/core/resources/html/avatar/Drop it.png +0 -0
  170. package/core/resources/html/avatar/Energy Synergy Matrix1.png +0 -0
  171. package/core/resources/html/avatar/Energy Synergy Matrix2.png +0 -0
  172. package/core/resources/html/avatar/Energy Synergy Matrix3.png +0 -0
  173. package/core/resources/html/avatar/Engine x Start!! (melody mix).png +0 -0
  174. package/core/resources/html/avatar/Engine x Start!! extra 1 -by cycats.png +0 -0
  175. package/core/resources/html/avatar/Eradication Catastrophe.png +0 -0
  176. package/core/resources/html/avatar/FULi AUTO SHOOTER extra 1 -by cycats.png +0 -0
  177. package/core/resources/html/avatar/FULi AUTO SHOOTER.png +0 -0
  178. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/264-Special1.png +0 -0
  179. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/264-Special2.png +0 -0
  180. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2641.png +0 -0
  181. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2642.png +0 -0
  182. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2643.png +0 -0
  183. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2644.png +0 -0
  184. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2645.png +0 -0
  185. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2646.png +0 -0
  186. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2647.png +0 -0
  187. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2648.png +0 -0
  188. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2649.png +0 -0
  189. package/core/resources/html/avatar/Find_Me.png +0 -0
  190. package/core/resources/html/avatar/Geopelia 1 -by cycats.png +0 -0
  191. package/core/resources/html/avatar/Geopelia 2 -by cycats.png +0 -0
  192. package/core/resources/html/avatar/Geopelia 3 -by /344/275/225/345/221/265.png +0 -0
  193. package/core/resources/html/avatar/Geopelia in WEPLAY -by /346/265/267/344/272/247.png +0 -0
  194. package/core/resources/html/avatar/Gino-AprilFool.png +0 -0
  195. package/core/resources/html/avatar/Glaciaxion.png +0 -0
  196. package/core/resources/html/avatar/HumaN.png +0 -0
  197. package/core/resources/html/avatar/Indelible Scar.png +0 -0
  198. package/core/resources/html/avatar/Introduction.png +0 -0
  199. package/core/resources/html/avatar/Khronostasis Katharsis.png +0 -0
  200. package/core/resources/html/avatar/MARENOL.png +0 -0
  201. package/core/resources/html/avatar/Marenol extra 1 -by /345/226/265n/350/221/265.png +0 -0
  202. package/core/resources/html/avatar/Non-Melodic Ragez (MUG Edit).png +0 -0
  203. package/core/resources/html/avatar/Non-Melodic Ragez extra 1 -by cycats.png +0 -0
  204. package/core/resources/html/avatar/Oblivion +0 -0
  205. package/core/resources/html/avatar/OblivionPHIN.png +0 -0
  206. package/core/resources/html/avatar/Para.png +0 -0
  207. package/core/resources/html/avatar/Pixel Rebelz1.png +0 -0
  208. package/core/resources/html/avatar/Pixel Rebelz2.png +0 -0
  209. package/core/resources/html/avatar/Pixel Rebelz3.png +0 -0
  210. package/core/resources/html/avatar/RIPPER extra 1 -by cycats.png +0 -0
  211. package/core/resources/html/avatar/RIPPER extra 2 -by /344/275/225/345/221/265.png +0 -0
  212. package/core/resources/html/avatar/Sein.png +0 -0
  213. package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-Special.png +0 -0
  214. package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-Special2.png +0 -0
  215. package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-/346/231/256/351/200/232.png +0 -0
  216. package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-/346/233/262/347/273/230Ver.png +0 -0
  217. package/core/resources/html/avatar/ShineAfter-/351/270/240-Special.png +0 -0
  218. package/core/resources/html/avatar/ShineAfter-/351/270/240-/346/231/256/351/200/232.png +0 -0
  219. package/core/resources/html/avatar/ShineAfter-/351/270/240-/346/233/262/347/273/230Ver.png +0 -0
  220. package/core/resources/html/avatar/ShineAfter-/351/270/240/345/222/214/346/260/264/351/235/222-Special.png +0 -0
  221. package/core/resources/html/avatar/Snow Desert.png +0 -0
  222. package/core/resources/html/avatar/Sparkle New Life.png +0 -0
  223. package/core/resources/html/avatar/Sultan Rage.png +0 -0
  224. package/core/resources/html/avatar/Winter /342/206/221cube/342/206/223.png +0 -0
  225. package/core/resources/html/avatar/Xenolith.png +0 -0
  226. package/core/resources/html/avatar/[PRAW].png +0 -0
  227. package/core/resources/html/avatar/dB doll.png +0 -0
  228. package/core/resources/html/avatar/ripper.png +0 -0
  229. package/core/resources/html/avatar//343/202/202/343/201/272/343/202/202/343/201/2721.png +0 -0
  230. package/core/resources/html/avatar//343/202/202/343/201/272/343/202/202/343/201/2722.png +0 -0
  231. package/core/resources/html/avatar//344/270/207/345/220/250/345/214/277/345/220/215/344/277/241.png +0 -0
  232. 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
  233. package/core/resources/html/avatar//344/272/221/345/245/263/345/255/251.png +0 -0
  234. package/core/resources/html/avatar//345/205/211.png +0 -0
  235. package/core/resources/html/avatar//345/274/200/345/277/203/347/227/2051.png +0 -0
  236. package/core/resources/html/avatar//345/274/200/345/277/203/347/227/2052.png +0 -0
  237. 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
  238. package/core/resources/html/avatar//346/267/267/344/271/261-Confusion.png +0 -0
  239. package/core/resources/html/avatar//347/213/202/345/226/234/350/230/255/350/210/2361.png +0 -0
  240. package/core/resources/html/avatar//347/213/202/345/226/234/350/230/255/350/210/2362.png +0 -0
  241. package/core/resources/html/avatar//347/223/267/345/262/201-Special.png +0 -0
  242. package/core/resources/html/avatar//347/223/267/345/262/2011.png +0 -0
  243. package/core/resources/html/avatar//347/223/267/345/262/2012.png +0 -0
  244. package/core/resources/html/avatar//347/223/267/345/262/2013.png +0 -0
  245. package/core/resources/html/avatar//347/223/267/345/262/2014.png +0 -0
  246. package/core/resources/html/avatar//347/223/267/345/262/2015.png +0 -0
  247. package/core/resources/html/avatar//347/223/267/345/262/2016.png +0 -0
  248. package/core/resources/html/avatar//347/223/267/345/262/2017.png +0 -0
  249. package/core/resources/html/avatar//347/233/217/350/214/227-Special.png +0 -0
  250. package/core/resources/html/avatar//347/233/217/350/214/2271.png +0 -0
  251. package/core/resources/html/avatar//347/233/217/350/214/2272.png +0 -0
  252. package/core/resources/html/avatar//347/233/217/350/214/2273.png +0 -0
  253. package/core/resources/html/avatar//350/217/257/347/201/257/347/210/2611.png +0 -0
  254. package/core/resources/html/avatar//350/217/257/347/201/257/347/210/2612.png +0 -0
  255. package/core/resources/html/avatar//350/220/244/347/201/253/350/231/253/343/201/256/346/200/2501.png +0 -0
  256. package/core/resources/html/avatar//350/220/244/347/201/253/350/231/253/343/201/256/346/200/2502.png +0 -0
  257. package/core/resources/html/avatar//351/235/222/350/212/275-Special.png +0 -0
  258. package/core/resources/html/avatar//351/235/222/350/212/275.png +0 -0
  259. package/core/resources/html/avatar//351/243/216/345/261/277.png +0 -0
  260. package/core/resources/html/avatar//351/270/240-AprilFool.png +0 -0
  261. 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
  262. package/core/resources/html/b19/b19.art +490 -0
  263. package/core/resources/html/b19/b19.css +1261 -0
  264. package/core/resources/html/b19/b19666.art +350 -0
  265. package/core/resources/html/b19/b19666.css +1409 -0
  266. package/core/resources/html/b19/b19666.html +481 -0
  267. package/core/resources/html/b19/b19title.css +120 -0
  268. package/core/resources/html/b19/best19.html +853 -0
  269. package/core/resources/html/b19/dss2-orz.html +428 -0
  270. package/core/resources/html/b19/dss2.art +298 -0
  271. package/core/resources/html/b19/dss2.css +776 -0
  272. package/core/resources/html/b19/res/666.jpeg +0 -0
  273. package/core/resources/html/chap/chap-orz.html +93 -0
  274. package/core/resources/html/chap/chap.art +87 -0
  275. package/core/resources/html/chap/chap.css +365 -0
  276. package/core/resources/html/chartImg/chartImg.art +169 -0
  277. package/core/resources/html/chartImg/chartImg.css +439 -0
  278. package/core/resources/html/chartImg/echarts-wordcloud.min.js +3 -0
  279. package/core/resources/html/chartImg/echarts.js +85796 -0
  280. package/core/resources/html/chartImg/img/Drag.png +0 -0
  281. package/core/resources/html/chartImg/img/DragHL.png +0 -0
  282. package/core/resources/html/chartImg/img/Flick.png +0 -0
  283. package/core/resources/html/chartImg/img/FlickHL.png +0 -0
  284. package/core/resources/html/chartImg/img/Hold.png +0 -0
  285. package/core/resources/html/chartImg/img/HoldHL.png +0 -0
  286. package/core/resources/html/chartImg/img/Hold_End.png +0 -0
  287. package/core/resources/html/chartImg/img/Hold_Head.png +0 -0
  288. package/core/resources/html/chartImg/img/Hold_HeadHL.png +0 -0
  289. package/core/resources/html/chartImg/img/Tap.png +0 -0
  290. package/core/resources/html/chartImg/img/TapHL.png +0 -0
  291. package/core/resources/html/chartInfo/chartInfo-orz.html +250 -0
  292. package/core/resources/html/chartInfo/chartInfo.art +222 -0
  293. package/core/resources/html/chartInfo/chartInfo.css +265 -0
  294. package/core/resources/html/chartInfo/echarts-wordcloud.min.js +3 -0
  295. package/core/resources/html/chartInfo/echarts.js +85796 -0
  296. package/core/resources/html/clg/clg-orz.html +218 -0
  297. package/core/resources/html/clg/clg.art +88 -0
  298. package/core/resources/html/clg/clg.css +230 -0
  299. package/core/resources/html/clg/demo.jpg +0 -0
  300. package/core/resources/html/common/common.css +319 -0
  301. package/core/resources/html/common/css/playerInfo.css +136 -0
  302. package/core/resources/html/common/font/Aldrich-Regular.ttf +0 -0
  303. package/core/resources/html/common/font/HIMALAYA.TTF +0 -0
  304. package/core/resources/html/common/font/NotoColorEmoji-Regular.ttf +0 -0
  305. package/core/resources/html/common/font/NotoSans-Regular.ttf +0 -0
  306. package/core/resources/html/common/font/NotoSansArabic.ttf +0 -0
  307. package/core/resources/html/common/font/NotoSansCanadianAboriginal.ttf +0 -0
  308. package/core/resources/html/common/font/NotoSansJP.ttf +0 -0
  309. package/core/resources/html/common/font/NotoSansKannada.ttf +0 -0
  310. package/core/resources/html/common/font/NotoSansMath-Regular.ttf +0 -0
  311. package/core/resources/html/common/font/NotoSansSymbols2.ttf +0 -0
  312. package/core/resources/html/common/font/phi.ttf +0 -0
  313. package/core/resources/html/common/font//345/220/236/345/274/245/346/201/260/344/277/212.ttf +0 -0
  314. package/core/resources/html/common/layout/default.art +324 -0
  315. package/core/resources/html/common/layout/elem.art +21 -0
  316. package/core/resources/html/common/theme/snow/snow.css +17 -0
  317. package/core/resources/html/common/theme/snow/snow.js +19 -0
  318. package/core/resources/html/common/theme/star/star.js +201 -0
  319. package/core/resources/html/common/theme/topText/topText.css +15 -0
  320. package/core/resources/html/common/theme/topText/topText.js +30 -0
  321. package/core/resources/html/difficultyHistory/difficultyHistory-orz.html +361 -0
  322. package/core/resources/html/difficultyHistory/difficultyHistory.art +102 -0
  323. package/core/resources/html/difficultyHistory/difficultyHistory.css +205 -0
  324. package/core/resources/html/guess/guess-orz.html +50 -0
  325. package/core/resources/html/guess/guess.art +51 -0
  326. package/core/resources/html/guess/guess.css +33 -0
  327. package/core/resources/html/help/help-orz.html +73 -0
  328. package/core/resources/html/help/help.art +84 -0
  329. package/core/resources/html/help/help.css +266 -0
  330. package/core/resources/html/historyB30/historyB30-orz.html +168 -0
  331. package/core/resources/html/historyB30/historyB30.art +143 -0
  332. package/core/resources/html/historyB30/historyB30.css +270 -0
  333. package/core/resources/html/ill/ill-orz.html +21 -0
  334. package/core/resources/html/ill/ill.art +23 -0
  335. package/core/resources/html/ill/ill.css +79 -0
  336. package/core/resources/html/jrrp/ShineAfter.removebg.png +0 -0
  337. package/core/resources/html/jrrp/jrrp-orz.html +68 -0
  338. package/core/resources/html/jrrp/jrrp.art +58 -0
  339. package/core/resources/html/jrrp/jrrp.css +251 -0
  340. package/core/resources/html/list/list-orz.html +35 -0
  341. package/core/resources/html/list/list.art +67 -0
  342. package/core/resources/html/list/list.css +259 -0
  343. package/core/resources/html/lvsco/demo.jpg +0 -0
  344. package/core/resources/html/lvsco/lvsco-orz.html +334 -0
  345. package/core/resources/html/lvsco/lvsco.art +314 -0
  346. package/core/resources/html/lvsco/lvsco.css +706 -0
  347. package/core/resources/html/market/detail.art +44 -0
  348. package/core/resources/html/market/market.art +86 -0
  349. package/core/resources/html/market/market.css +64 -0
  350. package/core/resources/html/newSong/newSong.art +34 -0
  351. package/core/resources/html/newSong/newSong.css +48 -0
  352. package/core/resources/html/newSong/newSong.html +23 -0
  353. package/core/resources/html/newnotice/newnotice.art +47 -0
  354. package/core/resources/html/newnotice/newnotice.css +83 -0
  355. package/core/resources/html/otherimg/0.png +0 -0
  356. package/core/resources/html/otherimg/1.png +0 -0
  357. package/core/resources/html/otherimg/2.png +0 -0
  358. package/core/resources/html/otherimg/3.png +0 -0
  359. package/core/resources/html/otherimg/4.png +0 -0
  360. package/core/resources/html/otherimg/5.png +0 -0
  361. package/core/resources/html/otherimg/A.png +0 -0
  362. package/core/resources/html/otherimg/B.png +0 -0
  363. package/core/resources/html/otherimg/C.png +0 -0
  364. package/core/resources/html/otherimg/F.png +0 -0
  365. package/core/resources/html/otherimg/FC.png +0 -0
  366. package/core/resources/html/otherimg/NEW.png +0 -0
  367. package/core/resources/html/otherimg/Phigros_Icon_3.0.0.png +0 -0
  368. package/core/resources/html/otherimg/S.png +0 -0
  369. package/core/resources/html/otherimg/Star1.png +0 -0
  370. package/core/resources/html/otherimg/Star2.png +0 -0
  371. package/core/resources/html/otherimg/V.png +0 -0
  372. package/core/resources/html/otherimg/callback.png +0 -0
  373. package/core/resources/html/otherimg/chapHelp.png +0 -0
  374. package/core/resources/html/otherimg/dan_code.png +0 -0
  375. package/core/resources/html/otherimg/data.png +0 -0
  376. package/core/resources/html/otherimg/helpDoc.png +0 -0
  377. package/core/resources/html/otherimg/nickSuggest.png +0 -0
  378. package/core/resources/html/otherimg/phi.png +0 -0
  379. package/core/resources/html/otherimg/phigros.png +0 -0
  380. package/core/resources/html/otherimg/snow1.png +0 -0
  381. package/core/resources/html/otherimg/snow2.png +0 -0
  382. package/core/resources/html/otherimg/snow3.png +0 -0
  383. package/core/resources/html/otherimg/snow4.png +0 -0
  384. package/core/resources/html/otherimg/title.png +0 -0
  385. package/core/resources/html/rand/rand-orz.html +62 -0
  386. package/core/resources/html/rand/rand.art +59 -0
  387. package/core/resources/html/rand/rand.css +257 -0
  388. package/core/resources/html/rankingList/rankingList-orz.html +456 -0
  389. package/core/resources/html/rankingList/rankingList.art +171 -0
  390. package/core/resources/html/rankingList/rankingList.css +570 -0
  391. package/core/resources/html/rankingList-old/rankingList-orz.html +300 -0
  392. package/core/resources/html/rankingList-old/rankingList.art +89 -0
  393. package/core/resources/html/rankingList-old/rankingList.css +265 -0
  394. package/core/resources/html/score/score-orz.html +625 -0
  395. package/core/resources/html/score/score.art +249 -0
  396. package/core/resources/html/score/score.css +435 -0
  397. package/core/resources/html/score/scoreOld-orz.html +128 -0
  398. package/core/resources/html/score/scoreOld.art +230 -0
  399. package/core/resources/html/score/scoreOld.css +475 -0
  400. package/core/resources/html/score/scoreRankList-orz.html +613 -0
  401. package/core/resources/html/score/scoreRankList.art +231 -0
  402. package/core/resources/html/score/scoreRankList.css +197 -0
  403. package/core/resources/html/setting/setting-orz.html +123 -0
  404. package/core/resources/html/setting/setting.art +72 -0
  405. package/core/resources/html/setting/setting.css +170 -0
  406. package/core/resources/html/setting/userSetting-orz.html +132 -0
  407. package/core/resources/html/setting/userSetting.art +48 -0
  408. package/core/resources/html/setting/userSetting.css +160 -0
  409. package/core/resources/html/sign/sign-orz.html +262 -0
  410. package/core/resources/html/sign/sign.art +163 -0
  411. package/core/resources/html/sign/sign.css +706 -0
  412. package/core/resources/html/suggest/suggest.art +271 -0
  413. package/core/resources/html/suggest/suggest.css +300 -0
  414. package/core/resources/html/table/table-orz.html +228 -0
  415. package/core/resources/html/table/table.art +163 -0
  416. package/core/resources/html/table/table.css +401 -0
  417. package/core/resources/html/tasks/tasks-orz.html +83 -0
  418. package/core/resources/html/tasks/tasks.art +118 -0
  419. package/core/resources/html/tasks/tasks.css +334 -0
  420. package/core/resources/html/update/update-orz.html +735 -0
  421. package/core/resources/html/update/update.art +259 -0
  422. package/core/resources/html/update/update.css +676 -0
  423. package/core/resources/html/userinfo/userinfo-old-orz.html +408 -0
  424. package/core/resources/html/userinfo/userinfo-old.art +233 -0
  425. package/core/resources/html/userinfo/userinfo-old.css +466 -0
  426. package/core/resources/html/userinfo/userinfo-orz.html +543 -0
  427. package/core/resources/html/userinfo/userinfo.art +288 -0
  428. package/core/resources/html/userinfo/userinfo.css +757 -0
  429. package/core/resources/info/DLC/arc.json +412 -0
  430. package/core/resources/info/DLC/chunithm.json +1172 -0
  431. package/core/resources/info/DLC/dynamix.json +455 -0
  432. package/core/resources/info/DLC/fanshi.json +132 -0
  433. package/core/resources/info/DLC/lanota.json +412 -0
  434. package/core/resources/info/DLC/maimai.json +1110 -0
  435. package/core/resources/info/DLC/orz.json +158 -0
  436. package/core/resources/info/DLC/rizline.json +40 -0
  437. package/core/resources/info/DLC/rotaeno.json +159 -0
  438. package/core/resources/info/DLC/ryceam.json +53 -0
  439. package/core/resources/info/avatar.txt +109 -0
  440. package/core/resources/info/chaplist.yaml +102 -0
  441. package/core/resources/info/help/api.json +83 -0
  442. package/core/resources/info/help.json +436 -0
  443. package/core/resources/info/info.csv +315 -0
  444. package/core/resources/info/infolist.json +1758 -0
  445. package/core/resources/info/jrrp.json +92 -0
  446. package/core/resources/info/nicklist.yaml +2373 -0
  447. package/core/resources/info/notesInfo.json +1 -0
  448. package/core/resources/info/notice.json +11 -0
  449. package/core/resources/info/oldInfo/100/change.csv +218 -0
  450. package/core/resources/info/oldInfo/100/info.json +7 -0
  451. package/core/resources/info/oldInfo/101/change.csv +218 -0
  452. package/core/resources/info/oldInfo/101/info.json +7 -0
  453. package/core/resources/info/oldInfo/102/change.csv +223 -0
  454. package/core/resources/info/oldInfo/102/info.json +7 -0
  455. package/core/resources/info/oldInfo/103/change.csv +224 -0
  456. package/core/resources/info/oldInfo/103/info.json +7 -0
  457. package/core/resources/info/oldInfo/104/change.csv +225 -0
  458. package/core/resources/info/oldInfo/104/info.json +7 -0
  459. package/core/resources/info/oldInfo/105/change.csv +228 -0
  460. package/core/resources/info/oldInfo/105/info.json +7 -0
  461. package/core/resources/info/oldInfo/106/change.csv +229 -0
  462. package/core/resources/info/oldInfo/106/info.json +7 -0
  463. package/core/resources/info/oldInfo/108/change.csv +233 -0
  464. package/core/resources/info/oldInfo/108/info.json +7 -0
  465. package/core/resources/info/oldInfo/109/change.csv +235 -0
  466. package/core/resources/info/oldInfo/109/info.json +7 -0
  467. package/core/resources/info/oldInfo/110/change.csv +235 -0
  468. package/core/resources/info/oldInfo/110/info.json +7 -0
  469. package/core/resources/info/oldInfo/111/change.csv +242 -0
  470. package/core/resources/info/oldInfo/111/info.json +7 -0
  471. package/core/resources/info/oldInfo/112/change.csv +242 -0
  472. package/core/resources/info/oldInfo/112/info.json +7 -0
  473. package/core/resources/info/oldInfo/113/change.csv +244 -0
  474. package/core/resources/info/oldInfo/113/info.json +7 -0
  475. package/core/resources/info/oldInfo/115/change.csv +247 -0
  476. package/core/resources/info/oldInfo/115/info.json +7 -0
  477. package/core/resources/info/oldInfo/116/change.csv +249 -0
  478. package/core/resources/info/oldInfo/116/info.json +7 -0
  479. package/core/resources/info/oldInfo/118/change.csv +252 -0
  480. package/core/resources/info/oldInfo/118/info.json +7 -0
  481. package/core/resources/info/oldInfo/119/change.csv +255 -0
  482. package/core/resources/info/oldInfo/119/info.json +7 -0
  483. package/core/resources/info/oldInfo/120/change.csv +255 -0
  484. package/core/resources/info/oldInfo/120/info.json +7 -0
  485. package/core/resources/info/oldInfo/121/change.csv +257 -0
  486. package/core/resources/info/oldInfo/121/info.json +7 -0
  487. package/core/resources/info/oldInfo/122/change.csv +260 -0
  488. package/core/resources/info/oldInfo/122/info.json +7 -0
  489. package/core/resources/info/oldInfo/123/change.csv +260 -0
  490. package/core/resources/info/oldInfo/123/info.json +7 -0
  491. package/core/resources/info/oldInfo/124/change.csv +262 -0
  492. package/core/resources/info/oldInfo/124/info.json +7 -0
  493. package/core/resources/info/oldInfo/125/change.csv +266 -0
  494. package/core/resources/info/oldInfo/125/info.json +7 -0
  495. package/core/resources/info/oldInfo/126/change.csv +269 -0
  496. package/core/resources/info/oldInfo/126/info.json +7 -0
  497. package/core/resources/info/oldInfo/127/change.csv +270 -0
  498. package/core/resources/info/oldInfo/127/info.json +7 -0
  499. package/core/resources/info/oldInfo/128/change.csv +273 -0
  500. package/core/resources/info/oldInfo/128/info.json +7 -0
  501. package/core/resources/info/oldInfo/129/change.csv +274 -0
  502. package/core/resources/info/oldInfo/129/info.json +7 -0
  503. package/core/resources/info/oldInfo/130/change.csv +275 -0
  504. package/core/resources/info/oldInfo/130/info.json +7 -0
  505. package/core/resources/info/oldInfo/131/change.csv +278 -0
  506. package/core/resources/info/oldInfo/131/info.json +7 -0
  507. package/core/resources/info/oldInfo/132/change.csv +280 -0
  508. package/core/resources/info/oldInfo/132/info.json +7 -0
  509. package/core/resources/info/oldInfo/133/change.csv +284 -0
  510. package/core/resources/info/oldInfo/133/info.json +7 -0
  511. package/core/resources/info/oldInfo/134/change.csv +286 -0
  512. package/core/resources/info/oldInfo/134/info.json +7 -0
  513. package/core/resources/info/oldInfo/135/change.csv +290 -0
  514. package/core/resources/info/oldInfo/135/info.json +7 -0
  515. package/core/resources/info/oldInfo/136/change.csv +290 -0
  516. package/core/resources/info/oldInfo/136/info.json +7 -0
  517. package/core/resources/info/oldInfo/137/change.csv +293 -0
  518. package/core/resources/info/oldInfo/137/info.json +7 -0
  519. package/core/resources/info/oldInfo/138/change.csv +295 -0
  520. package/core/resources/info/oldInfo/138/info.json +7 -0
  521. package/core/resources/info/oldInfo/139/change.csv +295 -0
  522. package/core/resources/info/oldInfo/139/info.json +7 -0
  523. package/core/resources/info/oldInfo/140/change.csv +298 -0
  524. package/core/resources/info/oldInfo/140/info.json +7 -0
  525. package/core/resources/info/oldInfo/141/change.csv +300 -0
  526. package/core/resources/info/oldInfo/141/info.json +7 -0
  527. package/core/resources/info/oldInfo/142/change.csv +302 -0
  528. package/core/resources/info/oldInfo/142/info.json +7 -0
  529. package/core/resources/info/oldInfo/143/change.csv +303 -0
  530. package/core/resources/info/oldInfo/143/info.json +7 -0
  531. package/core/resources/info/oldInfo/144/change.csv +303 -0
  532. package/core/resources/info/oldInfo/144/info.json +7 -0
  533. package/core/resources/info/oldInfo/145/change.csv +305 -0
  534. package/core/resources/info/oldInfo/145/info.json +7 -0
  535. package/core/resources/info/oldInfo/146/change.csv +305 -0
  536. package/core/resources/info/oldInfo/146/info.json +7 -0
  537. package/core/resources/info/oldInfo/148/change.csv +307 -0
  538. package/core/resources/info/oldInfo/148/info.json +7 -0
  539. package/core/resources/info/oldInfo/149/change.csv +307 -0
  540. package/core/resources/info/oldInfo/149/info.json +7 -0
  541. package/core/resources/info/oldInfo/151/change.csv +309 -0
  542. package/core/resources/info/oldInfo/151/info.json +7 -0
  543. package/core/resources/info/oldInfo/152/change.csv +312 -0
  544. package/core/resources/info/oldInfo/152/info.json +7 -0
  545. package/core/resources/info/oldInfo/153/change.csv +313 -0
  546. package/core/resources/info/oldInfo/153/info.json +7 -0
  547. package/core/resources/info/oldInfo/154/change.csv +315 -0
  548. package/core/resources/info/oldInfo/154/info.json +7 -0
  549. package/core/resources/info/oldInfo/92/change.csv +204 -0
  550. package/core/resources/info/oldInfo/92/info.json +7 -0
  551. package/core/resources/info/oldInfo/93/change.csv +206 -0
  552. package/core/resources/info/oldInfo/93/info.json +7 -0
  553. package/core/resources/info/oldInfo/94/change.csv +209 -0
  554. package/core/resources/info/oldInfo/94/info.json +7 -0
  555. package/core/resources/info/oldInfo/95/change.csv +211 -0
  556. package/core/resources/info/oldInfo/95/info.json +7 -0
  557. package/core/resources/info/oldInfo/96/change.csv +216 -0
  558. package/core/resources/info/oldInfo/96/info.json +7 -0
  559. package/core/resources/info/oldInfo/98/change.csv +216 -0
  560. package/core/resources/info/oldInfo/98/info.json +7 -0
  561. package/core/resources/info/oldInfo/99/change.csv +217 -0
  562. package/core/resources/info/oldInfo/99/info.json +7 -0
  563. package/core/resources/info/oldNotesInfo.json +1 -0
  564. package/core/resources/info/sentences.json +1 -0
  565. package/core/resources/info/spinfo.json +362 -0
  566. package/core/resources/info/tips.txt +278 -0
  567. package/core/resources/otherill//351/233/252/351/231/215SP.png +0 -0
  568. package/core/resources/song-select.html +535 -0
  569. package/core/resources/themes/README.md +24 -0
  570. package/core/resources/themes/milthm/A.png +0 -0
  571. package/core/resources/themes/milthm/B.png +0 -0
  572. package/core/resources/themes/milthm/C.png +0 -0
  573. package/core/resources/themes/milthm/F.png +0 -0
  574. package/core/resources/themes/milthm/FC.png +0 -0
  575. package/core/resources/themes/milthm/S.png +0 -0
  576. package/core/resources/themes/milthm/V.png +0 -0
  577. package/core/resources/themes/milthm/arcgrosB19.css +36 -0
  578. package/core/resources/themes/milthm/b19.art +464 -0
  579. package/core/resources/themes/milthm/b19.css +1314 -0
  580. package/core/resources/themes/milthm/bg.png +0 -0
  581. package/core/resources/themes/milthm/clg.css +37 -0
  582. package/core/resources/themes/milthm/difficultyHistory.css +42 -0
  583. package/core/resources/themes/milthm/font.ttf +0 -0
  584. package/core/resources/themes/milthm/help.css +36 -0
  585. package/core/resources/themes/milthm/historyB30.css +48 -0
  586. package/core/resources/themes/milthm/info.yaml +45 -0
  587. package/core/resources/themes/milthm/list.css +39 -0
  588. package/core/resources/themes/milthm/phi.png +0 -0
  589. package/core/resources/themes/milthm/setting.css +37 -0
  590. package/core/resources/themes/milthm/sign.css +81 -0
  591. package/core/resources/themes/milthm/suggest.css +40 -0
  592. package/core/resources/themes/milthm/table.css +54 -0
  593. package/core/resources/themes/milthm/update.css +68 -0
  594. package/core/tests/aliasProposalService.test.js +82 -0
  595. package/core/tests/apiAccountDeletion.test.js +125 -0
  596. package/core/tests/apiPermission.test.js +44 -0
  597. package/core/tests/apiVersion.test.js +55 -0
  598. package/core/tests/b30Analysis.test.js +38 -0
  599. package/core/tests/backgroundIllustration.test.js +21 -0
  600. package/core/tests/botApiAuthRecovery.test.js +148 -0
  601. package/core/tests/botSyncService.test.js +42 -0
  602. package/core/tests/fileWatcherRegistry.test.js +44 -0
  603. package/core/tests/gameRecordPayload.test.js +34 -0
  604. package/core/tests/guessLetter.test.js +79 -0
  605. package/core/tests/makeRequestHandling.test.js +118 -0
  606. package/core/tests/marketOverflow.test.js +31 -0
  607. package/core/tests/platformTemplateCache.test.js +92 -0
  608. package/core/tests/pluginDataThemePreference.test.js +36 -0
  609. package/core/tests/processCleanup.test.js +58 -0
  610. package/core/tests/puppeteerShutdown.test.js +17 -0
  611. package/core/tests/renderPressureHistory.test.js +59 -0
  612. package/core/tests/saveStats.test.js +26 -0
  613. package/core/tests/themeInstallGuard.test.js +289 -0
  614. package/core/tests/themeManager.test.js +625 -0
  615. package/core/tests/themeManagerInit.test.js +11 -0
  616. package/core/tests/themeMarket.test.js +855 -0
  617. package/core/tests/themePageRouting.test.js +431 -0
  618. package/core/tests/themePolicy.test.js +28 -0
  619. package/core/tests/themeStorageRecovery.test.js +192 -0
  620. package/core/tests/userCredentialModuleBoundaries.test.js +41 -0
  621. package/core/tests/userCredentials.test.js +285 -0
  622. package/core/tsconfig.json +32 -0
  623. package/core/types/vendor.d.ts +14 -0
  624. package/lib/index.cjs +358 -0
  625. package/lib/index.d.cts +182 -0
  626. package/lib/index.d.ts +182 -0
  627. package/lib/index.js +320 -0
  628. package/package.json +74 -0
  629. package/readme.md +3 -0
@@ -0,0 +1,1758 @@
1
+ {
2
+ "Introduction": {
3
+ "bpm": "138",
4
+ "length": "2:30",
5
+ "chapter": "--",
6
+ "isOriginal": true
7
+ },
8
+ "Glaciaxion.SunsetRay": {
9
+ "bpm": "140",
10
+ "length": "2:43",
11
+ "chapter": "Chapter Legacy 过去的章节",
12
+ "isOriginal": true
13
+ },
14
+ "EradicationCatastrophe.NceS": {
15
+ "bpm": "120",
16
+ "length": "2:06",
17
+ "chapter": "Chapter Legacy 过去的章节"
18
+ },
19
+ "Credits.Frums": {
20
+ "bpm": "179",
21
+ "length": "1:40",
22
+ "chapter": "Chapter Legacy 过去的章节"
23
+ },
24
+ "Dlyrotz.Likey": {
25
+ "bpm": "175",
26
+ "length": "2:01",
27
+ "chapter": "Chapter Legacy 过去的章节"
28
+ },
29
+ "EnginexStartmelodymix.CrossingSound": {
30
+ "bpm": "186",
31
+ "length": "1:31",
32
+ "chapter": "Chapter Legacy 过去的章节",
33
+ "isOriginal": true
34
+ },
35
+ "光.姜米條": {
36
+ "bpm": "180",
37
+ "length": "2:11",
38
+ "chapter": "Chapter Legacy 过去的章节",
39
+ "isOriginal": true
40
+ },
41
+ "Wintercube.CtymaxfeatNceS": {
42
+ "bpm": "104",
43
+ "length": "2:35",
44
+ "chapter": "Chapter Legacy 过去的章节"
45
+ },
46
+ "Cipher20.TetrajectoryfeatCtymax": {
47
+ "bpm": "179",
48
+ "length": "2:34",
49
+ "chapter": "Chapter Legacy 过去的章节"
50
+ },
51
+ "混乱Confusion.OnlyMyBlackScore": {
52
+ "bpm": "180",
53
+ "length": "2:07",
54
+ "chapter": "Chapter Legacy 过去的章节"
55
+ },
56
+ "FULiAUTOSHOOTER.MYUKKE": {
57
+ "bpm": "145",
58
+ "length": "2:09",
59
+ "chapter": "Chapter Legacy 过去的章节"
60
+ },
61
+ "HumaN.SOTUI": {
62
+ "bpm": "180",
63
+ "length": "2:14",
64
+ "chapter": "Chapter Legacy 过去的章节"
65
+ },
66
+ "PRAW.Bluewind": {
67
+ "bpm": "210",
68
+ "length": "2:36",
69
+ "chapter": "Chapter Legacy 过去的章节"
70
+ },
71
+ "PixelRebelz.Normal1zer": {
72
+ "bpm": "150",
73
+ "length": "2:22",
74
+ "chapter": "Chapter Legacy 过去的章节"
75
+ },
76
+ "Cereris.SunsetRayNceS": {
77
+ "bpm": "175",
78
+ "length": "2:47",
79
+ "chapter": "Chapter Legacy 过去的章节"
80
+ },
81
+ "NonMelodicRagezMUGEdit.Normal1zer": {
82
+ "bpm": "205",
83
+ "length": "2:19",
84
+ "chapter": "Chapter Legacy 过去的章节"
85
+ },
86
+ "SultanRage.MonstDeath": {
87
+ "bpm": "155",
88
+ "length": "1:56",
89
+ "chapter": "Chapter Legacy 过去的章节"
90
+ },
91
+ "ClassMemories.AntistarfeatCtymax": {
92
+ "bpm": "145",
93
+ "length": "2:27",
94
+ "chapter": "Chapter Legacy 过去的章节"
95
+ },
96
+ "SURREALISM.Itsuki": {
97
+ "bpm": "180",
98
+ "length": "2:33",
99
+ "chapter": "Chapter Legacy 过去的章节"
100
+ },
101
+ "BonusTime.MegaloPaleWhite": {
102
+ "bpm": "180",
103
+ "length": "1:55",
104
+ "chapter": "Chapter Legacy 过去的章节"
105
+ },
106
+ "ENERGYSYNERGYMATRIX.Tanchiky": {
107
+ "bpm": "160",
108
+ "length": "2:05",
109
+ "chapter": "Chapter Legacy 过去的章节",
110
+ "spinfo": "本曲目存在Legacy谱面,长按难度标识即可进入",
111
+ "chart": {
112
+ "LY": {
113
+ "rgba": "183,0,253,1",
114
+ "difficulty": "14.8",
115
+ "tap": "450",
116
+ "hold": "13",
117
+ "flick": "14",
118
+ "drag": "138",
119
+ "combo": "615",
120
+ "charter": "Ctymax vs. 阿爽"
121
+ }
122
+ }
123
+ },
124
+ "NYA.FLuoRiTe姜米條": {
125
+ "bpm": "154",
126
+ "length": "2:35",
127
+ "chapter": "Chapter 5 霓虹灯牌"
128
+ },
129
+ "JunXionBetweenLifeAndDeathVIPMix.1N6Fs": {
130
+ "bpm": "164",
131
+ "length": "2:22",
132
+ "chapter": "Chapter 5 霓虹灯牌"
133
+ },
134
+ "cryout.JuE": {
135
+ "bpm": "180",
136
+ "length": "2:04",
137
+ "chapter": "Chapter 5 霓虹灯牌"
138
+ },
139
+ "Reimei.影虎": {
140
+ "bpm": "185",
141
+ "length": "2:28",
142
+ "chapter": "Chapter 5 霓虹灯牌"
143
+ },
144
+ "尊師TheGuru.rider": {
145
+ "bpm": "152",
146
+ "length": "2:05",
147
+ "chapter": "Chapter 5 霓虹灯牌"
148
+ },
149
+ "Spasmodic.姜米條颶風元力上人": {
150
+ "bpm": "200",
151
+ "length": "2:34",
152
+ "chapter": "Chapter 5 霓虹灯牌",
153
+ "isOriginal": true
154
+ },
155
+ "LeaveAllBehind.rider": {
156
+ "bpm": "150",
157
+ "length": "2:07",
158
+ "chapter": "Chapter 5 霓虹灯牌",
159
+ "isOriginal": true
160
+ },
161
+ "ColorfulDays.P4koofeatつゆり花鈴": {
162
+ "bpm": "136",
163
+ "length": "1:39",
164
+ "chapter": "Chapter 6 方舟蜃景"
165
+ },
166
+ "microwav.dandeless": {
167
+ "bpm": "172",
168
+ "length": "2:04",
169
+ "chapter": "Chapter 6 方舟蜃景",
170
+ "isOriginal": true
171
+ },
172
+ "重生.姜米條": {
173
+ "bpm": "195",
174
+ "length": "2:23",
175
+ "chapter": "Chapter 6 方舟蜃景",
176
+ "isOriginal": true
177
+ },
178
+ "NOONEYESMAN.MYUKKE": {
179
+ "bpm": "170",
180
+ "length": "2:04",
181
+ "chapter": "Chapter 6 方舟蜃景",
182
+ "isOriginal": true
183
+ },
184
+ "望影の方舟Six.SeURa": {
185
+ "bpm": "209",
186
+ "length": "1:52",
187
+ "chapter": "Chapter 6 方舟蜃景"
188
+ },
189
+ "Igallta.SeURa": {
190
+ "bpm": "230",
191
+ "length": "2:02",
192
+ "chapter": "Chapter 6 方舟蜃景",
193
+ "isOriginal": true
194
+ },
195
+ "ClockParadox.WyvernP": {
196
+ "bpm": "140",
197
+ "length": "2:30",
198
+ "chapter": "Chapter 7 时钟链接",
199
+ "isOriginal": true
200
+ },
201
+ "Chronologika.Hundotte": {
202
+ "bpm": "180",
203
+ "length": "2:14",
204
+ "chapter": "Chapter 7 时钟链接",
205
+ "isOriginal": true
206
+ },
207
+ "NickofTime.P4koo": {
208
+ "bpm": "175",
209
+ "length": "2:22",
210
+ "chapter": "Chapter 7 时钟链接"
211
+ },
212
+ "Chronomia.Lime": {
213
+ "bpm": "227",
214
+ "length": "2:26",
215
+ "chapter": "Chapter 7 时钟链接"
216
+ },
217
+ "ChronosCollapseLaCampanella.SunsetRay": {
218
+ "bpm": "180",
219
+ "length": "2:33",
220
+ "chapter": "Chapter 7 时钟链接"
221
+ },
222
+ "Rrharil.TeamGrimoire": {
223
+ "bpm": "190",
224
+ "length": "2:12",
225
+ "chapter": "Chapter 7 时钟链接",
226
+ "isOriginal": true
227
+ },
228
+ "CraveWave.LandRoot": {
229
+ "bpm": "150",
230
+ "length": "2:08",
231
+ "chapter": "Chapter 8 凌日潮汐",
232
+ "isOriginal": true
233
+ },
234
+ "TheChariotREVIIVAL.Attoclef": {
235
+ "bpm": "190",
236
+ "length": "2:26",
237
+ "chapter": "Chapter 8 凌日潮汐",
238
+ "isOriginal": true
239
+ },
240
+ "Luminescence.米虾Fomiki初云CLoudie": {
241
+ "bpm": "184",
242
+ "length": "2:35",
243
+ "chapter": "Chapter 8 凌日潮汐",
244
+ "isOriginal": true
245
+ },
246
+ "Retribution.nmyKryexe": {
247
+ "bpm": "190",
248
+ "length": "2:25",
249
+ "chapter": "Chapter 8 凌日潮汐",
250
+ "isOriginal": true
251
+ },
252
+ "DESTRUCTION321.Normal1zervsBrokenNerdz": {
253
+ "bpm": "321.321",
254
+ "length": "2:38",
255
+ "chapter": "Chapter 8 凌日潮汐",
256
+ "isOriginal": true
257
+ },
258
+ "DistortedFate.Sakuzyo": {
259
+ "bpm": "150",
260
+ "length": "2:42",
261
+ "chapter": "Chapter 8 凌日潮汐",
262
+ "isOriginal": true
263
+ },
264
+ "Doppelganger.LeaF": {
265
+ "bpm": "280",
266
+ "length": "2:25",
267
+ "chapter": "单曲精选集"
268
+ },
269
+ "もぺもぺ.LeaF": {
270
+ "bpm": "100",
271
+ "length": "1:50",
272
+ "chapter": "单曲精选集",
273
+ "spinfo": "SP版本为1.4.1版本4月1日限定\n在本曲选曲界面点击mope花进入\n实际上就是AT谱面加了一点特效",
274
+ "chart": {
275
+ "SP": {
276
+ "rgba": "212,167,180,1",
277
+ "difficulty": "?",
278
+ "tap": "529",
279
+ "hold": "33",
280
+ "flick": "20",
281
+ "drag": "138",
282
+ "combo": "720",
283
+ "charter": "阿爽"
284
+ }
285
+ }
286
+ },
287
+ "MARENOL.LeaF": {
288
+ "bpm": "140",
289
+ "length": "2:29",
290
+ "chapter": "单曲精选集"
291
+ },
292
+ "萤火虫の怨.闫东炜": {
293
+ "bpm": "100",
294
+ "length": "2:38",
295
+ "chapter": "单曲精选集"
296
+ },
297
+ "万吨匿名信.闫东炜": {
298
+ "bpm": "120",
299
+ "length": "2:44",
300
+ "chapter": "单曲精选集"
301
+ },
302
+ "风屿.闫东炜": {
303
+ "bpm": "170",
304
+ "length": "2:59",
305
+ "chapter": "单曲精选集"
306
+ },
307
+ "dBdoll.YUESTEVENuen": {
308
+ "bpm": "128",
309
+ "length": "1:48",
310
+ "chapter": "单曲精选集"
311
+ },
312
+ "Dash.小红Akane李祥辉": {
313
+ "bpm": "128",
314
+ "length": "1:54",
315
+ "chapter": "单曲精选集"
316
+ },
317
+ "云女孩.符白牙SiYFics": {
318
+ "bpm": "155",
319
+ "length": "2:58",
320
+ "chapter": "单曲精选集"
321
+ },
322
+ "DropIt.Asuka": {
323
+ "bpm": "126",
324
+ "length": "3:22",
325
+ "chapter": "单曲精选集"
326
+ },
327
+ "RIPPER.Friedwav": {
328
+ "bpm": "150",
329
+ "length": "3:19",
330
+ "chapter": "单曲精选集"
331
+ },
332
+ "Aphasia.闫东炜": {
333
+ "bpm": "128",
334
+ "length": "1:56",
335
+ "chapter": "单曲精选集"
336
+ },
337
+ "开心病.闫东炜": {
338
+ "bpm": "131",
339
+ "length": "1:55",
340
+ "chapter": "单曲精选集"
341
+ },
342
+ "華灯爱.闫东炜": {
343
+ "bpm": "120",
344
+ "length": "1:54",
345
+ "chapter": "单曲精选集"
346
+ },
347
+ "FindMe.Kforest": {
348
+ "bpm": "191",
349
+ "length": "2:07",
350
+ "chapter": "单曲精选集"
351
+ },
352
+ "Sein.朔Apo11oprogramvsお月さま交響曲ftkuroa荒巻": {
353
+ "bpm": "210",
354
+ "length": "1:59",
355
+ "chapter": "单曲精选集"
356
+ },
357
+ "狂喜蘭舞.LeaF": {
358
+ "bpm": "230",
359
+ "length": "2:41",
360
+ "chapter": "单曲精选集"
361
+ },
362
+ "SparkleNewLife.rider": {
363
+ "bpm": "150",
364
+ "length": "2:17",
365
+ "chapter": "单曲精选集"
366
+ },
367
+ "KhronostasisKatharsis.Halv": {
368
+ "bpm": "188",
369
+ "length": "2:14",
370
+ "chapter": "单曲精选集"
371
+ },
372
+ "SnowDesert.WyvernP": {
373
+ "bpm": "125",
374
+ "length": "2:22",
375
+ "chapter": "单曲精选集",
376
+ "isOriginal": true
377
+ },
378
+ "Burn.NceS": {
379
+ "bpm": "148",
380
+ "length": "2:17",
381
+ "chapter": "单曲精选集"
382
+ },
383
+ "Aleph0.LeaF": {
384
+ "bpm": "35~400",
385
+ "bpmList": [35, 140, 250, 400],
386
+ "length": "2:20",
387
+ "chapter": "单曲精选集",
388
+ "spinfo": "本曲目存在Legacy谱面,长按难度标识即可进入",
389
+ "chart": {
390
+ "LY": {
391
+ "rgba": "183,0,253,1",
392
+ "difficulty": "15.6",
393
+ "tap": "604",
394
+ "hold": "32",
395
+ "flick": "31",
396
+ "drag": "17",
397
+ "combo": "684",
398
+ "charter": "阿爽 VS Arenn Saki"
399
+ }
400
+ }
401
+ },
402
+ "NextTime.SaMZIng": {
403
+ "bpm": "175",
404
+ "length": "1:50",
405
+ "chapter": "单曲精选集"
406
+ },
407
+ "RubbishSorting.CtymaxvsNceS": {
408
+ "bpm": "128",
409
+ "length": "2:46",
410
+ "chapter": "单曲精选集",
411
+ "spinfo": "SP版本为1.4.1版本4月1日限定\n在本曲选曲界面依次点击四个垃圾桶进入",
412
+ "chart": {
413
+ "SP": {
414
+ "rgba": "212,167,180,1",
415
+ "difficulty": "🗑",
416
+ "tap": "84",
417
+ "hold": "82",
418
+ "flick": "103",
419
+ "drag": "147",
420
+ "combo": "416",
421
+ "charter": "Gausbon"
422
+ }
423
+ }
424
+ },
425
+ "AnotherMe.NeutralMoon": {
426
+ "bpm": "175",
427
+ "length": "2:19",
428
+ "chapter": "Chapter EX-Rising Sun Traxx 精选集"
429
+ },
430
+ "mechanted.rareguy": {
431
+ "bpm": "172",
432
+ "length": "1:55",
433
+ "chapter": "Chapter EX-Rising Sun Traxx 精选集"
434
+ },
435
+ "lifeflashesbeforeweebeyes.BilliumMoto": {
436
+ "bpm": "227",
437
+ "length": "2:36",
438
+ "chapter": "Chapter EX-Rising Sun Traxx 精选集"
439
+ },
440
+ "BreakThroughTheBarrier.lixound": {
441
+ "bpm": "176",
442
+ "length": "2:12",
443
+ "chapter": "Chapter EX-Rising Sun Traxx 精选集",
444
+ "spinfo": "本曲目存在Legacy谱面,长按难度标识即可进入",
445
+ "chart": {
446
+ "LY": {
447
+ "rgba": "183,0,253,1",
448
+ "difficulty": "15.1",
449
+ "tap": "577",
450
+ "hold": "67",
451
+ "flick": "54",
452
+ "drag": "595",
453
+ "combo": "1293",
454
+ "charter": "CatCats"
455
+ }
456
+ }
457
+ },
458
+ "Chronostasis.黒皇帝": {
459
+ "bpm": "196",
460
+ "length": "2:22",
461
+ "chapter": "Chapter EX-Rising Sun Traxx 精选集"
462
+ },
463
+ "DeadSoul.SoundSouler": {
464
+ "bpm": "132",
465
+ "length": "2:27",
466
+ "chapter": "单曲精选集",
467
+ "spinfo": "SP版本为1.4.1版本4月1日限定\n在本曲选曲界面连续点五次EZ难度进入\n谱面还原了多种音乐游戏",
468
+ "chart": {
469
+ "SP": {
470
+ "rgba": "88,88,88,1",
471
+ "difficulty": "👻",
472
+ "tap": "439",
473
+ "hold": "49",
474
+ "flick": "31",
475
+ "drag": "45",
476
+ "combo": "564",
477
+ "charter": "Phigros Charting Team"
478
+ }
479
+ }
480
+ },
481
+ "InfinityHeaven.HyuN": {
482
+ "bpm": "160",
483
+ "length": "2:34",
484
+ "chapter": "Chapter EX-HyuN 精选集"
485
+ },
486
+ "Disorder.HyuNfeatYURI": {
487
+ "bpm": "193",
488
+ "length": "2:14",
489
+ "chapter": "Chapter EX-HyuN 精选集"
490
+ },
491
+ "CROSSSOUL.HyuNfeatSyepias": {
492
+ "bpm": "200",
493
+ "length": "2:19",
494
+ "chapter": "Chapter EX-HyuN 精选集"
495
+ },
496
+ "SpeedUp.DarTokki": {
497
+ "bpm": "145",
498
+ "length": "2:20",
499
+ "chapter": "单曲精选集",
500
+ "isOriginal": true
501
+ },
502
+ "MagentaPotion.EmoCo": {
503
+ "bpm": "150",
504
+ "length": "2:27",
505
+ "chapter": "单曲精选集"
506
+ },
507
+ "GetBack.CAP3": {
508
+ "bpm": "128",
509
+ "length": "2:24",
510
+ "chapter": "单曲精选集"
511
+ },
512
+ "Palescreen.WyvernPfeatMadol": {
513
+ "bpm": "173",
514
+ "length": "2:25",
515
+ "chapter": "单曲精选集"
516
+ },
517
+ "GOODTEK.EBIMAYO": {
518
+ "bpm": "190",
519
+ "length": "2:05",
520
+ "chapter": "Chapter EX-GOOD 精选集"
521
+ },
522
+ "GOODBOUNCE.EBIMAYO": {
523
+ "bpm": "180",
524
+ "length": "2:12",
525
+ "chapter": "Chapter EX-GOOD 精选集"
526
+ },
527
+ "GOODWORLD.EBIMAYO": {
528
+ "bpm": "165",
529
+ "length": "2:11",
530
+ "chapter": "Chapter EX-GOOD 精选集"
531
+ },
532
+ "GOODFORTUNE.EBIMAYO": {
533
+ "bpm": "170",
534
+ "length": "2:13",
535
+ "chapter": "Chapter EX-GOOD 精选集"
536
+ },
537
+ "GOODRAGE.EBIMAYO": {
538
+ "bpm": "222",
539
+ "length": "2:01",
540
+ "chapter": "Chapter EX-GOOD 精选集"
541
+ },
542
+ "TheMountainEater.PaulBazooka": {
543
+ "bpm": "127",
544
+ "length": "2:03",
545
+ "chapter": "单曲精选集"
546
+ },
547
+ "Orthodox.tokiwa": {
548
+ "bpm": "170",
549
+ "length": "2:21",
550
+ "chapter": "单曲精选集"
551
+ },
552
+ "EndMe.ZxNXasDelaina": {
553
+ "bpm": "100~120",
554
+ "bpmList": [100, 120],
555
+ "length": "2:10",
556
+ "chapter": "单曲精选集"
557
+ },
558
+ "ParallelRetrogressionGameVer.Tetrajectory": {
559
+ "bpm": "175",
560
+ "length": "2:22",
561
+ "chapter": "单曲精选集"
562
+ },
563
+ "Starduster.Quree": {
564
+ "bpm": "110",
565
+ "length": "2:09",
566
+ "chapter": "单曲精选集"
567
+ },
568
+ "Electron.ElousFZ": {
569
+ "bpm": "134",
570
+ "length": "2:08",
571
+ "chapter": "单曲精选集"
572
+ },
573
+ "SIGMA.Kryexe": {
574
+ "bpm": "200",
575
+ "length": "2:01",
576
+ "chapter": "单曲精选集"
577
+ },
578
+ "HardcoreKwaya.EnFr": {
579
+ "bpm": "200",
580
+ "length": "2:00",
581
+ "chapter": "单曲精选集"
582
+ },
583
+ "Aventyr.GrandThawRigelTheatre": {
584
+ "bpm": "114~132",
585
+ "bpmList": [114, 132],
586
+ "length": "2:40",
587
+ "chapter": "单曲精选集"
588
+ },
589
+ "Trane.MALVA": {
590
+ "bpm": "135",
591
+ "length": "2:26",
592
+ "chapter": "单曲精选集"
593
+ },
594
+ "雪降りメリクリ.A39": {
595
+ "bpm": "180",
596
+ "length": "2:38",
597
+ "chapter": "单曲精选集",
598
+ "isOriginal": true
599
+ },
600
+ "CervelleConnexion.SCTL": {
601
+ "bpm": "142",
602
+ "length": "2:27",
603
+ "chapter": "单曲精选集"
604
+ },
605
+ "modulus.PTB10": {
606
+ "bpm": "158",
607
+ "length": "2:00",
608
+ "chapter": "单曲精选集"
609
+ },
610
+ "Wavetapper.Frums": {
611
+ "bpm": "112",
612
+ "length": "2:41",
613
+ "chapter": "单曲精选集",
614
+ "spinfo": "SP版本为1.6.5版本4月1日限定\n在本曲选曲界面跟着节奏点击曲绘方块进入",
615
+ "chart": {
616
+ "SP": {
617
+ "rgba": "128,128,128,1",
618
+ "difficulty": "📞",
619
+ "tap": "384",
620
+ "hold": "132",
621
+ "flick": "49",
622
+ "drag": "341",
623
+ "combo": "906",
624
+ "charter": ".---- ----.---../-...-."
625
+ }
626
+ }
627
+ },
628
+ "大和撫子WildDances.adapatorvsDRIVE": {
629
+ "bpm": "158",
630
+ "length": "2:07",
631
+ "chapter": "单曲精选集"
632
+ },
633
+ "Eltaw.Fl00t": {
634
+ "bpm": "193",
635
+ "length": "2:15",
636
+ "chapter": "单曲精选集"
637
+ },
638
+ "Initialize.iF": {
639
+ "bpm": "128",
640
+ "length": "2:07",
641
+ "chapter": "Chapter EX-WAVEAT 精选集"
642
+ },
643
+ "桜樹街道.kozatosnow": {
644
+ "bpm": "135",
645
+ "length": "2:24",
646
+ "chapter": "Chapter EX-WAVEAT 精选集"
647
+ },
648
+ "GetReady.iF": {
649
+ "bpm": "142",
650
+ "length": "2:10",
651
+ "chapter": "Chapter EX-WAVEAT 精选集"
652
+ },
653
+ "volcanic.DETROakaルゼ": {
654
+ "bpm": "191~382",
655
+ "bpmList": [191, 382],
656
+ "length": "2:16",
657
+ "chapter": "Chapter EX-WAVEAT 精选集"
658
+ },
659
+ "BetterGraphicAnimation.ルゼ": {
660
+ "bpm": "180",
661
+ "length": "1:42",
662
+ "chapter": "单曲精选集"
663
+ },
664
+ "XING.ginkiha": {
665
+ "bpm": "177",
666
+ "length": "2:16",
667
+ "chapter": "Chapter EX-Muse Dash 精选集"
668
+ },
669
+ "FinalStep.Lime": {
670
+ "bpm": "180",
671
+ "length": "2:17",
672
+ "chapter": "Chapter EX-Muse Dash 精选集"
673
+ },
674
+ "Cthugha.USAO": {
675
+ "bpm": "213",
676
+ "length": "2:34",
677
+ "chapter": "Chapter EX-Muse Dash 精选集"
678
+ },
679
+ "WithYou.Cashew": {
680
+ "bpm": "170",
681
+ "length": "2:06",
682
+ "chapter": "单曲精选集"
683
+ },
684
+ "UnorthodoxThoughts.Joulez": {
685
+ "bpm": "146",
686
+ "length": "2:23",
687
+ "chapter": "单曲精选集"
688
+ },
689
+ "Apocalyptic.ZClaxxSumaiLight": {
690
+ "bpm": "160",
691
+ "length": "2:09",
692
+ "chapter": "单曲精选集"
693
+ },
694
+ "游园地.椒盐菠萝": {
695
+ "bpm": "128",
696
+ "length": "2:07",
697
+ "chapter": "单曲精选集"
698
+ },
699
+ "energytrixxx.KAH": {
700
+ "bpm": "160",
701
+ "length": "2:25",
702
+ "chapter": "单曲精选集"
703
+ },
704
+ "Nhelv.Silentroom": {
705
+ "bpm": "174.59",
706
+ "length": "2:39",
707
+ "chapter": "单曲精选集"
708
+ },
709
+ "Arkhei.SeraAmagi": {
710
+ "bpm": "112",
711
+ "length": "2:37",
712
+ "chapter": "单曲精选集"
713
+ },
714
+ "Kerberos.Zris": {
715
+ "bpm": "197",
716
+ "length": "2:07",
717
+ "chapter": "单曲精选集"
718
+ },
719
+ "parsey.siqlo": {
720
+ "bpm": "180",
721
+ "length": "2:04",
722
+ "chapter": "单曲精选集"
723
+ },
724
+ "Concvssion.Halv": {
725
+ "bpm": "190",
726
+ "length": "2:31",
727
+ "chapter": "单曲精选集",
728
+ "isOriginal": true
729
+ },
730
+ "ジングルベルJingleBell.A39沙包P": {
731
+ "bpm": "175",
732
+ "length": "2:47",
733
+ "chapter": "单曲精选集",
734
+ "isOriginal": true
735
+ },
736
+ "TimetoNightSkyfeatLeeYuJin.HyuNKLYDIX": {
737
+ "bpm": "128",
738
+ "length": "2:11",
739
+ "chapter": "Chapter EX-KALPA 精选集"
740
+ },
741
+ "HAZARD.Limpid": {
742
+ "bpm": "128",
743
+ "length": "2:07",
744
+ "chapter": "Chapter EX-KALPA 精选集",
745
+ "spinfo": "SP版本为2.1.4版本4月1日限定\n在本曲选曲界面连续切换EZ HD IN难度进入",
746
+ "chart": {
747
+ "SP": {
748
+ "rgba": "192,167,180,1",
749
+ "difficulty": "?",
750
+ "tap": "441",
751
+ "hold": "58",
752
+ "flick": "36",
753
+ "drag": "6",
754
+ "combo": "541",
755
+ "charter": "G U B N"
756
+ }
757
+ }
758
+ },
759
+ "AnotherMe.DAAN": {
760
+ "bpm": "210",
761
+ "length": "2:46",
762
+ "chapter": "Chapter EX-KALPA 精选集"
763
+ },
764
+ "DontNeverAround.HAMA": {
765
+ "bpm": "175",
766
+ "length": "1:59",
767
+ "chapter": "Chapter EX-KALPA 精选集"
768
+ },
769
+ "RESSiSTANCE.ぐるたみん": {
770
+ "bpm": "205",
771
+ "length": "2:28",
772
+ "chapter": "Chapter EX-KALPA 精选集"
773
+ },
774
+ "Dreamland.z1onkyrrin": {
775
+ "bpm": "120",
776
+ "length": "2:32",
777
+ "chapter": "单曲精选集"
778
+ },
779
+ "AnotherRound.JustinDai": {
780
+ "bpm": "128",
781
+ "length": "2:24",
782
+ "chapter": "单曲精选集"
783
+ },
784
+ "996.李化禹": {
785
+ "bpm": "140",
786
+ "length": "2:34",
787
+ "chapter": "单曲精选集"
788
+ },
789
+ "FutureMind.RayNauticaRekuMochizuki": {
790
+ "bpm": "180",
791
+ "length": "2:13",
792
+ "chapter": "单曲精选集"
793
+ },
794
+ "Luminescent.Daison": {
795
+ "bpm": "141",
796
+ "length": "2:37",
797
+ "chapter": "单曲精选集"
798
+ },
799
+ "FULiAUTOBUSTER.MYUKKE": {
800
+ "bpm": "145",
801
+ "length": "2:04",
802
+ "chapter": "单曲精选集"
803
+ },
804
+ "IMustSayNo.TangJuan": {
805
+ "bpm": "175",
806
+ "length": "1:56",
807
+ "chapter": "单曲精选集"
808
+ },
809
+ "opia.rN": {
810
+ "bpm": "193",
811
+ "length": "2:29",
812
+ "chapter": "单曲精选集"
813
+ },
814
+ "Apocalypse.アリスシャッハと魔法の楽団": {
815
+ "bpm": "220",
816
+ "length": "2:45",
817
+ "chapter": "Chapter EX-Lanota 精选集"
818
+ },
819
+ "Protoflicker.Silentroom": {
820
+ "bpm": "140",
821
+ "length": "2:48",
822
+ "chapter": "Chapter EX-Lanota 精选集"
823
+ },
824
+ "HorizonBlue.NothingButRequiemfeatAikapinChiyoko": {
825
+ "bpm": "200",
826
+ "length": "2:47",
827
+ "chapter": "Chapter EX-Lanota 精选集"
828
+ },
829
+ "YouaretheMiserable.tpazolite": {
830
+ "bpm": "163",
831
+ "length": "2:43",
832
+ "chapter": "Chapter EX-Lanota 精选集"
833
+ },
834
+ "Stasis.Maozon": {
835
+ "bpm": "180",
836
+ "length": "2:34",
837
+ "chapter": "Chapter EX-Lanota 精选集"
838
+ },
839
+ "いざ参ります.Uskefeat棗いつき": {
840
+ "bpm": "188",
841
+ "length": "1:42",
842
+ "chapter": "单曲精选集"
843
+ },
844
+ "月下缭乱.月見静華vsLUNARiUM": {
845
+ "bpm": "175",
846
+ "length": "2:29",
847
+ "chapter": "单曲精选集"
848
+ },
849
+ "OnAndOn.ETIAfeatJenga": {
850
+ "bpm": "170",
851
+ "length": "2:00",
852
+ "chapter": "单曲精选集"
853
+ },
854
+ "DataErr0r.Cosmograph": {
855
+ "bpm": "180",
856
+ "length": "2:04",
857
+ "chapter": "单曲精选集"
858
+ },
859
+ "Shadow.SumaiLightvs姜米條": {
860
+ "bpm": "172",
861
+ "length": "2:23",
862
+ "chapter": "Chapter EX-姜米條 精选集"
863
+ },
864
+ "心之所向.姜米條": {
865
+ "bpm": "180",
866
+ "length": "2:16",
867
+ "chapter": "Chapter EX-姜米條 精选集",
868
+ "isOriginal": true
869
+ },
870
+ "inferior.姜米條": {
871
+ "bpm": "200",
872
+ "length": "2:03",
873
+ "chapter": "Chapter EX-姜米條 精选集",
874
+ "isOriginal": true
875
+ },
876
+ "csqn.Aoi": {
877
+ "bpm": "174",
878
+ "length": "2:04",
879
+ "chapter": "单曲精选集"
880
+ },
881
+ "BraveNotes.TurquoiseDRIVENota": {
882
+ "bpm": "192",
883
+ "length": "1:58",
884
+ "chapter": "单曲精选集"
885
+ },
886
+ "盏茗.茶鸣拾贰律": {
887
+ "bpm": "131",
888
+ "length": "2:10",
889
+ "chapter": "Chapter EX-茶鸣拾贰律 精选集"
890
+ },
891
+ "青芽.茶鸣拾贰律": {
892
+ "bpm": "108",
893
+ "length": "2:27",
894
+ "chapter": "Chapter EX-茶鸣拾贰律 精选集"
895
+ },
896
+ "EternalSnow.AbyssIdols": {
897
+ "bpm": "140",
898
+ "length": "2:35",
899
+ "chapter": "单曲精选集"
900
+ },
901
+ "RainySeason.AbyssIdols": {
902
+ "bpm": "188",
903
+ "length": "1:53",
904
+ "chapter": "单曲精选集"
905
+ },
906
+ "ElCondorPasaPhigrosEdit.PlasticFruits": {
907
+ "bpm": "150",
908
+ "length": "2:12",
909
+ "chapter": "单曲精选集",
910
+ "isOriginal": true
911
+ },
912
+ "BreakOver.Kforest": {
913
+ "bpm": "185",
914
+ "length": "2:08",
915
+ "chapter": "单曲精选集",
916
+ "isOriginal": true
917
+ },
918
+ "BelieveLightfeat果丸哒呦.ScalerMestie果丸哒呦": {
919
+ "bpm": "150",
920
+ "length": "2:50",
921
+ "chapter": "单曲精选集",
922
+ "isOriginal": true
923
+ },
924
+ "Pontdessouvenirs.VeetaCrushvsitsufeatitsu": {
925
+ "bpm": "185",
926
+ "length": "2:45",
927
+ "chapter": "单曲精选集"
928
+ },
929
+ "青丘.BLACK0": {
930
+ "bpm": "180",
931
+ "length": "2:47",
932
+ "chapter": "单曲精选集"
933
+ },
934
+ "瓷岁.茶鸣拾贰律": {
935
+ "bpm": "128",
936
+ "length": "2:54",
937
+ "chapter": "Chapter EX-茶鸣拾贰律 精选集"
938
+ },
939
+ "Feast远东之宴.茶鸣拾贰律": {
940
+ "bpm": "128",
941
+ "length": "2:40",
942
+ "chapter": "Chapter EX-茶鸣拾贰律 精选集",
943
+ "isOriginal": true
944
+ },
945
+ "インフェルノシティ.Ponchifeatはぁち": {
946
+ "bpm": "215",
947
+ "length": "2:04",
948
+ "chapter": "单曲精选集"
949
+ },
950
+ "Upshift.Iriss-Frantzz": {
951
+ "bpm": "155",
952
+ "length": "2:21",
953
+ "chapter": "单曲精选集"
954
+ },
955
+ "PoisonANDORAffection.LeaF": {
956
+ "bpm": "120",
957
+ "length": "2:05",
958
+ "chapter": "单曲精选集"
959
+ },
960
+ "Random.SobremSilentroom": {
961
+ "bpm": "132",
962
+ "length": "2:16",
963
+ "chapter": "单曲精选集"
964
+ },
965
+ "NowIsTheTimeDoIt.RoyMikelate": {
966
+ "bpm": "158",
967
+ "length": "2:14",
968
+ "chapter": "单曲精选集"
969
+ },
970
+ "Bougainvillea.Jade": {
971
+ "bpm": "120",
972
+ "length": "1:56",
973
+ "chapter": "单曲精选集"
974
+ },
975
+ "神話.PicaM2U": {
976
+ "bpm": "130",
977
+ "length": "2:30",
978
+ "chapter": "Chapter EX-OverRapid 精选集"
979
+ },
980
+ "Elúltimobaile.Θ": {
981
+ "bpm": "175",
982
+ "length": "2:08",
983
+ "chapter": "Chapter EX-OverRapid 精选集"
984
+ },
985
+ "Trojan.litmus": {
986
+ "bpm": "128",
987
+ "length": "2:43",
988
+ "chapter": "Chapter EX-OverRapid 精选集"
989
+ },
990
+ "TemporalShifting.LureRabbitVC": {
991
+ "bpm": "155",
992
+ "length": "2:30",
993
+ "chapter": "Chapter EX-OverRapid 精选集"
994
+ },
995
+ "Adastraperaspera.RabbitHouse": {
996
+ "bpm": "197",
997
+ "length": "2:35",
998
+ "chapter": "Chapter EX-OverRapid 精选集"
999
+ },
1000
+ "Ajourneytothemoonlight.Yesod": {
1001
+ "bpm": "174",
1002
+ "length": "2:35",
1003
+ "chapter": "Chapter EX-OverRapid 精选集",
1004
+ "isOriginal": true
1005
+ },
1006
+ "RainyHeart.BelieverInYou阿卡姆巫师": {
1007
+ "bpm": "140",
1008
+ "length": "2:32",
1009
+ "chapter": "单曲精选集"
1010
+ },
1011
+ "Realms.HinkikAHimitsu": {
1012
+ "bpm": "174",
1013
+ "length": "2:08",
1014
+ "chapter": "单曲精选集"
1015
+ },
1016
+ "ぱぴぷぴぷぴぱ.ころねぽちWith立秋": {
1017
+ "bpm": "100",
1018
+ "length": "2:58",
1019
+ "chapter": "单曲精选集"
1020
+ },
1021
+ "TriumphRegret.typeMARS": {
1022
+ "bpm": "175",
1023
+ "length": "2:04",
1024
+ "chapter": "单曲精选集"
1025
+ },
1026
+ "SATELLITE.かめりあ": {
1027
+ "bpm": "150",
1028
+ "length": "3:12",
1029
+ "chapter": "Extra Story Chapter 极星卫"
1030
+ },
1031
+ "DancewithSilence.かめりあ": {
1032
+ "bpm": "128",
1033
+ "length": "2:59",
1034
+ "chapter": "Extra Story Chapter 极星卫"
1035
+ },
1036
+ "LabyrinthinKowloonWalledWorld.かめりあ": {
1037
+ "bpm": "190",
1038
+ "length": "3:00",
1039
+ "chapter": "Extra Story Chapter 极星卫"
1040
+ },
1041
+ "ComputeItWithSomeDevilishAlcoholicSteampunkEngines.かめりあ": {
1042
+ "bpm": "165",
1043
+ "length": "2:51",
1044
+ "chapter": "Extra Story Chapter 极星卫"
1045
+ },
1046
+ "ERABYECONNEC10N.かめりあ": {
1047
+ "bpm": "230",
1048
+ "length": "2:48",
1049
+ "chapter": "Extra Story Chapter 极星卫"
1050
+ },
1051
+ "DiamondEyes.SYNTHETIC": {
1052
+ "bpm": "140",
1053
+ "length": "2:17",
1054
+ "chapter": "单曲精选集"
1055
+ },
1056
+ "Bitterblossom.imvi": {
1057
+ "bpm": "180",
1058
+ "length": "2:24",
1059
+ "chapter": "单曲精选集"
1060
+ },
1061
+ "JourneywithYou.Iris": {
1062
+ "bpm": "150",
1063
+ "length": "2:11",
1064
+ "chapter": "Chapter EX-Rotaeno 精选集"
1065
+ },
1066
+ "SecretIllumination.Yooh": {
1067
+ "bpm": "160",
1068
+ "length": "2:37",
1069
+ "chapter": "Chapter EX-Rotaeno 精选集"
1070
+ },
1071
+ "InvertedWorld.ARForest": {
1072
+ "bpm": "180",
1073
+ "length": "2:13",
1074
+ "chapter": "Chapter EX-Rotaeno 精选集"
1075
+ },
1076
+ "月詠に鳴る.Feryquitousfeat藍月なくる": {
1077
+ "bpm": "180",
1078
+ "length": "2:15",
1079
+ "chapter": "Chapter EX-CHUNITHM 精选集"
1080
+ },
1081
+ "TECHNOPOLIS2085.PRASTIKDANCEFLOOR": {
1082
+ "bpm": "134",
1083
+ "length": "2:18",
1084
+ "chapter": "Chapter EX-CHUNITHM 精选集"
1085
+ },
1086
+ "祈-我ら神祖と共に歩む者なり-.光吉猛修VS穴山大輔VSKaiVS水野健治VS大国奏音": {
1087
+ "bpm": "219",
1088
+ "length": "2:58",
1089
+ "chapter": "Chapter EX-CHUNITHM 精选集"
1090
+ },
1091
+ "bye.DingerBox": {
1092
+ "bpm": "160",
1093
+ "length": "2:40",
1094
+ "chapter": "单曲精选集"
1095
+ },
1096
+ "聖夜讃歌.A39沙包P": {
1097
+ "bpm": "178",
1098
+ "length": "3:06",
1099
+ "chapter": "单曲精选集",
1100
+ "isOriginal": true
1101
+ },
1102
+ "ストレイソウルアラウンド.みーに": {
1103
+ "bpm": "150",
1104
+ "length": "2:17",
1105
+ "chapter": "Chapter EX-Rotaeno 精选集"
1106
+ },
1107
+ "ManifoldHypothesis.cybermisofeattigerlily": {
1108
+ "bpm": "174",
1109
+ "length": "2:28",
1110
+ "chapter": "Chapter EX-Rotaeno 精选集"
1111
+ },
1112
+ "KMoeVIP.ZxNX": {
1113
+ "bpm": "175",
1114
+ "length": "2:09",
1115
+ "chapter": "Chapter EX-Rotaeno 精选集"
1116
+ },
1117
+ "Poseidon.1112vsStar": {
1118
+ "bpm": "175",
1119
+ "length": "2:03",
1120
+ "chapter": "Side Story 1 忘忧宫"
1121
+ },
1122
+ "WATER.A39沙包P": {
1123
+ "bpm": "170",
1124
+ "length": "2:36",
1125
+ "chapter": "Side Story 1 忘忧宫"
1126
+ },
1127
+ "MiracleForestVIPMix.Rinthlive": {
1128
+ "bpm": "192",
1129
+ "length": "2:50",
1130
+ "chapter": "Side Story 1 忘忧宫"
1131
+ },
1132
+ "MOBILYS.Dachs": {
1133
+ "bpm": "144",
1134
+ "length": "2:43",
1135
+ "chapter": "Side Story 1 忘忧宫"
1136
+ },
1137
+ "Lyrith迷宮リリス.ユメミド": {
1138
+ "bpm": "177",
1139
+ "length": "2:27",
1140
+ "chapter": "Side Story 1 忘忧宫",
1141
+ "spinfo": "本曲目存在Legacy谱面,长按难度标识即可进入",
1142
+ "chart": {
1143
+ "LY": {
1144
+ "rgba": "183,0,253,1",
1145
+ "difficulty": "15.9",
1146
+ "tap": "726",
1147
+ "hold": "39",
1148
+ "flick": "84",
1149
+ "drag": "273",
1150
+ "combo": "1122",
1151
+ "charter": "Arenn Saki as \"lAβyrinS\""
1152
+ }
1153
+ }
1154
+ },
1155
+ "Demiurge.Rabpit": {
1156
+ "bpm": "111",
1157
+ "length": "2:49",
1158
+ "chapter": "Side Story 2 弭刻日",
1159
+ "isOriginal": true
1160
+ },
1161
+ "Demonkin.ForgedReigns": {
1162
+ "bpm": "192",
1163
+ "length": "2:18",
1164
+ "chapter": "Side Story 2 弭刻日",
1165
+ "isOriginal": true
1166
+ },
1167
+ "Re_NascencePsystyleVer.Rinth_live": {
1168
+ "bpm": "150",
1169
+ "length": "2:27",
1170
+ "chapter": "Side Story 2 弭刻日"
1171
+ },
1172
+ "Ark.kanoryo": {
1173
+ "bpm": "180",
1174
+ "length": "2:38",
1175
+ "chapter": "Side Story 2 弭刻日"
1176
+ },
1177
+ "AfterDawn.S9ryne": {
1178
+ "bpm": "110",
1179
+ "length": "2:22",
1180
+ "chapter": "Side Story 2 弭刻日"
1181
+ },
1182
+ "INFiNiTEENERZYOverdoze.RekuMochizuki": {
1183
+ "bpm": "180",
1184
+ "length": "1:57",
1185
+ "chapter": "Side Story 2 弭刻日"
1186
+ },
1187
+ "CrushBETA.shadow_bling": {
1188
+ "bpm": "200",
1189
+ "length": "2:15",
1190
+ "chapter": "单曲精选集"
1191
+ },
1192
+ "BrokenSky.JungoMAX3feat刘佳宜Snow幻影刃shadow": {
1193
+ "bpm": "130",
1194
+ "length": "2:35",
1195
+ "chapter": "单曲精选集",
1196
+ "isOriginal": true
1197
+ },
1198
+ "Khalid.Dolphin": {
1199
+ "bpm": "128",
1200
+ "length": "2:10",
1201
+ "chapter": "Side Story 3 盗乐行"
1202
+ },
1203
+ "QuantumHyperspace.D_AAN": {
1204
+ "bpm": "200",
1205
+ "length": "1:58",
1206
+ "chapter": "Side Story 3 盗乐行"
1207
+ },
1208
+ "FreakyUndulationsNobleKnightsofTune.JehezukielKURORAK": {
1209
+ "bpm": "202",
1210
+ "length": "2:18",
1211
+ "chapter": "Side Story 3 盗乐行"
1212
+ },
1213
+ "PANICPARADISE.DJSHIONY": {
1214
+ "bpm": "170",
1215
+ "length": "2:08",
1216
+ "chapter": "Side Story 3 盗乐行",
1217
+ "isOriginal": true
1218
+ },
1219
+ "ReEndofaDream.umavsモリモリあつし": {
1220
+ "bpm": "212",
1221
+ "length": "2:21",
1222
+ "chapter": "Side Story 3 盗乐行"
1223
+ },
1224
+ "GVNGlitterVomitusandNeon.SaltySaltUnfold33": {
1225
+ "bpm": "175",
1226
+ "length": "2:41",
1227
+ "chapter": "单曲精选集"
1228
+ },
1229
+ "BRAINHACKER.SOMON": {
1230
+ "bpm": "158",
1231
+ "length": "2:01",
1232
+ "chapter": "单曲精选集"
1233
+ },
1234
+ "零號車輛.seatrus": {
1235
+ "bpm": "240",
1236
+ "length": "2:24",
1237
+ "chapter": "Chapter EX-Paradigm:Reboot 精选集"
1238
+ },
1239
+ "Xenolith.Tatsh": {
1240
+ "bpm": "170",
1241
+ "length": "2:18",
1242
+ "chapter": "Chapter EX-Paradigm:Reboot 精选集"
1243
+ },
1244
+ "ArtificialExistence.JunKuroda": {
1245
+ "bpm": "191",
1246
+ "length": "2:14",
1247
+ "chapter": "Chapter EX-Paradigm:Reboot 精选集"
1248
+ },
1249
+ "IndelibleScar.Noah": {
1250
+ "bpm": "223",
1251
+ "length": "2:17",
1252
+ "chapter": "Chapter EX-Paradigm:Reboot 精选集"
1253
+ },
1254
+ "Antithese.Blacklolita": {
1255
+ "bpm": "172",
1256
+ "length": "2:20",
1257
+ "chapter": "单曲精选集"
1258
+ },
1259
+ "PRAGMATISMRESURRECTION.Laur": {
1260
+ "bpm": "174",
1261
+ "length": "2:41",
1262
+ "chapter": "单曲精选集"
1263
+ },
1264
+ "ShineAfter.ADeanJocularACE": {
1265
+ "bpm": "170",
1266
+ "length": "2:45",
1267
+ "chapter": "单曲精选集",
1268
+ "isOriginal": true
1269
+ },
1270
+ "Bloom.targ麻团qwq": {
1271
+ "bpm": "150",
1272
+ "length": "2:39",
1273
+ "chapter": "单曲精选集"
1274
+ },
1275
+ "幽世桔梗.Capchiifeatまるもこ": {
1276
+ "bpm": "182",
1277
+ "length": "2:34",
1278
+ "chapter": "Chapter EX-SHINOBI SLASH 精选集"
1279
+ },
1280
+ "千紫万紅.r0yvsWABI": {
1281
+ "bpm": "203",
1282
+ "length": "2:27",
1283
+ "chapter": "Chapter EX-SHINOBI SLASH 精选集"
1284
+ },
1285
+ "明鏡烈火.MUEvsRekuMochizuki": {
1286
+ "bpm": "200",
1287
+ "length": "2:12",
1288
+ "chapter": "Chapter EX-SHINOBI SLASH 精选集"
1289
+ },
1290
+ "Cuvism.Fl00tvsHalv": {
1291
+ "bpm": "194",
1292
+ "length": "2:40",
1293
+ "chapter": "Chapter EX-TAKUMI³ 精选集"
1294
+ },
1295
+ "iLArtifact.Link0": {
1296
+ "bpm": "184",
1297
+ "length": "2:43",
1298
+ "chapter": "Chapter EX-TAKUMI³ 精选集"
1299
+ },
1300
+ "atruthseekerCommunicationwithUtopiawillbelost.kuro": {
1301
+ "bpm": "206",
1302
+ "length": "2:02",
1303
+ "chapter": "Chapter EX-TAKUMI³ 精选集"
1304
+ },
1305
+ "今天不是明天.PIKASONICfeat兰音Reine": {
1306
+ "bpm": "125",
1307
+ "length": "2:53",
1308
+ "chapter": "单曲精选集"
1309
+ },
1310
+ "BoundedQuietude.FiniteLimitvsSiLiS": {
1311
+ "bpm": "280",
1312
+ "length": "2:32",
1313
+ "chapter": "单曲精选集"
1314
+ },
1315
+ "君往何处QuoVadis.M2U": {
1316
+ "bpm": "160",
1317
+ "length": "2:25",
1318
+ "chapter": "Chapter EX-节奏大师 精选集"
1319
+ },
1320
+ "暗夜苏醒REANIMATE.Warak": {
1321
+ "bpm": "174",
1322
+ "length": "2:36",
1323
+ "chapter": "Chapter EX-节奏大师 精选集"
1324
+ },
1325
+ "Grimheart.Puru": {
1326
+ "bpm": "170",
1327
+ "length": "2:30",
1328
+ "chapter": "单曲精选集"
1329
+ },
1330
+ "Thrashforce.KAHvsE0ri4": {
1331
+ "bpm": "190",
1332
+ "length": "2:28",
1333
+ "chapter": "单曲精选集"
1334
+ },
1335
+ "Originally.SNKSMizku": {
1336
+ "bpm": "200",
1337
+ "length": "2:24",
1338
+ "chapter": "单曲精选集"
1339
+ },
1340
+ "黄金之城GOLDTOWN.Memme": {
1341
+ "bpm": "160",
1342
+ "length": "2:03",
1343
+ "chapter": "Chapter EX-节奏大师 精选集"
1344
+ },
1345
+ "双重间谍DoubleAgent.WAVAV": {
1346
+ "bpm": "160",
1347
+ "length": "2:26",
1348
+ "chapter": "Chapter EX-节奏大师 精选集"
1349
+ },
1350
+ "幻影鬼魅PLEASE.R300K": {
1351
+ "bpm": "161",
1352
+ "length": "2:04",
1353
+ "chapter": "Chapter EX-节奏大师 精选集"
1354
+ },
1355
+ "心の記憶.A39沙包P": {
1356
+ "bpm": "150",
1357
+ "length": "2:45",
1358
+ "chapter": "Side Story 4 无相乡"
1359
+ },
1360
+ "Spotlight.Ardolf": {
1361
+ "bpm": "160",
1362
+ "length": "2:09",
1363
+ "chapter": "Side Story 4 无相乡",
1364
+ "isOriginal": true
1365
+ },
1366
+ "NightTheater.わかどり": {
1367
+ "bpm": "151",
1368
+ "length": "2:00",
1369
+ "chapter": "Side Story 4 无相乡"
1370
+ },
1371
+ "Ramification.rareguyReina": {
1372
+ "bpm": "175",
1373
+ "length": "2:17",
1374
+ "chapter": "Side Story 4 无相乡",
1375
+ "isOriginal": true
1376
+ },
1377
+ "DerRichter.Ωμεγα": {
1378
+ "bpm": "192",
1379
+ "length": "2:27",
1380
+ "chapter": "Side Story 4 无相乡",
1381
+ "isOriginal": true
1382
+ },
1383
+ "ATHAZA.LeaF": {
1384
+ "bpm": "240~280",
1385
+ "bpmList": [240, 280],
1386
+ "length": "2:42",
1387
+ "chapter": "Side Story 4 无相乡"
1388
+ },
1389
+ "Schadenfreude.ZxNX": {
1390
+ "bpm": "198",
1391
+ "length": "2:32",
1392
+ "chapter": "单曲精选集"
1393
+ },
1394
+ "Letempsperdu.Daison": {
1395
+ "bpm": "188",
1396
+ "length": "2:27",
1397
+ "chapter": "单曲精选集"
1398
+ },
1399
+ "FixationsTowardtheStars.Foodbot": {
1400
+ "bpm": "150",
1401
+ "length": "2:49",
1402
+ "chapter": "单曲精选集"
1403
+ },
1404
+ "valorstarcross.LundyvsWyvren": {
1405
+ "bpm": "175",
1406
+ "length": "2:39",
1407
+ "chapter": "单曲精选集"
1408
+ },
1409
+ "CometFeat符白牙.CNHKSS": {
1410
+ "bpm": "180",
1411
+ "length": "2:31",
1412
+ "chapter": "单曲精选集"
1413
+ },
1414
+ "白と黒のバケモノ.テヅカ": {
1415
+ "bpm": "205",
1416
+ "length": "2:20",
1417
+ "chapter": "单曲精选集"
1418
+ },
1419
+ "Devotion.Connexio": {
1420
+ "bpm": "167",
1421
+ "length": "2:37",
1422
+ "chapter": "单曲精选集"
1423
+ },
1424
+ "KirakiraNoelStory.RekuMochizuki": {
1425
+ "bpm": "180",
1426
+ "length": "2:17",
1427
+ "chapter": "单曲精选集"
1428
+ },
1429
+ "Shelter.MeatyRabbitNceS": {
1430
+ "bpm": "170",
1431
+ "length": "2:18",
1432
+ "chapter": "单曲精选集"
1433
+ },
1434
+ "蝎虎天体Lacertid.CreamvsDaily天利": {
1435
+ "bpm": "220",
1436
+ "length": "2:24",
1437
+ "chapter": "单曲精选集"
1438
+ },
1439
+ "インマイマインド.レシオP": {
1440
+ "bpm": "155",
1441
+ "length": "2:51",
1442
+ "chapter": "单曲精选集"
1443
+ },
1444
+ "贝多芬祝福BeethovenBlessing.Nauts": {
1445
+ "bpm": "170",
1446
+ "length": "2:14",
1447
+ "chapter": "单曲精选集"
1448
+ },
1449
+ "ニライカナイNiraicA_naiMix.roopfromSTR": {
1450
+ "bpm": "130",
1451
+ "length": "2:31",
1452
+ "chapter": "单曲精选集"
1453
+ },
1454
+ "SwingSkipDrop.ミハイル": {
1455
+ "bpm": "210",
1456
+ "length": "2:04",
1457
+ "chapter": "单曲精选集"
1458
+ },
1459
+ "宇宙残骸少女CosmicDustyGirl.辻原一郎": {
1460
+ "bpm": "140",
1461
+ "length": "2:15",
1462
+ "chapter": "单曲精选集"
1463
+ },
1464
+ "SilenceisGoldenSpeechisGolden.NIWASHI": {
1465
+ "bpm": "177",
1466
+ "length": "2:44",
1467
+ "chapter": "Chapter EX-EGTS 精选集"
1468
+ },
1469
+ "FracturedAngel.DJRaisei": {
1470
+ "bpm": "301",
1471
+ "length": "3:00",
1472
+ "chapter": "Chapter EX-EGTS 精选集"
1473
+ },
1474
+ "Resolver.Gomadare": {
1475
+ "bpm": "123",
1476
+ "length": "2:41",
1477
+ "chapter": "Chapter EX-EGTS 精选集"
1478
+ },
1479
+ "LuminousEntitiesLostHeart.NormalMfeatUsagiDenki": {
1480
+ "bpm": "200",
1481
+ "length": "2:48",
1482
+ "chapter": "Chapter EX-EGTS 精选集"
1483
+ },
1484
+ "KIZUNAResolution.TAG": {
1485
+ "bpm": "240",
1486
+ "length": "2:15",
1487
+ "chapter": "Chapter EX-EGTS 精选集"
1488
+ },
1489
+ "AbsoluTedisoRdeR.AcuteDisarray": {
1490
+ "bpm": "256",
1491
+ "length": "3:10",
1492
+ "chapter": "Chapter EX-EGTS 精选集",
1493
+ "isOriginal": true
1494
+ },
1495
+ "AphroditesChildshortver.RUQOA": {
1496
+ "bpm": "128",
1497
+ "length": "2:47",
1498
+ "chapter": "Chapter EX-Immaculée Sekai 精选集"
1499
+ },
1500
+ "DevIAtiOnshortver.polysha": {
1501
+ "bpm": "100~155",
1502
+ "bpmList": [100, 110, 120, 130, 135, 140, 155],
1503
+ "length": "2:52",
1504
+ "chapter": "Chapter EX-Immaculée Sekai 精选集"
1505
+ },
1506
+ "NOx.Juggernaut": {
1507
+ "bpm": "190",
1508
+ "length": "2:33",
1509
+ "chapter": "Chapter EX-Immaculée Sekai 精选集"
1510
+ },
1511
+ "Aliceinaxxxxxxxx.Nagiha": {
1512
+ "bpm": "108~144",
1513
+ "bpmList": [108, 144],
1514
+ "length": "2:35",
1515
+ "chapter": "单曲精选集"
1516
+ },
1517
+ "Radiance.Nhato": {
1518
+ "bpm": "155",
1519
+ "length": "2:27",
1520
+ "chapter": "Chapter EX-オンゲキ 精选集"
1521
+ },
1522
+ "DiamondDust.MasahiroGodspeedAoki": {
1523
+ "bpm": "200",
1524
+ "length": "2:35",
1525
+ "chapter": "Chapter EX-オンゲキ 精选集"
1526
+ },
1527
+ "StardustRAY.kanonevsBlackY": {
1528
+ "bpm": "164",
1529
+ "length": "2:47",
1530
+ "chapter": "Chapter EX-オンゲキ 精选集"
1531
+ },
1532
+ "FrozenHeart.A39沙包P": {
1533
+ "bpm": "185",
1534
+ "length": "3:12",
1535
+ "chapter": "单曲精选集"
1536
+ },
1537
+ "Helios.NOABotaNya": {
1538
+ "bpm": "150",
1539
+ "length": "2:14",
1540
+ "chapter": "单曲精选集"
1541
+ },
1542
+ "FlutterEcho.Cansol": {
1543
+ "bpm": "219",
1544
+ "length": "2:11",
1545
+ "chapter": "Chapter EX-KALPA 精选集"
1546
+ },
1547
+ "Rebirth.ああああ": {
1548
+ "bpm": "196",
1549
+ "length": "2:37",
1550
+ "chapter": "Chapter EX-KALPA 精选集"
1551
+ },
1552
+ "AvataarReincarnationofKalpa.ScarletteakaCrYmson": {
1553
+ "bpm": "180",
1554
+ "length": "2:54",
1555
+ "chapter": "Chapter EX-KALPA 精选集"
1556
+ },
1557
+ "RetributionCycleofRedemption.ArdolfvsDaily天利": {
1558
+ "bpm": "225",
1559
+ "length": "2:53",
1560
+ "chapter": "单曲精选集",
1561
+ "spinfo": "SP版本为3.5.2~3.6.0 版本4月1日限定\nRetribution 选取界面重复点击镜像按钮直到背景变为粉色\n3.15.1版本改谱后变为常驻",
1562
+ "chart": {
1563
+ "SP": {
1564
+ "rgba": "212,167,180,1",
1565
+ "difficulty": "👽",
1566
+ "tap": "857",
1567
+ "hold": "623",
1568
+ "flick": "408",
1569
+ "drag": "612",
1570
+ "combo": "2500",
1571
+ "charter": "SP△DE~前方是毁灭亦是毁灭~"
1572
+ }
1573
+ },
1574
+ "isOriginal": true
1575
+ },
1576
+ "雪降り雪が降っている.AiSSw夜輪ft結月ゆかり": {
1577
+ "bpm": "156",
1578
+ "length": "2:29",
1579
+ "chapter": "单曲精选集",
1580
+ "isOriginal": true
1581
+ },
1582
+ "アンビバレンス.すりぃ相沢": {
1583
+ "bpm": "187",
1584
+ "length": "2:41",
1585
+ "chapter": "Chapter EX-maimai 精选集"
1586
+ },
1587
+ "Komplexe.雄之助featSennzai": {
1588
+ "bpm": "165",
1589
+ "length": "2:22",
1590
+ "chapter": "Chapter EX-maimai 精选集"
1591
+ },
1592
+ "slips.rintarosoma": {
1593
+ "bpm": "199",
1594
+ "length": "2:24",
1595
+ "chapter": "Chapter EX-maimai 精选集"
1596
+ },
1597
+ "QZKagoRequiem.tpazolite": {
1598
+ "bpm": "257",
1599
+ "length": "2:18",
1600
+ "chapter": "Chapter EX-maimai 精选集"
1601
+ },
1602
+ "000AinSophAur.Yumeji": {
1603
+ "bpm": "194",
1604
+ "length": "2:35",
1605
+ "chapter": "Single-单曲 精选集"
1606
+ },
1607
+ "SolaggyfeatUzumaki.ShrimpCatsはぁち後藤涼輔": {
1608
+ "bpm": "180",
1609
+ "length": "2:03",
1610
+ "chapter": "Single-单曲 精选集",
1611
+ "isOriginal": true
1612
+ },
1613
+ "Xepion.Acotto": {
1614
+ "bpm": "170",
1615
+ "length": "1:57",
1616
+ "chapter": "Chapter EX-Liminality 精选集"
1617
+ },
1618
+ "Archidoxen.Se_IRA": {
1619
+ "bpm": "160",
1620
+ "length": "2:03",
1621
+ "chapter": "Chapter EX-Liminality 精选集"
1622
+ },
1623
+ "百鬼夜行.SaladSavior": {
1624
+ "bpm": "200",
1625
+ "length": "2:18",
1626
+ "chapter": "Chapter EX-Liminality 精选集"
1627
+ },
1628
+ "BANGINGSTRIKE.DewPleiades": {
1629
+ "bpm": "234",
1630
+ "length": "2:28",
1631
+ "chapter": "Single-单曲 精选集",
1632
+ "isOriginal": true
1633
+ },
1634
+ "TheWholeRest.KIVΛ":{
1635
+ "bpm": "157",
1636
+ "length": "2:23",
1637
+ "chapter": "Chapter EX-CYTUS II 精选集"
1638
+ },
1639
+ "Cristalisia.onoken":{
1640
+ "bpm": "134",
1641
+ "length": "2:16",
1642
+ "chapter": "Chapter EX-CYTUS II 精选集"
1643
+ },
1644
+ "Hydra.JamesLandinoXAkiraComplex":{
1645
+ "bpm": "160",
1646
+ "length": "2:30",
1647
+ "chapter": "Chapter EX-CYTUS II 精选集"
1648
+ },
1649
+ "最高傑作.PYKAMIA":{
1650
+ "bpm": "140",
1651
+ "length": "2:24",
1652
+ "chapter": "Single-单曲 精选集"
1653
+ },
1654
+ "Locomotive.K":{
1655
+ "bpm": "128",
1656
+ "length": "2:28",
1657
+ "chapter": "Single-单曲 精选集"
1658
+ },
1659
+ "Alb.Avans":{
1660
+ "bpm": "140",
1661
+ "length": "2:31",
1662
+ "chapter": "Chapter EX-CYTUS II 精选集"
1663
+ },
1664
+ "Incyde.YbeLL":{
1665
+ "bpm": "180",
1666
+ "length": "3:20",
1667
+ "chapter": "Chapter EX-CYTUS II 精选集"
1668
+ },
1669
+ "彩.MisoilePunch":{
1670
+ "bpm": "170",
1671
+ "length": "2:42",
1672
+ "chapter": "Chapter EX-CYTUS II 精选集"
1673
+ },
1674
+ "彼方へ名もなき海辺より.打打だいず&月乃":{
1675
+ "bpm": "185",
1676
+ "length": "2:52",
1677
+ "chapter": "Single-单曲 精选集"
1678
+ },
1679
+ "ABYSSMOTION192333.ariiolTSAR奏Sou":{
1680
+ "bpm": "192.333",
1681
+ "length": "2:06",
1682
+ "chapter": "Single-单曲 精选集"
1683
+ },
1684
+ "Verruckt.Raimukun":{
1685
+ "bpm": "238",
1686
+ "length": "2:02",
1687
+ "chapter": "Single-单曲 精选集"
1688
+ },
1689
+ "Xenophobia.XinG":{
1690
+ "bpm": "174",
1691
+ "length": "2:26",
1692
+ "chapter": "Single-单曲 精选集"
1693
+ },
1694
+ "AfterZABANIYAMUGEdit.Daily天利":{
1695
+ "bpm": "222",
1696
+ "length": "2:23",
1697
+ "chapter": "Single-单曲 精选集"
1698
+ },
1699
+ "下一秒.BobHouSherlock卓智媛feat兰音Reine":{
1700
+ "bpm": "150",
1701
+ "length": "2:30",
1702
+ "chapter": "Single-单曲 精选集",
1703
+ "isOriginal": true
1704
+ },
1705
+ "玩具狂奏曲終焉.きくお":{
1706
+ "bpm": "130",
1707
+ "length": "2:34",
1708
+ "chapter": "Chapter EX-CHUNITHM 精选集"
1709
+ },
1710
+ "亂舞.NekockLK":{
1711
+ "bpm": "196",
1712
+ "length": "2:08",
1713
+ "chapter": "Single-单曲 精选集"
1714
+ },
1715
+ "SnowDance.悠叶いのり":{
1716
+ "bpm": "188",
1717
+ "length": "2:00",
1718
+ "chapter": "Single-单曲 精选集"
1719
+ },
1720
+ "70MinutesFighters.かたぎり":{
1721
+ "bpm": "223",
1722
+ "length": "2:26",
1723
+ "chapter": "Single-单曲 精选集"
1724
+ },
1725
+ "Cleyera.Riya":{
1726
+ "bpm": "191",
1727
+ "length": "2:19",
1728
+ "chapter": "Single-单曲 精选集"
1729
+ },
1730
+ "GungnirFracture.Kryexe":{
1731
+ "bpm": "240",
1732
+ "length": "2:30",
1733
+ "chapter": "Single-单曲 精选集",
1734
+ "isOriginal": true
1735
+ },
1736
+ "夢の降る日に.seatrus":{
1737
+ "bpm": "260",
1738
+ "length": "2:12",
1739
+ "chapter": "Single-单曲 精选集",
1740
+ "isOriginal": true
1741
+ },
1742
+ "DerSchneid.Ωμεγα":{
1743
+ "bpm": "222",
1744
+ "length": "2:33",
1745
+ "chapter": "Single-单曲 精选集",
1746
+ "isOriginal": true
1747
+ },
1748
+ "星拂云锦featkoi.S9ryne":{
1749
+ "bpm": "182",
1750
+ "length": "2:48",
1751
+ "chapter": "Single-单曲 精选集",
1752
+ "isOriginal": true
1753
+ }
1754
+ }
1755
+
1756
+
1757
+
1758
+